diff options
author | Jim Meyering <meyering@redhat.com> | 2008-01-02 18:28:59 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-01-14 17:57:50 +0100 |
commit | 938c68aff4782e86856379002485b33ff09c212f (patch) | |
tree | f058adce2559cc8547abe5da084484c3d7fd6a1a /libidu/walker.c | |
parent | 098b69c42296d9251add734dab054f02d89e3bda (diff) | |
download | idutils-938c68aff4782e86856379002485b33ff09c212f.tar.gz idutils-938c68aff4782e86856379002485b33ff09c212f.tar.bz2 idutils-938c68aff4782e86856379002485b33ff09c212f.zip |
Mark diagnostics for translation.
* src/mkid.c (main): Mark with _(...).
* libidu/walker.c (exclude_languages, include_languages): Likewise.
* src/lid.c (report_grep): Likewise.
Signed-off-by: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'libidu/walker.c')
-rw-r--r-- | libidu/walker.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libidu/walker.c b/libidu/walker.c index 4bd7a88..7111733 100644 --- a/libidu/walker.c +++ b/libidu/walker.c @@ -491,7 +491,7 @@ void include_languages (char *lang_names) { if (langs_excluded) - error (1, 0, "can't mix --include and --exclude options"); + error (1, 0, _("can't mix --include and --exclude options")); langs_included = append_strings_to_vector (langs_included, lang_names, white_space); } @@ -499,7 +499,7 @@ void exclude_languages (char *lang_names) { if (langs_excluded) - error (1, 0, "can't mix --include and --exclude options"); + error (1, 0, _("can't mix --include and --exclude options")); langs_excluded = append_strings_to_vector (langs_excluded, lang_names, white_space); } |