We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e72dc commit 6a12ac6Copy full SHA for 6a12ac6
timer.py
@@ -28,6 +28,10 @@
28
elif subprocess.getoutput("locale | grep 'LANG'") == 'LANG=nb_NO.UTF-8':
29
with open('/app/translations/nb_NO.json') as t:
30
jT = json.load(t)
31
+# Ukrainian
32
+elif subprocess.getoutput("locale | grep 'LANG'") == 'LANG=uk_UA.UTF-8':
33
+ with open('/app/translations/uk.json') as t:
34
+ jT = json.load(t)
35
# English
36
else:
37
with open('/app/translations/en.json') as t:
0 commit comments