Skip to content

Commit

Permalink
Release 0.1.15a3 (#120)
Browse files Browse the repository at this point in the history
* Add Catalans strings (#113)

* Translate vocabs.json via GitLocalize

* Translate vocabs.json via GitLocalize

---------

Co-authored-by: Joan Montané <[email protected]>
Co-authored-by: c-armentano <[email protected]>

* Update translations

* Add Catalan translation (#114)

* Translate dialogs.json via GitLocalize

* Translate dialogs.json via GitLocalize

---------

Co-authored-by: c-armentano <[email protected]>
Co-authored-by: Joan Montané <[email protected]>

* Update translations

* fix automations (#117)

* Increment Version to 0.1.15a1

* Update Changelog

* Translate skill.json via GitLocalize (#118)

Co-authored-by: timonvanhasselt <[email protected]>

* Increment Version to 0.1.15a2

* Update Changelog

* refactor:integrate translations sync into release_workflow.yml

* Increment Version to 0.1.15a3

---------

Co-authored-by: gitlocalize-app[bot] <55277160+gitlocalize-app[bot]@users.noreply.github.com>
Co-authored-by: Joan Montané <[email protected]>
Co-authored-by: c-armentano <[email protected]>
Co-authored-by: JarbasAl <[email protected]>
Co-authored-by: JarbasAI <[email protected]>
Co-authored-by: timonvanhasselt <[email protected]>
Co-authored-by: miro <[email protected]>
  • Loading branch information
7 people authored Feb 27, 2025
2 parents fda0c43 + 9be97d1 commit 45f21ca
Show file tree
Hide file tree
Showing 197 changed files with 965 additions and 308 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/license_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand Down
33 changes: 29 additions & 4 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,35 @@ on:
pull_request:
types: [closed]
branches: [dev]
workflow_dispatch:

jobs:

translations:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: "3.11"

- name: Sync translations by gitlocalize-app[bot]
run: |
python scripts/sync_translations.py
- name: Commit to dev
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update translations
branch: dev

publish_alpha:
if: github.event.pull_request.merged == true
needs: translations
uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master
secrets: inherit
with:
Expand All @@ -34,6 +59,7 @@ jobs:
message: |
new ${{ github.event.repository.name }} PR merged! https://github.com/${{ github.repository }}/pull/${{ github.event.number }}
publish_pypi:
needs: publish_alpha
if: success() # Ensure this job only runs if the previous job succeeds
Expand All @@ -46,7 +72,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.11"
- name: Install Build Tools
run: |
python -m pip install build wheel
Expand All @@ -56,12 +82,11 @@ jobs:
- name: Build Distribution Packages
run: |
python setup.py sdist bdist_wheel
- name: Publish to Test PyPI
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{secrets.PYPI_TOKEN}}


propose_release:
needs: publish_alpha
if: success() # Ensure this job only runs if the previous job succeeds
Expand Down
37 changes: 0 additions & 37 deletions .github/workflows/sync_tx.yml

This file was deleted.

16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
# Changelog

## [0.1.14a1](https://github.com/OpenVoiceOS/ovos-skill-weather/tree/0.1.14a1) (2024-12-12)
## [0.1.15a2](https://github.com/OpenVoiceOS/ovos-skill-weather/tree/0.1.15a2) (2025-02-16)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-weather/compare/0.1.13...0.1.14a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-weather/compare/0.1.15a1...0.1.15a2)

**Merged pull requests:**

- adjusting German translation from joergz2 [\#111](https://github.com/OpenVoiceOS/ovos-skill-weather/pull/111) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
- nl-nl translations [\#118](https://github.com/OpenVoiceOS/ovos-skill-weather/pull/118) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))
- fix automations [\#117](https://github.com/OpenVoiceOS/ovos-skill-weather/pull/117) ([JarbasAl](https://github.com/JarbasAl))
- Add Catalan translation [\#114](https://github.com/OpenVoiceOS/ovos-skill-weather/pull/114) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))

## [0.1.15a1](https://github.com/OpenVoiceOS/ovos-skill-weather/tree/0.1.15a1) (2024-12-29)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-weather/compare/0.1.14...0.1.15a1)

**Merged pull requests:**

- Add Catalans strings [\#113](https://github.com/OpenVoiceOS/ovos-skill-weather/pull/113) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))



Expand Down
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/ash.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cendra
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/clear.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
un cel serè
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/clouds.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
núvols
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/depositing-rime-fog.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
boira gebradora
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim, intensitat alta
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim, poca intensitat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim, intensitat moderada
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/drizzle.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/dust.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pols
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/fog.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
boira
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim gelant, intensitat alta
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Plugim gelant, poca intensitat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pluja gelant, intensitat alta
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pluja gelant, poca intensitat
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/haze.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Calitja
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/heavy-rain.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Xàfec
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/heavy-snow-fall.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Neu forta
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/heavy-snow-showers.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Xàfecs forts
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/humidity.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
humitat
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/mainly-clear.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Cel serè
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/mist.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
boira
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/moderate-rain-showers.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Xàfecs moderats
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/moderate-rain.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pluja moderada
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/moderate-snow-fall.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Nevada moderada
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/overcast.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cel cobert
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/partly-cloudy.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
parcialment ennuvolat
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/rain.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pluja
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/slight-rain-showers.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Xàfecs lleugers
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/slight-rain.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Pluja fina
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/slight-snow-fall.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Nevada lleugera
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/slight-snow-showers.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ruixats de neu lleus
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/smoke.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fum
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/snow-grains.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Flocs de neu
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/snow.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
neu
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/squall.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
borrasca
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tempesta amb pedra forta
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tempesta amb pedra lleugera
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/thunderstorm.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Tempesta
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/tornado.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tornado
1 change: 1 addition & 0 deletions locale/ca-es/dialog/condition/violent-rain-showers.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Xàfecs molt forts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Sembla que avui serà {condition}
Sí, avui serà un dia {condition}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
En {location}, sembla que avui hi haurà {condition}
Sí, serà {condition} en {location}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
No, avui s'espera un dia {condition}
No, les previsions meteorològiques per a avui indiquen un dia {condition}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
No, avui la previsió indica {condition} en {location}
No, en {location} avui s'espera un dia {condition}
1 change: 1 addition & 0 deletions locale/ca-es/dialog/current/current-humidity-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
En aquests moment la humitat és de {percent}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ara mateix, la humitat en {location} és {percent}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui el sol sortirà a les {time}
Avui l'albada serà a les {time}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui a {location} el sol s'ha post a {time}.
El sol ha sortit avui a {time} a {location}
2 changes: 2 additions & 0 deletions locale/ca-es/dialog/current/current-sunrise-past-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui la sortida del sol ha estat a les {time}
avui el sol ha sortit a les {time}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
avui el sol ha sortit a les {time} en {location}
avui la sortida del sol ha estat a les {time} en {location}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
avui el sol es pondrà a les {time}
avui la posta de sol serà a les {time}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
el sol es pondrà avui a les {time} a {location}
en {location} el sol es pondrà avui a les {time}
la posta de sol serà avui a les {time} en {location}
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/current/current-sunset-past-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
avui el sol s'ha post a les {time}
avui la posta de sol era a les {time}
avui, la sortida del sol és a les {time}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
avui la posta de sol ha estat a les {time} a {location}
el sol es s'ha post avui a les {time} en {location}
en {location} el sol s'ha post avui a les {time}
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/current/current-temperature-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Ara mateix hi ha {temperature} graus.
Ara mateix, hi ha {temperatura} graus.
En aquests moments hi ha {temperature} graus {temperature_unit}.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Ara mateix tenim {temperature} graus en {location}.
Ara mateix, tenim {temperature} graus {temperature_unit} en {location}.
En aquests moments, hi ha {temperature} graus a {location}.
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/current/current-weather-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Actualment hi ha {condition} i {temperature} graus {temperature_unit}.
Ara mateix hi ha {condition} i {temperature} graus.
Ara mateix, tenim {condition} i {temperature} graus.
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/current/current-weather-location.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Ara mateix hi ha {condition} i {temperature} graus {temperature_unit} en {location}.
Ara mateix, tenim {condition} i {temperature} graus en {location}.
En {location} tenim un dia {condition} i actualment té una temperatura de {temperatura} graus.
2 changes: 2 additions & 0 deletions locale/ca-es/dialog/current/current-wind-light-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui hi ha vent suau del {direction} a {speed} {speed_unit}
El vent és suau, a {speed} {speed_unit} des del {direction}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
A {location} avui hi ha vent de {direction} fluix a {speed} {speed_unit}
En {location}, el vent bufa fluix a {speed} {speed_unit} des del {direction}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui fa una mica de vent, ara mateix {speed} {speed_unit}
En aquests moments, el vent és moderat, {speed} {speed_unit} des del {direction}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Avui fa una mica de vent a {location}, ara mateix bufa a {speed} {speed_unit}
En aquests moments, en {location}, el vent és moderat, {speed} {speed_unit}, amb component {direction}
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/current/current-wind-strong-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Ara mateix, el vent és de component {direction} a {speed} {speed_unit}, avui pot ser bona idea quedar-se a cobert
Avui el vent que bufa des del {direction} és molt fort, {speed} {speed_unit}
Avui el vent és molt fort del {direction}, {speed} {speed_unit}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Avui el vent és força fort en direcció {direction} en {location}, {speed} {speed_unit}
En aquests moments, el vent és de direcció {direction} a {speed} {speed_unit} en {location}, un bon dia per a quedar-se a cobert
{location} tindrà vents forts avui, {speed} {speed_unit}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
No hauria d'estar ennuvolat, sembla que avui hi haurà {condition}
No ho sembla, és probable que avui sigui {condition}
No, avui la previsió indica {condition}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Sí, es preveu {condition} el {day}
Sí, la previsió és de {condition} el {day}
2 changes: 2 additions & 0 deletions locale/ca-es/dialog/daily/daily-humidity-location.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{day} la previsió {location} és d'un {percent} humitat.
{day}, la humitat a {location} serà de {percent}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
A {location} no hi ha previsió.
No es preveu cap precipitació per als propers set dies a {location}
3 changes: 3 additions & 0 deletions locale/ca-es/dialog/daily/daily-sunrise-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
el sol sortirà a les {time} {day}
la sortida del sol serà a les {time} {day}
{day} el sol sortirà a les {time}
2 changes: 2 additions & 0 deletions locale/ca-es/dialog/daily/daily-temperature-high-local.dialog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{dia} la temperatura pujarà a {temperature}
{dia} la temperatura pujarà a {temperature} graus.
Loading

0 comments on commit 45f21ca

Please sign in to comment.