diff options
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 |