chiark / gitweb /
New upstream version 1.18
[chroma-debian.git] / po / README
diff --git a/po/README b/po/README
new file mode 100644 (file)
index 0000000..ca47616
--- /dev/null
+++ b/po/README
@@ -0,0 +1,19 @@
+Internationalisation
+====================
+To initialise the template (only if the source code has changed):
+
+    xgettext -d chroma -s -o chroma.pot ../*.c
+
+but remember to add the level titles, action names and scheme names.
+
+To create a new language (eg en_US):
+
+    msginit -l en_US -o en_US.po -i chroma.pot
+    mkdir ../locale/en_US/
+    mkdir ../locale/en_US/LC_MESSAGES/
+
+To update the translations:
+
+    msgfmt -c -v -o ../locale/en_US/LC_MESSAGES/chroma.mo en_US.po
+
+More translations always welcomed!