diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2014-03-15 20:41:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2014-03-15 20:42:29 +0800 |
commit | eceb3b365835f25973be7a72fab8b0ed92e55e07 (patch) | |
tree | 2e418328bd33d77896ec4b4ae69809d385e010a7 /modules/cal-config-weather | |
parent | 9cea5475976b74f3a0a937c578145a04161d7785 (diff) | |
download | gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar.gz gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar.bz2 gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar.lz gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar.xz gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.tar.zst gsoc2013-evolution-eceb3b365835f25973be7a72fab8b0ed92e55e07.zip |
ECalConfigWeather: Fix a confusing translator comment.
Diffstat (limited to 'modules/cal-config-weather')
-rw-r--r-- | modules/cal-config-weather/evolution-cal-config-weather.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/modules/cal-config-weather/evolution-cal-config-weather.c b/modules/cal-config-weather/evolution-cal-config-weather.c index f77dd34d04..a2654cda14 100644 --- a/modules/cal-config-weather/evolution-cal-config-weather.c +++ b/modules/cal-config-weather/evolution-cal-config-weather.c @@ -178,13 +178,12 @@ is_locale_metric (void) else return TRUE; #else - /* Translators: Translate to the default units to use for presenting - * temperature units to the user. The value can be only "default:inch" - * or "default:mm", any other value is treated as "default:mm" (quotes - * for clarity only). Note the value is used only if the system this - * is running on doesn't provide other ways for figuring out temperature - * units for the current locale. - */ + /* Translators: Please indicate whether your locale uses the + * metric or imperial measurement system by changing this to + * either "default:mm" or "default:inch", respectively. + * + * This string is just a fallback mechanism for systems on + * which _NL_MEASUREMENT_MEASUREMENT is not available. */ fmt = C_("locale-metric", "default:mm"); return g_strcmp0 (fmt, "default:inch") != 0; |