diff options
Diffstat (limited to 'src/location-corelocation.m')
-rw-r--r-- | src/location-corelocation.m | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/location-corelocation.m b/src/location-corelocation.m index 626949c..edf3e45 100644 --- a/src/location-corelocation.m +++ b/src/location-corelocation.m @@ -56,7 +56,7 @@ if (authStatus != kCLAuthorizationStatusNotDetermined && authStatus != kCLAuthorizationStatusAuthorized) { fputs(_("Not authorized to obtain location" - "from CoreLocation.\n"), stderr); + " from CoreLocation.\n"), stderr); CFRunLoopStop(CFRunLoopGetCurrent()); } @@ -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); } |