blob: df03c40b10bc9f256c48c8795f5b43aba19692d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python3
import os
import sys
os.chdir(os.path.dirname(sys.argv[0]))
sys.path.append("..")
import src.i18n.gen
print(" ".join(x.bcp for x in src.i18n.gen.LOCALES if x.enabledp))
|