diff --git a/Localization.py b/Localization.py index 34cbd4d..88a3430 100644 --- a/Localization.py +++ b/Localization.py @@ -474,4 +474,10 @@ def localize(text): try: return dictionary[language][text] except: - return text + if language=='uk': + try: + return dictionary['ru'][text] + except: + return text + else: + return text