From 4bce1806c9d1e41768828ccc94a0b562d402d66a Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Tue, 31 Jan 2017 00:22:27 +0200 Subject: [PATCH] Port new-locale.sh script to Python --- locale_build/new-locale.py | 67 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 locale_build/new-locale.py diff --git a/locale_build/new-locale.py b/locale_build/new-locale.py new file mode 100644 index 0000000..0f2e872 --- /dev/null +++ b/locale_build/new-locale.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python + +""" +Author: Sotiris Papadopoulos +Last-Revision: 2017-01-30 + +Script to add support for a new language + +Usage : ./new-locale.py +Example : ./new-locale.py en_US + +""" + +import os +import sys +import shutil + + +PACKAGE = "youtube_dl_gui" + +LOCALE_PATH_TMPL = os.path.join(PACKAGE, "locale", "{lang}", "LC_MESSAGES") + +PO_FILE_TMPL = os.path.join("{parent_dir}", "youtube_dl_gui.po") + + +def error(msg): + print("[-]{0}".format(msg)) + sys.exit(1) + + +def output(msg): + print("[*]{0}".format(msg)) + + +def manage_directory(): + """Allow script calls outside the 'locale_build' dir.""" + if os.path.basename(os.getcwd()) == "locale_build": + os.chdir("..") + + +def main(lang_code): + manage_directory() + + target_dir = LOCALE_PATH_TMPL.format(lang=lang_code) + default_dir = LOCALE_PATH_TMPL.format(lang="en_US") + + target_po = PO_FILE_TMPL.format(parent_dir=target_dir) + source_po = PO_FILE_TMPL.format(parent_dir=default_dir) + + if os.path.exists(target_dir): + error("Locale '{0}' already exists, exiting...".format(lang_code)) + + output("Creating directory: '{0}'".format(target_dir)) + os.makedirs(target_dir) + + output("Creating PO file: '{0}'".format(target_po)) + shutil.copy(source_po, target_po) + + output("Done") + + +if __name__ == "__main__": + if len(sys.argv) == 2: + main(sys.argv[1]) + else: + print("Usage : {0} ".format(sys.argv[0])) + print("Example : {0} en_US".format(sys.argv[0]))