You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
381 B
23 lines
381 B
#!/usr/bin/python |
|
# -*- coding: UTF-8 -*- |
|
# Generate simple languages JSON module. |
|
|
|
LANGUAGES = { |
|
"en": "English", |
|
"de": "Deutsch", |
|
"zh-cn": "中文", |
|
"ko": "한국어", |
|
"ja": "日本語", |
|
} |
|
|
|
import json |
|
|
|
def main(): |
|
|
|
print """// This file is auto generated, do not modify. |
|
define([], function() { |
|
return %s; |
|
});""" % json.dumps(LANGUAGES) |
|
|
|
if __name__ == "__main__": |
|
main() |