diff --git a/po/mousam.pot b/po/mousam.pot index 51d7922..c6fa7fb 100644 --- a/po/mousam.pot +++ b/po/mousam.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 1.1.0\n" +"Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-10 14:30+0530\n" +"POT-Creation-Date: 2024-03-10 23:18+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -287,13 +287,17 @@ msgstr "" msgid "N" msgstr "" -#: src/mousam.py:276 src/weatherData.py:120 src/weatherData.py:133 -#: src/weatherData.py:142 +#: src/mousam.py:260 +msgid "Dewpoint" +msgstr "" + +#: src/mousam.py:276 src/mousam.py:286 src/weatherData.py:120 +#: src/weatherData.py:133 src/weatherData.py:142 msgid "High" msgstr "" -#: src/mousam.py:277 src/weatherData.py:116 src/weatherData.py:129 -#: src/weatherData.py:138 +#: src/mousam.py:277 src/mousam.py:287 src/weatherData.py:116 +#: src/weatherData.py:129 src/weatherData.py:138 msgid "Low" msgstr "" diff --git a/src/mousam.py b/src/mousam.py index 6c8c365..1131d7b 100644 --- a/src/mousam.py +++ b/src/mousam.py @@ -257,7 +257,7 @@ def get_weather(self, reload_type=None, title=""): main_val=cw_data.relativehumidity_2m.get("data"), main_val_unit="%", desc=cw_data.relativehumidity_2m.get("level_str"), - sub_desc_heading="Dewpoint", + sub_desc_heading=_("Dewpoint"), sub_desc="{0} {1}".format( cw_data.dewpoint_2m.get("data"), cw_data.dewpoint_2m.get("unit") ), @@ -283,8 +283,8 @@ def get_weather(self, reload_type=None, title=""): title="UV Index", main_val=cw_data.uv_index.get("data"), desc=cw_data.uv_index.get("level_str"), - text_up="High", - text_low="Low", + text_up=_("High"), + text_low=_("Low"), ) widget_grid.attach(card_obj.card, 1, 1, 1, 1)