aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-28 14:14:25 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-28 14:14:28 -0500
commit501d308495ee6e17006eb6618d39e8b19166b19c (patch)
treeb1d878a2fc811fe2c86e27c976e3d4f4639dce6f /src
parentcorelocation: Fix missing space character in string (diff)
downloadredshift-ng-501d308495ee6e17006eb6618d39e8b19166b19c.tar.gz
redshift-ng-501d308495ee6e17006eb6618d39e8b19166b19c.tar.bz2
redshift-ng-501d308495ee6e17006eb6618d39e8b19166b19c.tar.xz
location: Make translated string about recheck shared between all providers
Diffstat (limited to 'src')
-rw-r--r--src/location-corelocation.m6
-rw-r--r--src/location-geoclue.c6
-rw-r--r--src/location-geoclue2.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/location-corelocation.m b/src/location-corelocation.m
index cc873bb..edf3e45 100644
--- a/src/location-corelocation.m
+++ b/src/location-corelocation.m
@@ -127,9 +127,9 @@ location_corelocation_print_help(FILE *f)
fputs(_("Use the location as discovered by the Corelocation provider.\n"), f);
fputs("\n", f);
- fputs(_("NOTE: currently redshift doesn't recheck CoreLocation once started,\n"
- "which means it has to be restarted to take notice after travel.\n"),
- f);
+ fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n"
+ "which means it has to be restarted to take notice after travel.\n"),
+ "CoreLocation");
fputs("\n", f);
}
diff --git a/src/location-geoclue.c b/src/location-geoclue.c
index 07865c5..378b933 100644
--- a/src/location-geoclue.c
+++ b/src/location-geoclue.c
@@ -137,9 +137,9 @@ location_geoclue_print_help(FILE *f)
fputs(_(" name=N\tName of Geoclue provider (or `default')\n"
" path=N\tPath of Geoclue provider (or `default')\n"), f);
fputs("\n", f);
- fputs(_("NOTE: currently redshift doesn't recheck geoclue once started,\n"
- "which means it has to be restarted to take notice after travel.\n"),
- f);
+ fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n"
+ "which means it has to be restarted to take notice after travel.\n"),
+ "GeoClue");
fputs("\n", f);
}
diff --git a/src/location-geoclue2.c b/src/location-geoclue2.c
index 4c4150e..9b9b725 100644
--- a/src/location-geoclue2.c
+++ b/src/location-geoclue2.c
@@ -69,9 +69,9 @@ location_geoclue2_print_help(FILE *f)
fputs(_("Use the location as discovered by a GeoClue2 provider.\n"), f);
fputs("\n", f);
- fputs(_("NOTE: currently redshift doesn't recheck GeoClue2 once started,\n"
- "which means it has to be restarted to take notice after travel.\n"),
- f);
+ fprintf(f, _("NOTE: currently Redshift doesn't recheck %s once started,\n"
+ "which means it has to be restarted to take notice after travel.\n"),
+ "GeoClue2");
fputs("\n", f);
}