aboutsummaryrefslogtreecommitdiffhomepage
path: root/markup/pod/live-manual/media/text/bin/po-integrity-check.sh
diff options
context:
space:
mode:
Diffstat (limited to 'markup/pod/live-manual/media/text/bin/po-integrity-check.sh')
-rwxr-xr-xmarkup/pod/live-manual/media/text/bin/po-integrity-check.sh71
1 files changed, 0 insertions, 71 deletions
diff --git a/markup/pod/live-manual/media/text/bin/po-integrity-check.sh b/markup/pod/live-manual/media/text/bin/po-integrity-check.sh
deleted file mode 100755
index 0dc23a2..0000000
--- a/markup/pod/live-manual/media/text/bin/po-integrity-check.sh
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Script to help translators to check the integrity of po files in live-manual.
-#
-# 'msgfmt' performs several checks and outputs some common errors:
-#
-# - Checks format
-# - Checks header
-# - ...
-#
-# We do not want to compile a .mo file so we use /dev/null.
-#
-
-echo ""
-echo "This script can help you check the integrity of po files."
-echo "Select: $(ls -C manual/po) ['a' to see all] ['q' to quit] "
-
-# Creating function
-
-Integrity_check()
-{
- echo "Checking the integrity of $(ls manual/po/${LANGUAGE}/* | wc -l) po files in ${LANGUAGE}."
- echo ""
- for POFILE in manual/po/${LANGUAGE}/*
- do
- echo "-$(basename ${POFILE})"
- msgfmt --verbose --check --output-file=/dev/null ${POFILE} || { echo "-> This .po file might be 'BAD'. Please revise it."; echo ""; exit 1; }
- if [ "$?" -eq "0" ]
- then
- echo "-> This .po file is 'GOOD'."
- echo ""
- fi
- done
-}
-
-# Menu.
-
-read LANGUAGE
-
-case "$LANGUAGE" in
- en) echo "Nothing to be done, really!"
- ;;
-
- ca|de|es|fr|it|ja|pl|pt_BR|ro)
- Integrity_check
- ;;
-
- a) for LANGUAGE in manual/po/*
- do
- for POFILE in ${LANGUAGE}/*
- do
- echo "-Checking the integrity of '$(basename ${POFILE})' in '$(basename ${LANGUAGE})'"
- msgfmt --verbose --check --output-file=/dev/null ${POFILE} || { echo "-> This .po file might be 'BAD'. Please revise it."; echo ""; exit 1; }
- if [ "$?" -eq "0" ]
- then
- echo "->This .po file is 'GOOD'."
- echo ""
- fi
- done
- done
- ;;
-
- q) exit 0
- ;;
-
- *) echo "No language chosen. Exiting..."
- ;;
-
-esac