diff options
author | David Trowbridge <trowbrds@cs.colorado.edu> | 2005-01-13 01:27:03 +0800 |
---|---|---|
committer | David Trowbridge <trowbrds@src.gnome.org> | 2005-01-13 01:27:03 +0800 |
commit | bba1aae4836973892519532ecaf526d3bbecb806 (patch) | |
tree | 09d32b041caf45f1edffff7fa4240529833e3282 | |
parent | 2c73612b3e69c511b097f44d1da2a130484dc5e1 (diff) | |
download | gsoc2013-evolution-bba1aae4836973892519532ecaf526d3bbecb806.tar.gz gsoc2013-evolution-bba1aae4836973892519532ecaf526d3bbecb806.tar.zst gsoc2013-evolution-bba1aae4836973892519532ecaf526d3bbecb806.zip |
fix spelling
2005-01-12 David Trowbridge <trowbrds@cs.colorado.edu>
* calendar-weather.c (e_calendar_weather_units): fix spelling
svn path=/trunk/; revision=28381
-rw-r--r-- | plugins/calendar-weather/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/plugins/calendar-weather/ChangeLog b/plugins/calendar-weather/ChangeLog index 3f8a1044d5..ebd444da26 100644 --- a/plugins/calendar-weather/ChangeLog +++ b/plugins/calendar-weather/ChangeLog @@ -1,5 +1,9 @@ 2005-01-12 David Trowbridge <trowbrds@cs.colorado.edu> + * calendar-weather.c (e_calendar_weather_units): fix spelling + +2005-01-12 David Trowbridge <trowbrds@cs.colorado.edu> + * calendar-weather.c, org-gnome-calendar-weather.eplug.in: use a single setting for metric/imperial rather than separate temperature and snowfall settings diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c index 5009ee5484..ca969a56d1 100644 --- a/plugins/calendar-weather/calendar-weather.c +++ b/plugins/calendar-weather/calendar-weather.c @@ -659,8 +659,8 @@ e_calendar_weather_units (EPlugin *epl, EConfigHookItemFactoryData *data) option = gtk_option_menu_new (); gtk_widget_show (option); - formats[0] = gtk_menu_item_new_with_label (_("Metric (celcius, cm, etc)")); - formats[1] = gtk_menu_item_new_with_label (_("Imperial (fahrenheit, inches, etc)")); + formats[0] = gtk_menu_item_new_with_label (_("Metric (Celsius, cm, etc)")); + formats[1] = gtk_menu_item_new_with_label (_("Imperial (Fahrenheit, inches, etc)")); menu = gtk_menu_new (); gtk_widget_show (menu); for (i = 0; i < 2; i++) { |