aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-23 15:32:26 +0100
committerMattias Andrée <m@maandree.se>2025-03-23 15:41:00 +0100
commitfb37d1a017156c739696b88fadc9ae3bfbe83a1a (patch)
tree8cf7958249fbccccb74d0d9cc9428c7afcc36e28
parentLet translates translate "N" in adjustment method option tables (diff)
downloadredshift-ng-fb37d1a017156c739696b88fadc9ae3bfbe83a1a.tar.gz
redshift-ng-fb37d1a017156c739696b88fadc9ae3bfbe83a1a.tar.bz2
redshift-ng-fb37d1a017156c739696b88fadc9ae3bfbe83a1a.tar.xz
m fix
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r--src/backend-direct.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend-direct.c b/src/backend-direct.c
index bdbbbfe..f89e2ea 100644
--- a/src/backend-direct.c
+++ b/src/backend-direct.c
@@ -203,7 +203,7 @@ direct_print_help(FILE *f, int method)
struct libgamma_method_capabilities caps;
if (libgamma_method_capabilities(&caps, sizeof(caps), method)) {
- fprintf(f, _("Adjustment not available\n"));
+ fprintf(f, _("Adjustment method not available\n"));
fprintf(f, "\n");
return;
}
@@ -218,7 +218,7 @@ direct_print_help(FILE *f, int method)
fprintf(f, " crtc=%s %s\n", _("N "), _("List of comma-separated CRTCs to apply adjustments to"));
if (caps.multiple_partitions || caps.multiple_crtcs)
- fprintf(f, "\n";
+ fprintf(f, "\n");
}
@@ -440,7 +440,8 @@ direct_start(struct gamma_state *state)
if (!state->multiple_partitions)\
weprintf(_("Could not get current adjustments for CRTC %zu."), num);\
else if (state->partitions_are_graphics_cards)\
- weprintf(_("Could not get current adjustments for CRTC %zu on graphics card %zu."), num, part);\
+ weprintf(_("Could not get current adjustments for CRTC %zu on graphics card %zu."),\
+ num, part);\
else\
weprintf(_("Could not get current adjustments for CRTC %zu on X screen %zu."), num, part);\
} else {\