facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
89 lines
1.3 KiB
Bash
Executable File
89 lines
1.3 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test msgen on a POT file with contexts.
|
|
|
|
cat <<\EOF > men-test3.pot
|
|
msgid ""
|
|
msgstr ""
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#. A menu item
|
|
msgctxt "File|"
|
|
msgid "Open"
|
|
msgstr ""
|
|
|
|
#. A menu item
|
|
msgctxt "File|"
|
|
msgid "New"
|
|
msgstr ""
|
|
|
|
#. Denote a lock's state
|
|
msgctxt "Lock state"
|
|
msgid "Open"
|
|
msgstr ""
|
|
|
|
#. Denote a lock's state
|
|
msgctxt "Lock state"
|
|
msgid "Closed"
|
|
msgstr ""
|
|
|
|
#. A product
|
|
msgctxt "Audi"
|
|
msgid "car"
|
|
msgstr ""
|
|
|
|
#. A product
|
|
msgctxt "Océ"
|
|
msgid "copier"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${MSGEN=msgen}
|
|
${MSGEN} -o men-test3.tmp men-test3.pot || Exit 1
|
|
LC_ALL=C tr -d '\r' < men-test3.tmp > men-test3.out || Exit 1
|
|
|
|
cat <<\EOF > men-test3.ok
|
|
msgid ""
|
|
msgstr ""
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#. A menu item
|
|
msgctxt "File|"
|
|
msgid "Open"
|
|
msgstr "Open"
|
|
|
|
#. A menu item
|
|
msgctxt "File|"
|
|
msgid "New"
|
|
msgstr "New"
|
|
|
|
#. Denote a lock's state
|
|
msgctxt "Lock state"
|
|
msgid "Open"
|
|
msgstr "Open"
|
|
|
|
#. Denote a lock's state
|
|
msgctxt "Lock state"
|
|
msgid "Closed"
|
|
msgstr "Closed"
|
|
|
|
#. A product
|
|
msgctxt "Audi"
|
|
msgid "car"
|
|
msgstr "car"
|
|
|
|
#. A product
|
|
msgctxt "Océ"
|
|
msgid "copier"
|
|
msgstr "copier"
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} men-test3.ok men-test3.out
|
|
result=$?
|
|
|
|
exit $result
|