summaryrefslogtreecommitdiffstats
path: root/po
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-04-11 12:14:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 14:31:18 +0900
commitca2e3d8564bdffd6eca291d55b9ee16c8d585a5e (patch)
tree2047d17c5e6f6e77dc33dbde71bb8e09388998f1 /po
parente3e5eb5f859df0257827e18a9a5fd1268c6e467e (diff)
downloadpiklab-ca2e3d8564bdffd6eca291d55b9ee16c8d585a5e.tar.gz
piklab-ca2e3d8564bdffd6eca291d55b9ee16c8d585a5e.zip
Removed unused file in translation folder
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'po')
-rw-r--r--po/merge.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/po/merge.sh b/po/merge.sh
deleted file mode 100644
index efa7048..0000000
--- a/po/merge.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-template=`find . -name "*.pot" | sed -e 's#^./\(.*\)$#\1#'`
-files=`find . -name "*.po" | sed -e 's#^./\(.*\)$#\1#'`
-test -n "$VERBOSE" && echo $files
-
-for file in $files; do
- echo merging $file
- files=
- if test ! -s $file; then
- echo "ERROR: $file is empty!"
- elif msgmerge --no-wrap -q -o $file $file $template; then
- files="$files $file"
- else
- echo "ERROR: msgmerge failed for $file"
- fi
-done