Merge pull request #1050 from Mikaela/languages

src/i18n.py: have languages in alphabetical order
This commit is contained in:
Valentin Lorentz 2015-02-08 08:49:56 +01:00
commit 7bba16a55e

View File

@ -70,7 +70,7 @@ def import_conf():
conf = __import__('supybot.conf').conf conf = __import__('supybot.conf').conf
conf.registerGlobalValue(conf.supybot, 'language', conf.registerGlobalValue(conf.supybot, 'language',
conf.registry.String(currentLocale, """Determines the bot's default conf.registry.String(currentLocale, """Determines the bot's default
language if translations exist. Currently supported are 'en', 'de', language if translations exist. Currently supported are 'de', 'en',
'es', 'fi', 'fr' and 'it'.""")) 'es', 'fi', 'fr' and 'it'."""))
conf.supybot.language.addCallback(reloadLocalesIfRequired) conf.supybot.language.addCallback(reloadLocalesIfRequired)