diff options
author | Davyd Madeley <davyd@madeley.id.au> | 2006-01-15 11:44:57 +0000 |
---|---|---|
committer | Davyd Madeley <davyd@src.gnome.org> | 2006-01-15 11:44:57 +0000 |
commit | 8d95ebf915d3051a2e513fc39f23b2108c8a7f97 (patch) | |
tree | 7507e5b3a2923a036fc7634a6c61d87724306b88 /gweather | |
parent | 1dd2fdcc181223ad1f54e20a831b04f4e6e0deb9 (diff) |
--- libgweather ---
2006-01-15 Davyd Madeley <davyd@madeley.id.au>
* gweather-prefs.c:
* weather-priv.h:
* weather.c:
* weather.h: add atmospheres as a unit of pressure
Patch from Alexandros Frantzis <alfius@freemail.gr>. Closes
#325447
--- gweather ---
2006-01-15 Davyd Madeley <davyd@madeley.id.au>
* gweather-pref.c: add atmospheres as a unit of pressure
Patch from Alexandros Frantzis <alfius@freemail.gr>. Closes
#325447.
Diffstat (limited to 'gweather')
-rw-r--r-- | gweather/ChangeLog | 8 | ||||
-rw-r--r-- | gweather/gweather-pref.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gweather/ChangeLog b/gweather/ChangeLog index 56e19cacd..ef4bf88cf 100644 --- a/gweather/ChangeLog +++ b/gweather/ChangeLog @@ -1,3 +1,9 @@ +2006-01-15 Davyd Madeley <davyd@madeley.id.au> + + * gweather-pref.c: add atmospheres as a unit of pressure + Patch from Alexandros Frantzis <alfius@freemail.gr>. Closes + #325447. + 2006-01-12 Frank Solensky <frank@solensky.org> * gweather-applet.c: (applet_destroy), (update_finish), @@ -34,7 +40,7 @@ * Locations.xml.in: Added translator comments for locations in Thailand. (Patch for bug #161882) -2006-01-03 Ryan Lortie <desrt@.desrt.ca> +2006-01-03 Ryan Lortie <desrt@desrt.ca> * battstat_applet.c (battery_full_notify): Move to the new libnotify API. Patch from Michael Vogt <mvogt@acm.org> closes bug #325541. diff --git a/gweather/gweather-pref.c b/gweather/gweather-pref.c index 3d08ccf03..d9cf723a9 100644 --- a/gweather/gweather-pref.c +++ b/gweather/gweather-pref.c @@ -841,6 +841,8 @@ static void gweather_pref_create (GWeatherApplet *gw_applet) gtk_combo_box_append_text (GTK_COMBO_BOX (pres_combo), _("mmHg")); /* TRANSLATOR: The pressure unit "inches of mercury" */ gtk_combo_box_append_text (GTK_COMBO_BOX (pres_combo), _("inHg")); + /* TRANSLATOR: The pressure unit "atmospheres" */ + gtk_combo_box_append_text (GTK_COMBO_BOX (pres_combo), _("atm")); gtk_widget_show (pres_combo); if ( ! key_writable (gw_applet, GCONF_PRESSURE_UNIT)) |