From 0644dfde1f691df65851940738aad522857b71aa Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 23 Mar 2025 19:25:39 +0100 Subject: Clean up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/location-manual.c | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'src/location-manual.c') 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"); } -- cgit v1.2.3-70-g09d2