Skip to content

Commit 7c85ce5

Browse files
committed
Move l10n script to root folder
1 parent 29bb3ca commit 7c85ce5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
File renamed without changes.

roundcube/src/main/php/l10n/update.sh bin/update.sh

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ if test $# -ne 1; then
55
exit 1;
66
fi
77

8+
CUR_DIR="$(pwd)"
9+
810
APPNAME="$1"
911

10-
perl ./l10n.pl "${APPNAME}" read
12+
L10N_DIR="../"${APPNAME}"/src/main/php/l10n"
13+
14+
cd ${L10N_DIR}
15+
perl ${CUR_DIR}"/l10n.pl" "${APPNAME}" read
1116
msgmerge -vU --previous --backup=numbered de/"${APPNAME}".po templates/"${APPNAME}".pot
12-
perl ./l10n.pl "${APPNAME}" write
17+
perl ${CUR_DIR}"/l10n.pl" "${APPNAME}" write
1318

0 commit comments

Comments
 (0)