diff --git a/package/contents/code/data-loader.js b/package/contents/code/data-loader.js index 36c26fb..10234e1 100644 --- a/package/contents/code/data-loader.js +++ b/package/contents/code/data-loader.js @@ -2,20 +2,20 @@ function getLastReloadedTimeText(lastReloaded) { var mins = lastReloaded / 60000 if (mins <= 180) { - return i18n("%1 m", Math.round(mins)); + return i18n("%1 m ago", Math.round(mins)); } var hours = mins / 60 if (hours <= 48) { - return i18n("%1 h", Math.round(hours)); + return i18n("%1 h ago", Math.round(hours)); } var days = hours / 24 if (days <= 14) { - return i18n("%1 d", Math.round(days)); + return i18n("%1 d ago", Math.round(days)); } - return i18n("hours") + return i18n("long ago") } function scheduleDataReload() { diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml index 9416feb..b577c69 100644 --- a/package/contents/ui/main.qml +++ b/package/contents/ui/main.qml @@ -365,7 +365,7 @@ Item { function updateLastReloadedText() { dbgprint("updateLastReloadedText: " + lastloadingSuccessTime) if (lastloadingSuccessTime > 0) { - lastReloadedText = '⬇ ' + i18n("%1 ago", DataLoader.getLastReloadedTimeText(dateNow() - lastloadingSuccessTime)) + lastReloadedText = '⬇ ' + DataLoader.getLastReloadedTimeText(dateNow() - lastloadingSuccessTime) } plasmoid.status = DataLoader.getPlasmoidStatus(lastloadingSuccessTime, inTrayActiveTimeoutSec) } diff --git a/package/metadata.desktop b/package/metadata.desktop index 595e18d..a698749 100644 --- a/package/metadata.desktop +++ b/package/metadata.desktop @@ -23,7 +23,7 @@ Name[nb]=Weather Widget 2 Name[nl]=Weerwidget 2 Name[ru]=Виджет погоды 2 Name[sv]=Weather Widget 2 -Comment[ca]=Plasmoid que mostra informació del temps del servidor de met.no +Comment[ca_ES]=Plasmoid que mostra informació del temps del servidor de met.no Comment[nb]=Plasmoid som viser værinformasjon fra met.no Comment[nl]=Een plasmoid die weerinformatie toont van de met.no-server Comment[ru]=Плазмоид, показывающий информацию о погоде с сервера met.no diff --git a/translations/ReadMe.md b/translations/ReadMe.md index b678dbd..598d43a 100644 --- a/translations/ReadMe.md +++ b/translations/ReadMe.md @@ -1,19 +1,20 @@ | Locale | Lines | % Done| |----------|---------|-------| -| Template | 87 | | -| bg | 54/87 | 62% | -| cs | 43/87 | 49% | -| de | 54/87 | 62% | -| en | 0/87 | 0% | -| es | 54/87 | 62% | -| fr | 54/87 | 62% | -| hu_HU | 54/87 | 62% | -| it_IT | 54/87 | 62% | -| lt | 54/87 | 62% | -| nb | 84/87 | 96% | -| nl | 84/87 | 96% | -| pl | 52/87 | 59% | -| ru | 84/87 | 96% | -| sv | 69/87 | 79% | -| zh_CN | 55/87 | 63% | -| zh_TW | 54/87 | 62% | +| Template | 86 | | +| bg | 57/86 | 66% | +| ca_ES | 64/86 | 74% | +| cs | 46/86 | 53% | +| de | 57/86 | 66% | +| en | 0/86 | 0% | +| es | 57/86 | 66% | +| fr | 57/86 | 66% | +| hu_HU | 57/86 | 66% | +| it_IT | 57/86 | 66% | +| lt | 57/86 | 66% | +| nb | 86/86 | 100% | +| nl | 83/86 | 96% | +| pl | 55/86 | 63% | +| ru | 86/86 | 100% | +| sv | 72/86 | 83% | +| zh_CN | 58/86 | 67% | +| zh_TW | 57/86 | 66% | diff --git a/translations/po/bg.po b/translations/po/bg.po index c5525b8..2333117 100644 --- a/translations/po/bg.po +++ b/translations/po/bg.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # bvbfan, 2016. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:02+0000\n" "Last-Translator: bvbfan\n" "Language-Team: bvbfan\n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "преди %1 х" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "преди %1 г" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "преди %1 д" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "даўно" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -361,10 +360,6 @@ msgstr "Поднови Обновяването" msgid "Pause Updating" msgstr "Спри Обновяването" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "преди %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "близко бъдеще" diff --git a/translations/po/ca_ES.po b/translations/po/ca_ES.po index 2169316..00d77a4 100644 --- a/translations/po/ca_ES.po +++ b/translations/po/ca_ES.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: weatherWidget-2\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-15 00:30+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-02-13 14:00+0100\n" "Last-Translator: Eduard Selma \n" "Language-Team: \n" @@ -27,19 +27,19 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "Plasmoid que mostra informació del temps del servidor de met.no" #: ../../package/contents/code/data-loader.js -msgid "%1 m" +msgid "%1 m ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 h" +msgid "%1 h ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 d" +msgid "%1 d ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "hours" +msgid "long ago" msgstr "" #: ../../package/contents/code/unit-utils.js @@ -361,10 +361,6 @@ msgstr "Continua l'actualització" msgid "Pause Updating" msgstr "Atura l'actualització" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "Fa %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "proper futur" @@ -398,6 +394,9 @@ msgstr "" msgid "today" msgstr "avui" +#~ msgid "%1 ago" +#~ msgstr "Fa %1" + #~ msgid "weather-clouds" #~ msgstr "temps-núvols" diff --git a/translations/po/cs.po b/translations/po/cs.po index a0091ce..8dbe316 100644 --- a/translations/po/cs.po +++ b/translations/po/cs.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:03+0000\n" "Last-Translator: Martin Kotelnik \n" "Language-Team: Martin Kotelnik \n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "před %1 m" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "před %1 h" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "před %1 d" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "dávno" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -361,10 +360,6 @@ msgstr "Povolit obnovování" msgid "Pause Updating" msgstr "Zakázat obnovování" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "před %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "brzy bude" diff --git a/translations/po/de.po b/translations/po/de.po index 601f128..74822d3 100644 --- a/translations/po/de.po +++ b/translations/po/de.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:04+0000\n" "Last-Translator: mfroeb\n" "Language-Team: mfroeb\n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "vor %1 M" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "vor %1 S" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "vor %1 T" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "längst" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -364,10 +363,6 @@ msgstr "Aktualisierungen fortsetzen" msgid "Pause Updating" msgstr "Aktualisierungen unterbrechen" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "vor %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "Demnächst" @@ -401,6 +396,9 @@ msgstr "" msgid "today" msgstr "heute" +#~ msgid "%1 ago" +#~ msgstr "vor %1" + #~ msgid "Render meteogram for yr.no" #~ msgstr "Meteogram für yr.no erzeugen" diff --git a/translations/po/en.po b/translations/po/en.po index b93af24..49adcdd 100644 --- a/translations/po/en.po +++ b/translations/po/en.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2016-03-26 21:59+0100\n" "Last-Translator: Martin Kotelnik \n" "Language-Team: Martin Kotelnik \n" @@ -26,19 +25,19 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" +msgid "%1 m ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 h" +msgid "%1 h ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 d" +msgid "%1 d ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "hours" +msgid "long ago" msgstr "" #: ../../package/contents/code/unit-utils.js ../../package/contents/ui/config/ConfigUnits.qml @@ -339,10 +338,6 @@ msgstr "" msgid "Pause Updating" msgstr "" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "" diff --git a/translations/po/es.po b/translations/po/es.po index 1e312bb..5f5409a 100644 --- a/translations/po/es.po +++ b/translations/po/es.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , 2017. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:04+0000\n" "Last-Translator: Kepa Badiola \n" "Language-Team: spanish \n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "hace %1 m" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "hace %1 h" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "hace %1 d" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "hace mucho tiempo" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -364,10 +363,6 @@ msgstr "Reanudar Actualización" msgid "Pause Updating" msgstr "Pausar Actualización" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "hace %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "futuro próximo" diff --git a/translations/po/fr.po b/translations/po/fr.po index 826620c..60da95d 100644 --- a/translations/po/fr.po +++ b/translations/po/fr.po @@ -6,12 +6,11 @@ # David Geiger , 2017 # Adrien Daugabel , 2017 # Papoteur , 2017 -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:37+0000\n" "Last-Translator: David Geiger \n" "Language-Team: French (http://www.mageialinux-online.org/)\n" @@ -31,20 +30,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "il y a %1 m" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "il y a %1 h" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "il y a %1 j" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "il y a longtemps" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -367,10 +366,6 @@ msgstr "Reprendre la mise à jour" msgid "Pause Updating" msgstr "Suspendre la mise à jour" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "il y a %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "futur proche" diff --git a/translations/po/hu_HU.po b/translations/po/hu_HU.po index 199d4b3..af4e76e 100644 --- a/translations/po/hu_HU.po +++ b/translations/po/hu_HU.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # Laszlo Espadas , 2017. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: plasma-applet-weather-widget\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:07+0000\n" "Last-Translator: Laszlo Espadas \n" "Language-Team: Hungarian \n" @@ -30,20 +29,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 m ezelőtt" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 ó ezelőtt" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 n ezelőtt" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "hosszú ideje" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -363,10 +362,6 @@ msgstr "Frissítés folytatása" msgid "Pause Updating" msgstr "Frissítés megállítása" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 ezelőtt" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "Jelenleg" diff --git a/translations/po/it_IT.po b/translations/po/it_IT.po index 01722c9..9f38f50 100644 --- a/translations/po/it_IT.po +++ b/translations/po/it_IT.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:09+0000\n" "Last-Translator: Armando Brandonisio \n" "Language-Team: Armando Brandonisio \n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 m fa" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 o fa" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 g fa" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "per molto tempo" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -362,10 +361,6 @@ msgstr "Riprendi l'aggiornamento" msgid "Pause Updating" msgstr "Metti in pausa l'aggiornamento" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 fa" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "Futuro prossimo" diff --git a/translations/po/lt.po b/translations/po/lt.po index f13537f..957b8cd 100644 --- a/translations/po/lt.po +++ b/translations/po/lt.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # Moo, 2017. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:11+0000\n" "Last-Translator: Moo\n" "Language-Team: \n" @@ -17,8 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"(n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../../package/metadata.desktop msgid "Weather Widget 2" @@ -29,20 +28,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "Prieš %1 m" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "Prieš %1 v" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "Prieš %1 d" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "ilgam laikui" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -367,10 +366,6 @@ msgstr "Pratęsti atnaujinimą" msgid "Pause Updating" msgstr "Pristabdyti atnaujinimą" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "Prieš %1" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "netolimoje ateityje" diff --git a/translations/po/nb.po b/translations/po/nb.po index 27262d2..75ba334 100644 --- a/translations/po/nb.po +++ b/translations/po/nb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: weatherWidget-2\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-02-14 15:54+0100\n" "Last-Translator: Johnny A. Solbu \n" "Language-Team: Norwegian Bokmaal \n" @@ -27,20 +27,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "Plasmoid som viser værinformasjon fra met.no" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "%1 m" +msgid "%1 m ago" +msgstr "%1 m siden" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "%1 t" +msgid "%1 h ago" +msgstr "%1 t siden" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "%1 d" +msgid "%1 d ago" +msgstr "%1 d siden" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "timer" +msgid "long ago" +msgstr "lenge siden" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -363,10 +363,6 @@ msgstr "Gjenoppta oppdatering" msgid "Pause Updating" msgstr "Pause oppdatering" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 siden" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "nær fremtid" diff --git a/translations/po/nl.po b/translations/po/nl.po index f26248b..e824713 100644 --- a/translations/po/nl.po +++ b/translations/po/nl.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the weatherWidget-2 package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: weatherWidget-2\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-02-11 14:04+0100\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -28,20 +27,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "Een plasmoid die weerinformatie toont van de met.no-server" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "%1 " +msgid "%1 m ago" +msgstr "%1 geleden" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "%1 u" +msgid "%1 h ago" +msgstr "%1 u geleden" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "%1 d" +msgid "%1 d ago" +msgstr "%1 d geleden" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "uur" +msgid "long ago" +msgstr "voor een lange tijd" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -366,10 +365,6 @@ msgstr "Bijwerken voortzetten" msgid "Pause Updating" msgstr "Bijwerken onderbreken" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 geleden" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "toekomstig" @@ -404,3 +399,18 @@ msgstr "" #: ../../package/contents/ui/providers/OpenWeatherMap.qml msgid "today" msgstr "vandaag" + +#~ msgid "%1 m" +#~ msgstr "%1 " + +#~ msgid "%1 h" +#~ msgstr "%1 u" + +#~ msgid "%1 d" +#~ msgstr "%1 d" + +#~ msgid "hours" +#~ msgstr "uur" + +#~ msgid "%1 ago" +#~ msgstr "%1 geleden" diff --git a/translations/po/pl.po b/translations/po/pl.po index d39e412..0fb1071 100644 --- a/translations/po/pl.po +++ b/translations/po/pl.po @@ -2,12 +2,11 @@ # This file is distributed under the same license as the PACKAGE package. # # Tomasz Przybył , 2016. -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:19+0000\n" "Last-Translator: Tomasz Przybył \n" "Language-Team: Polish \n" @@ -28,20 +27,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 m temu" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 g temu" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 d temu" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "przez długi czas" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -368,10 +367,6 @@ msgstr "Wznów aktualizację" msgid "Pause Updating" msgstr "Wstrzymaj aktualizację" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 temu" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "w najbliższym czasie" diff --git a/translations/po/ru.po b/translations/po/ru.po index b89bae9..7517334 100644 --- a/translations/po/ru.po +++ b/translations/po/ru.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # Jacobtey , 2016. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-02-14 13:15+0700\n" "Last-Translator: Damir Islamov \n" "Language-Team: Russian \n" @@ -17,8 +16,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" -"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : n" -"%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=4; plural=n==1 ? 3 : n%10==1 && n%100!=11 ? 0 : " +"n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: ../../package/metadata.desktop msgid "Weather Widget 2" @@ -29,20 +28,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "Плазмоид, показывающий информацию о погоде с сервера met.no" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "%1 м" +msgid "%1 m ago" +msgstr "%1 м назад" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "%1 ч" +msgid "%1 h ago" +msgstr "%1 ч назад" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "%1 д" +msgid "%1 d ago" +msgstr "%1 д назад" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "много часов" +msgid "long ago" +msgstr "давно" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -367,10 +366,6 @@ msgstr "Отменить обновление" msgid "Pause Updating" msgstr "Приостановить обновление" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 назад" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "ближайшее время" @@ -405,9 +400,6 @@ msgstr "" msgid "today" msgstr "сегодня" -#~ msgid "long" -#~ msgstr "давно" - #~ msgid "Render meteogram for yr.no" #~ msgstr "Генерировать метеограмму для yr.no" diff --git a/translations/po/sv.po b/translations/po/sv.po index 194b3e3..0314a1a 100644 --- a/translations/po/sv.po +++ b/translations/po/sv.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the weatherWidget-2 package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: weatherWidget-2\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-02-06 18:11+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -28,20 +27,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "Plasmoid som visar väderinformation från met.no (yr.no)" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 m sedan" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 t sedan" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 d sedan" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "under en lång tid" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -363,10 +362,6 @@ msgstr "Återuppta uppdatering" msgid "Pause Updating" msgstr "Pausa uppdatering" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 sedan" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "snart" diff --git a/translations/po/template.pot b/translations/po/template.pot index d13ea5b..ec75643 100644 --- a/translations/po/template.pot +++ b/translations/po/template.pot @@ -3,13 +3,12 @@ # This file is distributed under the same license as the weatherWidget-2 package. # FIRST AUTHOR , YEAR. # -#: ../../package/contents/ui/config/ConfigGeneral.qml #, fuzzy msgid "" msgstr "" "Project-Id-Version: weatherWidget-2\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,19 +27,19 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" +msgid "%1 m ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 h" +msgid "%1 h ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 d" +msgid "%1 d ago" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "hours" +msgid "long ago" msgstr "" #: ../../package/contents/code/unit-utils.js ../../package/contents/ui/config/ConfigUnits.qml @@ -341,10 +340,6 @@ msgstr "" msgid "Pause Updating" msgstr "" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "" diff --git a/translations/po/zh_CN.po b/translations/po/zh_CN.po index 0dc3a1b..cd1bca3 100644 --- a/translations/po/zh_CN.po +++ b/translations/po/zh_CN.po @@ -3,12 +3,11 @@ # This file is distributed under the same license as the PACKAGE package. # 吴相东 , 2016. # -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:17+0000\n" "Last-Translator: 吴相东 \n" "Language-Team: 吴相东 \n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "添加 Open Weather Map" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 分钟前" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 小时前" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 天前" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "许久" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -360,10 +359,6 @@ msgstr "恢复" msgid "Pause Updating" msgstr "暂停" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 前" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "不久后" diff --git a/translations/po/zh_TW.po b/translations/po/zh_TW.po index a10d09a..dfd4b9f 100644 --- a/translations/po/zh_TW.po +++ b/translations/po/zh_TW.po @@ -2,12 +2,11 @@ # This file is distributed under the same license as the PACKAGE package. # # Jeff Huang , 2016. -#: ../../package/contents/ui/config/ConfigGeneral.qml msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/blackadderkate/weather-widget-2\n" -"POT-Creation-Date: 2022-02-12 16:29+0000\n" +"POT-Creation-Date: 2022-02-16 22:06+0700\n" "PO-Revision-Date: 2022-01-03 22:18+0000\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" @@ -27,20 +26,20 @@ msgid "Plasmoid showing weather information from met.no server" msgstr "" #: ../../package/contents/code/data-loader.js -msgid "%1 m" -msgstr "" +msgid "%1 m ago" +msgstr "%1 分钟前" #: ../../package/contents/code/data-loader.js -msgid "%1 h" -msgstr "" +msgid "%1 h ago" +msgstr "%1 小时前" #: ../../package/contents/code/data-loader.js -msgid "%1 d" -msgstr "" +msgid "%1 d ago" +msgstr "%1 天前" #: ../../package/contents/code/data-loader.js -msgid "hours" -msgstr "" +msgid "long ago" +msgstr "许久" #: ../../package/contents/code/unit-utils.js #: ../../package/contents/ui/config/ConfigUnits.qml @@ -360,10 +359,6 @@ msgstr "繼續更新" msgid "Pause Updating" msgstr "暫停更新" -#: ../../package/contents/ui/main.qml -msgid "%1 ago" -msgstr "%1 前" - #: ../../package/contents/ui/main.qml msgid "near future" msgstr "不久的未來" @@ -397,6 +392,9 @@ msgstr "" msgid "today" msgstr "今天" +#~ msgid "%1 ago" +#~ msgstr "%1 前" + #~ msgid "Render meteogram for yr.no" #~ msgstr "繪製 yr.no 天氣圖表"