From 544befd2d0bfb68103490da8b9c4d7ba21335899 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 6 Feb 2015 11:58:24 +0200 Subject: [PATCH] src/i18n.py: mention supported languages Closes #1046 I used Admin for sources of what languages are supported as it's usually recommended to start translating from there (first plugins, then core). --- src/i18n.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/i18n.py b/src/i18n.py index 9d832272b..f1fcfc336 100644 --- a/src/i18n.py +++ b/src/i18n.py @@ -70,7 +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. Valid values are things like en, fr, de, etc.""")) + language if translations exist. Currently supported are de, es, fi, + fr and it.""")) conf.supybot.language.addCallback(reloadLocalesIfRequired) def getPluginDir(plugin_name):