mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-22 20:45:11 +00:00
272fcfccca
* Add files via upload This script can merge the post-translation order wrong PO files in the correct order! * Update and rename merge.py to MERGE.py Changed the name to all caps to make it prominent * Update MERGE.py * Update and rename MERGE.py to Reorganize-po-sequence.py rename * Reorganize-po-sequence Usage: Reorganize-po-sequence.sh base_file new_file output_file base.po is the PO file within the repo with the correct order new.po is your translated PO file but may not be in the correct order
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
merge_po_files_preserve_format() {
|
|
base_file="base.po"
|
|
new_file="new.po"
|
|
output_file="output.po"
|
|
|
|
declare -A new_translations
|
|
|
|
# Read new_file and extract msgid and msgstr
|
|
msgid=""
|
|
while IFS= read -r line; do
|
|
if [[ $line == msgid* ]]; then
|
|
msgid="$line"
|
|
msgstr=""
|
|
elif [[ $line == msgstr* ]]; then
|
|
msgstr="$line"
|
|
new_translations["$msgid"]="$msgstr"
|
|
elif [[ $line == "\"\"" ]]; then
|
|
msgid+="$line"
|
|
fi
|
|
done < "$new_file"
|
|
|
|
# Open output_file and write merged content
|
|
msgid=""
|
|
while IFS= read -r line; do
|
|
if [[ $line == msgid* ]]; then
|
|
msgid="$line"
|
|
msgstr=""
|
|
elif [[ $line == msgstr* ]]; then
|
|
msgstr="$line"
|
|
if [[ -n ${new_translations["$msgid"]} ]]; then
|
|
echo "$msgid" >> "$output_file"
|
|
echo "${new_translations["$msgid"]}" >> "$output_file"
|
|
else
|
|
echo "$msgid" >> "$output_file"
|
|
echo "$msgstr" >> "$output_file"
|
|
fi
|
|
msgid=""
|
|
msgstr=""
|
|
elif [[ $line == "\"\"" ]]; then
|
|
msgid+="$line"
|
|
else
|
|
echo "$line" >> "$output_file"
|
|
fi
|
|
done < "$base_file"
|
|
}
|
|
|
|
if [[ $# -ne 3 ]]; then
|
|
echo "Usage: $0 base_file new_file output_file"
|
|
exit 1
|
|
fi
|
|
|
|
merge_po_files_preserve_format "base.po" "new.po" "output.po"
|