diff options
author | David Prévot <taffit@debian.org> | 2011-12-08 09:38:04 -0400 |
---|---|---|
committer | David Prévot <taffit@debian.org> | 2011-12-08 10:44:05 -0400 |
commit | f6da5ef3d2eee72a9092cd700f6b3b054c730e8a (patch) | |
tree | aa974c6ba46cb7f4b4ffb6d3776bd2bab5c6088b /grep-dctrl | |
parent | beedf723abfcffe21508d9cd7ccb34f17c60bb67 (diff) | |
download | dctrl-tools-f6da5ef3d2eee72a9092cd700f6b3b054c730e8a.tar.gz |
(en) Runtime strings review by Justin B Rye
<20111208103543.GA24436@xibalba.demon.co.uk>
Diffstat (limited to 'grep-dctrl')
-rw-r--r-- | grep-dctrl/grep-dctrl.c | 4 | ||||
-rw-r--r-- | grep-dctrl/rc.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/grep-dctrl/grep-dctrl.c b/grep-dctrl/grep-dctrl.c index 0fc74c5..9e661bb 100644 --- a/grep-dctrl/grep-dctrl.c +++ b/grep-dctrl/grep-dctrl.c @@ -138,8 +138,8 @@ static struct argp_option options[] = { { "gt", OPT_GT, 0, 0, N_("Version number comparison: >>.") }, { "ge", OPT_GE, 0, 0, N_("Version number comparison: >=.") }, { "debug-optparse", OPT_OPTPARSE, 0, 0, N_("Debug option parsing.") }, - { "quiet", 'q', 0, 0, N_("Do no output to stdout.") }, - { "silent", OPT_SILENT, 0, 0, N_("Do no output to stdout.") }, + { "quiet", 'q', 0, 0, N_("Do not output to stdout.") }, + { "silent", OPT_SILENT, 0, 0, N_("Do not output to stdout.") }, { "mmap", OPT_MMAP, 0, 0, N_("Attempt mmapping input files") }, { "ignore-parse-errors", OPT_IGN_ERRS, 0, 0, N_("Ignore parse errors") }, { "pattern", OPT_PATTERN, N_("PATTERN"), 0, N_("Specify the pattern to search for") }, diff --git a/grep-dctrl/rc.c b/grep-dctrl/rc.c index 5cc5cf1..fb4b88b 100644 --- a/grep-dctrl/rc.c +++ b/grep-dctrl/rc.c @@ -158,7 +158,7 @@ struct ifile find_ifile_by_exename(const char * exename, const char * rcfname) line_exe = strtok(line, " \t"); if (line_exe == 0) { line_message(L_IMPORTANT, fname, lineno, - _("syntax error: need a executable name") + _("syntax error: need an executable name") ); continue; } |