diff options
Diffstat (limited to 'src/location-manual.c')
-rw-r--r-- | src/location-manual.c | 23 |
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"); } |