diff options
author | Jo-Philipp Wich <jo@mein.io> | 2020-01-29 08:29:17 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-01-29 08:40:30 +0100 |
commit | cab574958c580c38ca8dc852d8dada1681d62046 (patch) | |
tree | dd0a5556a5998014b9c809c9275d14481934003e | |
parent | 6d59a6400ed055d71e0b335679d291c22bbdbd40 (diff) |
build: add script to merge master translation into branches
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rwxr-xr-x | build/i18n-merge-master.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build/i18n-merge-master.pl b/build/i18n-merge-master.pl new file mode 100755 index 000000000..d7479efb8 --- /dev/null +++ b/build/i18n-merge-master.pl @@ -0,0 +1,17 @@ +#!/usr/bin/env perl + +if (open F, '-|', 'find', $ARGV[0] || '.', '-type', 'f', '-name', '*.po') { + while (defined(my $path = readline F)) { + chomp $path; + + (my $ref = $path) =~ s/\.po$/\.master.po/; + + printf 'Updating %s ', $path; + system("git show --format=\%B 'master:$path' > '$ref'"); + system('msgmerge', '-N', '-o', $path, $ref, $path); + system('msgattrib', '--no-obsolete', '-o', $path, $path); + unlink($ref); + } + + close F; +} |