1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#! /bin/sh
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
# Test msggrep on a PO file with contexts.
cat <<\EOF > mg-test7.po
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. A menu item
msgctxt "File|"
msgid "Open"
msgstr "Ouvrir"
#. A menu item
msgctxt "File|"
msgid "New"
msgstr "Nouveau"
#. Denote a lock's state
msgctxt "Lock state"
msgid "Open"
msgstr "Ouvert"
#. Denote a lock's state
msgctxt "Lock state"
msgid "Closed"
msgstr "Fermé"
#. A product
msgctxt "Audi"
msgid "car"
msgstr "voiture"
#. A product
msgctxt "Océ"
msgid "copier"
msgstr "photocopieur"
#~ msgid "Save As"
#~ msgstr "Enregistrer l'as"
#. A menu item
#~ msgctxt "File|"
#~ msgid "Save As"
#~ msgstr "Enregistrer sous"
EOF
: ${MSGGREP=msggrep}
LC_MESSAGES=C LC_ALL= \
${MSGGREP} -J -e "File|" -o mg-test7.tmp mg-test7.po 2> mg-test7.err
result=$?
cat mg-test7.err | grep -v 'warning: Locale charset' | grep -v '^ '
test $result = 0 || { Exit 1; }
LC_ALL=C tr -d '\r' < mg-test7.tmp > mg-test7.out || Exit 1
cat <<\EOF > mg-test7.ok
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. A menu item
msgctxt "File|"
msgid "Open"
msgstr "Ouvrir"
#. A menu item
msgctxt "File|"
msgid "New"
msgstr "Nouveau"
#. A menu item
#~ msgctxt "File|"
#~ msgid "Save As"
#~ msgstr "Enregistrer sous"
EOF
: ${DIFF=diff}
${DIFF} mg-test7.ok mg-test7.out
result=$?
exit $result
|