diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 15:27:32 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 15:27:43 +0100 |
commit | 33f0f723ec5dc5693e2a6f5656177fa8eba75dd2 (patch) | |
tree | e4ff89b4f762b66a041f5574d5c908c525e8de88 /src/backend-direct.c | |
parent | Use libgamma to determine available adjustment method configuration options (diff) | |
download | redshift-ng-33f0f723ec5dc5693e2a6f5656177fa8eba75dd2.tar.gz redshift-ng-33f0f723ec5dc5693e2a6f5656177fa8eba75dd2.tar.bz2 redshift-ng-33f0f723ec5dc5693e2a6f5656177fa8eba75dd2.tar.xz |
Do not left translators translate left column of adjustment method option table
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/backend-direct.c')
-rw-r--r-- | src/backend-direct.c | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/src/backend-direct.c b/src/backend-direct.c index 5654947..dfec04e 100644 --- a/src/backend-direct.c +++ b/src/backend-direct.c @@ -203,26 +203,21 @@ direct_print_help(FILE *f, int method) struct libgamma_method_capabilities caps; if (libgamma_method_capabilities(&caps, sizeof(caps), method)) { - fputs(_("Adjustment not available\n"), f); - fputs("\n", f); + fprintf(f, _("Adjustment not available\n")); + fprintf(f, "\n"); return; } - if (caps.multiple_partitions && caps.partitions_are_graphics_cards) { - /* TRANSLATORS: left column must not be translated */ - fputs(_(" card=N Graphics card to apply adjustments to\n"), f); - } else if (caps.multiple_partitions) { - /* TRANSLATORS: left column must not be translated */ - fputs(_(" screen=N X screen to apply adjustments to\n"), f); - } + if (caps.multiple_partitions && caps.partitions_are_graphics_cards) + fprintf(f, " card=N %s\n", _("Graphics card to apply adjustments to")); + else if (caps.multiple_partitions) + fprintf(f, " screen=N %s\n", _("X screen to apply adjustments to")); - if (caps.multiple_crtcs) { - /* TRANSLATORS: left column must not be translated */ - fputs(_(" crtc=N List of comma-separated CRTCs to apply adjustments to\n"), f); - } + if (caps.multiple_crtcs) + fprintf(f, " crtc=N %s\n", _("List of comma-separated CRTCs to apply adjustments to")); if (caps.multiple_partitions || caps.multiple_crtcs) - fputs("\n", f); + fprintf(f, "\n"; } |