svn --> git

This commit is contained in:
Richard Kimberly Heck 2024-06-23 12:22:03 -04:00
parent 59648b5d35
commit 23858d72a5
8 changed files with 7573 additions and 7223 deletions

View File

@ -12,9 +12,10 @@ DEBUG="";
COMMIT="";
# shellcheck disable=SC2086
while getopts ":cdh" options $ARGS; do
while getopts ":cCdh" options $ARGS; do
case $options in
c) COMMIT="TRUE";;
C) COMMIT="TRUE";;
d) DEBUG="echo";;
h) echo "update-po.sh [-c] [-d]";
echo "-c: Commit any changes we find.";
@ -83,7 +84,7 @@ fi
# make sure things are clean
rm -f i18n.inc;
svn revert "$FARM/$I18NFILE";
# git checkout "$FARM/$I18NFILE";
echo Running make i18n.inc...
make i18n.inc >/dev/null 2>&1;
@ -91,7 +92,7 @@ if [ -n "$TRUNK" ]; then
mv -f i18n.inc i18n_trunk.inc
fi
if diff -w -q "$I18NFILE $FARM/$I18NFILE" >/dev/null 2>&1; then
if diff -w -q "$I18NFILE" "$FARM/$I18NFILE" >/dev/null 2>&1; then
echo No string differences found.
git checkout ./*.po ./*.gmo;
exit 0;
@ -100,7 +101,7 @@ fi
# So there are differences.
if [ -z "$COMMIT" ]; then
echo "Differences found!";
diff -wu "$FARM/$I18NFILE $I18NFILE" | less;
diff -wu "$FARM/$I18NFILE" "$I18NFILE" | less;
git checkout ./*.po ./*.gmo;
exit 0;
fi

2319
po/ar.po

File diff suppressed because it is too large Load Diff

2406
po/bg.po

File diff suppressed because it is too large Load Diff

2327
po/cs.po

File diff suppressed because it is too large Load Diff

766
po/de.po

File diff suppressed because it is too large Load Diff

2294
po/en.po

File diff suppressed because it is too large Load Diff

2340
po/es.po

File diff suppressed because it is too large Load Diff

2335
po/eu.po

File diff suppressed because it is too large Load Diff