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.
84 lines
2.1 KiB
Bash
Executable File
84 lines
2.1 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test --update: location changed, and xgettext comment added. Both changes
|
|
# must be reflected in the resulting PO file.
|
|
|
|
cat <<\EOF > mm-u-2.po
|
|
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 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. <xyz@zyx.uucp>\n"
|
|
"Language-Team: German <de@li.org>\n"
|
|
"Language: de\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
|
|
|
|
cat <<EOF > mm-u-2.pot
|
|
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
|
"Language-Team: LANGUAGE <LL@li.org>\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
|
|
|
|
: ${MSGMERGE=msgmerge}
|
|
${MSGMERGE} -q --update mm-u-2.po mm-u-2.pot || Exit 1
|
|
mv mm-u-2.po mm-u-2.tmp || { Exit 1; }
|
|
LC_ALL=C tr -d '\r' < mm-u-2.tmp > mm-u-2.po || Exit 1
|
|
|
|
cat <<\EOF > mm-u-2.ok
|
|
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR Free Software Foundation, Inc.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 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. <xyz@zyx.uucp>\n"
|
|
"Language-Team: German <de@li.org>\n"
|
|
"Language: de\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=$?
|
|
|
|
exit $result
|