diff --git a/.github/workflows/skill_tests.yml b/.github/workflows/skill_tests.yml index 0b3e2dc7f..64a805490 100644 --- a/.github/workflows/skill_tests.yml +++ b/.github/workflows/skill_tests.yml @@ -8,13 +8,15 @@ 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 + with: + ovos_versions: "[]" + # 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/.github/workflows/update_skill_json.yml b/.github/workflows/update_skill_json.yml index b2c8b9379..6630df62b 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 8ae56fbfb..efa407c35 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/CHANGELOG.md b/CHANGELOG.md index 2d8c32343..b084215e9 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)) diff --git a/LICENSE.md b/LICENSE.md index 525bb37e5..0fdcf7678 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 27fcdfe36..cf1e131aa 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 @@ -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, @@ -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 c7d3bb559..31c60b8de 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 new file mode 100644 index 000000000..9325dd650 --- /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 39e5a15bf..9325dd650 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 000000000..571d50126 --- /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 000000000..ea7303d90 --- /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 5194df78a..d4583b0f7 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 a695f1659..7fbc75bdf 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 f7eb69e6d..ed0509f0c 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 2eb952416..b8b7c9d03 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 931036b6a..6510adaf3 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 44e0e45cf..bd59f926b 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 414da4789..8d05a5c23 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 147dc638e..2fa0c15c2 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 397845918..7b65ea25e 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 053441c64..80b8b729a 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 2a4037153..6cac9cb70 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 565f46d3e..ffa0ab8ed 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 7ea4a618f..0bc1fb21b 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 b85df30ed..772c5de2a 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 f177f2de5..0bc1fb21b 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 d3f0ad2ba..74ac39beb 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 a25ed09a7..7b4f4fad6 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 c980dd5d6..508c58349 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 e6ab085f6..c5187d342 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 7c60256ab..75f36db96 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 3e3542ba1..f0cbb7cef 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 0c1818a4e..4d0fcd87f 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 bcdeadb47..c02200090 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 a27e018cd..f5dfca657 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 df01462ca..963a13571 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 4063f9ff2..590cb7510 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 3c9a1d6c7..ca0acfe62 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 e55f8c721..732b63d89 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 70c873ec7..8a0813cfa 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 40bb8b31e..8408ae6a1 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 2589d1b94..3e8e41282 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 a28eec2ab..825d1eceb 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 0e8cc9c5b..9df844a6b 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 993c4dba5..5321403d3 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 000000000..2dd1a2166 --- /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 8befa7966..b7b7796f1 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 7b19ee787..f9e73b294 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 e33a3a253..b6eb950f7 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 c13f2f218..2eed09bcb 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 2a7619026..235c09291 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 554713c9f..bbbda0f39 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 e82c60344..206ea2441 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 fac62737c..596c59479 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 121ca1ea8..6b39caa40 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 70f99cd7c..6b981d185 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 2a6a084a6..e54627962 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 86212a566..aee0d447a 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 809739a36..edc1f37bc 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 4a9478858..728cce4dd 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 b51549bc5..431b69a08 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 fdc261ae0..805ad97f7 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 2a79a4edd..fa5ee3ad9 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 978b2096c..532a7adc1 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 e05e7c593..7a928df06 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 7840c3383..911dd27ac 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 b6108239c..17cb9ce55 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 b2a73188e..d42c7f3f4 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 58b06ea29..cc7d56dac 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 a1c730ee0..448140490 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 6c62f9ca1..c1606f8dd 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 d560387d6..dd7b6f17a 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 7c32969fa..04632e5fe 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 cb17fcff2..f694322b4 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 598075492..b5bd3a5df 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 482b2007e..51493c487 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 ae488d8e9..4df9dba26 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 8b57cf088..430ec442f 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 dcb9a96a5..3e7d63ae9 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 017f0b68f..2bdad234b 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 9afb287d7..d7026dc80 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 9ccf5aae2..021a80884 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 59cee0b87..f0c77228d 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 000000000..de97194e8 --- /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 81b94cb60..a702bb014 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 0e20dd432..ec4e64a3c 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 000000000..e45fffb3f --- /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 478da9a12..021a0fd99 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 161b73fc9..dcc239df9 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 8d61cb410..b60643735 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 fac62737c..3c1db17a8 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 c806283db..8b23e5ee9 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 000000000..0acb4ed87 --- /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 2aa1c4322..ac5075f08 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 8ef1d2549..f78e86894 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 1ddc3ab3f..0283f9dd3 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 a2baa3c4f..41e44a1c3 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 e18f3c155..b8f0f93f6 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 d265fab7f..8c62f10e3 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 48cc28033..c18f13953 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 bdf37f4ce..2a01134df 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 77baf140f..9aae0be17 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 3f95d57b8..a57deded6 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 2238baafb..73e6e9005 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 8ff44946a..20aed6921 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 000000000..7e682fbad --- /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 df340d2f2..04da96525 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 9fa7a1e57..c2b9aba7c 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 0ba836c6d..48b4f1eb3 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 3c8565317..efb2bcc44 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 813184734..1a54169dd 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 f6774d534..68d14de3c 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 30ee702b3..b10ac133f 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 85ba17edc..09403dda7 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 000000000..e5b6a9326 --- /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 e6f10c6e4..906b85810 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 8fe9de038..f7dc7a394 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 81caa2f65..525b42312 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 000000000..69689d11e --- /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 67268b580..fa8ae0c2b 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 fda102294..f5e378ba6 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 f80eda3eb..cc71ef103 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 9eda3953b..7531b2ede 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 2d4bbd4b4..8ccf68f13 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 63628452f..dfa12e81e 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 000000000..84470b49f --- /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 f8dcdf534..8844313f5 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 000000000..91f4565ea --- /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 0ad8cfdc8..8bc1dfdee 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 7d1531371..f601a3c5c 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 13da7ff7c..d73b4fa28 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 fb3b8a5d1..84470b49f 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 28a42db3e..84dcb4337 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 d47c06927..63df07a49 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 2ef5f6cf7..9ba910f0e 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 9570ee85a..b7f112388 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 9f22c4978..51567130a 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 ddea5c5ff..2176d2e22 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 161aa3091..444930da7 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 4db3325eb..9ad5ab065 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 d22a4b2d7..3876959c7 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 e18f3c155..b8f0f93f6 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 93f84b90c..45db19a74 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 93f84b90c..f00590a4e 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 28abcec4f..22593d582 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/locale/pl-pl/dialog/and.dialog b/locale/pl-pl/dialog/and.dialog new file mode 100644 index 000000000..dbf03f551 --- /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 000000000..1c826cb0b --- /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 000000000..1c826cb0b --- /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 000000000..4cece2f4d --- /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 000000000..98949bfb6 --- /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 000000000..f866985bb --- /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 000000000..e01be89d1 --- /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 000000000..b820a4ef6 --- /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 000000000..fabdfe817 --- /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 000000000..f323b71bb --- /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 000000000..11423cd0f --- /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 000000000..4999dec61 --- /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 000000000..c44dc794f --- /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 000000000..4b4783d49 --- /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 000000000..7f3aea6ed --- /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 000000000..2902bd5e7 --- /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 000000000..f450f4e64 --- /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 000000000..19a579443 --- /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 000000000..3fd4a34cb --- /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 000000000..89db1580f --- /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 000000000..4837db3b7 --- /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 000000000..8c27bae40 --- /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 000000000..2acb4ea96 --- /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 000000000..cb80886b4 --- /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 000000000..6686fa9ed --- /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 000000000..40e13dddb --- /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 000000000..11b4266b7 --- /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 000000000..41eb59bbf --- /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 000000000..a673e3000 --- /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 000000000..4260dbd12 --- /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 000000000..cebb26901 --- /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 000000000..0e9990edc --- /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 000000000..304646250 --- /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 000000000..fdff920f5 --- /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 000000000..772978143 --- /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 000000000..72008fbf9 --- /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 000000000..c71c8c308 --- /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 000000000..bfb00bf50 --- /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 000000000..e301d7871 --- /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 000000000..82922fb8f --- /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 000000000..04d0be89b --- /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 000000000..99eb99e4f --- /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 000000000..99b7670a5 --- /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 000000000..756490794 --- /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 000000000..69953338a --- /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 000000000..4930ac14e --- /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 000000000..528bca775 --- /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 000000000..b75e523e5 --- /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 000000000..6923f8b3e --- /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 000000000..da2a648be --- /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 000000000..c7f078eb7 --- /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 000000000..a78b4408c --- /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 000000000..01f908b64 --- /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 000000000..bc128e223 --- /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 000000000..2e5ecd52d --- /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 000000000..3e9eb0967 --- /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 000000000..e23a90484 --- /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 000000000..b7ed30ee2 --- /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 000000000..e68fa19ff --- /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 000000000..c0e6a9e74 --- /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 000000000..feef92b88 --- /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 000000000..c3c54f390 --- /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 000000000..706a6bf09 --- /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 000000000..4447674a4 --- /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 000000000..2fa2129fa --- /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 000000000..44da26ead --- /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 000000000..4b3330d44 --- /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 000000000..79c527186 --- /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 000000000..e3d933793 --- /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 000000000..e3fbc9dfb --- /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 000000000..fa406e3f8 --- /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 000000000..a0a8d877e --- /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 000000000..6a50dd00f --- /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 000000000..cabbc5e3b --- /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 000000000..2e6443a96 --- /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 000000000..e5c890e6c --- /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 000000000..7f2e57fdc --- /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 000000000..482df1f7b --- /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 000000000..9b3db3cdc --- /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 000000000..8f33dafad --- /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 000000000..038f648eb --- /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 000000000..953fb5925 --- /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 000000000..1977d2d56 --- /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 000000000..3e2a78884 --- /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 000000000..c2560a68a --- /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 000000000..afdb92f50 --- /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 000000000..d25a1a4f6 --- /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 000000000..e28237c74 --- /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 000000000..ea1e5ec42 --- /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 000000000..9dc203b4c --- /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 000000000..fe8608a3a --- /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 000000000..8a7f8cc93 --- /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 000000000..ce33eba78 --- /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 000000000..660e595d6 --- /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 000000000..9515550da --- /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 000000000..51cc5a397 --- /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 000000000..440ee867c --- /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 000000000..fbe1f7e18 --- /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 000000000..9265c683b --- /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 000000000..3a0be26ac --- /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 000000000..eea75698d --- /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 000000000..f85329a7d --- /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 000000000..11e062fb0 --- /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 000000000..4bca63738 --- /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 000000000..88e5fe0fd --- /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 000000000..01a745b95 --- /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 000000000..b39dcb8c2 --- /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 000000000..b4f8a00f4 --- /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 000000000..800500cad --- /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 000000000..620ad14a7 --- /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 000000000..d0ea924c9 --- /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 000000000..b01a72455 --- /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 000000000..13e7f91ae --- /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 000000000..767447f20 --- /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 000000000..0e0ff8e6c --- /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 000000000..8322e71b2 --- /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 000000000..4fbd88d46 --- /dev/null +++ b/locale/pl-pl/vocabulary/forecast.voc @@ -0,0 +1,6 @@ +# auto translated from en-us to pl-pl +prognoza +prognozę +prognozy +prognozie +prognozach diff --git a/locale/pl-pl/vocabulary/like.voc b/locale/pl-pl/vocabulary/like.voc new file mode 100644 index 000000000..f09d812d0 --- /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 000000000..06d949ce3 --- /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 000000000..b1e0c3706 --- /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 000000000..6d4b288c3 --- /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 000000000..0549dd41e --- /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 000000000..e0c958aba --- /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 000000000..f09d812d0 --- /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 000000000..1dc69af4b --- /dev/null +++ b/locale/pl-pl/vocabulary/query/query.voc @@ -0,0 +1,15 @@ +# 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 +powiedz +prognoza +prognozę +powiedz prognozę +na jutro diff --git a/locale/pl-pl/vocabulary/query/when.voc b/locale/pl-pl/vocabulary/query/when.voc new file mode 100644 index 000000000..c9f016ea9 --- /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 000000000..fcb64e272 --- /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 000000000..f3d4b21ac --- /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 000000000..7322a660b --- /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 000000000..2e65ae6d0 --- /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 000000000..1b12cda17 --- /dev/null +++ b/locale/pl-pl/vocabulary/temperature/hot.voc @@ -0,0 +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/pl-pl/vocabulary/temperature/low.voc b/locale/pl-pl/vocabulary/temperature/low.voc new file mode 100644 index 000000000..7189cc1be --- /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 000000000..9083cab38 --- /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 000000000..9dc203b4c --- /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 000000000..45db19a74 --- /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 000000000..fac89c98a --- /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 000000000..4911ead54 --- /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/locale/uk-ua/dialog/and.dialog b/locale/uk-ua/dialog/and.dialog new file mode 100644 index 000000000..3bff424ea --- /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 000000000..e849de3a8 --- /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 000000000..e849de3a8 --- /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 000000000..cbde84c48 --- /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 000000000..b1819e89e --- /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 000000000..e8d083d53 --- /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 000000000..dcf4bbc95 --- /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 000000000..2dc48961b --- /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 000000000..d50cc2a4f --- /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 000000000..590961098 --- /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 000000000..894901933 --- /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 000000000..d374e8cc7 --- /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 000000000..a1395aa7f --- /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 000000000..b4c480846 --- /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 000000000..9916fb86f --- /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 000000000..cc46ea94f --- /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 000000000..f38ad0692 --- /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 000000000..cc46ea94f --- /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 000000000..f4ee1cb8f --- /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 000000000..9f32acf0f --- /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 000000000..90a7cdfd8 --- /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 000000000..003c69ae2 --- /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 000000000..6839c717c --- /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 000000000..f36b8230e --- /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 000000000..35673d58f --- /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 000000000..75440ad84 --- /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 000000000..addfeb4a3 --- /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 000000000..b964237d9 --- /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 000000000..2a47a1a40 --- /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 000000000..f64d79201 --- /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 000000000..2ed0fd15c --- /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 000000000..a3fd87f6b --- /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 000000000..84e260e90 --- /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 000000000..bf5967f94 --- /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 000000000..4e14b8e5a --- /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 000000000..e67204019 --- /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 000000000..12410a8c9 --- /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 000000000..ed9ea27d0 --- /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 000000000..18e6f5395 --- /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 000000000..ceef22c6c --- /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 000000000..584e9135a --- /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 000000000..50639a822 --- /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 000000000..cb6e5aa20 --- /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 000000000..28d4c7a0e --- /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 000000000..a1328b124 --- /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 000000000..4212f74a4 --- /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 000000000..84b709375 --- /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 000000000..7944f94b4 --- /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 000000000..4cc9ed26c --- /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 000000000..210a3450b --- /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 000000000..c496e07a9 --- /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 000000000..2ba810f87 --- /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 000000000..64e0a54cd --- /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 000000000..bbbe5edfd --- /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 000000000..224f2dd73 --- /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 000000000..bb2801843 --- /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 000000000..ad84ab336 --- /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 000000000..cf1dba4f9 --- /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 000000000..01002cb33 --- /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 000000000..842971a11 --- /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 000000000..efb24593a --- /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 000000000..6a419d908 --- /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 000000000..108968250 --- /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 000000000..1b5586f73 --- /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 000000000..dcc4a2a5b --- /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 000000000..035c9cffa --- /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 000000000..9355fc148 --- /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 000000000..5e048e31d --- /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 000000000..65bb94883 --- /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 000000000..762e9e929 --- /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 000000000..3a25b8adf --- /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 000000000..07c6419ef --- /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 000000000..cdc978d4f --- /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 000000000..075122cc1 --- /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 000000000..d00139cb4 --- /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 000000000..67a80174a --- /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 000000000..e62286c08 --- /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 000000000..7e58fc41e --- /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 000000000..d3f210f70 --- /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 000000000..6f7167f79 --- /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 000000000..b959a67ba --- /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 000000000..983c9410e --- /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 000000000..8eaa69f86 --- /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 000000000..302bf79d5 --- /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 000000000..e8ef3c939 --- /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 000000000..5e078afe6 --- /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 000000000..7851edad4 --- /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 000000000..31287d48d --- /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 000000000..7af14a1fc --- /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 000000000..34b8f946a --- /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 000000000..9aa5376b2 --- /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 000000000..d283450d7 --- /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 000000000..85230351d --- /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 000000000..8b027f382 --- /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 000000000..e51c623b1 --- /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 000000000..156d4d651 --- /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 000000000..3cac35649 --- /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 000000000..8e8012cc8 --- /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 000000000..42e677212 --- /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 000000000..88d93745a --- /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 000000000..75e6b7843 --- /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 000000000..55a2de26f --- /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 000000000..ee631324d --- /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 000000000..928810ab2 --- /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 000000000..83e3b8854 --- /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 000000000..87e3bf3c5 --- /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 000000000..0c615190d --- /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 000000000..2af086200 --- /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 000000000..35e6bc8eb --- /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 000000000..01e22a411 --- /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 000000000..76e8a49d4 --- /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 000000000..9b9231388 --- /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 000000000..86c973b3a --- /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 000000000..d515f8d96 --- /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 000000000..906577873 --- /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 000000000..f5cca6f75 --- /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 000000000..f497c7616 --- /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 000000000..996a0500d --- /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 000000000..22e2bd567 --- /dev/null +++ b/locale/uk-ua/vocabulary/location.voc @@ -0,0 +1,106 @@ +# 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 000000000..51d8f8ad7 --- /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 000000000..d6b4175fc --- /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 000000000..de0101806 --- /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 000000000..2d6c73960 --- /dev/null +++ b/locale/uk-ua/vocabulary/query/confirm-query.voc @@ -0,0 +1,19 @@ +# 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 000000000..996a0500d --- /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 000000000..a0658310f --- /dev/null +++ b/locale/uk-ua/vocabulary/query/query.voc @@ -0,0 +1,13 @@ +# 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 000000000..2c67f579f --- /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 000000000..950ad7223 --- /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 000000000..ccb93bc27 --- /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 000000000..c984e04b8 --- /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 000000000..d5fe0f3c6 --- /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 000000000..27fdb84e0 --- /dev/null +++ b/locale/uk-ua/vocabulary/temperature/hot.voc @@ -0,0 +1,6 @@ +# 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 000000000..425baa205 --- /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 000000000..9b7c9b2f2 --- /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 000000000..34b8f946a --- /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 000000000..45db19a74 --- /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 000000000..0b61698c7 --- /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 000000000..c4bb13e50 --- /dev/null +++ b/locale/uk-ua/vocabulary/weather.voc @@ -0,0 +1,2 @@ +# 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 000000000..f2a694a8b --- /dev/null +++ b/requirements/test.txt @@ -0,0 +1 @@ +neon-minerva[padatious]~=0.3 diff --git a/setup.py b/setup.py index 888441240..30ae81589 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 @@ -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/intent.py b/skill/intent.py index a89b10309..c2e9b2f37 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 diff --git a/test/test_intents.yaml b/test/test_intents.yaml new file mode 100644 index 000000000..3d96db2ea --- /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 diff --git a/version.py b/version.py index 790b70b9c..942e3330e 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 @@ -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.1.0"