update i18n script

This commit is contained in:
FaceDeer 2020-03-02 20:50:54 -07:00
parent ff9da99440
commit c18d68f26d

View File

@ -6,6 +6,9 @@
# #
# Copyright (C) 2019 Joachim Stolberg, 2020 FaceDeer, 2020 Louis Royer # Copyright (C) 2019 Joachim Stolberg, 2020 FaceDeer, 2020 Louis Royer
# LGPLv2.1+ # LGPLv2.1+
#
# See https://github.com/minetest-tools/update_translations for
# potential future updates to this script.
from __future__ import print_function from __future__ import print_function
import os, fnmatch, re, shutil, errno import os, fnmatch, re, shutil, errno
@ -167,7 +170,7 @@ def process_po_file(text):
# any "no longer used" strings will be preserved. # any "no longer used" strings will be preserved.
# Note that "fuzzy" tags will be lost in this process. # Note that "fuzzy" tags will be lost in this process.
def process_po_files(folder, modname): def process_po_files(folder, modname):
for root, dirs, files in os.walk(os.path.join(folder + 'locale/')): for root, dirs, files in os.walk(os.path.join(folder, 'locale/')):
for name in files: for name in files:
code_match = pattern_po_language_code.match(name) code_match = pattern_po_language_code.match(name)
if code_match == None: if code_match == None: