diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 13:24:22 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-11-29 13:24:29 +0100 |
commit | c9a4c8658e1cf689e8565d664677dfd7f56f023d (patch) | |
tree | 0ec6d6317dcb024199bde85c5d04927fd6575792 | |
parent | a8439d229ad4813e8c2768248dd6a8a5be02368b (diff) | |
download | ayatana-indicator-printers-c9a4c8658e1cf689e8565d664677dfd7f56f023d.tar.gz ayatana-indicator-printers-c9a4c8658e1cf689e8565d664677dfd7f56f023d.tar.bz2 ayatana-indicator-printers-c9a4c8658e1cf689e8565d664677dfd7f56f023d.zip |
update-po.sh: Preserve .pot file when updating *.po files.
-rwxr-xr-x | update-po.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/update-po.sh b/update-po.sh index d1f375d..dff6f3a 100755 --- a/update-po.sh +++ b/update-po.sh @@ -16,12 +16,14 @@ set -x # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/> -GETTEXT_DOMAIN=$(cat configure.ac | grep -E "^GETTEXT_PACKAGE=" | sed -e 's/GETTEXT_PACKAGE=//') +GETTEXT_DOMAIN=$(cat CMakeLists.txt | grep 'set.*(.*GETTEXT_PACKAGE' | sed -r -e 's/.*\"([^"]+)\"\)/\1/') + +cp po/${GETTEXT_DOMAIN}.pot po/${GETTEXT_DOMAIN}.pot~ cd po/ cat LINGUAS | while read lingua; do if [ ! -e ${lingua}.po ]; then - msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po + msginit --input=${GETTEXT_DOMAIN}.pot --locale=${lingua} --no-translator --output-file=$lingua.po else intltool-update --gettext-package ${GETTEXT_DOMAIN} $(basename ${lingua}) fi @@ -34,3 +36,5 @@ cat LINGUAS | while read lingua; do done cd - 1>/dev/null + +mv po/${GETTEXT_DOMAIN}.pot~ po/${GETTEXT_DOMAIN}.pot |