Skip to content

Commit 6a12ac6

Browse files
authored
Update timer.py
1 parent 16e72dc commit 6a12ac6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

timer.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
elif subprocess.getoutput("locale | grep 'LANG'") == 'LANG=nb_NO.UTF-8':
2929
with open('/app/translations/nb_NO.json') as t:
3030
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)
3135
# English
3236
else:
3337
with open('/app/translations/en.json') as t:

0 commit comments

Comments
 (0)