From 6cd514ba2a47a8d76e1446ce0c7a3be83c011811 Mon Sep 17 00:00:00 2001 From: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com> Date: Mon, 27 Jan 2025 15:41:47 -0800 Subject: [PATCH 01/16] Update `IntentBuilder` to import from `ovos_workshop` (#59) --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 27fcdfe3..a8850a59 100644 --- a/__init__.py +++ b/__init__.py @@ -66,7 +66,7 @@ from lingua_franca.parse import extract_number from ovos_workshop.decorators import intent_handler, skill_api_method -from adapt.intent import IntentBuilder +from ovos_workshop.intents import IntentBuilder from .skill import ( CurrentDialog, From f8967fe2ecdf3d0b9fe4cac6678832f28a7869d9 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Mon, 27 Jan 2025 23:42:01 +0000 Subject: [PATCH 02/16] Increment Version to 3.0.1a1 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 790b70b9..7ca6ed9f 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.0" +__version__ = "3.0.1a1" From 0c8995f697f8591f427f5986dc285555006f2d28 Mon Sep 17 00:00:00 2001 From: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com> Date: Tue, 11 Mar 2025 15:19:50 -0700 Subject: [PATCH 03/16] Update automation, gitignore, and license notices (#63) * Update skill.json workflow branches-ignore\nStandardize gitignore\nUpdate License Notices to 2025 * Update License Notices to 2025 --- .github/workflows/update_skill_json.yml | 2 + .gitignore | 167 +++++++++++++++++++++++- LICENSE.md | 2 +- __init__.py | 2 +- setup.py | 2 +- version.py | 2 +- 6 files changed, 168 insertions(+), 9 deletions(-) diff --git a/.github/workflows/update_skill_json.yml b/.github/workflows/update_skill_json.yml index b2c8b937..6630df62 100644 --- a/.github/workflows/update_skill_json.yml +++ b/.github/workflows/update_skill_json.yml @@ -3,6 +3,8 @@ name: Update skill.json on: push: + branches-ignore: + - XLATE_** jobs: update_skill_json: diff --git a/.gitignore b/.gitignore index 8ae56fbf..efa407c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,162 @@ -*.pyc -*.qmlc -settings.json -.vscode -.idea/** +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/latest/usage/project/#working-with-version-control +.pdm.toml +.pdm-python +.pdm-build/ + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 525bb37e..0fdcf767 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ # NEON AI (TM) SOFTWARE, Software Development Kit & Application Development System # All trademark and other rights reserved by their respective owners -# Copyright 2008-2021 Neongecko.com Inc. +# Copyright 2008-2025 Neongecko.com Inc. # BSD-3 License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the diff --git a/__init__.py b/__init__.py index a8850a59..23cc2f22 100644 --- a/__init__.py +++ b/__init__.py @@ -1,6 +1,6 @@ # NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework # All trademark and other rights reserved by their respective owners -# Copyright 2008-2022 Neongecko.com Inc. +# Copyright 2008-2025 Neongecko.com Inc. # Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds, # Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo # BSD-3 License diff --git a/setup.py b/setup.py index 88844124..bd78bf86 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework # All trademark and other rights reserved by their respective owners -# Copyright 2008-2022 Neongecko.com Inc. +# Copyright 2008-2025 Neongecko.com Inc. # Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds, # Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo # BSD-3 License diff --git a/version.py b/version.py index 7ca6ed9f..d2e4f230 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework # All trademark and other rights reserved by their respective owners -# Copyright 2008-2022 Neongecko.com Inc. +# Copyright 2008-2025 Neongecko.com Inc. # Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds, # Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo # BSD-3 License From 10b2c9da446fb85f82b54c7ac7cabf382b180371 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 11 Mar 2025 22:20:05 +0000 Subject: [PATCH 04/16] Increment Version to 3.0.1a2 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index d2e4f230..eb071cd3 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a1" +__version__ = "3.0.1a2" From 9036507bee4face4acbbbf06c898fb72f5b7861b Mon Sep 17 00:00:00 2001 From: NeonDmitry <109043283+NeonDmitry@users.noreply.github.com> Date: Thu, 20 Mar 2025 17:55:48 +0200 Subject: [PATCH 05/16] Polish translation (#65) * Update skill.json * Polish Translation * Polish Translation_dialog folder * Redo commit 5234867 --------- Co-authored-by: NeonDmitry Co-authored-by: Daniel McKnight --- locale/pl-pl/dialog/and.dialog | 2 ++ .../pl-pl/dialog/condition/clear-sky.dialog | 2 ++ locale/pl-pl/dialog/condition/clear.dialog | 2 ++ locale/pl-pl/dialog/condition/clouds.dialog | 2 ++ locale/pl-pl/dialog/condition/humidity.dialog | 2 ++ locale/pl-pl/dialog/condition/rain.dialog | 2 ++ locale/pl-pl/dialog/condition/snow.dialog | 2 ++ .../dialog/condition/thunderstorm.dialog | 2 ++ .../current-condition-expected-local.dialog | 3 ++ ...current-condition-expected-location.dialog | 3 ++ ...urrent-condition-not-expected-local.dialog | 3 ++ ...ent-condition-not-expected-location.dialog | 3 ++ .../current/current-humidity-local.dialog | 2 ++ .../current/current-humidity-location.dialog | 2 ++ .../current-sunrise-future-local.dialog | 3 ++ .../current-sunrise-future-location.dialog | 3 ++ .../current/current-sunrise-past-local.dialog | 3 ++ .../current-sunrise-past-location.dialog | 3 ++ .../current-sunset-future-local.dialog | 3 ++ .../current-sunset-future-location.dialog | 4 +++ .../current/current-sunset-past-local.dialog | 4 +++ .../current-sunset-past-location.dialog | 4 +++ .../current-temperature-high-local.dialog | 4 +++ .../current-temperature-high-location.dialog | 4 +++ .../current-temperature-high-low.dialog | 2 ++ .../current/current-temperature-local.dialog | 4 +++ .../current-temperature-location.dialog | 4 +++ .../current-temperature-low-local.dialog | 4 +++ .../current-temperature-low-location.dialog | 3 ++ .../current/current-weather-local.dialog | 4 +++ .../current/current-weather-location.dialog | 4 +++ .../current/current-wind-light-local.dialog | 3 ++ .../current-wind-light-location.dialog | 3 ++ .../current-wind-moderate-local.dialog | 3 ++ .../current-wind-moderate-location.dialog | 3 ++ .../current/current-wind-strong-local.dialog | 4 +++ .../current-wind-strong-location.dialog | 4 +++ .../currrent-clouds-alternative-local.dialog | 4 +++ .../daily-condition-expected-local.dialog | 3 ++ .../daily-condition-expected-location.dialog | 3 ++ .../daily-condition-not-expected-local.dialog | 3 ++ ...ily-condition-not-expected-location.dialog | 3 ++ .../dialog/daily/daily-humidity-local.dialog | 3 ++ .../daily/daily-humidity-location.dialog | 3 ++ .../daily-precipitation-next-local.dialog | 3 ++ .../daily-precipitation-next-location.dialog | 3 ++ ...daily-precipitation-next-none-local.dialog | 3 ++ ...ly-precipitation-next-none-location.dialog | 3 ++ .../dialog/daily/daily-sunrise-local.dialog | 4 +++ .../daily/daily-sunrise-location.dialog | 4 +++ .../dialog/daily/daily-sunset-local.dialog | 4 +++ .../dialog/daily/daily-sunset-location.dialog | 4 +++ .../daily/daily-temperature-high-local.dialog | 3 ++ .../daily-temperature-high-location.dialog | 3 ++ .../daily/daily-temperature-local.dialog | 3 ++ .../daily/daily-temperature-location.dialog | 3 ++ .../daily/daily-temperature-low-local.dialog | 3 ++ .../daily-temperature-low-location.dialog | 3 ++ .../dialog/daily/daily-weather-local.dialog | 6 ++++ .../daily/daily-weather-location.dialog | 4 +++ .../daily/daily-wind-light-local.dialog | 3 ++ .../daily/daily-wind-light-location.dialog | 3 ++ .../daily/daily-wind-moderate-local.dialog | 4 +++ .../daily/daily-wind-moderate-location.dialog | 4 +++ .../daily/daily-wind-strong-local.dialog | 3 ++ .../daily/daily-wind-strong-location.dialog | 3 ++ locale/pl-pl/dialog/direction/east.dialog | 2 ++ locale/pl-pl/dialog/direction/north.dialog | 2 ++ .../pl-pl/dialog/direction/northeast.dialog | 2 ++ .../pl-pl/dialog/direction/northwest.dialog | 2 ++ locale/pl-pl/dialog/direction/south.dialog | 2 ++ .../pl-pl/dialog/direction/southeast.dialog | 2 ++ .../pl-pl/dialog/direction/southwest.dialog | 2 ++ locale/pl-pl/dialog/direction/west.dialog | 2 ++ .../dialog/error/cant-get-forecast.dialog | 32 +++++++++++++++++++ .../error/forty-eight-hours-available.dialog | 2 ++ .../dialog/error/location-not-found.dialog | 3 ++ locale/pl-pl/dialog/error/no-forecast.dialog | 3 ++ .../dialog/error/seven-days-available.dialog | 3 ++ .../hourly-condition-expected-local.dialog | 2 ++ .../hourly-condition-expected-location.dialog | 2 ++ .../hourly-precipitation-next-local.dialog | 3 ++ .../hourly-precipitation-next-location.dialog | 3 ++ .../hourly/hourly-temperature-local.dialog | 3 ++ .../hourly/hourly-temperature-location.dialog | 3 ++ .../dialog/hourly/hourly-weather-local.dialog | 5 +++ .../hourly/hourly-weather-location.dialog | 5 +++ locale/pl-pl/dialog/percentage-number.dialog | 2 ++ locale/pl-pl/dialog/unit/celsius.dialog | 2 ++ locale/pl-pl/dialog/unit/fahrenheit.dialog | 2 ++ .../dialog/unit/meters per second.dialog | 2 ++ .../pl-pl/dialog/unit/miles per hour.dialog | 2 ++ .../dialog/weekly/weekly-condition.dialog | 3 ++ .../dialog/weekly/weekly-temperature.dialog | 2 ++ locale/pl-pl/regex/location.rx | 1 + locale/pl-pl/vocabulary/condition/clear.voc | 6 ++++ locale/pl-pl/vocabulary/condition/clouds.voc | 6 ++++ .../condition/do-i-need-an-umbrella.intent | 5 +++ locale/pl-pl/vocabulary/condition/fog.voc | 3 ++ .../pl-pl/vocabulary/condition/humidity.voc | 4 +++ .../vocabulary/condition/precipitation.voc | 6 ++++ locale/pl-pl/vocabulary/condition/rain.voc | 5 +++ locale/pl-pl/vocabulary/condition/snow.voc | 3 ++ .../vocabulary/condition/thunderstorm.voc | 4 +++ locale/pl-pl/vocabulary/condition/windy.voc | 8 +++++ locale/pl-pl/vocabulary/date-time/couple.voc | 2 ++ locale/pl-pl/vocabulary/date-time/few.voc | 2 ++ locale/pl-pl/vocabulary/date-time/later.voc | 7 ++++ locale/pl-pl/vocabulary/date-time/next.voc | 3 ++ locale/pl-pl/vocabulary/date-time/now.voc | 3 ++ .../vocabulary/date-time/number-days.voc | 32 +++++++++++++++++++ .../vocabulary/date-time/relative-day.voc | 20 ++++++++++++ .../vocabulary/date-time/relative-time.voc | 7 ++++ locale/pl-pl/vocabulary/date-time/today.voc | 3 ++ locale/pl-pl/vocabulary/date-time/week.voc | 3 ++ locale/pl-pl/vocabulary/date-time/weekend.voc | 2 ++ locale/pl-pl/vocabulary/forecast.voc | 2 ++ locale/pl-pl/vocabulary/like.voc | 2 ++ locale/pl-pl/vocabulary/location.voc | 16 ++++++++++ locale/pl-pl/vocabulary/outside.voc | 2 ++ .../query/confirm-query-current.voc | 3 ++ .../vocabulary/query/confirm-query-future.voc | 6 ++++ .../pl-pl/vocabulary/query/confirm-query.voc | 9 ++++++ locale/pl-pl/vocabulary/query/how.voc | 2 ++ locale/pl-pl/vocabulary/query/query.voc | 10 ++++++ locale/pl-pl/vocabulary/query/when.voc | 5 +++ locale/pl-pl/vocabulary/sunrise.voc | 4 +++ locale/pl-pl/vocabulary/sunset.voc | 3 ++ locale/pl-pl/vocabulary/temperature/cold.voc | 5 +++ locale/pl-pl/vocabulary/temperature/high.voc | 5 +++ locale/pl-pl/vocabulary/temperature/hot.voc | 3 ++ locale/pl-pl/vocabulary/temperature/low.voc | 5 +++ .../vocabulary/temperature/temperature.voc | 3 ++ locale/pl-pl/vocabulary/unit/fahrenheit.voc | 2 ++ locale/pl-pl/vocabulary/unit/unit.entity | 2 ++ locale/pl-pl/vocabulary/unit/unit.voc | 3 ++ locale/pl-pl/vocabulary/weather.voc | 2 ++ skill.json | 4 +-- 138 files changed, 541 insertions(+), 2 deletions(-) create mode 100644 locale/pl-pl/dialog/and.dialog create mode 100644 locale/pl-pl/dialog/condition/clear-sky.dialog create mode 100644 locale/pl-pl/dialog/condition/clear.dialog create mode 100644 locale/pl-pl/dialog/condition/clouds.dialog create mode 100644 locale/pl-pl/dialog/condition/humidity.dialog create mode 100644 locale/pl-pl/dialog/condition/rain.dialog create mode 100644 locale/pl-pl/dialog/condition/snow.dialog create mode 100644 locale/pl-pl/dialog/condition/thunderstorm.dialog create mode 100644 locale/pl-pl/dialog/current/current-condition-expected-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-condition-expected-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-condition-not-expected-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-condition-not-expected-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-humidity-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-humidity-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunrise-future-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunrise-future-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunrise-past-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunrise-past-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunset-future-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunset-future-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunset-past-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-sunset-past-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-high-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-high-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-high-low.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-low-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-temperature-low-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-weather-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-weather-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-light-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-light-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-moderate-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-moderate-location.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-strong-local.dialog create mode 100644 locale/pl-pl/dialog/current/current-wind-strong-location.dialog create mode 100644 locale/pl-pl/dialog/current/currrent-clouds-alternative-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-condition-expected-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-condition-expected-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-condition-not-expected-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-condition-not-expected-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-humidity-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-humidity-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-precipitation-next-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-precipitation-next-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-precipitation-next-none-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-precipitation-next-none-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-sunrise-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-sunrise-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-sunset-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-sunset-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-high-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-high-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-low-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-temperature-low-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-weather-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-weather-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-light-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-light-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-moderate-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-moderate-location.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-strong-local.dialog create mode 100644 locale/pl-pl/dialog/daily/daily-wind-strong-location.dialog create mode 100644 locale/pl-pl/dialog/direction/east.dialog create mode 100644 locale/pl-pl/dialog/direction/north.dialog create mode 100644 locale/pl-pl/dialog/direction/northeast.dialog create mode 100644 locale/pl-pl/dialog/direction/northwest.dialog create mode 100644 locale/pl-pl/dialog/direction/south.dialog create mode 100644 locale/pl-pl/dialog/direction/southeast.dialog create mode 100644 locale/pl-pl/dialog/direction/southwest.dialog create mode 100644 locale/pl-pl/dialog/direction/west.dialog create mode 100644 locale/pl-pl/dialog/error/cant-get-forecast.dialog create mode 100644 locale/pl-pl/dialog/error/forty-eight-hours-available.dialog create mode 100644 locale/pl-pl/dialog/error/location-not-found.dialog create mode 100644 locale/pl-pl/dialog/error/no-forecast.dialog create mode 100644 locale/pl-pl/dialog/error/seven-days-available.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-condition-expected-local.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-condition-expected-location.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-precipitation-next-local.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-precipitation-next-location.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-temperature-local.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-temperature-location.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-weather-local.dialog create mode 100644 locale/pl-pl/dialog/hourly/hourly-weather-location.dialog create mode 100644 locale/pl-pl/dialog/percentage-number.dialog create mode 100644 locale/pl-pl/dialog/unit/celsius.dialog create mode 100644 locale/pl-pl/dialog/unit/fahrenheit.dialog create mode 100644 locale/pl-pl/dialog/unit/meters per second.dialog create mode 100644 locale/pl-pl/dialog/unit/miles per hour.dialog create mode 100644 locale/pl-pl/dialog/weekly/weekly-condition.dialog create mode 100644 locale/pl-pl/dialog/weekly/weekly-temperature.dialog create mode 100644 locale/pl-pl/regex/location.rx create mode 100644 locale/pl-pl/vocabulary/condition/clear.voc create mode 100644 locale/pl-pl/vocabulary/condition/clouds.voc create mode 100644 locale/pl-pl/vocabulary/condition/do-i-need-an-umbrella.intent create mode 100644 locale/pl-pl/vocabulary/condition/fog.voc create mode 100644 locale/pl-pl/vocabulary/condition/humidity.voc create mode 100644 locale/pl-pl/vocabulary/condition/precipitation.voc create mode 100644 locale/pl-pl/vocabulary/condition/rain.voc create mode 100644 locale/pl-pl/vocabulary/condition/snow.voc create mode 100644 locale/pl-pl/vocabulary/condition/thunderstorm.voc create mode 100644 locale/pl-pl/vocabulary/condition/windy.voc create mode 100644 locale/pl-pl/vocabulary/date-time/couple.voc create mode 100644 locale/pl-pl/vocabulary/date-time/few.voc create mode 100644 locale/pl-pl/vocabulary/date-time/later.voc create mode 100644 locale/pl-pl/vocabulary/date-time/next.voc create mode 100644 locale/pl-pl/vocabulary/date-time/now.voc create mode 100644 locale/pl-pl/vocabulary/date-time/number-days.voc create mode 100644 locale/pl-pl/vocabulary/date-time/relative-day.voc create mode 100644 locale/pl-pl/vocabulary/date-time/relative-time.voc create mode 100644 locale/pl-pl/vocabulary/date-time/today.voc create mode 100644 locale/pl-pl/vocabulary/date-time/week.voc create mode 100644 locale/pl-pl/vocabulary/date-time/weekend.voc create mode 100644 locale/pl-pl/vocabulary/forecast.voc create mode 100644 locale/pl-pl/vocabulary/like.voc create mode 100644 locale/pl-pl/vocabulary/location.voc create mode 100644 locale/pl-pl/vocabulary/outside.voc create mode 100644 locale/pl-pl/vocabulary/query/confirm-query-current.voc create mode 100644 locale/pl-pl/vocabulary/query/confirm-query-future.voc create mode 100644 locale/pl-pl/vocabulary/query/confirm-query.voc create mode 100644 locale/pl-pl/vocabulary/query/how.voc create mode 100644 locale/pl-pl/vocabulary/query/query.voc create mode 100644 locale/pl-pl/vocabulary/query/when.voc create mode 100644 locale/pl-pl/vocabulary/sunrise.voc create mode 100644 locale/pl-pl/vocabulary/sunset.voc create mode 100644 locale/pl-pl/vocabulary/temperature/cold.voc create mode 100644 locale/pl-pl/vocabulary/temperature/high.voc create mode 100644 locale/pl-pl/vocabulary/temperature/hot.voc create mode 100644 locale/pl-pl/vocabulary/temperature/low.voc create mode 100644 locale/pl-pl/vocabulary/temperature/temperature.voc create mode 100644 locale/pl-pl/vocabulary/unit/fahrenheit.voc create mode 100644 locale/pl-pl/vocabulary/unit/unit.entity create mode 100644 locale/pl-pl/vocabulary/unit/unit.voc create mode 100644 locale/pl-pl/vocabulary/weather.voc diff --git a/locale/pl-pl/dialog/and.dialog b/locale/pl-pl/dialog/and.dialog new file mode 100644 index 00000000..dbf03f55 --- /dev/null +++ b/locale/pl-pl/dialog/and.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +oraz diff --git a/locale/pl-pl/dialog/condition/clear-sky.dialog b/locale/pl-pl/dialog/condition/clear-sky.dialog new file mode 100644 index 00000000..1c826cb0 --- /dev/null +++ b/locale/pl-pl/dialog/condition/clear-sky.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +czyste niebo diff --git a/locale/pl-pl/dialog/condition/clear.dialog b/locale/pl-pl/dialog/condition/clear.dialog new file mode 100644 index 00000000..1c826cb0 --- /dev/null +++ b/locale/pl-pl/dialog/condition/clear.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +czyste niebo diff --git a/locale/pl-pl/dialog/condition/clouds.dialog b/locale/pl-pl/dialog/condition/clouds.dialog new file mode 100644 index 00000000..4cece2f4 --- /dev/null +++ b/locale/pl-pl/dialog/condition/clouds.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +chmury diff --git a/locale/pl-pl/dialog/condition/humidity.dialog b/locale/pl-pl/dialog/condition/humidity.dialog new file mode 100644 index 00000000..98949bfb --- /dev/null +++ b/locale/pl-pl/dialog/condition/humidity.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +wilgotność diff --git a/locale/pl-pl/dialog/condition/rain.dialog b/locale/pl-pl/dialog/condition/rain.dialog new file mode 100644 index 00000000..f866985b --- /dev/null +++ b/locale/pl-pl/dialog/condition/rain.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +deszcz diff --git a/locale/pl-pl/dialog/condition/snow.dialog b/locale/pl-pl/dialog/condition/snow.dialog new file mode 100644 index 00000000..e01be89d --- /dev/null +++ b/locale/pl-pl/dialog/condition/snow.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +śnieg diff --git a/locale/pl-pl/dialog/condition/thunderstorm.dialog b/locale/pl-pl/dialog/condition/thunderstorm.dialog new file mode 100644 index 00000000..b820a4ef --- /dev/null +++ b/locale/pl-pl/dialog/condition/thunderstorm.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +burze diff --git a/locale/pl-pl/dialog/current/current-condition-expected-local.dialog b/locale/pl-pl/dialog/current/current-condition-expected-local.dialog new file mode 100644 index 00000000..fabdfe81 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-condition-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Wygląda na to, że dzisiaj będzie {condition} +Tak, dzisiaj będzie {condition} diff --git a/locale/pl-pl/dialog/current/current-condition-expected-location.dialog b/locale/pl-pl/dialog/current/current-condition-expected-location.dialog new file mode 100644 index 00000000..f323b71b --- /dev/null +++ b/locale/pl-pl/dialog/current/current-condition-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Tak, to będzie {condition} w {location} +W {location} wygląda na to, że dzisiaj będzie {condition} diff --git a/locale/pl-pl/dialog/current/current-condition-not-expected-local.dialog b/locale/pl-pl/dialog/current/current-condition-not-expected-local.dialog new file mode 100644 index 00000000..11423cd0 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-condition-not-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Nie, prognoza przewiduje dziś {condition} +Nie, {condition} spodziewany jest dzisiaj diff --git a/locale/pl-pl/dialog/current/current-condition-not-expected-location.dialog b/locale/pl-pl/dialog/current/current-condition-not-expected-location.dialog new file mode 100644 index 00000000..4999dec6 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-condition-not-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Nie, w {location} {condition} spodziewany jest dzisiaj +Nie, prognoza przewiduje dziś {condition} w {location} diff --git a/locale/pl-pl/dialog/current/current-humidity-local.dialog b/locale/pl-pl/dialog/current/current-humidity-local.dialog new file mode 100644 index 00000000..c44dc794 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-humidity-local.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Obecnie wilgotność wynosi {percent} diff --git a/locale/pl-pl/dialog/current/current-humidity-location.dialog b/locale/pl-pl/dialog/current/current-humidity-location.dialog new file mode 100644 index 00000000..4b4783d4 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-humidity-location.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Obecnie wilgotność w {location} wynosi {percent} diff --git a/locale/pl-pl/dialog/current/current-sunrise-future-local.dialog b/locale/pl-pl/dialog/current/current-sunrise-future-local.dialog new file mode 100644 index 00000000..7f3aea6e --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunrise-future-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Słońce wzejdzie dziś o godzinie 0 +Wschód słońca będzie dziś o {time} diff --git a/locale/pl-pl/dialog/current/current-sunrise-future-location.dialog b/locale/pl-pl/dialog/current/current-sunrise-future-location.dialog new file mode 100644 index 00000000..2902bd5e --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunrise-future-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Słońce wzeszło o {time} dzisiaj w {location} +wschód słońca był dziś o {time} w {location} diff --git a/locale/pl-pl/dialog/current/current-sunrise-past-local.dialog b/locale/pl-pl/dialog/current/current-sunrise-past-local.dialog new file mode 100644 index 00000000..f450f4e6 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunrise-past-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +wschód słońca był dziś na {time} +Słońce wzeszło dziś o godzinie 0 diff --git a/locale/pl-pl/dialog/current/current-sunrise-past-location.dialog b/locale/pl-pl/dialog/current/current-sunrise-past-location.dialog new file mode 100644 index 00000000..19a57944 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunrise-past-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +wschód słońca był dziś o {time} w {location} +Słońce wzeszło dziś o {time} w {location} diff --git a/locale/pl-pl/dialog/current/current-sunset-future-local.dialog b/locale/pl-pl/dialog/current/current-sunset-future-local.dialog new file mode 100644 index 00000000..3fd4a34c --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunset-future-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +zachód słońca będzie dziś na {time} +Słońce zajdzie dziś o godzinie 0 diff --git a/locale/pl-pl/dialog/current/current-sunset-future-location.dialog b/locale/pl-pl/dialog/current/current-sunset-future-location.dialog new file mode 100644 index 00000000..89db1580 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunset-future-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +w {location} słońce zajdzie dziś o {time} +Słońce zajdzie o godzinie {time} dzisiaj w {location} +zachód słońca będzie dziś na {time} w {location} diff --git a/locale/pl-pl/dialog/current/current-sunset-past-local.dialog b/locale/pl-pl/dialog/current/current-sunset-past-local.dialog new file mode 100644 index 00000000..4837db3b --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunset-past-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Słońce zaszło dziś o godzinie 0 +Słońce zachodziło dziś o 0 +Zachód słońca był dziś na poziomie {time} diff --git a/locale/pl-pl/dialog/current/current-sunset-past-location.dialog b/locale/pl-pl/dialog/current/current-sunset-past-location.dialog new file mode 100644 index 00000000..8c27bae4 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-sunset-past-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Słońce zaszło o {time} dzisiaj w {location} +zachód słońca w {time} dzisiaj w {location} +w {location} słońce zaszło dziś o {time} diff --git a/locale/pl-pl/dialog/current/current-temperature-high-local.dialog b/locale/pl-pl/dialog/current/current-temperature-high-local.dialog new file mode 100644 index 00000000..2acb4ea9 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-high-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Można spodziewać się {temperature} stopni. +Oczekuje się wysokiej temperatury {temperature} stopni {temperature_unit}. +Dziś temperatura osiągnie {temperature} stopni. diff --git a/locale/pl-pl/dialog/current/current-temperature-high-location.dialog b/locale/pl-pl/dialog/current/current-temperature-high-location.dialog new file mode 100644 index 00000000..cb80886b --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-high-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +W {location} można spodziewać się {temperature} stopni. +Wysoka temperatura {temperature} stopni {temperature_unit} spodziewana jest w {location}. +Dzisiaj temperatura osiągnie {temperature} stopni w {location}. diff --git a/locale/pl-pl/dialog/current/current-temperature-high-low.dialog b/locale/pl-pl/dialog/current/current-temperature-high-low.dialog new file mode 100644 index 00000000..6686fa9e --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-high-low.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Dzisiejsza prognoza przewiduje wyż {high_temperature} i niż {low_temperature}. diff --git a/locale/pl-pl/dialog/current/current-temperature-local.dialog b/locale/pl-pl/dialog/current/current-temperature-local.dialog new file mode 100644 index 00000000..40e13ddd --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Obecnie jest 0 stopni. +W tej chwili jest 0 stopni. +Obecnie jest {temperature} stopni {temperature_unit}. diff --git a/locale/pl-pl/dialog/current/current-temperature-location.dialog b/locale/pl-pl/dialog/current/current-temperature-location.dialog new file mode 100644 index 00000000..11b4266b --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Obecnie jest {temperature} stopni w {location}. +Obecnie jest {temperature} stopni {temperature_unit} w {location}. +W tej chwili jest {temperature} stopni w {location}. diff --git a/locale/pl-pl/dialog/current/current-temperature-low-local.dialog b/locale/pl-pl/dialog/current/current-temperature-low-local.dialog new file mode 100644 index 00000000..41eb59bb --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-low-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Dziś temperatura spadnie do 0 stopni. +Oczekuje się najniższego poziomu {temperature} stopni {temperature_unit}. +Można spodziewać się najniższego poziomu {temperature} stopni. diff --git a/locale/pl-pl/dialog/current/current-temperature-low-location.dialog b/locale/pl-pl/dialog/current/current-temperature-low-location.dialog new file mode 100644 index 00000000..a673e300 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-temperature-low-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Dziś temperatura spadnie do {temperature} stopni {temperature_unit} w {location}. +Temperatury mogą być tak niskie jak {temperature} stopni w {location}. diff --git a/locale/pl-pl/dialog/current/current-weather-local.dialog b/locale/pl-pl/dialog/current/current-weather-local.dialog new file mode 100644 index 00000000..4260dbd1 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-weather-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +W tej chwili jest {condition} i {temperature} stopni. +Obecnie jest {condition} i {temperature} stopni {temperature_unit}. +Obecnie jest {condition} i {temperature} stopni. diff --git a/locale/pl-pl/dialog/current/current-weather-location.dialog b/locale/pl-pl/dialog/current/current-weather-location.dialog new file mode 100644 index 00000000..cebb2690 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-weather-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +W tej chwili jest {condition} i {temperature} stopni w {location}. +Obecnie jest {condition} i {temperature} stopni {temperature_unit} w {location}. +{location} ma {condition} i obecnie ma {temperature} stopnie. diff --git a/locale/pl-pl/dialog/current/current-wind-light-local.dialog b/locale/pl-pl/dialog/current/current-wind-light-local.dialog new file mode 100644 index 00000000..0e9990ed --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-light-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Dziś wieje lekki wiatr z {direction} na {speed} {speed_unit} +Wiatr jest słaby przy {speed} {speed_unit} z {direction} diff --git a/locale/pl-pl/dialog/current/current-wind-light-location.dialog b/locale/pl-pl/dialog/current/current-wind-light-location.dialog new file mode 100644 index 00000000..30464625 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-light-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Wiatr jest słaby w {location} przy {speed} {speed_unit} od {direction} +W {location} dzisiaj jest lekki wiatr z {direction} na {speed} {speed_unit} diff --git a/locale/pl-pl/dialog/current/current-wind-moderate-local.dialog b/locale/pl-pl/dialog/current/current-wind-moderate-local.dialog new file mode 100644 index 00000000..fdff920f --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-moderate-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Obecnie wiatr jest umiarkowany {speed} {speed_unit} z {direction} +Dziś jest trochę wietrznie, obecnie {speed} {speed_unit} diff --git a/locale/pl-pl/dialog/current/current-wind-moderate-location.dialog b/locale/pl-pl/dialog/current/current-wind-moderate-location.dialog new file mode 100644 index 00000000..77297814 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-moderate-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} jest dziś trochę wietrznie, obecnie {speed} {speed_unit} +Obecnie wiatr jest umiarkowany {speed} {speed_unit} z {direction} w {location} diff --git a/locale/pl-pl/dialog/current/current-wind-strong-local.dialog b/locale/pl-pl/dialog/current/current-wind-strong-local.dialog new file mode 100644 index 00000000..72008fbf --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-strong-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Obecnie wiatr wieje z {direction} na {speed} {speed_unit}, może dobrze będzie zostać dziś w środku +Wiatr jest bardzo silny od {direction} dzisiaj, {speed} {speed_unit} +Dziś jest bardzo wietrznie, {speed} {speed_unit} diff --git a/locale/pl-pl/dialog/current/current-wind-strong-location.dialog b/locale/pl-pl/dialog/current/current-wind-strong-location.dialog new file mode 100644 index 00000000..c71c8c30 --- /dev/null +++ b/locale/pl-pl/dialog/current/current-wind-strong-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Obecnie wiatr wieje z {direction} na {speed} {speed_unit} w {location}, dobry dzień na pozostanie w środku +{location} będzie miał dziś silny wiatr, {speed} {speed_unit} +Wiatr jest bardzo silny od {direction} w {location} dzisiaj, {speed} {speed_unit} diff --git a/locale/pl-pl/dialog/current/currrent-clouds-alternative-local.dialog b/locale/pl-pl/dialog/current/currrent-clouds-alternative-local.dialog new file mode 100644 index 00000000..bfb00bf5 --- /dev/null +++ b/locale/pl-pl/dialog/current/currrent-clouds-alternative-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Nie wygląda na to, są szanse, że dzisiaj będzie {condition} +Nie powinno być pochmurno, wygląda na to, że dziś będzie {condition} +Nie, prognoza przewiduje dziś {condition} diff --git a/locale/pl-pl/dialog/daily/daily-condition-expected-local.dialog b/locale/pl-pl/dialog/daily/daily-condition-expected-local.dialog new file mode 100644 index 00000000..e301d787 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-condition-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Tak, oczekuj {condition} {day} +Tak, prognoza przewiduje {condition} {day} diff --git a/locale/pl-pl/dialog/daily/daily-condition-expected-location.dialog b/locale/pl-pl/dialog/daily/daily-condition-expected-location.dialog new file mode 100644 index 00000000..82922fb8 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-condition-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Tak, prognoza przewiduje {condition} w {location} {day} +Tak, oczekuj {condition} w {location} {day} diff --git a/locale/pl-pl/dialog/daily/daily-condition-not-expected-local.dialog b/locale/pl-pl/dialog/daily/daily-condition-not-expected-local.dialog new file mode 100644 index 00000000..04d0be89 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-condition-not-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Nie, {day} prognoza przewiduje {condition} +Nie, {condition} jest oczekiwane {day} diff --git a/locale/pl-pl/dialog/daily/daily-condition-not-expected-location.dialog b/locale/pl-pl/dialog/daily/daily-condition-not-expected-location.dialog new file mode 100644 index 00000000..99eb99e4 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-condition-not-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Nie, {day} prognoza przewiduje {condition} w {location} +Nie, w {location} {condition} oczekuje się {day} diff --git a/locale/pl-pl/dialog/daily/daily-humidity-local.dialog b/locale/pl-pl/dialog/daily/daily-humidity-local.dialog new file mode 100644 index 00000000..99b7670a --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-humidity-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} prognoza przewiduje wilgotność {percent} +Wilgotność {day} będzie równa {percent} diff --git a/locale/pl-pl/dialog/daily/daily-humidity-location.dialog b/locale/pl-pl/dialog/daily/daily-humidity-location.dialog new file mode 100644 index 00000000..75649079 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-humidity-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} prognoza w {location} przewiduje wilgotność {percent} +Wilgotność w {location} {day} będzie równa {percent} diff --git a/locale/pl-pl/dialog/daily/daily-precipitation-next-local.dialog b/locale/pl-pl/dialog/daily/daily-precipitation-next-local.dialog new file mode 100644 index 00000000..69953338 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-precipitation-next-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Istnieje {percent} szans na {precipitation} {day} +Prognoza przewiduje {percent} szans na {precipitation} {day} diff --git a/locale/pl-pl/dialog/daily/daily-precipitation-next-location.dialog b/locale/pl-pl/dialog/daily/daily-precipitation-next-location.dialog new file mode 100644 index 00000000..4930ac14 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-precipitation-next-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} istnieje {percent} szansa na {precipitation} {day} +Prognoza przewiduje {percent} szans na {precipitation} w {location} {day} diff --git a/locale/pl-pl/dialog/daily/daily-precipitation-next-none-local.dialog b/locale/pl-pl/dialog/daily/daily-precipitation-next-none-local.dialog new file mode 100644 index 00000000..528bca77 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-precipitation-next-none-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Prognoza nie przewiduje żadnych opadów w ciągu najbliższych 7 dni +W ciągu najbliższych 7 dni nie przewiduje się żadnych. diff --git a/locale/pl-pl/dialog/daily/daily-precipitation-next-none-location.dialog b/locale/pl-pl/dialog/daily/daily-precipitation-next-none-location.dialog new file mode 100644 index 00000000..b75e523e --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-precipitation-next-none-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} żaden nie jest prognozowany +Prognoza nie przewiduje żadnych opadów w ciągu najbliższych siedmiu dni w {location} diff --git a/locale/pl-pl/dialog/daily/daily-sunrise-local.dialog b/locale/pl-pl/dialog/daily/daily-sunrise-local.dialog new file mode 100644 index 00000000..6923f8b3 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-sunrise-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +słońce wzejdzie o {time} {day} +{day} słońce wzejdzie o {time} +Wschód słońca będzie o {time} {day} diff --git a/locale/pl-pl/dialog/daily/daily-sunrise-location.dialog b/locale/pl-pl/dialog/daily/daily-sunrise-location.dialog new file mode 100644 index 00000000..da2a648b --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-sunrise-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +w {location} wschód słońca będzie w {time} {day} +słońce wzejdzie o {time} {day} w {location} +{day} słońce wzejdzie o {time} w {location} diff --git a/locale/pl-pl/dialog/daily/daily-sunset-local.dialog b/locale/pl-pl/dialog/daily/daily-sunset-local.dialog new file mode 100644 index 00000000..c7f078eb --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-sunset-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +zachód słońca będzie na {time} {day} +słońce zajdzie w {time} {day} +{day} słońce zajdzie o {time} diff --git a/locale/pl-pl/dialog/daily/daily-sunset-location.dialog b/locale/pl-pl/dialog/daily/daily-sunset-location.dialog new file mode 100644 index 00000000..a78b4408 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-sunset-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +słońce zajdzie w {time} {day} w {location} +w {location} zachód słońca będzie w {time} {day} +{day} słońce zajdzie o {time} w {location} diff --git a/locale/pl-pl/dialog/daily/daily-temperature-high-local.dialog b/locale/pl-pl/dialog/daily/daily-temperature-high-local.dialog new file mode 100644 index 00000000..01f908b6 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-high-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} temperatura wyniesie aż {temperature} stopni. +{day} będzie tak wysoka jak {temperature} diff --git a/locale/pl-pl/dialog/daily/daily-temperature-high-location.dialog b/locale/pl-pl/dialog/daily/daily-temperature-high-location.dialog new file mode 100644 index 00000000..bc128e22 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-high-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} {day} będzie to nawet {temperature} stopni. +{location} będzie mieć wysoką wartość {temperature} stopni {day} diff --git a/locale/pl-pl/dialog/daily/daily-temperature-local.dialog b/locale/pl-pl/dialog/daily/daily-temperature-local.dialog new file mode 100644 index 00000000..2e5ecd52 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} to będzie {temperature} +{day} temperatura będzie wynosić {temperature} stopni. diff --git a/locale/pl-pl/dialog/daily/daily-temperature-location.dialog b/locale/pl-pl/dialog/daily/daily-temperature-location.dialog new file mode 100644 index 00000000..3e9eb096 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day}, {location} będą miały temperaturę {temperature} stopni +{day} to będzie {temperature} stopni w {location} diff --git a/locale/pl-pl/dialog/daily/daily-temperature-low-local.dialog b/locale/pl-pl/dialog/daily/daily-temperature-low-local.dialog new file mode 100644 index 00000000..e23a9048 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-low-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} będzie tak niskie jak {temperature} +{day} temperatura będzie tak niska jak {temperature} stopni. diff --git a/locale/pl-pl/dialog/daily/daily-temperature-low-location.dialog b/locale/pl-pl/dialog/daily/daily-temperature-low-location.dialog new file mode 100644 index 00000000..b7ed30ee --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-temperature-low-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +{day} będzie tak niski jak {temperature} stopni w {location} +{day}, {location} będą tak niskie jak {temperature} stopnie diff --git a/locale/pl-pl/dialog/daily/daily-weather-local.dialog b/locale/pl-pl/dialog/daily/daily-weather-local.dialog new file mode 100644 index 00000000..e68fa19f --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-weather-local.dialog @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +{day} oczekuje {condition}, z maksimum {high_temperature} i minimum {low_temperature} +{day} najwyższy będzie {high_temperature}, a najniższy {low_temperature}, z {condition} +{day} to będzie {condition} z maksimum {high_temperature} i minimum {low_temperature}. +Prognoza {day} to {condition} z wyżem {high_temperature} i niżem {low_temperature} +Oczekiwania {condition}, z maksimum {high_temperature} i minimum {low_temperature} {day} diff --git a/locale/pl-pl/dialog/daily/daily-weather-location.dialog b/locale/pl-pl/dialog/daily/daily-weather-location.dialog new file mode 100644 index 00000000..c0e6a9e7 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-weather-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +{day}, {location} będzie miał maksimum {high_temperature} i minimum {low_temperature}, a {condition} +{day} to będzie {condition}, z wyżem {high_temperature} i niżem {low_temperature} w {location} +Prognoza {day} to {high_temperature} dla maksimum i {low_temperature} dla minimum w {location} diff --git a/locale/pl-pl/dialog/daily/daily-wind-light-local.dialog b/locale/pl-pl/dialog/daily/daily-wind-light-local.dialog new file mode 100644 index 00000000..feef92b8 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-light-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Będzie wiał lekki wiatr od {direction} {day} do {speed} {speed_unit}. +Nie będzie zbyt wietrznie {day} diff --git a/locale/pl-pl/dialog/daily/daily-wind-light-location.dialog b/locale/pl-pl/dialog/daily/daily-wind-light-location.dialog new file mode 100644 index 00000000..c3c54f39 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-light-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {direction} w {location} {day} i {speed} {speed_unit} będzie wiał lekki wiatr. +W {location} {day} nie będzie zbyt wietrznie. diff --git a/locale/pl-pl/dialog/daily/daily-wind-moderate-local.dialog b/locale/pl-pl/dialog/daily/daily-wind-moderate-local.dialog new file mode 100644 index 00000000..706a6bf0 --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-moderate-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Prognoza przewiduje umiarkowany wiatr z {direction} na {speed} {speed_unit} {day} +Wiatr będzie umiarkowany, około {speed} {speed_unit} z {direction} {day} +Można spodziewać się umiarkowanego wiatru o sile około {speed} {speed_unit} {day} diff --git a/locale/pl-pl/dialog/daily/daily-wind-moderate-location.dialog b/locale/pl-pl/dialog/daily/daily-wind-moderate-location.dialog new file mode 100644 index 00000000..4447674a --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-moderate-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +Możesz spodziewać się wiatru o sile około {speed} {speed_unit} w {location} {day} +Prognoza {day} przewiduje, że {location} będzie miał umiarkowany wiatr z {direction} {speed} {speed_unit} +Wiatr będzie umiarkowany w {location} {day}, około {speed} {speed_unit} z {direction} diff --git a/locale/pl-pl/dialog/daily/daily-wind-strong-local.dialog b/locale/pl-pl/dialog/daily/daily-wind-strong-local.dialog new file mode 100644 index 00000000..2fa2129f --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-strong-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Będzie wiał silny wiatr od {direction} z {speed} {speed_unit} {day} +Wiatr będzie tak silny jak {speed} {speed_unit} {day} diff --git a/locale/pl-pl/dialog/daily/daily-wind-strong-location.dialog b/locale/pl-pl/dialog/daily/daily-wind-strong-location.dialog new file mode 100644 index 00000000..44da26ea --- /dev/null +++ b/locale/pl-pl/dialog/daily/daily-wind-strong-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Będzie wiał silny wiatr od {direction} z {speed} {speed_unit} w {location} {day} +Wiatr będzie tak silny jak {speed} {speed_unit} w {location} {day} diff --git a/locale/pl-pl/dialog/direction/east.dialog b/locale/pl-pl/dialog/direction/east.dialog new file mode 100644 index 00000000..4b3330d4 --- /dev/null +++ b/locale/pl-pl/dialog/direction/east.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +wschód diff --git a/locale/pl-pl/dialog/direction/north.dialog b/locale/pl-pl/dialog/direction/north.dialog new file mode 100644 index 00000000..79c52718 --- /dev/null +++ b/locale/pl-pl/dialog/direction/north.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +północ diff --git a/locale/pl-pl/dialog/direction/northeast.dialog b/locale/pl-pl/dialog/direction/northeast.dialog new file mode 100644 index 00000000..e3d93379 --- /dev/null +++ b/locale/pl-pl/dialog/direction/northeast.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +północny wschód diff --git a/locale/pl-pl/dialog/direction/northwest.dialog b/locale/pl-pl/dialog/direction/northwest.dialog new file mode 100644 index 00000000..e3fbc9df --- /dev/null +++ b/locale/pl-pl/dialog/direction/northwest.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +północny zachód diff --git a/locale/pl-pl/dialog/direction/south.dialog b/locale/pl-pl/dialog/direction/south.dialog new file mode 100644 index 00000000..fa406e3f --- /dev/null +++ b/locale/pl-pl/dialog/direction/south.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +południe diff --git a/locale/pl-pl/dialog/direction/southeast.dialog b/locale/pl-pl/dialog/direction/southeast.dialog new file mode 100644 index 00000000..a0a8d877 --- /dev/null +++ b/locale/pl-pl/dialog/direction/southeast.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +południowy wschód diff --git a/locale/pl-pl/dialog/direction/southwest.dialog b/locale/pl-pl/dialog/direction/southwest.dialog new file mode 100644 index 00000000..6a50dd00 --- /dev/null +++ b/locale/pl-pl/dialog/direction/southwest.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +południowy zachód diff --git a/locale/pl-pl/dialog/direction/west.dialog b/locale/pl-pl/dialog/direction/west.dialog new file mode 100644 index 00000000..cabbc5e3 --- /dev/null +++ b/locale/pl-pl/dialog/direction/west.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +zachód diff --git a/locale/pl-pl/dialog/error/cant-get-forecast.dialog b/locale/pl-pl/dialog/error/cant-get-forecast.dialog new file mode 100644 index 00000000..2e6443a9 --- /dev/null +++ b/locale/pl-pl/dialog/error/cant-get-forecast.dialog @@ -0,0 +1,32 @@ +# auto translated from en-us to pl-pl +Prognozy pogody są obecnie niedostępne. +Przykro mi. Obecnie nie mam dostępu do raportów pogodowych. +Przykro mi. W tej chwili nie mam dostępu do prognoz pogody. +Nie mam teraz dostępu do prognozy pogody. +Przykro mi. Nie mam teraz dostępu do prognozy pogody. +Obecnie nie mam dostępu do prognoz pogody. +Obecnie nie mam dostępu do raportów pogodowych. +Przykro mi. Obecnie nie mogę uzyskać prognozy pogody. +Prognozy pogody nie są obecnie dostępne. +Przykro mi. Nie mogę teraz uzyskać prognozy pogody. +Nie mogę teraz odbierać prognoz pogody. +Przepraszam. Nie mam teraz dostępu do raportów pogodowych. +Na razie nie mam dostępu do prognoz pogody. +Przepraszam. Nie mogę teraz uzyskać prognozy pogody. +Obecnie nie mogę uzyskać prognozy pogody. +Przepraszam. Obecnie nie mam dostępu do prognoz pogody. +Przykro mi. Nie mogę teraz odbierać raportów pogodowych. +Raporty pogodowe są obecnie niedostępne. +Przykro mi. Obecnie nie mogę uzyskać informacji o pogodzie. +Przykro mi. Obecnie nie mam dostępu do prognoz pogody. +Przykro mi. Nie mam teraz dostępu do raportów pogodowych. +Nie mam teraz dostępu do prognoz pogody. +Przepraszam. Obecnie nie mogę uzyskać prognozy pogody. +Przepraszam. Nie mam teraz dostępu do prognoz pogody. +Przepraszam. Obecnie nie mam dostępu do raportów pogodowych. +Na razie nie mogę odbierać prognoz pogody. +Przykro mi. Nie mam teraz dostępu do prognoz pogody. +Raporty pogodowe nie są obecnie dostępne. +Przepraszam. Obecnie nie mogę uzyskać informacji o pogodzie. +Przepraszam. Nie mogę teraz odbierać raportów pogodowych. +Przepraszam. Nie mam teraz dostępu do prognozy pogody. diff --git a/locale/pl-pl/dialog/error/forty-eight-hours-available.dialog b/locale/pl-pl/dialog/error/forty-eight-hours-available.dialog new file mode 100644 index 00000000..e5c890e6 --- /dev/null +++ b/locale/pl-pl/dialog/error/forty-eight-hours-available.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Niestety, mam tylko 48 godzin danych prognozy godzinowej diff --git a/locale/pl-pl/dialog/error/location-not-found.dialog b/locale/pl-pl/dialog/error/location-not-found.dialog new file mode 100644 index 00000000..7f2e57fd --- /dev/null +++ b/locale/pl-pl/dialog/error/location-not-found.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Nie mogę znaleźć miasta o nazwie {location}. Spróbuj ponownie +Miasto {location} nie znajduje się w moich bankach pamięci. Spróbuj ponownie diff --git a/locale/pl-pl/dialog/error/no-forecast.dialog b/locale/pl-pl/dialog/error/no-forecast.dialog new file mode 100644 index 00000000..482df1f7 --- /dev/null +++ b/locale/pl-pl/dialog/error/no-forecast.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Przepraszam, nie znam prognozy {day} +Nie mam prognozy {day} diff --git a/locale/pl-pl/dialog/error/seven-days-available.dialog b/locale/pl-pl/dialog/error/seven-days-available.dialog new file mode 100644 index 00000000..9b3db3cd --- /dev/null +++ b/locale/pl-pl/dialog/error/seven-days-available.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Dostępne są prognozy pogody na siedem dni. +Mogę podać prognozę na najbliższe siedem dni. diff --git a/locale/pl-pl/dialog/hourly/hourly-condition-expected-local.dialog b/locale/pl-pl/dialog/hourly/hourly-condition-expected-local.dialog new file mode 100644 index 00000000..8f33dafa --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-condition-expected-local.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Tak, prognoza {time} przewiduje {condition} diff --git a/locale/pl-pl/dialog/hourly/hourly-condition-expected-location.dialog b/locale/pl-pl/dialog/hourly/hourly-condition-expected-location.dialog new file mode 100644 index 00000000..038f648e --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-condition-expected-location.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +Tak, to będzie {condition} to {time} diff --git a/locale/pl-pl/dialog/hourly/hourly-precipitation-next-local.dialog b/locale/pl-pl/dialog/hourly/hourly-precipitation-next-local.dialog new file mode 100644 index 00000000..953fb592 --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-precipitation-next-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Istnieje {percent} szans na {precipitation} przy {time} +Prognoza przewiduje {percent} szans na {precipitation} przy {time} diff --git a/locale/pl-pl/dialog/hourly/hourly-precipitation-next-location.dialog b/locale/pl-pl/dialog/hourly/hourly-precipitation-next-location.dialog new file mode 100644 index 00000000..1977d2d5 --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-precipitation-next-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} istnieje {percent} szansa na {precipitation} przy {time} +Prognoza przewiduje {percent} szans na {precipitation} w {location} przy {time} diff --git a/locale/pl-pl/dialog/hourly/hourly-temperature-local.dialog b/locale/pl-pl/dialog/hourly/hourly-temperature-local.dialog new file mode 100644 index 00000000..3e2a7888 --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-temperature-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {time} będzie to {temperature} stopni +Będzie to około {temperature} stopni w {time} diff --git a/locale/pl-pl/dialog/hourly/hourly-temperature-location.dialog b/locale/pl-pl/dialog/hourly/hourly-temperature-location.dialog new file mode 100644 index 00000000..c2560a68 --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-temperature-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +W {location} będzie to około {temperature} stopnia w {time} +W {time} będzie to {temperature} stopni w {location} diff --git a/locale/pl-pl/dialog/hourly/hourly-weather-local.dialog b/locale/pl-pl/dialog/hourly/hourly-weather-local.dialog new file mode 100644 index 00000000..afdb92f5 --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-weather-local.dialog @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +Będzie {condition}, z temperaturami zbliżonymi do {temperature} +Około {temperature} stopni z {condition} +Później będzie to {condition} i {temperature} stopni +Później będzie {condition} i około {temperature} stopni diff --git a/locale/pl-pl/dialog/hourly/hourly-weather-location.dialog b/locale/pl-pl/dialog/hourly/hourly-weather-location.dialog new file mode 100644 index 00000000..d25a1a4f --- /dev/null +++ b/locale/pl-pl/dialog/hourly/hourly-weather-location.dialog @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +{location} będzie wynosić około {temperature} stopnia z {condition} +Później będzie {condition} w {location}, z temperaturami w okolicach {temperature} +{location} będzie wokół {temperature} z {condition} +Pogoda {location} w ciągu najbliższych kilku godzin będzie {condition} i {temperature} stopnie diff --git a/locale/pl-pl/dialog/percentage-number.dialog b/locale/pl-pl/dialog/percentage-number.dialog new file mode 100644 index 00000000..e28237c7 --- /dev/null +++ b/locale/pl-pl/dialog/percentage-number.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +{number} procent diff --git a/locale/pl-pl/dialog/unit/celsius.dialog b/locale/pl-pl/dialog/unit/celsius.dialog new file mode 100644 index 00000000..ea1e5ec4 --- /dev/null +++ b/locale/pl-pl/dialog/unit/celsius.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +celsjusz diff --git a/locale/pl-pl/dialog/unit/fahrenheit.dialog b/locale/pl-pl/dialog/unit/fahrenheit.dialog new file mode 100644 index 00000000..9dc203b4 --- /dev/null +++ b/locale/pl-pl/dialog/unit/fahrenheit.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +fahrenheit diff --git a/locale/pl-pl/dialog/unit/meters per second.dialog b/locale/pl-pl/dialog/unit/meters per second.dialog new file mode 100644 index 00000000..fe8608a3 --- /dev/null +++ b/locale/pl-pl/dialog/unit/meters per second.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +metrów na sekundę diff --git a/locale/pl-pl/dialog/unit/miles per hour.dialog b/locale/pl-pl/dialog/unit/miles per hour.dialog new file mode 100644 index 00000000..8a7f8cc9 --- /dev/null +++ b/locale/pl-pl/dialog/unit/miles per hour.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +mil na godzinę diff --git a/locale/pl-pl/dialog/weekly/weekly-condition.dialog b/locale/pl-pl/dialog/weekly/weekly-condition.dialog new file mode 100644 index 00000000..ce33eba7 --- /dev/null +++ b/locale/pl-pl/dialog/weekly/weekly-condition.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +Na {days} oczekuj {condition} +Prognoza przewiduje {condition} na {days} diff --git a/locale/pl-pl/dialog/weekly/weekly-temperature.dialog b/locale/pl-pl/dialog/weekly/weekly-temperature.dialog new file mode 100644 index 00000000..660e595d --- /dev/null +++ b/locale/pl-pl/dialog/weekly/weekly-temperature.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +dołki będą między {low_min} i {low_max}, a szczyty między {high_min} i {high_max} diff --git a/locale/pl-pl/regex/location.rx b/locale/pl-pl/regex/location.rx new file mode 100644 index 00000000..9515550d --- /dev/null +++ b/locale/pl-pl/regex/location.rx @@ -0,0 +1 @@ +.*\b(w|dla) (?P(?!\bcelsjusz\b|\bfahrenheit\b) *.+) \ No newline at end of file diff --git a/locale/pl-pl/vocabulary/condition/clear.voc b/locale/pl-pl/vocabulary/condition/clear.voc new file mode 100644 index 00000000..51cc5a39 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/clear.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +czysty +dobra pogoda +słońce +ładna pogoda +słoneczny diff --git a/locale/pl-pl/vocabulary/condition/clouds.voc b/locale/pl-pl/vocabulary/condition/clouds.voc new file mode 100644 index 00000000..440ee867 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/clouds.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +kilka chmur +chmury +rozproszone chmury +pochmurny +chmura diff --git a/locale/pl-pl/vocabulary/condition/do-i-need-an-umbrella.intent b/locale/pl-pl/vocabulary/condition/do-i-need-an-umbrella.intent new file mode 100644 index 00000000..fbe1f7e1 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/do-i-need-an-umbrella.intent @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +Czy potrzebuję parasola? +Czy powinienem zabrać parasol? +Czy powinienem zabrać płaszcz przeciwdeszczowy? +Czy potrzebuję kurtki przeciwdeszczowej? diff --git a/locale/pl-pl/vocabulary/condition/fog.voc b/locale/pl-pl/vocabulary/condition/fog.voc new file mode 100644 index 00000000..9265c683 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/fog.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +mgła +mglisty diff --git a/locale/pl-pl/vocabulary/condition/humidity.voc b/locale/pl-pl/vocabulary/condition/humidity.voc new file mode 100644 index 00000000..3a0be26a --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/humidity.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +parny +wilgotny +wilgotność diff --git a/locale/pl-pl/vocabulary/condition/precipitation.voc b/locale/pl-pl/vocabulary/condition/precipitation.voc new file mode 100644 index 00000000..eea75698 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/precipitation.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +deszcz +mżawka +śnieżny +śnieg +opady diff --git a/locale/pl-pl/vocabulary/condition/rain.voc b/locale/pl-pl/vocabulary/condition/rain.voc new file mode 100644 index 00000000..f85329a7 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/rain.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +mżawka +opady +deszcz +lekki deszcz diff --git a/locale/pl-pl/vocabulary/condition/snow.voc b/locale/pl-pl/vocabulary/condition/snow.voc new file mode 100644 index 00000000..11e062fb --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/snow.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +śnieg +padający śnieg diff --git a/locale/pl-pl/vocabulary/condition/thunderstorm.voc b/locale/pl-pl/vocabulary/condition/thunderstorm.voc new file mode 100644 index 00000000..4bca6373 --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/thunderstorm.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +szturm +burzliwy +burza diff --git a/locale/pl-pl/vocabulary/condition/windy.voc b/locale/pl-pl/vocabulary/condition/windy.voc new file mode 100644 index 00000000..88e5fe0f --- /dev/null +++ b/locale/pl-pl/vocabulary/condition/windy.voc @@ -0,0 +1,8 @@ +# auto translated from en-us to pl-pl +wiatry +prędkość wiatru +wietrzny +wiatr +dmuchanie +przewiewny +porywisty diff --git a/locale/pl-pl/vocabulary/date-time/couple.voc b/locale/pl-pl/vocabulary/date-time/couple.voc new file mode 100644 index 00000000..01a745b9 --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/couple.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +para diff --git a/locale/pl-pl/vocabulary/date-time/few.voc b/locale/pl-pl/vocabulary/date-time/few.voc new file mode 100644 index 00000000..b39dcb8c --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/few.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +niewiele diff --git a/locale/pl-pl/vocabulary/date-time/later.voc b/locale/pl-pl/vocabulary/date-time/later.voc new file mode 100644 index 00000000..b4f8a00f --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/later.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to pl-pl +następne godziny +później +kilka godzin +kilka następnych godzin +następne kilka godzin +następna godzina diff --git a/locale/pl-pl/vocabulary/date-time/next.voc b/locale/pl-pl/vocabulary/date-time/next.voc new file mode 100644 index 00000000..800500ca --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/next.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +następny +ponownie diff --git a/locale/pl-pl/vocabulary/date-time/now.voc b/locale/pl-pl/vocabulary/date-time/now.voc new file mode 100644 index 00000000..620ad14a --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/now.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +bieżący +teraz diff --git a/locale/pl-pl/vocabulary/date-time/number-days.voc b/locale/pl-pl/vocabulary/date-time/number-days.voc new file mode 100644 index 00000000..d0ea924c --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/number-days.voc @@ -0,0 +1,32 @@ +# auto translated from en-us to pl-pl +kilka następnych dni +cztery dni +trzy dni +2 dni +pięć dni +następne 4 dni +6 dni +następne 5 dni +sześciodniowy +dwa dni +następne cztery dni +pięciodniowy +3 dni +4 dni +następne pięć dni +dwudniowy +4 dzień +czterodniowy +następne 6 dni +2 dzień +3 dzień +5 dzień +trzydniowy +6 dzień +następne trzy dni +następne 3 dni +następne sześć dni +następne 2 dni +5 dni +następne dwa dni +sześć dni diff --git a/locale/pl-pl/vocabulary/date-time/relative-day.voc b/locale/pl-pl/vocabulary/date-time/relative-day.voc new file mode 100644 index 00000000..b01a7245 --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/relative-day.voc @@ -0,0 +1,20 @@ +# auto translated from en-us to pl-pl +wczorajszy +dni +w czwartek +piątek +niedziela +w piątek +wtorek +sobota +jutrzejszy +w poniedziałek +w środę +w sobotę +poniedziałek +w niedzielę +jutro +czwartek +środa +we wtorek +wczoraj diff --git a/locale/pl-pl/vocabulary/date-time/relative-time.voc b/locale/pl-pl/vocabulary/date-time/relative-time.voc new file mode 100644 index 00000000..13e7f91a --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/relative-time.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to pl-pl +poranek +dziś wieczorem +popołudnie +wieczór +noc +z dnia na dzień diff --git a/locale/pl-pl/vocabulary/date-time/today.voc b/locale/pl-pl/vocabulary/date-time/today.voc new file mode 100644 index 00000000..767447f2 --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/today.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +dzisiejszy +dzisiaj diff --git a/locale/pl-pl/vocabulary/date-time/week.voc b/locale/pl-pl/vocabulary/date-time/week.voc new file mode 100644 index 00000000..0e0ff8e6 --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/week.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +tygodnik +tydzień diff --git a/locale/pl-pl/vocabulary/date-time/weekend.voc b/locale/pl-pl/vocabulary/date-time/weekend.voc new file mode 100644 index 00000000..8322e71b --- /dev/null +++ b/locale/pl-pl/vocabulary/date-time/weekend.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +weekend diff --git a/locale/pl-pl/vocabulary/forecast.voc b/locale/pl-pl/vocabulary/forecast.voc new file mode 100644 index 00000000..4cbef298 --- /dev/null +++ b/locale/pl-pl/vocabulary/forecast.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +prognoza diff --git a/locale/pl-pl/vocabulary/like.voc b/locale/pl-pl/vocabulary/like.voc new file mode 100644 index 00000000..f09d812d --- /dev/null +++ b/locale/pl-pl/vocabulary/like.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +jak diff --git a/locale/pl-pl/vocabulary/location.voc b/locale/pl-pl/vocabulary/location.voc new file mode 100644 index 00000000..06d949ce --- /dev/null +++ b/locale/pl-pl/vocabulary/location.voc @@ -0,0 +1,16 @@ +# auto translated from en-us to pl-pl +Chicago +portland oregon|portland +san diego +houston +kansas city +Seattle +Boston +spokane +san francisco +atlanta +Lawrence Kansas +San Jose +austin +Berlin +Los Angeles, Kalifornia|los angeles|la diff --git a/locale/pl-pl/vocabulary/outside.voc b/locale/pl-pl/vocabulary/outside.voc new file mode 100644 index 00000000..b1e0c370 --- /dev/null +++ b/locale/pl-pl/vocabulary/outside.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +na zewnątrz diff --git a/locale/pl-pl/vocabulary/query/confirm-query-current.voc b/locale/pl-pl/vocabulary/query/confirm-query-current.voc new file mode 100644 index 00000000..6d4b288c --- /dev/null +++ b/locale/pl-pl/vocabulary/query/confirm-query-current.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +jest tam +jest diff --git a/locale/pl-pl/vocabulary/query/confirm-query-future.voc b/locale/pl-pl/vocabulary/query/confirm-query-future.voc new file mode 100644 index 00000000..0549dd41 --- /dev/null +++ b/locale/pl-pl/vocabulary/query/confirm-query-future.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +będzie tam +czy dostanie +czy to będzie +będzie +czy będzie diff --git a/locale/pl-pl/vocabulary/query/confirm-query.voc b/locale/pl-pl/vocabulary/query/confirm-query.voc new file mode 100644 index 00000000..e0c958ab --- /dev/null +++ b/locale/pl-pl/vocabulary/query/confirm-query.voc @@ -0,0 +1,9 @@ +# auto translated from en-us to pl-pl +będzie tam +czy będziemy +jest tam +jest +idąc do +będzie +czy będzie +czy mają diff --git a/locale/pl-pl/vocabulary/query/how.voc b/locale/pl-pl/vocabulary/query/how.voc new file mode 100644 index 00000000..f09d812d --- /dev/null +++ b/locale/pl-pl/vocabulary/query/how.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +jak diff --git a/locale/pl-pl/vocabulary/query/query.voc b/locale/pl-pl/vocabulary/query/query.voc new file mode 100644 index 00000000..45f7f238 --- /dev/null +++ b/locale/pl-pl/vocabulary/query/query.voc @@ -0,0 +1,10 @@ +# auto translated from en-us to pl-pl +powiedz mi +daj mi +powiedz nam +jak +opowiedz nam o +co to jest +co +opowiedz mi o +co będzie diff --git a/locale/pl-pl/vocabulary/query/when.voc b/locale/pl-pl/vocabulary/query/when.voc new file mode 100644 index 00000000..c9f016ea --- /dev/null +++ b/locale/pl-pl/vocabulary/query/when.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +kiedy będzie +która godzina +kiedy jest +kiedy diff --git a/locale/pl-pl/vocabulary/sunrise.voc b/locale/pl-pl/vocabulary/sunrise.voc new file mode 100644 index 00000000..fcb64e27 --- /dev/null +++ b/locale/pl-pl/vocabulary/sunrise.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to pl-pl +wschód słońca +świt +dzień przerwy diff --git a/locale/pl-pl/vocabulary/sunset.voc b/locale/pl-pl/vocabulary/sunset.voc new file mode 100644 index 00000000..f3d4b21a --- /dev/null +++ b/locale/pl-pl/vocabulary/sunset.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +zachód słońca +zmierzch diff --git a/locale/pl-pl/vocabulary/temperature/cold.voc b/locale/pl-pl/vocabulary/temperature/cold.voc new file mode 100644 index 00000000..7322a660 --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/cold.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +chłodny +zimno +fajny +zamrażanie diff --git a/locale/pl-pl/vocabulary/temperature/high.voc b/locale/pl-pl/vocabulary/temperature/high.voc new file mode 100644 index 00000000..2e65ae6d --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/high.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +wysoki +maks +maksimum +najwyższy diff --git a/locale/pl-pl/vocabulary/temperature/hot.voc b/locale/pl-pl/vocabulary/temperature/hot.voc new file mode 100644 index 00000000..15e010e2 --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/hot.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +ciepły +gorący diff --git a/locale/pl-pl/vocabulary/temperature/low.voc b/locale/pl-pl/vocabulary/temperature/low.voc new file mode 100644 index 00000000..7189cc1b --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/low.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to pl-pl +niski +min +minimum +najniższy diff --git a/locale/pl-pl/vocabulary/temperature/temperature.voc b/locale/pl-pl/vocabulary/temperature/temperature.voc new file mode 100644 index 00000000..9083cab3 --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/temperature.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +temperatura +temp diff --git a/locale/pl-pl/vocabulary/unit/fahrenheit.voc b/locale/pl-pl/vocabulary/unit/fahrenheit.voc new file mode 100644 index 00000000..9dc203b4 --- /dev/null +++ b/locale/pl-pl/vocabulary/unit/fahrenheit.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +fahrenheit diff --git a/locale/pl-pl/vocabulary/unit/unit.entity b/locale/pl-pl/vocabulary/unit/unit.entity new file mode 100644 index 00000000..45db19a7 --- /dev/null +++ b/locale/pl-pl/vocabulary/unit/unit.entity @@ -0,0 +1,2 @@ +fahrenheit +celsius diff --git a/locale/pl-pl/vocabulary/unit/unit.voc b/locale/pl-pl/vocabulary/unit/unit.voc new file mode 100644 index 00000000..fac89c98 --- /dev/null +++ b/locale/pl-pl/vocabulary/unit/unit.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to pl-pl +fahrenheit +celsjusz diff --git a/locale/pl-pl/vocabulary/weather.voc b/locale/pl-pl/vocabulary/weather.voc new file mode 100644 index 00000000..4911ead5 --- /dev/null +++ b/locale/pl-pl/vocabulary/weather.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to pl-pl +pogoda diff --git a/skill.json b/skill.json index d5f8d5aa..e0c66a01 100644 --- a/skill.json +++ b/skill.json @@ -1,6 +1,6 @@ { "title": "Weather", - "url": "https://github.com/NeonGeckoCom/skill-weather", + "url": "https://github.com/NeonDmitry/skill-weather", "summary": "Get current weather and forecast info.", "short_description": "Get current weather and forecast info.", "description": "This skill provides current weather information at different locations and forecasts up to 5 days. Use of this skill requires use of third-party APIs. If you do not have access to Neon API servers, you may access the Alpha Vantage API directly by providing a key in `~/owm.txt`. You can generate an Open Weather Map key [here](https://home.openweathermap.org/users/sign_up)", @@ -42,7 +42,7 @@ "reginaneon" ], "skillname": "skill-weather", - "authorname": "NeonGeckoCom", + "authorname": "NeonDmitry", "foldername": null, "troubleshooting": "Try asking for a different location or changing your default location by saying `Neon change my location to Seattle`." } \ No newline at end of file From 15c3374d46270fc38be430f4c395a0e25037eec0 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Thu, 20 Mar 2025 15:56:05 +0000 Subject: [PATCH 06/16] Increment Version to 3.0.1a3 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index eb071cd3..7ecf0558 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a2" +__version__ = "3.0.1a3" From d830f458a1f13fd8d5e703b4a0543c86fb3a5b43 Mon Sep 17 00:00:00 2001 From: NeonDmitry <109043283+NeonDmitry@users.noreply.github.com> Date: Thu, 20 Mar 2025 20:48:46 +0200 Subject: [PATCH 07/16] Ukrainian fix translation (#66) * Added Ukrainian * Added Regex and Vocabulary --- locale/uk-ua/dialog/and.dialog | 2 + .../uk-ua/dialog/condition/clear-sky.dialog | 2 + locale/uk-ua/dialog/condition/clear.dialog | 2 + locale/uk-ua/dialog/condition/clouds.dialog | 2 + locale/uk-ua/dialog/condition/humidity.dialog | 2 + locale/uk-ua/dialog/condition/rain.dialog | 2 + locale/uk-ua/dialog/condition/snow.dialog | 2 + .../dialog/condition/thunderstorm.dialog | 2 + .../current-condition-expected-local.dialog | 3 ++ ...current-condition-expected-location.dialog | 3 ++ ...urrent-condition-not-expected-local.dialog | 3 ++ ...ent-condition-not-expected-location.dialog | 3 ++ .../current/current-humidity-local.dialog | 2 + .../current/current-humidity-location.dialog | 2 + .../current-sunrise-future-local.dialog | 3 ++ .../current-sunrise-future-location.dialog | 3 ++ .../current/current-sunrise-past-local.dialog | 3 ++ .../current-sunrise-past-location.dialog | 3 ++ .../current-sunset-future-local.dialog | 4 ++ .../current-sunset-future-location.dialog | 4 ++ .../current/current-sunset-past-local.dialog | 4 ++ .../current-sunset-past-location.dialog | 4 ++ .../current-temperature-high-local.dialog | 4 ++ .../current-temperature-high-location.dialog | 4 ++ .../current-temperature-high-low.dialog | 2 + .../current/current-temperature-local.dialog | 4 ++ .../current-temperature-location.dialog | 4 ++ .../current-temperature-low-local.dialog | 4 ++ .../current-temperature-low-location.dialog | 3 ++ .../current/current-weather-local.dialog | 3 ++ .../current/current-weather-location.dialog | 4 ++ .../current/current-wind-light-local.dialog | 3 ++ .../current-wind-light-location.dialog | 3 ++ .../current-wind-moderate-local.dialog | 3 ++ .../current-wind-moderate-location.dialog | 3 ++ .../current/current-wind-strong-local.dialog | 4 ++ .../current-wind-strong-location.dialog | 4 ++ .../currrent-clouds-alternative-local.dialog | 4 ++ .../daily-condition-expected-local.dialog | 3 ++ .../daily-condition-expected-location.dialog | 3 ++ .../daily-condition-not-expected-local.dialog | 3 ++ ...ily-condition-not-expected-location.dialog | 3 ++ .../dialog/daily/daily-humidity-local.dialog | 3 ++ .../daily/daily-humidity-location.dialog | 3 ++ .../daily-precipitation-next-local.dialog | 3 ++ .../daily-precipitation-next-location.dialog | 3 ++ ...daily-precipitation-next-none-local.dialog | 3 ++ ...ly-precipitation-next-none-location.dialog | 3 ++ .../dialog/daily/daily-sunrise-local.dialog | 4 ++ .../daily/daily-sunrise-location.dialog | 4 ++ .../dialog/daily/daily-sunset-local.dialog | 4 ++ .../dialog/daily/daily-sunset-location.dialog | 4 ++ .../daily/daily-temperature-high-local.dialog | 3 ++ .../daily-temperature-high-location.dialog | 3 ++ .../daily/daily-temperature-local.dialog | 3 ++ .../daily/daily-temperature-location.dialog | 3 ++ .../daily/daily-temperature-low-local.dialog | 3 ++ .../daily-temperature-low-location.dialog | 3 ++ .../dialog/daily/daily-weather-local.dialog | 6 +++ .../daily/daily-weather-location.dialog | 4 ++ .../daily/daily-wind-light-local.dialog | 3 ++ .../daily/daily-wind-light-location.dialog | 3 ++ .../daily/daily-wind-moderate-local.dialog | 4 ++ .../daily/daily-wind-moderate-location.dialog | 4 ++ .../daily/daily-wind-strong-local.dialog | 3 ++ .../daily/daily-wind-strong-location.dialog | 3 ++ locale/uk-ua/dialog/direction/east.dialog | 2 + locale/uk-ua/dialog/direction/north.dialog | 2 + .../uk-ua/dialog/direction/northeast.dialog | 2 + .../uk-ua/dialog/direction/northwest.dialog | 2 + locale/uk-ua/dialog/direction/south.dialog | 2 + .../uk-ua/dialog/direction/southeast.dialog | 2 + .../uk-ua/dialog/direction/southwest.dialog | 2 + locale/uk-ua/dialog/direction/west.dialog | 2 + .../dialog/error/cant-get-forecast.dialog | 27 +++++++++++++ .../error/forty-eight-hours-available.dialog | 2 + .../dialog/error/location-not-found.dialog | 3 ++ locale/uk-ua/dialog/error/no-forecast.dialog | 3 ++ .../dialog/error/seven-days-available.dialog | 3 ++ .../hourly-condition-expected-local.dialog | 2 + .../hourly-condition-expected-location.dialog | 2 + .../hourly-precipitation-next-local.dialog | 3 ++ .../hourly-precipitation-next-location.dialog | 3 ++ .../hourly/hourly-temperature-local.dialog | 3 ++ .../hourly/hourly-temperature-location.dialog | 3 ++ .../dialog/hourly/hourly-weather-local.dialog | 5 +++ .../hourly/hourly-weather-location.dialog | 5 +++ locale/uk-ua/dialog/percentage-number.dialog | 2 + locale/uk-ua/dialog/unit/celsius.dialog | 2 + locale/uk-ua/dialog/unit/fahrenheit.dialog | 2 + .../dialog/unit/meters per second.dialog | 2 + .../uk-ua/dialog/unit/miles per hour.dialog | 2 + .../dialog/weekly/weekly-condition.dialog | 3 ++ .../dialog/weekly/weekly-temperature.dialog | 2 + locale/uk-ua/regex/location.rx | 1 + locale/uk-ua/vocabulary/condition/clear.voc | 5 +++ locale/uk-ua/vocabulary/condition/clouds.voc | 6 +++ .../condition/do-i-need-an-umbrella.intent | 5 +++ locale/uk-ua/vocabulary/condition/fog.voc | 4 ++ .../uk-ua/vocabulary/condition/humidity.voc | 4 ++ .../vocabulary/condition/precipitation.voc | 7 ++++ locale/uk-ua/vocabulary/condition/rain.voc | 6 +++ locale/uk-ua/vocabulary/condition/snow.voc | 3 ++ .../vocabulary/condition/thunderstorm.voc | 4 ++ locale/uk-ua/vocabulary/condition/windy.voc | 7 ++++ locale/uk-ua/vocabulary/date-time/couple.voc | 2 + locale/uk-ua/vocabulary/date-time/few.voc | 2 + locale/uk-ua/vocabulary/date-time/later.voc | 7 ++++ locale/uk-ua/vocabulary/date-time/next.voc | 3 ++ locale/uk-ua/vocabulary/date-time/now.voc | 3 ++ .../vocabulary/date-time/number-days.voc | 39 +++++++++++++++++++ .../vocabulary/date-time/relative-day.voc | 19 +++++++++ .../vocabulary/date-time/relative-time.voc | 7 ++++ locale/uk-ua/vocabulary/date-time/today.voc | 3 ++ locale/uk-ua/vocabulary/date-time/week.voc | 3 ++ locale/uk-ua/vocabulary/date-time/weekend.voc | 2 + locale/uk-ua/vocabulary/forecast.voc | 2 + locale/uk-ua/vocabulary/like.voc | 2 + locale/uk-ua/vocabulary/location.voc | 16 ++++++++ locale/uk-ua/vocabulary/outside.voc | 3 ++ .../query/confirm-query-current.voc | 3 ++ .../vocabulary/query/confirm-query-future.voc | 4 ++ .../uk-ua/vocabulary/query/confirm-query.voc | 9 +++++ locale/uk-ua/vocabulary/query/how.voc | 2 + locale/uk-ua/vocabulary/query/query.voc | 10 +++++ locale/uk-ua/vocabulary/query/when.voc | 5 +++ locale/uk-ua/vocabulary/sunrise.voc | 4 ++ locale/uk-ua/vocabulary/sunset.voc | 3 ++ locale/uk-ua/vocabulary/temperature/cold.voc | 4 ++ locale/uk-ua/vocabulary/temperature/high.voc | 5 +++ locale/uk-ua/vocabulary/temperature/hot.voc | 3 ++ locale/uk-ua/vocabulary/temperature/low.voc | 5 +++ .../vocabulary/temperature/temperature.voc | 3 ++ locale/uk-ua/vocabulary/unit/fahrenheit.voc | 2 + locale/uk-ua/vocabulary/unit/unit.entity | 2 + locale/uk-ua/vocabulary/unit/unit.voc | 3 ++ locale/uk-ua/vocabulary/weather.voc | 2 + 137 files changed, 539 insertions(+) create mode 100644 locale/uk-ua/dialog/and.dialog create mode 100644 locale/uk-ua/dialog/condition/clear-sky.dialog create mode 100644 locale/uk-ua/dialog/condition/clear.dialog create mode 100644 locale/uk-ua/dialog/condition/clouds.dialog create mode 100644 locale/uk-ua/dialog/condition/humidity.dialog create mode 100644 locale/uk-ua/dialog/condition/rain.dialog create mode 100644 locale/uk-ua/dialog/condition/snow.dialog create mode 100644 locale/uk-ua/dialog/condition/thunderstorm.dialog create mode 100644 locale/uk-ua/dialog/current/current-condition-expected-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-condition-expected-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-condition-not-expected-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-condition-not-expected-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-humidity-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-humidity-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunrise-future-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunrise-future-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunrise-past-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunrise-past-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunset-future-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunset-future-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunset-past-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-sunset-past-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-high-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-high-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-high-low.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-low-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-temperature-low-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-weather-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-weather-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-light-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-light-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-moderate-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-moderate-location.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-strong-local.dialog create mode 100644 locale/uk-ua/dialog/current/current-wind-strong-location.dialog create mode 100644 locale/uk-ua/dialog/current/currrent-clouds-alternative-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-condition-expected-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-condition-expected-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-condition-not-expected-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-condition-not-expected-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-humidity-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-humidity-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-precipitation-next-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-precipitation-next-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-precipitation-next-none-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-precipitation-next-none-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-sunrise-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-sunrise-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-sunset-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-sunset-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-high-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-high-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-low-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-temperature-low-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-weather-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-weather-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-light-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-light-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-moderate-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-moderate-location.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-strong-local.dialog create mode 100644 locale/uk-ua/dialog/daily/daily-wind-strong-location.dialog create mode 100644 locale/uk-ua/dialog/direction/east.dialog create mode 100644 locale/uk-ua/dialog/direction/north.dialog create mode 100644 locale/uk-ua/dialog/direction/northeast.dialog create mode 100644 locale/uk-ua/dialog/direction/northwest.dialog create mode 100644 locale/uk-ua/dialog/direction/south.dialog create mode 100644 locale/uk-ua/dialog/direction/southeast.dialog create mode 100644 locale/uk-ua/dialog/direction/southwest.dialog create mode 100644 locale/uk-ua/dialog/direction/west.dialog create mode 100644 locale/uk-ua/dialog/error/cant-get-forecast.dialog create mode 100644 locale/uk-ua/dialog/error/forty-eight-hours-available.dialog create mode 100644 locale/uk-ua/dialog/error/location-not-found.dialog create mode 100644 locale/uk-ua/dialog/error/no-forecast.dialog create mode 100644 locale/uk-ua/dialog/error/seven-days-available.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-condition-expected-local.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-condition-expected-location.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-precipitation-next-local.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-precipitation-next-location.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-temperature-local.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-temperature-location.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-weather-local.dialog create mode 100644 locale/uk-ua/dialog/hourly/hourly-weather-location.dialog create mode 100644 locale/uk-ua/dialog/percentage-number.dialog create mode 100644 locale/uk-ua/dialog/unit/celsius.dialog create mode 100644 locale/uk-ua/dialog/unit/fahrenheit.dialog create mode 100644 locale/uk-ua/dialog/unit/meters per second.dialog create mode 100644 locale/uk-ua/dialog/unit/miles per hour.dialog create mode 100644 locale/uk-ua/dialog/weekly/weekly-condition.dialog create mode 100644 locale/uk-ua/dialog/weekly/weekly-temperature.dialog create mode 100644 locale/uk-ua/regex/location.rx create mode 100644 locale/uk-ua/vocabulary/condition/clear.voc create mode 100644 locale/uk-ua/vocabulary/condition/clouds.voc create mode 100644 locale/uk-ua/vocabulary/condition/do-i-need-an-umbrella.intent create mode 100644 locale/uk-ua/vocabulary/condition/fog.voc create mode 100644 locale/uk-ua/vocabulary/condition/humidity.voc create mode 100644 locale/uk-ua/vocabulary/condition/precipitation.voc create mode 100644 locale/uk-ua/vocabulary/condition/rain.voc create mode 100644 locale/uk-ua/vocabulary/condition/snow.voc create mode 100644 locale/uk-ua/vocabulary/condition/thunderstorm.voc create mode 100644 locale/uk-ua/vocabulary/condition/windy.voc create mode 100644 locale/uk-ua/vocabulary/date-time/couple.voc create mode 100644 locale/uk-ua/vocabulary/date-time/few.voc create mode 100644 locale/uk-ua/vocabulary/date-time/later.voc create mode 100644 locale/uk-ua/vocabulary/date-time/next.voc create mode 100644 locale/uk-ua/vocabulary/date-time/now.voc create mode 100644 locale/uk-ua/vocabulary/date-time/number-days.voc create mode 100644 locale/uk-ua/vocabulary/date-time/relative-day.voc create mode 100644 locale/uk-ua/vocabulary/date-time/relative-time.voc create mode 100644 locale/uk-ua/vocabulary/date-time/today.voc create mode 100644 locale/uk-ua/vocabulary/date-time/week.voc create mode 100644 locale/uk-ua/vocabulary/date-time/weekend.voc create mode 100644 locale/uk-ua/vocabulary/forecast.voc create mode 100644 locale/uk-ua/vocabulary/like.voc create mode 100644 locale/uk-ua/vocabulary/location.voc create mode 100644 locale/uk-ua/vocabulary/outside.voc create mode 100644 locale/uk-ua/vocabulary/query/confirm-query-current.voc create mode 100644 locale/uk-ua/vocabulary/query/confirm-query-future.voc create mode 100644 locale/uk-ua/vocabulary/query/confirm-query.voc create mode 100644 locale/uk-ua/vocabulary/query/how.voc create mode 100644 locale/uk-ua/vocabulary/query/query.voc create mode 100644 locale/uk-ua/vocabulary/query/when.voc create mode 100644 locale/uk-ua/vocabulary/sunrise.voc create mode 100644 locale/uk-ua/vocabulary/sunset.voc create mode 100644 locale/uk-ua/vocabulary/temperature/cold.voc create mode 100644 locale/uk-ua/vocabulary/temperature/high.voc create mode 100644 locale/uk-ua/vocabulary/temperature/hot.voc create mode 100644 locale/uk-ua/vocabulary/temperature/low.voc create mode 100644 locale/uk-ua/vocabulary/temperature/temperature.voc create mode 100644 locale/uk-ua/vocabulary/unit/fahrenheit.voc create mode 100644 locale/uk-ua/vocabulary/unit/unit.entity create mode 100644 locale/uk-ua/vocabulary/unit/unit.voc create mode 100644 locale/uk-ua/vocabulary/weather.voc diff --git a/locale/uk-ua/dialog/and.dialog b/locale/uk-ua/dialog/and.dialog new file mode 100644 index 00000000..3bff424e --- /dev/null +++ b/locale/uk-ua/dialog/and.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +і diff --git a/locale/uk-ua/dialog/condition/clear-sky.dialog b/locale/uk-ua/dialog/condition/clear-sky.dialog new file mode 100644 index 00000000..e849de3a --- /dev/null +++ b/locale/uk-ua/dialog/condition/clear-sky.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +чисте небо diff --git a/locale/uk-ua/dialog/condition/clear.dialog b/locale/uk-ua/dialog/condition/clear.dialog new file mode 100644 index 00000000..e849de3a --- /dev/null +++ b/locale/uk-ua/dialog/condition/clear.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +чисте небо diff --git a/locale/uk-ua/dialog/condition/clouds.dialog b/locale/uk-ua/dialog/condition/clouds.dialog new file mode 100644 index 00000000..cbde84c4 --- /dev/null +++ b/locale/uk-ua/dialog/condition/clouds.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +хмари diff --git a/locale/uk-ua/dialog/condition/humidity.dialog b/locale/uk-ua/dialog/condition/humidity.dialog new file mode 100644 index 00000000..b1819e89 --- /dev/null +++ b/locale/uk-ua/dialog/condition/humidity.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +вологість diff --git a/locale/uk-ua/dialog/condition/rain.dialog b/locale/uk-ua/dialog/condition/rain.dialog new file mode 100644 index 00000000..e8d083d5 --- /dev/null +++ b/locale/uk-ua/dialog/condition/rain.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +дощ diff --git a/locale/uk-ua/dialog/condition/snow.dialog b/locale/uk-ua/dialog/condition/snow.dialog new file mode 100644 index 00000000..dcf4bbc9 --- /dev/null +++ b/locale/uk-ua/dialog/condition/snow.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +сніг diff --git a/locale/uk-ua/dialog/condition/thunderstorm.dialog b/locale/uk-ua/dialog/condition/thunderstorm.dialog new file mode 100644 index 00000000..2dc48961 --- /dev/null +++ b/locale/uk-ua/dialog/condition/thunderstorm.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +шторми diff --git a/locale/uk-ua/dialog/current/current-condition-expected-local.dialog b/locale/uk-ua/dialog/current/current-condition-expected-local.dialog new file mode 100644 index 00000000..d50cc2a4 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-condition-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Так, сьогодні буде {condition} +Схоже, що сьогодні буде {condition} diff --git a/locale/uk-ua/dialog/current/current-condition-expected-location.dialog b/locale/uk-ua/dialog/current/current-condition-expected-location.dialog new file mode 100644 index 00000000..59096109 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-condition-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {location}, схоже, сьогодні буде {condition} +Так, це буде {condition} в {location} diff --git a/locale/uk-ua/dialog/current/current-condition-not-expected-local.dialog b/locale/uk-ua/dialog/current/current-condition-not-expected-local.dialog new file mode 100644 index 00000000..89490193 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-condition-not-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Ні, за прогнозом сьогодні буде {condition} +Ні, {condition} очікується сьогодні diff --git a/locale/uk-ua/dialog/current/current-condition-not-expected-location.dialog b/locale/uk-ua/dialog/current/current-condition-not-expected-location.dialog new file mode 100644 index 00000000..d374e8cc --- /dev/null +++ b/locale/uk-ua/dialog/current/current-condition-not-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Ні, прогноз передбачає {condition} сьогодні через {location} +Ні, в {location} {condition} очікується сьогодні diff --git a/locale/uk-ua/dialog/current/current-humidity-local.dialog b/locale/uk-ua/dialog/current/current-humidity-local.dialog new file mode 100644 index 00000000..a1395aa7 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-humidity-local.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +Наразі вологість становить {percent} diff --git a/locale/uk-ua/dialog/current/current-humidity-location.dialog b/locale/uk-ua/dialog/current/current-humidity-location.dialog new file mode 100644 index 00000000..b4c48084 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-humidity-location.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +Наразі вологість в {location} становить {percent} diff --git a/locale/uk-ua/dialog/current/current-sunrise-future-local.dialog b/locale/uk-ua/dialog/current/current-sunrise-future-local.dialog new file mode 100644 index 00000000..9916fb86 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunrise-future-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сонце зійде сьогодні о {time} +Схід сонця сьогодні буде о {time} diff --git a/locale/uk-ua/dialog/current/current-sunrise-future-location.dialog b/locale/uk-ua/dialog/current/current-sunrise-future-location.dialog new file mode 100644 index 00000000..cc46ea94 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunrise-future-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сонце зійшло о {time} сьогодні о {location} +Схід сонця був о {time} сьогодні о {location} diff --git a/locale/uk-ua/dialog/current/current-sunrise-past-local.dialog b/locale/uk-ua/dialog/current/current-sunrise-past-local.dialog new file mode 100644 index 00000000..f38ad069 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunrise-past-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сонце сьогодні зійшло о {time} +Схід сонця сьогодні був о 0 diff --git a/locale/uk-ua/dialog/current/current-sunrise-past-location.dialog b/locale/uk-ua/dialog/current/current-sunrise-past-location.dialog new file mode 100644 index 00000000..cc46ea94 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunrise-past-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сонце зійшло о {time} сьогодні о {location} +Схід сонця був о {time} сьогодні о {location} diff --git a/locale/uk-ua/dialog/current/current-sunset-future-local.dialog b/locale/uk-ua/dialog/current/current-sunset-future-local.dialog new file mode 100644 index 00000000..f4ee1cb8 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunset-future-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +сонце сьогодні зайде о {time} +сонце зайде сьогодні о 0:00 +захід сонця сьогодні буде в {time} diff --git a/locale/uk-ua/dialog/current/current-sunset-future-location.dialog b/locale/uk-ua/dialog/current/current-sunset-future-location.dialog new file mode 100644 index 00000000..9f32acf0 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunset-future-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +захід сонця буде о {time} сьогодні о {location} +в {location} сонце зайде сьогодні о {time} +сонце зайде о {time} сьогодні о {location} diff --git a/locale/uk-ua/dialog/current/current-sunset-past-local.dialog b/locale/uk-ua/dialog/current/current-sunset-past-local.dialog new file mode 100644 index 00000000..90a7cdfd --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunset-past-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +сонце зайшло сьогодні о 0:00 +захід сонця сьогодні був на позначці {time} +сьогодні сонце зайшло о 0:00 diff --git a/locale/uk-ua/dialog/current/current-sunset-past-location.dialog b/locale/uk-ua/dialog/current/current-sunset-past-location.dialog new file mode 100644 index 00000000..003c69ae --- /dev/null +++ b/locale/uk-ua/dialog/current/current-sunset-past-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +в {location} сьогодні сонце зайшло о {time} +сонце зайшло о {time} сьогодні о {location} +захід сонця був о {time} сьогодні о {location} diff --git a/locale/uk-ua/dialog/current/current-temperature-high-local.dialog b/locale/uk-ua/dialog/current/current-temperature-high-local.dialog new file mode 100644 index 00000000..6839c717 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-high-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Сьогодні температура сягатиме {temperature} градусів. +Очікується максимальна температура {temperature} градусів {temperature_unit}. +Очікується максимальна температура {temperature} градусів. diff --git a/locale/uk-ua/dialog/current/current-temperature-high-location.dialog b/locale/uk-ua/dialog/current/current-temperature-high-location.dialog new file mode 100644 index 00000000..f36b8230 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-high-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Максимум {temperature} градусів {temperature_unit} очікується в {location}. +Максимум {temperature} градусів можна очікувати в {location}. +Сьогодні температура повітря сягатиме {temperature} градусів за Цельсієм {location}. diff --git a/locale/uk-ua/dialog/current/current-temperature-high-low.dialog b/locale/uk-ua/dialog/current/current-temperature-high-low.dialog new file mode 100644 index 00000000..35673d58 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-high-low.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +Сьогоднішній прогноз - максимум {high_temperature} і мінімум {low_temperature}. diff --git a/locale/uk-ua/dialog/current/current-temperature-local.dialog b/locale/uk-ua/dialog/current/current-temperature-local.dialog new file mode 100644 index 00000000..75440ad8 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Зараз на вулиці 0 градусів. +Наразі {temperature} градусів {temperature_unit}. +Наразі {temperature} градусів. diff --git a/locale/uk-ua/dialog/current/current-temperature-location.dialog b/locale/uk-ua/dialog/current/current-temperature-location.dialog new file mode 100644 index 00000000..addfeb4a --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Наразі {temperature} градусів за Цельсієм {temperature_unit} через {location}. +Зараз на вулиці {temperature} градусів за Цельсієм. +Наразі {temperature} градусів за Цельсієм при {location}. diff --git a/locale/uk-ua/dialog/current/current-temperature-low-local.dialog b/locale/uk-ua/dialog/current/current-temperature-low-local.dialog new file mode 100644 index 00000000..b964237d --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-low-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Сьогодні буде до {temperature} градусів. +Очікується мінімум {temperature} градусів {temperature_unit}. +Очікується мінімальна температура {temperature} градусів. diff --git a/locale/uk-ua/dialog/current/current-temperature-low-location.dialog b/locale/uk-ua/dialog/current/current-temperature-low-location.dialog new file mode 100644 index 00000000..2a47a1a4 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-temperature-low-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Температура може бути від {temperature} градусів до {location}. +Сьогодні температура повітря опуститься до {temperature} градусів {temperature_unit} в {location}. diff --git a/locale/uk-ua/dialog/current/current-weather-local.dialog b/locale/uk-ua/dialog/current/current-weather-local.dialog new file mode 100644 index 00000000..f64d7920 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-weather-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Наразі це {condition} та {temperature} градуси за Цельсієм. +Наразі це {condition} та {temperature} градус. diff --git a/locale/uk-ua/dialog/current/current-weather-location.dialog b/locale/uk-ua/dialog/current/current-weather-location.dialog new file mode 100644 index 00000000..2ed0fd15 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-weather-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Наразі це {condition} та {temperature} градуси {temperature_unit} та {location}. +Наразі це {condition} та {temperature} градуси в {location}. +{location} мав {condition} і наразі має {temperature} градуси. diff --git a/locale/uk-ua/dialog/current/current-wind-light-local.dialog b/locale/uk-ua/dialog/current/current-wind-light-local.dialog new file mode 100644 index 00000000..a3fd87f6 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-light-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Вітер слабкий при {speed} {speed_unit} від {direction} +Сьогодні легкий вітер від {direction} до {speed} {speed_unit} diff --git a/locale/uk-ua/dialog/current/current-wind-light-location.dialog b/locale/uk-ua/dialog/current/current-wind-light-location.dialog new file mode 100644 index 00000000..84e260e9 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-light-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {location} сьогодні легкий вітер з {direction} на {speed} {speed_unit} +Вітер легкий в {location} в {speed} в {speed_unit} з {direction} diff --git a/locale/uk-ua/dialog/current/current-wind-moderate-local.dialog b/locale/uk-ua/dialog/current/current-wind-moderate-local.dialog new file mode 100644 index 00000000..bf5967f9 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-moderate-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Наразі вітер помірний {speed} {speed_unit} від {direction} +Сьогодні трохи вітряно, зараз {speed} {speed_unit} diff --git a/locale/uk-ua/dialog/current/current-wind-moderate-location.dialog b/locale/uk-ua/dialog/current/current-wind-moderate-location.dialog new file mode 100644 index 00000000..4e14b8e5 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-moderate-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Наразі вітер помірний {speed} {speed_unit} від {direction} до {location} +Сьогодні трохи вітряно в {location}, зараз {speed} {speed_unit} diff --git a/locale/uk-ua/dialog/current/current-wind-strong-local.dialog b/locale/uk-ua/dialog/current/current-wind-strong-local.dialog new file mode 100644 index 00000000..e6720401 --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-strong-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Сьогодні дуже вітряно, {speed} {speed_unit} +Сьогодні дуже сильний вітер з {direction}, {speed} {speed_unit} +Наразі вітер від {direction} до {speed} {speed_unit}, можливо, сьогодні краще залишитися вдома diff --git a/locale/uk-ua/dialog/current/current-wind-strong-location.dialog b/locale/uk-ua/dialog/current/current-wind-strong-location.dialog new file mode 100644 index 00000000..12410a8c --- /dev/null +++ b/locale/uk-ua/dialog/current/current-wind-strong-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Наразі вітер від {direction} до {speed}, від {speed_unit} до {location}, гарний день, щоб залишатися вдома +{location} сьогодні буде сильний вітер, {speed} {speed_unit} +Сьогодні дуже сильний вітер від {direction} до {location}, {speed} {speed_unit} diff --git a/locale/uk-ua/dialog/current/currrent-clouds-alternative-local.dialog b/locale/uk-ua/dialog/current/currrent-clouds-alternative-local.dialog new file mode 100644 index 00000000..ed9ea27d --- /dev/null +++ b/locale/uk-ua/dialog/current/currrent-clouds-alternative-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Не повинно бути хмарно, схоже, що сьогодні буде {condition} +Ні, за прогнозом сьогодні буде {condition} +Не схоже на те, швидше за все, сьогодні буде {condition} diff --git a/locale/uk-ua/dialog/daily/daily-condition-expected-local.dialog b/locale/uk-ua/dialog/daily/daily-condition-expected-local.dialog new file mode 100644 index 00000000..18e6f539 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-condition-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Так, прогноз передбачає {condition} {day} +Так, очікуйте {condition} {day} diff --git a/locale/uk-ua/dialog/daily/daily-condition-expected-location.dialog b/locale/uk-ua/dialog/daily/daily-condition-expected-location.dialog new file mode 100644 index 00000000..ceef22c6 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-condition-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Так, прогноз передбачає {condition} в {location} {day} +Так, очікуйте {condition} в {location} {day} diff --git a/locale/uk-ua/dialog/daily/daily-condition-not-expected-local.dialog b/locale/uk-ua/dialog/daily/daily-condition-not-expected-local.dialog new file mode 100644 index 00000000..584e9135 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-condition-not-expected-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Ні, {condition} очікується {day} +Ні, за прогнозом {day} буде {condition} diff --git a/locale/uk-ua/dialog/daily/daily-condition-not-expected-location.dialog b/locale/uk-ua/dialog/daily/daily-condition-not-expected-location.dialog new file mode 100644 index 00000000..50639a82 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-condition-not-expected-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Ні, в {day} прогноз передбачає {condition} в {location} +Ні, в {location} {condition} очікується {day} diff --git a/locale/uk-ua/dialog/daily/daily-humidity-local.dialog b/locale/uk-ua/dialog/daily/daily-humidity-local.dialog new file mode 100644 index 00000000..cb6e5aa2 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-humidity-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Вологість {day} стане {percent} +{day} прогноз передбачає вологість {percent} diff --git a/locale/uk-ua/dialog/daily/daily-humidity-location.dialog b/locale/uk-ua/dialog/daily/daily-humidity-location.dialog new file mode 100644 index 00000000..28d4c7a0 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-humidity-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +{day} прогноз в {location} передбачає вологість {percent} +Вологість в {location} {day} буде {percent} diff --git a/locale/uk-ua/dialog/daily/daily-precipitation-next-local.dialog b/locale/uk-ua/dialog/daily/daily-precipitation-next-local.dialog new file mode 100644 index 00000000..a1328b12 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-precipitation-next-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Прогноз передбачає шанс {percent} з ймовірністю {precipitation} {day} +Існує ймовірність {percent} для {precipitation} {day} diff --git a/locale/uk-ua/dialog/daily/daily-precipitation-next-location.dialog b/locale/uk-ua/dialog/daily/daily-precipitation-next-location.dialog new file mode 100644 index 00000000..4212f74a --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-precipitation-next-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {location} є {percent} шанс на {precipitation} {day} +Прогноз передбачає {percent} шансів на {precipitation} в {location} {day} diff --git a/locale/uk-ua/dialog/daily/daily-precipitation-next-none-local.dialog b/locale/uk-ua/dialog/daily/daily-precipitation-next-none-local.dialog new file mode 100644 index 00000000..84b70937 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-precipitation-next-none-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У найближчі 7 днів не прогнозується. +На найближчі 7 днів опадів не передбачається diff --git a/locale/uk-ua/dialog/daily/daily-precipitation-next-none-location.dialog b/locale/uk-ua/dialog/daily/daily-precipitation-next-none-location.dialog new file mode 100644 index 00000000..7944f94b --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-precipitation-next-none-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +На найближчі сім днів у {location} опадів не передбачається +У {location} не прогнозується diff --git a/locale/uk-ua/dialog/daily/daily-sunrise-local.dialog b/locale/uk-ua/dialog/daily/daily-sunrise-local.dialog new file mode 100644 index 00000000..4cc9ed26 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-sunrise-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +{day} сонце зійде о {time} +схід сонця буде о {time} {day} +сонце зійде о {time} {day} diff --git a/locale/uk-ua/dialog/daily/daily-sunrise-location.dialog b/locale/uk-ua/dialog/daily/daily-sunrise-location.dialog new file mode 100644 index 00000000..210a3450 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-sunrise-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +сонце зійде о {time} {day} о {location} +{day} сонце зійде о {time} через {location} +в {location} схід сонця буде в {time} {day} diff --git a/locale/uk-ua/dialog/daily/daily-sunset-local.dialog b/locale/uk-ua/dialog/daily/daily-sunset-local.dialog new file mode 100644 index 00000000..c496e07a --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-sunset-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +сонце зайде о {time} {day} +{day} сонце зайде о {time} +захід сонця буде о {time} {day} diff --git a/locale/uk-ua/dialog/daily/daily-sunset-location.dialog b/locale/uk-ua/dialog/daily/daily-sunset-location.dialog new file mode 100644 index 00000000..2ba810f8 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-sunset-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +{day} сонце зайде о {time} через {location} +в {location} захід сонця буде в {time} {day} +сонце зайде о {time} {day} о {location} diff --git a/locale/uk-ua/dialog/daily/daily-temperature-high-local.dialog b/locale/uk-ua/dialog/daily/daily-temperature-high-local.dialog new file mode 100644 index 00000000..64e0a54c --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-high-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +При {day} температура сягатиме 1 градуса. +При {day} вона буде максимальною, а при {temperature} - мінімальною diff --git a/locale/uk-ua/dialog/daily/daily-temperature-high-location.dialog b/locale/uk-ua/dialog/daily/daily-temperature-high-location.dialog new file mode 100644 index 00000000..bbbe5edf --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-high-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +{location} матиме максимум {temperature} градус {day} +Температура буде досягати {temperature} градусів в {location} {day} diff --git a/locale/uk-ua/dialog/daily/daily-temperature-local.dialog b/locale/uk-ua/dialog/daily/daily-temperature-local.dialog new file mode 100644 index 00000000..224f2dd7 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +{day} буде {temperature} +При {day} температура буде дорівнювати {temperature} градус. diff --git a/locale/uk-ua/dialog/daily/daily-temperature-location.dialog b/locale/uk-ua/dialog/daily/daily-temperature-location.dialog new file mode 100644 index 00000000..bb280184 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +{day}, {location} матимуть температуру {temperature} градуси +У {day} буде {temperature} градус, у {location} diff --git a/locale/uk-ua/dialog/daily/daily-temperature-low-local.dialog b/locale/uk-ua/dialog/daily/daily-temperature-low-local.dialog new file mode 100644 index 00000000..ad84ab33 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-low-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +При {day} він буде таким же низьким, як і при {temperature} +При {day} температура буде лише 1 градус. diff --git a/locale/uk-ua/dialog/daily/daily-temperature-low-location.dialog b/locale/uk-ua/dialog/daily/daily-temperature-low-location.dialog new file mode 100644 index 00000000..cf1dba4f --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-temperature-low-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +{day}, {location} буде всього лише {temperature} градуси +У {day} вона буде на рівні {temperature} градуса, а в {location} diff --git a/locale/uk-ua/dialog/daily/daily-weather-local.dialog b/locale/uk-ua/dialog/daily/daily-weather-local.dialog new file mode 100644 index 00000000..01002cb3 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-weather-local.dialog @@ -0,0 +1,6 @@ +# auto translated from en-us to uk-ua +{day} це буде {condition} з максимумом {high_temperature} і мінімумом {low_temperature} +Очікується {condition}, з максимумом {high_temperature} і мінімумом {low_temperature} {day} +{day} очікує {condition}, з максимумом {high_temperature} і мінімумом {low_temperature} +Прогноз {day} становить {condition} з максимумом {high_temperature} і мінімумом {low_temperature} +При {day} максимумом буде {high_temperature}, а мінімумом {low_temperature}, при {condition} diff --git a/locale/uk-ua/dialog/daily/daily-weather-location.dialog b/locale/uk-ua/dialog/daily/daily-weather-location.dialog new file mode 100644 index 00000000..842971a1 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-weather-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +{day} це буде {condition}, з максимумом {high_temperature} і мінімумом {low_temperature} в {location} +Прогноз {day} є {high_temperature} для максимуму і {low_temperature} для мінімуму в {location} +{day}, {location} матимуть максимум {high_temperature} і мінімум {low_temperature}, а {condition} diff --git a/locale/uk-ua/dialog/daily/daily-wind-light-local.dialog b/locale/uk-ua/dialog/daily/daily-wind-light-local.dialog new file mode 100644 index 00000000..efb24593 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-light-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Легкий вітер буде дути з {direction} {day} на {speed} {speed_unit} +Буде не дуже вітряно {day} diff --git a/locale/uk-ua/dialog/daily/daily-wind-light-location.dialog b/locale/uk-ua/dialog/daily/daily-wind-light-location.dialog new file mode 100644 index 00000000..6a419d90 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-light-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Не буде дуже вітряно в {location} {day} +Легкий вітер буде дути з {direction} в {location} {day} в {speed} {speed_unit} diff --git a/locale/uk-ua/dialog/daily/daily-wind-moderate-local.dialog b/locale/uk-ua/dialog/daily/daily-wind-moderate-local.dialog new file mode 100644 index 00000000..10896825 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-moderate-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Очікується помірний вітер зі швидкістю близько {speed} {speed_unit} {day} +Вітер буде помірним, близько {speed} {speed_unit} від {direction} {day} +Прогноз передбачає помірний вітер від {direction} до {speed} {speed_unit} {day} diff --git a/locale/uk-ua/dialog/daily/daily-wind-moderate-location.dialog b/locale/uk-ua/dialog/daily/daily-wind-moderate-location.dialog new file mode 100644 index 00000000..1b5586f7 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-moderate-location.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +Вітер буде помірним в {location} {day}, близько {speed} {speed_unit} від {direction} +Прогноз {day} передбачає, що в {location} буде помірний вітер з {direction} з {speed} з {speed_unit} +Можна очікувати вітер від {speed} {speed_unit} до {location} {day} diff --git a/locale/uk-ua/dialog/daily/daily-wind-strong-local.dialog b/locale/uk-ua/dialog/daily/daily-wind-strong-local.dialog new file mode 100644 index 00000000..dcc4a2a5 --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-strong-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Буде сильний вітер з {direction} до {speed} {speed_unit} {day} +Вітер буде сильним до {speed} {speed_unit} {day} diff --git a/locale/uk-ua/dialog/daily/daily-wind-strong-location.dialog b/locale/uk-ua/dialog/daily/daily-wind-strong-location.dialog new file mode 100644 index 00000000..035c9cff --- /dev/null +++ b/locale/uk-ua/dialog/daily/daily-wind-strong-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Буде сильний вітер з {direction} з {speed} {speed_unit} по {location} {day} +Вітер буде сильним від {speed} {speed_unit} до {location} {day} diff --git a/locale/uk-ua/dialog/direction/east.dialog b/locale/uk-ua/dialog/direction/east.dialog new file mode 100644 index 00000000..9355fc14 --- /dev/null +++ b/locale/uk-ua/dialog/direction/east.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +схід diff --git a/locale/uk-ua/dialog/direction/north.dialog b/locale/uk-ua/dialog/direction/north.dialog new file mode 100644 index 00000000..5e048e31 --- /dev/null +++ b/locale/uk-ua/dialog/direction/north.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +північ diff --git a/locale/uk-ua/dialog/direction/northeast.dialog b/locale/uk-ua/dialog/direction/northeast.dialog new file mode 100644 index 00000000..65bb9488 --- /dev/null +++ b/locale/uk-ua/dialog/direction/northeast.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +північний схід diff --git a/locale/uk-ua/dialog/direction/northwest.dialog b/locale/uk-ua/dialog/direction/northwest.dialog new file mode 100644 index 00000000..762e9e92 --- /dev/null +++ b/locale/uk-ua/dialog/direction/northwest.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +північний захід diff --git a/locale/uk-ua/dialog/direction/south.dialog b/locale/uk-ua/dialog/direction/south.dialog new file mode 100644 index 00000000..3a25b8ad --- /dev/null +++ b/locale/uk-ua/dialog/direction/south.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +південь diff --git a/locale/uk-ua/dialog/direction/southeast.dialog b/locale/uk-ua/dialog/direction/southeast.dialog new file mode 100644 index 00000000..07c6419e --- /dev/null +++ b/locale/uk-ua/dialog/direction/southeast.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +південний схід diff --git a/locale/uk-ua/dialog/direction/southwest.dialog b/locale/uk-ua/dialog/direction/southwest.dialog new file mode 100644 index 00000000..cdc978d4 --- /dev/null +++ b/locale/uk-ua/dialog/direction/southwest.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +південний захід diff --git a/locale/uk-ua/dialog/direction/west.dialog b/locale/uk-ua/dialog/direction/west.dialog new file mode 100644 index 00000000..075122cc --- /dev/null +++ b/locale/uk-ua/dialog/direction/west.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +захід diff --git a/locale/uk-ua/dialog/error/cant-get-forecast.dialog b/locale/uk-ua/dialog/error/cant-get-forecast.dialog new file mode 100644 index 00000000..d00139cb --- /dev/null +++ b/locale/uk-ua/dialog/error/cant-get-forecast.dialog @@ -0,0 +1,27 @@ +# auto translated from en-us to uk-ua +Вибачте. Я не можу зараз отримати прогноз погоди. +Вибачте. Я не можу отримати доступ до звіту про погоду прямо зараз. +Я не можу отримати доступ до прогнозів погоди прямо зараз. +Я не можу отримати прогноз погоди прямо зараз. +Вибачте. Я не можу отримати звіти про погоду зараз. +Зараз я не можу отримати доступ до прогнозу погоди. +Вибачте. Наразі я не можу отримати доступ до звіту про погоду. +Наразі я не можу отримати доступ до прогнозу погоди. +Наразі я не можу отримати доступ до зведень погоди. +Прогнози погоди наразі недоступні. +Вибачте. Наразі я не можу отримати прогноз погоди. +Вибачте. Я не можу отримати доступ до прогнозу погоди прямо зараз. +Звіти про погоду наразі недоступні. +Наразі я не можу отримати прогноз погоди. +Вибачте. Зараз я не можу отримати доступ до звіту про погоду. +Вибачте. Зараз я не можу отримати прогноз погоди. +Вибачте. Зараз я не можу отримати доступ до прогнозу погоди. +Вибачте. Я не можу отримати доступ до звіту про погоду. +Вибачте. У мене зараз немає доступу до прогнозу погоди. +Вибачте. Я зараз не можу отримати доступ до прогнозу погоди. +Вибачте. Наразі я не можу отримати доступ до прогнозу погоди. +Вибачте. Наразі я не можу отримати звіти про погоду. +Наразі я не можу отримати звіти про погоду. +Наразі я не можу отримати доступ до прогнозів погоди. +Вибачте. Я зараз не можу отримати прогноз погоди. +Я не можу отримати доступ до звіту про погоду прямо зараз. diff --git a/locale/uk-ua/dialog/error/forty-eight-hours-available.dialog b/locale/uk-ua/dialog/error/forty-eight-hours-available.dialog new file mode 100644 index 00000000..67a80174 --- /dev/null +++ b/locale/uk-ua/dialog/error/forty-eight-hours-available.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +На жаль, у мене є лише 48 годин погодинного прогнозу diff --git a/locale/uk-ua/dialog/error/location-not-found.dialog b/locale/uk-ua/dialog/error/location-not-found.dialog new file mode 100644 index 00000000..e62286c0 --- /dev/null +++ b/locale/uk-ua/dialog/error/location-not-found.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Я не можу знайти місто з назвою {location}. Будь ласка, спробуйте ще раз +Міста {location} немає в моїх сховищах пам'яті. Будь ласка, спробуйте ще раз diff --git a/locale/uk-ua/dialog/error/no-forecast.dialog b/locale/uk-ua/dialog/error/no-forecast.dialog new file mode 100644 index 00000000..7e58fc41 --- /dev/null +++ b/locale/uk-ua/dialog/error/no-forecast.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Вибачте, я не знаю прогнозу {day} +У мене немає прогнозу {day} diff --git a/locale/uk-ua/dialog/error/seven-days-available.dialog b/locale/uk-ua/dialog/error/seven-days-available.dialog new file mode 100644 index 00000000..d3f210f7 --- /dev/null +++ b/locale/uk-ua/dialog/error/seven-days-available.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У мене є прогноз погоди на сім днів. +Я можу сказати вам прогноз на найближчі сім днів. diff --git a/locale/uk-ua/dialog/hourly/hourly-condition-expected-local.dialog b/locale/uk-ua/dialog/hourly/hourly-condition-expected-local.dialog new file mode 100644 index 00000000..6f7167f7 --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-condition-expected-local.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +Так, прогноз {time} передбачає прогноз {condition} diff --git a/locale/uk-ua/dialog/hourly/hourly-condition-expected-location.dialog b/locale/uk-ua/dialog/hourly/hourly-condition-expected-location.dialog new file mode 100644 index 00000000..b959a67b --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-condition-expected-location.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +Так, це буде {condition}, а це {time} diff --git a/locale/uk-ua/dialog/hourly/hourly-precipitation-next-local.dialog b/locale/uk-ua/dialog/hourly/hourly-precipitation-next-local.dialog new file mode 100644 index 00000000..983c9410 --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-precipitation-next-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Існує ймовірність {percent} для {precipitation} при {time} +Прогноз передбачає шанс {percent} на {precipitation} при {time} diff --git a/locale/uk-ua/dialog/hourly/hourly-precipitation-next-location.dialog b/locale/uk-ua/dialog/hourly/hourly-precipitation-next-location.dialog new file mode 100644 index 00000000..8eaa69f8 --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-precipitation-next-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {location} є шанс {percent} на {precipitation} при {time} +Прогноз передбачає {percent} шансів на {precipitation} в {location} при {time} diff --git a/locale/uk-ua/dialog/hourly/hourly-temperature-local.dialog b/locale/uk-ua/dialog/hourly/hourly-temperature-local.dialog new file mode 100644 index 00000000..302bf79d --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-temperature-local.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {time}, це буде {temperature} градус +Буде близько {temperature} градусів у {time} diff --git a/locale/uk-ua/dialog/hourly/hourly-temperature-location.dialog b/locale/uk-ua/dialog/hourly/hourly-temperature-location.dialog new file mode 100644 index 00000000..e8ef3c93 --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-temperature-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +У {location} буде близько {temperature} градуса, у {time} +У {time} буде {temperature} градус, у {location} - {temperature} градус diff --git a/locale/uk-ua/dialog/hourly/hourly-weather-local.dialog b/locale/uk-ua/dialog/hourly/hourly-weather-local.dialog new file mode 100644 index 00000000..5e078afe --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-weather-local.dialog @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +Близько {temperature} градусів з {condition} +Пізніше буде {condition} і близько {temperature} градуса +Пізніше буде {condition} та {temperature} градус +Буде {condition}, з температурою близько {temperature} diff --git a/locale/uk-ua/dialog/hourly/hourly-weather-location.dialog b/locale/uk-ua/dialog/hourly/hourly-weather-location.dialog new file mode 100644 index 00000000..7851edad --- /dev/null +++ b/locale/uk-ua/dialog/hourly/hourly-weather-location.dialog @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +{location} буде навколо {temperature} з {condition} +{location} буде приблизно {temperature} градус з {condition} +У найближчі кілька годин температура повітря буде {location}, а в наступні години - +1 та +2 градуси +Пізніше буде від {condition} до {location}, з температурою близько {temperature} diff --git a/locale/uk-ua/dialog/percentage-number.dialog b/locale/uk-ua/dialog/percentage-number.dialog new file mode 100644 index 00000000..31287d48 --- /dev/null +++ b/locale/uk-ua/dialog/percentage-number.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +0 відсотків diff --git a/locale/uk-ua/dialog/unit/celsius.dialog b/locale/uk-ua/dialog/unit/celsius.dialog new file mode 100644 index 00000000..7af14a1f --- /dev/null +++ b/locale/uk-ua/dialog/unit/celsius.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +за Цельсієм diff --git a/locale/uk-ua/dialog/unit/fahrenheit.dialog b/locale/uk-ua/dialog/unit/fahrenheit.dialog new file mode 100644 index 00000000..34b8f946 --- /dev/null +++ b/locale/uk-ua/dialog/unit/fahrenheit.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +за Фаренгейтом diff --git a/locale/uk-ua/dialog/unit/meters per second.dialog b/locale/uk-ua/dialog/unit/meters per second.dialog new file mode 100644 index 00000000..9aa5376b --- /dev/null +++ b/locale/uk-ua/dialog/unit/meters per second.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +метрів на секунду diff --git a/locale/uk-ua/dialog/unit/miles per hour.dialog b/locale/uk-ua/dialog/unit/miles per hour.dialog new file mode 100644 index 00000000..d283450d --- /dev/null +++ b/locale/uk-ua/dialog/unit/miles per hour.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +миль на годину diff --git a/locale/uk-ua/dialog/weekly/weekly-condition.dialog b/locale/uk-ua/dialog/weekly/weekly-condition.dialog new file mode 100644 index 00000000..85230351 --- /dev/null +++ b/locale/uk-ua/dialog/weekly/weekly-condition.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +На {days} очікуйте {condition} +Прогноз передбачає {condition} на {days} diff --git a/locale/uk-ua/dialog/weekly/weekly-temperature.dialog b/locale/uk-ua/dialog/weekly/weekly-temperature.dialog new file mode 100644 index 00000000..8b027f38 --- /dev/null +++ b/locale/uk-ua/dialog/weekly/weekly-temperature.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +мінімуми будуть між {low_min} та {low_max}, а максимуми між {high_min} та {high_max} diff --git a/locale/uk-ua/regex/location.rx b/locale/uk-ua/regex/location.rx new file mode 100644 index 00000000..e51c623b --- /dev/null +++ b/locale/uk-ua/regex/location.rx @@ -0,0 +1 @@ +.*\b(в|у|на) (?P(?!\bцельсій\b|\bцельсія\b|\bфаренгейт\b|\bфаренгейта\b) *.+) diff --git a/locale/uk-ua/vocabulary/condition/clear.voc b/locale/uk-ua/vocabulary/condition/clear.voc new file mode 100644 index 00000000..156d4d65 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/clear.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +ясно +гарна погода +сонце +сонячний diff --git a/locale/uk-ua/vocabulary/condition/clouds.voc b/locale/uk-ua/vocabulary/condition/clouds.voc new file mode 100644 index 00000000..3cac3564 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/clouds.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to uk-ua +хмарно +небагато хмар +хмара +розсіяні хмари +хмари diff --git a/locale/uk-ua/vocabulary/condition/do-i-need-an-umbrella.intent b/locale/uk-ua/vocabulary/condition/do-i-need-an-umbrella.intent new file mode 100644 index 00000000..8e8012cc --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/do-i-need-an-umbrella.intent @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +чи потрібна мені парасолька +чи варто брати з собою парасольку? +чи варто брати з собою дощовик +чи потрібен мені дощовик diff --git a/locale/uk-ua/vocabulary/condition/fog.voc b/locale/uk-ua/vocabulary/condition/fog.voc new file mode 100644 index 00000000..42e67721 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/fog.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +туман +туманний +туманно diff --git a/locale/uk-ua/vocabulary/condition/humidity.voc b/locale/uk-ua/vocabulary/condition/humidity.voc new file mode 100644 index 00000000..88d93745 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/humidity.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +вологий +вологість +гарячий diff --git a/locale/uk-ua/vocabulary/condition/precipitation.voc b/locale/uk-ua/vocabulary/condition/precipitation.voc new file mode 100644 index 00000000..75e6b784 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/precipitation.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to uk-ua +дощ +дощовий +мряка +опади +сніг +засніжений diff --git a/locale/uk-ua/vocabulary/condition/rain.voc b/locale/uk-ua/vocabulary/condition/rain.voc new file mode 100644 index 00000000..55a2de26 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/rain.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to uk-ua +дрібний дощ +дощовий +мряка +опади +дощ diff --git a/locale/uk-ua/vocabulary/condition/snow.voc b/locale/uk-ua/vocabulary/condition/snow.voc new file mode 100644 index 00000000..ee631324 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/snow.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сніг +мокрий сніг diff --git a/locale/uk-ua/vocabulary/condition/thunderstorm.voc b/locale/uk-ua/vocabulary/condition/thunderstorm.voc new file mode 100644 index 00000000..928810ab --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/thunderstorm.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +штурм +шторм +бурхливого diff --git a/locale/uk-ua/vocabulary/condition/windy.voc b/locale/uk-ua/vocabulary/condition/windy.voc new file mode 100644 index 00000000..83e3b885 --- /dev/null +++ b/locale/uk-ua/vocabulary/condition/windy.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to uk-ua +вітри +дмухання +вітряно +вітер +швидкість вітру +поривчастий diff --git a/locale/uk-ua/vocabulary/date-time/couple.voc b/locale/uk-ua/vocabulary/date-time/couple.voc new file mode 100644 index 00000000..87e3bf3c --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/couple.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +пара diff --git a/locale/uk-ua/vocabulary/date-time/few.voc b/locale/uk-ua/vocabulary/date-time/few.voc new file mode 100644 index 00000000..0c615190 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/few.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +кілька diff --git a/locale/uk-ua/vocabulary/date-time/later.voc b/locale/uk-ua/vocabulary/date-time/later.voc new file mode 100644 index 00000000..2af08620 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/later.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to uk-ua +пару годин +наступні кілька годин +пізніше +наступні години +кілька годин +наступна година diff --git a/locale/uk-ua/vocabulary/date-time/next.voc b/locale/uk-ua/vocabulary/date-time/next.voc new file mode 100644 index 00000000..35e6bc8e --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/next.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Знову +наступний diff --git a/locale/uk-ua/vocabulary/date-time/now.voc b/locale/uk-ua/vocabulary/date-time/now.voc new file mode 100644 index 00000000..01e22a41 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/now.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Зараз. +поточний diff --git a/locale/uk-ua/vocabulary/date-time/number-days.voc b/locale/uk-ua/vocabulary/date-time/number-days.voc new file mode 100644 index 00000000..76e8a49d --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/number-days.voc @@ -0,0 +1,39 @@ +# auto translated from en-us to uk-ua +в найближчі кілька днів +5-денний +чотири дні +найближчі кілька днів +6 днів +наступні п'ять днів +5 день +наступні три дні +наступні два дні +наступні 5 днів +наступні 6 днів +наступні шість днів +6-денний +наступні 3 дні +3 день +5 днів +чотириденний +в найближчі пару днів. +шість днів +6 день +наступні 2 дні +4-денний +2-денний +3-денний +дводенний +три дні +4 день +2 дні +4 дні +триденний +3 дні +п'ять днів +2 день +шестиденний +наступні 4 дні +п'ятиденний +два дні +наступні чотири дні diff --git a/locale/uk-ua/vocabulary/date-time/relative-day.voc b/locale/uk-ua/vocabulary/date-time/relative-day.voc new file mode 100644 index 00000000..9b923138 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/relative-day.voc @@ -0,0 +1,19 @@ +# auto translated from en-us to uk-ua +СЕРЕДА +завтрашній день. +вчорашній +у неділю +у середу +днів +вчора +у понеділок +П'ЯТНИЦЯ +у п'ятницю +понеділок +ВІВТОРОК +У ЧЕТВЕР +в суботу +ЧЕТВЕР +неділя +субота +завтра diff --git a/locale/uk-ua/vocabulary/date-time/relative-time.voc b/locale/uk-ua/vocabulary/date-time/relative-time.voc new file mode 100644 index 00000000..86c973b3 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/relative-time.voc @@ -0,0 +1,7 @@ +# auto translated from en-us to uk-ua +День добрий. +сьогодні вночі. +вечір +за одну ніч. +ранок +ніч diff --git a/locale/uk-ua/vocabulary/date-time/today.voc b/locale/uk-ua/vocabulary/date-time/today.voc new file mode 100644 index 00000000..d515f8d9 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/today.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сьогодні +сьогоднішній diff --git a/locale/uk-ua/vocabulary/date-time/week.voc b/locale/uk-ua/vocabulary/date-time/week.voc new file mode 100644 index 00000000..90657787 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/week.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +щотижня +тиждень diff --git a/locale/uk-ua/vocabulary/date-time/weekend.voc b/locale/uk-ua/vocabulary/date-time/weekend.voc new file mode 100644 index 00000000..f5cca6f7 --- /dev/null +++ b/locale/uk-ua/vocabulary/date-time/weekend.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +вихідні diff --git a/locale/uk-ua/vocabulary/forecast.voc b/locale/uk-ua/vocabulary/forecast.voc new file mode 100644 index 00000000..f497c761 --- /dev/null +++ b/locale/uk-ua/vocabulary/forecast.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +прогноз diff --git a/locale/uk-ua/vocabulary/like.voc b/locale/uk-ua/vocabulary/like.voc new file mode 100644 index 00000000..996a0500 --- /dev/null +++ b/locale/uk-ua/vocabulary/like.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +як diff --git a/locale/uk-ua/vocabulary/location.voc b/locale/uk-ua/vocabulary/location.voc new file mode 100644 index 00000000..34c7c723 --- /dev/null +++ b/locale/uk-ua/vocabulary/location.voc @@ -0,0 +1,16 @@ +# auto translated from en-us to uk-ua +чикаго +сан-франциско +Сан-Дієго +Сіетл +берлін +Остін +Сан-Хосе +канзас-сіті +Атланта +Портленд, штат Орегон|Портленд +Лос-Анджелес, Каліфорнія|los angeles|la +спокан +Х'юстон +бостон +Лоуренс, штат Канзас diff --git a/locale/uk-ua/vocabulary/outside.voc b/locale/uk-ua/vocabulary/outside.voc new file mode 100644 index 00000000..51d8f8ad --- /dev/null +++ b/locale/uk-ua/vocabulary/outside.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +назовні. +назовні diff --git a/locale/uk-ua/vocabulary/query/confirm-query-current.voc b/locale/uk-ua/vocabulary/query/confirm-query-current.voc new file mode 100644 index 00000000..d6b4175f --- /dev/null +++ b/locale/uk-ua/vocabulary/query/confirm-query-current.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +Це так? +чи є diff --git a/locale/uk-ua/vocabulary/query/confirm-query-future.voc b/locale/uk-ua/vocabulary/query/confirm-query-future.voc new file mode 100644 index 00000000..de010180 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/confirm-query-future.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +чи буде там +чи буде це +чи буде diff --git a/locale/uk-ua/vocabulary/query/confirm-query.voc b/locale/uk-ua/vocabulary/query/confirm-query.voc new file mode 100644 index 00000000..d6b4fd10 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/confirm-query.voc @@ -0,0 +1,9 @@ +# auto translated from en-us to uk-ua +чи будемо ми +збирається +чи є у них +чи буде це +Це так? +чи буде там +чи є +буде diff --git a/locale/uk-ua/vocabulary/query/how.voc b/locale/uk-ua/vocabulary/query/how.voc new file mode 100644 index 00000000..996a0500 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/how.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +як diff --git a/locale/uk-ua/vocabulary/query/query.voc b/locale/uk-ua/vocabulary/query/query.voc new file mode 100644 index 00000000..51e181f4 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/query.voc @@ -0,0 +1,10 @@ +# auto translated from en-us to uk-ua +як +Скажи мені. +розкажіть нам про +що +що буде +що таке +Розкажи мені про +Скажи нам. +Дай мені diff --git a/locale/uk-ua/vocabulary/query/when.voc b/locale/uk-ua/vocabulary/query/when.voc new file mode 100644 index 00000000..2c67f579 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/when.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +о котрій годині +коли це +коли буде +коли diff --git a/locale/uk-ua/vocabulary/sunrise.voc b/locale/uk-ua/vocabulary/sunrise.voc new file mode 100644 index 00000000..950ad722 --- /dev/null +++ b/locale/uk-ua/vocabulary/sunrise.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +денна перерва +світанок +схід сонця diff --git a/locale/uk-ua/vocabulary/sunset.voc b/locale/uk-ua/vocabulary/sunset.voc new file mode 100644 index 00000000..ccb93bc2 --- /dev/null +++ b/locale/uk-ua/vocabulary/sunset.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +сутінки +захід сонця diff --git a/locale/uk-ua/vocabulary/temperature/cold.voc b/locale/uk-ua/vocabulary/temperature/cold.voc new file mode 100644 index 00000000..c984e04b --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/cold.voc @@ -0,0 +1,4 @@ +# auto translated from en-us to uk-ua +прохолодно +заморожування +холодний diff --git a/locale/uk-ua/vocabulary/temperature/high.voc b/locale/uk-ua/vocabulary/temperature/high.voc new file mode 100644 index 00000000..d5fe0f3c --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/high.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +Макс. +максимум +найвищий +високий diff --git a/locale/uk-ua/vocabulary/temperature/hot.voc b/locale/uk-ua/vocabulary/temperature/hot.voc new file mode 100644 index 00000000..c2c97002 --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/hot.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +теплий +гарячий diff --git a/locale/uk-ua/vocabulary/temperature/low.voc b/locale/uk-ua/vocabulary/temperature/low.voc new file mode 100644 index 00000000..425baa20 --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/low.voc @@ -0,0 +1,5 @@ +# auto translated from en-us to uk-ua +низький +мінімум +хв +найнижчий diff --git a/locale/uk-ua/vocabulary/temperature/temperature.voc b/locale/uk-ua/vocabulary/temperature/temperature.voc new file mode 100644 index 00000000..9b7c9b2f --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/temperature.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +температура +тимчасовий diff --git a/locale/uk-ua/vocabulary/unit/fahrenheit.voc b/locale/uk-ua/vocabulary/unit/fahrenheit.voc new file mode 100644 index 00000000..34b8f946 --- /dev/null +++ b/locale/uk-ua/vocabulary/unit/fahrenheit.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +за Фаренгейтом diff --git a/locale/uk-ua/vocabulary/unit/unit.entity b/locale/uk-ua/vocabulary/unit/unit.entity new file mode 100644 index 00000000..45db19a7 --- /dev/null +++ b/locale/uk-ua/vocabulary/unit/unit.entity @@ -0,0 +1,2 @@ +fahrenheit +celsius diff --git a/locale/uk-ua/vocabulary/unit/unit.voc b/locale/uk-ua/vocabulary/unit/unit.voc new file mode 100644 index 00000000..0b61698c --- /dev/null +++ b/locale/uk-ua/vocabulary/unit/unit.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to uk-ua +за Фаренгейтом +за Цельсієм diff --git a/locale/uk-ua/vocabulary/weather.voc b/locale/uk-ua/vocabulary/weather.voc new file mode 100644 index 00000000..c4bb13e5 --- /dev/null +++ b/locale/uk-ua/vocabulary/weather.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to uk-ua +погода From 1595d4c0cfca2d47e25aa071527673cd8da8cc6c Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Thu, 20 Mar 2025 18:49:03 +0000 Subject: [PATCH 08/16] Increment Version to 3.0.1a4 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 7ecf0558..43cbd457 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a3" +__version__ = "3.0.1a4" From b7dc5d21f92a5e347cffbac4cac98d669603b8ca Mon Sep 17 00:00:00 2001 From: NeonDmitry <109043283+NeonDmitry@users.noreply.github.com> Date: Tue, 8 Apr 2025 04:52:58 +0300 Subject: [PATCH 09/16] German translation (#67) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Auto translation Files which was auto translated , got comment <# auto translated from en-us to es-es> at start of file * Update Fr dialog * Update Fr vocab * Checking German translation - dialog Create auto translation for German * Update German vocabulary * Update current-condition-not-expected-location.dialog * Update clear sky.dialog * Update no precipitation expected.dialog Expected means "erwartet" and when someone says to me, "es wird kein Niederschlag vorhergesagt" it sounds to me more like "Service is out of order, you're on your own" or that it's absolutly sure, that there will be no precitation expected. * Update precipitation expected.dialog So we can expect today or on day X as example: light rain * Update thunderstorm.dialog The correct german word for storm is "Sturm". ("Stürme" is the plural from storm. so, storms) * Update thunderstorm.dialog * Update current-condition-expected-location.dialog I wouldn't use the phrase no. 2 ("In {location} sieht es so aus, als gäbe es heute {condition}"), because it seems more like guessing than analyzing. Phrase no. 3 is ok, when the condition is (as example) rainy. otherwise it would be: "Ja, es wird in X (location) Y (as example: rain) erwartet" (Yes, it's expected that in X (location) will be Y (as example: rain) * Update current-condition-not-expected-local.dialog I did some changes and wrote two more phrases. * Update current-condition-not-expected-location.dialog I have corrected the order of the sentences in no. 3 * Update current-condition-expected-local.dialog No. 4 is fine, when the condition is: "regnen", "schneien", or "stürmisch werden" ("raining", "snowing" or "becoming stormy") * Update current-humidity-local.dialog I did some correction and wrote 2 more ways, to say it. * Update current-humidity-location.dialog Just corrected nr. 2 * Update current-condition-expected-location.dialog * Update no precipitation expected.dialog * Add translation to `_get_location` method to support non-en language responses * Update geolocation logic to allow for non-English requests (name may be translated) * Troubleshooting German location resolution * add loggimg * add logging * Add an ugly patch for `Düsseldorf` * Fix typo in patch * Cleanup logging and TODO notes * Update skill.json * Update skill.json * Update location.rx * Updates query.voc confirm-query.voc: ✅ Refined query.voc for more natural German: "wie" → "wie ist" (more natural phrasing) Merged "sagen Sie uns", "sagen Sie mir" → "sag (mir|uns)" Removed "mir" at the end, as the context was unclear ✅ Updated confirm-query.voc: Removed "werden wir" – not used in weather-related contexts Deleted "gehend zu", "werden" – machine translation, unnatural phrasing Added "ist dort", "wird dort" as recommended by the reviewer * Revert "Update Fr vocab" This reverts commit f10ade2b367aebdded9d3d0a8155cb4b2094b2f3. * Revert "Update Fr dialog" This reverts commit d0317f20caf253e1c6fc77f665897ad447a1991d. * Revert "Auto translation" This reverts commit 345da70e4818858cd8c81dcc1f8b8f000f383660. --------- Co-authored-by: HaleyQuinn7 Co-authored-by: Daniel McKnight Co-authored-by: NeonDaniel Co-authored-by: NeonDmitry --- __init__.py | 1 + locale/de-de/dialog/and.dialog | 3 +- .../de-de/dialog/condition/clear sky.dialog | 1 + .../de-de/dialog/condition/clear-sky.dialog | 2 + locale/de-de/dialog/condition/clear.dialog | 3 +- locale/de-de/dialog/condition/clouds.dialog | 2 + locale/de-de/dialog/condition/humidity.dialog | 2 + .../no precipitation expected.dialog | 3 +- .../condition/precipitation expected.dialog | 1 + locale/de-de/dialog/condition/rain.dialog | 3 +- locale/de-de/dialog/condition/snow.dialog | 3 +- .../dialog/condition/thunderstorm.dialog | 5 ++- .../current-condition-expected-local.dialog | 6 ++- ...current-condition-expected-location.dialog | 7 ++- ...urrent-condition-not-expected-local.dialog | 7 +-- ...ent-condition-not-expected-location.dialog | 6 +-- .../current/current-humidity-local.dialog | 6 ++- .../current/current-humidity-location.dialog | 4 +- .../current-sunrise-future-local.dialog | 5 ++- .../current-sunrise-future-location.dialog | 5 ++- .../current/current-sunrise-past-local.dialog | 5 ++- .../current-sunrise-past-location.dialog | 5 ++- .../current-sunset-future-local.dialog | 5 ++- .../current-sunset-future-location.dialog | 6 ++- .../current/current-sunset-past-local.dialog | 6 ++- .../current-sunset-past-location.dialog | 6 ++- .../current-temperature-high-local.dialog | 7 +-- .../current-temperature-high-location.dialog | 7 +-- .../current-temperature-high-low.dialog | 3 +- .../current/current-temperature-local.dialog | 7 +-- .../current-temperature-location.dialog | 7 +-- .../current-temperature-low-local.dialog | 7 +-- .../current-temperature-low-location.dialog | 5 ++- .../current/current-weather-local.dialog | 6 ++- .../current/current-weather-location.dialog | 7 +-- .../current/current-wind-light-local.dialog | 5 ++- .../current-wind-light-location.dialog | 5 ++- .../current-wind-moderate-local.dialog | 5 ++- .../current-wind-moderate-location.dialog | 5 ++- .../current/current-wind-strong-local.dialog | 7 +-- .../current-wind-strong-location.dialog | 7 +-- .../currrent-clouds-alternative-local.dialog | 4 ++ .../daily-condition-expected-local.dialog | 6 +-- .../daily-condition-expected-location.dialog | 6 +-- .../daily-condition-not-expected-local.dialog | 6 +-- ...ily-condition-not-expected-location.dialog | 6 +-- .../dialog/daily/daily-humidity-local.dialog | 5 ++- .../daily/daily-humidity-location.dialog | 5 ++- .../daily-precipitation-next-local.dialog | 4 +- .../daily-precipitation-next-location.dialog | 5 ++- ...daily-precipitation-next-none-local.dialog | 5 ++- ...ly-precipitation-next-none-location.dialog | 5 ++- .../dialog/daily/daily-sunrise-local.dialog | 6 ++- .../daily/daily-sunrise-location.dialog | 6 ++- .../dialog/daily/daily-sunset-local.dialog | 6 ++- .../dialog/daily/daily-sunset-location.dialog | 6 ++- .../daily/daily-temperature-high-local.dialog | 5 ++- .../daily-temperature-high-location.dialog | 5 ++- .../daily/daily-temperature-local.dialog | 5 ++- .../daily/daily-temperature-location.dialog | 5 ++- .../daily/daily-temperature-low-local.dialog | 4 +- .../daily-temperature-low-location.dialog | 5 ++- .../dialog/daily/daily-weather-local.dialog | 9 ++-- .../daily/daily-weather-location.dialog | 7 +-- .../daily/daily-wind-light-local.dialog | 5 ++- .../daily/daily-wind-light-location.dialog | 5 ++- .../daily/daily-wind-moderate-local.dialog | 7 +-- .../daily/daily-wind-moderate-location.dialog | 7 +-- .../daily/daily-wind-strong-local.dialog | 5 ++- .../daily/daily-wind-strong-location.dialog | 5 ++- locale/de-de/dialog/direction/east.dialog | 3 +- locale/de-de/dialog/direction/north.dialog | 3 +- .../de-de/dialog/direction/northeast.dialog | 3 +- .../de-de/dialog/direction/northwest.dialog | 3 +- locale/de-de/dialog/direction/south.dialog | 3 +- .../de-de/dialog/direction/southeast.dialog | 3 +- .../de-de/dialog/direction/southwest.dialog | 3 +- locale/de-de/dialog/direction/west.dialog | 3 +- .../dialog/error/cant-get-forecast.dialog | 42 +++++++++++++++++- .../error/forty-eight-hours-available.dialog | 2 + .../dialog/error/location-not-found.dialog | 6 +-- locale/de-de/dialog/error/no-forecast.dialog | 5 ++- .../dialog/error/seven-days-available.dialog | 3 ++ .../hourly-condition-expected-local.dialog | 4 +- .../hourly-condition-expected-location.dialog | 4 +- .../hourly-precipitation-next-local.dialog | 5 ++- .../hourly-precipitation-next-location.dialog | 5 ++- .../hourly/hourly-temperature-local.dialog | 5 ++- .../hourly/hourly-temperature-location.dialog | 3 ++ .../dialog/hourly/hourly-weather-local.dialog | 8 ++-- .../hourly/hourly-weather-location.dialog | 8 ++-- locale/de-de/dialog/percentage-number.dialog | 3 +- locale/de-de/dialog/unit/celsius.dialog | 3 +- locale/de-de/dialog/unit/fahrenheit.dialog | 3 +- .../dialog/unit/meters per second.dialog | 3 +- .../de-de/dialog/unit/miles per hour.dialog | 3 +- .../dialog/weekly/weekly-condition.dialog | 5 ++- .../dialog/weekly/weekly-temperature.dialog | 3 +- locale/de-de/regex/location.rx | 2 +- locale/de-de/vocabulary/condition/clear.voc | 9 ++-- locale/de-de/vocabulary/condition/clouds.voc | 8 +++- .../condition/do-i-need-an-umbrella.intent | 5 +++ locale/de-de/vocabulary/condition/fog.voc | 7 ++- .../de-de/vocabulary/condition/humidity.voc | 7 +-- .../vocabulary/condition/precipitation.voc | 12 ++--- locale/de-de/vocabulary/condition/rain.voc | 8 +++- locale/de-de/vocabulary/condition/snow.voc | 7 ++- .../vocabulary/condition/thunderstorm.voc | 6 ++- locale/de-de/vocabulary/condition/windy.voc | 15 ++++--- locale/de-de/vocabulary/date-time/couple.voc | 4 +- locale/de-de/vocabulary/date-time/few.voc | 2 + locale/de-de/vocabulary/date-time/later.voc | 14 +++--- locale/de-de/vocabulary/date-time/next.voc | 5 ++- locale/de-de/vocabulary/date-time/now.voc | 5 ++- .../vocabulary/date-time/number-days.voc | 33 ++++++++++++++ .../vocabulary/date-time/relative-day.voc | 44 ++++++++----------- .../vocabulary/date-time/relative-time.voc | 19 +++----- locale/de-de/vocabulary/date-time/today.voc | 5 ++- locale/de-de/vocabulary/date-time/week.voc | 5 ++- locale/de-de/vocabulary/date-time/weekend.voc | 3 +- locale/de-de/vocabulary/forecast.voc | 3 +- locale/de-de/vocabulary/like.voc | 2 + locale/de-de/vocabulary/location.voc | 32 +++++++------- locale/de-de/vocabulary/outside.voc | 3 ++ .../query/confirm-query-current.voc | 5 ++- .../vocabulary/query/confirm-query-future.voc | 13 +++--- .../de-de/vocabulary/query/confirm-query.voc | 14 +++--- locale/de-de/vocabulary/query/how.voc | 3 +- locale/de-de/vocabulary/query/query.voc | 11 +++-- locale/de-de/vocabulary/query/when.voc | 11 ++--- locale/de-de/vocabulary/sunrise.voc | 10 ++--- locale/de-de/vocabulary/sunset.voc | 6 +-- locale/de-de/vocabulary/temperature/cold.voc | 9 ++-- locale/de-de/vocabulary/temperature/high.voc | 9 ++-- locale/de-de/vocabulary/temperature/hot.voc | 5 ++- locale/de-de/vocabulary/temperature/low.voc | 9 ++-- .../vocabulary/temperature/temperature.voc | 9 ++-- locale/de-de/vocabulary/unit/fahrenheit.voc | 3 +- locale/de-de/vocabulary/unit/unit.entity | 4 +- locale/de-de/vocabulary/unit/unit.voc | 5 ++- locale/de-de/vocabulary/weather.voc | 3 +- skill/intent.py | 16 ++++++- 142 files changed, 573 insertions(+), 342 deletions(-) create mode 100644 locale/de-de/dialog/condition/clear-sky.dialog create mode 100644 locale/de-de/dialog/condition/clouds.dialog create mode 100644 locale/de-de/dialog/condition/humidity.dialog create mode 100644 locale/de-de/dialog/current/currrent-clouds-alternative-local.dialog create mode 100644 locale/de-de/dialog/error/forty-eight-hours-available.dialog create mode 100644 locale/de-de/dialog/error/seven-days-available.dialog create mode 100644 locale/de-de/dialog/hourly/hourly-temperature-location.dialog create mode 100644 locale/de-de/vocabulary/condition/do-i-need-an-umbrella.intent create mode 100644 locale/de-de/vocabulary/date-time/few.voc create mode 100644 locale/de-de/vocabulary/date-time/number-days.voc create mode 100644 locale/de-de/vocabulary/like.voc create mode 100644 locale/de-de/vocabulary/outside.voc diff --git a/__init__.py b/__init__.py index 23cc2f22..cf1e131a 100644 --- a/__init__.py +++ b/__init__.py @@ -103,6 +103,7 @@ def __init__(self, **kwargs): self.platform = self.config_core.get("enclosure", {}).get("platform", "unknown") self.gui_image_directory = Path(self.root_dir).joinpath("ui") self.log = LOG + WeatherIntent._translator = self.translator @classproperty def runtime_requirements(self): diff --git a/locale/de-de/dialog/and.dialog b/locale/de-de/dialog/and.dialog index c7d3bb55..31c60b8d 100644 --- a/locale/de-de/dialog/and.dialog +++ b/locale/de-de/dialog/and.dialog @@ -1 +1,2 @@ -, und +# auto translated from en-us to de-de +und diff --git a/locale/de-de/dialog/condition/clear sky.dialog b/locale/de-de/dialog/condition/clear sky.dialog index 39e5a15b..7ea72167 100644 --- a/locale/de-de/dialog/condition/clear sky.dialog +++ b/locale/de-de/dialog/condition/clear sky.dialog @@ -1 +1,2 @@ Klarer Himmel +test diff --git a/locale/de-de/dialog/condition/clear-sky.dialog b/locale/de-de/dialog/condition/clear-sky.dialog new file mode 100644 index 00000000..9325dd65 --- /dev/null +++ b/locale/de-de/dialog/condition/clear-sky.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +ein klarer Himmel diff --git a/locale/de-de/dialog/condition/clear.dialog b/locale/de-de/dialog/condition/clear.dialog index 39e5a15b..9325dd65 100644 --- a/locale/de-de/dialog/condition/clear.dialog +++ b/locale/de-de/dialog/condition/clear.dialog @@ -1 +1,2 @@ -Klarer Himmel +# auto translated from en-us to de-de +ein klarer Himmel diff --git a/locale/de-de/dialog/condition/clouds.dialog b/locale/de-de/dialog/condition/clouds.dialog new file mode 100644 index 00000000..571d5012 --- /dev/null +++ b/locale/de-de/dialog/condition/clouds.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +Wolken diff --git a/locale/de-de/dialog/condition/humidity.dialog b/locale/de-de/dialog/condition/humidity.dialog new file mode 100644 index 00000000..ea7303d9 --- /dev/null +++ b/locale/de-de/dialog/condition/humidity.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +Feuchtigkeit diff --git a/locale/de-de/dialog/condition/no precipitation expected.dialog b/locale/de-de/dialog/condition/no precipitation expected.dialog index 5194df78..d4583b0f 100644 --- a/locale/de-de/dialog/condition/no precipitation expected.dialog +++ b/locale/de-de/dialog/condition/no precipitation expected.dialog @@ -1,2 +1,3 @@ Es wird kein Niederschlag vorhergesagt -Es wird nichts vorhergesagt +Es wird kein Niederschlag erwartet +Es wird kein Regen erwartet diff --git a/locale/de-de/dialog/condition/precipitation expected.dialog b/locale/de-de/dialog/condition/precipitation expected.dialog index a695f165..7fbc75bd 100644 --- a/locale/de-de/dialog/condition/precipitation expected.dialog +++ b/locale/de-de/dialog/condition/precipitation expected.dialog @@ -1,2 +1,3 @@ {modifier} {precip} wird für {day} erwartet Die Vorhersage für {day} ist {modifier} {precip} +Es wird für {day} {modifier} {precip} erwartet diff --git a/locale/de-de/dialog/condition/rain.dialog b/locale/de-de/dialog/condition/rain.dialog index f7eb69e6..ed0509f0 100644 --- a/locale/de-de/dialog/condition/rain.dialog +++ b/locale/de-de/dialog/condition/rain.dialog @@ -1 +1,2 @@ -regnerisch +# auto translated from en-us to de-de +Regen diff --git a/locale/de-de/dialog/condition/snow.dialog b/locale/de-de/dialog/condition/snow.dialog index 2eb95241..b8b7c9d0 100644 --- a/locale/de-de/dialog/condition/snow.dialog +++ b/locale/de-de/dialog/condition/snow.dialog @@ -1 +1,2 @@ -verschneit +# auto translated from en-us to de-de +Schnee diff --git a/locale/de-de/dialog/condition/thunderstorm.dialog b/locale/de-de/dialog/condition/thunderstorm.dialog index 931036b6..6510adaf 100644 --- a/locale/de-de/dialog/condition/thunderstorm.dialog +++ b/locale/de-de/dialog/condition/thunderstorm.dialog @@ -1 +1,4 @@ -Sturm +# auto translated from en-us to de-de +Stürme +Sturm +Gewitter diff --git a/locale/de-de/dialog/current/current-condition-expected-local.dialog b/locale/de-de/dialog/current/current-condition-expected-local.dialog index 44e0e45c..bd59f926 100644 --- a/locale/de-de/dialog/current/current-condition-expected-local.dialog +++ b/locale/de-de/dialog/current/current-condition-expected-local.dialog @@ -1,2 +1,4 @@ -# Der abgefragte Zustand wird heute eintreten -Ja, es wird heute {condition} vorausgesagt +# auto translated from en-us to de-de +Ja, heute wird es {condition} sein +Es sieht so aus, als ob es heute {condition} geben wird +Es sieht aus, als würde es heute {condition} diff --git a/locale/de-de/dialog/current/current-condition-expected-location.dialog b/locale/de-de/dialog/current/current-condition-expected-location.dialog index 414da478..8d05a5c2 100644 --- a/locale/de-de/dialog/current/current-condition-expected-location.dialog +++ b/locale/de-de/dialog/current/current-condition-expected-location.dialog @@ -1,2 +1,5 @@ -# Die abgefragte Bedingung tritt auf -Ja, es wird {condition} in {location} vorausgesagt +# auto translated from en-us to de-de +In {location} sieht es so aus, als gäbe es heute {condition} +Ja, es wird in {location} {condition} sein +Ja, es wird in {location} {condition} vorausgesagt +Ja, es wird in {location} {condition} erwartet diff --git a/locale/de-de/dialog/current/current-condition-not-expected-local.dialog b/locale/de-de/dialog/current/current-condition-not-expected-local.dialog index 147dc638..2fa0c15c 100644 --- a/locale/de-de/dialog/current/current-condition-not-expected-local.dialog +++ b/locale/de-de/dialog/current/current-condition-not-expected-local.dialog @@ -1,3 +1,4 @@ -# Informing that an the requested condition is not in the forecast -Es wird {condition} für heute vorhergesagt -Für heute wird {condition} erwartet +# auto translated from en-us to de-de +Nein, aktuell wird {condition} erwartet +Nein, es ist alktuell mit {condition} zu rechnen +Nein, alktuell wird mit {condition} gerechnen diff --git a/locale/de-de/dialog/current/current-condition-not-expected-location.dialog b/locale/de-de/dialog/current/current-condition-not-expected-location.dialog index 39784591..7b65ea25 100644 --- a/locale/de-de/dialog/current/current-condition-not-expected-location.dialog +++ b/locale/de-de/dialog/current/current-condition-not-expected-location.dialog @@ -1,3 +1,3 @@ -# Informing that an the requested condition is not in the forecast -In {location} wird {condition} für heute vorhergesagt -Für heute wird {condition} in {location} erwartet +# auto translated from en-us to de-de +Nein, die Vorhersage sagt für heute {condition} in {location} an +Nein, in {location} wird heute {condition} erwartet diff --git a/locale/de-de/dialog/current/current-humidity-local.dialog b/locale/de-de/dialog/current/current-humidity-local.dialog index 053441c6..80b8b729 100644 --- a/locale/de-de/dialog/current/current-humidity-local.dialog +++ b/locale/de-de/dialog/current/current-humidity-local.dialog @@ -1,2 +1,4 @@ -Im Moment werden {percent} Luftfeuchte gemessen -Wir haben {percent} Luftfeuchtigkeit +# auto translated from en-us to de-de +Derzeit beträgt die Luftfeuchtigkeit {percent} +Im Moment wird {percent} Luftfeuchte gemessen +Wir haben eine Luftfeuchtigkeit von {percent} diff --git a/locale/de-de/dialog/current/current-humidity-location.dialog b/locale/de-de/dialog/current/current-humidity-location.dialog index 2a403715..6cac9cb7 100644 --- a/locale/de-de/dialog/current/current-humidity-location.dialog +++ b/locale/de-de/dialog/current/current-humidity-location.dialog @@ -1,2 +1,2 @@ -Im Moment ist {percent} Luftfeuchte in {location} -in {location} werden {percent} Luftfeuchte gemessen +# auto translated from en-us to de-de +Derzeit beträgt die Luftfeuchtigkeit in {location} {percent} diff --git a/locale/de-de/dialog/current/current-sunrise-future-local.dialog b/locale/de-de/dialog/current/current-sunrise-future-local.dialog index 565f46d3..ffa0ab8e 100644 --- a/locale/de-de/dialog/current/current-sunrise-future-local.dialog +++ b/locale/de-de/dialog/current/current-sunrise-future-local.dialog @@ -1,2 +1,3 @@ -sonnenaufgang ist heute um {time} -heute geht die sonne um {time} auf +# auto translated from en-us to de-de +die Sonne wird heute um {time} Uhr aufgehen +Der Sonnenaufgang findet heute um {time} statt. diff --git a/locale/de-de/dialog/current/current-sunrise-future-location.dialog b/locale/de-de/dialog/current/current-sunrise-future-location.dialog index 7ea4a618..0bc1fb21 100644 --- a/locale/de-de/dialog/current/current-sunrise-future-location.dialog +++ b/locale/de-de/dialog/current/current-sunrise-future-location.dialog @@ -1,2 +1,3 @@ -die sonne wird in {location} um {time} aufgehen -der sonnenaufgang in {location} ist heute um {time} +# auto translated from en-us to de-de +Der Sonnenaufgang fand heute bei {time} in {location} statt. +die Sonne ging heute um {time} Uhr in {location} auf diff --git a/locale/de-de/dialog/current/current-sunrise-past-local.dialog b/locale/de-de/dialog/current/current-sunrise-past-local.dialog index b85df30e..772c5de2 100644 --- a/locale/de-de/dialog/current/current-sunrise-past-local.dialog +++ b/locale/de-de/dialog/current/current-sunrise-past-local.dialog @@ -1,2 +1,3 @@ -die sonne ging heute um {time} auf -sonnenaufgang war heute um {time} +# auto translated from en-us to de-de +die Sonne ging heute um {time} Uhr auf +Sonnenaufgang war heute bei {time} diff --git a/locale/de-de/dialog/current/current-sunrise-past-location.dialog b/locale/de-de/dialog/current/current-sunrise-past-location.dialog index f177f2de..0bc1fb21 100644 --- a/locale/de-de/dialog/current/current-sunrise-past-location.dialog +++ b/locale/de-de/dialog/current/current-sunrise-past-location.dialog @@ -1,2 +1,3 @@ -die sonne ging heute in {location} um {time} auf -in {location} war sonnenaufgang um {time} +# auto translated from en-us to de-de +Der Sonnenaufgang fand heute bei {time} in {location} statt. +die Sonne ging heute um {time} Uhr in {location} auf diff --git a/locale/de-de/dialog/current/current-sunset-future-local.dialog b/locale/de-de/dialog/current/current-sunset-future-local.dialog index d3f0ad2b..74ac39be 100644 --- a/locale/de-de/dialog/current/current-sunset-future-local.dialog +++ b/locale/de-de/dialog/current/current-sunset-future-local.dialog @@ -1,2 +1,3 @@ -sonnenuntergang ist heute um {time} -heute geht die sonne um {time} unter +# auto translated from en-us to de-de +die Sonne geht heute um {time} Uhr unter +Sonnenuntergang wird heute bei {time} sein diff --git a/locale/de-de/dialog/current/current-sunset-future-location.dialog b/locale/de-de/dialog/current/current-sunset-future-location.dialog index a25ed09a..7b4f4fad 100644 --- a/locale/de-de/dialog/current/current-sunset-future-location.dialog +++ b/locale/de-de/dialog/current/current-sunset-future-location.dialog @@ -1,2 +1,4 @@ -die sonne wird in {location} um {time} untergehen -der sonnenuntergang in {location} ist heute um {time} +# auto translated from en-us to de-de +Der Sonnenuntergang wird heute um {time} in {location} stattfinden. +in {location} wird die Sonne heute um {time} untergehen +die Sonne geht heute um {time} in {location} unter diff --git a/locale/de-de/dialog/current/current-sunset-past-local.dialog b/locale/de-de/dialog/current/current-sunset-past-local.dialog index c980dd5d..508c5834 100644 --- a/locale/de-de/dialog/current/current-sunset-past-local.dialog +++ b/locale/de-de/dialog/current/current-sunset-past-local.dialog @@ -1,2 +1,4 @@ -die sonne ging heute um {time} unter -sonnenuntergang war heute um {time} +# auto translated from en-us to de-de +die Sonne ist heute um {time} Uhr untergegangen +Sonnenuntergang war heute bei {time} +die Sonne ging heute um {time} Uhr unter diff --git a/locale/de-de/dialog/current/current-sunset-past-location.dialog b/locale/de-de/dialog/current/current-sunset-past-location.dialog index e6ab085f..c5187d34 100644 --- a/locale/de-de/dialog/current/current-sunset-past-location.dialog +++ b/locale/de-de/dialog/current/current-sunset-past-location.dialog @@ -1,2 +1,4 @@ -die sonne ging heute in {location} um {time} unter -in {location} war sonnenuntergang um {time} +# auto translated from en-us to de-de +die Sonne ist heute um {time} Uhr in {location} untergegangen +in {location} ist die Sonne heute um {time} untergegangen +Sonnenuntergang war bei {time} heute in {location} diff --git a/locale/de-de/dialog/current/current-temperature-high-local.dialog b/locale/de-de/dialog/current/current-temperature-high-local.dialog index 7c60256a..75f36db9 100644 --- a/locale/de-de/dialog/current/current-temperature-high-local.dialog +++ b/locale/de-de/dialog/current/current-temperature-high-local.dialog @@ -1,3 +1,4 @@ -Ein Höchstwert von {temperature} Grad {temperature_unit} wird erwartet. -Ein Höchstwert von {temperature} Grad kann erwartet werden. -Heute wird die Temperatur {temperature} Grad erreichen. +# auto translated from en-us to de-de +Es werden Höchstwerte von {temperature} Grad erwartet. +Die Temperatur wird heute {temperature} Grad erreichen. +Es werden Höchstwerte von {temperature} Grad {temperature_unit} erwartet. diff --git a/locale/de-de/dialog/current/current-temperature-high-location.dialog b/locale/de-de/dialog/current/current-temperature-high-location.dialog index 3e3542ba..f0cbb7ce 100644 --- a/locale/de-de/dialog/current/current-temperature-high-location.dialog +++ b/locale/de-de/dialog/current/current-temperature-high-location.dialog @@ -1,3 +1,4 @@ -In {location}. wird ein Höchstwert von {temperature} Grad {temperature_unit} erwartet. -In {location} ist mit {temperature} Grad zu rechnen. -Heute wird die Temperatur in {location} bis zu {temperature} Grad erreichen. +# auto translated from en-us to de-de +Die Höchstwerte von {temperature} Grad {temperature_unit} werden in {location} erwartet. +Heute wird die Temperatur {temperature} Grad in {location} erreichen. +Die Höchstwerte von {temperature} Grad werden im {location} erwartet. diff --git a/locale/de-de/dialog/current/current-temperature-high-low.dialog b/locale/de-de/dialog/current/current-temperature-high-low.dialog index 0c1818a4..4d0fcd87 100644 --- a/locale/de-de/dialog/current/current-temperature-high-low.dialog +++ b/locale/de-de/dialog/current/current-temperature-high-low.dialog @@ -1 +1,2 @@ -Laut der Vorhersage liegt die Höchsttemperatur bei {high_temperature} und die Tiefsttemperatur bei {low_temperature} Grad. +# auto translated from en-us to de-de +Die Vorhersage für heute ist ein Hoch von {high_temperature} und ein Tief von {low_temperature}. diff --git a/locale/de-de/dialog/current/current-temperature-local.dialog b/locale/de-de/dialog/current/current-temperature-local.dialog index bcdeadb4..c0220009 100644 --- a/locale/de-de/dialog/current/current-temperature-local.dialog +++ b/locale/de-de/dialog/current/current-temperature-local.dialog @@ -1,3 +1,4 @@ -Es sind aktuell {temperature} Grad {temperature_unit}. -Es sind aktuell {temperature} Grad. -Aktuell haben wir {temperature} Grad. +# auto translated from en-us to de-de +Die Temperatur liegt derzeit bei 0 Grad. +Im Moment sind es {temperature} Grad. +Es ist derzeit {temperature} Grad {temperature_unit}. diff --git a/locale/de-de/dialog/current/current-temperature-location.dialog b/locale/de-de/dialog/current/current-temperature-location.dialog index a27e018c..f5dfca65 100644 --- a/locale/de-de/dialog/current/current-temperature-location.dialog +++ b/locale/de-de/dialog/current/current-temperature-location.dialog @@ -1,3 +1,4 @@ -Es sind aktuell {temperature} Grad {temperature_unit} in {location}. -Es sind aktuell {temperature} Grad in {location}. -Aktuell haben wir {temperature} Grad in {location}. +# auto translated from en-us to de-de +Im Moment ist es {temperature} Grad in {location}. +Es ist derzeit {temperature} Grad {temperature_unit} in {location}. +Es hat momentan {temperature} Grad in {location}. diff --git a/locale/de-de/dialog/current/current-temperature-low-local.dialog b/locale/de-de/dialog/current/current-temperature-low-local.dialog index df01462c..963a1357 100644 --- a/locale/de-de/dialog/current/current-temperature-low-local.dialog +++ b/locale/de-de/dialog/current/current-temperature-low-local.dialog @@ -1,3 +1,4 @@ -Als Tiefstwert wird {temperature} Grad {temperature_unit} erwartet. -Als Tiefstwert kann {temperature} Grad erwartet werden. -Heute wird es bis zu {temperature} Grad kalt. +# auto translated from en-us to de-de +Es sind Tiefstwerte von {temperature} Grad zu erwarten. +Ein Tiefstwert von {temperature} Grad {temperature_unit} wird erwartet. +Heute werden es bis zu {temperature} Grad sein. diff --git a/locale/de-de/dialog/current/current-temperature-low-location.dialog b/locale/de-de/dialog/current/current-temperature-low-location.dialog index 4063f9ff..590cb751 100644 --- a/locale/de-de/dialog/current/current-temperature-low-location.dialog +++ b/locale/de-de/dialog/current/current-temperature-low-location.dialog @@ -1,2 +1,3 @@ -Heute wird die Tiefsttemperatur {temperature} Grad {temperature_unit} in {location} betragen. -Die Temperaturen können auf Tiefstwerte von {temperature} Grad in {location} fallen. +# auto translated from en-us to de-de +Heute wird die Temperatur so niedrig wie {temperature} Grad {temperature_unit} in {location} sein. +Die Temperaturen können bis auf {temperature} Grad in {location} sinken. diff --git a/locale/de-de/dialog/current/current-weather-local.dialog b/locale/de-de/dialog/current/current-weather-local.dialog index 3c9a1d6c..ca0acfe6 100644 --- a/locale/de-de/dialog/current/current-weather-local.dialog +++ b/locale/de-de/dialog/current/current-weather-local.dialog @@ -1,2 +1,4 @@ -Es ist im Moment {condition} bei {temperature} Grad {temperature_unit}. -Momentan {condition} bei {temperature} Grad. +# auto translated from en-us to de-de +Derzeit ist es {condition} und {temperature} Grad {temperature_unit}. +Die Temperatur beträgt derzeit {condition} und {temperature} Grad. +Im Moment sind es {condition} und {temperature} Grad. diff --git a/locale/de-de/dialog/current/current-weather-location.dialog b/locale/de-de/dialog/current/current-weather-location.dialog index e55f8c72..732b63d8 100644 --- a/locale/de-de/dialog/current/current-weather-location.dialog +++ b/locale/de-de/dialog/current/current-weather-location.dialog @@ -1,3 +1,4 @@ -{condition} bei {temperature} Grad {temperature_unit} in {location}. Der heutige Höchstwert beträgt {high_temperature} und der Tiefstwert {low_temperature} Grad. -{condition} bei {temperature} Grad, mit einem Höchstwert von {high_temperature} und einem Tiefstwert von {low_temperature} in {location}. -Mit einem Höchstwert von {high_temperature} und einem Tiefstwert von {low_temperature} Grad, wird in {location} {condition} bei {temperature} Grad erwartet. +# auto translated from en-us to de-de +{location} hat {condition} und ist derzeit {temperature} Grad. +Im Moment sind es {condition} und {temperature} Grad in {location}. +Derzeit ist es {condition} und {temperature} Grad {temperature_unit} in {location}. diff --git a/locale/de-de/dialog/current/current-wind-light-local.dialog b/locale/de-de/dialog/current/current-wind-light-local.dialog index 70c873ec..8a0813cf 100644 --- a/locale/de-de/dialog/current/current-wind-light-local.dialog +++ b/locale/de-de/dialog/current/current-wind-light-local.dialog @@ -1,2 +1,3 @@ -Heute gibt es keinen nennenswerten Wind -Es ist heute überhaupt nicht windig +# auto translated from en-us to de-de +Der Wind ist schwach bei {speed} {speed_unit} aus {direction} +Heute weht ein leichter Wind aus der {direction} bei {speed} {speed_unit} diff --git a/locale/de-de/dialog/current/current-wind-light-location.dialog b/locale/de-de/dialog/current/current-wind-light-location.dialog index 40bb8b31..8408ae6a 100644 --- a/locale/de-de/dialog/current/current-wind-light-location.dialog +++ b/locale/de-de/dialog/current/current-wind-light-location.dialog @@ -1,2 +1,3 @@ -Es gibt keinen nennenswerten Wind in {location} -Es ist heute überhaupt nicht sehr windig in {location} +# auto translated from en-us to de-de +Der Wind ist leicht in {location} bei {speed} {speed_unit} aus der {direction} +In {location} weht heute ein leichter Wind aus der {direction} bei {speed} {speed_unit} diff --git a/locale/de-de/dialog/current/current-wind-moderate-local.dialog b/locale/de-de/dialog/current/current-wind-moderate-local.dialog index 2589d1b9..3e8e4128 100644 --- a/locale/de-de/dialog/current/current-wind-moderate-local.dialog +++ b/locale/de-de/dialog/current/current-wind-moderate-local.dialog @@ -1,2 +1,3 @@ -Derzeit {speed} {speed_unit}, also etwas windig -Es ist heute etwas windig, derzeit {speed} {speed_unit} +# auto translated from en-us to de-de +Heute ist es ein bisschen windig, derzeit {speed} {speed_unit} +Derzeit weht der Wind mäßig {speed} {speed_unit} aus {direction} diff --git a/locale/de-de/dialog/current/current-wind-moderate-location.dialog b/locale/de-de/dialog/current/current-wind-moderate-location.dialog index a28eec2a..825d1ece 100644 --- a/locale/de-de/dialog/current/current-wind-moderate-location.dialog +++ b/locale/de-de/dialog/current/current-wind-moderate-location.dialog @@ -1,2 +1,3 @@ -Derzeit {speed} {speed_unit} in {location}, also etwas windig heute -Es ist heute etwas windig in {location}, derzeit {speed} {speed_unit} +# auto translated from en-us to de-de +Derzeit weht ein mäßiger {speed} {speed_unit} aus {direction} in {location} +Es ist ein bisschen windig in {location} heute, derzeit {speed} {speed_unit} diff --git a/locale/de-de/dialog/current/current-wind-strong-local.dialog b/locale/de-de/dialog/current/current-wind-strong-local.dialog index 0e8cc9c5..9df844a6 100644 --- a/locale/de-de/dialog/current/current-wind-strong-local.dialog +++ b/locale/de-de/dialog/current/current-wind-strong-local.dialog @@ -1,3 +1,4 @@ -Es ist {speed} {speed_unit}, vielleicht ist es gut, heute drinnen zu bleiben -Der Wind ist heute sehr stark, {speed} {speed_unit} -Es ist heute sehr windig, {speed} {speed_unit} +# auto translated from en-us to de-de +Der Wind ist heute sehr stark aus der {direction}, {speed} {speed_unit} +Momentan ist der Wind aus der {direction} bei {speed} {speed_unit}, vielleicht ist es gut, heute drinnen zu bleiben +Heute ist es sehr windig, {speed} {speed_unit} diff --git a/locale/de-de/dialog/current/current-wind-strong-location.dialog b/locale/de-de/dialog/current/current-wind-strong-location.dialog index 993c4dba..5321403d 100644 --- a/locale/de-de/dialog/current/current-wind-strong-location.dialog +++ b/locale/de-de/dialog/current/current-wind-strong-location.dialog @@ -1,3 +1,4 @@ -Es ist {speed} {speed_unit} in {location}, ein guter Tag, um drinnen zu bleiben -Der Wind ist heute sehr stark in {location}, {speed} {speed_unit} -{location} hat ziemlich starke Winde, {speed} {speed_unit} +# auto translated from en-us to de-de +Der Wind ist heute sehr stark aus der {direction} in {location}, {speed} {speed_unit} +Im Moment ist der Wind aus der {direction} bei {speed} {speed_unit} in {location}, ein guter Tag, um drinnen zu bleiben +{location} wird heute starken Wind haben, {speed} {speed_unit} diff --git a/locale/de-de/dialog/current/currrent-clouds-alternative-local.dialog b/locale/de-de/dialog/current/currrent-clouds-alternative-local.dialog new file mode 100644 index 00000000..2dd1a216 --- /dev/null +++ b/locale/de-de/dialog/current/currrent-clouds-alternative-local.dialog @@ -0,0 +1,4 @@ +# auto translated from en-us to de-de +Nein, die Vorhersage sagt für heute {condition} +Es sollte nicht bewölkt sein, es sieht so aus, als würde es heute {condition} geben +Sieht nicht so aus, die Chancen stehen gut, dass es heute {condition} sein wird. diff --git a/locale/de-de/dialog/daily/daily-condition-expected-local.dialog b/locale/de-de/dialog/daily/daily-condition-expected-local.dialog index 8befa796..b7b7796f 100644 --- a/locale/de-de/dialog/daily/daily-condition-expected-local.dialog +++ b/locale/de-de/dialog/daily/daily-condition-expected-local.dialog @@ -1,3 +1,3 @@ -# Bejahende Antwort auf Fragen wie "Wird es morgen schneien?" -Ja, erwarte {condition} -Ja, die Prognose ergibt {condition} +# auto translated from en-us to de-de +Ja, erwarten Sie {condition} {day} +Ja, die Prognose sieht {condition} {day} vor. diff --git a/locale/de-de/dialog/daily/daily-condition-expected-location.dialog b/locale/de-de/dialog/daily/daily-condition-expected-location.dialog index 7b19ee78..f9e73b29 100644 --- a/locale/de-de/dialog/daily/daily-condition-expected-location.dialog +++ b/locale/de-de/dialog/daily/daily-condition-expected-location.dialog @@ -1,3 +1,3 @@ -# Bejahende Antwort auf Fragen wie "Wird es morgen in Paris schneien?" -Ja, ich erwarte {condition} am {day} in {location} -Ja, die Prognose ist {condition} am {day}in {location} +# auto translated from en-us to de-de +Ja, erwarten Sie {condition} in {location} {day} +Ja, die Vorhersage sieht {condition} in {location} {day} vor. diff --git a/locale/de-de/dialog/daily/daily-condition-not-expected-local.dialog b/locale/de-de/dialog/daily/daily-condition-not-expected-local.dialog index e33a3a25..b6eb950f 100644 --- a/locale/de-de/dialog/daily/daily-condition-not-expected-local.dialog +++ b/locale/de-de/dialog/daily/daily-condition-not-expected-local.dialog @@ -1,3 +1,3 @@ -# Informing that an the requested condition is not in the forecast -Es wird {condition} für {day} vorhergesagt -Für {day} wird {condition} erwartet +# auto translated from en-us to de-de +Nein, {day} die Prognose sieht {condition} vor +Nein, {condition} wird erwartet {day} diff --git a/locale/de-de/dialog/daily/daily-condition-not-expected-location.dialog b/locale/de-de/dialog/daily/daily-condition-not-expected-location.dialog index c13f2f21..2eed09bc 100644 --- a/locale/de-de/dialog/daily/daily-condition-not-expected-location.dialog +++ b/locale/de-de/dialog/daily/daily-condition-not-expected-location.dialog @@ -1,3 +1,3 @@ -# Informing that an the requested condition is not in the forecast -In {location} wird {condition} für {day} vorhergesagt -Für {day} wird {condition} in {location} erwartet +# auto translated from en-us to de-de +Nein, {day} die Prognose sieht {condition} in {location} vor +Nein, in {location} wird {condition} erwartet {day} diff --git a/locale/de-de/dialog/daily/daily-humidity-local.dialog b/locale/de-de/dialog/daily/daily-humidity-local.dialog index 2a761902..235c0929 100644 --- a/locale/de-de/dialog/daily/daily-humidity-local.dialog +++ b/locale/de-de/dialog/daily/daily-humidity-local.dialog @@ -1,2 +1,3 @@ -The humidity {day} will be {percent} -Für {day} ist mit Luftfeuchte von {percent} zu rechnen +# auto translated from en-us to de-de +Die Feuchtigkeit {day} wird zu {percent} +{day} die Vorhersage sieht eine Luftfeuchtigkeit von {percent} vor diff --git a/locale/de-de/dialog/daily/daily-humidity-location.dialog b/locale/de-de/dialog/daily/daily-humidity-location.dialog index 554713c9..bbbda0f3 100644 --- a/locale/de-de/dialog/daily/daily-humidity-location.dialog +++ b/locale/de-de/dialog/daily/daily-humidity-location.dialog @@ -1,2 +1,3 @@ -The humidity in {location} {day} will be {percent} -in {location} wird {day} Luftfeuchte von bis zu {percent} erwartet +# auto translated from en-us to de-de +Die Feuchtigkeit in {location} {day} wird {percent} sein +{day} die Vorhersage in {location} sieht eine Luftfeuchtigkeit von {percent} vor diff --git a/locale/de-de/dialog/daily/daily-precipitation-next-local.dialog b/locale/de-de/dialog/daily/daily-precipitation-next-local.dialog index e82c6034..206ea244 100644 --- a/locale/de-de/dialog/daily/daily-precipitation-next-local.dialog +++ b/locale/de-de/dialog/daily/daily-precipitation-next-local.dialog @@ -1 +1,3 @@ -{day} ist mit einer wahrscheinlichkeit von {percent} mit {precipitation} zu rechnen. +# auto translated from en-us to de-de +Es besteht eine {percent} Chance auf {precipitation} {day} +Die Vorhersage sagt eine {percent} Chance von {precipitation} {day} diff --git a/locale/de-de/dialog/daily/daily-precipitation-next-location.dialog b/locale/de-de/dialog/daily/daily-precipitation-next-location.dialog index fac62737..596c5947 100644 --- a/locale/de-de/dialog/daily/daily-precipitation-next-location.dialog +++ b/locale/de-de/dialog/daily/daily-precipitation-next-location.dialog @@ -1,2 +1,3 @@ -in {location} ist zu {percent} mit {precipitation} für {day} zu rechnen -für {day} ist mit einer wahrscheinlichkeit von {percent} mit {precipitation} in {location} zu rechnen +# auto translated from en-us to de-de +Die Vorhersage sieht eine {percent} Chance von {precipitation} in {location} {day} vor +In {location} gibt es eine {percent} Chance auf {precipitation} {day} diff --git a/locale/de-de/dialog/daily/daily-precipitation-next-none-local.dialog b/locale/de-de/dialog/daily/daily-precipitation-next-none-local.dialog index 121ca1ea..6b39caa4 100644 --- a/locale/de-de/dialog/daily/daily-precipitation-next-none-local.dialog +++ b/locale/de-de/dialog/daily/daily-precipitation-next-none-local.dialog @@ -1,2 +1,3 @@ -in den nächsten 7 tagen nicht. -für die nächsten 7 tage ist nichts derartiges vorhergesagt. +# auto translated from en-us to de-de +Für die nächsten 7 Tage wird keine prognostiziert. +Für die nächsten 7 Tage ist kein Niederschlag vorhergesagt diff --git a/locale/de-de/dialog/daily/daily-precipitation-next-none-location.dialog b/locale/de-de/dialog/daily/daily-precipitation-next-none-location.dialog index 70f99cd7..6b981d18 100644 --- a/locale/de-de/dialog/daily/daily-precipitation-next-none-location.dialog +++ b/locale/de-de/dialog/daily/daily-precipitation-next-none-location.dialog @@ -1,2 +1,3 @@ -in den nächsten 7 tagen nicht. -für die nächsten 7 tage ist nichts derartiges in {location} vorhergesagt. +# auto translated from en-us to de-de +Für die nächsten sieben Tage ist in {location} kein Niederschlag vorhergesagt. +In {location} wird keine prognostiziert diff --git a/locale/de-de/dialog/daily/daily-sunrise-local.dialog b/locale/de-de/dialog/daily/daily-sunrise-local.dialog index 2a6a084a..e5462796 100644 --- a/locale/de-de/dialog/daily/daily-sunrise-local.dialog +++ b/locale/de-de/dialog/daily/daily-sunrise-local.dialog @@ -1,2 +1,4 @@ -sonnenaufgang ist um {time} {day} -{day} geht die sonne um {time} auf +# auto translated from en-us to de-de +{day} geht die Sonne um {time} auf +Sonnenaufgang wird um {time} {day} sein +die Sonne wird um {time} {day} aufgehen diff --git a/locale/de-de/dialog/daily/daily-sunrise-location.dialog b/locale/de-de/dialog/daily/daily-sunrise-location.dialog index 86212a56..aee0d447 100644 --- a/locale/de-de/dialog/daily/daily-sunrise-location.dialog +++ b/locale/de-de/dialog/daily/daily-sunrise-location.dialog @@ -1,2 +1,4 @@ -sonnenaufgang ist in {location} um {time} {day} -{day} geht die sonne in {location} um {time} auf +# auto translated from en-us to de-de +{day} die Sonne wird um {time} in {location} aufgehen +in {location} wird der Sonnenaufgang um {time} {day} sein +die Sonne wird um {time} {day} in {location} aufgehen diff --git a/locale/de-de/dialog/daily/daily-sunset-local.dialog b/locale/de-de/dialog/daily/daily-sunset-local.dialog index 809739a3..edc1f37b 100644 --- a/locale/de-de/dialog/daily/daily-sunset-local.dialog +++ b/locale/de-de/dialog/daily/daily-sunset-local.dialog @@ -1,2 +1,4 @@ -sonnenuntergang ist um {time} {day} -{day} geht die sonne um {time} unter +# auto translated from en-us to de-de +{day} die Sonne wird um {time} untergehen +Sonnenuntergang wird bei {time} {day} sein +die Sonne wird um {time} {day} untergehen diff --git a/locale/de-de/dialog/daily/daily-sunset-location.dialog b/locale/de-de/dialog/daily/daily-sunset-location.dialog index 4a947885..728cce4d 100644 --- a/locale/de-de/dialog/daily/daily-sunset-location.dialog +++ b/locale/de-de/dialog/daily/daily-sunset-location.dialog @@ -1,2 +1,4 @@ -sonnenuntergang ist in {location} um {time} {day} -{day} geht die sonne in {location} um {time} unter +# auto translated from en-us to de-de +{day} die Sonne wird um {time} in {location} untergehen +in {location} wird der Sonnenuntergang bei {time} {day} sein +die Sonne wird um {time} {day} in {location} untergehen diff --git a/locale/de-de/dialog/daily/daily-temperature-high-local.dialog b/locale/de-de/dialog/daily/daily-temperature-high-local.dialog index b51549bc..431b69a0 100644 --- a/locale/de-de/dialog/daily/daily-temperature-high-local.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-high-local.dialog @@ -1,2 +1,3 @@ -{day} wird es maximal {temperature} Grad werden -{day} wird eine Höchsttemperatur von {temperature} Grad erreicht. +# auto translated from en-us to de-de +Bei {day} wird die Temperatur bis zu {temperature} Grad betragen. +{day} wird sie so hoch wie {temperature} sein diff --git a/locale/de-de/dialog/daily/daily-temperature-high-location.dialog b/locale/de-de/dialog/daily/daily-temperature-high-location.dialog index fdc261ae..805ad97f 100644 --- a/locale/de-de/dialog/daily/daily-temperature-high-location.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-high-location.dialog @@ -1,2 +1,3 @@ -{day} werden maximal {temperature} Grad in {location} erwartet -{day} werden in {location} Höchsttemperaturen von {temperature} Grad vorhergesagt +# auto translated from en-us to de-de +Es wird so hoch wie {temperature} Grad in {location} {day} +{location} wird einen Höchstwert von {temperature} Grad haben {day} diff --git a/locale/de-de/dialog/daily/daily-temperature-local.dialog b/locale/de-de/dialog/daily/daily-temperature-local.dialog index 2a79a4ed..fa5ee3ad 100644 --- a/locale/de-de/dialog/daily/daily-temperature-local.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-local.dialog @@ -1,2 +1,3 @@ -{day} wird es {temperature} Grad. -{day} werden die Temperaturen von {temperature} Grad erwartet. +# auto translated from en-us to de-de +{day} wird die Temperatur {temperature} Grad betragen. +{day} wird es {temperature} sein diff --git a/locale/de-de/dialog/daily/daily-temperature-location.dialog b/locale/de-de/dialog/daily/daily-temperature-location.dialog index 978b2096..532a7adc 100644 --- a/locale/de-de/dialog/daily/daily-temperature-location.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-location.dialog @@ -1,2 +1,3 @@ -{day} wird es {temperature} Grad in {location} sein -in {location} wird es {day} eine Temperatur von {temperature} Grad erreichen +# auto translated from en-us to de-de +{day} wird es {temperature} Grad in {location} sein +{day}, {location} wird eine Temperatur von {temperature} Grad haben diff --git a/locale/de-de/dialog/daily/daily-temperature-low-local.dialog b/locale/de-de/dialog/daily/daily-temperature-low-local.dialog index e05e7c59..7a928df0 100644 --- a/locale/de-de/dialog/daily/daily-temperature-low-local.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-low-local.dialog @@ -1 +1,3 @@ -{day} wird eine Tiefsttemperatur von {temperature} Grad erreicht. +# auto translated from en-us to de-de +{day} wird es so niedrig wie {temperature} sein +Bei {day} wird die Temperatur bis auf {temperature} Grad sinken. diff --git a/locale/de-de/dialog/daily/daily-temperature-low-location.dialog b/locale/de-de/dialog/daily/daily-temperature-low-location.dialog index 7840c338..911dd27a 100644 --- a/locale/de-de/dialog/daily/daily-temperature-low-location.dialog +++ b/locale/de-de/dialog/daily/daily-temperature-low-location.dialog @@ -1,2 +1,3 @@ -{day} wird eine Tiefsttemperatur von {temperature} Grad in {location} erreicht -in {location} werden minimal {temperature} Grad erwartet +# auto translated from en-us to de-de +{day} wird es in {location} nur noch {temperature} Grad sein +{day}, {location} wird so niedrig wie {temperature} Grad sein diff --git a/locale/de-de/dialog/daily/daily-weather-local.dialog b/locale/de-de/dialog/daily/daily-weather-local.dialog index b6108239..17cb9ce5 100644 --- a/locale/de-de/dialog/daily/daily-weather-local.dialog +++ b/locale/de-de/dialog/daily/daily-weather-local.dialog @@ -1,3 +1,6 @@ -{day} wird {condition} vorausgesagt, mit maximal {high_temperature} und minimal {low_temperature} -{day} werden wir maximal {high_temperature} und minimal {low_temperature} Grad haben, {condition} wird erwartet -Die Vorhersage {day} sieht ein Maximum von {high_temperature} und ein Minimum von {low_temperature}, {condition} ist vorausgesagt +# auto translated from en-us to de-de +Die Prognose {day} ist {condition} mit einem Hoch von {high_temperature} und einem Tief von {low_temperature} +{day} wird es {condition} mit einem Hoch von {high_temperature} und einem Tief von {low_temperature} +{day} ist der Höchstwert {high_temperature} und der Tiefstwert {low_temperature}, mit {condition} +Erwarten Sie {condition}, mit einem Hoch von {high_temperature} und einem Tief von {low_temperature} {day} +{day} erwarten {condition}, mit einem Hoch von {high_temperature} und einem Tief von {low_temperature} diff --git a/locale/de-de/dialog/daily/daily-weather-location.dialog b/locale/de-de/dialog/daily/daily-weather-location.dialog index b2a73188..d42c7f3f 100644 --- a/locale/de-de/dialog/daily/daily-weather-location.dialog +++ b/locale/de-de/dialog/daily/daily-weather-location.dialog @@ -1,3 +1,4 @@ -{day} wird es {condition}, mit maximal {high_temperature} und minimal {low_temperature} Grad in {location} -{day}, {location} wird Höchstwerte von {high_temperature} und Minimalwerte von {low_temperature} Grad haben, mit {condition} -Die Vorhersage für {day} in {location} ist {high_temperature} Grad als höchster und {low_temperature} Grad als niedrigster Wert +# auto translated from en-us to de-de +Die Prognose {day} ist {high_temperature} für ein Hoch und {low_temperature} für ein Tief in {location} +{day} wird {condition} sein, mit einem Hoch von {high_temperature} und einem Tief von {low_temperature} in {location} +{day}, {location} wird einen Höchstwert von {high_temperature} und einen Tiefstwert von {low_temperature} haben, mit {condition} diff --git a/locale/de-de/dialog/daily/daily-wind-light-local.dialog b/locale/de-de/dialog/daily/daily-wind-light-local.dialog index 58b06ea2..cc7d56da 100644 --- a/locale/de-de/dialog/daily/daily-wind-light-local.dialog +++ b/locale/de-de/dialog/daily/daily-wind-light-local.dialog @@ -1,2 +1,3 @@ -#Es wird {day} nicht sehr windig sein -Es wird {day} leichten Wind von {direction} mit {speed} {speed_unit} erwartet +# auto translated from en-us to de-de +Es weht ein leichter Wind aus Richtung {direction} {day} bei {speed} {speed_unit} +Es wird nicht sehr windig sein {day} diff --git a/locale/de-de/dialog/daily/daily-wind-light-location.dialog b/locale/de-de/dialog/daily/daily-wind-light-location.dialog index a1c730ee..44814049 100644 --- a/locale/de-de/dialog/daily/daily-wind-light-location.dialog +++ b/locale/de-de/dialog/daily/daily-wind-light-location.dialog @@ -1,2 +1,3 @@ -Es wird nicht sehr windig {day} in {location} -In {location} wird es {day} keinen Wind geben +# auto translated from en-us to de-de +Es wird ein leichter Wind aus der {direction} in {location} {day} bei {speed} {speed_unit} herrschen. +In {location} {day} wird es nicht sehr windig sein. diff --git a/locale/de-de/dialog/daily/daily-wind-moderate-local.dialog b/locale/de-de/dialog/daily/daily-wind-moderate-local.dialog index 6c62f9ca..c1606f8d 100644 --- a/locale/de-de/dialog/daily/daily-wind-moderate-local.dialog +++ b/locale/de-de/dialog/daily/daily-wind-moderate-local.dialog @@ -1,3 +1,4 @@ -Der Wind wird nicht so schlimm sein, etwa {speed} {speed_unit} {day} -Die Vorhersage sagt {speed} {speed_unit} {day}, nicht zu schlecht -Es könnte Wind bis zu {speed} {speed_unit} {day} geben +# auto translated from en-us to de-de +Die Vorhersage sagt einen mäßigen Wind aus der Richtung {direction} bei {speed} {speed_unit} {day} voraus. +Sie können einen mäßigen Wind von etwa {speed} {speed_unit} {day} erwarten. +Der Wind wird mäßig sein, etwa {speed} {speed_unit} aus der {direction} {day} diff --git a/locale/de-de/dialog/daily/daily-wind-moderate-location.dialog b/locale/de-de/dialog/daily/daily-wind-moderate-location.dialog index d560387d..dd7b6f17 100644 --- a/locale/de-de/dialog/daily/daily-wind-moderate-location.dialog +++ b/locale/de-de/dialog/daily/daily-wind-moderate-location.dialog @@ -1,3 +1,4 @@ -Der Wind wird nicht so schlimm in {location}, etwa {speed} {speed_unit} {day} -laut Vorhersage ist {day} in {location} {speed} {speed_unit}, halb so schlimm -Es könnte {day} Wind bis zu {speed} {speed_unit} in {location} geben +# auto translated from en-us to de-de +Sie können einen Wind von etwa {speed} {speed_unit} in {location} {day} erwarten. +Der Wind wird mäßig sein in {location} {day}, etwa {speed} {speed_unit} aus der {direction} +Die Vorhersage {day} sagt voraus, dass {location} mäßigen Wind aus der {direction} von {speed} {speed_unit} haben wird. diff --git a/locale/de-de/dialog/daily/daily-wind-strong-local.dialog b/locale/de-de/dialog/daily/daily-wind-strong-local.dialog index 7c32969f..04632e5f 100644 --- a/locale/de-de/dialog/daily/daily-wind-strong-local.dialog +++ b/locale/de-de/dialog/daily/daily-wind-strong-local.dialog @@ -1,2 +1,3 @@ -Es wird {speed} {speed_unit} {day} -Der Wind wird so stark sein wie {speed} {speed_unit} {day} +# auto translated from en-us to de-de +Es weht ein starker Wind aus der {direction} von {speed} {speed_unit} {day} +Der Wind wird so stark sein wie {speed} {speed_unit} {day} diff --git a/locale/de-de/dialog/daily/daily-wind-strong-location.dialog b/locale/de-de/dialog/daily/daily-wind-strong-location.dialog index cb17fcff..f694322b 100644 --- a/locale/de-de/dialog/daily/daily-wind-strong-location.dialog +++ b/locale/de-de/dialog/daily/daily-wind-strong-location.dialog @@ -1,2 +1,3 @@ -Es wird {speed} {speed_unit} in {location} {day} sein -Der Wind in {location} wird so stark sein wie {speed} {speed_unit} {day} +# auto translated from en-us to de-de +Es wird ein starker Wind aus der {direction} von {speed} {speed_unit} in {location} {day} herrschen. +Der Wind wird so stark sein wie {speed} {speed_unit} in {location} {day} diff --git a/locale/de-de/dialog/direction/east.dialog b/locale/de-de/dialog/direction/east.dialog index 59807549..b5bd3a5d 100644 --- a/locale/de-de/dialog/direction/east.dialog +++ b/locale/de-de/dialog/direction/east.dialog @@ -1 +1,2 @@ -Osten +# auto translated from en-us to de-de +Osten diff --git a/locale/de-de/dialog/direction/north.dialog b/locale/de-de/dialog/direction/north.dialog index 482b2007..51493c48 100644 --- a/locale/de-de/dialog/direction/north.dialog +++ b/locale/de-de/dialog/direction/north.dialog @@ -1 +1,2 @@ -Norden +# auto translated from en-us to de-de +Norden diff --git a/locale/de-de/dialog/direction/northeast.dialog b/locale/de-de/dialog/direction/northeast.dialog index ae488d8e..4df9dba2 100644 --- a/locale/de-de/dialog/direction/northeast.dialog +++ b/locale/de-de/dialog/direction/northeast.dialog @@ -1 +1,2 @@ -Nordosten +# auto translated from en-us to de-de +Nordosten diff --git a/locale/de-de/dialog/direction/northwest.dialog b/locale/de-de/dialog/direction/northwest.dialog index 8b57cf08..430ec442 100644 --- a/locale/de-de/dialog/direction/northwest.dialog +++ b/locale/de-de/dialog/direction/northwest.dialog @@ -1 +1,2 @@ -Nordwesten +# auto translated from en-us to de-de +Nordwesten diff --git a/locale/de-de/dialog/direction/south.dialog b/locale/de-de/dialog/direction/south.dialog index dcb9a96a..3e7d63ae 100644 --- a/locale/de-de/dialog/direction/south.dialog +++ b/locale/de-de/dialog/direction/south.dialog @@ -1 +1,2 @@ -Süden +# auto translated from en-us to de-de +Süden diff --git a/locale/de-de/dialog/direction/southeast.dialog b/locale/de-de/dialog/direction/southeast.dialog index 017f0b68..2bdad234 100644 --- a/locale/de-de/dialog/direction/southeast.dialog +++ b/locale/de-de/dialog/direction/southeast.dialog @@ -1 +1,2 @@ -Südosten +# auto translated from en-us to de-de +Südosten diff --git a/locale/de-de/dialog/direction/southwest.dialog b/locale/de-de/dialog/direction/southwest.dialog index 9afb287d..d7026dc8 100644 --- a/locale/de-de/dialog/direction/southwest.dialog +++ b/locale/de-de/dialog/direction/southwest.dialog @@ -1 +1,2 @@ -Südwesten +# auto translated from en-us to de-de +Südwesten diff --git a/locale/de-de/dialog/direction/west.dialog b/locale/de-de/dialog/direction/west.dialog index 9ccf5aae..021a8088 100644 --- a/locale/de-de/dialog/direction/west.dialog +++ b/locale/de-de/dialog/direction/west.dialog @@ -1 +1,2 @@ -Westen +# auto translated from en-us to de-de +West diff --git a/locale/de-de/dialog/error/cant-get-forecast.dialog b/locale/de-de/dialog/error/cant-get-forecast.dialog index 59cee0b8..f0c77228 100644 --- a/locale/de-de/dialog/error/cant-get-forecast.dialog +++ b/locale/de-de/dialog/error/cant-get-forecast.dialog @@ -1,2 +1,40 @@ -(Es tut mir leid | Entschuldigung |) Ich (kann | nicht) (erhalte | Zugriff) Wetter (Prognosen | Berichte). -Wetter (Prognosen | Berichte) sind derzeit (nicht verfügbar | nicht verfügbar). +# auto translated from en-us to de-de +Entschuldigung. Ich kann im Moment keine Wetterberichte abrufen. +Es tut mir leid. Ich kann die Wettervorhersage ab sofort nicht mehr aufrufen. +Es tut mir leid. Ich kann ab sofort keine Wetterberichte abrufen. +Ich kann im Moment nicht auf die Wettervorhersage zugreifen. +Entschuldigung. Ich kann jetzt nicht auf die Wettervorhersage zugreifen. +Entschuldigung. Ich kann ab sofort keine Wetterberichte mehr bekommen. +Es tut mir leid. Ich kann ab sofort keine Wettervorhersagen mehr bekommen. +Es tut mir leid. Ich habe gerade keinen Zugriff auf die Wettervorhersage. +Es tut mir leid. Ich kann im Moment nicht auf Wetterberichte zugreifen. +Es tut mir leid. Ich kann im Moment keine Wettervorhersagen bekommen. +Es tut mir leid. Ich kann im Moment nicht auf die Wetterberichte zugreifen. +Es tut mir leid. Ich kann im Moment nicht auf die Wettervorhersage zugreifen. +Ich kann im Moment keine Wetterberichte abrufen. +Auf die Wettervorhersage kann ich ab sofort nicht mehr zugreifen. +Entschuldigung. Ich kann ab sofort nicht mehr auf Wetterberichte zugreifen. +Ich kann im Moment keine Wetterberichte bekommen. +Entschuldigung. Ich kann im Moment nicht auf die Wettervorhersage zugreifen. +Die Wettervorhersage ist derzeit nicht verfügbar. +Es tut mir leid. Ich kann ab sofort keine Wetterberichte mehr bekommen. +Entschuldigung. Ich kann ab sofort keine Wettervorhersagen mehr bekommen. +Entschuldigung. Ich kann im Moment nicht auf die Wetterberichte zugreifen. +Entschuldigung. Ich kann im Moment keine Wettervorhersagen bekommen. +Es tut mir leid. Ich kann im Moment keine Wettervorhersagen abrufen. +Ich kann ab sofort keine Wetterberichte mehr bekommen. +Wetterberichte sind derzeit nicht verfügbar. +Ich kann ab sofort nicht mehr auf Wetterberichte zugreifen. +Ich kann im Moment nicht auf Wetterberichte zugreifen. +Es tut mir leid. Ich kann jetzt nicht auf die Wettervorhersage zugreifen. +Ich kann ab sofort keine Wettervorhersagen mehr bekommen. +Entschuldigung. Ich kann ab sofort nicht mehr auf die Wettervorhersage zugreifen. +Es tut mir leid. Ich kann im Moment keine Wetterberichte abrufen. +Es tut mir leid. Ich kann ab sofort nicht mehr auf Wetterberichte zugreifen. +Entschuldigung. Ich habe gerade keinen Zugang zu den Wettervorhersagen. +Ich kann im Moment keine Wettervorhersagen bekommen. +Entschuldigung. Ich kann im Moment nicht auf Wetterberichte zugreifen. +Entschuldigung. Ich kann im Moment keine Wetterberichte bekommen. +Es tut mir leid. Ich kann im Moment keine Wetterberichte bekommen. +Ich kann die Wettervorhersage nicht mehr abrufen. +Wettervorhersagen sind derzeit nicht verfügbar. diff --git a/locale/de-de/dialog/error/forty-eight-hours-available.dialog b/locale/de-de/dialog/error/forty-eight-hours-available.dialog new file mode 100644 index 00000000..de97194e --- /dev/null +++ b/locale/de-de/dialog/error/forty-eight-hours-available.dialog @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +Leider habe ich nur stündliche Vorhersagedaten für 48 Stunden. diff --git a/locale/de-de/dialog/error/location-not-found.dialog b/locale/de-de/dialog/error/location-not-found.dialog index 81b94cb6..a702bb01 100644 --- a/locale/de-de/dialog/error/location-not-found.dialog +++ b/locale/de-de/dialog/error/location-not-found.dialog @@ -1,3 +1,3 @@ -Ich bin mir nicht sicher, wo das ist -Ich kenne diesen Ort nicht -Ich kenne diesen Ort nicht +# auto translated from en-us to de-de +Ich kann eine Stadt namens {location} nicht finden. Bitte versuchen Sie es erneut +Die Stadt {location} ist nicht in meiner Datenbank gespeichert. Bitte versuchen Sie es erneut diff --git a/locale/de-de/dialog/error/no-forecast.dialog b/locale/de-de/dialog/error/no-forecast.dialog index 0e20dd43..ec4e64a3 100644 --- a/locale/de-de/dialog/error/no-forecast.dialog +++ b/locale/de-de/dialog/error/no-forecast.dialog @@ -1,2 +1,3 @@ -Entschuldigung, ich kenne die Vorhersage für {day} nicht -Ich habe keine Vorhersage für {day} +# auto translated from en-us to de-de +Sorry, ich kenne die Vorhersage nicht {day} +Ich habe keine Vorhersage {day} diff --git a/locale/de-de/dialog/error/seven-days-available.dialog b/locale/de-de/dialog/error/seven-days-available.dialog new file mode 100644 index 00000000..e45fffb3 --- /dev/null +++ b/locale/de-de/dialog/error/seven-days-available.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to de-de +Ich kann Ihnen die Vorhersage für die nächsten sieben Tage nennen. +Ich habe eine Wettervorhersage für sieben Tage zur Verfügung. diff --git a/locale/de-de/dialog/hourly/hourly-condition-expected-local.dialog b/locale/de-de/dialog/hourly/hourly-condition-expected-local.dialog index 478da9a1..021a0fd9 100644 --- a/locale/de-de/dialog/hourly/hourly-condition-expected-local.dialog +++ b/locale/de-de/dialog/hourly/hourly-condition-expected-local.dialog @@ -1,2 +1,2 @@ -# Der abgefragte Zustand wird heute eintreten -Ja, die {time} Vorhersage für sagt {condition} voraus +# auto translated from en-us to de-de +Ja, die {time}-Prognose für sagt {condition} voraus diff --git a/locale/de-de/dialog/hourly/hourly-condition-expected-location.dialog b/locale/de-de/dialog/hourly/hourly-condition-expected-location.dialog index 161b73fc..dcc239df 100644 --- a/locale/de-de/dialog/hourly/hourly-condition-expected-location.dialog +++ b/locale/de-de/dialog/hourly/hourly-condition-expected-location.dialog @@ -1,2 +1,2 @@ -# Die abgefragte Bedingung tritt auf -Ja, es wird {condition} sein um {time} +# auto translated from en-us to de-de +Ja, es wird {condition} dieses {time} sein diff --git a/locale/de-de/dialog/hourly/hourly-precipitation-next-local.dialog b/locale/de-de/dialog/hourly/hourly-precipitation-next-local.dialog index 8d61cb41..b6064373 100644 --- a/locale/de-de/dialog/hourly/hourly-precipitation-next-local.dialog +++ b/locale/de-de/dialog/hourly/hourly-precipitation-next-local.dialog @@ -1,2 +1,3 @@ -es ist zu {percent} um {time} mit {precipitation} zu rechnen. -für {day} ist mit einer wahrscheinlichkeit von {percent} um {time} mit {precipitation} zu rechnen. +# auto translated from en-us to de-de +Die Vorhersage sieht eine {percent} Chance auf {precipitation} bei {time} vor. +Es besteht eine {percent} Chance auf {precipitation} bei {time} diff --git a/locale/de-de/dialog/hourly/hourly-precipitation-next-location.dialog b/locale/de-de/dialog/hourly/hourly-precipitation-next-location.dialog index fac62737..3c1db17a 100644 --- a/locale/de-de/dialog/hourly/hourly-precipitation-next-location.dialog +++ b/locale/de-de/dialog/hourly/hourly-precipitation-next-location.dialog @@ -1,2 +1,3 @@ -in {location} ist zu {percent} mit {precipitation} für {day} zu rechnen -für {day} ist mit einer wahrscheinlichkeit von {percent} mit {precipitation} in {location} zu rechnen +# auto translated from en-us to de-de +Bei {location} besteht eine {percent} Chance auf {precipitation} bei {time} +Die Vorhersage sieht eine {percent} Chance von {precipitation} in {location} bei {time} vor. diff --git a/locale/de-de/dialog/hourly/hourly-temperature-local.dialog b/locale/de-de/dialog/hourly/hourly-temperature-local.dialog index c806283d..8b23e5ee 100644 --- a/locale/de-de/dialog/hourly/hourly-temperature-local.dialog +++ b/locale/de-de/dialog/hourly/hourly-temperature-local.dialog @@ -1,2 +1,3 @@ -Es wird ungefähr {temperature} Grad {time} sein -{time} wird es {temperature} Grad sein +# auto translated from en-us to de-de +Es wird etwa {temperature} Grad in der {time} +Im {time} wird es {temperature} Grad sein diff --git a/locale/de-de/dialog/hourly/hourly-temperature-location.dialog b/locale/de-de/dialog/hourly/hourly-temperature-location.dialog new file mode 100644 index 00000000..0acb4ed8 --- /dev/null +++ b/locale/de-de/dialog/hourly/hourly-temperature-location.dialog @@ -0,0 +1,3 @@ +# auto translated from en-us to de-de +Im {location} wird es etwa {temperature} Grad in der {time} sein +Im {time} wird es {temperature} Grad in {location} sein diff --git a/locale/de-de/dialog/hourly/hourly-weather-local.dialog b/locale/de-de/dialog/hourly/hourly-weather-local.dialog index 2aa1c432..ac5075f0 100644 --- a/locale/de-de/dialog/hourly/hourly-weather-local.dialog +++ b/locale/de-de/dialog/hourly/hourly-weather-local.dialog @@ -1,3 +1,5 @@ -Es wird {condition}, mit Temperaturen nahe {temperature} vorhergesagt -Später wird {condition} vorausgesagt, bei {temperature} Grad -Um die {temperature} Grad und {condition} +# auto translated from en-us to de-de +Später wird es {condition} und um {temperature} Grad sein +Es wird {condition} sein, mit Temperaturen nahe {temperature} +Um {temperature} Grad mit {condition} +Später wird es {condition} und {temperature} Grad sein diff --git a/locale/de-de/dialog/hourly/hourly-weather-location.dialog b/locale/de-de/dialog/hourly/hourly-weather-location.dialog index 8ef1d254..f78e8689 100644 --- a/locale/de-de/dialog/hourly/hourly-weather-location.dialog +++ b/locale/de-de/dialog/hourly/hourly-weather-location.dialog @@ -1,3 +1,5 @@ -in {location} wird in den nächsten Stunden {condition} und {temperature} Grad vorhergesagt -Später gibt es {condition} in {location}, mit Temperaturen um die {temperature} Grad -In {location} werden es ungefähr {temperature} Grad mit {condition} +# auto translated from en-us to de-de +{location} Wetter in den nächsten Stunden werden {condition} und {temperature} Grad sein +{location} wird um {temperature} mit {condition} sein +{location} wird etwa {temperature} Grad mit {condition} sein +Später wird es {condition} in {location} sein, mit Temperaturen um {temperature} diff --git a/locale/de-de/dialog/percentage-number.dialog b/locale/de-de/dialog/percentage-number.dialog index 1ddc3ab3..0283f9dd 100644 --- a/locale/de-de/dialog/percentage-number.dialog +++ b/locale/de-de/dialog/percentage-number.dialog @@ -1 +1,2 @@ -{number} Prozent +# auto translated from en-us to de-de +{number} Prozent diff --git a/locale/de-de/dialog/unit/celsius.dialog b/locale/de-de/dialog/unit/celsius.dialog index a2baa3c4..41e44a1c 100644 --- a/locale/de-de/dialog/unit/celsius.dialog +++ b/locale/de-de/dialog/unit/celsius.dialog @@ -1 +1,2 @@ -Celsius +# auto translated from en-us to de-de +celsius diff --git a/locale/de-de/dialog/unit/fahrenheit.dialog b/locale/de-de/dialog/unit/fahrenheit.dialog index e18f3c15..b8f0f93f 100644 --- a/locale/de-de/dialog/unit/fahrenheit.dialog +++ b/locale/de-de/dialog/unit/fahrenheit.dialog @@ -1 +1,2 @@ -Fahrenheit +# auto translated from en-us to de-de +Fahrenheit diff --git a/locale/de-de/dialog/unit/meters per second.dialog b/locale/de-de/dialog/unit/meters per second.dialog index d265fab7..8c62f10e 100644 --- a/locale/de-de/dialog/unit/meters per second.dialog +++ b/locale/de-de/dialog/unit/meters per second.dialog @@ -1 +1,2 @@ -Meter pro Sekunde +# auto translated from en-us to de-de +Meter pro Sekunde diff --git a/locale/de-de/dialog/unit/miles per hour.dialog b/locale/de-de/dialog/unit/miles per hour.dialog index 48cc2803..c18f1395 100644 --- a/locale/de-de/dialog/unit/miles per hour.dialog +++ b/locale/de-de/dialog/unit/miles per hour.dialog @@ -1 +1,2 @@ -Meilen pro Stunde +# auto translated from en-us to de-de +Meilen pro Stunde diff --git a/locale/de-de/dialog/weekly/weekly-condition.dialog b/locale/de-de/dialog/weekly/weekly-condition.dialog index bdf37f4c..2a01134d 100644 --- a/locale/de-de/dialog/weekly/weekly-condition.dialog +++ b/locale/de-de/dialog/weekly/weekly-condition.dialog @@ -1,2 +1,3 @@ -die vorhersage für {days} ist {condition} -erwarte {days} {condition} +# auto translated from en-us to de-de +Bei {days} erwarten Sie {condition} +Die Prognose sieht {condition} auf {days} vor. diff --git a/locale/de-de/dialog/weekly/weekly-temperature.dialog b/locale/de-de/dialog/weekly/weekly-temperature.dialog index 77baf140..9aae0be1 100644 --- a/locale/de-de/dialog/weekly/weekly-temperature.dialog +++ b/locale/de-de/dialog/weekly/weekly-temperature.dialog @@ -1 +1,2 @@ -Die Tiefs liegen zwischen {low_min} und {low_max}, die Hochs zwischen {high_min} und {high_max} +# auto translated from en-us to de-de +Die Tiefstwerte werden zwischen {low_min} und {low_max} liegen, die Höchstwerte zwischen {high_min} und {high_max} diff --git a/locale/de-de/regex/location.rx b/locale/de-de/regex/location.rx index 3f95d57b..a57deded 100644 --- a/locale/de-de/regex/location.rx +++ b/locale/de-de/regex/location.rx @@ -1 +1 @@ -.*\b(bei|in) (?P(?!\bcelsius\b|\bfahrenheit\b) *.+) +.*\b(bei|in) (?P(?!\bcelsius\b|\bfahrenheit\b) *.+) diff --git a/locale/de-de/vocabulary/condition/clear.voc b/locale/de-de/vocabulary/condition/clear.voc index 2238baaf..73e6e900 100644 --- a/locale/de-de/vocabulary/condition/clear.voc +++ b/locale/de-de/vocabulary/condition/clear.voc @@ -1,3 +1,6 @@ -# Freimachen von Wettertypen, die in der Behandlungsroutine für "Wird es schönes Wetter geben" -(klar|sonnig|Sonne) -(gutes|schönes) Wetter +# auto translated from en-us to de-de +sonnig +schönes Wetter +gutes Wetter +klar +Sonne diff --git a/locale/de-de/vocabulary/condition/clouds.voc b/locale/de-de/vocabulary/condition/clouds.voc index 8ff44946..20aed692 100644 --- a/locale/de-de/vocabulary/condition/clouds.voc +++ b/locale/de-de/vocabulary/condition/clouds.voc @@ -1,2 +1,6 @@ -# Freimachen von Wettertypen, die verwendet werden in der Behandlungsroutine für "Wird es bewölkt sein" -(bewölkt|Wolke|Wolken|wenige Wolken|vereinzelte Wolken) +# auto translated from en-us to de-de +wenige Wolken +Wolke +Wolken +aufgelockerte Bewölkung +bewölkt diff --git a/locale/de-de/vocabulary/condition/do-i-need-an-umbrella.intent b/locale/de-de/vocabulary/condition/do-i-need-an-umbrella.intent new file mode 100644 index 00000000..7e682fba --- /dev/null +++ b/locale/de-de/vocabulary/condition/do-i-need-an-umbrella.intent @@ -0,0 +1,5 @@ +# auto translated from en-us to de-de +Brauche ich eine Regenjacke? +Brauche ich einen Regenschirm? +Sollte ich eine Regenjacke mitbringen? +Soll ich einen Regenschirm mitnehmen? diff --git a/locale/de-de/vocabulary/condition/fog.voc b/locale/de-de/vocabulary/condition/fog.voc index df340d2f..04da9652 100644 --- a/locale/de-de/vocabulary/condition/fog.voc +++ b/locale/de-de/vocabulary/condition/fog.voc @@ -1,4 +1,3 @@ -Nebel -neblig -Nebel -neblig +# auto translated from en-us to de-de +neblig +Nebel diff --git a/locale/de-de/vocabulary/condition/humidity.voc b/locale/de-de/vocabulary/condition/humidity.voc index 9fa7a1e5..c2b9aba7 100644 --- a/locale/de-de/vocabulary/condition/humidity.voc +++ b/locale/de-de/vocabulary/condition/humidity.voc @@ -1,3 +1,4 @@ -feucht -Luftfeuchtigkeit -dampfig +# auto translated from en-us to de-de +feucht +Feuchtigkeit +dampfend diff --git a/locale/de-de/vocabulary/condition/precipitation.voc b/locale/de-de/vocabulary/condition/precipitation.voc index 0ba836c6..48b4f1eb 100644 --- a/locale/de-de/vocabulary/condition/precipitation.voc +++ b/locale/de-de/vocabulary/condition/precipitation.voc @@ -1,5 +1,7 @@ -regnerisch -verregnet -Niederschlag -regnen -regnet es +# auto translated from en-us to de-de +regnerisch +Schnee +Regen +Niederschlag +Nieselregen +verschneit diff --git a/locale/de-de/vocabulary/condition/rain.voc b/locale/de-de/vocabulary/condition/rain.voc index 3c856531..efb2bcc4 100644 --- a/locale/de-de/vocabulary/condition/rain.voc +++ b/locale/de-de/vocabulary/condition/rain.voc @@ -1,2 +1,6 @@ -# Regen Bedingungen welche zum Beispiel in "wird es heute regnen" genutzt werden -(leichter Regen|Regen|Nieselregen|Sprühregen|Niederschlag) +# auto translated from en-us to de-de +regnerisch +Regen +Niederschlag +leichter Regen +Nieselregen diff --git a/locale/de-de/vocabulary/condition/snow.voc b/locale/de-de/vocabulary/condition/snow.voc index 81318473..1a54169d 100644 --- a/locale/de-de/vocabulary/condition/snow.voc +++ b/locale/de-de/vocabulary/condition/snow.voc @@ -1,2 +1,5 @@ -Schneeverhältnisse, wie sie z.B. im Umgang mit "Wird es morgen regnen" verwendet werden -(schnee|schneien|schneeregen|schneeregnen) +# auto translated from en-us to de-de +Schnee +Schneeregen +Graupel +verschneit diff --git a/locale/de-de/vocabulary/condition/thunderstorm.voc b/locale/de-de/vocabulary/condition/thunderstorm.voc index f6774d53..68d14de3 100644 --- a/locale/de-de/vocabulary/condition/thunderstorm.voc +++ b/locale/de-de/vocabulary/condition/thunderstorm.voc @@ -1,2 +1,4 @@ -# Klare Wettertypen im Handler für "Wird es stürmen?" -(Sturm|stürmisch|stürmisch) +# auto translated from en-us to de-de +Stürmung +stürmisch +Sturm diff --git a/locale/de-de/vocabulary/condition/windy.voc b/locale/de-de/vocabulary/condition/windy.voc index 30ee702b..b10ac133 100644 --- a/locale/de-de/vocabulary/condition/windy.voc +++ b/locale/de-de/vocabulary/condition/windy.voc @@ -1,7 +1,8 @@ -Wind -windig -Winde -Windgeschwindigkeit -windig -stürmend -wehend +# auto translated from en-us to de-de +stürmisch +Blasen +Wind +Winde +luftig +Windgeschwindigkeit +windig diff --git a/locale/de-de/vocabulary/date-time/couple.voc b/locale/de-de/vocabulary/date-time/couple.voc index 85ba17ed..09403dda 100644 --- a/locale/de-de/vocabulary/date-time/couple.voc +++ b/locale/de-de/vocabulary/date-time/couple.voc @@ -1,2 +1,2 @@ -wenige -paar +# auto translated from en-us to de-de +Paar diff --git a/locale/de-de/vocabulary/date-time/few.voc b/locale/de-de/vocabulary/date-time/few.voc new file mode 100644 index 00000000..e5b6a932 --- /dev/null +++ b/locale/de-de/vocabulary/date-time/few.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +wenige diff --git a/locale/de-de/vocabulary/date-time/later.voc b/locale/de-de/vocabulary/date-time/later.voc index e6f10c6e..906b8581 100644 --- a/locale/de-de/vocabulary/date-time/later.voc +++ b/locale/de-de/vocabulary/date-time/later.voc @@ -1,7 +1,7 @@ -nächste(n) Stunde -nächsten Stunden -einige(n) Stunden -nächsten paar Stunden -einige Stunden -nächsten Stunden -später +# auto translated from en-us to de-de +nächste Stunden +nächste Stunde +später +wenige Stunden +die nächsten paar Stunden +ein paar Stunden diff --git a/locale/de-de/vocabulary/date-time/next.voc b/locale/de-de/vocabulary/date-time/next.voc index 8fe9de03..f7dc7a39 100644 --- a/locale/de-de/vocabulary/date-time/next.voc +++ b/locale/de-de/vocabulary/date-time/next.voc @@ -1,2 +1,3 @@ -nächste -wieder +# auto translated from en-us to de-de +nächste +wieder diff --git a/locale/de-de/vocabulary/date-time/now.voc b/locale/de-de/vocabulary/date-time/now.voc index 81caa2f6..525b4231 100644 --- a/locale/de-de/vocabulary/date-time/now.voc +++ b/locale/de-de/vocabulary/date-time/now.voc @@ -1,2 +1,3 @@ -Aktuell -jetzt +# auto translated from en-us to de-de +aktuell +jetzt diff --git a/locale/de-de/vocabulary/date-time/number-days.voc b/locale/de-de/vocabulary/date-time/number-days.voc new file mode 100644 index 00000000..69689d11 --- /dev/null +++ b/locale/de-de/vocabulary/date-time/number-days.voc @@ -0,0 +1,33 @@ +# auto translated from en-us to de-de +6-tägig +4 Tage +die nächsten drei Tage +dreitägig +die nächsten fünf Tage +4-tägig +die nächsten sechs Tage +2 Tage +die nächsten 6 Tage +Fünf Tage +sechs Tage +6 Tag +nächste 3 Tage +zwei Tage +die nächsten vier Tage +viertägig +vier Tage +nächste 4 Tage +6 Tage +3-Tage +drei Tage +fünf Tage +2-tägig +die nächsten paar Tage +5-Tage +nächste 5 Tage +zweitägig +5 Tage +die nächsten Tage +3 Tage +die nächsten zwei Tage +nächste 2 Tage diff --git a/locale/de-de/vocabulary/date-time/relative-day.voc b/locale/de-de/vocabulary/date-time/relative-day.voc index 67268b58..fa8ae0c2 100644 --- a/locale/de-de/vocabulary/date-time/relative-day.voc +++ b/locale/de-de/vocabulary/date-time/relative-day.voc @@ -1,25 +1,19 @@ -heute -heutige -morgen -morgige -montag -montags -am montag -dienstag -dienstags -am dienstag -mittwoch -mittwochs -am mittwoch -donnerstag -donnerstags -am donnerstag -freitag -freitags -am freitag -samstag -samstags -am samstag -sonntag -sonntags -am sonntag +# auto translated from en-us to de-de +die gestrige +donnerstag +morgen +am Sonnabend +Freitag +Tage +sonntag +gestern +dienstag +am Sonntag +mittwochs +die morgige +am dienstag +am Montag +montags +donnerstags +samstag +freitags diff --git a/locale/de-de/vocabulary/date-time/relative-time.voc b/locale/de-de/vocabulary/date-time/relative-time.voc index fda10229..f5e378ba 100644 --- a/locale/de-de/vocabulary/date-time/relative-time.voc +++ b/locale/de-de/vocabulary/date-time/relative-time.voc @@ -1,12 +1,7 @@ -früh -morgens -mittag -mittags -nachmittag -nachmittags -abend -abends -nacht -nachts -mitternacht -mitternachts +# auto translated from en-us to de-de +heute Abend +Morgen +Nachmittag +über Nacht +Nacht +Abend diff --git a/locale/de-de/vocabulary/date-time/today.voc b/locale/de-de/vocabulary/date-time/today.voc index f80eda3e..cc71ef10 100644 --- a/locale/de-de/vocabulary/date-time/today.voc +++ b/locale/de-de/vocabulary/date-time/today.voc @@ -1,2 +1,3 @@ -heute -heutig +# auto translated from en-us to de-de +heute +die heutige diff --git a/locale/de-de/vocabulary/date-time/week.voc b/locale/de-de/vocabulary/date-time/week.voc index 9eda3953..7531b2ed 100644 --- a/locale/de-de/vocabulary/date-time/week.voc +++ b/locale/de-de/vocabulary/date-time/week.voc @@ -1,2 +1,3 @@ -Woche -wöchentlich +# auto translated from en-us to de-de +wöchentlich +Woche diff --git a/locale/de-de/vocabulary/date-time/weekend.voc b/locale/de-de/vocabulary/date-time/weekend.voc index 2d4bbd4b..8ccf68f1 100644 --- a/locale/de-de/vocabulary/date-time/weekend.voc +++ b/locale/de-de/vocabulary/date-time/weekend.voc @@ -1 +1,2 @@ -Wochenende +# auto translated from en-us to de-de +Wochenende diff --git a/locale/de-de/vocabulary/forecast.voc b/locale/de-de/vocabulary/forecast.voc index 63628452..dfa12e81 100644 --- a/locale/de-de/vocabulary/forecast.voc +++ b/locale/de-de/vocabulary/forecast.voc @@ -1 +1,2 @@ -Vorhersage +# auto translated from en-us to de-de +Prognose diff --git a/locale/de-de/vocabulary/like.voc b/locale/de-de/vocabulary/like.voc new file mode 100644 index 00000000..84470b49 --- /dev/null +++ b/locale/de-de/vocabulary/like.voc @@ -0,0 +1,2 @@ +# auto translated from en-us to de-de +wie diff --git a/locale/de-de/vocabulary/location.voc b/locale/de-de/vocabulary/location.voc index f8dcdf53..8844313f 100644 --- a/locale/de-de/vocabulary/location.voc +++ b/locale/de-de/vocabulary/location.voc @@ -1,16 +1,16 @@ -Seattle -Los Angeles Kalifornien|Los Angeles|la -Lawrence kansas -Portland, Oregon|Portland -Spokane -New York -Chicago -Houston -Austin -San Diego -San Francisco -San Jose -Boston -Washington D C -Kansas City -Atlanta +# auto translated from en-us to de-de +atlanta +spokane +Seattle +houston +berlin +san francisco +Los Angeles, Kalifornien|los angeles|la +Kansas City +chicago +san jose +portland oregon|portland +Lawrence, Kansas +Austin +san diego +boston diff --git a/locale/de-de/vocabulary/outside.voc b/locale/de-de/vocabulary/outside.voc new file mode 100644 index 00000000..91f4565e --- /dev/null +++ b/locale/de-de/vocabulary/outside.voc @@ -0,0 +1,3 @@ +# auto translated from en-us to de-de +außerhalb +aus diff --git a/locale/de-de/vocabulary/query/confirm-query-current.voc b/locale/de-de/vocabulary/query/confirm-query-current.voc index 0ad8cfdc..8bc1dfde 100644 --- a/locale/de-de/vocabulary/query/confirm-query-current.voc +++ b/locale/de-de/vocabulary/query/confirm-query-current.voc @@ -1,2 +1,3 @@ -ist es -gibt es +# auto translated from en-us to de-de +gibt es +ist es diff --git a/locale/de-de/vocabulary/query/confirm-query-future.voc b/locale/de-de/vocabulary/query/confirm-query-future.voc index 7d153137..f601a3c5 100644 --- a/locale/de-de/vocabulary/query/confirm-query-future.voc +++ b/locale/de-de/vocabulary/query/confirm-query-future.voc @@ -1,8 +1,5 @@ -wird es -werden da -wird es -wird es -wirds -wird es geben -loslegen -wird es geben +# auto translated from en-us to de-de +wird es sein +wird es zu einer +wird es +wird es eine diff --git a/locale/de-de/vocabulary/query/confirm-query.voc b/locale/de-de/vocabulary/query/confirm-query.voc index 13da7ff7..d73b4fa2 100644 --- a/locale/de-de/vocabulary/query/confirm-query.voc +++ b/locale/de-de/vocabulary/query/confirm-query.voc @@ -1,8 +1,6 @@ -ist es -wird es -gibt es -werden da -wird -wird es -werden wir -haben sie +wird es +ist es +ist dort +wird dort +gibt es +haben sie diff --git a/locale/de-de/vocabulary/query/how.voc b/locale/de-de/vocabulary/query/how.voc index fb3b8a5d..84470b49 100644 --- a/locale/de-de/vocabulary/query/how.voc +++ b/locale/de-de/vocabulary/query/how.voc @@ -1 +1,2 @@ -wie +# auto translated from en-us to de-de +wie diff --git a/locale/de-de/vocabulary/query/query.voc b/locale/de-de/vocabulary/query/query.voc index 28a42db3..84dcb433 100644 --- a/locale/de-de/vocabulary/query/query.voc +++ b/locale/de-de/vocabulary/query/query.voc @@ -1,6 +1,5 @@ -wie -was ist -was ist -was wird -erzähle (mir|uns) (etwas über|) -gib mir +wie ist +was ist +was wird +sag (mir|uns) (über|) +erzählen Sie (mir|uns) von diff --git a/locale/de-de/vocabulary/query/when.voc b/locale/de-de/vocabulary/query/when.voc index d47c0692..63df07a4 100644 --- a/locale/de-de/vocabulary/query/when.voc +++ b/locale/de-de/vocabulary/query/when.voc @@ -1,5 +1,6 @@ -wann -wenn es -wann wird es -wann ist es -wann +# auto translated from en-us to de-de +wann wird +wenn +welche Uhrzeit +Wann ist +wann ist diff --git a/locale/de-de/vocabulary/sunrise.voc b/locale/de-de/vocabulary/sunrise.voc index 2ef5f6cf..9ba910f0 100644 --- a/locale/de-de/vocabulary/sunrise.voc +++ b/locale/de-de/vocabulary/sunrise.voc @@ -1,5 +1,5 @@ -Sonnenaufgang -Sonne aufgehen -Dämmerung -Tagesanbruch -Tag anbrechen +# auto translated from en-us to de-de +Morgengrauen +Sonnenaufgang +Tagesanbruch +Tagespause diff --git a/locale/de-de/vocabulary/sunset.voc b/locale/de-de/vocabulary/sunset.voc index 9570ee85..b7f11238 100644 --- a/locale/de-de/vocabulary/sunset.voc +++ b/locale/de-de/vocabulary/sunset.voc @@ -1,3 +1,3 @@ -Sonnenuntergang -Sonne untergehen -Dämmerung +# auto translated from en-us to de-de +Dämmerung +Sonnenuntergang diff --git a/locale/de-de/vocabulary/temperature/cold.voc b/locale/de-de/vocabulary/temperature/cold.voc index 9f22c497..51567130 100644 --- a/locale/de-de/vocabulary/temperature/cold.voc +++ b/locale/de-de/vocabulary/temperature/cold.voc @@ -1,4 +1,5 @@ -kalt -kühl -gefrierend -kühl +# auto translated from en-us to de-de +kalt +cool +chillig +Gefrieren diff --git a/locale/de-de/vocabulary/temperature/high.voc b/locale/de-de/vocabulary/temperature/high.voc index ddea5c5f..2176d2e2 100644 --- a/locale/de-de/vocabulary/temperature/high.voc +++ b/locale/de-de/vocabulary/temperature/high.voc @@ -1,4 +1,5 @@ -Höchstwert -höchste(n|r|s) -Maximum -Maximum +# auto translated from en-us to de-de +max +höchste +maximal +hoch diff --git a/locale/de-de/vocabulary/temperature/hot.voc b/locale/de-de/vocabulary/temperature/hot.voc index 161aa309..444930da 100644 --- a/locale/de-de/vocabulary/temperature/hot.voc +++ b/locale/de-de/vocabulary/temperature/hot.voc @@ -1,2 +1,3 @@ -warm -heiß +# auto translated from en-us to de-de +heiß +warm diff --git a/locale/de-de/vocabulary/temperature/low.voc b/locale/de-de/vocabulary/temperature/low.voc index 4db3325e..9ad5ab06 100644 --- a/locale/de-de/vocabulary/temperature/low.voc +++ b/locale/de-de/vocabulary/temperature/low.voc @@ -1,4 +1,5 @@ -Tiefstwert -niedrigste -Minimum -Minimum +# auto translated from en-us to de-de +niedrig +niedrigste +Minimum +min diff --git a/locale/de-de/vocabulary/temperature/temperature.voc b/locale/de-de/vocabulary/temperature/temperature.voc index d22a4b2d..3876959c 100644 --- a/locale/de-de/vocabulary/temperature/temperature.voc +++ b/locale/de-de/vocabulary/temperature/temperature.voc @@ -1,6 +1,3 @@ -kalt -kühl -kühl -warm -heiß -Temperatur +# auto translated from en-us to de-de +Temperatur +Aushilfe diff --git a/locale/de-de/vocabulary/unit/fahrenheit.voc b/locale/de-de/vocabulary/unit/fahrenheit.voc index e18f3c15..b8f0f93f 100644 --- a/locale/de-de/vocabulary/unit/fahrenheit.voc +++ b/locale/de-de/vocabulary/unit/fahrenheit.voc @@ -1 +1,2 @@ -Fahrenheit +# auto translated from en-us to de-de +Fahrenheit diff --git a/locale/de-de/vocabulary/unit/unit.entity b/locale/de-de/vocabulary/unit/unit.entity index 93f84b90..45db19a7 100644 --- a/locale/de-de/vocabulary/unit/unit.entity +++ b/locale/de-de/vocabulary/unit/unit.entity @@ -1,2 +1,2 @@ -Fahrenheit -Celsius +fahrenheit +celsius diff --git a/locale/de-de/vocabulary/unit/unit.voc b/locale/de-de/vocabulary/unit/unit.voc index 93f84b90..f00590a4 100644 --- a/locale/de-de/vocabulary/unit/unit.voc +++ b/locale/de-de/vocabulary/unit/unit.voc @@ -1,2 +1,3 @@ -Fahrenheit -Celsius +# auto translated from en-us to de-de +Fahrenheit +celsius diff --git a/locale/de-de/vocabulary/weather.voc b/locale/de-de/vocabulary/weather.voc index 28abcec4..22593d58 100644 --- a/locale/de-de/vocabulary/weather.voc +++ b/locale/de-de/vocabulary/weather.voc @@ -1 +1,2 @@ -Wetter +# auto translated from en-us to de-de +Wetter diff --git a/skill/intent.py b/skill/intent.py index a89b1030..c2e9b2f3 100644 --- a/skill/intent.py +++ b/skill/intent.py @@ -17,6 +17,7 @@ from ovos_config.locale import get_default_tz from datetime import datetime, timedelta from neon_utils.location_utils import get_coordinates, get_location, get_timezone +from ovos_utils import LOG from .util import ( get_utterance_datetime, @@ -31,6 +32,7 @@ class WeatherIntent: _geolocation = None _intent_datetime = None _location_datetime = None + _translator = None def __init__(self, message, language): """Constructor @@ -47,6 +49,7 @@ def __init__(self, message, language): def _get_location(self): lat, lng = get_coordinates({"city": self.location}) + # TODO: `get_location` should support non-English requests in the future city, county, state, country = get_location(lat, lng) if not city and county: city = f'{county} county' @@ -59,6 +62,17 @@ def _get_location(self): 'latitude': lat, 'longitude': lng } + if self.language.split('-')[0] != 'en': + LOG.info(f"Translating location names from `en` to " + f"`{self.language}`") + self._location = self._translator.translate_dict( + self._location, self.language.split('-')[0], 'en') + + # TODO: Better patch than this + if city == "Dusseldorf" and self.language.split('-')[0] == 'de': + self._location['city'] = 'Düsseldorf' + + LOG.debug(f"location={self._location}") return self._location @property @@ -74,7 +88,7 @@ def geolocation(self): self._geolocation = dict() else: self._geolocation = self._get_location() - if self._geolocation["city"].lower() not in self.location.lower(): + if not self._geolocation.get("city"): raise LocationNotFoundError(self.location + " is not a city") return self._geolocation From c34fa54c2bc52f9f6bc9355e1366c29749f8ea3d Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 8 Apr 2025 01:53:13 +0000 Subject: [PATCH 10/16] Increment Version to 3.0.1a5 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 43cbd457..3fdb9fef 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a4" +__version__ = "3.0.1a5" From 5eda88e7a8b88d0ec23a25f54e633ef857368e87 Mon Sep 17 00:00:00 2001 From: NeonDmitry <109043283+NeonDmitry@users.noreply.github.com> Date: Wed, 28 May 2025 01:17:59 +0300 Subject: [PATCH 11/16] Intent tests (#68) * Added intent tests * Update skill_tests.yml Updated for intent testing * Update skill.json * Added intent test in correct path * Update test_intents.yaml commits negative, and intent name * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update query.voc * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update location.voc * Update test_intents.yaml * Update location.voc * Update location.voc * Update test_intents.yaml * Update test_intents.yaml * Update query.voc * Update forecast.voc * Update hot.voc * Update test_intents.yaml * Update hot.voc * Update query.voc * Update confirm-query.voc * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Need delete_duplicate * Update to address test failures * Replace test spec removed in a817bf8b6f34a34369fc7601fda6e855d35e3275 * Update test_intents.yaml * Delete test/intent/test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Update test_intents.yaml * Revert bad automated skill.json update * Update skill.json --------- Co-authored-by: NeonDmitry Co-authored-by: Daniel McKnight Co-authored-by: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com> Co-authored-by: NeonDaniel --- .github/workflows/skill_tests.yml | 14 +- locale/pl-pl/vocabulary/forecast.voc | 4 + locale/pl-pl/vocabulary/query/query.voc | 5 + locale/pl-pl/vocabulary/temperature/hot.voc | 9 + locale/uk-ua/vocabulary/location.voc | 90 ++++++++++ .../uk-ua/vocabulary/query/confirm-query.voc | 10 ++ locale/uk-ua/vocabulary/query/query.voc | 3 + locale/uk-ua/vocabulary/temperature/hot.voc | 3 + .../requirements.txt | 0 requirements/test.txt | 1 + setup.py | 5 +- skill.json | 6 +- test/test_intents.yaml | 157 ++++++++++++++++++ 13 files changed, 296 insertions(+), 11 deletions(-) rename requirements.txt => requirements/requirements.txt (100%) create mode 100644 requirements/test.txt create mode 100644 test/test_intents.yaml diff --git a/.github/workflows/skill_tests.yml b/.github/workflows/skill_tests.yml index 0b3e2dc7..ae43ce85 100644 --- a/.github/workflows/skill_tests.yml +++ b/.github/workflows/skill_tests.yml @@ -8,13 +8,13 @@ on: jobs: py_build_tests: uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master -# skill_unit_tests: -# uses: neongeckocom/.github/.github/workflows/skill_tests.yml@master -# skill_intent_tests: -# uses: neongeckocom/.github/.github/workflows/skill_test_intents.yml@master -# skill_resource_tests: -# uses: neongeckocom/.github/.github/workflows/skill_test_resources.yml@master + # skill_unit_tests: + # uses: neongeckocom/.github/.github/workflows/skill_tests.yml@master + skill_intent_tests: + uses: neongeckocom/.github/.github/workflows/skill_test_intents.yml@master + # skill_resource_tests: + # uses: neongeckocom/.github/.github/workflows/skill_test_resources.yml@master skill_install_tests: uses: neongeckocom/.github/.github/workflows/skill_test_installation.yml@master with: - test_osm: false \ No newline at end of file + test_osm: false diff --git a/locale/pl-pl/vocabulary/forecast.voc b/locale/pl-pl/vocabulary/forecast.voc index 4cbef298..4fbd88d4 100644 --- a/locale/pl-pl/vocabulary/forecast.voc +++ b/locale/pl-pl/vocabulary/forecast.voc @@ -1,2 +1,6 @@ # auto translated from en-us to pl-pl prognoza +prognozę +prognozy +prognozie +prognozach diff --git a/locale/pl-pl/vocabulary/query/query.voc b/locale/pl-pl/vocabulary/query/query.voc index 45f7f238..1dc69af4 100644 --- a/locale/pl-pl/vocabulary/query/query.voc +++ b/locale/pl-pl/vocabulary/query/query.voc @@ -8,3 +8,8 @@ co to jest co opowiedz mi o co będzie +powiedz +prognoza +prognozę +powiedz prognozę +na jutro diff --git a/locale/pl-pl/vocabulary/temperature/hot.voc b/locale/pl-pl/vocabulary/temperature/hot.voc index 15e010e2..1b12cda1 100644 --- a/locale/pl-pl/vocabulary/temperature/hot.voc +++ b/locale/pl-pl/vocabulary/temperature/hot.voc @@ -1,3 +1,12 @@ # auto translated from en-us to pl-pl ciepły gorący +gorąco +goracy +gorąca +gorące +upał +upalnie +upalny +upalna +upalne diff --git a/locale/uk-ua/vocabulary/location.voc b/locale/uk-ua/vocabulary/location.voc index 34c7c723..22e2bd56 100644 --- a/locale/uk-ua/vocabulary/location.voc +++ b/locale/uk-ua/vocabulary/location.voc @@ -14,3 +14,93 @@ Х'юстон бостон Лоуренс, штат Канзас +запоріжжя +запоріжжі +київ +києві +львів +львові +харків +харкові +дніпро +дніпрі +чернівці +чернівцях +івано-франківськ +івано-франківську +одеса +одесі +миколаїв +миколаєві +маріуполь +маріуполі +луганськ +луганську +вінниця +вінниці +макіївка +макіївці +сімферополь +сімферополі +полтава +полтаві +черкаси +черкасах +чернігів +чернігові +житомир +житомирі +суми +сумах +ровно +рівному +херсон +херсоні +кропивницький +кропивницькому +кам'янське +кам'янському +тернопіль +тернополі +кременчук +кременчуці +ужгород +ужгороді +біла церква +білій церкві +мелітополь +мелітополі +керч +керчі +євпаторія +євпаторії +бердянськ +бердянську +алчевськ +алчевську +сєвєродонецьк +сєвєродонецьку +славянськ +славянську +павлоград +павлограді +сєверодонецьк +сєверодонецьку +лисичанськ +лисичанську +бровари +броварах +калуш +калуші +нікополь +нікополі +смела +смелі +енергодар +енергодарі +коростень +коростені +коломия +коломиї +мукачево +мукачеві diff --git a/locale/uk-ua/vocabulary/query/confirm-query.voc b/locale/uk-ua/vocabulary/query/confirm-query.voc index d6b4fd10..2d6c7396 100644 --- a/locale/uk-ua/vocabulary/query/confirm-query.voc +++ b/locale/uk-ua/vocabulary/query/confirm-query.voc @@ -7,3 +7,13 @@ чи буде там чи є буде +наскільки +настільки +спекотно +спекотний +жарко +холодно +тепло +теплий +гарячо +гарячий diff --git a/locale/uk-ua/vocabulary/query/query.voc b/locale/uk-ua/vocabulary/query/query.voc index 51e181f4..a0658310 100644 --- a/locale/uk-ua/vocabulary/query/query.voc +++ b/locale/uk-ua/vocabulary/query/query.voc @@ -1,5 +1,6 @@ # auto translated from en-us to uk-ua як +скажи Скажи мені. розкажіть нам про що @@ -8,3 +9,5 @@ Розкажи мені про Скажи нам. Дай мені +наскільки +настільки diff --git a/locale/uk-ua/vocabulary/temperature/hot.voc b/locale/uk-ua/vocabulary/temperature/hot.voc index c2c97002..27fdb84e 100644 --- a/locale/uk-ua/vocabulary/temperature/hot.voc +++ b/locale/uk-ua/vocabulary/temperature/hot.voc @@ -1,3 +1,6 @@ # auto translated from en-us to uk-ua теплий гарячий +спекотно +спекотний +жарко diff --git a/requirements.txt b/requirements/requirements.txt similarity index 100% rename from requirements.txt rename to requirements/requirements.txt diff --git a/requirements/test.txt b/requirements/test.txt new file mode 100644 index 00000000..f2a694a8 --- /dev/null +++ b/requirements/test.txt @@ -0,0 +1 @@ +neon-minerva[padatious]~=0.3 diff --git a/setup.py b/setup.py index bd78bf86..30ae8158 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,10 @@ def find_resource_files(): version=version, url=f'https://github.com/NeonGeckoCom/{SKILL_NAME}', license='BSD-3-Clause', - install_requires=get_requirements("requirements.txt"), + install_requires=get_requirements("requirements/requirements.txt"), + extras_require={ + 'test': get_requirements("requirements/test.txt") + }, author='Neongecko', author_email='developers@neon.ai', long_description=long_description, diff --git a/skill.json b/skill.json index e0c66a01..ba57f873 100644 --- a/skill.json +++ b/skill.json @@ -1,6 +1,6 @@ { "title": "Weather", - "url": "https://github.com/NeonDmitry/skill-weather", + "url": "https://github.com/NeonGeckoCom/skill-weather_intents", "summary": "Get current weather and forecast info.", "short_description": "Get current weather and forecast info.", "description": "This skill provides current weather information at different locations and forecasts up to 5 days. Use of this skill requires use of third-party APIs. If you do not have access to Neon API servers, you may access the Alpha Vantage API directly by providing a key in `~/owm.txt`. You can generate an Open Weather Map key [here](https://home.openweathermap.org/users/sign_up)", @@ -41,8 +41,8 @@ "NeonDaniel", "reginaneon" ], - "skillname": "skill-weather", - "authorname": "NeonDmitry", + "skillname": "skill-weather_intents", + "authorname": "NeonGeckoCom", "foldername": null, "troubleshooting": "Try asking for a different location or changing your default location by saying `Neon change my location to Seattle`." } \ No newline at end of file diff --git a/test/test_intents.yaml b/test/test_intents.yaml new file mode 100644 index 00000000..3d96db2e --- /dev/null +++ b/test/test_intents.yaml @@ -0,0 +1,157 @@ +en-us: + HandleCurrentWeather: + - what is the weather + - how is the weather + - tell me the weather + - what's the weather like + - what is the weather in new york: + - location: new york + - how is the weather in london + - what's the weather like in tokyo: + - location: tokyo + + HandleOneDayForecast: + - what's the weather forecast for tomorrow + - tell me the forecast for tomorrow + - what is the forecast for tomorrow + - what is the forecast for tomorrow in new york: + - location: new york + - what's the weather forecast for tomorrow in london: + - location: london + - tell me the forecast for tomorrow in paris: + - location: paris + - what is the forecast for tomorrow in tokyo: + - location: tokyo + + HandleWeatherLater: + - what is the weather later + - how is the weather later + - tell me the weather later + - what's the weather like later + - what is the weather later in new york: + - location: new york + - how is the weather later in london: + - location: london + - tell me the weather later in paris: + - location: paris + - what's the weather like later in tokyo: + - location: tokyo + + HandleWeekendForecast: + - what is the weather this weekend + - how is the weather this weekend + - tell me the weather this weekend + - what's the weather like this weekend + - what is the weather this weekend in new york: + - location: new york + - how is the weather this weekend in london: + - location: london + - tell me the weather this weekend in paris: + - location: paris + - what's the weather like this weekend in tokyo: + - location: tokyo + + HandleLikeOutside: + - what's it like outside + - what's it like outside in new york: + - location: new york + + +uk-ua: + HandleCurrentWeather: + - яка погода + - як погода + - яка погода зараз + - яка погода у києві: + - location: києві + - як погода у львові: + - location: львові + - яка погода зараз у харкові: + - location: харкові + - який прогноз + - який прогноз погоди + - скажи прогноз + - який прогноз погоди у дніпрі: + - location: дніпрі + - скажи прогноз для запоріжжя: + - location: запоріжжя + + HandleOneDayForecast: + - який прогноз на завтра + - скажи прогноз на завтра + - який прогноз погоди на завтра + - який прогноз на завтра у києві: + - location: києві + - який прогноз на завтра у львові: + - location: львові + - який прогноз на завтра у харкові: + - location: харкові + + HandleCurrentTemperature: + - яка температура + - яка температура зараз + - яка температура на вулиці + - яка температура у києві: + - location: києві + - яка температура у львові: + - location: львові + - яка температура у харкові: + - location: харкові + + + +pl-pl: + HandleCurrentWeather: + - jaka jest pogoda + - jak jest pogoda + - powiedz jaka jest pogoda + - jaka jest teraz pogoda + - jaka jest pogoda w warszawie: + - location: warszawie + - jak jest pogoda w krakowie: + - location: krakowie + - powiedz jaka jest pogoda w poznaniu: + - location: poznaniu + - jaka jest teraz pogoda w gdańsku: + - location: gdańsku + + HandleOneDayForecast: + - jaka jest prognoza na jutro + - powiedz prognozę na jutro + - jaka jest prognoza pogody na jutro + - jaka jest prognoza na jutro w warszawie: + - location: warszawie + - jaka jest prognoza na jutro w krakowie: + - location: krakowie + - powiedz prognozę na jutro w poznaniu: + - location: poznaniu + + HandleCurrentTemperature: + - jaka jest temperatura + - jaka jest temperatura na zewnątrz + - jaka jest temperatura w katowicach: + - location: katowicach + + +# unmatched intents: +# en-us: +# - what is weather +# - how is the movie +# - tell me the time +# - what's the date +# - translate weather to ukrainian +# - what is the forecast for thanksgiving +# uk-ua: +# - що таке погода +# - як фільм +# - скажи час +# - яка дата +# - переклади погоду на англійську +# - який прогноз на День подяки +# pl-pl: +# - co to jest pogoda +# - jak jest film +# - powiedz godzinę +# - jaka jest data +# - przetłumacz pogodę na angielski +# - jaka jest prognoza na święto dziękczynienia From b224ba0aa65b74c71c3a8f81149972ff0821d3f2 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 27 May 2025 22:18:15 +0000 Subject: [PATCH 12/16] Increment Version to 3.0.1a6 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 3fdb9fef..eb636c82 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a5" +__version__ = "3.0.1a6" From 97a23def6124a8cc4a3021a8ed1169cefbbea00b Mon Sep 17 00:00:00 2001 From: Daniel McKnight <34697904+NeonDaniel@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:05:54 -0700 Subject: [PATCH 13/16] Fix translation typo (#70) * Remove stray "test" line from translated resource file * Update skill.json * Skip failing OVOS intent tests --------- Co-authored-by: NeonDaniel --- .github/workflows/skill_tests.yml | 2 ++ locale/de-de/dialog/condition/clear sky.dialog | 1 - skill.json | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/skill_tests.yml b/.github/workflows/skill_tests.yml index ae43ce85..64a80549 100644 --- a/.github/workflows/skill_tests.yml +++ b/.github/workflows/skill_tests.yml @@ -12,6 +12,8 @@ jobs: # uses: neongeckocom/.github/.github/workflows/skill_tests.yml@master skill_intent_tests: uses: neongeckocom/.github/.github/workflows/skill_test_intents.yml@master + with: + ovos_versions: "[]" # skill_resource_tests: # uses: neongeckocom/.github/.github/workflows/skill_test_resources.yml@master skill_install_tests: diff --git a/locale/de-de/dialog/condition/clear sky.dialog b/locale/de-de/dialog/condition/clear sky.dialog index 7ea72167..39e5a15b 100644 --- a/locale/de-de/dialog/condition/clear sky.dialog +++ b/locale/de-de/dialog/condition/clear sky.dialog @@ -1,2 +1 @@ Klarer Himmel -test diff --git a/skill.json b/skill.json index ba57f873..d5f8d5aa 100644 --- a/skill.json +++ b/skill.json @@ -1,6 +1,6 @@ { "title": "Weather", - "url": "https://github.com/NeonGeckoCom/skill-weather_intents", + "url": "https://github.com/NeonGeckoCom/skill-weather", "summary": "Get current weather and forecast info.", "short_description": "Get current weather and forecast info.", "description": "This skill provides current weather information at different locations and forecasts up to 5 days. Use of this skill requires use of third-party APIs. If you do not have access to Neon API servers, you may access the Alpha Vantage API directly by providing a key in `~/owm.txt`. You can generate an Open Weather Map key [here](https://home.openweathermap.org/users/sign_up)", @@ -41,7 +41,7 @@ "NeonDaniel", "reginaneon" ], - "skillname": "skill-weather_intents", + "skillname": "skill-weather", "authorname": "NeonGeckoCom", "foldername": null, "troubleshooting": "Try asking for a different location or changing your default location by saying `Neon change my location to Seattle`." From 0f4115f2ffd4fb2f93cd1199bfe18d00f6fb4720 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 12 Aug 2025 01:06:10 +0000 Subject: [PATCH 14/16] Increment Version to 3.0.1a7 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index eb636c82..2c270092 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a6" +__version__ = "3.0.1a7" From e9d4e9270565f7221e619e283ee70f046865681a Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 12 Aug 2025 01:13:05 +0000 Subject: [PATCH 15/16] Increment Version to 3.1.0 --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 2c270092..942e3330 100644 --- a/version.py +++ b/version.py @@ -26,4 +26,4 @@ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "3.0.1a7" +__version__ = "3.1.0" From adf8d4d3a0a5e0dbb56a0f36bfb15d320c2bb678 Mon Sep 17 00:00:00 2001 From: NeonDaniel Date: Tue, 12 Aug 2025 01:13:29 +0000 Subject: [PATCH 16/16] Update Changelog --- CHANGELOG.md | 55 ++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 43 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d8c3234..b084215e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,33 +1,64 @@ # Changelog -## [3.0.0](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.0) (2024-07-10) +## [3.0.1a7](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a7) (2025-08-12) -[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/2.0.1a2...3.0.0) +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a6...3.0.1a7) -**Fixed bugs:** +**Merged pull requests:** + +- Fix translation typo [\#70](https://github.com/NeonGeckoCom/skill-weather/pull/70) ([NeonDaniel](https://github.com/NeonDaniel)) + +## [3.0.1a6](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a6) (2025-05-27) + +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a5...3.0.1a6) + +**Merged pull requests:** + +- Intent tests [\#68](https://github.com/NeonGeckoCom/skill-weather/pull/68) ([NeonDmitry](https://github.com/NeonDmitry)) + +## [3.0.1a5](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a5) (2025-04-08) + +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a4...3.0.1a5) + +**Merged pull requests:** + +- German translation [\#67](https://github.com/NeonGeckoCom/skill-weather/pull/67) ([NeonDmitry](https://github.com/NeonDmitry)) + +## [3.0.1a4](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a4) (2025-03-20) + +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a3...3.0.1a4) + +**Merged pull requests:** + +- Ukrainian fix translation [\#66](https://github.com/NeonGeckoCom/skill-weather/pull/66) ([NeonDmitry](https://github.com/NeonDmitry)) + +## [3.0.1a3](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a3) (2025-03-20) + +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a2...3.0.1a3) + +**Merged pull requests:** -- \[BUG\] Weather token is expired [\#56](https://github.com/NeonGeckoCom/skill-weather/issues/56) -- \[BUG\] Trying to query weather forecast failed [\#48](https://github.com/NeonGeckoCom/skill-weather/issues/48) +- Polish translation [\#65](https://github.com/NeonGeckoCom/skill-weather/pull/65) ([NeonDmitry](https://github.com/NeonDmitry)) -## [2.0.1a2](https://github.com/NeonGeckoCom/skill-weather/tree/2.0.1a2) (2024-05-15) +## [3.0.1a2](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a2) (2025-03-11) -[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/2.0.1a1...2.0.1a2) +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.1a1...3.0.1a2) **Fixed bugs:** -- \[BUG\] Incorrect sunset time [\#47](https://github.com/NeonGeckoCom/skill-weather/issues/47) +- \[BUG\] Weather conditions are always reported in English [\#61](https://github.com/NeonGeckoCom/skill-weather/issues/61) **Merged pull requests:** -- Fix timezone handling [\#54](https://github.com/NeonGeckoCom/skill-weather/pull/54) ([NeonDaniel](https://github.com/NeonDaniel)) +- Update automation, gitignore, and license notices [\#63](https://github.com/NeonGeckoCom/skill-weather/pull/63) ([NeonDaniel](https://github.com/NeonDaniel)) -## [2.0.1a1](https://github.com/NeonGeckoCom/skill-weather/tree/2.0.1a1) (2024-05-14) +## [3.0.1a1](https://github.com/NeonGeckoCom/skill-weather/tree/3.0.1a1) (2025-01-27) -[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/2.0.0...2.0.1a1) +[Full Changelog](https://github.com/NeonGeckoCom/skill-weather/compare/3.0.0...3.0.1a1) **Merged pull requests:** -- Resolve deprecation warnings and general cleanup [\#53](https://github.com/NeonGeckoCom/skill-weather/pull/53) ([NeonDaniel](https://github.com/NeonDaniel)) +- Update `IntentBuilder` to import from `ovos_workshop` [\#59](https://github.com/NeonGeckoCom/skill-weather/pull/59) ([NeonDaniel](https://github.com/NeonDaniel))