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.
81 lines
2.1 KiB
Bash
Executable File
81 lines
2.1 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test --update: POT-Creation-Date changed. This change must not be reflected
|
|
# in the resulting PO file; this is needed for projects which don't put the
|
|
# .pot file under CVS.
|
|
|
|
cat <<\EOF > mm-u-3.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 cogidmarkup.cc:288 cogroman.cc:14
|
|
msgid "white"
|
|
msgstr "weiß"
|
|
EOF
|
|
|
|
cat <<EOF > mm-u-3.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-30 18:51+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"
|
|
|
|
#: cogarithmetic.cc:12 cogidmarkup.cc:288 cogroman.cc:14
|
|
msgid "white"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${MSGMERGE=msgmerge}
|
|
${MSGMERGE} -q --update mm-u-3.po mm-u-3.pot || Exit 1
|
|
|
|
cat <<\EOF > mm-u-3.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"
|
|
|
|
#: cogarithmetic.cc:12 cogidmarkup.cc:288 cogroman.cc:14
|
|
msgid "white"
|
|
msgstr "weiß"
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mm-u-3.ok mm-u-3.po
|
|
result=$?
|
|
|
|
exit $result
|