From a3c5b972a2aff08a7719b99e75c710e8cf511393 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Wed, 12 Sep 2018 14:23:09 -0400 Subject: [PATCH] locale => translation, in a comment --- freeze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freeze.py b/freeze.py index 0c562e5ba8..a4c91d361f 100644 --- a/freeze.py +++ b/freeze.py @@ -133,7 +133,7 @@ def find_files(directory, patterns): os.mkdir(qt_local_path) # Loop through QT translation files and copy them for file in os.listdir(qt_system_path): - # Copy QT locale files + # Copy QT translation files if (file.startswith("qt_") or file.startswith("qtbase_")) and file.endswith(".qm"): shutil.copyfile(os.path.join(qt_system_path, file), os.path.join(qt_local_path, file))