aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2010-05-05 22:26:13 +0200
committerJon Lund Steffensen <jonlst@gmail.com>2010-05-05 22:26:13 +0200
commit8c266ebb7aa895b319d8f442679282c585c930b0 (patch)
tree8d83f20d81ef0c70fd2aeaf5d2f763c0b7ef7c7c /src/redshift.c
parentChange python dependency to 2.6. (diff)
downloadredshift-ng-8c266ebb7aa895b319d8f442679282c585c930b0.tar.gz
redshift-ng-8c266ebb7aa895b319d8f442679282c585c930b0.tar.bz2
redshift-ng-8c266ebb7aa895b319d8f442679282c585c930b0.tar.xz
Show default temperature values in help output.
Diffstat (limited to 'src/redshift.c')
-rw-r--r--src/redshift.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c
index abb0bfd..da1dafb 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -226,6 +226,14 @@ print_help(const char *program_name)
stdout);
fputs("\n", stdout);
+ /* TRANSLATORS: help output 5
+ no-wrap */
+ fputs(_("Default values:\n"), stdout);
+ fputs("\n", stdout);
+ printf(_(" Daytime temperature: %uK\n"), DEFAULT_DAY_TEMP);
+ printf(_(" Night temperature: %uK\n"), DEFAULT_NIGHT_TEMP);
+ fputs("\n", stdout);
+
/* TRANSLATORS: help output 5 */
printf("Please report bugs to <%s>\n", PACKAGE_BUGREPORT);
}