From f37b91ad4980b78eecc810787492b4f175993555 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 22 Jul 2015 15:22:36 +0530 Subject: [PATCH] Change dictionary download site to LibreOffice The OpenOffice extensions download site is currently broken. --- src/calibre/gui2/tweak_book/spell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/tweak_book/spell.py b/src/calibre/gui2/tweak_book/spell.py index 0e197931e3..97e7fc99f3 100644 --- a/src/calibre/gui2/tweak_book/spell.py +++ b/src/calibre/gui2/tweak_book/spell.py @@ -57,11 +57,11 @@ class AddDictionary(QDialog): # {{{ self.setLayout(l) self.la = la = QLabel('

' + _( - '''{0} supports the use of OpenOffice dictionaries for spell checking. You can - download more dictionaries from the OpenOffice extensions repository. + '''{0} supports the use of LibreOffice dictionaries for spell checking. You can + download more dictionaries from the LibreOffice extensions repository. The dictionary will download as an .oxt file. Simply specify the path to the downloaded .oxt file here to add the dictionary to {0}.'''.format( - __appname__, 'http://extensions.openoffice.org'))+'

') + __appname__, 'http://extensions.libreoffice.org/extension-center?getCategories=Dictionary&getCompatibility=any&sort_on=positive_ratings'))+'

') # noqa la.setWordWrap(True) la.setOpenExternalLinks(True) la.setMinimumWidth(450)