diff options
author | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-29 18:42:08 +0100 |
---|---|---|
committer | Ludovic Pouzenc <lpouzenc@gmail.com> | 2013-10-29 18:42:08 +0100 |
commit | c98515883097467896a3f46b755c8cb892fe8961 (patch) | |
tree | be2e4f5450e9bc9cf692e8dfac7c9780eaa7019b /dist | |
download | editablesite-c98515883097467896a3f46b755c8cb892fe8961.tar.gz editablesite-c98515883097467896a3f46b755c8cb892fe8961.tar.bz2 editablesite-c98515883097467896a3f46b755c8cb892fe8961.zip |
Import initial avec une arbrescence éclatée
Diffstat (limited to 'dist')
-rwxr-xr-x | dist/build_all.sh | 2 | ||||
-rw-r--r-- | dist/debian/TODO | 0 | ||||
-rw-r--r-- | dist/out/.builds-goes-here | 1 | ||||
-rwxr-xr-x | dist/scripts/po2mo.sh | 9 |
4 files changed, 12 insertions, 0 deletions
diff --git a/dist/build_all.sh b/dist/build_all.sh new file mode 100755 index 0000000..05a7907 --- /dev/null +++ b/dist/build_all.sh @@ -0,0 +1,2 @@ +#!/bin/bash + diff --git a/dist/debian/TODO b/dist/debian/TODO new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/dist/debian/TODO diff --git a/dist/out/.builds-goes-here b/dist/out/.builds-goes-here new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/dist/out/.builds-goes-here @@ -0,0 +1 @@ + diff --git a/dist/scripts/po2mo.sh b/dist/scripts/po2mo.sh new file mode 100755 index 0000000..7be049b --- /dev/null +++ b/dist/scripts/po2mo.sh @@ -0,0 +1,9 @@ +#!/bin/bash +for f in *.po +do + mo_dir=${f%%.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 |