aboutsummaryrefslogtreecommitdiffstats
path: root/src/location-manual.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-23 19:25:39 +0100
committerMattias Andrée <m@maandree.se>2025-03-23 19:25:39 +0100
commit0644dfde1f691df65851940738aad522857b71aa (patch)
tree21c3e7756d9acb1a67884cb1fce14d2e2319f185 /src/location-manual.c
parentAdd ability to select multiple screens (diff)
downloadredshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.gz
redshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.bz2
redshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.xz
Clean up
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/location-manual.c')
-rw-r--r--src/location-manual.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/location-manual.c b/src/location-manual.c
index d1285f1..c6c679e 100644
--- a/src/location-manual.c
+++ b/src/location-manual.c
@@ -56,18 +56,19 @@ manual_free(struct location_state *state)
static void
-manual_print_help(FILE *f)
+manual_print_help(void)
{
- fputs(_("Specify location manually.\n"), f);
- fputs("\n", f);
-
- /* TRANSLATORS: Manual location help output left column must not be translated */
- fputs(_(" lat=N\t\tLatitude\n"
- " lon=N\t\tLongitude\n"), f);
- fputs("\n", f);
- fputs(_("Both values are expected to be floating point numbers,\n"
- "negative values representing west / south, respectively.\n"), f);
- fputs("\n", f);
+ printf(_("Specify location manually.\n"));
+ printf("\n");
+
+ /* TRANSLATORS: "N" represents "cardinal"; right-pad with spaces to preserve display width */
+ printf(" lat=%s %s\n", _("N "), _("Latitude"));
+ printf(" lon=%s %s\n", _("N "), _("Longitude"));
+ printf("\n");
+
+ printf(_("Both values are expected to be floating point numbers,\n"
+ "negative values representing west / south, respectively.\n"));
+ printf("\n");
}