uk ru exchange

pull/1/head
DiMartinoXBMC 2015-06-28 13:25:15 +03:00
parent a547882560
commit 01a4599136
1 changed files with 7 additions and 1 deletions

View File

@ -473,5 +473,11 @@ def localize(text):
}
try:
return dictionary[language][text]
except:
if language=='uk':
try:
return dictionary['ru'][text]
except:
return text
else:
return text