diff options
author | Bruno Haible <bruno@clisp.org> | 2003-10-28 16:10:35 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:06 +0200 |
commit | 2f09ddb5c812f820b8d9f2cf521262fcbfc4732d (patch) | |
tree | 64b68ea17dd7a4d8e1050b5dc857a7cbce7b5944 /gettext-tools/src/format.c | |
parent | 06784fb7630f0d8511682df4d72e0e006e60e8b4 (diff) | |
download | external_gettext-2f09ddb5c812f820b8d9f2cf521262fcbfc4732d.zip external_gettext-2f09ddb5c812f820b8d9f2cf521262fcbfc4732d.tar.gz external_gettext-2f09ddb5c812f820b8d9f2cf521262fcbfc4732d.tar.bz2 |
Support for Qt message catalog format and Qt format strings.
Diffstat (limited to 'gettext-tools/src/format.c')
-rw-r--r-- | gettext-tools/src/format.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gettext-tools/src/format.c b/gettext-tools/src/format.c index 5b7edfc..82a4393 100644 --- a/gettext-tools/src/format.c +++ b/gettext-tools/src/format.c @@ -42,5 +42,6 @@ struct formatstring_parser *formatstring_parsers[NFORMATS] = /* format_perl */ &formatstring_perl, /* format_perl_brace */ &formatstring_perl_brace, /* format_php */ &formatstring_php, - /* format_gcc_internal */ &formatstring_gcc_internal + /* format_gcc_internal */ &formatstring_gcc_internal, + /* format_qt */ &formatstring_qt }; |