diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2010-06-10 13:28:30 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2010-06-10 13:28:30 +0200 |
commit | 6e5ec155d13c9954fe53c35f84d7709b1a361664 (patch) | |
tree | fd6f4599526219cf68fb5935406259a11edaa871 /src/redshift.c | |
parent | Merge application indicator support from Franesco Marella. (diff) | |
download | redshift-ng-6e5ec155d13c9954fe53c35f84d7709b1a361664.tar.gz redshift-ng-6e5ec155d13c9954fe53c35f84d7709b1a361664.tar.bz2 redshift-ng-6e5ec155d13c9954fe53c35f84d7709b1a361664.tar.xz |
Add comments about certain substring which must not be translated.
Fix help text that refered to the wrong command line parameter.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/redshift.c b/src/redshift.c index a8f2966..bb418c7 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -312,6 +312,7 @@ print_method_list() fputs("\n", stdout); fputs(_("Specify colon-separated options with" " `-m METHOD:OPTIONS'.\n"), stdout); + /* TRANSLATORS: `help' must not be translated. */ fputs(_("Try `-m METHOD:help' for help.\n"), stdout); } @@ -326,6 +327,7 @@ print_provider_list() fputs("\n", stdout); fputs(_("Specify colon-separated options with" "`-l PROVIDER:OPTIONS'.\n"), stdout); + /* TRANSLATORS: `help' must not be translated. */ fputs(_("Try `-l PROVIDER:help' for help.\n"), stdout); } @@ -362,7 +364,8 @@ provider_try_start(const location_provider_t *provider, provider->free(state); fprintf(stderr, _("Failed to set %s option.\n"), provider->name); - fprintf(stderr, _("Try `-p %s:help' for more" + /* TRANSLATORS: `help' must not be translated. */ + fprintf(stderr, _("Try `-l %s:help' for more" " information.\n"), provider->name); return -1; } @@ -414,7 +417,8 @@ method_try_start(const gamma_method_t *method, method->free(state); fprintf(stderr, _("Failed to set %s option.\n"), method->name); - fprintf(stderr, _("Try `-p %s:help' for more" + /* TRANSLATORS: `help' must not be translated. */ + fprintf(stderr, _("Try -m %s:help' for more" " information.\n"), method->name); return -1; } |