diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 14:34:21 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 14:34:21 -0500 |
commit | 0b94ec26fed58360181df1fcdd7022506508e1c9 (patch) | |
tree | 4a03f5be1b88867c7b9a7be79bb1207d00ee3457 /src/redshift.c | |
parent | redshift: Add translation comment to N,S,W,E strings (diff) | |
download | redshift-ng-0b94ec26fed58360181df1fcdd7022506508e1c9.tar.gz redshift-ng-0b94ec26fed58360181df1fcdd7022506508e1c9.tar.bz2 redshift-ng-0b94ec26fed58360181df1fcdd7022506508e1c9.tar.xz |
redshift: Add translation of Daytime/Night in new gamma string
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/redshift.c b/src/redshift.c index c22826b..9e48aa0 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -1280,10 +1280,12 @@ main(int argc, char *argv[]) } if (verbose) { + /* TRANSLATORS: The string in parenthesis is either + Daytime or Night (translated). */ printf(_("Gamma (%s): %.3f, %.3f, %.3f\n"), - "Day", day.gamma[0], day.gamma[1], day.gamma[2]); + _("Daytime"), day.gamma[0], day.gamma[1], day.gamma[2]); printf(_("Gamma (%s): %.3f, %.3f, %.3f\n"), - "Night", night.gamma[0], night.gamma[1], night.gamma[2]); + _("Night"), night.gamma[0], night.gamma[1], night.gamma[2]); } /* Initialize gamma adjustment method. If method is NULL |