From c98515883097467896a3f46b755c8cb892fe8961 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Tue, 29 Oct 2013 18:42:08 +0100 Subject: Import initial avec une arbrescence éclatée MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/build_all.sh | 2 ++ dist/debian/TODO | 0 dist/out/.builds-goes-here | 1 + dist/scripts/po2mo.sh | 9 +++++++++ 4 files changed, 12 insertions(+) create mode 100755 dist/build_all.sh create mode 100644 dist/debian/TODO create mode 100644 dist/out/.builds-goes-here create mode 100755 dist/scripts/po2mo.sh (limited to 'dist') 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 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 -- cgit v1.2.3