summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authordanilo <>2004-06-14 13:05:24 +0000
committerdanilo <>2004-06-14 13:05:24 +0000
commit2f03d9401e8332a7e2ed85b5990484b331f5d8b1 (patch)
tree74fb0061e7e98d81a36878c93e57f58740233135 /README
parenta577f65018714638d7ee3ae464b9e74752d78bb9 (diff)
downloadintltool-2f03d9401e8332a7e2ed85b5990484b331f5d8b1.tar.gz
2004-06-14 Danilo Å egan <dsegan@gmx.net>
* README: Extend section on using without autoconf to mention Makevars. * NEWS: Document using without autoconf-style files. * intltool-update.in.in (FindMakevarsDomain): Read $DOMAIN from po/Makevars. (FindPOTKeywords): Try Makevars/XGETTEXT_OPTIONS first, then Makefile.in.in/XGETTEXT_KEYWORDS. (FindPackageName): Try FindMakevarsDomain first. Don't bork out if there's no configure.in or configure.ac. (CONF_Handle_Open): Try Makevars first, don't bork out if there're no autoconf-style files.
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 10 insertions, 0 deletions
diff --git a/README b/README
index 7256d1b..2c343ba 100644
--- a/README
+++ b/README
@@ -222,6 +222,16 @@ somename.desktop
You can also type intltool-merge --help for a bit more info.
+To specify parameters for intltool-update (such as keywords or gettext
+domain), you can use Makevars syntax as used in recent GNU gettext, by
+putting something like the following in po/Makevars file:
+
+ DOMAIN = mydomain
+ XGETTEXT_OPTIONS = --keyword --keyword=blah
+
+This will make "intltool-update -p" produce mydomain.pot, passing
+parameters "--keyword --keyword=blah" to xgettext when extracting
+strings.
Passing special parameters to xgettext via environment
......................................................