summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorLudovic Pouzenc <lpouzenc@gmail.com>2013-10-29 18:42:08 +0100
committerLudovic Pouzenc <lpouzenc@gmail.com>2013-10-29 18:42:08 +0100
commitc98515883097467896a3f46b755c8cb892fe8961 (patch)
treebe2e4f5450e9bc9cf692e8dfac7c9780eaa7019b /dist
downloadeditablesite-c98515883097467896a3f46b755c8cb892fe8961.tar.gz
editablesite-c98515883097467896a3f46b755c8cb892fe8961.tar.bz2
editablesite-c98515883097467896a3f46b755c8cb892fe8961.zip
Import initial avec une arbrescence éclatée
Diffstat (limited to 'dist')
-rwxr-xr-xdist/build_all.sh2
-rw-r--r--dist/debian/TODO0
-rw-r--r--dist/out/.builds-goes-here1
-rwxr-xr-xdist/scripts/po2mo.sh9
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