diff options
author | emkael <emkael@tlen.pl> | 2018-05-01 13:44:35 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-05-01 13:44:35 +0200 |
commit | 24a151f45b5104471a1a07e2a5aa72066cba3be9 (patch) | |
tree | 8e575e99bc9d4576f64a024ba636b2097b5f41dc /jfr_playoff/i18n.py | |
parent | 72c30e7b12a75d43b64e31094bf3f9d3a899fe65 (diff) |
Internationalization and localization of strings
Diffstat (limited to 'jfr_playoff/i18n.py')
-rw-r--r-- | jfr_playoff/i18n.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/jfr_playoff/i18n.py b/jfr_playoff/i18n.py new file mode 100644 index 0000000..0caa107 --- /dev/null +++ b/jfr_playoff/i18n.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +import re + +PLAYOFF_I18N_DEFAULTS = { + 'SCORE': 'wynik', + 'FINAL_STANDINGS': 'klasyfikacja końcowa', + 'STANDINGS_PLACE': 'miejsce', + 'STANDINGS_TEAM': 'drużyna', + 'STANDINGS_CAPTIONS': 'legenda', + 'FOOTER_GENERATED': 'strona wygenerowana', + 'SWISS_DEFAULT_LABEL': 'Turniej o %d. miejsce' +} + +class PlayoffI18N(object): + + def __init__(self, settings): + self.settings = settings + self.string_match = re.compile(r'{{(.*)}}') + + def localize(self, string): + return re.sub( + self.string_match, + lambda x: self.__get_translation(x.group(1)), + string) + + def __get_translation(self, string): + for dictionary in [self.settings, PLAYOFF_I18N_DEFAULTS]: + if string in dictionary: + return dictionary[string].decode('utf8') + return string |