diff options
author | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-30 00:51:01 +0100 |
---|---|---|
committer | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-30 00:51:01 +0100 |
commit | 97bd9842f44bb25832f5dd8288372f2199cf3b7b (patch) | |
tree | 336f9affdbd5f0a617071ba6058f6872055951bc /dist | |
parent | 6ab5a946d9b512889d19ae041002cd78156c3ffc (diff) | |
download | editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.tar.gz editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.tar.bz2 editablesite-97bd9842f44bb25832f5dd8288372f2199cf3b7b.zip |
Correction de bugs, amélioration titres admin, traductions.
Diffstat (limited to 'dist')
-rwxr-xr-x | dist/scripts/po2mo.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/dist/scripts/po2mo.sh b/dist/scripts/po2mo.sh deleted file mode 100755 index 79f344d..0000000 --- a/dist/scripts/po2mo.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -srcbase=$1 -dstbase=$2 - -echo "Generating locales..." -for f in $(ls $srcbase/*.po) -do - fname=$(basename "$f") - mo_dir="$dstbase"/${fname%%.po}.utf8/LC_MESSAGES - [ -d "$mo_dir" ] || mkdir -p "$mo_dir" - - #echo msgfmt -o "'$mo_dir/editablesite.mo'" "'$f'" - msgfmt -o "$mo_dir/editablesite.mo" "$f" -done |