mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
Use interface language rather than English as the default dictionary lookup language
This commit is contained in:
parent
46c0a9c6b6
commit
1a15bf6ea3
@ -24,7 +24,7 @@ from calibre.customize.ui import available_input_formats
|
|||||||
from calibre import as_unicode, force_unicode, isbytestring
|
from calibre import as_unicode, force_unicode, isbytestring
|
||||||
from calibre.ptempfile import reset_base_dir
|
from calibre.ptempfile import reset_base_dir
|
||||||
from calibre.utils.zipfile import BadZipfile
|
from calibre.utils.zipfile import BadZipfile
|
||||||
from calibre.utils.localization import canonicalize_lang, lang_as_iso639_1
|
from calibre.utils.localization import canonicalize_lang, lang_as_iso639_1, get_lang
|
||||||
|
|
||||||
vprefs = JSONConfig('viewer')
|
vprefs = JSONConfig('viewer')
|
||||||
dprefs = JSONConfig('viewer_dictionaries')
|
dprefs = JSONConfig('viewer_dictionaries')
|
||||||
@ -52,8 +52,10 @@ class RecentAction(QAction):
|
|||||||
QAction.__init__(self, os.path.basename(path), parent)
|
QAction.__init__(self, os.path.basename(path), parent)
|
||||||
|
|
||||||
def default_lookup_website(lang):
|
def default_lookup_website(lang):
|
||||||
|
if lang == 'und':
|
||||||
|
lang = get_lang()
|
||||||
lang = lang_as_iso639_1(lang) or lang
|
lang = lang_as_iso639_1(lang) or lang
|
||||||
if lang in ('und', 'en'):
|
if lang == 'en':
|
||||||
prefix = 'https://www.wordnik.com/words/'
|
prefix = 'https://www.wordnik.com/words/'
|
||||||
else:
|
else:
|
||||||
prefix = 'http://%s.wiktionary.org/wiki/' % lang
|
prefix = 'http://%s.wiktionary.org/wiki/' % lang
|
||||||
@ -61,7 +63,7 @@ def default_lookup_website(lang):
|
|||||||
|
|
||||||
def lookup_website(lang):
|
def lookup_website(lang):
|
||||||
if lang == 'und':
|
if lang == 'und':
|
||||||
lang = 'en'
|
lang = get_lang()
|
||||||
wm = dprefs['word_lookups']
|
wm = dprefs['word_lookups']
|
||||||
return wm.get(lang, default_lookup_website(lang))
|
return wm.get(lang, default_lookup_website(lang))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user