#! /bin/sh # Test --update: location changed, and xgettext comment added. Both changes # must be reflected in the resulting PO file. tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles mm-u-2.po" cat <<\EOF > mm-u-2.po # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: cog_training 1.0\n" "POT-Creation-Date: 2001-04-29 22:40+0200\n" "PO-Revision-Date: 2001-04-29 21:19+02:00\n" "Last-Translator: Felix N. \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: cogarithmetic.cc:12 msgid "white" msgstr "weiß" EOF tmpfiles="$tmpfiles mm-u-2.pot" cat < mm-u-2.pot # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2001-04-29 22:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #. location changed #: cogarithmetic.cc:33 msgid "white" msgstr "" EOF tmpfiles="$tmpfiles mm-u-2.po~" : ${MSGMERGE=msgmerge} ${MSGMERGE} -q --update mm-u-2.po mm-u-2.pot test $? = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles mm-u-2.ok" cat <<\EOF > mm-u-2.ok # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: cog_training 1.0\n" "POT-Creation-Date: 2001-04-29 22:40+0200\n" "PO-Revision-Date: 2001-04-29 21:19+02:00\n" "Last-Translator: Felix N. \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #. location changed #: cogarithmetic.cc:33 msgid "white" msgstr "weiß" EOF : ${DIFF=diff} ${DIFF} mm-u-2.ok mm-u-2.po result=$? rm -fr $tmpfiles exit $result