diff options
author | Johnny A. Solbu <johnny@solbu.net> | 2023-01-14 17:54:43 +0100 |
---|---|---|
committer | Johnny A. Solbu <johnny@solbu.net> | 2023-01-14 17:54:43 +0100 |
commit | 8882e9a2103776ea0e706418911d14e07ea7bc60 (patch) | |
tree | 4eb8d5832f9d87a90c969b6d17f3814033b68d83 /po/Makefile | |
parent | 7babeead0417e8266411fcb01724c47dd01747ac (diff) | |
download | remove-old-kernels-8882e9a2103776ea0e706418911d14e07ea7bc60.tar remove-old-kernels-8882e9a2103776ea0e706418911d14e07ea7bc60.tar.gz remove-old-kernels-8882e9a2103776ea0e706418911d14e07ea7bc60.tar.bz2 remove-old-kernels-8882e9a2103776ea0e706418911d14e07ea7bc60.tar.xz remove-old-kernels-8882e9a2103776ea0e706418911d14e07ea7bc60.zip |
Automate updating the *.po files
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/po/Makefile b/po/Makefile new file mode 100644 index 0000000..9e74803 --- /dev/null +++ b/po/Makefile @@ -0,0 +1,10 @@ +# Update translations when the english master changes + +NAME=remove-old-kernels + +all: + +update-po: + for i in *.po; do \ + msgmerge -v --no-wrap --previous --backup=none --update $$i $(NAME).pot; \ + done |