From c675654b829d86b63495265893fd4a8f6874a897 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 8 Feb 2015 09:44:13 +0200 Subject: [PATCH] src/i18n.py: have languages in alphabetical order It's probably not so important, but I don't like them being in any strange random order. Of course having English first would make sense as it's the default, but I still prefer alphabetical order. --- src/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n.py b/src/i18n.py index ddd12ff7e..33150f626 100644 --- a/src/i18n.py +++ b/src/i18n.py @@ -70,7 +70,7 @@ def import_conf(): conf = __import__('supybot.conf').conf conf.registerGlobalValue(conf.supybot, 'language', 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'.""")) conf.supybot.language.addCallback(reloadLocalesIfRequired)