aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-30 22:08:06 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-30 22:08:06 -0500
commit542254705b33d2f23937743b1d95deb27ef7461b (patch)
tree02fa8340ed765dbc83abf2d9a65ec2456294f436 /src
parentMerge branch 'hooks-dir' (diff)
downloadredshift-ng-542254705b33d2f23937743b1d95deb27ef7461b.tar.gz
redshift-ng-542254705b33d2f23937743b1d95deb27ef7461b.tar.bz2
redshift-ng-542254705b33d2f23937743b1d95deb27ef7461b.tar.xz
redshift: Fix untranslated status strings
Diffstat (limited to 'src')
-rw-r--r--src/redshift.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/redshift.c b/src/redshift.c
index 429ae38..3fbbe9c 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -1453,7 +1453,7 @@ main(int argc, char *argv[])
#endif /* HAVE_SIGNAL_H && ! __WIN32__ */
if (verbose) {
- printf("Status: %s\n", "Enabled");
+ printf(_("Status: %s\n"), _("Enabled"));
}
/* Save previous colors so we can avoid
@@ -1481,8 +1481,8 @@ main(int argc, char *argv[])
disable = 0;
if (verbose) {
- printf("Status: %s\n", disabled ?
- "Disabled" : "Enabled");
+ printf(_("Status: %s\n"), disabled ?
+ _("Disabled") : _("Enabled"));
}
}