summaryrefslogtreecommitdiffstats
path: root/common/entities/README.txt
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-02-28 02:06:49 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-02-28 02:06:49 +0000
commit66771e17f1c6ec9a86703622157d37a4b512ee19 (patch)
treeee10bda0eb22ab2bedc1a645f1d55b06951fced3 /common/entities/README.txt
parent5ba0ead194412c37d8f32580c82b934d1ae3a636 (diff)
downloadfedora-doc-utils-66771e17f1c6ec9a86703622157d37a4b512ee19.tar.gz
fedora-doc-utils-66771e17f1c6ec9a86703622157d37a4b512ee19.tar.xz
fedora-doc-utils-66771e17f1c6ec9a86703622157d37a4b512ee19.zip
Added "fdpcommon" kind of entity. Automatically relocate files
marked as "fdpcommon" when building the ".ent" files. Revert Karsten's "Makefile.common" change as a courtesey.
Diffstat (limited to 'common/entities/README.txt')
-rw-r--r--common/entities/README.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/common/entities/README.txt b/common/entities/README.txt
new file mode 100644
index 0000000..454f11b
--- /dev/null
+++ b/common/entities/README.txt
@@ -0,0 +1,31 @@
+ How To Add Support For A New Locale
+
+ 1) Append the ISO locale code, as either xx or xx_YY, to the
+ ${OTHER} macro definition in the file "Makefile". Below,
+ we will refer to the new locale as ${LANG}.
+
+ 2) Create a .PO file for the locale by typing the command:
+
+ $ make ${LANG}.po
+
+ 3) Add the translations using your favorite .PO file editor,
+ such as kbable(1) or gtranslator(1).
+
+ 4) Review your updated XML file using the command:
+
+ $ make xml-${LANG}
+
+ and reviewing the file "entities-${LANG}.xml" for
+ correctness.
+
+ 5) Repeat steps #3 and #4 until a correct XML file is
+ produced.
+
+ 6) Produce the final output file, "entities-${LANG}.ent" by
+ using the command:
+
+ $ make
+
+ and reviewing the results.
+
+Tommy Reynolds