summaryrefslogtreecommitdiffstats
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-07 11:02:45 +0900
commit8bdcbe0178113223e2f40a0eb9eb01b0a866b3bd (patch)
tree16a618a427955d20d8174142880701e63ed00fb0
parent819166fe5068c798f6e31a3e8e75b933f82b6407 (diff)
downloadpiklab-8bdcbe0178113223e2f40a0eb9eb01b0a866b3bd.tar.gz
piklab-8bdcbe0178113223e2f40a0eb9eb01b0a866b3bd.zip
Removed unused file in translation folder
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ca2e3d8564bdffd6eca291d55b9ee16c8d585a5e)
-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