[Xfce4-commits] <xfce4-weather-plugin:master> Simplify abbreviation for overall cloudiness.

Harald Judt noreply at xfce.org
Fri Jul 13 16:50:12 CEST 2012


Updating branch refs/heads/master
         to b19a7542f00ad783666a9efe9d1985d7d82fa62b (commit)
       from 5c485d929dbe128084b3e7c51a086128cb4889f1 (commit)

commit b19a7542f00ad783666a9efe9d1985d7d82fa62b
Author: Harald Judt <h.judt at gmx.at>
Date:   Wed Jul 11 16:15:56 2012 +0200

    Simplify abbreviation for overall cloudiness.
    
    Do not capitalize overall cloudiness to be consistent with the
    other labels, and replace "CO" -> "C", since that letter's still
    free and it looks better.

 panel-plugin/weather-config.c |    2 +-
 panel-plugin/weather.c        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/weather-config.c b/panel-plugin/weather-config.c
index 3716ff8..72641c3 100644
--- a/panel-plugin/weather-config.c
+++ b/panel-plugin/weather-config.c
@@ -44,7 +44,7 @@ static const labeloption labeloptions[OPTIONS_N] = {
   {N_("Low cloudiness (CL)"), CLOUDINESS_LOW},
   {N_("Medium cloudiness (CM)"), CLOUDINESS_MED},
   {N_("High cloudiness (CH)"), CLOUDINESS_HIGH},
-  {N_("Overall Cloudiness (CO)"), CLOUDINESS_OVERALL},
+  {N_("Overall cloudiness (C)"), CLOUDINESS_OVERALL},
   {N_("Fog (F)"), FOG},
   {N_("Precipitations (R)"), PRECIPITATIONS},
 };
diff --git a/panel-plugin/weather.c b/panel-plugin/weather.c
index 69114e5..e80afd8 100644
--- a/panel-plugin/weather.c
+++ b/panel-plugin/weather.c
@@ -147,7 +147,7 @@ make_label (xfceweather_data *data,
       lbl = _("CH");
       break;
     case CLOUDINESS_OVERALL:
-      lbl = _("CO");
+      lbl = _("C");
       break;
     case FOG:
       lbl = _("F");


More information about the Xfce4-commits mailing list