Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-05-13 16:10:51 +0300
committerGhostkeeper <rubend@tutanota.com>2022-05-16 14:33:56 +0300
commit77f5c91b7792fb6cec9828ca99fb161971564e46 (patch)
treecfb6570673754f3bf6e1d19615635e4e00a551f8
parent63e6b7704c88fb8e642b3e9062715cd49b0ef23a (diff)
Update names of function calls
CURA-9141
-rw-r--r--scripts/update_po_with_changes.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/update_po_with_changes.py b/scripts/update_po_with_changes.py
index baa3902443..78920f8f23 100644
--- a/scripts/update_po_with_changes.py
+++ b/scripts/update_po_with_changes.py
@@ -108,7 +108,7 @@ if __name__ == "__main__":
parser.add_argument("updated_file", type=str, help="Input .po file with updated translations added")
args = parser.parse_args()
- messages_updated = parse_po_file(args.updated_file)
- messages_original = parse_po_file(args.original_file)
- different_messages = get_different_messages(messages_original, messages_updated)
- update_po_file(args.original_file, "updated.po", different_messages)
+ messages_updated = parsePOFile(args.updated_file)
+ messages_original = parsePOFile(args.original_file)
+ different_messages = getDifferentMessages(messages_original, messages_updated)
+ updatePOFile(args.original_file, "updated.po", different_messages)