i18n: Validate value of supybot.language

This commit is contained in:
Valentin Lorentz 2022-06-17 00:29:38 +02:00
parent 93370b6f0e
commit fd04fccaec
1 changed files with 5 additions and 3 deletions

View File

@ -70,10 +70,12 @@ def import_conf():
"""Imports the conf into this module"""
global conf
conf = __import__('supybot.conf').conf
class Languages(conf.registry.OnlySomeStrings):
validStrings = ['de', 'en', 'es', 'fi', 'fr', 'it']
conf.registerGlobalValue(conf.supybot, 'language',
conf.registry.String(currentLocale, """Determines the bot's default
language if translations exist. Currently supported are 'de', 'en',
'es', 'fi', 'fr' and 'it'."""))
Languages(currentLocale, """Determines the bot's default
language if translations exist. Currently supported are: %s"""
% ', '.join(Languages.validStrings)))
conf.supybot.language.addCallback(reloadLocalesIfRequired)
def getPluginDir(plugin_name):