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.
93 lines
2.4 KiB
Bash
Executable File
93 lines
2.4 KiB
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test merging of a ref.pot in UTF-8 encoding against a def.po in legacy
|
|
# encoding (that was produced from an older version of ref.pot, in ASCII
|
|
# encoding).
|
|
|
|
cat <<\EOF > mm-test14-ru.po
|
|
# Russian messages for CLISP
|
|
# Copyright (C) 1998 Free Software Foundation, Inc.
|
|
# Eduard Haritonov <hed@iis.nsk.su>, 1998.
|
|
# Arseny Slobodjuck <ampy@ich.dvo.ru>, 2002.
|
|
#
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: GNU elvis 1.7\n"
|
|
"POT-Creation-Date: 2002-11-01 01:22+0100\n"
|
|
"PO-Revision-Date: 2002-11-01 01:23+0100\n"
|
|
"Last-Translator: Arseny Slobodjuck <ampy@ich.dvo.ru>\n"
|
|
"Language-Team: Russian <ru@li.org>\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=koi8-r\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: arith.c:9
|
|
msgid "Division durch Null"
|
|
msgstr "ÄÅÌÅÎÉÅ ÎÁ ÎÕÌØ"
|
|
EOF
|
|
|
|
cat <<\EOF > mm-test14.pot
|
|
# SOME DESCRIPTIVE TITLE.
|
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
# This file is distributed under the same license as the PACKAGE package.
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
#
|
|
#, fuzzy
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
"POT-Creation-Date: 2002-11-01 01:22+0100\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=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: arith.c:10
|
|
msgid "Division durch Null"
|
|
msgstr ""
|
|
|
|
#: arith.c:15
|
|
msgid "Überlauf"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${MSGMERGE=msgmerge}
|
|
${MSGMERGE} -q -o mm-test14.tmp mm-test14-ru.po mm-test14.pot || Exit 1
|
|
LC_ALL=C tr -d '\r' < mm-test14.tmp > mm-test14.out || Exit 1
|
|
|
|
cat <<\EOF > mm-test14.ok
|
|
# Russian messages for CLISP
|
|
# Copyright (C) 1998 Free Software Foundation, Inc.
|
|
# Eduard Haritonov <hed@iis.nsk.su>, 1998.
|
|
# Arseny Slobodjuck <ampy@ich.dvo.ru>, 2002.
|
|
#
|
|
msgid ""
|
|
msgstr ""
|
|
"Project-Id-Version: GNU elvis 1.7\n"
|
|
"POT-Creation-Date: 2002-11-01 01:22+0100\n"
|
|
"PO-Revision-Date: 2002-11-01 01:23+0100\n"
|
|
"Last-Translator: Arseny Slobodjuck <ampy@ich.dvo.ru>\n"
|
|
"Language-Team: Russian <ru@li.org>\n"
|
|
"Language: ru\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
#: arith.c:10
|
|
msgid "Division durch Null"
|
|
msgstr "деление на нуль"
|
|
|
|
#: arith.c:15
|
|
msgid "Überlauf"
|
|
msgstr ""
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mm-test14.ok mm-test14.out
|
|
result=$?
|
|
|
|
exit $result
|