Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
xfce4-weather-plugin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
25
Issues
25
List
Boards
Labels
Service Desk
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Panel Plugins
xfce4-weather-plugin
Commits
27e3d937
Commit
27e3d937
authored
Mar 22, 2013
by
Greg Dietsche
Committed by
Harald Judt
Mar 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct spelling of precipitation (bug #9938).
The plural and singular form of precipitation is precipitation; not precipitations.
parent
4e911b63
Changes
52
Hide whitespace changes
Inline
Side-by-side
Showing
52 changed files
with
390 additions
and
390 deletions
+390
-390
NEWS
NEWS
+1
-1
panel-plugin/weather-config.c
panel-plugin/weather-config.c
+18
-18
panel-plugin/weather-config.h
panel-plugin/weather-config.h
+1
-1
panel-plugin/weather-data.c
panel-plugin/weather-data.c
+5
-5
panel-plugin/weather-data.h
panel-plugin/weather-data.h
+3
-3
panel-plugin/weather-debug.c
panel-plugin/weather-debug.c
+2
-2
panel-plugin/weather-search.c
panel-plugin/weather-search.c
+2
-2
panel-plugin/weather-summary.c
panel-plugin/weather-summary.c
+4
-4
panel-plugin/weather.c
panel-plugin/weather.c
+10
-10
po/ar.po
po/ar.po
+8
-8
po/ast.po
po/ast.po
+8
-8
po/be.po
po/be.po
+8
-8
po/ca.po
po/ca.po
+8
-8
po/cs.po
po/cs.po
+8
-8
po/da.po
po/da.po
+8
-8
po/de.po
po/de.po
+8
-8
po/el.po
po/el.po
+8
-8
po/en_GB.po
po/en_GB.po
+8
-8
po/es.po
po/es.po
+8
-8
po/eu.po
po/eu.po
+8
-8
po/fi.po
po/fi.po
+8
-8
po/fr.po
po/fr.po
+8
-8
po/gl.po
po/gl.po
+8
-8
po/he.po
po/he.po
+8
-8
po/hr.po
po/hr.po
+8
-8
po/hu.po
po/hu.po
+8
-8
po/id.po
po/id.po
+8
-8
po/it.po
po/it.po
+8
-8
po/ja.po
po/ja.po
+8
-8
po/ko.po
po/ko.po
+8
-8
po/lt.po
po/lt.po
+8
-8
po/lv.po
po/lv.po
+8
-8
po/nb.po
po/nb.po
+8
-8
po/nl.po
po/nl.po
+8
-8
po/nn.po
po/nn.po
+8
-8
po/pa.po
po/pa.po
+8
-8
po/pl.po
po/pl.po
+8
-8
po/pt.po
po/pt.po
+8
-8
po/pt_BR.po
po/pt_BR.po
+8
-8
po/ru.po
po/ru.po
+8
-8
po/sk.po
po/sk.po
+8
-8
po/sq.po
po/sq.po
+8
-8
po/sr.po
po/sr.po
+8
-8
po/sv.po
po/sv.po
+8
-8
po/te.po
po/te.po
+8
-8
po/tr.po
po/tr.po
+8
-8
po/ug.po
po/ug.po
+8
-8
po/uk.po
po/uk.po
+8
-8
po/ur.po
po/ur.po
+8
-8
po/ur_PK.po
po/ur_PK.po
+8
-8
po/zh_CN.po
po/zh_CN.po
+8
-8
po/zh_TW.po
po/zh_TW.po
+8
-8
No files found.
NEWS
View file @
27e3d937
...
...
@@ -63,7 +63,7 @@
- Rename value: Humidity is relative humidity.
- Rename value: Medium clouds is middle clouds.
- Guess amount of snow precipitation from rain.
- Use more digits for precipitation
s
in inches.
- Use more digits for precipitation in inches.
- The new config dialog applies options immediately and contains
explanatory tooltips for nearly every item.
- New options to set latitude and longitude manually.
...
...
panel-plugin/weather-config.c
View file @
27e3d937
...
...
@@ -107,7 +107,7 @@ static const labeloption labeloptions[OPTIONS_N] = {
{
N_
(
"High clouds (CH)"
),
CLOUDS_HIGH
},
{
N_
(
"Cloudiness (C)"
),
CLOUDINESS
},
{
N_
(
"Fog (F)"
),
FOG
},
{
N_
(
"Precipitation
s (R)"
),
PRECIPITATIONS
},
{
N_
(
"Precipitation
(R)"
),
PRECIPITATION
},
};
static
void
...
...
@@ -792,7 +792,7 @@ combo_unit_windspeed_changed(GtkWidget *combo,
static
void
combo_unit_precipitation
s
_set_tooltip
(
GtkWidget
*
combo
)
combo_unit_precipitation_set_tooltip
(
GtkWidget
*
combo
)
{
gchar
*
text
=
NULL
;
gint
value
=
gtk_combo_box_get_active
(
GTK_COMBO_BOX
(
combo
));
...
...
@@ -817,13 +817,13 @@ combo_unit_precipitations_set_tooltip(GtkWidget *combo)
static
void
combo_unit_precipitation
s
_changed
(
GtkWidget
*
combo
,
gpointer
user_data
)
combo_unit_precipitation_changed
(
GtkWidget
*
combo
,
gpointer
user_data
)
{
xfceweather_dialog
*
dialog
=
(
xfceweather_dialog
*
)
user_data
;
dialog
->
pd
->
units
->
precipitation
s
=
dialog
->
pd
->
units
->
precipitation
=
gtk_combo_box_get_active
(
GTK_COMBO_BOX
(
combo
));
combo_unit_precipitation
s
_set_tooltip
(
combo
);
combo_unit_precipitation_set_tooltip
(
combo
);
update_scrollbox
(
dialog
->
pd
,
TRUE
);
update_summary_window
(
dialog
,
TRUE
);
}
...
...
@@ -990,13 +990,13 @@ create_units_page(xfceweather_dialog *dialog)
_
(
"Knots (kt)"
));
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
hbox
,
FALSE
,
FALSE
,
BORDER
);
/* precipitation
s
*/
/* precipitation */
hbox
=
gtk_hbox_new
(
FALSE
,
BORDER
);
ADD_LABEL
(
_
(
"Prec_ipitations:"
),
sg_label
);
ADD_COMBO
(
dialog
->
combo_unit_precipitation
s
);
ADD_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
s
,
ADD_COMBO
(
dialog
->
combo_unit_precipitation
);
ADD_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
,
_
(
"Millimeters (mm)"
));
ADD_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
s
,
ADD_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
,
_
(
"Inches (in)"
));
gtk_box_pack_start
(
GTK_BOX
(
vbox
),
hbox
,
FALSE
,
FALSE
,
BORDER
);
...
...
@@ -1528,7 +1528,7 @@ options_datatypes_set_tooltip(GtkWidget *optmenu)
break
;
case
HUMIDITY
:
text
=
_
(
"Humidity is defined as the amount of water vapor in the "
"air and increases the possibility of precipitation
s
, fog "
"air and increases the possibility of precipitation, fog "
"and dew. While absolute humidity is the water content of "
"air, relative humidity gives (in %) the current absolute "
"humidity relative to the maximum for that air temperature "
...
...
@@ -1606,15 +1606,15 @@ options_datatypes_set_tooltip(GtkWidget *optmenu)
"that forms when the difference between temperature "
"and dew point is below 2.5 °C (4 °F), usually at a "
"relative humidity of 100%. Fog commonly produces "
"precipitation
s
in the form of drizzle or very light "
"precipitation in the form of drizzle or very light "
"snow and reduces visibility to less than 1 km "
"(5/8 statute mile)."
);
break
;
case
PRECIPITATION
S
:
case
PRECIPITATION
:
text
=
_
(
"The amount of rain, drizzle, sleet, hail, snow, graupel "
"and other forms of water falling from the sky over a "
"specific period.
\n\n
"
"The values reported by met.no are those of precipitation
s
"
"The values reported by met.no are those of precipitation "
"in the liquid state - or in other words: of rain -, so if "
"snow is expected (but not sleet), then the amount of snow "
"will be <i>guessed</i> by multiplying the original value by "
...
...
@@ -1943,8 +1943,8 @@ setup_units(xfceweather_dialog *dialog,
combo_unit_pressure_set_tooltip
(
dialog
->
combo_unit_pressure
);
SET_COMBO_VALUE
(
dialog
->
combo_unit_windspeed
,
units
->
windspeed
);
combo_unit_windspeed_set_tooltip
(
dialog
->
combo_unit_windspeed
);
SET_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
s
,
units
->
precipitations
);
combo_unit_precipitation
s_set_tooltip
(
dialog
->
combo_unit_precipitations
);
SET_COMBO_VALUE
(
dialog
->
combo_unit_precipitation
,
units
->
precipitation
);
combo_unit_precipitation
_set_tooltip
(
dialog
->
combo_unit_precipitation
);
SET_COMBO_VALUE
(
dialog
->
combo_unit_altitude
,
units
->
altitude
);
combo_unit_altitude_set_tooltip
(
dialog
->
combo_unit_altitude
);
SET_COMBO_VALUE
(
dialog
->
combo_apparent_temperature
,
...
...
@@ -1975,8 +1975,8 @@ setup_notebook_signals(xfceweather_dialog *dialog)
G_CALLBACK
(
combo_unit_pressure_changed
),
dialog
);
g_signal_connect
(
dialog
->
combo_unit_windspeed
,
"changed"
,
G_CALLBACK
(
combo_unit_windspeed_changed
),
dialog
);
g_signal_connect
(
dialog
->
combo_unit_precipitation
s
,
"changed"
,
G_CALLBACK
(
combo_unit_precipitation
s
_changed
),
dialog
);
g_signal_connect
(
dialog
->
combo_unit_precipitation
,
"changed"
,
G_CALLBACK
(
combo_unit_precipitation_changed
),
dialog
);
g_signal_connect
(
dialog
->
combo_unit_altitude
,
"changed"
,
G_CALLBACK
(
combo_unit_altitude_changed
),
dialog
);
g_signal_connect
(
dialog
->
combo_apparent_temperature
,
"changed"
,
...
...
panel-plugin/weather-config.h
View file @
27e3d937
...
...
@@ -45,7 +45,7 @@ typedef struct {
GtkWidget
*
combo_unit_temperature
;
GtkWidget
*
combo_unit_pressure
;
GtkWidget
*
combo_unit_windspeed
;
GtkWidget
*
combo_unit_precipitation
s
;
GtkWidget
*
combo_unit_precipitation
;
GtkWidget
*
combo_unit_altitude
;
GtkWidget
*
combo_apparent_temperature
;
...
...
panel-plugin/weather-data.c
View file @
27e3d937
...
...
@@ -427,10 +427,10 @@ get_data(const xml_time *timeslice,
case
FOG
:
return
LOCALE_DOUBLE
(
loc
->
fog_percent
,
ROUND_TO_INT
(
"%.1f"
));
case
PRECIPITATION
S
:
/* source is in millimeters */
case
PRECIPITATION
:
/* source is in millimeters */
val
=
string_to_double
(
loc
->
precipitation_value
,
0
);
/* For snow, adjust precipitation
s
dependent on temperature. Source:
/* For snow, adjust precipitation dependent on temperature. Source:
http://answers.yahoo.com/question/index?qid=20061230123635AAAdZAe */
if
(
loc
->
symbol_id
==
SYMBOL_SNOWSUN
||
loc
->
symbol_id
==
SYMBOL_SNOW
||
...
...
@@ -450,7 +450,7 @@ get_data(const xml_time *timeslice,
val
*=
3
;
}
if
(
units
->
precipitation
s
==
INCHES
)
{
if
(
units
->
precipitation
==
INCHES
)
{
val
/=
25
.
4
;
return
g_strdup_printf
(
"%.2f"
,
val
);
}
else
...
...
@@ -517,8 +517,8 @@ get_unit(const units_config *units,
/* TRANSLATORS: Percentage sign is used like a unit for
clouds, fog, humidity */
return
_
(
"%"
);
case
PRECIPITATION
S
:
return
(
units
->
precipitation
s
==
INCHES
)
?
_
(
"in"
)
:
_
(
"mm"
);
case
PRECIPITATION
:
return
(
units
->
precipitation
==
INCHES
)
?
_
(
"in"
)
:
_
(
"mm"
);
case
SYMBOL
:
case
WIND_BEAUFORT
:
case
WIND_DIRECTION
:
...
...
panel-plugin/weather-data.h
View file @
27e3d937
...
...
@@ -39,7 +39,7 @@ typedef enum {
CLOUDS_HIGH
,
CLOUDINESS
,
FOG
,
PRECIPITATION
S
,
PRECIPITATION
,
SYMBOL
}
data_types
;
...
...
@@ -66,7 +66,7 @@ typedef enum {
typedef
enum
{
MILLIMETERS
,
INCHES
}
units_precipitation
s
;
}
units_precipitation
;
typedef
enum
{
METERS
,
...
...
@@ -92,7 +92,7 @@ typedef struct {
gint
apparent_temperature
;
gint
pressure
;
gint
windspeed
;
gint
precipitation
s
;
gint
precipitation
;
gint
altitude
;
}
units_config
;
...
...
panel-plugin/weather-debug.c
View file @
27e3d937
...
...
@@ -305,13 +305,13 @@ weather_dump_units_config(const units_config *units)
" Temperature: %d
\n
"
" Atmospheric pressure: %d
\n
"
" Windspeed: %d
\n
"
" Precipitation
s
: %d
\n
"
" Precipitation: %d
\n
"
" Altitude: %d
\n
"
" --------------------------------------------"
,
units
->
temperature
,
units
->
pressure
,
units
->
windspeed
,
units
->
precipitation
s
,
units
->
precipitation
,
units
->
altitude
);
return
out
;
}
...
...
panel-plugin/weather-search.c
View file @
27e3d937
...
...
@@ -334,12 +334,12 @@ get_preferred_units(const gchar *country_code)
!
strcmp
(
country_code
,
"MM"
))
{
/* Myanmar(Burma) */
units
->
pressure
=
PSI
;
units
->
windspeed
=
MPH
;
units
->
precipitation
s
=
INCHES
;
units
->
precipitation
=
INCHES
;
units
->
altitude
=
FEET
;
}
else
{
units
->
pressure
=
HECTOPASCAL
;
units
->
windspeed
=
KMH
;
units
->
precipitation
s
=
MILLIMETERS
;
units
->
precipitation
=
MILLIMETERS
;
units
->
altitude
=
METERS
;
}
...
...
panel-plugin/weather-summary.c
View file @
27e3d937
...
...
@@ -500,8 +500,8 @@ create_summary_tab(plugin_data *data)
APPEND_TEXT_ITEM_REAL
(
value
);
/* precipitation */
APPEND_BTEXT
(
_
(
"
\n
Precipitation
s
\n
"
));
APPEND_TEXT_ITEM
(
_
(
"Precipitation
s amount"
),
PRECIPITATIONS
);
APPEND_BTEXT
(
_
(
"
\n
Precipitation
\n
"
));
APPEND_TEXT_ITEM
(
_
(
"Precipitation
amount"
),
PRECIPITATION
);
/* atmosphere */
APPEND_BTEXT
(
_
(
"
\n
Atmosphere
\n
"
));
...
...
@@ -648,11 +648,11 @@ forecast_cell_get_tooltip_text(plugin_data *data,
"</small></tt>
\n\n
"
),
HUMIDITY
);
g_string_append
(
text
,
_
(
"<b>Precipitation
s
</b>
\n
"
));
g_string_append
(
text
,
_
(
"<b>Precipitation</b>
\n
"
));
APPEND_TOOLTIP_ITEM
(
_
(
"<tt><small>"
"Amount: %s%s%s"
"</small></tt>
\n\n
"
),
PRECIPITATION
S
);
PRECIPITATION
);
g_string_append
(
text
,
_
(
"<b>Clouds</b>
\n
"
));
/* TRANSLATORS: Clouds percentages are aligned to the right in the
...
...
panel-plugin/weather.c
View file @
27e3d937
...
...
@@ -160,7 +160,7 @@ make_label(const plugin_data *data,
case
FOG
:
lbl
=
_
(
"F"
);
break
;
case
PRECIPITATION
S
:
case
PRECIPITATION
:
lbl
=
_
(
"R"
);
break
;
default:
...
...
@@ -825,8 +825,8 @@ xfceweather_read_config(XfcePanelPlugin *plugin,
xfce_rc_read_int_entry
(
rc
,
"units_pressure"
,
HECTOPASCAL
);
data
->
units
->
windspeed
=
xfce_rc_read_int_entry
(
rc
,
"units_windspeed"
,
KMH
);
data
->
units
->
precipitation
s
=
xfce_rc_read_int_entry
(
rc
,
"units_precipitation
s
"
,
MILLIMETERS
);
data
->
units
->
precipitation
=
xfce_rc_read_int_entry
(
rc
,
"units_precipitation"
,
MILLIMETERS
);
data
->
units
->
altitude
=
xfce_rc_read_int_entry
(
rc
,
"units_altitude"
,
METERS
);
data
->
units
->
apparent_temperature
=
...
...
@@ -938,8 +938,8 @@ xfceweather_write_config(XfcePanelPlugin *plugin,
xfce_rc_write_int_entry
(
rc
,
"units_temperature"
,
data
->
units
->
temperature
);
xfce_rc_write_int_entry
(
rc
,
"units_pressure"
,
data
->
units
->
pressure
);
xfce_rc_write_int_entry
(
rc
,
"units_windspeed"
,
data
->
units
->
windspeed
);
xfce_rc_write_int_entry
(
rc
,
"units_precipitation
s
"
,
data
->
units
->
precipitation
s
);
xfce_rc_write_int_entry
(
rc
,
"units_precipitation"
,
data
->
units
->
precipitation
);
xfce_rc_write_int_entry
(
rc
,
"units_altitude"
,
data
->
units
->
altitude
);
xfce_rc_write_int_entry
(
rc
,
"model_apparent_temperature"
,
data
->
units
->
apparent_temperature
);
...
...
@@ -1578,7 +1578,7 @@ weather_get_tooltip_text(const plugin_data *data)
xml_time
*
conditions
;
gchar
*
text
,
*
sym
,
*
alt
,
*
temp
;
gchar
*
windspeed
,
*
windbeau
,
*
winddir
,
*
winddeg
;
gchar
*
pressure
,
*
humidity
,
*
precipitation
s
;
gchar
*
pressure
,
*
humidity
,
*
precipitation
;
gchar
*
fog
,
*
cloudiness
,
*
sunval
,
*
value
;
gchar
*
point
,
*
interval_start
,
*
interval_end
,
*
sunrise
,
*
sunset
;
const
gchar
*
unit
;
...
...
@@ -1620,7 +1620,7 @@ weather_get_tooltip_text(const plugin_data *data)
DATA_AND_UNIT
(
winddeg
,
WIND_DIRECTION_DEG
);
DATA_AND_UNIT
(
pressure
,
PRESSURE
);
DATA_AND_UNIT
(
humidity
,
HUMIDITY
);
DATA_AND_UNIT
(
precipitation
s
,
PRECIPITATIONS
);
DATA_AND_UNIT
(
precipitation
,
PRECIPITATION
);
DATA_AND_UNIT
(
fog
,
FOG
);
DATA_AND_UNIT
(
cloudiness
,
CLOUDINESS
);
...
...
@@ -1659,7 +1659,7 @@ weather_get_tooltip_text(const plugin_data *data)
"<span size=
\"
medium
\"
>(%s)</span>
\n
"
"<b><span size=
\"
large
\"
>%s</span></b>
\n
"
"<span size=
\"
smaller
\"
>"
"from %s to %s, with %s of precipitation
s
</span>
\n\n
"
"from %s to %s, with %s of precipitation</span>
\n\n
"
"<b>Temperature:</b> %s
\t\t
"
"<span size=
\"
smaller
\"
>(values at %s)</span>
\n
"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)
\n
"
...
...
@@ -1669,7 +1669,7 @@ weather_get_tooltip_text(const plugin_data *data)
data
->
location_name
,
alt
,
translate_desc
(
sym
,
data
->
night_time
),
interval_start
,
interval_end
,
precipitation
s
,
precipitation
,
temp
,
point
,
windspeed
,
windbeau
,
winddir
,
winddeg
,
pressure
,
humidity
,
...
...
@@ -1690,7 +1690,7 @@ weather_get_tooltip_text(const plugin_data *data)
g_free
(
winddeg
);
g_free
(
pressure
);
g_free
(
humidity
);
g_free
(
precipitation
s
);
g_free
(
precipitation
);
g_free
(
fog
);
g_free
(
cloudiness
);
return
text
;
...
...
po/ar.po
View file @
27e3d937
...
...
@@ -194,7 +194,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -301,7 +301,7 @@ msgid "Fog (F)"
msgstr "ضباب (F)"
#: ../panel-plugin/weather-config.c:110
msgid "Precipitation
s
(R)"
msgid "Precipitation (R)"
msgstr "أمطار (R)"
#: ../panel-plugin/weather-config.c:222 ../panel-plugin/weather-config.c:324
...
...
@@ -846,7 +846,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:1492
msgid ""
"Humidity is defined as the amount of water vapor in the air and increases "
"the possibility of precipitation
s
, fog and dew. While absolute humidity is "
"the possibility of precipitation, fog and dew. While absolute humidity is "
"the water content of air, relative humidity gives (in %) the current "
"absolute humidity relative to the maximum for that air temperature and "
"pressure."
...
...
@@ -923,7 +923,7 @@ msgid ""
"generated locally such as from a nearby lake, river, ocean, or simply moist "
"ground, that forms when the difference between temperature and dew point is "
"below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly "
"produces precipitation
s
in the form of drizzle or very light snow and "
"produces precipitation in the form of drizzle or very light snow and "
"reduces visibility to less than 1 km (5/8 statute mile)."
msgstr ""
...
...
@@ -932,7 +932,7 @@ msgid ""
"The amount of rain, drizzle, sleet, hail, snow, graupel and other forms of "
"water falling from the sky over a specific period.\n"
"\n"
"The values reported by met.no are those of precipitation
s
in the liquid "
"The values reported by met.no are those of precipitation in the liquid "
"state - or in other words: of rain -, so if snow is expected (but not "
"sleet), then the amount of snow will be <i>guessed</i> by multiplying the "
"original value by a ratio dependent on the air temperature:\n"
...
...
@@ -1473,13 +1473,13 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:506
msgid ""
"\n"
"Precipitation
s
\n"
"Precipitation\n"
msgstr ""
"\n"
"مُمطر\n"
#: ../panel-plugin/weather-summary.c:507
msgid "Precipitation
s
amount"
msgid "Precipitation amount"
msgstr "كمية الأمطار"
#. atmosphere
...
...
@@ -1645,7 +1645,7 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:654
#, fuzzy
msgid "<b>Precipitation
s
</b>\n"
msgid "<b>Precipitation</b>\n"
msgstr ""
"\n"
"مُمطر\n"
...
...
po/ast.po
View file @
27e3d937
...
...
@@ -181,7 +181,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -283,7 +283,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:110
#, fuzzy
msgid "Precipitation
s
(R)"
msgid "Precipitation (R)"
msgstr "<b>Precipitación</b>"
#: ../panel-plugin/weather-config.c:222 ../panel-plugin/weather-config.c:324
...
...
@@ -822,7 +822,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:1492
msgid ""
"Humidity is defined as the amount of water vapor in the air and increases "
"the possibility of precipitation
s
, fog and dew. While absolute humidity is "
"the possibility of precipitation, fog and dew. While absolute humidity is "
"the water content of air, relative humidity gives (in %) the current "
"absolute humidity relative to the maximum for that air temperature and "
"pressure."
...
...
@@ -899,7 +899,7 @@ msgid ""
"generated locally such as from a nearby lake, river, ocean, or simply moist "
"ground, that forms when the difference between temperature and dew point is "
"below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly "
"produces precipitation
s
in the form of drizzle or very light snow and "
"produces precipitation in the form of drizzle or very light snow and "
"reduces visibility to less than 1 km (5/8 statute mile)."
msgstr ""
...
...
@@ -908,7 +908,7 @@ msgid ""
"The amount of rain, drizzle, sleet, hail, snow, graupel and other forms of "
"water falling from the sky over a specific period.\n"
"\n"
"The values reported by met.no are those of precipitation
s
in the liquid "
"The values reported by met.no are those of precipitation in the liquid "
"state - or in other words: of rain -, so if snow is expected (but not "
"sleet), then the amount of snow will be <i>guessed</i> by multiplying the "
"original value by a ratio dependent on the air temperature:\n"
...
...
@@ -1438,12 +1438,12 @@ msgstr ""
#, fuzzy
msgid ""
"\n"
"Precipitation
s
\n"
"Precipitation\n"
msgstr "<b>Precipitación</b>"
#: ../panel-plugin/weather-summary.c:507
#, fuzzy
msgid "Precipitation
s
amount"
msgid "Precipitation amount"
msgstr "<b>Precipitación</b>"
#. atmosphere
...
...
@@ -1608,7 +1608,7 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:654
#, fuzzy
msgid "<b>Precipitation
s
</b>\n"
msgid "<b>Precipitation</b>\n"
msgstr "<b>Precipitación</b>"
#: ../panel-plugin/weather-summary.c:655
...
...
po/be.po
View file @
27e3d937
...
...
@@ -190,7 +190,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -292,7 +292,7 @@ msgid "Fog (F)"
msgstr "Туман (ТМ)"
#: ../panel-plugin/weather-config.c:110
msgid "Precipitation
s
(R)"
msgid "Precipitation (R)"
msgstr "Ападкі (А)"
#: ../panel-plugin/weather-config.c:222 ../panel-plugin/weather-config.c:324
...
...
@@ -832,7 +832,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:1492
msgid ""
"Humidity is defined as the amount of water vapor in the air and increases "
"the possibility of precipitation
s
, fog and dew. While absolute humidity is "
"the possibility of precipitation, fog and dew. While absolute humidity is "
"the water content of air, relative humidity gives (in %) the current "
"absolute humidity relative to the maximum for that air temperature and "
"pressure."
...
...
@@ -909,7 +909,7 @@ msgid ""
"generated locally such as from a nearby lake, river, ocean, or simply moist "
"ground, that forms when the difference between temperature and dew point is "
"below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly "
"produces precipitation
s
in the form of drizzle or very light snow and "
"produces precipitation in the form of drizzle or very light snow and "
"reduces visibility to less than 1 km (5/8 statute mile)."
msgstr ""
...
...
@@ -918,7 +918,7 @@ msgid ""
"The amount of rain, drizzle, sleet, hail, snow, graupel and other forms of "
"water falling from the sky over a specific period.\n"
"\n"
"The values reported by met.no are those of precipitation
s
in the liquid "
"The values reported by met.no are those of precipitation in the liquid "
"state - or in other words: of rain -, so if snow is expected (but not "
"sleet), then the amount of snow will be <i>guessed</i> by multiplying the "
"original value by a ratio dependent on the air temperature:\n"
...
...
@@ -1463,13 +1463,13 @@ msgstr "\tНакірунак: %s (%s%s)\n"
#: ../panel-plugin/weather-summary.c:506
msgid ""
"\n"
"Precipitation
s
\n"
"Precipitation\n"
msgstr ""
"\n"
"Ападкі\n"
#: ../panel-plugin/weather-summary.c:507
msgid "Precipitation
s
amount"
msgid "Precipitation amount"
msgstr "Колькасць ападкаў"
#. atmosphere
...
...
@@ -1642,7 +1642,7 @@ msgstr ""
"\n"
#: ../panel-plugin/weather-summary.c:654
msgid "<b>Precipitation
s
</b>\n"
msgid "<b>Precipitation</b>\n"
msgstr "<b>Ападкі</b>\n"
#: ../panel-plugin/weather-summary.c:655
...
...
po/ca.po
View file @
27e3d937
...
...
@@ -195,7 +195,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -291,7 +291,7 @@ msgid "Fog (F)"
msgstr "Boira (B)"
#: ../panel-plugin/weather-config.c:110
msgid "Precipitation
s
(R)"
msgid "Precipitation (R)"
msgstr "Precipitacions (R)"
#: ../panel-plugin/weather-config.c:222 ../panel-plugin/weather-config.c:324
...
...
@@ -833,7 +833,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:1492
msgid ""
"Humidity is defined as the amount of water vapor in the air and increases "
"the possibility of precipitation
s
, fog and dew. While absolute humidity is "
"the possibility of precipitation, fog and dew. While absolute humidity is "
"the water content of air, relative humidity gives (in %) the current "
"absolute humidity relative to the maximum for that air temperature and "
"pressure."
...
...
@@ -910,7 +910,7 @@ msgid ""
"generated locally such as from a nearby lake, river, ocean, or simply moist "
"ground, that forms when the difference between temperature and dew point is "
"below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly "
"produces precipitation
s
in the form of drizzle or very light snow and "
"produces precipitation in the form of drizzle or very light snow and "
"reduces visibility to less than 1 km (5/8 statute mile)."
msgstr ""
...
...
@@ -919,7 +919,7 @@ msgid ""
"The amount of rain, drizzle, sleet, hail, snow, graupel and other forms of "
"water falling from the sky over a specific period.\n"
"\n"
"The values reported by met.no are those of precipitation
s
in the liquid "
"The values reported by met.no are those of precipitation in the liquid "
"state - or in other words: of rain -, so if snow is expected (but not "
"sleet), then the amount of snow will be <i>guessed</i> by multiplying the "
"original value by a ratio dependent on the air temperature:\n"
...
...
@@ -1459,13 +1459,13 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:506
msgid ""
"\n"
"Precipitation
s
\n"
"Precipitation\n"
msgstr ""
"\n"
"Precipitacions\n"
#: ../panel-plugin/weather-summary.c:507
msgid "Precipitation
s
amount"
msgid "Precipitation amount"
msgstr "Quantitat de precipitacions"
#. atmosphere
...
...
@@ -1630,7 +1630,7 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:654
#, fuzzy
msgid "<b>Precipitation
s
</b>\n"
msgid "<b>Precipitation</b>\n"
msgstr ""
"\n"
"Precipitacions\n"
...
...
po/cs.po
View file @
27e3d937
...
...
@@ -194,7 +194,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -301,7 +301,7 @@ msgid "Fog (F)"
msgstr "Mlha (M)"
#: ../panel-plugin/weather-config.c:110
msgid "Precipitation
s
(R)"
msgid "Precipitation (R)"
msgstr "Srážky (S)"
#: ../panel-plugin/weather-config.c:222 ../panel-plugin/weather-config.c:324
...
...
@@ -846,7 +846,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:1492
msgid ""
"Humidity is defined as the amount of water vapor in the air and increases "
"the possibility of precipitation
s
, fog and dew. While absolute humidity is "
"the possibility of precipitation, fog and dew. While absolute humidity is "
"the water content of air, relative humidity gives (in %) the current "
"absolute humidity relative to the maximum for that air temperature and "
"pressure."
...
...
@@ -923,7 +923,7 @@ msgid ""
"generated locally such as from a nearby lake, river, ocean, or simply moist "
"ground, that forms when the difference between temperature and dew point is "
"below 2.5 °C (4 °F), usually at a relative humidity of 100%. Fog commonly "
"produces precipitation
s
in the form of drizzle or very light snow and "
"produces precipitation in the form of drizzle or very light snow and "
"reduces visibility to less than 1 km (5/8 statute mile)."
msgstr ""
...
...
@@ -932,7 +932,7 @@ msgid ""
"The amount of rain, drizzle, sleet, hail, snow, graupel and other forms of "
"water falling from the sky over a specific period.\n"
"\n"
"The values reported by met.no are those of precipitation
s
in the liquid "
"The values reported by met.no are those of precipitation in the liquid "
"state - or in other words: of rain -, so if snow is expected (but not "
"sleet), then the amount of snow will be <i>guessed</i> by multiplying the "
"original value by a ratio dependent on the air temperature:\n"
...
...
@@ -1470,13 +1470,13 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:506
msgid ""
"\n"
"Precipitation
s
\n"
"Precipitation\n"
msgstr ""
"\n"
"Srážky\n"
#: ../panel-plugin/weather-summary.c:507
msgid "Precipitation
s
amount"
msgid "Precipitation amount"
msgstr "Úhrn srážek"
#. atmosphere
...
...
@@ -1642,7 +1642,7 @@ msgstr ""
#: ../panel-plugin/weather-summary.c:654
#, fuzzy
msgid "<b>Precipitation
s
</b>\n"
msgid "<b>Precipitation</b>\n"
msgstr ""
"\n"
"Srážky\n"
...
...
po/da.po
View file @
27e3d937
...
...
@@ -191,7 +191,7 @@ msgstr ""
msgid ""
"<b><span size=\"large\">%s</span></b> <span size=\"medium\">(%s)</span>\n"
"<b><span size=\"large\">%s</span></b>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation
s
</span>\n"
"<span size=\"smaller\">from %s to %s, with %s of precipitation</span>\n"
"\n"
"<b>Temperature:</b> %s\t\t<span size=\"smaller\">(values at %s)</span>\n"
"<b>Wind:</b> %s (%son the Beaufort scale) from %s(%s)\n"
...
...
@@ -293,7 +293,7 @@ msgstr ""
#: ../panel-plugin/weather-config.c:110
#, fuzzy