diff options
Diffstat (limited to 'translate')
-rw-r--r-- | translate | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -11,13 +11,13 @@ if ! grep -q Language-Team admin/cvs.sh; then patch admin/cvs.sh < cvs.sh.diff fi -test -L po || ( rm -f po ; ln -s ../kde-l10n/templates/messages/kdepim po ) +test -L po || ( rm -f po ; ln -s ../kde-l10n/templates/messages/tdepim po ) # I tried setting podir to get the output directly into kde-l10n but then # we run old code in cvs.sh; scripty doesn't use that anymore, but the scripts in l10n. -# However those are harder to reduce to kdepim only, so let's keep the old way +# However those are harder to reduce to tdepim only, so let's keep the old way # of doing it: with a po subdir, like a 3rd-party app and not like a real kde module. -#export podir="$KDEL10N/templates/messages/kdepim" +#export podir="$KDEL10N/templates/messages/tdepim" if ! test -d "po"; then echo "po doesn't exist" exit 1 @@ -42,13 +42,13 @@ if test -z "$gettext_version"; then exit 1 fi -kdepim="$PWD" +tdepim="$PWD" -# I assume kdepim is uptodate, but kde-l10n is probably not +# I assume tdepim is uptodate, but kde-l10n is probably not cd "$KDEL10N" || exit 1 svn update -cd "$kdepim" +cd "$tdepim" make -f admin/Makefile.common package-messages || exit 1 # ? make -f admin/Makefile.common package-merge || exit 1 @@ -58,7 +58,7 @@ scripts/merge_all.sh svn diff -for i in `find -name kdepim`; do +for i in `find -name tdepim`; do cd $i || exit 1 for t in `svn status 2>&1 | grep '^M' | gawk '{print $2}'`; do |