diff options
author | Bruno Haible <bruno@clisp.org> | 2003-08-08 17:51:04 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:48 +0200 |
commit | f91947f6735ab16e62becb9905ecdfcdb7a02f64 (patch) | |
tree | bfac467c04e499116a624588dc2c2685acb88553 /gettext-tools/src/message.c | |
parent | 273af5ac59fcf05cddbd5312799601bde895b8d3 (diff) | |
download | external_gettext-f91947f6735ab16e62becb9905ecdfcdb7a02f64.zip external_gettext-f91947f6735ab16e62becb9905ecdfcdb7a02f64.tar.gz external_gettext-f91947f6735ab16e62becb9905ecdfcdb7a02f64.tar.bz2 |
Support for gcc-internal format strings.
Diffstat (limited to 'gettext-tools/src/message.c')
-rw-r--r-- | gettext-tools/src/message.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gettext-tools/src/message.c b/gettext-tools/src/message.c index 2945063..f8c32e9 100644 --- a/gettext-tools/src/message.c +++ b/gettext-tools/src/message.c @@ -47,7 +47,8 @@ const char *const format_language[NFORMATS] = /* format_tcl */ "tcl", /* format_perl */ "perl", /* format_perl_brace */ "perl-brace", - /* format_php */ "php" + /* format_php */ "php", + /* format_gcc_internal */ "gcc-internal" }; const char *const format_language_pretty[NFORMATS] = @@ -65,7 +66,8 @@ const char *const format_language_pretty[NFORMATS] = /* format_tcl */ "Tcl", /* format_perl */ "Perl", /* format_perl_brace */ "Perl brace", - /* format_php */ "PHP" + /* format_php */ "PHP", + /* format_gcc_internal */ "GCC internal" }; |