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.
54 lines
887 B
Bash
Executable File
54 lines
887 B
Bash
Executable File
#! /bin/sh
|
|
. "${srcdir=.}/init.sh"; path_prepend_ . ../src
|
|
|
|
# Test handling of obsolete/untranslated messages with Java .properties syntax.
|
|
|
|
cat <<EOF > mm-p-1.in1
|
|
#
|
|
# def.po
|
|
#
|
|
#: file:100
|
|
not\ existing=but with translation
|
|
|
|
#: file2:101
|
|
!not\ existing\ without\ translation=
|
|
|
|
#: file3:102
|
|
still\ existing=translation
|
|
|
|
#
|
|
# trailing comments should be removed
|
|
EOF
|
|
|
|
cat <<EOF > mm-p-1.in2
|
|
#
|
|
# ref.po
|
|
#
|
|
#: file3:102
|
|
still\ existing=here is normally no comment
|
|
|
|
#: file4:10
|
|
!untranslated=
|
|
|
|
#
|
|
# trailing comments should be removed, even here
|
|
EOF
|
|
|
|
: ${MSGMERGE=msgmerge}
|
|
${MSGMERGE} -q --properties-input --properties-output -o mm-p-1.tmp mm-p-1.in1 mm-p-1.in2 || Exit 1
|
|
LC_ALL=C tr -d '\r' < mm-p-1.tmp > mm-p-1.out || Exit 1
|
|
|
|
cat << EOF > mm-p-1.ok
|
|
#: file3:102
|
|
still\ existing=translation
|
|
|
|
#: file4:10
|
|
!untranslated=
|
|
EOF
|
|
|
|
: ${DIFF=diff}
|
|
${DIFF} mm-p-1.ok mm-p-1.out
|
|
result=$?
|
|
|
|
exit $result
|