diff --git a/.github/workflows/conventional-label.yaml b/.github/workflows/conventional-label.yaml new file mode 100644 index 0000000..0a449cb --- /dev/null +++ b/.github/workflows/conventional-label.yaml @@ -0,0 +1,10 @@ +# auto add labels to PRs +on: + pull_request_target: + types: [ opened, edited ] +name: conventional-release-labels +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: bcoe/conventional-release-labels@v1 \ No newline at end of file diff --git a/.github/workflows/dev2master.yml b/.github/workflows/dev2master.yml deleted file mode 100644 index cc76fee..0000000 --- a/.github/workflows/dev2master.yml +++ /dev/null @@ -1,20 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Push dev -> master -on: - workflow_dispatch: - -jobs: - build_and_publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. - ref: dev - - name: Push dev -> master - uses: ad-m/github-push-action@master - - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master \ No newline at end of file diff --git a/.github/workflows/publish_alpha.yml b/.github/workflows/publish_alpha.yml deleted file mode 100644 index 8d9e950..0000000 --- a/.github/workflows/publish_alpha.yml +++ /dev/null @@ -1,75 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Publish Alpha Build ...aX -on: - push: - branches: - - dev - paths-ignore: - - 'version.py' - - 'test/**' - - 'examples/**' - - '.github/**' - - '.gitignore' - - 'LICENSE' - - 'CHANGELOG.md' - - 'MANIFEST.in' - - 'README.md' - - 'scripts/**' - - 'translations/**' - workflow_dispatch: - -jobs: - build_and_publish: - runs-on: ubuntu-latest - steps: - - 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.8 - - name: Install Build Tools - run: | - python -m pip install build wheel - - name: Increment Version - run: | - VER=$(python setup.py --version) - python scripts/bump_alpha.py - - name: "Generate release changelog" - uses: heinrichreimer/github-changelog-generator-action@v2.3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - maxIssues: 50 - id: changelog - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Increment Version - branch: dev - - name: version - run: echo "::set-output name=version::$(python setup.py --version)" - id: version - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: V${{ steps.version.outputs.version }} - release_name: Release ${{ steps.version.outputs.version }} - body: | - Changes in this Release - ${{ steps.changelog.outputs.changelog }} - draft: false - prerelease: true - commitish: dev - - name: Build Distribution Packages - run: | - python setup.py bdist_wheel - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{secrets.PYPI_TOKEN}} diff --git a/.github/workflows/publish_build.yml b/.github/workflows/publish_build.yml deleted file mode 100644 index 6f7c8ad..0000000 --- a/.github/workflows/publish_build.yml +++ /dev/null @@ -1,86 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Publish Build Release ..X -on: - workflow_dispatch: - -jobs: - build_and_publish: - runs-on: ubuntu-latest - steps: - - 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.8 - - name: Install Build Tools - run: | - python -m pip install build wheel - - name: Remove alpha (declare stable) - run: | - VER=$(python setup.py --version) - python scripts/remove_alpha.py - - name: "Generate release changelog" - uses: heinrichreimer/github-changelog-generator-action@v2.3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - id: changelog - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Declare alpha stable - branch: dev - - name: Push dev -> master - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master - force: true - - name: version - run: echo "::set-output name=version::$(python setup.py --version)" - id: version - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: V${{ steps.version.outputs.version }} - release_name: Release ${{ steps.version.outputs.version }} - body: | - Changes in this Release - ${{ steps.changelog.outputs.changelog }} - draft: false - prerelease: false - commitish: dev - - name: Build Distribution Packages - run: | - python setup.py bdist_wheel - - name: Prepare next Build version - run: echo "::set-output name=version::$(python setup.py --version)" - id: alpha - - name: Increment Version ${{ steps.alpha.outputs.version }}Alpha0 - run: | - VER=$(python setup.py --version) - python scripts/bump_build.py - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Prepare Next Version - branch: dev - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{secrets.PYPI_TOKEN}} - - name: Send message to Matrix bots channel - id: matrix-chat-message - uses: fadenb/matrix-chat-message@v0.0.6 - with: - homeserver: 'matrix.org' - token: ${{ secrets.MATRIX_TOKEN }} - channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' - message: | - New skill-ovos-fallback-unknown release! ${{ steps.version.outputs.version }} diff --git a/.github/workflows/publish_major.yml b/.github/workflows/publish_major.yml deleted file mode 100644 index 220cdfe..0000000 --- a/.github/workflows/publish_major.yml +++ /dev/null @@ -1,86 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Publish Major Release X.0.0 -on: - workflow_dispatch: - -jobs: - build_and_publish: - runs-on: ubuntu-latest - steps: - - 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.8 - - name: Install Build Tools - run: | - python -m pip install build wheel - - name: Remove alpha (declare stable) - run: | - VER=$(python setup.py --version) - python scripts/remove_alpha.py - - name: "Generate release changelog" - uses: heinrichreimer/github-changelog-generator-action@v2.3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - id: changelog - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Declare alpha stable - branch: dev - - name: Push dev -> master - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master - force: true - - name: version - run: echo "::set-output name=version::$(python setup.py --version)" - id: version - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: V${{ steps.version.outputs.version }} - release_name: Release ${{ steps.version.outputs.version }} - body: | - Changes in this Release - ${{ steps.changelog.outputs.changelog }} - draft: false - prerelease: false - commitish: master - - name: Build Distribution Packages - run: | - python setup.py bdist_wheel - - name: Prepare next Major version - run: echo "::set-output name=version::$(python setup.py --version)" - id: alpha - - name: Increment Version ${{ steps.alpha.outputs.version }}Alpha0 - run: | - VER=$(python setup.py --version) - python scripts/bump_major.py - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Prepare Next Version - branch: dev - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{secrets.PYPI_TOKEN}} - - name: Send message to Matrix bots channel - id: matrix-chat-message - uses: fadenb/matrix-chat-message@v0.0.6 - with: - homeserver: 'matrix.org' - token: ${{ secrets.MATRIX_TOKEN }} - channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' - message: | - New skill-ovos-fallback-unknown release! ${{ steps.version.outputs.version }} diff --git a/.github/workflows/publish_minor.yml b/.github/workflows/publish_minor.yml deleted file mode 100644 index eeadd42..0000000 --- a/.github/workflows/publish_minor.yml +++ /dev/null @@ -1,86 +0,0 @@ -# This workflow will generate a distribution and upload it to PyPI - -name: Publish Minor Release .X.0 -on: - workflow_dispatch: - -jobs: - build_and_publish: - runs-on: ubuntu-latest - steps: - - 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.8 - - name: Install Build Tools - run: | - python -m pip install build wheel - - name: Remove alpha (declare stable) - run: | - VER=$(python setup.py --version) - python scripts/remove_alpha.py - - name: "Generate release changelog" - uses: heinrichreimer/github-changelog-generator-action@v2.3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - id: changelog - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Declare alpha stable - branch: dev - - name: Push dev -> master - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master - force: true - - name: version - run: echo "::set-output name=version::$(python setup.py --version)" - id: version - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token - with: - tag_name: V${{ steps.version.outputs.version }} - release_name: Release ${{ steps.version.outputs.version }} - body: | - Changes in this Release - ${{ steps.changelog.outputs.changelog }} - draft: false - prerelease: false - commitish: master - - name: Build Distribution Packages - run: | - python setup.py bdist_wheel - - name: Prepare next Minor version - run: echo "::set-output name=version::$(python setup.py --version)" - id: alpha - - name: Increment Version ${{ steps.alpha.outputs.version }}Alpha0 - run: | - VER=$(python setup.py --version) - python scripts/bump_minor.py - - name: Commit to dev - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Prepare Next Version - branch: dev - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{secrets.PYPI_TOKEN}} - - name: Send message to Matrix bots channel - id: matrix-chat-message - uses: fadenb/matrix-chat-message@v0.0.6 - with: - homeserver: 'matrix.org' - token: ${{ secrets.MATRIX_TOKEN }} - channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' - message: | - New skill-ovos-fallback-unknown release! ${{ steps.version.outputs.version }} diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml new file mode 100644 index 0000000..5c346e8 --- /dev/null +++ b/.github/workflows/publish_stable.yml @@ -0,0 +1,58 @@ +name: Stable Release +on: + push: + branches: [master] + workflow_dispatch: + +jobs: + publish_stable: + uses: TigreGotico/gh-automations/.github/workflows/publish-stable.yml@master + secrets: inherit + with: + branch: 'master' + version_file: 'version.py' + setup_py: 'setup.py' + publish_release: true + + publish_pypi: + needs: publish_stable + if: success() # Ensure this job only runs if the previous job succeeds + runs-on: ubuntu-latest + steps: + - 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.8 + - name: Install Build Tools + run: | + python -m pip install build wheel + - name: version + run: echo "::set-output name=version::$(python setup.py --version)" + id: version + - name: Build Distribution Packages + run: | + python setup.py sdist bdist_wheel + - name: Publish to Test PyPI + uses: pypa/gh-action-pypi-publish@master + with: + password: ${{secrets.PYPI_TOKEN}} + + + sync_dev: + needs: publish_stable + if: success() # Ensure this job only runs if the previous job succeeds + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. + ref: master + - name: Push master -> dev + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: dev \ No newline at end of file diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml new file mode 100644 index 0000000..d17f77f --- /dev/null +++ b/.github/workflows/release_workflow.yml @@ -0,0 +1,108 @@ +name: Release Alpha and Propose Stable + +on: + pull_request: + types: [closed] + branches: [dev] + +jobs: + publish_alpha: + if: github.event.pull_request.merged == true + uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master + secrets: inherit + with: + branch: 'dev' + version_file: 'version.py' + setup_py: 'setup.py' + update_changelog: true + publish_prerelease: true + changelog_max_issues: 100 + + notify: + if: github.event.pull_request.merged == true + needs: publish_alpha + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Send message to Matrix bots channel + id: matrix-chat-message + uses: fadenb/matrix-chat-message@v0.0.6 + with: + homeserver: 'matrix.org' + token: ${{ secrets.MATRIX_TOKEN }} + channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' + 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 + runs-on: ubuntu-latest + steps: + - 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.8 + - name: Install Build Tools + run: | + python -m pip install build wheel + - name: version + run: echo "::set-output name=version::$(python setup.py --version)" + id: version + - name: Build Distribution Packages + run: | + python setup.py sdist bdist_wheel + - name: Publish to Test 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 + runs-on: ubuntu-latest + steps: + - name: Checkout dev branch + uses: actions/checkout@v3 + with: + ref: dev + + - name: Setup Python + uses: actions/setup-python@v2 + with: + python-version: '3.10' + + - name: Get version from setup.py + id: get_version + run: | + VERSION=$(python setup.py --version) + echo "VERSION=$VERSION" >> $GITHUB_ENV + + - name: Create and push new branch + run: | + git checkout -b release-${{ env.VERSION }} + git push origin release-${{ env.VERSION }} + + - name: Open Pull Request from dev to master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + # Variables + BRANCH_NAME="release-${{ env.VERSION }}" + BASE_BRANCH="master" + HEAD_BRANCH="release-${{ env.VERSION }}" + PR_TITLE="Release ${{ env.VERSION }}" + PR_BODY="Human review requested!" + + # Create a PR using GitHub API + curl -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: token $GITHUB_TOKEN" \ + -d "{\"title\":\"$PR_TITLE\",\"body\":\"$PR_BODY\",\"head\":\"$HEAD_BRANCH\",\"base\":\"$BASE_BRANCH\"}" \ + https://api.github.com/repos/${{ github.repository }}/pulls + diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f6f851..3993855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,231 +1,15 @@ # Changelog -## [V0.0.4a13](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a13) (2024-07-05) +## [0.1.2a1](https://github.com/OpenVoiceOS/ovos-skill-news/tree/0.1.2a1) (2024-10-15) -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a12...V0.0.4a13) - -**Fixed bugs:** - -- fix/rm/dead\_stream [\#32](https://github.com/OpenVoiceOS/skill-ovos-news/pull/32) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.4a12](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a12) (2024-06-21) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a11...V0.0.4a12) - -**Merged pull requests:** - -- refactor/ocp\_modernize [\#31](https://github.com/OpenVoiceOS/skill-ovos-news/pull/31) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.4a11](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a11) (2024-06-20) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a10...V0.0.4a11) - -**Implemented enhancements:** - -- add DW english feed [\#30](https://github.com/OpenVoiceOS/skill-ovos-news/pull/30) ([JarbasAl](https://github.com/JarbasAl)) - -**Closed issues:** - -- Enhancement: DW News Feed [\#27](https://github.com/OpenVoiceOS/skill-ovos-news/issues/27) - -## [V0.0.4a10](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a10) (2024-06-13) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a9...V0.0.4a10) - -**Implemented enhancements:** - -- NL news stream [\#18](https://github.com/OpenVoiceOS/skill-ovos-news/issues/18) -- improve NL streams [\#29](https://github.com/OpenVoiceOS/skill-ovos-news/pull/29) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.4a9](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a9) (2024-05-25) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a8...V0.0.4a9) - -## [V0.0.4a8](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a8) (2024-05-24) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a7...V0.0.4a8) - -## [V0.0.4a7](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a7) (2024-05-16) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a6...V0.0.4a7) - -## [V0.0.4a6](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a6) (2024-05-16) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a5...V0.0.4a6) - -**Implemented enhancements:** - -- feat/modernize [\#28](https://github.com/OpenVoiceOS/skill-ovos-news/pull/28) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.4a5](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a5) (2024-05-16) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a4...V0.0.4a5) - -**Closed issues:** - -- No module named 'mycroft\_bus\_client' [\#24](https://github.com/OpenVoiceOS/skill-ovos-news/issues/24) - -## [V0.0.4a4](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a4) (2024-01-13) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a3...V0.0.4a4) - -## [V0.0.4a3](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a3) (2024-01-12) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a2...V0.0.4a3) - -**Merged pull requests:** - -- modernize for core 0.0.8 [\#25](https://github.com/OpenVoiceOS/skill-ovos-news/pull/25) ([NeonJarbas](https://github.com/NeonJarbas)) - -## [V0.0.4a2](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a2) (2023-04-03) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.4a1...V0.0.4a2) - -## [V0.0.4a1](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.4a1) (2023-04-03) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3...V0.0.4a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-news/compare/V0.0.4...0.1.2a1) **Merged pull requests:** -- fix default feed [\#23](https://github.com/OpenVoiceOS/skill-ovos-news/pull/23) ([emphasize](https://github.com/emphasize)) -- german locale review [\#22](https://github.com/OpenVoiceOS/skill-ovos-news/pull/22) ([emphasize](https://github.com/emphasize)) - -## [V0.0.3](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3) (2023-03-08) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a14...V0.0.3) - -## [V0.0.3a14](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a14) (2023-02-28) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a13...V0.0.3a14) - -**Implemented enhancements:** - -- added italian [\#21](https://github.com/OpenVoiceOS/skill-ovos-news/pull/21) ([denics](https://github.com/denics)) - -## [V0.0.3a13](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a13) (2023-02-25) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a12...V0.0.3a13) - -**Merged pull requests:** - -- additional german feeds [\#19](https://github.com/OpenVoiceOS/skill-ovos-news/pull/19) ([emphasize](https://github.com/emphasize)) - -## [V0.0.3a12](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a12) (2023-02-21) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a11...V0.0.3a12) - -**Implemented enhancements:** - -- feat/npr\_streams [\#17](https://github.com/OpenVoiceOS/skill-ovos-news/pull/17) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a11](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a11) (2023-02-17) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a10...V0.0.3a11) - -## [V0.0.3a10](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a10) (2023-02-17) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a9...V0.0.3a10) - -**Implemented enhancements:** - -- feat/rtp\_noticias [\#16](https://github.com/OpenVoiceOS/skill-ovos-news/pull/16) ([JarbasAl](https://github.com/JarbasAl)) -- add HRI [\#8](https://github.com/OpenVoiceOS/skill-ovos-news/pull/8) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a9](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a9) (2023-02-16) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a8...V0.0.3a9) - -**Implemented enhancements:** - -- add CCMA [\#15](https://github.com/OpenVoiceOS/skill-ovos-news/pull/15) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a8](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a8) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a7...V0.0.3a8) - -**Implemented enhancements:** - -- Feat/gr1 [\#10](https://github.com/OpenVoiceOS/skill-ovos-news/pull/10) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a7](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a7) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a6...V0.0.3a7) - -## [V0.0.3a6](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a6) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a5...V0.0.3a6) - -**Implemented enhancements:** - -- add ft [\#11](https://github.com/OpenVoiceOS/skill-ovos-news/pull/11) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a5](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a5) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a4...V0.0.3a5) - -**Implemented enhancements:** - -- Feat/abc [\#9](https://github.com/OpenVoiceOS/skill-ovos-news/pull/9) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a4](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a4) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a3...V0.0.3a4) - -**Implemented enhancements:** - -- feat/rdp\_africa [\#14](https://github.com/OpenVoiceOS/skill-ovos-news/pull/14) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a3](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a3) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a2...V0.0.3a3) - -## [V0.0.3a2](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a2) (2023-02-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.3a1...V0.0.3a2) - -**Implemented enhancements:** - -- add sky news [\#12](https://github.com/OpenVoiceOS/skill-ovos-news/pull/12) ([JarbasAl](https://github.com/JarbasAl)) - -**Fixed bugs:** - -- update VRT stream url [\#13](https://github.com/OpenVoiceOS/skill-ovos-news/pull/13) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.3a1](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.3a1) (2023-02-09) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.2...V0.0.3a1) - -**Merged pull requests:** - -- feat/runtime\_requirements [\#7](https://github.com/OpenVoiceOS/skill-ovos-news/pull/7) ([JarbasAl](https://github.com/JarbasAl)) - -## [V0.0.2](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.2) (2023-01-26) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.0.2a1...V0.0.2) - -## [V0.0.2a1](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.0.2a1) (2023-01-26) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/V0.2...V0.0.2a1) - -**Implemented enhancements:** - -- move to the new news extractor OCP plugin [\#5](https://github.com/OpenVoiceOS/skill-ovos-news/pull/5) ([JarbasAl](https://github.com/JarbasAl)) - -**Merged pull requests:** - -- Add PyPI Automation [\#6](https://github.com/OpenVoiceOS/skill-ovos-news/pull/6) ([NeonDaniel](https://github.com/NeonDaniel)) -- workflows [\#4](https://github.com/OpenVoiceOS/skill-ovos-news/pull/4) ([JarbasAl](https://github.com/JarbasAl)) -- fix setup [\#3](https://github.com/OpenVoiceOS/skill-ovos-news/pull/3) ([JarbasAl](https://github.com/JarbasAl)) -- setup.py template [\#2](https://github.com/OpenVoiceOS/skill-ovos-news/pull/2) ([JarbasAl](https://github.com/JarbasAl)) -- Update requirements handling in setup.py [\#1](https://github.com/OpenVoiceOS/skill-ovos-news/pull/1) ([NeonDaniel](https://github.com/NeonDaniel)) - -## [V0.2](https://github.com/OpenVoiceOS/skill-ovos-news/tree/V0.2) (2021-03-15) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/v0.1...V0.2) - -## [v0.1](https://github.com/OpenVoiceOS/skill-ovos-news/tree/v0.1) (2021-03-14) - -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-news/compare/0fcd9eb6b5293efe39d31210908722c0a12b42c8...v0.1) +- fix:long description [\#36](https://github.com/OpenVoiceOS/ovos-skill-news/pull/36) ([JarbasAl](https://github.com/JarbasAl)) +- fix:update\_requirements [\#35](https://github.com/OpenVoiceOS/ovos-skill-news/pull/35) ([JarbasAl](https://github.com/JarbasAl)) +- Add Catalan translation [\#34](https://github.com/OpenVoiceOS/ovos-skill-news/pull/34) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- Add Catalan translation [\#33](https://github.com/OpenVoiceOS/ovos-skill-news/pull/33) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) diff --git a/__init__.py b/__init__.py index 43d0c71..c226d27 100644 --- a/__init__.py +++ b/__init__.py @@ -3,7 +3,7 @@ from json_database import JsonStorage from ovos_utils import classproperty -from ovos_workshop.backwards_compat import MediaType, PlaybackType, Playlist, PluginStream, dict2entry, MediaEntry +from ovos_utils.ocp import MediaType, PlaybackType, Playlist, PluginStream, dict2entry, MediaEntry from ovos_utils.parse import match_one, MatchStrategy from ovos_utils.process_utils import RuntimeRequirements from ovos_workshop.decorators import ocp_search, ocp_featured_media diff --git a/locale/ca-es/ca.voc b/locale/ca-es/ca.voc new file mode 100644 index 0000000..2644ea8 --- /dev/null +++ b/locale/ca-es/ca.voc @@ -0,0 +1,3 @@ +Catalunya +Català +Catalana \ No newline at end of file diff --git a/locale/ca-es/de.voc b/locale/ca-es/de.voc new file mode 100644 index 0000000..a506c14 --- /dev/null +++ b/locale/ca-es/de.voc @@ -0,0 +1,2 @@ +alemany +alemanya \ No newline at end of file diff --git a/locale/ca-es/en-au.voc b/locale/ca-es/en-au.voc new file mode 100644 index 0000000..5cbd36b --- /dev/null +++ b/locale/ca-es/en-au.voc @@ -0,0 +1,3 @@ +Austràlia +australià +australiana \ No newline at end of file diff --git a/locale/ca-es/en-ca.voc b/locale/ca-es/en-ca.voc new file mode 100644 index 0000000..4262434 --- /dev/null +++ b/locale/ca-es/en-ca.voc @@ -0,0 +1,3 @@ +Canadà +canadenc +canadenca \ No newline at end of file diff --git a/locale/ca-es/en-gb.voc b/locale/ca-es/en-gb.voc new file mode 100644 index 0000000..934c5c6 --- /dev/null +++ b/locale/ca-es/en-gb.voc @@ -0,0 +1,4 @@ +Gran Bretanya +Regne Unit +britànic +britànica \ No newline at end of file diff --git a/locale/ca-es/en-us.voc b/locale/ca-es/en-us.voc new file mode 100644 index 0000000..8aad331 --- /dev/null +++ b/locale/ca-es/en-us.voc @@ -0,0 +1,4 @@ +Amèrica +Estats Units +americà +americana \ No newline at end of file diff --git a/locale/ca-es/en.voc b/locale/ca-es/en.voc new file mode 100644 index 0000000..eebbb28 --- /dev/null +++ b/locale/ca-es/en.voc @@ -0,0 +1,3 @@ +anglès +anglés +anglesa \ No newline at end of file diff --git a/locale/ca-es/es.voc b/locale/ca-es/es.voc new file mode 100644 index 0000000..1685481 --- /dev/null +++ b/locale/ca-es/es.voc @@ -0,0 +1,2 @@ +espanyol +espanyola \ No newline at end of file diff --git a/locale/ca-es/euro.voc b/locale/ca-es/euro.voc new file mode 100644 index 0000000..c0286d3 --- /dev/null +++ b/locale/ca-es/euro.voc @@ -0,0 +1,3 @@ +euro +europeu +europea \ No newline at end of file diff --git a/locale/ca-es/euronews.voc b/locale/ca-es/euronews.voc new file mode 100644 index 0000000..d899aa5 --- /dev/null +++ b/locale/ca-es/euronews.voc @@ -0,0 +1 @@ +euronews \ No newline at end of file diff --git a/locale/ca-es/fi.voc b/locale/ca-es/fi.voc new file mode 100644 index 0000000..95aca61 --- /dev/null +++ b/locale/ca-es/fi.voc @@ -0,0 +1,4 @@ +Finlàndia +finès +finés +finesa \ No newline at end of file diff --git a/locale/ca-es/fr.voc b/locale/ca-es/fr.voc new file mode 100644 index 0000000..6de9b7c --- /dev/null +++ b/locale/ca-es/fr.voc @@ -0,0 +1,4 @@ +França +francès +francés +francesa \ No newline at end of file diff --git a/locale/ca-es/fr24.voc b/locale/ca-es/fr24.voc new file mode 100644 index 0000000..d78ffc9 --- /dev/null +++ b/locale/ca-es/fr24.voc @@ -0,0 +1,4 @@ +France 24 +France vint i quatre +France vint-i-quatre +France24 \ No newline at end of file diff --git a/locale/ca-es/intro.dialog b/locale/ca-es/intro.dialog new file mode 100644 index 0000000..3c8df05 --- /dev/null +++ b/locale/ca-es/intro.dialog @@ -0,0 +1 @@ +Gràcies per instal·lar l'habilitat de notícies \ No newline at end of file diff --git a/locale/ca-es/it.voc b/locale/ca-es/it.voc new file mode 100644 index 0000000..ae8f7ac --- /dev/null +++ b/locale/ca-es/it.voc @@ -0,0 +1,3 @@ +Italià +Italiana +Itàlia \ No newline at end of file diff --git a/locale/ca-es/news.voc b/locale/ca-es/news.voc new file mode 100644 index 0000000..c527e07 --- /dev/null +++ b/locale/ca-es/news.voc @@ -0,0 +1 @@ +notícies \ No newline at end of file diff --git a/locale/ca-es/nl.voc b/locale/ca-es/nl.voc new file mode 100644 index 0000000..4fe6661 --- /dev/null +++ b/locale/ca-es/nl.voc @@ -0,0 +1,6 @@ +Holanda +Països Baixos +neerlandès +neerlandés +holandès +holandés \ No newline at end of file diff --git a/locale/ca-es/pt-pt.voc b/locale/ca-es/pt-pt.voc new file mode 100644 index 0000000..e9e9f72 --- /dev/null +++ b/locale/ca-es/pt-pt.voc @@ -0,0 +1,4 @@ +Portugal +Portuguès +Portugués +Portuguesa \ No newline at end of file diff --git a/locale/ca-es/rt.voc b/locale/ca-es/rt.voc new file mode 100644 index 0000000..8d14eae --- /dev/null +++ b/locale/ca-es/rt.voc @@ -0,0 +1 @@ +Russia Today \ No newline at end of file diff --git a/locale/ca-es/ru.voc b/locale/ca-es/ru.voc new file mode 100644 index 0000000..6069333 --- /dev/null +++ b/locale/ca-es/ru.voc @@ -0,0 +1,3 @@ +Rússia +rus +russa \ No newline at end of file diff --git a/locale/ca-es/sv.voc b/locale/ca-es/sv.voc new file mode 100644 index 0000000..af28ae2 --- /dev/null +++ b/locale/ca-es/sv.voc @@ -0,0 +1,3 @@ +Suècia +suec +sueca \ No newline at end of file diff --git a/locale/ca-es/video.voc b/locale/ca-es/video.voc new file mode 100644 index 0000000..fcbdb73 --- /dev/null +++ b/locale/ca-es/video.voc @@ -0,0 +1 @@ +vídeo \ No newline at end of file diff --git a/locale/de-de/ca.voc b/locale/de-de/ca.voc index 2c68454..0c5d626 100644 --- a/locale/de-de/ca.voc +++ b/locale/de-de/ca.voc @@ -1,4 +1,4 @@ -aus katalonien -Katalonien Katalanisch -katalonische +Katalonien +aus katalonien +katalonische \ No newline at end of file diff --git a/locale/de-de/de.voc b/locale/de-de/de.voc index 9fe8a32..7f48bdd 100644 --- a/locale/de-de/de.voc +++ b/locale/de-de/de.voc @@ -1,4 +1,4 @@ aus deutschland -deutschland deutsch deutsche +deutschland \ No newline at end of file diff --git a/locale/de-de/en-au.voc b/locale/de-de/en-au.voc index 2a84a58..d81d59d 100644 --- a/locale/de-de/en-au.voc +++ b/locale/de-de/en-au.voc @@ -1,4 +1,4 @@ -aus Australien Australien +aus Australien australisch -australische +australische \ No newline at end of file diff --git a/locale/de-de/en-ca.voc b/locale/de-de/en-ca.voc index a98b6f5..ef87668 100644 --- a/locale/de-de/en-ca.voc +++ b/locale/de-de/en-ca.voc @@ -1,4 +1,4 @@ aus kanada kanada kanadisch -kanadische +kanadische \ No newline at end of file diff --git a/locale/de-de/en-gb.voc b/locale/de-de/en-gb.voc index e43638a..7ee3766 100644 --- a/locale/de-de/en-gb.voc +++ b/locale/de-de/en-gb.voc @@ -1,4 +1,4 @@ -aus dem Vereinigten Königreich aus England +aus dem Vereinigten Königreich england -englische +englische \ No newline at end of file diff --git a/locale/de-de/en-us.voc b/locale/de-de/en-us.voc index 1b473b8..51f9ca0 100644 --- a/locale/de-de/en-us.voc +++ b/locale/de-de/en-us.voc @@ -1,5 +1,5 @@ -aus den vereinigten Staaten -aus amerika amerika amerikanisch amerikanische +aus amerika +aus den vereinigten Staaten \ No newline at end of file diff --git a/locale/de-de/en.voc b/locale/de-de/en.voc index e43638a..7ee3766 100644 --- a/locale/de-de/en.voc +++ b/locale/de-de/en.voc @@ -1,4 +1,4 @@ -aus dem Vereinigten Königreich aus England +aus dem Vereinigten Königreich england -englische +englische \ No newline at end of file diff --git a/locale/de-de/es.voc b/locale/de-de/es.voc index 249f8cd..a063864 100644 --- a/locale/de-de/es.voc +++ b/locale/de-de/es.voc @@ -1,4 +1,4 @@ +Spanisch aus spanien spanien -Spanisch -spanische +spanische \ No newline at end of file diff --git a/locale/de-de/euro.voc b/locale/de-de/euro.voc index 326eb1d..fc2e223 100644 --- a/locale/de-de/euro.voc +++ b/locale/de-de/euro.voc @@ -1,5 +1,5 @@ +Euro +Europäische aus europa europa -europäisch -Europäische -Euro +europäisch \ No newline at end of file diff --git a/locale/de-de/euronews.voc b/locale/de-de/euronews.voc index 883a5a5..5e92cc8 100644 --- a/locale/de-de/euronews.voc +++ b/locale/de-de/euronews.voc @@ -1,2 +1 @@ -# auto translated from en-us to de-de -Euronews +Euronews \ No newline at end of file diff --git a/locale/de-de/fi.voc b/locale/de-de/fi.voc index 7435b99..70210ad 100644 --- a/locale/de-de/fi.voc +++ b/locale/de-de/fi.voc @@ -1,4 +1,4 @@ aus finnland -finnland finnisch finnische +finnland \ No newline at end of file diff --git a/locale/de-de/fr.voc b/locale/de-de/fr.voc index cf7bc72..79cddca 100644 --- a/locale/de-de/fr.voc +++ b/locale/de-de/fr.voc @@ -1,4 +1,4 @@ aus frankreich frankreich französisch -französische +französische \ No newline at end of file diff --git a/locale/de-de/fr24.voc b/locale/de-de/fr24.voc index 58b139a..01d42bc 100644 --- a/locale/de-de/fr24.voc +++ b/locale/de-de/fr24.voc @@ -1,5 +1,4 @@ -# auto translated from en-us to de-de Frankreich 24 Frankreich zwanzig vier -Frankreich24 Frankreich zwanzig vierte +Frankreich24 \ No newline at end of file diff --git a/locale/de-de/intro.dialog b/locale/de-de/intro.dialog index 35e3c7b..825a9c9 100644 --- a/locale/de-de/intro.dialog +++ b/locale/de-de/intro.dialog @@ -1,2 +1 @@ -# auto translated from en-us to de-de -Danke für die Installation News Skill +Danke für die Installation News Skill \ No newline at end of file diff --git a/locale/de-de/it.voc b/locale/de-de/it.voc index ea00906..5d6ffbe 100644 --- a/locale/de-de/it.voc +++ b/locale/de-de/it.voc @@ -1,4 +1,4 @@ aus italien italien italienisch -italienische +italienische \ No newline at end of file diff --git a/locale/de-de/news.voc b/locale/de-de/news.voc index 8d23ac7..08e8e8f 100644 --- a/locale/de-de/news.voc +++ b/locale/de-de/news.voc @@ -1,2 +1,2 @@ die nachrichten -nachrichten +nachrichten \ No newline at end of file diff --git a/locale/de-de/nl.voc b/locale/de-de/nl.voc index 55463b0..c3e1ca7 100644 --- a/locale/de-de/nl.voc +++ b/locale/de-de/nl.voc @@ -1,9 +1,9 @@ +aus den niederlanden aus holland aus niederlande -aus den niederlanden holland -niederland holländisch holländische +niederland niederländisch -niederländische +niederländische \ No newline at end of file diff --git a/locale/de-de/pt-pt.voc b/locale/de-de/pt-pt.voc index 0390bdc..04bd250 100644 --- a/locale/de-de/pt-pt.voc +++ b/locale/de-de/pt-pt.voc @@ -1,4 +1,4 @@ aus portugal portugal portugiesisch -portugiesische +portugiesische \ No newline at end of file diff --git a/locale/de-de/rt.voc b/locale/de-de/rt.voc index 3823cae..9cfec57 100644 --- a/locale/de-de/rt.voc +++ b/locale/de-de/rt.voc @@ -1,2 +1 @@ -# auto translated from en-us to de-de -Russland heute +Russland heute \ No newline at end of file diff --git a/locale/de-de/ru.voc b/locale/de-de/ru.voc index db62a06..708d519 100644 --- a/locale/de-de/ru.voc +++ b/locale/de-de/ru.voc @@ -1,4 +1,4 @@ aus russland -russland russisch russische +russland \ No newline at end of file diff --git a/locale/de-de/sv.voc b/locale/de-de/sv.voc index 09b5803..f65deba 100644 --- a/locale/de-de/sv.voc +++ b/locale/de-de/sv.voc @@ -1,4 +1,4 @@ aus schweden schweden schwedisch -schwedische +schwedische \ No newline at end of file diff --git a/locale/de-de/video.voc b/locale/de-de/video.voc index c254ca6..1e1b17b 100644 --- a/locale/de-de/video.voc +++ b/locale/de-de/video.voc @@ -1,2 +1,2 @@ Video -mit video +mit video \ No newline at end of file diff --git a/locale/en-us/en-gb.voc b/locale/en-us/en-gb.voc index b0b9b93..9a61358 100644 --- a/locale/en-us/en-gb.voc +++ b/locale/en-us/en-gb.voc @@ -1,3 +1,3 @@ +UK british -united kingdom -UK \ No newline at end of file +united kingdom \ No newline at end of file diff --git a/locale/en-us/fr24.voc b/locale/en-us/fr24.voc index 11ffc66..c0e570c 100644 --- a/locale/en-us/fr24.voc +++ b/locale/en-us/fr24.voc @@ -1,4 +1,4 @@ -France24 France 24 France twenty four -France twenty fourth \ No newline at end of file +France twenty fourth +France24 \ No newline at end of file diff --git a/locale/en-us/nl.voc b/locale/en-us/nl.voc index c8e45e1..4554d75 100644 --- a/locale/en-us/nl.voc +++ b/locale/en-us/nl.voc @@ -1,3 +1,3 @@ -dutch Nederlands -Netherlands \ No newline at end of file +Netherlands +dutch \ No newline at end of file diff --git a/locale/en-us/pt-pt.voc b/locale/en-us/pt-pt.voc index ac1b7ed..acf95c8 100644 --- a/locale/en-us/pt-pt.voc +++ b/locale/en-us/pt-pt.voc @@ -1,2 +1,2 @@ -Portuguese -Portugal \ No newline at end of file +Portugal +Portuguese \ No newline at end of file diff --git a/locale/en-us/ru.voc b/locale/en-us/ru.voc index 3266fc1..fb814d5 100644 --- a/locale/en-us/ru.voc +++ b/locale/en-us/ru.voc @@ -1,2 +1,2 @@ -russian -russia \ No newline at end of file +russia +russian \ No newline at end of file diff --git a/locale/es-es/ca.voc b/locale/es-es/ca.voc index e78b092..be6d94a 100644 --- a/locale/es-es/ca.voc +++ b/locale/es-es/ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -Cataluña Catalan +Cataluña \ No newline at end of file diff --git a/locale/es-es/de.voc b/locale/es-es/de.voc index af5c95b..57661e2 100644 --- a/locale/es-es/de.voc +++ b/locale/es-es/de.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -Alemán +Alemán \ No newline at end of file diff --git a/locale/es-es/en-au.voc b/locale/es-es/en-au.voc index 4a21248..f8f6c14 100644 --- a/locale/es-es/en-au.voc +++ b/locale/es-es/en-au.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -australiana australia +australiana \ No newline at end of file diff --git a/locale/es-es/en-ca.voc b/locale/es-es/en-ca.voc index c2a228f..b8a98dc 100644 --- a/locale/es-es/en-ca.voc +++ b/locale/es-es/en-ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -canadian canada +canadian \ No newline at end of file diff --git a/locale/es-es/en-gb.voc b/locale/es-es/en-gb.voc index e3c3442..9c2cd76 100644 --- a/locale/es-es/en-gb.voc +++ b/locale/es-es/en-gb.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to es-es -UK -Reino unido Británico +Reino unido +UK \ No newline at end of file diff --git a/locale/es-es/en-us.voc b/locale/es-es/en-us.voc index 8f7fa3c..1f84d01 100644 --- a/locale/es-es/en-us.voc +++ b/locale/es-es/en-us.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es América -Estados Unidos +Estados Unidos \ No newline at end of file diff --git a/locale/es-es/en.voc b/locale/es-es/en.voc index 8b39a98..ad1feb7 100644 --- a/locale/es-es/en.voc +++ b/locale/es-es/en.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -Inglés +Inglés \ No newline at end of file diff --git a/locale/es-es/es.voc b/locale/es-es/es.voc index 0d0c9b5..d236fc3 100644 --- a/locale/es-es/es.voc +++ b/locale/es-es/es.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -Español +Español \ No newline at end of file diff --git a/locale/es-es/euro.voc b/locale/es-es/euro.voc index de16033..46cea93 100644 --- a/locale/es-es/euro.voc +++ b/locale/es-es/euro.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -europeas euro +europeas \ No newline at end of file diff --git a/locale/es-es/euronews.voc b/locale/es-es/euronews.voc index 8699fe2..d899aa5 100644 --- a/locale/es-es/euronews.voc +++ b/locale/es-es/euronews.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -euronews +euronews \ No newline at end of file diff --git a/locale/es-es/fi.voc b/locale/es-es/fi.voc index 1e2fc72..275b517 100644 --- a/locale/es-es/fi.voc +++ b/locale/es-es/fi.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es finland -finnish +finnish \ No newline at end of file diff --git a/locale/es-es/fr.voc b/locale/es-es/fr.voc index d0d8fb6..1ef3796 100644 --- a/locale/es-es/fr.voc +++ b/locale/es-es/fr.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es Franco -Francés +Francés \ No newline at end of file diff --git a/locale/es-es/fr24.voc b/locale/es-es/fr24.voc index d600a71..29f2a91 100644 --- a/locale/es-es/fr24.voc +++ b/locale/es-es/fr24.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to es-es -Francia 24 France24 Francia +Francia 24 \ No newline at end of file diff --git a/locale/es-es/intro.dialog b/locale/es-es/intro.dialog index 3911742..c90817e 100644 --- a/locale/es-es/intro.dialog +++ b/locale/es-es/intro.dialog @@ -1,2 +1 @@ -# auto translated from en-us to es-es -gracias por instalar Habilidad de noticias +gracias por instalar Habilidad de noticias \ No newline at end of file diff --git a/locale/es-es/it.voc b/locale/es-es/it.voc index d49b823..9adae1d 100644 --- a/locale/es-es/it.voc +++ b/locale/es-es/it.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es Italia -Italiano +Italiano \ No newline at end of file diff --git a/locale/es-es/news.voc b/locale/es-es/news.voc index 991e9d4..19e2f07 100644 --- a/locale/es-es/news.voc +++ b/locale/es-es/news.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -noticias +noticias \ No newline at end of file diff --git a/locale/es-es/nl.voc b/locale/es-es/nl.voc index bfd08c0..b5d2cf2 100644 --- a/locale/es-es/nl.voc +++ b/locale/es-es/nl.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to es-es -Países Bajos -dutch Nederlands +Países Bajos +dutch \ No newline at end of file diff --git a/locale/es-es/pt-pt.voc b/locale/es-es/pt-pt.voc index 18208f3..feb8270 100644 --- a/locale/es-es/pt-pt.voc +++ b/locale/es-es/pt-pt.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -Portugués Portugal +Portugués \ No newline at end of file diff --git a/locale/es-es/rt.voc b/locale/es-es/rt.voc index 8b82174..3f870a2 100644 --- a/locale/es-es/rt.voc +++ b/locale/es-es/rt.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -Rusia +Rusia \ No newline at end of file diff --git a/locale/es-es/ru.voc b/locale/es-es/ru.voc index e7dde58..6b930c6 100644 --- a/locale/es-es/ru.voc +++ b/locale/es-es/ru.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -ruso rusia +ruso \ No newline at end of file diff --git a/locale/es-es/sv.voc b/locale/es-es/sv.voc index 0845a2e..87370fd 100644 --- a/locale/es-es/sv.voc +++ b/locale/es-es/sv.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to es-es -sweden sueco +sweden \ No newline at end of file diff --git a/locale/es-es/video.voc b/locale/es-es/video.voc index 7583f75..a227d29 100644 --- a/locale/es-es/video.voc +++ b/locale/es-es/video.voc @@ -1,2 +1 @@ -# auto translated from en-us to es-es -video +video \ No newline at end of file diff --git a/locale/fr-fr/ca.voc b/locale/fr-fr/ca.voc index eafbff6..06e9194 100644 --- a/locale/fr-fr/ca.voc +++ b/locale/fr-fr/ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -Catalogne Catalan +Catalogne \ No newline at end of file diff --git a/locale/fr-fr/de.voc b/locale/fr-fr/de.voc index c54a034..c840cf5 100644 --- a/locale/fr-fr/de.voc +++ b/locale/fr-fr/de.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -Allemand +Allemand \ No newline at end of file diff --git a/locale/fr-fr/en-au.voc b/locale/fr-fr/en-au.voc index f32a331..11be908 100644 --- a/locale/fr-fr/en-au.voc +++ b/locale/fr-fr/en-au.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -australian australia +australian \ No newline at end of file diff --git a/locale/fr-fr/en-ca.voc b/locale/fr-fr/en-ca.voc index c754305..b8a98dc 100644 --- a/locale/fr-fr/en-ca.voc +++ b/locale/fr-fr/en-ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -canadian canada +canadian \ No newline at end of file diff --git a/locale/fr-fr/en-gb.voc b/locale/fr-fr/en-gb.voc index d97af9e..3cc5657 100644 --- a/locale/fr-fr/en-gb.voc +++ b/locale/fr-fr/en-gb.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to fr-fr -royaume uni -british UK +british +royaume uni \ No newline at end of file diff --git a/locale/fr-fr/en-us.voc b/locale/fr-fr/en-us.voc index 60218c2..23c7de6 100644 --- a/locale/fr-fr/en-us.voc +++ b/locale/fr-fr/en-us.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to fr-fr -america -américains Etats unis +america +américains \ No newline at end of file diff --git a/locale/fr-fr/en.voc b/locale/fr-fr/en.voc index 7d72c52..2c8ca3e 100644 --- a/locale/fr-fr/en.voc +++ b/locale/fr-fr/en.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -Anglais +Anglais \ No newline at end of file diff --git a/locale/fr-fr/es.voc b/locale/fr-fr/es.voc index cb4198b..621b1f4 100644 --- a/locale/fr-fr/es.voc +++ b/locale/fr-fr/es.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -Espagnol +Espagnol \ No newline at end of file diff --git a/locale/fr-fr/euro.voc b/locale/fr-fr/euro.voc index cdf6982..77ddfda 100644 --- a/locale/fr-fr/euro.voc +++ b/locale/fr-fr/euro.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -european euro +european \ No newline at end of file diff --git a/locale/fr-fr/euronews.voc b/locale/fr-fr/euronews.voc index 834d512..d899aa5 100644 --- a/locale/fr-fr/euronews.voc +++ b/locale/fr-fr/euronews.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -euronews +euronews \ No newline at end of file diff --git a/locale/fr-fr/fi.voc b/locale/fr-fr/fi.voc index dba6850..275b517 100644 --- a/locale/fr-fr/fi.voc +++ b/locale/fr-fr/fi.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr finland -finnish +finnish \ No newline at end of file diff --git a/locale/fr-fr/fr.voc b/locale/fr-fr/fr.voc index d93fc75..9ddb60c 100644 --- a/locale/fr-fr/fr.voc +++ b/locale/fr-fr/fr.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -france Français +france \ No newline at end of file diff --git a/locale/fr-fr/fr24.voc b/locale/fr-fr/fr24.voc index 9a685f4..b68846d 100644 --- a/locale/fr-fr/fr24.voc +++ b/locale/fr-fr/fr24.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to fr-fr -France 24 -France24 France +France 24 +France24 \ No newline at end of file diff --git a/locale/fr-fr/intro.dialog b/locale/fr-fr/intro.dialog index a1269ca..ffe8cee 100644 --- a/locale/fr-fr/intro.dialog +++ b/locale/fr-fr/intro.dialog @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -Merci d'avoir installé News Skill +Merci d'avoir installé News Skill \ No newline at end of file diff --git a/locale/fr-fr/it.voc b/locale/fr-fr/it.voc index ce251e3..ae5590b 100644 --- a/locale/fr-fr/it.voc +++ b/locale/fr-fr/it.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr -Italien Italie +Italien \ No newline at end of file diff --git a/locale/fr-fr/news.voc b/locale/fr-fr/news.voc index 9ddfd5f..6b7da21 100644 --- a/locale/fr-fr/news.voc +++ b/locale/fr-fr/news.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -nouvelles +nouvelles \ No newline at end of file diff --git a/locale/fr-fr/nl.voc b/locale/fr-fr/nl.voc index fbfa227..91e8c0a 100644 --- a/locale/fr-fr/nl.voc +++ b/locale/fr-fr/nl.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to fr-fr Nederlands ? -hollandaise Pays-Bas +hollandaise \ No newline at end of file diff --git a/locale/fr-fr/pt-pt.voc b/locale/fr-fr/pt-pt.voc index a675a9d..b5ae8d0 100644 --- a/locale/fr-fr/pt-pt.voc +++ b/locale/fr-fr/pt-pt.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr Portugais -Portugal +Portugal \ No newline at end of file diff --git a/locale/fr-fr/rt.voc b/locale/fr-fr/rt.voc index 6812e5c..083f9e8 100644 --- a/locale/fr-fr/rt.voc +++ b/locale/fr-fr/rt.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -Russie aujourd'hui +Russie aujourd'hui \ No newline at end of file diff --git a/locale/fr-fr/ru.voc b/locale/fr-fr/ru.voc index bfdd415..6113c70 100644 --- a/locale/fr-fr/ru.voc +++ b/locale/fr-fr/ru.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to fr-fr russe -russie +russie \ No newline at end of file diff --git a/locale/fr-fr/sv.voc b/locale/fr-fr/sv.voc index 7ab4fb1..da36842 100644 --- a/locale/fr-fr/sv.voc +++ b/locale/fr-fr/sv.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -suédois +suédois \ No newline at end of file diff --git a/locale/fr-fr/video.voc b/locale/fr-fr/video.voc index 5c7a88f..d6250e0 100644 --- a/locale/fr-fr/video.voc +++ b/locale/fr-fr/video.voc @@ -1,2 +1 @@ -# auto translated from en-us to fr-fr -vidéo +vidéo \ No newline at end of file diff --git a/locale/it-it/ca.voc b/locale/it-it/ca.voc index 0890747..32329aa 100644 --- a/locale/it-it/ca.voc +++ b/locale/it-it/ca.voc @@ -1,2 +1,2 @@ Catalano -Catalogna +Catalogna \ No newline at end of file diff --git a/locale/it-it/de.voc b/locale/it-it/de.voc index a44003d..d4dce07 100644 --- a/locale/it-it/de.voc +++ b/locale/it-it/de.voc @@ -1 +1 @@ -Germania +Germania \ No newline at end of file diff --git a/locale/it-it/en-au.voc b/locale/it-it/en-au.voc index 59c1c53..490da56 100644 --- a/locale/it-it/en-au.voc +++ b/locale/it-it/en-au.voc @@ -1,2 +1,2 @@ -Australiano Australia +Australiano \ No newline at end of file diff --git a/locale/it-it/en-ca.voc b/locale/it-it/en-ca.voc index 4c653ec..ad8fff5 100644 --- a/locale/it-it/en-ca.voc +++ b/locale/it-it/en-ca.voc @@ -1,2 +1,2 @@ Canada -Canadese +Canadese \ No newline at end of file diff --git a/locale/it-it/en-gb.voc b/locale/it-it/en-gb.voc index c2578d2..03cd9bc 100644 --- a/locale/it-it/en-gb.voc +++ b/locale/it-it/en-gb.voc @@ -1,3 +1,3 @@ +Gran Bretagna Inglese -Regno Unito -Gran Bretagna \ No newline at end of file +Regno Unito \ No newline at end of file diff --git a/locale/it-it/en-us.voc b/locale/it-it/en-us.voc index a4a3cbd..de85d3b 100644 --- a/locale/it-it/en-us.voc +++ b/locale/it-it/en-us.voc @@ -1,3 +1,3 @@ America American(o|a) -Stati Uniti +Stati Uniti \ No newline at end of file diff --git a/locale/it-it/en.voc b/locale/it-it/en.voc index be66022..d1dc377 100644 --- a/locale/it-it/en.voc +++ b/locale/it-it/en.voc @@ -1 +1 @@ -Inglese +Inglese \ No newline at end of file diff --git a/locale/it-it/es.voc b/locale/it-it/es.voc index d97e467..d4e3487 100644 --- a/locale/it-it/es.voc +++ b/locale/it-it/es.voc @@ -1 +1 @@ -Spagnolo +Spagnolo \ No newline at end of file diff --git a/locale/it-it/euro.voc b/locale/it-it/euro.voc index fcc2cbd..212dc62 100644 --- a/locale/it-it/euro.voc +++ b/locale/it-it/euro.voc @@ -1,2 +1,2 @@ -Europeo Europa +Europeo \ No newline at end of file diff --git a/locale/it-it/euronews.voc b/locale/it-it/euronews.voc index 2e27a9f..d899aa5 100644 --- a/locale/it-it/euronews.voc +++ b/locale/it-it/euronews.voc @@ -1 +1 @@ -euronews +euronews \ No newline at end of file diff --git a/locale/it-it/fi.voc b/locale/it-it/fi.voc index 916f850..ddcf0ae 100644 --- a/locale/it-it/fi.voc +++ b/locale/it-it/fi.voc @@ -1,2 +1,2 @@ Finlandese -Finlandia +Finlandia \ No newline at end of file diff --git a/locale/it-it/fr.voc b/locale/it-it/fr.voc index 5092cc3..09b431e 100644 --- a/locale/it-it/fr.voc +++ b/locale/it-it/fr.voc @@ -1,2 +1,2 @@ -Francia Francese +Francia \ No newline at end of file diff --git a/locale/it-it/fr24.voc b/locale/it-it/fr24.voc index f9cb243..8de1687 100644 --- a/locale/it-it/fr24.voc +++ b/locale/it-it/fr24.voc @@ -1,2 +1,2 @@ -Francia 24 Francia +Francia 24 \ No newline at end of file diff --git a/locale/it-it/intro.dialog b/locale/it-it/intro.dialog index c33ad0c..dd44f82 100644 --- a/locale/it-it/intro.dialog +++ b/locale/it-it/intro.dialog @@ -1 +1 @@ -Grazie per aver installato il modulo Notizie di Ovos +Grazie per aver installato il modulo Notizie di Ovos \ No newline at end of file diff --git a/locale/it-it/it.voc b/locale/it-it/it.voc index 706e04b..08fe7f0 100644 --- a/locale/it-it/it.voc +++ b/locale/it-it/it.voc @@ -1,2 +1,2 @@ Italia -Italian(o|a) +Italian(o|a) \ No newline at end of file diff --git a/locale/it-it/news.voc b/locale/it-it/news.voc index 78ff4d8..b8a3a9e 100644 --- a/locale/it-it/news.voc +++ b/locale/it-it/news.voc @@ -1,2 +1,2 @@ -Notizie -Notiziario \ No newline at end of file +Notiziario +Notizie \ No newline at end of file diff --git a/locale/it-it/nl.voc b/locale/it-it/nl.voc index 9d65384..ca8953a 100644 --- a/locale/it-it/nl.voc +++ b/locale/it-it/nl.voc @@ -1,3 +1,3 @@ -Paesi Bassi Olanda -Olandese \ No newline at end of file +Olandese +Paesi Bassi \ No newline at end of file diff --git a/locale/it-it/pt-pt.voc b/locale/it-it/pt-pt.voc index 06b8103..60544b3 100644 --- a/locale/it-it/pt-pt.voc +++ b/locale/it-it/pt-pt.voc @@ -1,2 +1,2 @@ Portogallo -Portoghese +Portoghese \ No newline at end of file diff --git a/locale/it-it/rt.voc b/locale/it-it/rt.voc index 32e8adf..38f2391 100644 --- a/locale/it-it/rt.voc +++ b/locale/it-it/rt.voc @@ -1 +1 @@ -Russia Oggi +Russia Oggi \ No newline at end of file diff --git a/locale/it-it/ru.voc b/locale/it-it/ru.voc index eaef2c9..77a24c7 100644 --- a/locale/it-it/ru.voc +++ b/locale/it-it/ru.voc @@ -1 +1 @@ -Russia +Russia \ No newline at end of file diff --git a/locale/it-it/sv.voc b/locale/it-it/sv.voc index 9e4b9a9..32ba2b8 100644 --- a/locale/it-it/sv.voc +++ b/locale/it-it/sv.voc @@ -1,2 +1,2 @@ -Svezia Svedese +Svezia \ No newline at end of file diff --git a/locale/it-it/video.voc b/locale/it-it/video.voc index 2b68b52..a227d29 100644 --- a/locale/it-it/video.voc +++ b/locale/it-it/video.voc @@ -1 +1 @@ -video +video \ No newline at end of file diff --git a/locale/pt-pt/ca.voc b/locale/pt-pt/ca.voc index f0d4b95..546b7c1 100644 --- a/locale/pt-pt/ca.voc +++ b/locale/pt-pt/ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt Catalunha -Catalão +Catalão \ No newline at end of file diff --git a/locale/pt-pt/de.voc b/locale/pt-pt/de.voc index 0ea8cf8..a9c8b9c 100644 --- a/locale/pt-pt/de.voc +++ b/locale/pt-pt/de.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -Alemanha +Alemanha \ No newline at end of file diff --git a/locale/pt-pt/en-au.voc b/locale/pt-pt/en-au.voc index 66a26c9..a4e010f 100644 --- a/locale/pt-pt/en-au.voc +++ b/locale/pt-pt/en-au.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt australian -australiana +australiana \ No newline at end of file diff --git a/locale/pt-pt/en-ca.voc b/locale/pt-pt/en-ca.voc index 1da1887..a6dc4b7 100644 --- a/locale/pt-pt/en-ca.voc +++ b/locale/pt-pt/en-ca.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt -canadiano canada +canadiano \ No newline at end of file diff --git a/locale/pt-pt/en-gb.voc b/locale/pt-pt/en-gb.voc index a366ffc..b149b80 100644 --- a/locale/pt-pt/en-gb.voc +++ b/locale/pt-pt/en-gb.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to pt-pt -reino unido -Reino Unido Britânico +Reino Unido +reino unido \ No newline at end of file diff --git a/locale/pt-pt/en-us.voc b/locale/pt-pt/en-us.voc index 0f3fac4..8e5652c 100644 --- a/locale/pt-pt/en-us.voc +++ b/locale/pt-pt/en-us.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt -Estados Unidos América do Sul +Estados Unidos \ No newline at end of file diff --git a/locale/pt-pt/en.voc b/locale/pt-pt/en.voc index d90829f..a035089 100644 --- a/locale/pt-pt/en.voc +++ b/locale/pt-pt/en.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -Inglês +Inglês \ No newline at end of file diff --git a/locale/pt-pt/es.voc b/locale/pt-pt/es.voc index af81258..2667758 100644 --- a/locale/pt-pt/es.voc +++ b/locale/pt-pt/es.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -Espanhol +Espanhol \ No newline at end of file diff --git a/locale/pt-pt/euro.voc b/locale/pt-pt/euro.voc index 0555d27..90e4ef6 100644 --- a/locale/pt-pt/euro.voc +++ b/locale/pt-pt/euro.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt Europeia -euro +euro \ No newline at end of file diff --git a/locale/pt-pt/euronews.voc b/locale/pt-pt/euronews.voc index b981449..d899aa5 100644 --- a/locale/pt-pt/euronews.voc +++ b/locale/pt-pt/euronews.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -euronews +euronews \ No newline at end of file diff --git a/locale/pt-pt/fi.voc b/locale/pt-pt/fi.voc index e042456..ca3eb95 100644 --- a/locale/pt-pt/fi.voc +++ b/locale/pt-pt/fi.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt -finlandês Finlândia +finlandês \ No newline at end of file diff --git a/locale/pt-pt/fr.voc b/locale/pt-pt/fr.voc index cf775bc..d48336e 100644 --- a/locale/pt-pt/fr.voc +++ b/locale/pt-pt/fr.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt Francês -França +França \ No newline at end of file diff --git a/locale/pt-pt/fr24.voc b/locale/pt-pt/fr24.voc index 0808fd4..d2c02f4 100644 --- a/locale/pt-pt/fr24.voc +++ b/locale/pt-pt/fr24.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to pt-pt -França24 -França vinte e quatro França 24 +França vinte e quatro +França24 \ No newline at end of file diff --git a/locale/pt-pt/intro.dialog b/locale/pt-pt/intro.dialog index b0b0e41..bf8ddb5 100644 --- a/locale/pt-pt/intro.dialog +++ b/locale/pt-pt/intro.dialog @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -Obrigado por instalar Habilidade de notícias +Obrigado por instalar Habilidade de notícias \ No newline at end of file diff --git a/locale/pt-pt/it.voc b/locale/pt-pt/it.voc index b4ceb46..cd2b4d5 100644 --- a/locale/pt-pt/it.voc +++ b/locale/pt-pt/it.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt Italiano -Itália +Itália \ No newline at end of file diff --git a/locale/pt-pt/news.voc b/locale/pt-pt/news.voc index 707d571..a8a57ea 100644 --- a/locale/pt-pt/news.voc +++ b/locale/pt-pt/news.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -notícias +notícias \ No newline at end of file diff --git a/locale/pt-pt/nl.voc b/locale/pt-pt/nl.voc index 4aa1e04..d8b5ae2 100644 --- a/locale/pt-pt/nl.voc +++ b/locale/pt-pt/nl.voc @@ -1,4 +1,3 @@ -# auto translated from en-us to pt-pt -Países Baixos Dutch Nederlands +Países Baixos \ No newline at end of file diff --git a/locale/pt-pt/pt-pt.voc b/locale/pt-pt/pt-pt.voc index 0822747..b1d06ae 100644 --- a/locale/pt-pt/pt-pt.voc +++ b/locale/pt-pt/pt-pt.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt Portugal -Português +Português \ No newline at end of file diff --git a/locale/pt-pt/rt.voc b/locale/pt-pt/rt.voc index ce24d89..432974e 100644 --- a/locale/pt-pt/rt.voc +++ b/locale/pt-pt/rt.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -Rússia Hoje +Rússia Hoje \ No newline at end of file diff --git a/locale/pt-pt/ru.voc b/locale/pt-pt/ru.voc index dc49274..a026c34 100644 --- a/locale/pt-pt/ru.voc +++ b/locale/pt-pt/ru.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt -Rússia Russian +Rússia \ No newline at end of file diff --git a/locale/pt-pt/sv.voc b/locale/pt-pt/sv.voc index aadb666..c823997 100644 --- a/locale/pt-pt/sv.voc +++ b/locale/pt-pt/sv.voc @@ -1,3 +1,2 @@ -# auto translated from en-us to pt-pt - Não -sueco +sueco \ No newline at end of file diff --git a/locale/pt-pt/video.voc b/locale/pt-pt/video.voc index f08fa83..fcbdb73 100644 --- a/locale/pt-pt/video.voc +++ b/locale/pt-pt/video.voc @@ -1,2 +1 @@ -# auto translated from en-us to pt-pt -vídeo +vídeo \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index bba78ef..8b46a34 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ beautifulsoup4 pytz feedparser~=6.0 -ovos-utils >= 0.0.38 -ovos-bus-client>=0.0.9a1 -ovos-workshop>=0.0.16a39 +ovos-bus-client>=0.0.9 +ovos-utils>=0.1.0 +ovos-workshop>=0.0.16,<2.0.0 diff --git a/setup.py b/setup.py index 65d458c..d62ad77 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def find_resource_files(): return package_data -with open("README.md", "r") as f: +with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f: long_description = f.read() diff --git a/translations/ca-es/dialogs.json b/translations/ca-es/dialogs.json new file mode 100644 index 0000000..21c62cc --- /dev/null +++ b/translations/ca-es/dialogs.json @@ -0,0 +1,5 @@ +{ + "intro.dialog": [ + "Gràcies per instal·lar l'habilitat de notícies" + ] +} diff --git a/translations/ca-es/vocabs.json b/translations/ca-es/vocabs.json new file mode 100644 index 0000000..738b627 --- /dev/null +++ b/translations/ca-es/vocabs.json @@ -0,0 +1,84 @@ +{ + "video.voc": [ + "vídeo" + ], + "rt.voc": [ + "Russia Today" + ], + "it.voc": [ + "Italià\nItaliana", + "Itàlia" + ], + "en-ca.voc": [ + "Canadà", + "canadenc\ncanadenca" + ], + "nl.voc": [ + "neerlandès\nneerlandés\nholandès\nholandés", + "Països Baixos", + "Holanda" + ], + "ca.voc": [ + "Català\nCatalana", + "Catalunya" + ], + "euronews.voc": [ + "euronews" + ], + "fr.voc": [ + "francès\nfrancés\nfrancesa", + "França" + ], + "es.voc": [ + "espanyol\nespanyola" + ], + "news.voc": [ + "notícies" + ], + "en-au.voc": [ + "Austràlia", + "australià\naustraliana" + ], + "pt-pt.voc": [ + "Portuguès\nPortugués\nPortuguesa", + "Portugal" + ], + "euro.voc": [ + "euro", + "europeu\neuropea" + ], + "en.voc": [ + "anglès\nanglés\nanglesa" + ], + "de.voc": [ + "alemany\nalemanya" + ], + "fr24.voc": [ + "France24", + "France 24", + "France vint-i-quatre", + "France vint i quatre" + ], + "fi.voc": [ + "Finlàndia", + "finès\nfinés\nfinesa" + ], + "sv.voc": [ + "Suècia", + "suec\nsueca" + ], + "en-gb.voc": [ + "britànic\nbritànica", + "Regne Unit", + "Gran Bretanya" + ], + "ru.voc": [ + "rus\nrussa", + "Rússia" + ], + "en-us.voc": [ + "Amèrica", + "americà\namericana", + "Estats Units" + ] +} diff --git a/version.py b/version.py index b5fb52b..0349344 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 -VERSION_MINOR = 0 -VERSION_BUILD = 4 -VERSION_ALPHA = 0 +VERSION_MINOR = 1 +VERSION_BUILD = 2 +VERSION_ALPHA = 1 # END_VERSION_BLOCK