diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 17:46:57 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 17:48:10 -0500 |
commit | 8d5cf30b4d47eb326a844ad11c15dac1bf040561 (patch) | |
tree | f6cbd02e39adc9f974f0592221f5cc16b8337b06 /src | |
parent | Merge branch 'preserve-gamma' (diff) | |
download | redshift-ng-8d5cf30b4d47eb326a844ad11c15dac1bf040561.tar.gz redshift-ng-8d5cf30b4d47eb326a844ad11c15dac1bf040561.tar.bz2 redshift-ng-8d5cf30b4d47eb326a844ad11c15dac1bf040561.tar.xz |
redshift: Add print_location() function
Diffstat (limited to 'src')
-rw-r--r-- | src/redshift.c | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/src/redshift.c b/src/redshift.c index b45507f..403d04d 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -395,6 +395,27 @@ print_period(period_t period, double transition) } } +/* Print location */ +static void +print_location(const location_t *location) +{ + /* TRANSLATORS: Abbreviation for `north' */ + const char *north = _("N"); + /* TRANSLATORS: Abbreviation for `south' */ + const char *south = _("S"); + /* TRANSLATORS: Abbreviation for `east' */ + const char *east = _("E"); + /* TRANSLATORS: Abbreviation for `west' */ + const char *west = _("W"); + + /* TRANSLATORS: Append degree symbols after %f if possible. + The string following each number is an abreviation for + north, source, east or west (N, S, E, W). */ + printf(_("Location: %.2f %s, %.2f %s\n"), + fabs(location->lat), location->lat >= 0.f ? north : south, + fabs(location->lon), location->lon >= 0.f ? east : west); +} + /* Interpolate color setting structs based on solar elevation */ static void interpolate_color_settings(const transition_scheme_t *transition, @@ -1432,23 +1453,7 @@ main(int argc, char *argv[]) provider->free(&location_state); if (verbose) { - /* TRANSLATORS: Abbreviation for `north' */ - const char *north = _("N"); - /* TRANSLATORS: Abbreviation for `south' */ - const char *south = _("S"); - /* TRANSLATORS: Abbreviation for `east' */ - const char *east = _("E"); - /* TRANSLATORS: Abbreviation for `west' */ - const char *west = _("W"); - - /* TRANSLATORS: Append degree symbols after %f if possible. - The string following each number is an abreviation for - north, source, east or west (N, S, E, W). */ - printf(_("Location: %.2f %s, %.2f %s\n"), - fabs(loc.lat), - loc.lat >= 0.f ? north : south, - fabs(loc.lon), - loc.lon >= 0.f ? east : west); + print_location(&loc); printf(_("Temperatures: %dK at day, %dK at night\n"), scheme.day.temperature, |