From 5e4501d7d218d131b5a7bfc438a3cb8acb56bec2 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 6 Feb 2015 15:40:44 -0800 Subject: [PATCH] i18n.py: mention 'en' as supported lang & quote the language codes for less ambiguity. Ref #1046. --- src/i18n.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n.py b/src/i18n.py index f1fcfc336..ddd12ff7e 100644 --- a/src/i18n.py +++ b/src/i18n.py @@ -70,8 +70,8 @@ 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 de, es, fi, - fr and it.""")) + language if translations exist. Currently supported are 'en', 'de', + 'es', 'fi', 'fr' and 'it'.""")) conf.supybot.language.addCallback(reloadLocalesIfRequired) def getPluginDir(plugin_name):