diff --git a/.github/workflows/build-tests.yml b/.github/workflows/build-tests.yml new file mode 100644 index 0000000..4eebdac --- /dev/null +++ b/.github/workflows/build-tests.yml @@ -0,0 +1,15 @@ +name: Build Tests + +on: + pull_request: + branches: [dev, master, main] + workflow_dispatch: + +jobs: + build: + uses: OpenVoiceOS/gh-automations/.github/workflows/build-tests.yml@dev + secrets: inherit + with: + python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]' + install_extras: 'test' + test_path: 'test' diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml deleted file mode 100644 index 838aef4..0000000 --- a/.github/workflows/build_tests.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Run Build Tests -on: - push: - branches: - - master - pull_request: - branches: - - dev - workflow_dispatch: - -jobs: - py_build_tests: - uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master - with: - test_manifest: true - manifest_ignored: "test/**,scripts/**,CHANGELOG.md,translations/**" - pip_audit: - strategy: - max-parallel: 2 - matrix: - python-version: [ "3.10" ] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install skill - run: | - pip install . - - uses: pypa/gh-action-pip-audit@v1.0.8 - with: - # Ignore setuptools vulnerability we can't do much about - # Ignore numpy vulnerability affecting latest version for Py3.7 - ignore-vulns: | - GHSA-r9hx-vwmv-q579 - GHSA-fpfv-jqm9-f5jm - PYSEC-2022-43012 diff --git a/.github/workflows/conventional-label.yaml b/.github/workflows/conventional-label.yml similarity index 77% rename from .github/workflows/conventional-label.yaml rename to .github/workflows/conventional-label.yml index 0a449cb..9894c1b 100644 --- a/.github/workflows/conventional-label.yaml +++ b/.github/workflows/conventional-label.yml @@ -7,4 +7,4 @@ jobs: label: runs-on: ubuntu-latest steps: - - uses: bcoe/conventional-release-labels@v1 \ No newline at end of file + - uses: bcoe/conventional-release-labels@v1 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..e9ccb07 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,17 @@ +name: Code Coverage + +on: + pull_request: + branches: [dev] + workflow_dispatch: + +jobs: + coverage: + uses: OpenVoiceOS/gh-automations/.github/workflows/coverage.yml@dev + secrets: inherit + with: + python_version: '3.11' + coverage_source: 'ovos_skill_mark1_ctrl' + test_path: 'test/' + install_extras: '' + min_coverage: 0 diff --git a/.github/workflows/license_check.yml b/.github/workflows/license_check.yml new file mode 100644 index 0000000..8757eee --- /dev/null +++ b/.github/workflows/license_check.yml @@ -0,0 +1,11 @@ +name: License Check + +on: + pull_request: + branches: [dev] + workflow_dispatch: + +jobs: + license_check: + uses: OpenVoiceOS/gh-automations/.github/workflows/license-check.yml@dev + secrets: inherit diff --git a/.github/workflows/license_tests.yml b/.github/workflows/license_tests.yml deleted file mode 100644 index 7b6656b..0000000 --- a/.github/workflows/license_tests.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Run License Tests -on: - push: - branches: - - master - pull_request: - branches: - - dev - workflow_dispatch: - -jobs: - license_tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Setup Python - uses: actions/setup-python@v1 - with: - python-version: "3.10" - - name: Install Build Tools - run: | - python -m pip install build wheel - - name: Install System Dependencies - run: | - sudo apt-get update - sudo apt install python3-dev swig libssl-dev - - name: Install core repo - run: | - pip install . - - name: Get explicit and transitive dependencies - run: | - pip freeze > requirements.txt - - name: Check python - id: license_check_report - uses: pilosus/action-pip-license-checker@v0.5.0 - with: - requirements: 'requirements.txt' - fail: 'Copyleft,Other,Error' - fails-only: true - exclude: '^(tqdm|ovos-skill-mark1-ctrl).*' - exclude-license: '^(Mozilla).*$' - - name: Print report - if: ${{ always() }} - run: echo "${{ steps.license_check_report.outputs.report }}" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..9a6b7a5 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,14 @@ +name: Lint + +on: + pull_request: + branches: [dev, master, main] + workflow_dispatch: + +jobs: + lint: + uses: OpenVoiceOS/gh-automations/.github/workflows/lint.yml@dev + secrets: inherit + with: + ruff: true + pre_commit: false # set true if .pre-commit-config.yaml exists diff --git a/.github/workflows/ovoscope.yml b/.github/workflows/ovoscope.yml new file mode 100644 index 0000000..0f48332 --- /dev/null +++ b/.github/workflows/ovoscope.yml @@ -0,0 +1,15 @@ +name: Skill End-to-End Tests (ovoscope) + +on: + pull_request: + branches: [dev, master, main] + workflow_dispatch: + +jobs: + ovoscope: + uses: OpenVoiceOS/gh-automations/.github/workflows/ovoscope.yml@dev + secrets: inherit + with: + python_version: '3.11' + install_extras: 'test' + test_path: 'test/end2end/' diff --git a/.github/workflows/pip_audit.yml b/.github/workflows/pip_audit.yml new file mode 100644 index 0000000..bb3ca4d --- /dev/null +++ b/.github/workflows/pip_audit.yml @@ -0,0 +1,11 @@ +name: PIP Audit + +on: + pull_request: + branches: [dev] + workflow_dispatch: + +jobs: + pip_audit: + uses: OpenVoiceOS/gh-automations/.github/workflows/pip-audit.yml@dev + secrets: inherit diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml index cd5f16d..bd3f099 100644 --- a/.github/workflows/publish_stable.yml +++ b/.github/workflows/publish_stable.yml @@ -1,58 +1,23 @@ -name: Stable Release +name: Publish Stable Release + on: - push: - branches: [master] workflow_dispatch: + push: + branches: [master, main] + +permissions: + contents: write # required for version bump commit and release tag jobs: publish_stable: - uses: TigreGotico/gh-automations/.github/workflows/publish-stable.yml@master - secrets: inherit + if: github.actor != 'github-actions[bot]' + uses: OpenVoiceOS/gh-automations/.github/workflows/publish-stable.yml@dev + secrets: + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + MATRIX_TOKEN: ${{ secrets.MATRIX_TOKEN }} with: - branch: 'master' version_file: 'version.py' - setup_py: 'setup.py' + publish_pypi: true 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.10" - - 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 + sync_dev: true + notify_matrix: true diff --git a/.github/workflows/release-preview.yml b/.github/workflows/release-preview.yml new file mode 100644 index 0000000..1367df4 --- /dev/null +++ b/.github/workflows/release-preview.yml @@ -0,0 +1,14 @@ +name: Release Preview + +on: + pull_request: + branches: [dev] + workflow_dispatch: + +jobs: + release_preview: + uses: OpenVoiceOS/gh-automations/.github/workflows/release-preview.yml@dev + secrets: inherit + with: + package_name: 'ovos_skill_mark1_ctrl' + version_file: 'version.py' diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index 92196a2..8223526 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -1,108 +1,28 @@ name: Release Alpha and Propose Stable on: + workflow_dispatch: pull_request: types: [closed] branches: [dev] +permissions: + contents: write + pull-requests: write + jobs: publish_alpha: - if: github.event.pull_request.merged == true - uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master - secrets: inherit + if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' + uses: OpenVoiceOS/gh-automations/.github/workflows/publish-alpha.yml@dev + secrets: + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + MATRIX_TOKEN: ${{ secrets.MATRIX_TOKEN }} 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.10" - - 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 - + propose_release: true + changelog_max_issues: 50 + publish_pypi: true + notify_matrix: true diff --git a/.github/workflows/repo-health.yml b/.github/workflows/repo-health.yml new file mode 100644 index 0000000..04f4f64 --- /dev/null +++ b/.github/workflows/repo-health.yml @@ -0,0 +1,13 @@ +name: Repo Health + +on: + pull_request: + branches: [dev, master, main] + workflow_dispatch: + +jobs: + repo_health: + uses: OpenVoiceOS/gh-automations/.github/workflows/repo-health.yml@dev + secrets: inherit + with: + version_file: 'version.py' diff --git a/.github/workflows/skill-check.yml b/.github/workflows/skill-check.yml new file mode 100644 index 0000000..ebcfd68 --- /dev/null +++ b/.github/workflows/skill-check.yml @@ -0,0 +1,15 @@ +name: Skill Check + +on: + pull_request: + branches: [dev, master, main] + workflow_dispatch: + +jobs: + skill_check: + uses: OpenVoiceOS/gh-automations/.github/workflows/skill-check.yml@dev + secrets: inherit + with: + fail_on_missing_en_us: true + fail_on_invalid_skill_json: false + skip_if_not_skill: true diff --git a/.github/workflows/sync_tx.yml b/.github/workflows/sync_tx.yml deleted file mode 100644 index 5e7d307..0000000 --- a/.github/workflows/sync_tx.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Run script on merge to dev by gitlocalize-app - -on: - workflow_dispatch: - push: - branches: - - dev - -jobs: - run-script: - 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.9 - - - name: Run script if manual dispatch - if: github.event_name == 'workflow_dispatch' - run: | - python scripts/sync_translations.py - - - name: Run script if merged by gitlocalize-app[bot] - if: github.event_name == 'push' && github.event.head_commit.author.username == '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 diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml deleted file mode 100644 index effe5f9..0000000 --- a/.github/workflows/unit_tests.yml +++ /dev/null @@ -1,73 +0,0 @@ -name: Run UnitTests -on: - pull_request: - branches: - - dev - paths-ignore: - - 'version.py' - - 'requirements.txt' - - 'examples/**' - - '.github/**' - - '.gitignore' - - 'LICENSE' - - 'CHANGELOG.md' - - 'MANIFEST.in' - - 'readme.md' - - 'scripts/**' - push: - branches: - - master - paths-ignore: - - 'version.py' - - 'requirements.txt' - - 'examples/**' - - '.github/**' - - '.gitignore' - - 'LICENSE' - - 'CHANGELOG.md' - - 'MANIFEST.in' - - 'readme.md' - - 'scripts/**' - workflow_dispatch: - -jobs: - unit_tests: - strategy: - max-parallel: 2 - matrix: - python-version: [ 3.9, "3.10" ] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up python ${{ matrix.python-version }} - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - name: Install System Dependencies - run: | - sudo apt-get update - sudo apt install python3-dev - python -m pip install build wheel - - name: Install core repo - run: | - pip install . - - name: Install test dependencies - run: | - pip install pytest pytest-timeout pytest-cov - - name: Install System Dependencies - run: | - sudo apt-get update - sudo apt install libfann-dev - - name: Install ovos dependencies - run: | - pip install ovos-plugin-manager ovos-core[skills_lgpl]>=0.0.5a28 - - name: Run unittests - run: | - pytest --cov=ovos-skill-template-repo --cov-report xml test/unittests - # NOTE: additional pytest invocations should also add the --cov-append flag - # or they will overwrite previous invocations' coverage reports - # (for an example, see OVOS Skill Manager's workflow) - - name: Upload coverage - env: - CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} - uses: codecov/codecov-action@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f385935 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +## [0.0.3a2](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/tree/0.0.3a2) (2026-04-04) + +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/compare/0.0.1...0.0.3a2) + +**Merged pull requests:** + +- ci: modernize GitHub workflows [\#26](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/26) ([JarbasAl](https://github.com/JarbasAl)) +- fix\(i18n\): normalize locale folders to canonical BCP-47 [\#25](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/25) ([JarbasAl](https://github.com/JarbasAl)) +- fix: rename bare lang code locale directories [\#23](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/23) ([ovos-localize[bot]](https://github.com/apps/ovos-localize)) +- Complete French Mark 1 control locale [\#22](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/22) ([goldyfruit](https://github.com/goldyfruit)) +- da-dk/translate [\#21](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/21) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- gl-es/translate [\#20](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/20) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- es-es/translate [\#19](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/19) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- Update actions/setup-python action to v6 [\#15](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/15) ([renovate[bot]](https://github.com/apps/renovate)) +- Update actions/checkout action to v6 [\#14](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/14) ([renovate[bot]](https://github.com/apps/renovate)) +- Update dependency python to 3.14 [\#10](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/10) ([renovate[bot]](https://github.com/apps/renovate)) +- Configure Renovate [\#9](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/9) ([renovate[bot]](https://github.com/apps/renovate)) +- updating German translation [\#8](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/8) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- updating German translation [\#7](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/7) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- Add Catalan strings [\#6](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/6) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) +- Add Catalan strings [\#5](https://github.com/OpenVoiceOS/ovos-skill-mark1-ctrl/pull/5) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/__init__.py b/__init__.py index 370f990..f3d6e8c 100644 --- a/__init__.py +++ b/__init__.py @@ -9,6 +9,7 @@ from ovos_workshop.intents import IntentBuilder from ovos_workshop.skills import OVOSSkill from ovos_bus_client.message import Message +from ovos_i2c_detection import is_mark_1 from threading import Thread @@ -31,14 +32,9 @@ def _hex_to_rgb(_hex): class EnclosureControlSkill(OVOSSkill): def __init__(self, *args, **kwargs): - super().__init__(*args, **kwargs) - self.handle_default_eyes() - self.thread = None - self.playing = False - self.animations = [] - -class EnclosureControlSkill(OVOSSkill): - def __init__(self, *args, **kwargs): + if not is_mark_1(): + LOG.error("This device is not a Mark 1. It is suggested to uninstall this skill") + raise NotImplementedError("Purposeful exception because not on a Mark 1 device") super().__init__(*args, **kwargs) self.thread = None self.playing = False diff --git a/locale/ca-ES/animation.voc b/locale/ca-ES/animation.voc new file mode 100644 index 0000000..8d74edd --- /dev/null +++ b/locale/ca-ES/animation.voc @@ -0,0 +1,2 @@ +animacions +animació \ No newline at end of file diff --git a/locale/ca-ES/blink.voc b/locale/ca-ES/blink.voc new file mode 100644 index 0000000..2a99c72 --- /dev/null +++ b/locale/ca-ES/blink.voc @@ -0,0 +1 @@ +parpelleja \ No newline at end of file diff --git a/locale/ca-es/brightness.entity b/locale/ca-ES/brightness.entity similarity index 100% rename from locale/ca-es/brightness.entity rename to locale/ca-ES/brightness.entity diff --git a/locale/ca-es/brightness.error.dialog b/locale/ca-ES/brightness.error.dialog similarity index 64% rename from locale/ca-es/brightness.error.dialog rename to locale/ca-ES/brightness.error.dialog index 96d9ebd..a763edf 100644 --- a/locale/ca-es/brightness.error.dialog +++ b/locale/ca-ES/brightness.error.dialog @@ -1 +1 @@ -No entenc aquest valor de brillantor, doneu-me un valor de brillantor entre el 0 i el 100 per cent. +No entenc aquest valor de brillantor, doneu-me un valor de brillantor entre el 0 i el 100 per cent. \ No newline at end of file diff --git a/locale/ca-es/brightness.intent b/locale/ca-ES/brightness.intent similarity index 86% rename from locale/ca-es/brightness.intent rename to locale/ca-ES/brightness.intent index 2e2a72f..2a7c730 100644 --- a/locale/ca-es/brightness.intent +++ b/locale/ca-ES/brightness.intent @@ -1,13 +1,11 @@ -atenua (la|) {brightness} de (els|) ulls al (percentatge|per cent) -atenua al {brightness} per cent -abaixa la (brillantor|il·luminació) dels ulls al {brightness} (per cent|) (baixa|aumenta) (la|) (brillantor|il·luminació) al {brightness} (per cent|) -(baixa|aumenta) (la|) (brillantor|il·luminació) al {brightness} (per cent|) -il·lumina-ho (una mica|un poc|) fins al {brightness} (per cent|) +(canvia a|estableix|commuta) (el|) (nivell|) (de|d'|) (brillantor|il·luminació) dels (ulls|) (canvia a|estableix|commuta) els ulls al {brightness} (per cent|) (de|d'|) (brillantor|il·luminació) (canvia a|estableix|commuta) els ulls al {brightness} (per cent|) (nivell|) (de|d'|) (brillantor|il·luminació) -(canvia a|estableix|commuta) (el|) (nivell|) (de|d'|) (brillantor|il·luminació) dels (ulls|) -ets (massa|) (brillant|oscur) +abaixa la (brillantor|il·luminació) dels ulls al {brightness} (per cent|) +atenua (la|) {brightness} de (els|) ulls al (percentatge|per cent) +atenua al {brightness} per cent +enfosqueix|atenua una mica ets (massa|) (brillant|oscur) il·lumina ho|aumenta la brillantor -enfosqueix|atenua una mica +il·lumina-ho (una mica|un poc|) fins al {brightness} (per cent|) \ No newline at end of file diff --git a/locale/ca-es/brightness.levels.value b/locale/ca-ES/brightness.levels.value similarity index 100% rename from locale/ca-es/brightness.levels.value rename to locale/ca-ES/brightness.levels.value diff --git a/locale/ca-es/brightness.not.found.dialog b/locale/ca-ES/brightness.not.found.dialog similarity index 59% rename from locale/ca-es/brightness.not.found.dialog rename to locale/ca-ES/brightness.not.found.dialog index 3533845..a7ba30c 100644 --- a/locale/ca-es/brightness.not.found.dialog +++ b/locale/ca-ES/brightness.not.found.dialog @@ -1,2 +1,2 @@ Digueu-me un percentatge o un nivell de brillantor per a la meva cara -Quin nivell o percentatge de brillantor voleu? +Quin nivell o percentatge de brillantor voleu? \ No newline at end of file diff --git a/locale/ca-ES/brightness.not.found.final.dialog b/locale/ca-ES/brightness.not.found.final.dialog new file mode 100644 index 0000000..33755e1 --- /dev/null +++ b/locale/ca-ES/brightness.not.found.final.dialog @@ -0,0 +1,2 @@ +Ho sento, no entenc aquesta brillantor. +Només entenc expressions com "ple" o 50% \ No newline at end of file diff --git a/locale/ca-es/brightness.set.dialog b/locale/ca-ES/brightness.set.dialog similarity index 51% rename from locale/ca-es/brightness.set.dialog rename to locale/ca-ES/brightness.set.dialog index 6c2e223..96d7ceb 100644 --- a/locale/ca-es/brightness.set.dialog +++ b/locale/ca-ES/brightness.set.dialog @@ -1,2 +1,2 @@ -Ok, estableixo la brillantor a {val}. D'acord, establint la brillantor a {val} +Ok, estableixo la brillantor a {val}. \ No newline at end of file diff --git a/locale/ca-es/color.entity b/locale/ca-ES/color.entity similarity index 100% rename from locale/ca-es/color.entity rename to locale/ca-ES/color.entity diff --git a/locale/ca-es/color.need.dialog b/locale/ca-ES/color.need.dialog similarity index 71% rename from locale/ca-es/color.need.dialog rename to locale/ca-ES/color.need.dialog index 556cbdb..7cef1ca 100644 --- a/locale/ca-es/color.need.dialog +++ b/locale/ca-ES/color.need.dialog @@ -1,3 +1,3 @@ -Quin color voleu utilitzar? -Quin color voleu que siguin els meus ulls? Poseu un color per provar. +Quin color voleu que siguin els meus ulls? +Quin color voleu utilitzar? \ No newline at end of file diff --git a/locale/ca-es/color.not.exist.dialog b/locale/ca-ES/color.not.exist.dialog similarity index 79% rename from locale/ca-es/color.not.exist.dialog rename to locale/ca-ES/color.not.exist.dialog index 04400a2..adc3e7c 100644 --- a/locale/ca-es/color.not.exist.dialog +++ b/locale/ca-ES/color.not.exist.dialog @@ -1,2 +1,2 @@ No conec aquest color. Si en coneixeu els valors R G B podeu dir "definir un color d'ulls personalitzat". -No és un color que conec. +No és un color que conec. \ No newline at end of file diff --git a/locale/ca-es/color.not.found.dialog b/locale/ca-ES/color.not.found.dialog similarity index 94% rename from locale/ca-es/color.not.found.dialog rename to locale/ca-ES/color.not.found.dialog index e755db8..0743640 100644 --- a/locale/ca-es/color.not.found.dialog +++ b/locale/ca-ES/color.not.found.dialog @@ -1,3 +1,3 @@ Aquest color no és una opció. Intenteu-ho demanant-me que defineixi un color d'ull personalitzat. -No tinc aquest color disponible, però puc establir colors d'ulls personalitzats. Els meus ulls no poden convertir-se en aquest color. Potser m'hauríeu de demanar que estableixi un color d'ull personalitzat. +No tinc aquest color disponible, però puc establir colors d'ulls personalitzats. \ No newline at end of file diff --git a/locale/ca-es/colors.value b/locale/ca-ES/colors.value similarity index 100% rename from locale/ca-es/colors.value rename to locale/ca-ES/colors.value diff --git a/locale/ca-ES/crazy.voc b/locale/ca-ES/crazy.voc new file mode 100644 index 0000000..ea7b871 --- /dev/null +++ b/locale/ca-ES/crazy.voc @@ -0,0 +1 @@ +boig \ No newline at end of file diff --git a/locale/ca-es/custom.eye.color.intent b/locale/ca-ES/custom.eye.color.intent similarity index 53% rename from locale/ca-es/custom.eye.color.intent rename to locale/ca-ES/custom.eye.color.intent index 65295bc..22a02e5 100644 --- a/locale/ca-es/custom.eye.color.intent +++ b/locale/ca-ES/custom.eye.color.intent @@ -1,2 +1,2 @@ -estableix (color|colors) ulls personalitzat (establir|canviar) a un color d'ulls personalitzat +estableix (color|colors) ulls personalitzat \ No newline at end of file diff --git a/locale/ca-ES/down.voc b/locale/ca-ES/down.voc new file mode 100644 index 0000000..3b248a9 --- /dev/null +++ b/locale/ca-ES/down.voc @@ -0,0 +1 @@ +avall \ No newline at end of file diff --git a/locale/ca-ES/enclosure.voc b/locale/ca-ES/enclosure.voc new file mode 100644 index 0000000..c1ab373 --- /dev/null +++ b/locale/ca-ES/enclosure.voc @@ -0,0 +1,4 @@ +(mark|marc) 1 +(mark|marc) oan +el teu cos +tancament \ No newline at end of file diff --git a/locale/ca-ES/error.rgbvalue.dialog b/locale/ca-ES/error.rgbvalue.dialog new file mode 100644 index 0000000..c3bad8a --- /dev/null +++ b/locale/ca-ES/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +El valor ha d'estar entre 0 i 255 +Necessito un número entre 0 i 255 \ No newline at end of file diff --git a/locale/ca-ES/error.set.color.dialog b/locale/ca-ES/error.set.color.dialog new file mode 100644 index 0000000..b5a494b --- /dev/null +++ b/locale/ca-ES/error.set.color.dialog @@ -0,0 +1,2 @@ +Ho sento, hi ha hagut un error en establir el color. +Sembla que he tingut un error en intentar establir el color. \ No newline at end of file diff --git a/locale/ca-es/eye.color.intent b/locale/ca-ES/eye.color.intent similarity index 84% rename from locale/ca-es/eye.color.intent rename to locale/ca-ES/eye.color.intent index eb076d5..eff5571 100644 --- a/locale/ca-es/eye.color.intent +++ b/locale/ca-ES/eye.color.intent @@ -1,6 +1,6 @@ +(canvia|estableix) (el color|els colors) dels ulls (canvia|estableix) (el|) color d'ulls al {color} -(canvia|estableix) el color dels ulls al {color} (canvia|estableix) el color dels ulls a algù {color} -(canvia|estableix) el color dels ulls al (color|) {color} (canvia|estableix) el color dels ulls a un (color|) {color} -(canvia|estableix) (el color|els colors) dels ulls +(canvia|estableix) el color dels ulls al (color|) {color} +(canvia|estableix) el color dels ulls al {color} \ No newline at end of file diff --git a/locale/ca-ES/eyes.voc b/locale/ca-ES/eyes.voc new file mode 100644 index 0000000..2cba233 --- /dev/null +++ b/locale/ca-ES/eyes.voc @@ -0,0 +1,2 @@ +ull +ulls \ No newline at end of file diff --git a/locale/ca-ES/get.b.value.dialog b/locale/ca-ES/get.b.value.dialog new file mode 100644 index 0000000..1ae2144 --- /dev/null +++ b/locale/ca-ES/get.b.value.dialog @@ -0,0 +1,2 @@ +Gairebé finit. Què hi ha del valor blau? +Un últim número entre 0 i 255 per al blau \ No newline at end of file diff --git a/locale/ca-es/get.g.value.dialog b/locale/ca-ES/get.g.value.dialog similarity index 53% rename from locale/ca-es/get.g.value.dialog rename to locale/ca-ES/get.g.value.dialog index e9f7e50..99a2219 100644 --- a/locale/ca-es/get.g.value.dialog +++ b/locale/ca-ES/get.g.value.dialog @@ -1,2 +1,2 @@ Ara necessito un altre valor per al verd -Tot seguit necessito el valor verd +Tot seguit necessito el valor verd \ No newline at end of file diff --git a/locale/ca-ES/get.r.value.dialog b/locale/ca-ES/get.r.value.dialog new file mode 100644 index 0000000..886e530 --- /dev/null +++ b/locale/ca-ES/get.r.value.dialog @@ -0,0 +1,2 @@ +Digueu-me un valor de 0 a 255 per al vermell +Doneu-me un valor entre 0 i 255 per al component vermell \ No newline at end of file diff --git a/locale/ca-ES/left.voc b/locale/ca-ES/left.voc new file mode 100644 index 0000000..6a26a4b --- /dev/null +++ b/locale/ca-ES/left.voc @@ -0,0 +1 @@ +esquerra \ No newline at end of file diff --git a/locale/ca-ES/listen.voc b/locale/ca-ES/listen.voc new file mode 100644 index 0000000..a6ae732 --- /dev/null +++ b/locale/ca-ES/listen.voc @@ -0,0 +1,2 @@ +escolta +escoltant \ No newline at end of file diff --git a/locale/ca-ES/look.voc b/locale/ca-ES/look.voc new file mode 100644 index 0000000..e2a1d81 --- /dev/null +++ b/locale/ca-ES/look.voc @@ -0,0 +1,2 @@ +apunta els ulls +mira \ No newline at end of file diff --git a/locale/ca-ES/mouth.voc b/locale/ca-ES/mouth.voc new file mode 100644 index 0000000..26ce633 --- /dev/null +++ b/locale/ca-ES/mouth.voc @@ -0,0 +1 @@ +boca \ No newline at end of file diff --git a/locale/ca-ES/mute.voc b/locale/ca-ES/mute.voc new file mode 100644 index 0000000..36ee088 --- /dev/null +++ b/locale/ca-ES/mute.voc @@ -0,0 +1,4 @@ +apaga el so +desactiva el so +silenci +so inactiu \ No newline at end of file diff --git a/locale/ca-ES/narrow.voc b/locale/ca-ES/narrow.voc new file mode 100644 index 0000000..93f1b43 --- /dev/null +++ b/locale/ca-ES/narrow.voc @@ -0,0 +1 @@ +(estret|estreta) \ No newline at end of file diff --git a/locale/ca-ES/perform.voc b/locale/ca-ES/perform.voc new file mode 100644 index 0000000..602b4a2 --- /dev/null +++ b/locale/ca-ES/perform.voc @@ -0,0 +1 @@ +realitza \ No newline at end of file diff --git a/locale/ca-ES/reboot.voc b/locale/ca-ES/reboot.voc new file mode 100644 index 0000000..b806c20 --- /dev/null +++ b/locale/ca-ES/reboot.voc @@ -0,0 +1 @@ +torna a engegar \ No newline at end of file diff --git a/locale/ca-ES/reset.voc b/locale/ca-ES/reset.voc new file mode 100644 index 0000000..a98d2ab --- /dev/null +++ b/locale/ca-ES/reset.voc @@ -0,0 +1,4 @@ +reinicialitza +torna a normal +torna al predeterminat +torna als valors per defecte \ No newline at end of file diff --git a/locale/ca-ES/right.voc b/locale/ca-ES/right.voc new file mode 100644 index 0000000..8b482a8 --- /dev/null +++ b/locale/ca-ES/right.voc @@ -0,0 +1 @@ +dreta \ No newline at end of file diff --git a/locale/ca-es/set.color.success.dialog b/locale/ca-ES/set.color.success.dialog similarity index 67% rename from locale/ca-es/set.color.success.dialog rename to locale/ca-ES/set.color.success.dialog index 5465b37..eb44ef9 100644 --- a/locale/ca-es/set.color.success.dialog +++ b/locale/ca-ES/set.color.success.dialog @@ -1,3 +1,3 @@ -Genial. Mireu els meus ulls. D'acord. Ara tinc millor aspecte? -És un bon color. Mireu-m ara. +Genial. Mireu els meus ulls. +És un bon color. Mireu-m ara. \ No newline at end of file diff --git a/locale/ca-es/set.custom.color.dialog b/locale/ca-ES/set.custom.color.dialog similarity index 98% rename from locale/ca-es/set.custom.color.dialog rename to locale/ca-ES/set.custom.color.dialog index d4a0bd7..82e167c 100644 --- a/locale/ca-es/set.custom.color.dialog +++ b/locale/ca-ES/set.custom.color.dialog @@ -1 +1 @@ -El meu cervell està connectat per entendre els colors de R G B. +El meu cervell està connectat per entendre els colors de R G B. \ No newline at end of file diff --git a/locale/ca-ES/set.default.eye.color.dialog b/locale/ca-ES/set.default.eye.color.dialog new file mode 100644 index 0000000..3f2eba4 --- /dev/null +++ b/locale/ca-ES/set.default.eye.color.dialog @@ -0,0 +1 @@ +Voleu que aquest sigui el vostre color d'ulls predeterminat? \ No newline at end of file diff --git a/locale/ca-ES/smile.voc b/locale/ca-ES/smile.voc new file mode 100644 index 0000000..1a8c858 --- /dev/null +++ b/locale/ca-ES/smile.voc @@ -0,0 +1,2 @@ +somriu +somriure \ No newline at end of file diff --git a/locale/ca-ES/spin.voc b/locale/ca-ES/spin.voc new file mode 100644 index 0000000..7cbae70 --- /dev/null +++ b/locale/ca-ES/spin.voc @@ -0,0 +1 @@ +gira \ No newline at end of file diff --git a/locale/ca-ES/system.voc b/locale/ca-ES/system.voc new file mode 100644 index 0000000..ea166ae --- /dev/null +++ b/locale/ca-ES/system.voc @@ -0,0 +1,2 @@ +sistema +sistema operatiu \ No newline at end of file diff --git a/locale/ca-ES/think.voc b/locale/ca-ES/think.voc new file mode 100644 index 0000000..b7c8062 --- /dev/null +++ b/locale/ca-ES/think.voc @@ -0,0 +1,2 @@ +pensa +pensant \ No newline at end of file diff --git a/locale/ca-ES/unmute.voc b/locale/ca-ES/unmute.voc new file mode 100644 index 0000000..2045203 --- /dev/null +++ b/locale/ca-ES/unmute.voc @@ -0,0 +1,3 @@ +activa el so +deixa de silenciar +so actiu \ No newline at end of file diff --git a/locale/ca-ES/up.voc b/locale/ca-ES/up.voc new file mode 100644 index 0000000..57cbe92 --- /dev/null +++ b/locale/ca-ES/up.voc @@ -0,0 +1 @@ +amunt \ No newline at end of file diff --git a/locale/ca-es/brightness.not.found.final.dialog b/locale/ca-es/brightness.not.found.final.dialog deleted file mode 100644 index 5f5b7db..0000000 --- a/locale/ca-es/brightness.not.found.final.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ho sento, no entenc aquesta brillantor. -Només entenc expressions com "ple" o 50% diff --git a/locale/ca-es/error.rgbvalue.dialog b/locale/ca-es/error.rgbvalue.dialog deleted file mode 100644 index 45ef710..0000000 --- a/locale/ca-es/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Necessito un número entre 0 i 255 -El valor ha d'estar entre 0 i 255 diff --git a/locale/ca-es/error.set.color.dialog b/locale/ca-es/error.set.color.dialog deleted file mode 100644 index 8b4597d..0000000 --- a/locale/ca-es/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ho sento, hi ha hagut un error en establir el color. -Sembla que he tingut un error en intentar establir el color. diff --git a/locale/ca-es/get.b.value.dialog b/locale/ca-es/get.b.value.dialog deleted file mode 100644 index af970a4..0000000 --- a/locale/ca-es/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Gairebé finit. Què hi ha del valor blau? -Un últim número entre 0 i 255 per al blau diff --git a/locale/ca-es/get.r.value.dialog b/locale/ca-es/get.r.value.dialog deleted file mode 100644 index 0706abe..0000000 --- a/locale/ca-es/get.r.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Doneu-me un valor entre 0 i 255 per al component vermell -Digueu-me un valor de 0 a 255 per al vermell diff --git a/locale/da-DK/animation.voc b/locale/da-DK/animation.voc new file mode 100644 index 0000000..0d96743 --- /dev/null +++ b/locale/da-DK/animation.voc @@ -0,0 +1,2 @@ +animation +animationer \ No newline at end of file diff --git a/locale/da-DK/blink.voc b/locale/da-DK/blink.voc new file mode 100644 index 0000000..1785e07 --- /dev/null +++ b/locale/da-DK/blink.voc @@ -0,0 +1 @@ +blinke \ No newline at end of file diff --git a/locale/da-DK/brightness.error.dialog b/locale/da-DK/brightness.error.dialog new file mode 100644 index 0000000..9cc1e13 --- /dev/null +++ b/locale/da-DK/brightness.error.dialog @@ -0,0 +1 @@ +Jeg forstår ikke den lysstyrkeværdi, giv mig en lysstyrkeværdi fra 0 til 100 procent. \ No newline at end of file diff --git a/locale/da-DK/brightness.intent b/locale/da-DK/brightness.intent new file mode 100644 index 0000000..bf4e932 --- /dev/null +++ b/locale/da-DK/brightness.intent @@ -0,0 +1,12 @@ +(skift|indstil|omskifter) (det|dit) (øje|) (lysstyrke|belysning) (niveau|) til {lysstyrke} (procent|) +(skift|indstil|omskifter) (din|din) (øje|) (lysstyrke|belysning) (niveau|) +(skift|indstil|skift) til {brightness} (procent|) (øje|) (lysstyrke|belysning) +drej (den|) (lysstyrke|belysning) (ned|op) til {brightness} (procent|) +du er (også|) (lys|dæmpet) +dæmp (dine) øjne til {brightness} (procent|) +dæmpe det lidt ned +dæmpe ned til {lysstyrke} (procent|) +lysne det op +lysne op (en smule|) til {brightness} (procent|) +skru (ned|op) (den|) (lysstyrke|belysning) til {brightness} (procent|) +sænk (lysstyrke|belysning) af dine øjne til {brightness} (procent|) \ No newline at end of file diff --git a/locale/da-DK/brightness.not.found.dialog b/locale/da-DK/brightness.not.found.dialog new file mode 100644 index 0000000..a9c28fd --- /dev/null +++ b/locale/da-DK/brightness.not.found.dialog @@ -0,0 +1,2 @@ +Fortæl mig en lysstyrkeprocent eller et niveau for mit ansigt +Hvilket lysstyrkeniveau eller procent vil du have? \ No newline at end of file diff --git a/locale/da-DK/brightness.not.found.final.dialog b/locale/da-DK/brightness.not.found.final.dialog new file mode 100644 index 0000000..1fcee65 --- /dev/null +++ b/locale/da-DK/brightness.not.found.final.dialog @@ -0,0 +1,2 @@ +Beklager, jeg forstår ikke den lysstyrke. +Jeg forstår kun ting som "fuld" eller 50 % \ No newline at end of file diff --git a/locale/da-DK/brightness.set.dialog b/locale/da-DK/brightness.set.dialog new file mode 100644 index 0000000..612bbb6 --- /dev/null +++ b/locale/da-DK/brightness.set.dialog @@ -0,0 +1,2 @@ +Lyder godt, indstil lysstyrken til {val} +Okay, indstil lysstyrken til {val}. \ No newline at end of file diff --git a/locale/da-DK/color.need.dialog b/locale/da-DK/color.need.dialog new file mode 100644 index 0000000..59e4322 --- /dev/null +++ b/locale/da-DK/color.need.dialog @@ -0,0 +1,3 @@ +Hvilken farve vil du gerne bruge? +Hvilken farve vil du have mine øjne til at have? +Nævn en farve du vil prøve. \ No newline at end of file diff --git a/locale/da-DK/color.not.exist.dialog b/locale/da-DK/color.not.exist.dialog new file mode 100644 index 0000000..a340dd5 --- /dev/null +++ b/locale/da-DK/color.not.exist.dialog @@ -0,0 +1,2 @@ +Det er ikke en farve, jeg kender. +Jeg kender ikke den farve. Hvis du kender R G B-værdierne, kan du sige 'indstil en brugerdefineret øjenfarve'. \ No newline at end of file diff --git a/locale/da-DK/color.not.found.dialog b/locale/da-DK/color.not.found.dialog new file mode 100644 index 0000000..757a70d --- /dev/null +++ b/locale/da-DK/color.not.found.dialog @@ -0,0 +1,3 @@ +Beklager, den farve er ikke en mulighed. Prøv at bede mig om at indstille en brugerdefineret øjenfarve. +Jeg har ikke den farve tilgængelig, men jeg kan indstille brugerdefinerede øjenfarver. +Mine øjne kan ikke blive til den farve. Måske skulle du bede mig om at indstille en brugerdefineret øjenfarve. \ No newline at end of file diff --git a/locale/da-DK/crazy.voc b/locale/da-DK/crazy.voc new file mode 100644 index 0000000..4a675fa --- /dev/null +++ b/locale/da-DK/crazy.voc @@ -0,0 +1 @@ +skør \ No newline at end of file diff --git a/locale/da-DK/custom.eye.color.intent b/locale/da-DK/custom.eye.color.intent new file mode 100644 index 0000000..69d99d9 --- /dev/null +++ b/locale/da-DK/custom.eye.color.intent @@ -0,0 +1,2 @@ +(indstil|skift) til et brugerdefineret øje (farve|farver) +sæt brugerdefineret øje (farve|farver) \ No newline at end of file diff --git a/locale/da-DK/down.voc b/locale/da-DK/down.voc new file mode 100644 index 0000000..6d6d229 --- /dev/null +++ b/locale/da-DK/down.voc @@ -0,0 +1 @@ +ned \ No newline at end of file diff --git a/locale/da-DK/enclosure.voc b/locale/da-DK/enclosure.voc new file mode 100644 index 0000000..d5b5d97 --- /dev/null +++ b/locale/da-DK/enclosure.voc @@ -0,0 +1,4 @@ +din krop +indhegning +mark 1 +mark one \ No newline at end of file diff --git a/locale/da-DK/error.rgbvalue.dialog b/locale/da-DK/error.rgbvalue.dialog new file mode 100644 index 0000000..518d279 --- /dev/null +++ b/locale/da-DK/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +Jeg skal bruge et tal mellem 0 og 255 +Værdien skal være mellem 0 og 255 \ No newline at end of file diff --git a/locale/da-DK/error.set.color.dialog b/locale/da-DK/error.set.color.dialog new file mode 100644 index 0000000..6002f93 --- /dev/null +++ b/locale/da-DK/error.set.color.dialog @@ -0,0 +1,2 @@ +Beklager, der opstod en fejl ved indstilling af farven. +Det ser ud til, at jeg havde en fejl under forsøget på at indstille farven. \ No newline at end of file diff --git a/locale/da-DK/eye.color.intent b/locale/da-DK/eye.color.intent new file mode 100644 index 0000000..958ae4c --- /dev/null +++ b/locale/da-DK/eye.color.intent @@ -0,0 +1,6 @@ +(skift|sæt) øje (farve|farver) +(ændre|indstil) (dine|) øjne til (a|an|) {color} (farve|) +(ændre|indstil) (din|dine|) (øjne|øjne) (farve|farver|) til {farve} +(ændre|indstil) (øje|øjne) (farve|farver|) til {farve} +(ændre|indstil) (øje|øjne) til (a|en) {color} farve +(ændre|indstil) øje (farve|farver) til noget {color} \ No newline at end of file diff --git a/locale/da-DK/eyes.voc b/locale/da-DK/eyes.voc new file mode 100644 index 0000000..0bafbe0 --- /dev/null +++ b/locale/da-DK/eyes.voc @@ -0,0 +1,2 @@ +øje +øjne \ No newline at end of file diff --git a/locale/da-DK/get.b.value.dialog b/locale/da-DK/get.b.value.dialog new file mode 100644 index 0000000..a6010a2 --- /dev/null +++ b/locale/da-DK/get.b.value.dialog @@ -0,0 +1,2 @@ +Et sidste tal mellem 0 og 255 for blå +Næsten der. Hvad med den blå værdi? \ No newline at end of file diff --git a/locale/da-DK/get.g.value.dialog b/locale/da-DK/get.g.value.dialog new file mode 100644 index 0000000..4440b06 --- /dev/null +++ b/locale/da-DK/get.g.value.dialog @@ -0,0 +1,2 @@ +Dernæst skal jeg bruge den grønne værdi +Nu mangler jeg en anden værdi for grøn \ No newline at end of file diff --git a/locale/da-DK/get.r.value.dialog b/locale/da-DK/get.r.value.dialog new file mode 100644 index 0000000..61521ff --- /dev/null +++ b/locale/da-DK/get.r.value.dialog @@ -0,0 +1,2 @@ +Fortæl mig en værdi fra 0 til 255 for rød +Giv mig venligst en værdi mellem 0 og 255 for den røde komponent \ No newline at end of file diff --git a/locale/da-DK/left.voc b/locale/da-DK/left.voc new file mode 100644 index 0000000..fda9a51 --- /dev/null +++ b/locale/da-DK/left.voc @@ -0,0 +1 @@ +venstre \ No newline at end of file diff --git a/locale/da-DK/listen.voc b/locale/da-DK/listen.voc new file mode 100644 index 0000000..4eada0c --- /dev/null +++ b/locale/da-DK/listen.voc @@ -0,0 +1,2 @@ +lytte +lytter \ No newline at end of file diff --git a/locale/da-DK/look.voc b/locale/da-DK/look.voc new file mode 100644 index 0000000..5f8a70c --- /dev/null +++ b/locale/da-DK/look.voc @@ -0,0 +1,2 @@ +pege dine øjne +se \ No newline at end of file diff --git a/locale/da-DK/mouth.voc b/locale/da-DK/mouth.voc new file mode 100644 index 0000000..01eca8e --- /dev/null +++ b/locale/da-DK/mouth.voc @@ -0,0 +1 @@ +mund \ No newline at end of file diff --git a/locale/da-DK/mute.voc b/locale/da-DK/mute.voc new file mode 100644 index 0000000..685d545 --- /dev/null +++ b/locale/da-DK/mute.voc @@ -0,0 +1,4 @@ +lyd deaktiveret +lydafbrydelse +lyden slukket +stum \ No newline at end of file diff --git a/locale/da-DK/narrow.voc b/locale/da-DK/narrow.voc new file mode 100644 index 0000000..0ea434c --- /dev/null +++ b/locale/da-DK/narrow.voc @@ -0,0 +1 @@ +smal \ No newline at end of file diff --git a/locale/da-DK/perform.voc b/locale/da-DK/perform.voc new file mode 100644 index 0000000..12a1767 --- /dev/null +++ b/locale/da-DK/perform.voc @@ -0,0 +1 @@ +udføre \ No newline at end of file diff --git a/locale/da-DK/reboot.voc b/locale/da-DK/reboot.voc new file mode 100644 index 0000000..882236c --- /dev/null +++ b/locale/da-DK/reboot.voc @@ -0,0 +1 @@ +genstart \ No newline at end of file diff --git a/locale/da-DK/reset.voc b/locale/da-DK/reset.voc new file mode 100644 index 0000000..a230ae4 --- /dev/null +++ b/locale/da-DK/reset.voc @@ -0,0 +1,4 @@ +nulstilles +tilbage til normalen +tilbage til standard +tilbage til standardindstillingerne \ No newline at end of file diff --git a/locale/da-DK/right.voc b/locale/da-DK/right.voc new file mode 100644 index 0000000..4d8a589 --- /dev/null +++ b/locale/da-DK/right.voc @@ -0,0 +1 @@ +højre \ No newline at end of file diff --git a/locale/da-DK/set.color.success.dialog b/locale/da-DK/set.color.success.dialog new file mode 100644 index 0000000..6c0e510 --- /dev/null +++ b/locale/da-DK/set.color.success.dialog @@ -0,0 +1,3 @@ +Afkøle. Tjek mine øjne. +Det er en god farve. Se på mig nu. +Okay. Ser jeg bedre ud nu? \ No newline at end of file diff --git a/locale/da-DK/set.custom.color.dialog b/locale/da-DK/set.custom.color.dialog new file mode 100644 index 0000000..213b304 --- /dev/null +++ b/locale/da-DK/set.custom.color.dialog @@ -0,0 +1 @@ +Min hjerne er kablet til at forstå farver i RGB. \ No newline at end of file diff --git a/locale/da-DK/set.default.eye.color.dialog b/locale/da-DK/set.default.eye.color.dialog new file mode 100644 index 0000000..da6c8c9 --- /dev/null +++ b/locale/da-DK/set.default.eye.color.dialog @@ -0,0 +1 @@ +Vil du gerne gøre dette til din standard øjenfarve? \ No newline at end of file diff --git a/locale/da-DK/smile.voc b/locale/da-DK/smile.voc new file mode 100644 index 0000000..fd85fb1 --- /dev/null +++ b/locale/da-DK/smile.voc @@ -0,0 +1,2 @@ +smil +smilende \ No newline at end of file diff --git a/locale/da-DK/spin.voc b/locale/da-DK/spin.voc new file mode 100644 index 0000000..93857df --- /dev/null +++ b/locale/da-DK/spin.voc @@ -0,0 +1,3 @@ +rotere +spin +vride \ No newline at end of file diff --git a/locale/da-DK/system.voc b/locale/da-DK/system.voc new file mode 100644 index 0000000..e7e7c83 --- /dev/null +++ b/locale/da-DK/system.voc @@ -0,0 +1,2 @@ +operativsystem +system \ No newline at end of file diff --git a/locale/da-DK/think.voc b/locale/da-DK/think.voc new file mode 100644 index 0000000..8acd603 --- /dev/null +++ b/locale/da-DK/think.voc @@ -0,0 +1,2 @@ +tænke +tænker \ No newline at end of file diff --git a/locale/da-DK/unmute.voc b/locale/da-DK/unmute.voc new file mode 100644 index 0000000..79e270d --- /dev/null +++ b/locale/da-DK/unmute.voc @@ -0,0 +1,3 @@ +lyd aktiveret +lyd på +slå lyden til \ No newline at end of file diff --git a/locale/da-DK/up.voc b/locale/da-DK/up.voc new file mode 100644 index 0000000..d314d07 --- /dev/null +++ b/locale/da-DK/up.voc @@ -0,0 +1 @@ +op \ No newline at end of file diff --git a/locale/de-DE/animation.voc b/locale/de-DE/animation.voc new file mode 100644 index 0000000..87ea88d --- /dev/null +++ b/locale/de-DE/animation.voc @@ -0,0 +1,2 @@ +Animation +Animationen \ No newline at end of file diff --git a/locale/de-DE/blink.voc b/locale/de-DE/blink.voc new file mode 100644 index 0000000..8452e50 --- /dev/null +++ b/locale/de-DE/blink.voc @@ -0,0 +1 @@ +blinken \ No newline at end of file diff --git a/locale/de-de/brightness.entity b/locale/de-DE/brightness.entity similarity index 100% rename from locale/de-de/brightness.entity rename to locale/de-DE/brightness.entity diff --git a/locale/de-de/brightness.error.dialog b/locale/de-DE/brightness.error.dialog similarity index 70% rename from locale/de-de/brightness.error.dialog rename to locale/de-DE/brightness.error.dialog index 936ca7f..dfaf76b 100644 --- a/locale/de-de/brightness.error.dialog +++ b/locale/de-DE/brightness.error.dialog @@ -1 +1 @@ -Ich verstehe diese Helligkeitsangabe nicht, gib mir einen Wert zwischen 0 und 100 Prozent. +Ich verstehe diese Helligkeitsangabe nicht, gib mir einen Wert zwischen 0 und 100 Prozent. \ No newline at end of file diff --git a/locale/de-de/brightness.intent b/locale/de-DE/brightness.intent similarity index 93% rename from locale/de-de/brightness.intent rename to locale/de-DE/brightness.intent index 7bdf30f..8f3f9d3 100644 --- a/locale/de-de/brightness.intent +++ b/locale/de-DE/brightness.intent @@ -1,13 +1,12 @@ -dimme (die|deine) Augen auf {brightness} (Prozent|) -dimme runter auf {brightness} (Prozent|) -verringere die (Helligkeit|Beleuchtung) deiner Augen auf {brightness} (Prozent|) -stelle (die|) (Helligkeit|Beleuchtung) (runter|rauf) auf {brightness} (Prozent|) -drehe (die|) (Helligkeit|Beleuchtung) (runter|rauf) auf {brightness} (Prozent|) (ein wenig|) heller auf {brightness} (Prozent|) -(ändere|setze|wechsele) die (Augen|) (Helligkeit|Beleuchtung) auf {brightness} (Prozent|) -(ändere|setze|wechsele) (die|deine) (Augen|) (Helligkeit|Beleuchtung) (Stufe|) auf {brightness} (Prozent|) (ändere|setze|wechsele) (die|deine) (Augen|) (Helligkeit|Beleuchtung) (Stufe|) +(ändere|setze|wechsele) (die|deine) (Augen|) (Helligkeit|Beleuchtung) (Stufe|) auf {brightness} (Prozent|) +(ändere|setze|wechsele) die (Augen|) (Helligkeit|Beleuchtung) auf {brightness} (Prozent|) Du bist (zu|) (hell|dunkel) -Du bist (zu|) (hell|dunkel) -etwas heller +dimme (die|deine) Augen auf {brightness} (Prozent|) +dimme runter auf {brightness} (Prozent|) +drehe (die|) (Helligkeit|Beleuchtung) (runter|rauf) auf {brightness} (Prozent|) etwas dunkler +etwas heller +stelle (die|) (Helligkeit|Beleuchtung) (runter|rauf) auf {brightness} (Prozent|) +verringere die (Helligkeit|Beleuchtung) deiner Augen auf {brightness} (Prozent|) \ No newline at end of file diff --git a/locale/de-de/brightness.levels.value b/locale/de-DE/brightness.levels.value similarity index 100% rename from locale/de-de/brightness.levels.value rename to locale/de-DE/brightness.levels.value diff --git a/locale/de-de/brightness.not.found.dialog b/locale/de-DE/brightness.not.found.dialog similarity index 56% rename from locale/de-de/brightness.not.found.dialog rename to locale/de-DE/brightness.not.found.dialog index 9e01538..8a7d191 100644 --- a/locale/de-de/brightness.not.found.dialog +++ b/locale/de-DE/brightness.not.found.dialog @@ -1,2 +1,2 @@ Nenne mir die Helligkeit für mein Gesicht in Prozent oder als Stufe -Welche Helligkeitswert oder Prozentsatz wünscht Du? +Welche Helligkeitswert oder Prozentsatz wünscht Du? \ No newline at end of file diff --git a/locale/de-de/brightness.not.found.final.dialog b/locale/de-DE/brightness.not.found.final.dialog similarity index 56% rename from locale/de-de/brightness.not.found.final.dialog rename to locale/de-DE/brightness.not.found.final.dialog index bf30c88..107cc4f 100644 --- a/locale/de-de/brightness.not.found.final.dialog +++ b/locale/de-DE/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ Entschuldigung, ich verstehe diesen Helligkeitswert nicht. -ich verstehe nur sachen wie, 'voll' oder 50% +ich verstehe nur sachen wie, 'voll' oder 50% \ No newline at end of file diff --git a/locale/de-de/brightness.set.dialog b/locale/de-DE/brightness.set.dialog similarity index 53% rename from locale/de-de/brightness.set.dialog rename to locale/de-DE/brightness.set.dialog index 8b1bb92..5e64ca2 100644 --- a/locale/de-de/brightness.set.dialog +++ b/locale/de-DE/brightness.set.dialog @@ -1,2 +1,2 @@ -Okay, setze Helligkeit auf {val}. Klingt gut, setze Helligkeit auf {val} +Okay, setze Helligkeit auf {val}. \ No newline at end of file diff --git a/locale/de-de/color.entity b/locale/de-DE/color.entity similarity index 100% rename from locale/de-de/color.entity rename to locale/de-DE/color.entity diff --git a/locale/de-de/color.need.dialog b/locale/de-DE/color.need.dialog similarity index 66% rename from locale/de-de/color.need.dialog rename to locale/de-DE/color.need.dialog index a18a253..b784a96 100644 --- a/locale/de-de/color.need.dialog +++ b/locale/de-DE/color.need.dialog @@ -1,3 +1,3 @@ -Welche Farbe sollen meine Augen haben? -Welche Farbe möchtest Du für meine Augen? Nenne eine Farbe zum ausprobieren. +Welche Farbe möchtest Du für meine Augen? +Welche Farbe sollen meine Augen haben? \ No newline at end of file diff --git a/locale/de-DE/color.not.exist.dialog b/locale/de-DE/color.not.exist.dialog new file mode 100644 index 0000000..e1989b5 --- /dev/null +++ b/locale/de-DE/color.not.exist.dialog @@ -0,0 +1,2 @@ +Das ist keine Farbbezeichnung die ich kenne. +Ich kenne diese Farbe nicht. Wenn Du die R G B Werte weißt sage 'set benutzerdefinierte Augenfarbe'. \ No newline at end of file diff --git a/locale/de-de/color.not.found.dialog b/locale/de-DE/color.not.found.dialog similarity index 82% rename from locale/de-de/color.not.found.dialog rename to locale/de-DE/color.not.found.dialog index 190f10e..d589add 100644 --- a/locale/de-de/color.not.found.dialog +++ b/locale/de-DE/color.not.found.dialog @@ -1,3 +1,3 @@ Entschuldigung, diese Farbe steht nicht zur Auswahl. Bitte mich eine benutzerdefinierte Augenfarbe zu setzen. Ich habe diese Farbe nicht verfügbar, aber ich kann benutzerdefinierte Augenfarben setzen. -Meine Augen können nicht diese Farbe annehmen. Vielleicht solltest Du mich nach einer benutzerdefinierte Farbe fragen. +Meine Augen können nicht diese Farbe annehmen. Vielleicht solltest Du mich nach einer benutzerdefinierte Farbe fragen. \ No newline at end of file diff --git a/locale/de-de/colors.value b/locale/de-DE/colors.value similarity index 100% rename from locale/de-de/colors.value rename to locale/de-DE/colors.value diff --git a/locale/de-DE/crazy.voc b/locale/de-DE/crazy.voc new file mode 100644 index 0000000..df60cb4 --- /dev/null +++ b/locale/de-DE/crazy.voc @@ -0,0 +1 @@ +verrückt \ No newline at end of file diff --git a/locale/de-de/custom.eye.color.intent b/locale/de-DE/custom.eye.color.intent similarity index 61% rename from locale/de-de/custom.eye.color.intent rename to locale/de-DE/custom.eye.color.intent index 0336dd2..ac6bc39 100644 --- a/locale/de-de/custom.eye.color.intent +++ b/locale/de-DE/custom.eye.color.intent @@ -1,2 +1,2 @@ -setze benutzerdefinierte (Farbe|Farben) (setze|ändere) auf benutzerdefinierte (Augenfarbe|Augenfarben) +setze benutzerdefinierte (Farbe|Farben) \ No newline at end of file diff --git a/locale/de-DE/down.voc b/locale/de-DE/down.voc new file mode 100644 index 0000000..117465a --- /dev/null +++ b/locale/de-DE/down.voc @@ -0,0 +1 @@ +runter \ No newline at end of file diff --git a/locale/de-DE/enclosure.voc b/locale/de-DE/enclosure.voc new file mode 100644 index 0000000..3ca7d52 --- /dev/null +++ b/locale/de-DE/enclosure.voc @@ -0,0 +1,4 @@ +Gehäuse +Mark 1 +dein Körper +mark (eins|one) \ No newline at end of file diff --git a/locale/de-DE/error.rgbvalue.dialog b/locale/de-DE/error.rgbvalue.dialog new file mode 100644 index 0000000..7835f31 --- /dev/null +++ b/locale/de-DE/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +Der Wert muss zwischen 0 und 255 sein +Ich benötige eine Zahl zwischen 0 und 255 \ No newline at end of file diff --git a/locale/de-de/error.set.color.dialog b/locale/de-DE/error.set.color.dialog similarity index 60% rename from locale/de-de/error.set.color.dialog rename to locale/de-DE/error.set.color.dialog index c19f1b5..31cf1fa 100644 --- a/locale/de-de/error.set.color.dialog +++ b/locale/de-DE/error.set.color.dialog @@ -1,2 +1,2 @@ Entschuldigung, es gab einen Fehler mit dem Einstellen der Farbe. -Es gab einen Fehler beim Setzen der Farbe. +Es gab einen Fehler beim Setzen der Farbe. \ No newline at end of file diff --git a/locale/de-de/eye.color.intent b/locale/de-DE/eye.color.intent similarity index 85% rename from locale/de-de/eye.color.intent rename to locale/de-DE/eye.color.intent index 9a22177..74ad238 100644 --- a/locale/de-de/eye.color.intent +++ b/locale/de-DE/eye.color.intent @@ -1,6 +1,6 @@ -(ändere|setze) (die|deine|) (Auge|Augen) (Farbe|Farben|) auf {color} (ändere|setze) (Auge|Augen) (Farbe|Farben|) auf {color} -(ändere|setze) Augen (Farbe|Farben) auf {color} -(ändere|setze) (deine|) Augen in (eine|einen|) {color} (Farbe|Farbton|) (ändere|setze) (Auge|Augen) auf (eine|einen) {color} Farbe +(ändere|setze) (deine|) Augen in (eine|einen|) {color} (Farbe|Farbton|) +(ändere|setze) (die|deine|) (Auge|Augen) (Farbe|Farben|) auf {color} (ändere|setze) Augen (Farbe|Farben) +(ändere|setze) Augen (Farbe|Farben) auf {color} \ No newline at end of file diff --git a/locale/de-DE/eyes.voc b/locale/de-DE/eyes.voc new file mode 100644 index 0000000..e4e1d67 --- /dev/null +++ b/locale/de-DE/eyes.voc @@ -0,0 +1,2 @@ +Auge +Augen \ No newline at end of file diff --git a/locale/de-de/get.b.value.dialog b/locale/de-DE/get.b.value.dialog similarity index 53% rename from locale/de-de/get.b.value.dialog rename to locale/de-DE/get.b.value.dialog index f2f5f8d..6b101e7 100644 --- a/locale/de-de/get.b.value.dialog +++ b/locale/de-DE/get.b.value.dialog @@ -1,2 +1,2 @@ -Fast fertig. Was ist mit dem Blauwert? Ein letzter Wert zwischen 0 und 255 für blau +Fast fertig. Was ist mit dem Blauwert? \ No newline at end of file diff --git a/locale/de-DE/get.g.value.dialog b/locale/de-DE/get.g.value.dialog new file mode 100644 index 0000000..944fb0f --- /dev/null +++ b/locale/de-DE/get.g.value.dialog @@ -0,0 +1,2 @@ +Als nächstes brauche ich den Grünwert +Jetzt benötige ich noch einen Wert für grün \ No newline at end of file diff --git a/locale/de-de/get.r.value.dialog b/locale/de-DE/get.r.value.dialog similarity index 58% rename from locale/de-de/get.r.value.dialog rename to locale/de-DE/get.r.value.dialog index c557f6f..829975d 100644 --- a/locale/de-de/get.r.value.dialog +++ b/locale/de-DE/get.r.value.dialog @@ -1,2 +1,2 @@ Bitte gib mir einen Wert zwischen 0 und 255 für den Rotanteil -Nenne mir einen Wert von 0 bis 255 für Rot +Nenne mir einen Wert von 0 bis 255 für Rot \ No newline at end of file diff --git a/locale/de-DE/left.voc b/locale/de-DE/left.voc new file mode 100644 index 0000000..7071beb --- /dev/null +++ b/locale/de-DE/left.voc @@ -0,0 +1 @@ +links \ No newline at end of file diff --git a/locale/de-DE/listen.voc b/locale/de-DE/listen.voc new file mode 100644 index 0000000..15b577a --- /dev/null +++ b/locale/de-DE/listen.voc @@ -0,0 +1,2 @@ +Hören +zuhören \ No newline at end of file diff --git a/locale/de-DE/look.voc b/locale/de-DE/look.voc new file mode 100644 index 0000000..739a91f --- /dev/null +++ b/locale/de-DE/look.voc @@ -0,0 +1,2 @@ +blicke +richte deine Augen \ No newline at end of file diff --git a/locale/de-DE/mouth.voc b/locale/de-DE/mouth.voc new file mode 100644 index 0000000..4bb220b --- /dev/null +++ b/locale/de-DE/mouth.voc @@ -0,0 +1 @@ +Mund \ No newline at end of file diff --git a/locale/de-DE/mute.voc b/locale/de-DE/mute.voc new file mode 100644 index 0000000..523e7c2 --- /dev/null +++ b/locale/de-DE/mute.voc @@ -0,0 +1,4 @@ +Ton (deaktivieren|abstellen) +Ton aus +Tonabschaltung +stumm \ No newline at end of file diff --git a/locale/de-DE/narrow.voc b/locale/de-DE/narrow.voc new file mode 100644 index 0000000..12bd99b --- /dev/null +++ b/locale/de-DE/narrow.voc @@ -0,0 +1 @@ +eng \ No newline at end of file diff --git a/locale/de-DE/perform.voc b/locale/de-DE/perform.voc new file mode 100644 index 0000000..a64a69b --- /dev/null +++ b/locale/de-DE/perform.voc @@ -0,0 +1 @@ +durchführen \ No newline at end of file diff --git a/locale/de-DE/reboot.voc b/locale/de-DE/reboot.voc new file mode 100644 index 0000000..38a6cf1 --- /dev/null +++ b/locale/de-DE/reboot.voc @@ -0,0 +1 @@ +(Neustart|neu starten|booten) \ No newline at end of file diff --git a/locale/de-DE/reset.voc b/locale/de-DE/reset.voc new file mode 100644 index 0000000..af0f767 --- /dev/null +++ b/locale/de-DE/reset.voc @@ -0,0 +1,4 @@ +zurück zu den (Standardeinstellungen|Grundeinstellungen) +zurück zum Normalzustand +zurück zur (Standardeinstellung|Grundeinstellung|Werkseinstellung) +zurücksetzen \ No newline at end of file diff --git a/locale/de-DE/right.voc b/locale/de-DE/right.voc new file mode 100644 index 0000000..8b7d8d5 --- /dev/null +++ b/locale/de-DE/right.voc @@ -0,0 +1 @@ +Rechts \ No newline at end of file diff --git a/locale/de-de/set.color.success.dialog b/locale/de-DE/set.color.success.dialog similarity index 69% rename from locale/de-de/set.color.success.dialog rename to locale/de-DE/set.color.success.dialog index 78c6fbf..917f515 100644 --- a/locale/de-de/set.color.success.dialog +++ b/locale/de-DE/set.color.success.dialog @@ -1,3 +1,3 @@ Cool. Schau dir meine Augen an. -Okay. Sehe ich jetzt besser aus? Das ist eine gute Farbe. Schau mich nun an. +Okay. Sehe ich jetzt besser aus? \ No newline at end of file diff --git a/locale/de-DE/set.custom.color.dialog b/locale/de-DE/set.custom.color.dialog new file mode 100644 index 0000000..6f9cca7 --- /dev/null +++ b/locale/de-DE/set.custom.color.dialog @@ -0,0 +1 @@ +Meine Programmierung versteht nur R G B Farbangaben. \ No newline at end of file diff --git a/locale/de-DE/set.default.eye.color.dialog b/locale/de-DE/set.default.eye.color.dialog new file mode 100644 index 0000000..5ce2f6c --- /dev/null +++ b/locale/de-DE/set.default.eye.color.dialog @@ -0,0 +1 @@ +Möchtest du dies zur Standardaugenfarbe machen? \ No newline at end of file diff --git a/locale/de-DE/smile.voc b/locale/de-DE/smile.voc new file mode 100644 index 0000000..ffb03c8 --- /dev/null +++ b/locale/de-DE/smile.voc @@ -0,0 +1,2 @@ +Lächeln +lächeln \ No newline at end of file diff --git a/locale/de-DE/spin.voc b/locale/de-DE/spin.voc new file mode 100644 index 0000000..de50425 --- /dev/null +++ b/locale/de-DE/spin.voc @@ -0,0 +1,3 @@ +rolle +verdrehe +verdrehen \ No newline at end of file diff --git a/locale/de-DE/system.voc b/locale/de-DE/system.voc new file mode 100644 index 0000000..851388a --- /dev/null +++ b/locale/de-DE/system.voc @@ -0,0 +1,2 @@ +Betriebssystem +System \ No newline at end of file diff --git a/locale/de-DE/think.voc b/locale/de-DE/think.voc new file mode 100644 index 0000000..0077c7e --- /dev/null +++ b/locale/de-DE/think.voc @@ -0,0 +1,2 @@ +Denken +Nachdenken \ No newline at end of file diff --git a/locale/de-DE/unmute.voc b/locale/de-DE/unmute.voc new file mode 100644 index 0000000..6d88741 --- /dev/null +++ b/locale/de-DE/unmute.voc @@ -0,0 +1,3 @@ +Stummschaltung aufheben +Ton aktivieren +Ton an \ No newline at end of file diff --git a/locale/de-DE/up.voc b/locale/de-DE/up.voc new file mode 100644 index 0000000..d2439c3 --- /dev/null +++ b/locale/de-DE/up.voc @@ -0,0 +1 @@ +hoch \ No newline at end of file diff --git a/locale/de-de/color.not.exist.dialog b/locale/de-de/color.not.exist.dialog deleted file mode 100644 index 595f83a..0000000 --- a/locale/de-de/color.not.exist.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ich kenne diese Farbe nicht. Wenn Du die R G B Werte weißt sage 'set benutzerdefinierte Augenfarbe'. -Das ist keine Farbe mit der ich vertraut bin. diff --git a/locale/de-de/error.rgbvalue.dialog b/locale/de-de/error.rgbvalue.dialog deleted file mode 100644 index 79f3724..0000000 --- a/locale/de-de/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ich benötige eine Zahl zwischen 0 und 255 -Der Wert muss zwischen 0 und 255 sein diff --git a/locale/de-de/get.g.value.dialog b/locale/de-de/get.g.value.dialog deleted file mode 100644 index 024b4e2..0000000 --- a/locale/de-de/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Jetzt benötige ich noch einen Wert für grün -Als nächstes brauche ich den Grünwert diff --git a/locale/de-de/set.custom.color.dialog b/locale/de-de/set.custom.color.dialog deleted file mode 100644 index c73602f..0000000 --- a/locale/de-de/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Mein Gehirn ist verdrahtet um Farben in R G B zu verstehen. diff --git a/locale/el-gr/brightness.entity b/locale/el-GR/brightness.entity similarity index 100% rename from locale/el-gr/brightness.entity rename to locale/el-GR/brightness.entity diff --git a/locale/el-gr/brightness.error.dialog b/locale/el-GR/brightness.error.dialog similarity index 69% rename from locale/el-gr/brightness.error.dialog rename to locale/el-GR/brightness.error.dialog index 113d79b..07dc176 100644 --- a/locale/el-gr/brightness.error.dialog +++ b/locale/el-GR/brightness.error.dialog @@ -1 +1 @@ -Δεν καταλαβαίνω την τιμή φωτεινότητας, παρακαλώ δώσε μου μια τιμή φωτεινότητας απο 0 έως 100 τις εκατό. +Δεν καταλαβαίνω την τιμή φωτεινότητας, παρακαλώ δώσε μου μια τιμή φωτεινότητας απο 0 έως 100 τις εκατό. \ No newline at end of file diff --git a/locale/el-gr/brightness.intent b/locale/el-GR/brightness.intent similarity index 99% rename from locale/el-gr/brightness.intent rename to locale/el-GR/brightness.intent index edd3a2d..98ec542 100644 --- a/locale/el-gr/brightness.intent +++ b/locale/el-GR/brightness.intent @@ -1,13 +1,13 @@ -χαμήλωσε (τα|τα δικά σου) μάτια σε {brightness} (τοις εκατό|) -χαμήλωσε σε {brightness} (τοις εκατό|) -χαμήλωσε την (φωτεινότητα|φωτισμό) των ματιών σου στο {brightness} (τοις εκατό|) -(χαμήλωσε|αύξησε) (την|τον) (φωτεινότητα|φωτισμό) στο {brightness} (τοις εκατό|) -(χαμήλωσε|αύξησε) (τον|την) (φωτισμό|φωτεινότητα) στο {brightness} (τοις εκατό|) -αύξησε (λίγο|) τη φωτεινότητα στο {brightness} (τοις εκατό|) (άλλαξε|όρισε|βάλε) στο {brightness} (τοις εκατό|) (την|τον) (φωτεινότητα|φωτισμό) στο (μάτι|) (άλλαξε|όρισε|βάλε) το (επίπεδο|ύψος) (της|του) (φωτεινότητας|φωτισμού) στο (μάτι|μάτι σου) στο {brightness} (τοις εκατό|) +(χαμήλωσε|αύξησε) (την|τον) (φωτεινότητα|φωτισμό) στο {brightness} (τοις εκατό|) +(χαμήλωσε|αύξησε) (τον|την) (φωτισμό|φωτεινότητα) στο {brightness} (τοις εκατό|) άλλαξε (το|τη) (επίπεδο φωτεινότητας|φωτεινότητα) (στο|στα) (μάτι|μάτια) (σου) +αύξησε (λίγο|) τη φωτεινότητα στο {brightness} (τοις εκατό|) είσαι (πολύ|) (φωτεινός) είσαι (πολύ|) (φωτεινός|) φώτισέ το χαμήλωσέ το λίγο +χαμήλωσε (τα|τα δικά σου) μάτια σε {brightness} (τοις εκατό|) +χαμήλωσε σε {brightness} (τοις εκατό|) +χαμήλωσε την (φωτεινότητα|φωτισμό) των ματιών σου στο {brightness} (τοις εκατό|) \ No newline at end of file diff --git a/locale/el-gr/brightness.levels.value b/locale/el-GR/brightness.levels.value similarity index 100% rename from locale/el-gr/brightness.levels.value rename to locale/el-GR/brightness.levels.value diff --git a/locale/el-gr/brightness.not.found.dialog b/locale/el-GR/brightness.not.found.dialog similarity index 91% rename from locale/el-gr/brightness.not.found.dialog rename to locale/el-GR/brightness.not.found.dialog index 7f92ab4..97e5745 100644 --- a/locale/el-gr/brightness.not.found.dialog +++ b/locale/el-GR/brightness.not.found.dialog @@ -1,2 +1,2 @@ Πες μου ένα ποσοστό ή ένα επίπεδο φωτεινότητας για το πρόσωπό μου -Τι ποσοστό ή επίπεδο φωτεινότητας θα ήθελες; +Τι ποσοστό ή επίπεδο φωτεινότητας θα ήθελες; \ No newline at end of file diff --git a/locale/el-gr/brightness.not.found.final.dialog b/locale/el-GR/brightness.not.found.final.dialog similarity index 79% rename from locale/el-gr/brightness.not.found.final.dialog rename to locale/el-GR/brightness.not.found.final.dialog index c5c86e8..757fc7d 100644 --- a/locale/el-gr/brightness.not.found.final.dialog +++ b/locale/el-GR/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ -Με συγχωρείς αλλά δεν καταλαβαίνω αυτή τη φωτεινότητα. Καταλαβαίνω μόνο πράγματα όπως 'πλήρες' ή 50% +Με συγχωρείς αλλά δεν καταλαβαίνω αυτή τη φωτεινότητα. \ No newline at end of file diff --git a/locale/el-gr/brightness.set.dialog b/locale/el-GR/brightness.set.dialog similarity index 82% rename from locale/el-gr/brightness.set.dialog rename to locale/el-GR/brightness.set.dialog index 6e4d2f6..ec636b1 100644 --- a/locale/el-gr/brightness.set.dialog +++ b/locale/el-GR/brightness.set.dialog @@ -1,2 +1,2 @@ Εντάξει, ρυθμίζω τη φωτεινότητα σε {val}. -Μια χαρά μου ακούγεται, ορίζω τη φωτεινότητα σε {val} +Μια χαρά μου ακούγεται, ορίζω τη φωτεινότητα σε {val} \ No newline at end of file diff --git a/locale/el-gr/color.entity b/locale/el-GR/color.entity similarity index 100% rename from locale/el-gr/color.entity rename to locale/el-GR/color.entity diff --git a/locale/el-gr/color.need.dialog b/locale/el-GR/color.need.dialog similarity index 97% rename from locale/el-gr/color.need.dialog rename to locale/el-GR/color.need.dialog index 7603846..12d110c 100644 --- a/locale/el-gr/color.need.dialog +++ b/locale/el-GR/color.need.dialog @@ -1,3 +1,3 @@ -Ποιο χρώμα θες να χρησιμοποιήσω; -Τι χρώμα θέλεις να έχουν τα μάτια μου; Πες μου ένα χρώμα για να δοκιμάσεις. +Ποιο χρώμα θες να χρησιμοποιήσω; +Τι χρώμα θέλεις να έχουν τα μάτια μου; \ No newline at end of file diff --git a/locale/el-gr/color.not.exist.dialog b/locale/el-GR/color.not.exist.dialog similarity index 76% rename from locale/el-gr/color.not.exist.dialog rename to locale/el-GR/color.not.exist.dialog index 7c3d6ea..85555de 100644 --- a/locale/el-gr/color.not.exist.dialog +++ b/locale/el-GR/color.not.exist.dialog @@ -1,2 +1,2 @@ -Δε γνωρίζω αυτό το χρώμα. Αν ξέρεις τις τιμές R G B μπορείς να πεις 'όρισε ένα προσαρμοσμένο χρώμα ματιών'. Αυτό δεν είναι ένα χρώμα που γνωρίζω. +Δε γνωρίζω αυτό το χρώμα. Αν ξέρεις τις τιμές R G B μπορείς να πεις 'όρισε ένα προσαρμοσμένο χρώμα ματιών'. \ No newline at end of file diff --git a/locale/el-gr/color.not.found.dialog b/locale/el-GR/color.not.found.dialog similarity index 94% rename from locale/el-gr/color.not.found.dialog rename to locale/el-GR/color.not.found.dialog index fc4ac3b..24bfd46 100644 --- a/locale/el-gr/color.not.found.dialog +++ b/locale/el-GR/color.not.found.dialog @@ -1,3 +1,3 @@ -Δυστυχώς το χρώμα αυτό δεν αποτελεί επιλογή. Δοκίμασε να μου ζητήσεις να ορίσω ένα προσαρμοσμένο χρώμα ματιών. Δεν έχω αυτό το χρώμα διαθέσιμο, αλλά μπορώ να ορίσω προσαρμοσμένα χρώματα ματιών. -Τα μάτια μου δεν μπορούν να αλλάξουν σε αυτό το χρώμα. Ίσως πρέπει να μου ζητήσεις να ορίσω ένα προσαρμοσμένο χρώμα ματιών. +Δυστυχώς το χρώμα αυτό δεν αποτελεί επιλογή. Δοκίμασε να μου ζητήσεις να ορίσω ένα προσαρμοσμένο χρώμα ματιών. +Τα μάτια μου δεν μπορούν να αλλάξουν σε αυτό το χρώμα. Ίσως πρέπει να μου ζητήσεις να ορίσω ένα προσαρμοσμένο χρώμα ματιών. \ No newline at end of file diff --git a/locale/el-gr/colors.value b/locale/el-GR/colors.value similarity index 100% rename from locale/el-gr/colors.value rename to locale/el-GR/colors.value diff --git a/locale/el-gr/custom.eye.color.intent b/locale/el-GR/custom.eye.color.intent similarity index 99% rename from locale/el-gr/custom.eye.color.intent rename to locale/el-GR/custom.eye.color.intent index 2480a3e..9692609 100644 --- a/locale/el-gr/custom.eye.color.intent +++ b/locale/el-GR/custom.eye.color.intent @@ -1,2 +1,2 @@ -όρισε προσαρμοσμένο (χρώμα|) ματιών (όρισε|άλλαξε) σε προσαρμοσμένο το (χρώμα|) ματιών +όρισε προσαρμοσμένο (χρώμα|) ματιών \ No newline at end of file diff --git a/locale/el-gr/error.rgbvalue.dialog b/locale/el-GR/error.rgbvalue.dialog similarity index 58% rename from locale/el-gr/error.rgbvalue.dialog rename to locale/el-GR/error.rgbvalue.dialog index 29116a8..2209f92 100644 --- a/locale/el-gr/error.rgbvalue.dialog +++ b/locale/el-GR/error.rgbvalue.dialog @@ -1,2 +1,2 @@ -Θέλω έναν αριθμό μεταξύ 0 και 255 Η τιμή πρέπει να είναι μεταξύ του 0 και του 255 +Θέλω έναν αριθμό μεταξύ 0 και 255 \ No newline at end of file diff --git a/locale/el-gr/error.set.color.dialog b/locale/el-GR/error.set.color.dialog similarity index 78% rename from locale/el-gr/error.set.color.dialog rename to locale/el-GR/error.set.color.dialog index 9941660..3a00f5e 100644 --- a/locale/el-gr/error.set.color.dialog +++ b/locale/el-GR/error.set.color.dialog @@ -1,2 +1,2 @@ Λυπάμαι, υπήρξε ένα σφάλμα κατά τη ρύθμιση του χρώματος. -Φαίνεται πως έγινε ένα σφάλμα κατά την αλλαγή του χρώματος. +Φαίνεται πως έγινε ένα σφάλμα κατά την αλλαγή του χρώματος. \ No newline at end of file diff --git a/locale/el-gr/eye.color.intent b/locale/el-GR/eye.color.intent similarity index 96% rename from locale/el-gr/eye.color.intent rename to locale/el-GR/eye.color.intent index 2c2e5a4..e6816c9 100644 --- a/locale/el-gr/eye.color.intent +++ b/locale/el-GR/eye.color.intent @@ -1,6 +1,6 @@ -(άλλαξε|όρισε) (το|τα) (χρώμα|χρώματα) των (ματιών|) σε {color} -(άλλαξε|όρισε) (το|τα) (χρώμα|χρώματα) (ματιών|) σε {color} -(άλλαξε|όρισε) το (χρώμα|) ματιών σε κάτι σε {color} -(άλλαξε|όρισε) τα μάτια (σου|) σε (ένα|) {color} (χρώμα|) (άλλαξε|όρισε) (το μάτι|τα μάτια) (σου|) σε (ένα|) {color} χρώμα (άλλαξε|όρισε) (το χρώμα|τα χρώματα) (στο|στα) (μάτι|μάτια) +(άλλαξε|όρισε) (το|τα) (χρώμα|χρώματα) (ματιών|) σε {color} +(άλλαξε|όρισε) (το|τα) (χρώμα|χρώματα) των (ματιών|) σε {color} +(άλλαξε|όρισε) τα μάτια (σου|) σε (ένα|) {color} (χρώμα|) +(άλλαξε|όρισε) το (χρώμα|) ματιών σε κάτι σε {color} \ No newline at end of file diff --git a/locale/el-gr/get.b.value.dialog b/locale/el-GR/get.b.value.dialog similarity index 85% rename from locale/el-gr/get.b.value.dialog rename to locale/el-GR/get.b.value.dialog index 85391b7..c9c832b 100644 --- a/locale/el-gr/get.b.value.dialog +++ b/locale/el-GR/get.b.value.dialog @@ -1,2 +1,2 @@ -Σχεδόν έτοιμος. Τι θα γίνει με την τιμή του μπλε; Ένα τελευταίο νούμερο μεταξύ 0 και 255 για το μπλε +Σχεδόν έτοιμος. Τι θα γίνει με την τιμή του μπλε; \ No newline at end of file diff --git a/locale/el-gr/get.g.value.dialog b/locale/el-GR/get.g.value.dialog similarity index 88% rename from locale/el-gr/get.g.value.dialog rename to locale/el-GR/get.g.value.dialog index 14dd270..b1d2d60 100644 --- a/locale/el-gr/get.g.value.dialog +++ b/locale/el-GR/get.g.value.dialog @@ -1,2 +1,2 @@ -Τώρα χρειάζομαι ακόμη μία τιμή για το πράσινο Στη συνέχεια χρειάζομαι την τιμή για το πράσινο +Τώρα χρειάζομαι ακόμη μία τιμή για το πράσινο \ No newline at end of file diff --git a/locale/el-gr/get.r.value.dialog b/locale/el-GR/get.r.value.dialog similarity index 89% rename from locale/el-gr/get.r.value.dialog rename to locale/el-GR/get.r.value.dialog index ac77bd4..c6d83e6 100644 --- a/locale/el-gr/get.r.value.dialog +++ b/locale/el-GR/get.r.value.dialog @@ -1,2 +1,2 @@ Παρακαλώ δώσε μου μία τιμή μεταξύ 0 και 255 για το κόκκινο στοιχείο -Πες μου μια τιμή από το 0 ως το 255 για το κόκκινο +Πες μου μια τιμή από το 0 ως το 255 για το κόκκινο \ No newline at end of file diff --git a/locale/el-gr/set.color.success.dialog b/locale/el-GR/set.color.success.dialog similarity index 67% rename from locale/el-gr/set.color.success.dialog rename to locale/el-GR/set.color.success.dialog index 14ad93f..db363b4 100644 --- a/locale/el-gr/set.color.success.dialog +++ b/locale/el-GR/set.color.success.dialog @@ -1,3 +1,3 @@ -Τέλεια. Τσέκαρε τα μάτια μου. Εντάξει. Είμαι καλύτερα τώρα; -Ωραίο χρώμα. Για δες με τώρα. +Τέλεια. Τσέκαρε τα μάτια μου. +Ωραίο χρώμα. Για δες με τώρα. \ No newline at end of file diff --git a/locale/el-gr/set.custom.color.dialog b/locale/el-GR/set.custom.color.dialog similarity index 52% rename from locale/el-gr/set.custom.color.dialog rename to locale/el-GR/set.custom.color.dialog index f0840f5..bf245a8 100644 --- a/locale/el-gr/set.custom.color.dialog +++ b/locale/el-GR/set.custom.color.dialog @@ -1 +1 @@ -Το μυαλό μου είναι καλωδιομένο για να καταλαβαίνει τα χρώματα R G B. +Το μυαλό μου είναι καλωδιομένο για να καταλαβαίνει τα χρώματα R G B. \ No newline at end of file diff --git a/locale/en-US/animation.voc b/locale/en-US/animation.voc new file mode 100644 index 0000000..f5dc8e6 --- /dev/null +++ b/locale/en-US/animation.voc @@ -0,0 +1,2 @@ +animation +animations \ No newline at end of file diff --git a/locale/en-us/blink.voc b/locale/en-US/blink.voc similarity index 100% rename from locale/en-us/blink.voc rename to locale/en-US/blink.voc diff --git a/locale/en-us/brightness.entity b/locale/en-US/brightness.entity similarity index 100% rename from locale/en-us/brightness.entity rename to locale/en-US/brightness.entity diff --git a/locale/en-us/brightness.error.dialog b/locale/en-US/brightness.error.dialog similarity index 100% rename from locale/en-us/brightness.error.dialog rename to locale/en-US/brightness.error.dialog diff --git a/locale/en-us/brightness.intent b/locale/en-US/brightness.intent similarity index 96% rename from locale/en-us/brightness.intent rename to locale/en-US/brightness.intent index f0ad997..216b2bb 100644 --- a/locale/en-us/brightness.intent +++ b/locale/en-US/brightness.intent @@ -1,13 +1,13 @@ +(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) +(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) to {brightness} (percent|) +(change|set|switch) to {brightness} (percent|) (eye|) (brightness|illumination) +brighten it up +brighten it up (a bit|) to {brightness} (percent|) dim (the|your) eyes to {brightness} (percent|) dim down to {brightness} (percent|) +dim it down a bit lower the (brightness|illumination) of your eyes to {brightness} (percent|) -turn (the|) (brightness|illumination) (down|up) to {brightness} (percent|) turn (down|up) (the|) (brightness|illumination) to {brightness} (percent|) -brighten it up (a bit|) to {brightness} (percent|) -(change|set|switch) to {brightness} (percent|) (eye|) (brightness|illumination) -(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) to {brightness} (percent|) -(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) -you're (too|) (bright|dim) +turn (the|) (brightness|illumination) (down|up) to {brightness} (percent|) you are (too|) (bright|dim) -brighten it up -dim it down a bit +you're (too|) (bright|dim) \ No newline at end of file diff --git a/locale/en-us/brightness.not.found.dialog b/locale/en-US/brightness.not.found.dialog similarity index 50% rename from locale/en-us/brightness.not.found.dialog rename to locale/en-US/brightness.not.found.dialog index bf59d59..cf5f6b7 100644 --- a/locale/en-us/brightness.not.found.dialog +++ b/locale/en-US/brightness.not.found.dialog @@ -1,2 +1,2 @@ Tell me a brightness percentage or level for my face -What brightness level or percentage would you like? +What brightness level or percentage would you like? \ No newline at end of file diff --git a/locale/en-us/brightness.not.found.final.dialog b/locale/en-US/brightness.not.found.final.dialog similarity index 51% rename from locale/en-us/brightness.not.found.final.dialog rename to locale/en-US/brightness.not.found.final.dialog index c5310af..63eba26 100644 --- a/locale/en-us/brightness.not.found.final.dialog +++ b/locale/en-US/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ -Sorry, I don't understand that brightness. I only understand things like, 'full' or 50% +Sorry, I don't understand that brightness. \ No newline at end of file diff --git a/locale/en-us/brightness.set.dialog b/locale/en-US/brightness.set.dialog similarity index 100% rename from locale/en-us/brightness.set.dialog rename to locale/en-US/brightness.set.dialog diff --git a/locale/en-us/color.entity b/locale/en-US/color.entity similarity index 100% rename from locale/en-us/color.entity rename to locale/en-US/color.entity diff --git a/locale/en-us/color.need.dialog b/locale/en-US/color.need.dialog similarity index 63% rename from locale/en-us/color.need.dialog rename to locale/en-US/color.need.dialog index 1661a3d..1ce160a 100644 --- a/locale/en-us/color.need.dialog +++ b/locale/en-US/color.need.dialog @@ -1,3 +1,3 @@ -Which color would you like to use? -What color would you like my eyes to be? Name a color to try. +What color would you like my eyes to be? +Which color would you like to use? \ No newline at end of file diff --git a/locale/en-us/color.not.exist.dialog b/locale/en-US/color.not.exist.dialog similarity index 70% rename from locale/en-us/color.not.exist.dialog rename to locale/en-US/color.not.exist.dialog index a8e9721..ad9f069 100644 --- a/locale/en-us/color.not.exist.dialog +++ b/locale/en-US/color.not.exist.dialog @@ -1,3 +1,2 @@ I don't know that color. If you know the R G B values you can say 'set a custom eye color'. -That's not a color I'm familiar with. - +That's not a color I'm familiar with. \ No newline at end of file diff --git a/locale/en-us/color.not.found.dialog b/locale/en-US/color.not.found.dialog similarity index 83% rename from locale/en-us/color.not.found.dialog rename to locale/en-US/color.not.found.dialog index d3dcb2e..97c6401 100644 --- a/locale/en-us/color.not.found.dialog +++ b/locale/en-US/color.not.found.dialog @@ -1,3 +1,3 @@ -Sorry, that color is not an option. Try asking me to set a custom eye color. I do not have that color available, but I can set custom eye colors. -My eyes cannot turn into that color. Perhaps you should ask me to set a custom eye color. \ No newline at end of file +My eyes cannot turn into that color. Perhaps you should ask me to set a custom eye color. +Sorry, that color is not an option. Try asking me to set a custom eye color. \ No newline at end of file diff --git a/locale/en-us/crazy.voc b/locale/en-US/crazy.voc similarity index 100% rename from locale/en-us/crazy.voc rename to locale/en-US/crazy.voc diff --git a/locale/en-US/custom.eye.color.intent b/locale/en-US/custom.eye.color.intent new file mode 100644 index 0000000..2ce62d9 --- /dev/null +++ b/locale/en-US/custom.eye.color.intent @@ -0,0 +1,2 @@ +(set|change) to a custom eye (color|colors) +set custom eye (color|colors) \ No newline at end of file diff --git a/locale/en-us/down.voc b/locale/en-US/down.voc similarity index 100% rename from locale/en-us/down.voc rename to locale/en-US/down.voc diff --git a/locale/en-us/enclosure.voc b/locale/en-US/enclosure.voc similarity index 72% rename from locale/en-us/enclosure.voc rename to locale/en-US/enclosure.voc index 74cbff0..c5e7bd3 100644 --- a/locale/en-us/enclosure.voc +++ b/locale/en-US/enclosure.voc @@ -1,4 +1,4 @@ enclosure -your body mark 1 mark one +your body \ No newline at end of file diff --git a/locale/en-US/error.rgbvalue.dialog b/locale/en-US/error.rgbvalue.dialog new file mode 100644 index 0000000..2c3cc82 --- /dev/null +++ b/locale/en-US/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +I need a number between 0 and 255 +The value has to be between 0 and 255 \ No newline at end of file diff --git a/locale/en-US/error.set.color.dialog b/locale/en-US/error.set.color.dialog new file mode 100644 index 0000000..6c30350 --- /dev/null +++ b/locale/en-US/error.set.color.dialog @@ -0,0 +1,2 @@ +Looks like I had an error trying to set the color. +Sorry, there was an error setting the color. \ No newline at end of file diff --git a/locale/en-us/eye.color.intent b/locale/en-US/eye.color.intent similarity index 82% rename from locale/en-us/eye.color.intent rename to locale/en-US/eye.color.intent index ac1c610..b791312 100644 --- a/locale/en-us/eye.color.intent +++ b/locale/en-US/eye.color.intent @@ -1,6 +1,6 @@ -(change|set) (the|your|) (eye|eyes) (color|colors|) to {color} (change|set) (eye|eyes) (color|colors|) to {color} -(change|set) eye (color|colors) to something {color} -(change|set) (your|) eyes to (a|an|) {color} (color|) (change|set) (eye|eyes) to (a|an) {color} color +(change|set) (the|your|) (eye|eyes) (color|colors|) to {color} +(change|set) (your|) eyes to (a|an|) {color} (color|) (change|set) eye (color|colors) +(change|set) eye (color|colors) to something {color} \ No newline at end of file diff --git a/locale/en-us/eyes.voc b/locale/en-US/eyes.voc similarity index 100% rename from locale/en-us/eyes.voc rename to locale/en-US/eyes.voc diff --git a/locale/en-US/get.b.value.dialog b/locale/en-US/get.b.value.dialog new file mode 100644 index 0000000..cb52ac2 --- /dev/null +++ b/locale/en-US/get.b.value.dialog @@ -0,0 +1,2 @@ +Almost there. How about the blue value? +One last number between 0 and 255 for blue \ No newline at end of file diff --git a/locale/en-US/get.g.value.dialog b/locale/en-US/get.g.value.dialog new file mode 100644 index 0000000..b1e8a82 --- /dev/null +++ b/locale/en-US/get.g.value.dialog @@ -0,0 +1,2 @@ +Next I need the green value +Now I need another value for green \ No newline at end of file diff --git a/locale/en-us/get.r.value.dialog b/locale/en-US/get.r.value.dialog similarity index 62% rename from locale/en-us/get.r.value.dialog rename to locale/en-US/get.r.value.dialog index d08180f..20004b2 100644 --- a/locale/en-us/get.r.value.dialog +++ b/locale/en-US/get.r.value.dialog @@ -1,2 +1,2 @@ Please give me a value between 0 and 255 for the red component -Tell me a value from 0 to 255 for red +Tell me a value from 0 to 255 for red \ No newline at end of file diff --git a/locale/en-us/left.voc b/locale/en-US/left.voc similarity index 100% rename from locale/en-us/left.voc rename to locale/en-US/left.voc diff --git a/locale/en-us/listen.voc b/locale/en-US/listen.voc similarity index 100% rename from locale/en-us/listen.voc rename to locale/en-US/listen.voc diff --git a/locale/en-us/look.voc b/locale/en-US/look.voc similarity index 100% rename from locale/en-us/look.voc rename to locale/en-US/look.voc diff --git a/locale/en-us/mouth.voc b/locale/en-US/mouth.voc similarity index 100% rename from locale/en-us/mouth.voc rename to locale/en-US/mouth.voc diff --git a/locale/en-us/mute.voc b/locale/en-US/mute.voc similarity index 100% rename from locale/en-us/mute.voc rename to locale/en-US/mute.voc index e6b7177..417ed49 100644 --- a/locale/en-us/mute.voc +++ b/locale/en-US/mute.voc @@ -1,4 +1,4 @@ mute -sound off sound disable +sound off sound shutdown \ No newline at end of file diff --git a/locale/en-us/narrow.voc b/locale/en-US/narrow.voc similarity index 100% rename from locale/en-us/narrow.voc rename to locale/en-US/narrow.voc diff --git a/locale/en-us/perform.voc b/locale/en-US/perform.voc similarity index 100% rename from locale/en-us/perform.voc rename to locale/en-US/perform.voc diff --git a/locale/en-us/reboot.voc b/locale/en-US/reboot.voc similarity index 100% rename from locale/en-us/reboot.voc rename to locale/en-US/reboot.voc diff --git a/locale/en-us/reset.voc b/locale/en-US/reset.voc similarity index 58% rename from locale/en-us/reset.voc rename to locale/en-US/reset.voc index 1548642..5871e54 100644 --- a/locale/en-us/reset.voc +++ b/locale/en-US/reset.voc @@ -1,4 +1,4 @@ -reset -back to normal back to default -back to defaults \ No newline at end of file +back to defaults +back to normal +reset \ No newline at end of file diff --git a/locale/en-us/right.voc b/locale/en-US/right.voc similarity index 100% rename from locale/en-us/right.voc rename to locale/en-US/right.voc diff --git a/locale/en-us/set.color.success.dialog b/locale/en-US/set.color.success.dialog similarity index 100% rename from locale/en-us/set.color.success.dialog rename to locale/en-US/set.color.success.dialog diff --git a/locale/en-us/set.custom.color.dialog b/locale/en-US/set.custom.color.dialog similarity index 100% rename from locale/en-us/set.custom.color.dialog rename to locale/en-US/set.custom.color.dialog diff --git a/locale/en-US/set.default.eye.color.dialog b/locale/en-US/set.default.eye.color.dialog new file mode 100644 index 0000000..5aeaba9 --- /dev/null +++ b/locale/en-US/set.default.eye.color.dialog @@ -0,0 +1 @@ +Would you like to make this your default eye color? \ No newline at end of file diff --git a/locale/en-us/smile.voc b/locale/en-US/smile.voc similarity index 100% rename from locale/en-us/smile.voc rename to locale/en-US/smile.voc diff --git a/locale/en-us/spin.voc b/locale/en-US/spin.voc similarity index 66% rename from locale/en-us/spin.voc rename to locale/en-US/spin.voc index aba96f0..ea801e0 100644 --- a/locale/en-us/spin.voc +++ b/locale/en-US/spin.voc @@ -1,3 +1,3 @@ -spin rotate -twist +spin +twist \ No newline at end of file diff --git a/locale/en-US/system.voc b/locale/en-US/system.voc new file mode 100644 index 0000000..2e3eac7 --- /dev/null +++ b/locale/en-US/system.voc @@ -0,0 +1,2 @@ +operating system +system \ No newline at end of file diff --git a/locale/en-US/think.voc b/locale/en-US/think.voc new file mode 100644 index 0000000..c57e59f --- /dev/null +++ b/locale/en-US/think.voc @@ -0,0 +1,2 @@ +think +thinking \ No newline at end of file diff --git a/locale/en-US/unmute.voc b/locale/en-US/unmute.voc new file mode 100644 index 0000000..5d526b7 --- /dev/null +++ b/locale/en-US/unmute.voc @@ -0,0 +1,3 @@ +sound enable +sound on +unmute \ No newline at end of file diff --git a/locale/en-us/up.voc b/locale/en-US/up.voc similarity index 100% rename from locale/en-us/up.voc rename to locale/en-US/up.voc diff --git a/locale/en-us/animation.voc b/locale/en-us/animation.voc deleted file mode 100644 index ce18ced..0000000 --- a/locale/en-us/animation.voc +++ /dev/null @@ -1,2 +0,0 @@ -animations -animation \ No newline at end of file diff --git a/locale/en-us/custom.eye.color.intent b/locale/en-us/custom.eye.color.intent deleted file mode 100644 index 48163ce..0000000 --- a/locale/en-us/custom.eye.color.intent +++ /dev/null @@ -1,2 +0,0 @@ -set custom eye (color|colors) -(set|change) to a custom eye (color|colors) \ No newline at end of file diff --git a/locale/en-us/error.rgbvalue.dialog b/locale/en-us/error.rgbvalue.dialog deleted file mode 100644 index c521437..0000000 --- a/locale/en-us/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -I need a number between 0 and 255 -The value has to be between 0 and 255 diff --git a/locale/en-us/error.set.color.dialog b/locale/en-us/error.set.color.dialog deleted file mode 100644 index a4a4b1c..0000000 --- a/locale/en-us/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Sorry, there was an error setting the color. -Looks like I had an error trying to set the color. \ No newline at end of file diff --git a/locale/en-us/get.b.value.dialog b/locale/en-us/get.b.value.dialog deleted file mode 100644 index 4f2c62f..0000000 --- a/locale/en-us/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Almost there. How about the blue value? -One last number between 0 and 255 for blue diff --git a/locale/en-us/get.g.value.dialog b/locale/en-us/get.g.value.dialog deleted file mode 100644 index 0f58937..0000000 --- a/locale/en-us/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Now I need another value for green -Next I need the green value diff --git a/locale/en-us/set.default.eye.color.dialog b/locale/en-us/set.default.eye.color.dialog deleted file mode 100644 index 0476a98..0000000 --- a/locale/en-us/set.default.eye.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Would you like to make this your default eye color? diff --git a/locale/en-us/system.voc b/locale/en-us/system.voc deleted file mode 100644 index 385e0e3..0000000 --- a/locale/en-us/system.voc +++ /dev/null @@ -1,2 +0,0 @@ -system -operating system \ No newline at end of file diff --git a/locale/en-us/think.voc b/locale/en-us/think.voc deleted file mode 100644 index 82129f3..0000000 --- a/locale/en-us/think.voc +++ /dev/null @@ -1,2 +0,0 @@ -thinking -think \ No newline at end of file diff --git a/locale/en-us/unmute.voc b/locale/en-us/unmute.voc deleted file mode 100644 index 28e4621..0000000 --- a/locale/en-us/unmute.voc +++ /dev/null @@ -1,3 +0,0 @@ -unmute -sound on -sound enable \ No newline at end of file diff --git a/locale/es-ES/animation.voc b/locale/es-ES/animation.voc new file mode 100644 index 0000000..6e3af9b --- /dev/null +++ b/locale/es-ES/animation.voc @@ -0,0 +1,2 @@ +animaciones +animación \ No newline at end of file diff --git a/locale/es-ES/blink.voc b/locale/es-ES/blink.voc new file mode 100644 index 0000000..bff4df2 --- /dev/null +++ b/locale/es-ES/blink.voc @@ -0,0 +1 @@ +parpadear \ No newline at end of file diff --git a/locale/es-es/brightness.entity b/locale/es-ES/brightness.entity similarity index 100% rename from locale/es-es/brightness.entity rename to locale/es-ES/brightness.entity diff --git a/locale/es-lm/brightness.error.dialog b/locale/es-ES/brightness.error.dialog similarity index 86% rename from locale/es-lm/brightness.error.dialog rename to locale/es-ES/brightness.error.dialog index 6852686..28f909e 100644 --- a/locale/es-lm/brightness.error.dialog +++ b/locale/es-ES/brightness.error.dialog @@ -1 +1 @@ -No comprendo ese valor de brillo, dame un valor entre 0 a 100 por ciento. +No comprendo ese valor de brillo, dame un valor entre 0 a 100 por ciento. \ No newline at end of file diff --git a/locale/es-es/brightness.intent b/locale/es-ES/brightness.intent similarity index 78% rename from locale/es-es/brightness.intent rename to locale/es-ES/brightness.intent index e682d1f..ea807c0 100644 --- a/locale/es-es/brightness.intent +++ b/locale/es-ES/brightness.intent @@ -1,13 +1,11 @@ -bajar (el|tu) brillo de los ojos a {brightness} por ciento -bajar brillo a {brightness} por ciento -bajar (el brillo|la iluminacion) de tus ojos a {brightness} por ciento (bajar|subir) (el|la) (brillo|iluminacion) a un {brightness} por ciento -(bajar|subir) (el|la) (brillo|iluminacion) a un {brightness} por ciento -subir brillo a un {brightness} por ciento (bajar|subir|cambiar) (el|la) (brillo|iluminacion) a un {brightness} por ciento -(cambiar|setear) (el|la) (nivel del|) (brillo|iluminacion) a un {brightness} por ciento (cambiar|establecer|cambiar) (el|la) (nivel del|) (brillo|iluminacion) -estás (demasiado|) (brillante|oscuro) +(cambiar|setear) (el|la) (nivel del|) (brillo|iluminacion) a un {brightness} por ciento +baja un poco el brillo +bajar (el brillo|la iluminacion) de tus ojos a {brightness} por ciento +bajar (el|tu) brillo de los ojos a {brightness} por ciento +bajar brillo a {brightness} por ciento estás (demasiado|) (brillante|oscuro) sube el brillo -baja un poco el brillo +subir brillo a un {brightness} por ciento \ No newline at end of file diff --git a/locale/es-es/brightness.levels.value b/locale/es-ES/brightness.levels.value similarity index 100% rename from locale/es-es/brightness.levels.value rename to locale/es-ES/brightness.levels.value diff --git a/locale/es-es/brightness.not.found.dialog b/locale/es-ES/brightness.not.found.dialog similarity index 51% rename from locale/es-es/brightness.not.found.dialog rename to locale/es-ES/brightness.not.found.dialog index 5efab12..18c7d35 100644 --- a/locale/es-es/brightness.not.found.dialog +++ b/locale/es-ES/brightness.not.found.dialog @@ -1,2 +1,2 @@ Dime un porcentaje de brillo o nivel para mi cara -¿Qué nivel de brillo o porcentaje desearías? +¿Qué nivel de brillo o porcentaje desearías? \ No newline at end of file diff --git a/locale/es-es/brightness.not.found.final.dialog b/locale/es-ES/brightness.not.found.final.dialog similarity index 50% rename from locale/es-es/brightness.not.found.final.dialog rename to locale/es-ES/brightness.not.found.final.dialog index 22c8d96..7e74f9b 100644 --- a/locale/es-es/brightness.not.found.final.dialog +++ b/locale/es-ES/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ Perdón, no comprendo ese nivel de brillo. -Sólo comprendo cosas como 'máximo' o 50% +Sólo comprendo cosas como 'máximo' o 50% \ No newline at end of file diff --git a/locale/es-ES/brightness.set.dialog b/locale/es-ES/brightness.set.dialog new file mode 100644 index 0000000..be19c3e --- /dev/null +++ b/locale/es-ES/brightness.set.dialog @@ -0,0 +1,2 @@ +Bien, poniendo el brillo en {val} +Bien, poniendo el brillo en {val}. \ No newline at end of file diff --git a/locale/es-es/color.entity b/locale/es-ES/color.entity similarity index 100% rename from locale/es-es/color.entity rename to locale/es-ES/color.entity diff --git a/locale/es-es/color.need.dialog b/locale/es-ES/color.need.dialog similarity index 72% rename from locale/es-es/color.need.dialog rename to locale/es-ES/color.need.dialog index aa9f1a3..ea402f7 100644 --- a/locale/es-es/color.need.dialog +++ b/locale/es-ES/color.need.dialog @@ -1,3 +1,3 @@ -¿Qué color te gustaría usar? -¿De qué color te gustaría que sean mis ojos? Menciona el color que quieres probar. +¿De qué color te gustaría que sean mis ojos? +¿Qué color te gustaría usar? \ No newline at end of file diff --git a/locale/es-es/color.not.exist.dialog b/locale/es-ES/color.not.exist.dialog similarity index 71% rename from locale/es-es/color.not.exist.dialog rename to locale/es-ES/color.not.exist.dialog index 0438887..54b21e6 100644 --- a/locale/es-es/color.not.exist.dialog +++ b/locale/es-ES/color.not.exist.dialog @@ -1,2 +1,2 @@ -No conozco ese color. si conoces los valores R G B puedes decir 'configura un color de ojos personalizado'. Ese no es un color con el que esté familiarizado. +No conozco ese color. si conoces los valores R G B puedes decir 'configura un color de ojos personalizado'. \ No newline at end of file diff --git a/locale/es-es/color.not.found.dialog b/locale/es-ES/color.not.found.dialog similarity index 90% rename from locale/es-es/color.not.found.dialog rename to locale/es-ES/color.not.found.dialog index 6614ed7..35532c4 100644 --- a/locale/es-es/color.not.found.dialog +++ b/locale/es-ES/color.not.found.dialog @@ -1,3 +1,3 @@ Lo siento, ese color no es una opción. Prueba pidiéndome configurar un color de ojos personalizado. -No tengo ese color de ojos disponibles, pero puedo configurar un color de ojos personalizado Mis ojos no pueden cambiar al color deseado. Probablemente debas pedirme configurar un color de ojos a medida. +No tengo ese color de ojos disponibles, pero puedo configurar un color de ojos personalizado \ No newline at end of file diff --git a/locale/es-es/colors.value b/locale/es-ES/colors.value similarity index 100% rename from locale/es-es/colors.value rename to locale/es-ES/colors.value diff --git a/locale/es-ES/crazy.voc b/locale/es-ES/crazy.voc new file mode 100644 index 0000000..1c976aa --- /dev/null +++ b/locale/es-ES/crazy.voc @@ -0,0 +1 @@ +loco \ No newline at end of file diff --git a/locale/es-es/custom.eye.color.intent b/locale/es-ES/custom.eye.color.intent similarity index 94% rename from locale/es-es/custom.eye.color.intent rename to locale/es-ES/custom.eye.color.intent index 63f7801..4b33cb9 100644 --- a/locale/es-es/custom.eye.color.intent +++ b/locale/es-ES/custom.eye.color.intent @@ -1,2 +1,2 @@ -configurar (color|colores) de (ojo|ojos) (personalizado|personalizados) (configurar|cambiar) (color|colores) (personalizado|personalizados) de (ojo|ojos) +configurar (color|colores) de (ojo|ojos) (personalizado|personalizados) \ No newline at end of file diff --git a/locale/es-ES/down.voc b/locale/es-ES/down.voc new file mode 100644 index 0000000..98ed3e0 --- /dev/null +++ b/locale/es-ES/down.voc @@ -0,0 +1 @@ +abajo \ No newline at end of file diff --git a/locale/es-ES/enclosure.voc b/locale/es-ES/enclosure.voc new file mode 100644 index 0000000..6590d86 --- /dev/null +++ b/locale/es-ES/enclosure.voc @@ -0,0 +1,4 @@ +marca 1 +marca uno +recinto +tu cuerpo \ No newline at end of file diff --git a/locale/es-es/error.rgbvalue.dialog b/locale/es-ES/error.rgbvalue.dialog similarity index 50% rename from locale/es-es/error.rgbvalue.dialog rename to locale/es-ES/error.rgbvalue.dialog index 08f1c49..7c961c9 100644 --- a/locale/es-es/error.rgbvalue.dialog +++ b/locale/es-ES/error.rgbvalue.dialog @@ -1,2 +1,2 @@ -Necesito un número entre 0 y 255 El valor debe estar entre 0 y 255 +Necesito un número entre 0 y 255 \ No newline at end of file diff --git a/locale/es-es/error.set.color.dialog b/locale/es-ES/error.set.color.dialog similarity index 53% rename from locale/es-es/error.set.color.dialog rename to locale/es-ES/error.set.color.dialog index c2118bb..143612b 100644 --- a/locale/es-es/error.set.color.dialog +++ b/locale/es-ES/error.set.color.dialog @@ -1,2 +1,2 @@ -Perdona, ha habido un error configurando el color. Parece que tuve un error al intentar configurar el color. +Perdona, ha habido un error configurando el color. \ No newline at end of file diff --git a/locale/es-es/eye.color.intent b/locale/es-ES/eye.color.intent similarity index 70% rename from locale/es-es/eye.color.intent rename to locale/es-ES/eye.color.intent index 56dc787..7aeea0c 100644 --- a/locale/es-es/eye.color.intent +++ b/locale/es-ES/eye.color.intent @@ -1,6 +1,5 @@ -(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) al {color} -(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) al {color} (cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) a algo {color} -(cambiar|configurar) (tus|los|) ojos a un {color} (color|) +(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) al {color} (cambiar|configurar) (ojo|ojos) a un color {color} -(cambiar|configurar) color de ojos +(cambiar|configurar) (tus|los|) ojos a un {color} (color|) +(cambiar|configurar) color de ojos \ No newline at end of file diff --git a/locale/es-ES/eyes.voc b/locale/es-ES/eyes.voc new file mode 100644 index 0000000..a7f3daf --- /dev/null +++ b/locale/es-ES/eyes.voc @@ -0,0 +1,2 @@ +ojo +ojos \ No newline at end of file diff --git a/locale/es-es/get.b.value.dialog b/locale/es-ES/get.b.value.dialog similarity index 53% rename from locale/es-es/get.b.value.dialog rename to locale/es-ES/get.b.value.dialog index 848ba46..8290853 100644 --- a/locale/es-es/get.b.value.dialog +++ b/locale/es-ES/get.b.value.dialog @@ -1,2 +1,2 @@ Casi terminamos. ¿Qué te parece en color azul? -Un ultimo numero entre 0 y 255 para el azul +Un ultimo numero entre 0 y 255 para el azul \ No newline at end of file diff --git a/locale/es-es/get.g.value.dialog b/locale/es-ES/get.g.value.dialog similarity index 55% rename from locale/es-es/get.g.value.dialog rename to locale/es-ES/get.g.value.dialog index 6c5ad57..4baecaf 100644 --- a/locale/es-es/get.g.value.dialog +++ b/locale/es-ES/get.g.value.dialog @@ -1,2 +1,2 @@ -Ahora necesito otro valor para el verde A continuación, necesito el valor para el verde +Ahora necesito otro valor para el verde \ No newline at end of file diff --git a/locale/es-es/get.r.value.dialog b/locale/es-ES/get.r.value.dialog similarity index 92% rename from locale/es-es/get.r.value.dialog rename to locale/es-ES/get.r.value.dialog index cfd6806..1045316 100644 --- a/locale/es-es/get.r.value.dialog +++ b/locale/es-ES/get.r.value.dialog @@ -1,2 +1,2 @@ -Por favor indícame un valor entre el 0 y el 255 para el componente rojo Indícame un valor entre 0 y 255 para el rojo +Por favor indícame un valor entre el 0 y el 255 para el componente rojo \ No newline at end of file diff --git a/locale/es-ES/left.voc b/locale/es-ES/left.voc new file mode 100644 index 0000000..f1af122 --- /dev/null +++ b/locale/es-ES/left.voc @@ -0,0 +1 @@ +izquierda \ No newline at end of file diff --git a/locale/es-ES/listen.voc b/locale/es-ES/listen.voc new file mode 100644 index 0000000..8304b06 --- /dev/null +++ b/locale/es-ES/listen.voc @@ -0,0 +1,2 @@ +escuchando +escuchar \ No newline at end of file diff --git a/locale/es-ES/look.voc b/locale/es-ES/look.voc new file mode 100644 index 0000000..5097fef --- /dev/null +++ b/locale/es-ES/look.voc @@ -0,0 +1,2 @@ +fija la mirada +mirar \ No newline at end of file diff --git a/locale/es-ES/mouth.voc b/locale/es-ES/mouth.voc new file mode 100644 index 0000000..26ce633 --- /dev/null +++ b/locale/es-ES/mouth.voc @@ -0,0 +1 @@ +boca \ No newline at end of file diff --git a/locale/es-ES/mute.voc b/locale/es-ES/mute.voc new file mode 100644 index 0000000..c76e546 --- /dev/null +++ b/locale/es-ES/mute.voc @@ -0,0 +1,4 @@ +apagado de sonido +silenciar +sonido apagado +sonido desactivado \ No newline at end of file diff --git a/locale/es-ES/narrow.voc b/locale/es-ES/narrow.voc new file mode 100644 index 0000000..95d0b2b --- /dev/null +++ b/locale/es-ES/narrow.voc @@ -0,0 +1 @@ +estrecho \ No newline at end of file diff --git a/locale/es-ES/perform.voc b/locale/es-ES/perform.voc new file mode 100644 index 0000000..5533434 --- /dev/null +++ b/locale/es-ES/perform.voc @@ -0,0 +1 @@ +desarrollar \ No newline at end of file diff --git a/locale/es-ES/reboot.voc b/locale/es-ES/reboot.voc new file mode 100644 index 0000000..1788e99 --- /dev/null +++ b/locale/es-ES/reboot.voc @@ -0,0 +1 @@ +reiniciar \ No newline at end of file diff --git a/locale/es-ES/reset.voc b/locale/es-ES/reset.voc new file mode 100644 index 0000000..a9a7327 --- /dev/null +++ b/locale/es-ES/reset.voc @@ -0,0 +1,4 @@ +reiniciar +volver a la configuración predeterminada +volver a la normalidad +volver a los valores predeterminados \ No newline at end of file diff --git a/locale/es-ES/right.voc b/locale/es-ES/right.voc new file mode 100644 index 0000000..001a053 --- /dev/null +++ b/locale/es-ES/right.voc @@ -0,0 +1 @@ +derecha \ No newline at end of file diff --git a/locale/es-lm/set.color.success.dialog b/locale/es-ES/set.color.success.dialog similarity index 67% rename from locale/es-lm/set.color.success.dialog rename to locale/es-ES/set.color.success.dialog index 48f6af3..8f5aaca 100644 --- a/locale/es-lm/set.color.success.dialog +++ b/locale/es-ES/set.color.success.dialog @@ -1,3 +1,3 @@ -Mola! Mira mis ojos. -Vale. ¿Me ves mejor ahora? Ese es un buen color. Mírame ahora. +Mola! Mira mis ojos. +Vale. ¿Me ves mejor ahora? \ No newline at end of file diff --git a/locale/es-ES/set.custom.color.dialog b/locale/es-ES/set.custom.color.dialog new file mode 100644 index 0000000..4be595a --- /dev/null +++ b/locale/es-ES/set.custom.color.dialog @@ -0,0 +1 @@ +Mi cerebro está configurado para entender colores R G B. \ No newline at end of file diff --git a/locale/es-ES/set.default.eye.color.dialog b/locale/es-ES/set.default.eye.color.dialog new file mode 100644 index 0000000..6f73bb0 --- /dev/null +++ b/locale/es-ES/set.default.eye.color.dialog @@ -0,0 +1 @@ +¿Te gustaría que este sea tu color de ojos predeterminado? \ No newline at end of file diff --git a/locale/es-ES/smile.voc b/locale/es-ES/smile.voc new file mode 100644 index 0000000..6981bce --- /dev/null +++ b/locale/es-ES/smile.voc @@ -0,0 +1,2 @@ +sonriendo +sonrisa \ No newline at end of file diff --git a/locale/es-ES/spin.voc b/locale/es-ES/spin.voc new file mode 100644 index 0000000..e14bef3 --- /dev/null +++ b/locale/es-ES/spin.voc @@ -0,0 +1,2 @@ +girar +rotar \ No newline at end of file diff --git a/locale/es-ES/system.voc b/locale/es-ES/system.voc new file mode 100644 index 0000000..f1dd507 --- /dev/null +++ b/locale/es-ES/system.voc @@ -0,0 +1,2 @@ +sistema +sistema operativo \ No newline at end of file diff --git a/locale/es-ES/think.voc b/locale/es-ES/think.voc new file mode 100644 index 0000000..87c8bf4 --- /dev/null +++ b/locale/es-ES/think.voc @@ -0,0 +1,2 @@ +pensamiento +pensar \ No newline at end of file diff --git a/locale/es-ES/unmute.voc b/locale/es-ES/unmute.voc new file mode 100644 index 0000000..14c990e --- /dev/null +++ b/locale/es-ES/unmute.voc @@ -0,0 +1,3 @@ +desmutear +sonido activado +sonido habilitado \ No newline at end of file diff --git a/locale/es-ES/up.voc b/locale/es-ES/up.voc new file mode 100644 index 0000000..1f7cddb --- /dev/null +++ b/locale/es-ES/up.voc @@ -0,0 +1 @@ +arriba \ No newline at end of file diff --git a/locale/es-es/brightness.error.dialog b/locale/es-es/brightness.error.dialog deleted file mode 100644 index 6852686..0000000 --- a/locale/es-es/brightness.error.dialog +++ /dev/null @@ -1 +0,0 @@ -No comprendo ese valor de brillo, dame un valor entre 0 a 100 por ciento. diff --git a/locale/es-es/brightness.set.dialog b/locale/es-es/brightness.set.dialog deleted file mode 100644 index 06ccc94..0000000 --- a/locale/es-es/brightness.set.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Bien, poniendo el brillo en {val}. -Bien, poniendo el brillo en {val} diff --git a/locale/es-es/set.color.success.dialog b/locale/es-es/set.color.success.dialog deleted file mode 100644 index 48f6af3..0000000 --- a/locale/es-es/set.color.success.dialog +++ /dev/null @@ -1,3 +0,0 @@ -Mola! Mira mis ojos. -Vale. ¿Me ves mejor ahora? -Ese es un buen color. Mírame ahora. diff --git a/locale/es-es/set.custom.color.dialog b/locale/es-es/set.custom.color.dialog deleted file mode 100644 index 887dfd8..0000000 --- a/locale/es-es/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Mi cerebro está configurado para entender colores R G B. diff --git a/locale/es-lm/brightness.entity b/locale/es-lm/brightness.entity deleted file mode 100644 index e15e8a9..0000000 --- a/locale/es-lm/brightness.entity +++ /dev/null @@ -1,13 +0,0 @@ -# -## -### -#% -##% -###% -lleno -brillo -medio -oscuro -bajo -automático -automático diff --git a/locale/es-lm/brightness.intent b/locale/es-lm/brightness.intent deleted file mode 100644 index e682d1f..0000000 --- a/locale/es-lm/brightness.intent +++ /dev/null @@ -1,13 +0,0 @@ -bajar (el|tu) brillo de los ojos a {brightness} por ciento -bajar brillo a {brightness} por ciento -bajar (el brillo|la iluminacion) de tus ojos a {brightness} por ciento -(bajar|subir) (el|la) (brillo|iluminacion) a un {brightness} por ciento -(bajar|subir) (el|la) (brillo|iluminacion) a un {brightness} por ciento -subir brillo a un {brightness} por ciento -(bajar|subir|cambiar) (el|la) (brillo|iluminacion) a un {brightness} por ciento -(cambiar|setear) (el|la) (nivel del|) (brillo|iluminacion) a un {brightness} por ciento -(cambiar|establecer|cambiar) (el|la) (nivel del|) (brillo|iluminacion) -estás (demasiado|) (brillante|oscuro) -estás (demasiado|) (brillante|oscuro) -sube el brillo -baja un poco el brillo diff --git a/locale/es-lm/brightness.levels.value b/locale/es-lm/brightness.levels.value deleted file mode 100644 index 730ea23..0000000 --- a/locale/es-lm/brightness.levels.value +++ /dev/null @@ -1,9 +0,0 @@ -# nombre, porcentaje -# nota: Añade al vocab/xx-xx/brightness.entity, también -máximo, 100 -brillante,75 -medio,50 -brillo bajo,25 -bajo,10 -auto,-1 -automático,-1 diff --git a/locale/es-lm/brightness.not.found.dialog b/locale/es-lm/brightness.not.found.dialog deleted file mode 100644 index 5efab12..0000000 --- a/locale/es-lm/brightness.not.found.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Dime un porcentaje de brillo o nivel para mi cara -¿Qué nivel de brillo o porcentaje desearías? diff --git a/locale/es-lm/brightness.not.found.final.dialog b/locale/es-lm/brightness.not.found.final.dialog deleted file mode 100644 index 22c8d96..0000000 --- a/locale/es-lm/brightness.not.found.final.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Perdón, no comprendo ese nivel de brillo. -Sólo comprendo cosas como 'máximo' o 50% diff --git a/locale/es-lm/brightness.set.dialog b/locale/es-lm/brightness.set.dialog deleted file mode 100644 index 06ccc94..0000000 --- a/locale/es-lm/brightness.set.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Bien, poniendo el brillo en {val}. -Bien, poniendo el brillo en {val} diff --git a/locale/es-lm/color.entity b/locale/es-lm/color.entity deleted file mode 100644 index ce0887d..0000000 --- a/locale/es-lm/color.entity +++ /dev/null @@ -1,160 +0,0 @@ -estandar -azul celeste -azul celeste -blanco viejo -color agua -aguamarino -azul eléctrico -beige -marrón claro -negro -marrón claro -azul -violeta azulado -marrón -madera -marrón -azul marino -verde claro -marrón chocolate -coral -azul aciano -azul aciano -seda de maiz -seda de maiz -carmesí -cian -azul oscuro -cian oscuro -dorado oscuro -dorado oscuro -gris oscuro -gris oscuro -verde oscuro -marrón oscuro -magenta oscuro -verde oliva oscuro -naranja oscuro -orquidea oscuro -rojo oscuro -salmón oscuro -verde marino oscuro -pizarra azul oscuro -pizarra gris oscuro -pizarra gris oscuro -turquesa oscuro -violeta oscuro -rosa profundo -azul claro profundo -gris apagado -gris apagado -azul dodger -ladrillo ignífugo -ladrillo ignífugo -blanco floral -verde forestal -fucsia -fucsia -gainsboro -blanco fantasma -dorado -dorado -gris -gris -verde -verde amarillo -miel -miel -rosa fuerte -rojo indio -índigo -marfil -marrón claro -lavanda -lavanda -verde jardín -amarillo chiffon -azul claro -coral claro -cian claro -dorado claro -dorado claro -gris claro -gris claro -verde claro -rosa claro -salmon claro -verde marino claro -celeste cielo claro -pizarra gris claro -pizarra gris claro -azul acero claro -amarillo claro -lima -verde lima -lino -magenta -granate -aguamarina intermedio -azul intermedio -orquidea intermedio -púrpura intermedio -verde marino intermedio -azul pizarra intermedio -verde primaveral intermedio -turquesa intermedio -rojo violaceo intermedio -azul medianoche -menta cremoso -rosa blanquecino -mocasín -blanco navajo -marino -encaje viejo -verde oliva -verde oliva -naranja -rojo anaranjado -orquídea -dorado pálido -dorado pálido -verde pálido -turquesa pálido -rojo violaceo pálido -papaya -durazno -peru -rosa -rojo -azulado -púrpura -rebeca morada -rojo -rosa amarronado -azul real -marron silla de montar -salmón -marrón arena -verde marino -concha marina -concha marina -tierra de siena -plateado -azul cielo -azul pizarra -gris pizarra -gris pizarra -nieve -verde primaveral -azul acero -bronceado -verde azulado -cardo -tomate -turquesa -Violeta -Trigo -Blanco -Humo blanco -Amarillo -Amarillo verdoso diff --git a/locale/es-lm/color.need.dialog b/locale/es-lm/color.need.dialog deleted file mode 100644 index aa9f1a3..0000000 --- a/locale/es-lm/color.need.dialog +++ /dev/null @@ -1,3 +0,0 @@ -¿Qué color te gustaría usar? -¿De qué color te gustaría que sean mis ojos? -Menciona el color que quieres probar. diff --git a/locale/es-lm/color.not.exist.dialog b/locale/es-lm/color.not.exist.dialog deleted file mode 100644 index 0438887..0000000 --- a/locale/es-lm/color.not.exist.dialog +++ /dev/null @@ -1,2 +0,0 @@ -No conozco ese color. si conoces los valores R G B puedes decir 'configura un color de ojos personalizado'. -Ese no es un color con el que esté familiarizado. diff --git a/locale/es-lm/color.not.found.dialog b/locale/es-lm/color.not.found.dialog deleted file mode 100644 index 6614ed7..0000000 --- a/locale/es-lm/color.not.found.dialog +++ /dev/null @@ -1,3 +0,0 @@ -Lo siento, ese color no es una opción. Prueba pidiéndome configurar un color de ojos personalizado. -No tengo ese color de ojos disponibles, pero puedo configurar un color de ojos personalizado -Mis ojos no pueden cambiar al color deseado. Probablemente debas pedirme configurar un color de ojos a medida. diff --git a/locale/es-lm/colors.value b/locale/es-lm/colors.value deleted file mode 100644 index 695d892..0000000 --- a/locale/es-lm/colors.value +++ /dev/null @@ -1,149 +0,0 @@ -por defecto, #22A7F0 -Azul alicia, #F0F8FF -Blanco antiguo, #FAEBD7 -Agua, #00FFFF -Aguamarina, #7FFFD4 -azur,#F0FFFF -beige,#F5F5DC -Sopa,#FFE4C4 -Negro,#000000 -Blanco almendra,#FFEBCD -Azul,#0000FF -Azul violeta,#8A2BE2 -Café,#A52A2A -Madera fornida,#DEB887 -Azul cadete,#5F9EA0 -Chartreuse,#7FFF00 -Chocolate,#D2691E -Coral,#FF7F50 -Aciano azul,#6495ED -Seda de maíz,#FFF8DC -Carmesí,#DC143C -Cian,#00FFFF -Azul oscuro,#00008B -Cian oscuro,#008B8B -Dorado alambre oscuro,#B8860B -Gris oscuro,#A9A9A9 -Gris oscuro,#A9A9A9 -Verde oscuro,#006400 -Caqui oscuro,#BDB76B -Magenta oscuro,#8B008B -Verde oliva oscuro,#556B2F -Naranja oscuro,#FF8C00 -Orquídea oscuro,#9932CC -Rojo oscuro,#8B0000 -Salmón oscuro,#E9967A -Verde mar intenso,#8FBC8F -Azul pizarra oscuro,#483D8B -Gris pizarra oscuro,#2F4F4F -Gris pizarra oscuro,#2F4F4F -Turquesa oscuro,#00CED1 -Violeta oscuro,#9400D3 -Rosa intenso,#FF1493 -Azul cielo intenso,#00BFFF -gris difuso,#696969 -gris difuso,#696969 -azul dodger,#1E90FF -ladrillo ignifugo,#B22222 -blanco flora,#FFFAF0 -verde bosque,#228B22 -fucsia,#FF00FF -gainsboro,#DCDCDC -blanco fantasma,#F8F8FF -dorado,#FFD700 -dorado alambre,#DAA520 -gris,#808080 -gris,#808080 -verde,#008000 -amarillo verdoso,#ADFF2F -miel,#F0FF0 -rosa furioso,#FF69B4 -rojo indio,#CD5C5C -indigo,#4B0082 -marfil,#FFFFF0 -caqui,#F0E68C -lavanda,#E6E6FA -lavanda rojizo,#FFF0F5 -verde jardín,#7CFC00 -chiffon amarillo,#FFFACD -azul claro,#ADD8E6 -coral claro,#F08080 -cian claro,#E0FFFF -dorado amarillo,#FAFAD2 -gris claro,#D3D3D3 -gris claro,#D3D3D3 -verde claro,#90EE90 -rosa claro,#FFB6C1 -Salmón claro,#FFA07A -Verde mar claro,#20B2AA -Azul cielo claro, #87CEFA -gris pizarra claro,#778899 -gris pizarra claro,#778899 -azul acero claro,#B0C4DE -amarillo claro,#FFFFE0 -lima,#00FF00 -verde lima,#32CD32 -lino,#FAF0E6 -magenta,#FF00FF -marrón,#800000 -aguamarina intermedio,#66CDAA -azul intermedio,#0000CD -orquídea intermedio,#BA55D3 -púrpura intermedio,#9370DB -verde marino intermedio,#3CB371 -azul pizarra intermedio,#7B68EE -verde jardín intermedio,#00FA9A -turquesa intermedio,#48D1CC -rojo violáceo intermedio,#C71585 -Azúl medianoche,#191970 -Crema,#F5FFFA -Rosa brumosa,#FFE4E1 -Mocasín,#FFE4B5 -blanco navajo,#FFDEAD -azul marino,#000080 -encaje viejo,#FDF5E6 -verde oliva,#808000 -olive drab,#6B8E23 -naranja,#FFA500 -rojo anaranjado,#FF4500 -orquídea,#DA70D6 -dorado claro,#EEE8AA -verde claro,#98FB98 -turquesa pálido, #AFEEEE -rojo violáceo pálido,#DB7093 -papaya,#FFEFD5 -durazno,#FFDAB9 -peru,#CD853F -rosa,#FFC0CB -plum,#DDA0DD -azul pálido,#B0E0E6 -Púrpura,#800080 -Rebeca púrpura,#663399 -Rojo,#FF0000 -marrón rosaceo,#BC8F8F -azul real,#4169E1 -marrón cuero,#8B4513 -salmón,#FA8072 -marrón arenoso,#F4A460 -verde marino,#2E8B57 -Concha marina,#FFF5EE -siena,#A0522D -plateado,#C0C0C0 -azul cielo,#87CEEB -azul pizarra,#6A5ACD -gris pizarra,#708090 -gris pizarra,#708090 -nieve,#FFFAFA -Verde primavera,#00FF7F -azul acero,#4682B4 -Bronceado,#D2B48C -verde azulado,#008080 -Cardo,#D8BFD8 -rojo tomate,#FF6347 -turquesa,#40E0D0 -violeta,#EE82EE -trigo,#F5DEB3 -blanco,#FFFFFF -humo blanco,#F5F5F5 -amarillo,#FFFF00 -verde amarillento,#9ACD32 diff --git a/locale/es-lm/custom.eye.color.intent b/locale/es-lm/custom.eye.color.intent deleted file mode 100644 index 63f7801..0000000 --- a/locale/es-lm/custom.eye.color.intent +++ /dev/null @@ -1,2 +0,0 @@ -configurar (color|colores) de (ojo|ojos) (personalizado|personalizados) -(configurar|cambiar) (color|colores) (personalizado|personalizados) de (ojo|ojos) diff --git a/locale/es-lm/error.rgbvalue.dialog b/locale/es-lm/error.rgbvalue.dialog deleted file mode 100644 index 08f1c49..0000000 --- a/locale/es-lm/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Necesito un número entre 0 y 255 -El valor debe estar entre 0 y 255 diff --git a/locale/es-lm/error.set.color.dialog b/locale/es-lm/error.set.color.dialog deleted file mode 100644 index c2118bb..0000000 --- a/locale/es-lm/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Perdona, ha habido un error configurando el color. -Parece que tuve un error al intentar configurar el color. diff --git a/locale/es-lm/eye.color.intent b/locale/es-lm/eye.color.intent deleted file mode 100644 index 56dc787..0000000 --- a/locale/es-lm/eye.color.intent +++ /dev/null @@ -1,6 +0,0 @@ -(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) al {color} -(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) al {color} -(cambiar|configurar) (el|tu|los) (color|colores) de (ojo|ojos) a algo {color} -(cambiar|configurar) (tus|los|) ojos a un {color} (color|) -(cambiar|configurar) (ojo|ojos) a un color {color} -(cambiar|configurar) color de ojos diff --git a/locale/es-lm/get.b.value.dialog b/locale/es-lm/get.b.value.dialog deleted file mode 100644 index 848ba46..0000000 --- a/locale/es-lm/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Casi terminamos. ¿Qué te parece en color azul? -Un ultimo numero entre 0 y 255 para el azul diff --git a/locale/es-lm/get.g.value.dialog b/locale/es-lm/get.g.value.dialog deleted file mode 100644 index 6c5ad57..0000000 --- a/locale/es-lm/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ahora necesito otro valor para el verde -A continuación, necesito el valor para el verde diff --git a/locale/es-lm/get.r.value.dialog b/locale/es-lm/get.r.value.dialog deleted file mode 100644 index cfd6806..0000000 --- a/locale/es-lm/get.r.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Por favor indícame un valor entre el 0 y el 255 para el componente rojo -Indícame un valor entre 0 y 255 para el rojo diff --git a/locale/es-lm/set.custom.color.dialog b/locale/es-lm/set.custom.color.dialog deleted file mode 100644 index 887dfd8..0000000 --- a/locale/es-lm/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Mi cerebro está configurado para entender colores R G B. diff --git a/locale/fr-FR/animation.voc b/locale/fr-FR/animation.voc new file mode 100644 index 0000000..f5dc8e6 --- /dev/null +++ b/locale/fr-FR/animation.voc @@ -0,0 +1,2 @@ +animation +animations \ No newline at end of file diff --git a/locale/fr-FR/blink.voc b/locale/fr-FR/blink.voc new file mode 100644 index 0000000..d6485a7 --- /dev/null +++ b/locale/fr-FR/blink.voc @@ -0,0 +1,2 @@ +cligne +cligner \ No newline at end of file diff --git a/locale/fr-fr/brightness.entity b/locale/fr-FR/brightness.entity similarity index 100% rename from locale/fr-fr/brightness.entity rename to locale/fr-FR/brightness.entity diff --git a/locale/fr-fr/brightness.error.dialog b/locale/fr-FR/brightness.error.dialog similarity index 61% rename from locale/fr-fr/brightness.error.dialog rename to locale/fr-FR/brightness.error.dialog index 303dfcc..450b971 100644 --- a/locale/fr-fr/brightness.error.dialog +++ b/locale/fr-FR/brightness.error.dialog @@ -1 +1 @@ -Je ne comprend pas cette valeur, merci de me donner une valeur de luminosité entre 0 et 100 pourcent. +Je ne comprend pas cette valeur, merci de me donner une valeur de luminosité entre 0 et 100 pourcent. \ No newline at end of file diff --git a/locale/fr-fr/brightness.intent b/locale/fr-FR/brightness.intent similarity index 93% rename from locale/fr-fr/brightness.intent rename to locale/fr-FR/brightness.intent index dc368a3..46976ba 100644 --- a/locale/fr-fr/brightness.intent +++ b/locale/fr-FR/brightness.intent @@ -1,13 +1,12 @@ -réduit (the|your) yeux sur {brightness} (percent|) -réduit sur {brightness} (percent|) -baisse la (brightness|illumination) de tes yeux sur {brightness} (percent|) -règle (the|) (brightness|illumination) (down|up) sur {brightness} (percent|) -règle (down|up) (the|) (brightness|illumination) sur {brightness} (percent|) -Augmente (a bit|) sur {brightness} (percent|) -(change|set|switch) sur {brightness} (percent|) (eye|) (brightness|illumination) -(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) sur {brightness} (percent|) (change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) +(change|set|switch) (the|your) (eye|) (brightness|illumination) (level|) sur {brightness} (percent|) +(change|set|switch) sur {brightness} (percent|) (eye|) (brightness|illumination) +Augmente (a bit|) sur {brightness} (percent|) C'est (too|) (bright|dim) -C'est (too|) (bright|dim) -éclaire le plus +baisse la (brightness|illumination) de tes yeux sur {brightness} (percent|) +règle (down|up) (the|) (brightness|illumination) sur {brightness} (percent|) +règle (the|) (brightness|illumination) (down|up) sur {brightness} (percent|) +réduit (the|your) yeux sur {brightness} (percent|) réduit le un peu +réduit sur {brightness} (percent|) +éclaire le plus \ No newline at end of file diff --git a/locale/fr-fr/brightness.levels.value b/locale/fr-FR/brightness.levels.value similarity index 100% rename from locale/fr-fr/brightness.levels.value rename to locale/fr-FR/brightness.levels.value diff --git a/locale/fr-fr/brightness.not.found.dialog b/locale/fr-FR/brightness.not.found.dialog similarity index 50% rename from locale/fr-fr/brightness.not.found.dialog rename to locale/fr-FR/brightness.not.found.dialog index 4e07ddb..721f7bc 100644 --- a/locale/fr-fr/brightness.not.found.dialog +++ b/locale/fr-FR/brightness.not.found.dialog @@ -1,2 +1,2 @@ Donne-moi un pourcentage de luminosité pour mon visage -Quel pourcentage ou niveau de luminosité aimerai-tu ? +Quel pourcentage ou niveau de luminosité aimerai-tu ? \ No newline at end of file diff --git a/locale/fr-FR/brightness.not.found.final.dialog b/locale/fr-FR/brightness.not.found.final.dialog new file mode 100644 index 0000000..bf8e8c5 --- /dev/null +++ b/locale/fr-FR/brightness.not.found.final.dialog @@ -0,0 +1,2 @@ +Désolé, je ne comprend pas ce niveau. +Je comprends les expressions comme "à fond", "bas" ou 50%. \ No newline at end of file diff --git a/locale/fr-fr/brightness.set.dialog b/locale/fr-FR/brightness.set.dialog similarity index 51% rename from locale/fr-fr/brightness.set.dialog rename to locale/fr-FR/brightness.set.dialog index 9a4e72a..0303664 100644 --- a/locale/fr-fr/brightness.set.dialog +++ b/locale/fr-FR/brightness.set.dialog @@ -1,2 +1,2 @@ -OK, réglage de la luminosité sur {val}. Compris, je règle la luminosité sur {val} +OK, réglage de la luminosité sur {val}. \ No newline at end of file diff --git a/locale/fr-fr/color.entity b/locale/fr-FR/color.entity similarity index 100% rename from locale/fr-fr/color.entity rename to locale/fr-FR/color.entity diff --git a/locale/fr-fr/color.need.dialog b/locale/fr-FR/color.need.dialog similarity index 67% rename from locale/fr-fr/color.need.dialog rename to locale/fr-FR/color.need.dialog index 5d589dc..2a7bb72 100644 --- a/locale/fr-fr/color.need.dialog +++ b/locale/fr-FR/color.need.dialog @@ -1,3 +1,3 @@ -Quelle couleur voudriez-vous utiliser ? De quelle couleur voudriez-vous que mes yeux soient ? Dites une couleur pour voir. +Quelle couleur voudriez-vous utiliser ? \ No newline at end of file diff --git a/locale/fr-fr/color.not.exist.dialog b/locale/fr-FR/color.not.exist.dialog similarity index 96% rename from locale/fr-fr/color.not.exist.dialog rename to locale/fr-FR/color.not.exist.dialog index e1ee61b..ce5095b 100644 --- a/locale/fr-fr/color.not.exist.dialog +++ b/locale/fr-FR/color.not.exist.dialog @@ -1,2 +1,2 @@ -Je ne connais pas cette couleur. Si vous en connaissez les valeurs R G B vous pouvez dire 'définir une couleur d'yeux personnalisée' C'est une couleur avec laquelle je ne suis pas familier. +Je ne connais pas cette couleur. Si vous en connaissez les valeurs R G B vous pouvez dire 'définir une couleur d'yeux personnalisée' \ No newline at end of file diff --git a/locale/fr-fr/color.not.found.dialog b/locale/fr-FR/color.not.found.dialog similarity index 82% rename from locale/fr-fr/color.not.found.dialog rename to locale/fr-FR/color.not.found.dialog index 4b9b7b7..f74f3ab 100644 --- a/locale/fr-fr/color.not.found.dialog +++ b/locale/fr-FR/color.not.found.dialog @@ -1,3 +1,3 @@ -Désolé, je n'ai pas cette couleur en option. Essayez de me demander une couleur d'yeux personnalisée. Cette couleur n'est pas disponible, mais je peux personnaliser la couleur d'yeux. -Mes yeux ne peuvent pas devenir de cette couleur. Peut-être devriez-vous définir une couleur d'yeux personnalisée. +Désolé, je n'ai pas cette couleur en option. Essayez de me demander une couleur d'yeux personnalisée. +Mes yeux ne peuvent pas devenir de cette couleur. Peut-être devriez-vous définir une couleur d'yeux personnalisée. \ No newline at end of file diff --git a/locale/fr-fr/colors.value b/locale/fr-FR/colors.value similarity index 100% rename from locale/fr-fr/colors.value rename to locale/fr-FR/colors.value diff --git a/locale/fr-FR/crazy.voc b/locale/fr-FR/crazy.voc new file mode 100644 index 0000000..5c965be --- /dev/null +++ b/locale/fr-FR/crazy.voc @@ -0,0 +1,2 @@ +folle +fou \ No newline at end of file diff --git a/locale/fr-fr/custom.eye.color.intent b/locale/fr-FR/custom.eye.color.intent similarity index 57% rename from locale/fr-fr/custom.eye.color.intent rename to locale/fr-FR/custom.eye.color.intent index bc29e44..8bbfdb8 100644 --- a/locale/fr-fr/custom.eye.color.intent +++ b/locale/fr-FR/custom.eye.color.intent @@ -1,2 +1,2 @@ -Personnalise les yeux en (couleur|couleurs) (régler|modifier) sur une couleur des yeux personnalisée +Personnalise les yeux en (couleur|couleurs) \ No newline at end of file diff --git a/locale/fr-FR/down.voc b/locale/fr-FR/down.voc new file mode 100644 index 0000000..b6afae8 --- /dev/null +++ b/locale/fr-FR/down.voc @@ -0,0 +1 @@ +bas \ No newline at end of file diff --git a/locale/fr-FR/enclosure.voc b/locale/fr-FR/enclosure.voc new file mode 100644 index 0000000..ce96ff4 --- /dev/null +++ b/locale/fr-FR/enclosure.voc @@ -0,0 +1,4 @@ +boîtier +mark 1 +mark one +ton corps \ No newline at end of file diff --git a/locale/fr-FR/error.rgbvalue.dialog b/locale/fr-FR/error.rgbvalue.dialog new file mode 100644 index 0000000..8592884 --- /dev/null +++ b/locale/fr-FR/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +J'ai besoin d'un nombre entre 0 et 255 +La valeur doit être comprise entre 0 et 255 \ No newline at end of file diff --git a/locale/fr-fr/error.set.color.dialog b/locale/fr-FR/error.set.color.dialog similarity index 96% rename from locale/fr-fr/error.set.color.dialog rename to locale/fr-FR/error.set.color.dialog index c91773a..353c058 100644 --- a/locale/fr-fr/error.set.color.dialog +++ b/locale/fr-FR/error.set.color.dialog @@ -1,2 +1,2 @@ Désolé, il y a eu une erreur pendant le réglage de couleur. -On dirait qu'il y a eu une erreur pendant le réglage de la couleur. +On dirait qu'il y a eu une erreur pendant le réglage de la couleur. \ No newline at end of file diff --git a/locale/fr-fr/eye.color.intent b/locale/fr-FR/eye.color.intent similarity index 67% rename from locale/fr-fr/eye.color.intent rename to locale/fr-FR/eye.color.intent index 72d7672..2feed72 100644 --- a/locale/fr-fr/eye.color.intent +++ b/locale/fr-FR/eye.color.intent @@ -1,6 +1,5 @@ +(changer|définir|fixé) (la couleur|les couleurs) des yeux +(changer|définir|fixé) la couleur des yeux en {color} (changer|régler) (la|votre) couleur (d'yeux|des yeux) à {color} (changer|régler) la couleur (d'yeux|des yeux) à {color} -(changer|régler) la couleur des yeux à une valeur {color} -(changer|définir|fixé) la couleur des yeux en {color} -(changer|définir|fixé) la couleur des yeux en {color} -(changer|définir|fixé) (la couleur|les couleurs) des yeux +(changer|régler) la couleur des yeux à une valeur {color} \ No newline at end of file diff --git a/locale/fr-FR/eyes.voc b/locale/fr-FR/eyes.voc new file mode 100644 index 0000000..0145896 --- /dev/null +++ b/locale/fr-FR/eyes.voc @@ -0,0 +1,2 @@ +yeux +œil \ No newline at end of file diff --git a/locale/fr-fr/get.b.value.dialog b/locale/fr-FR/get.b.value.dialog similarity index 50% rename from locale/fr-fr/get.b.value.dialog rename to locale/fr-FR/get.b.value.dialog index d8367fa..5cdb924 100644 --- a/locale/fr-fr/get.b.value.dialog +++ b/locale/fr-FR/get.b.value.dialog @@ -1,2 +1,2 @@ -Presque fini. Quelle valeur pour le bleu ? On dernier nombre pour le bleu de 0 à 255 +Presque fini. Quelle valeur pour le bleu ? \ No newline at end of file diff --git a/locale/fr-FR/get.g.value.dialog b/locale/fr-FR/get.g.value.dialog new file mode 100644 index 0000000..377a4f2 --- /dev/null +++ b/locale/fr-FR/get.g.value.dialog @@ -0,0 +1,2 @@ +Ensuite j'ai besoin de la valeur du vert +Maintenant j'ai besoin d'une autre valeur pour le vert \ No newline at end of file diff --git a/locale/fr-fr/get.r.value.dialog b/locale/fr-FR/get.r.value.dialog similarity index 98% rename from locale/fr-fr/get.r.value.dialog rename to locale/fr-FR/get.r.value.dialog index 8d3e9db..fd6c697 100644 --- a/locale/fr-fr/get.r.value.dialog +++ b/locale/fr-FR/get.r.value.dialog @@ -1,2 +1,2 @@ -SVP donnez moi une valeur entre 0 et 255 pour la composante rouge Dites moi une valeur entre 0 et 255 pour le rouge +SVP donnez moi une valeur entre 0 et 255 pour la composante rouge \ No newline at end of file diff --git a/locale/fr-FR/left.voc b/locale/fr-FR/left.voc new file mode 100644 index 0000000..b105ea3 --- /dev/null +++ b/locale/fr-FR/left.voc @@ -0,0 +1 @@ +gauche \ No newline at end of file diff --git a/locale/fr-FR/listen.voc b/locale/fr-FR/listen.voc new file mode 100644 index 0000000..d93826c --- /dev/null +++ b/locale/fr-FR/listen.voc @@ -0,0 +1,2 @@ +écoute +écouter \ No newline at end of file diff --git a/locale/fr-FR/look.voc b/locale/fr-FR/look.voc new file mode 100644 index 0000000..93513db --- /dev/null +++ b/locale/fr-FR/look.voc @@ -0,0 +1,2 @@ +oriente les yeux +tourne les yeux \ No newline at end of file diff --git a/locale/fr-FR/mouth.voc b/locale/fr-FR/mouth.voc new file mode 100644 index 0000000..afba8e5 --- /dev/null +++ b/locale/fr-FR/mouth.voc @@ -0,0 +1 @@ +bouche \ No newline at end of file diff --git a/locale/fr-FR/mute.voc b/locale/fr-FR/mute.voc new file mode 100644 index 0000000..8fa2cd7 --- /dev/null +++ b/locale/fr-FR/mute.voc @@ -0,0 +1,3 @@ +coupe le son du mark one +désactive le son du mark one +mets le mark one en sourdine \ No newline at end of file diff --git a/locale/fr-FR/narrow.voc b/locale/fr-FR/narrow.voc new file mode 100644 index 0000000..a594d1e --- /dev/null +++ b/locale/fr-FR/narrow.voc @@ -0,0 +1 @@ +plisse \ No newline at end of file diff --git a/locale/fr-FR/perform.voc b/locale/fr-FR/perform.voc new file mode 100644 index 0000000..fdff326 --- /dev/null +++ b/locale/fr-FR/perform.voc @@ -0,0 +1 @@ +exécute \ No newline at end of file diff --git a/locale/fr-FR/reboot.voc b/locale/fr-FR/reboot.voc new file mode 100644 index 0000000..a98db1d --- /dev/null +++ b/locale/fr-FR/reboot.voc @@ -0,0 +1 @@ +redémarre \ No newline at end of file diff --git a/locale/fr-FR/reset.voc b/locale/fr-FR/reset.voc new file mode 100644 index 0000000..7f61c0a --- /dev/null +++ b/locale/fr-FR/reset.voc @@ -0,0 +1,4 @@ +remets par défaut +revient par défaut +revient à la normale +réinitialise \ No newline at end of file diff --git a/locale/fr-FR/right.voc b/locale/fr-FR/right.voc new file mode 100644 index 0000000..838d542 --- /dev/null +++ b/locale/fr-FR/right.voc @@ -0,0 +1 @@ +droite \ No newline at end of file diff --git a/locale/fr-fr/set.color.success.dialog b/locale/fr-FR/set.color.success.dialog similarity index 61% rename from locale/fr-fr/set.color.success.dialog rename to locale/fr-FR/set.color.success.dialog index 548662b..6b4cee5 100644 --- a/locale/fr-fr/set.color.success.dialog +++ b/locale/fr-FR/set.color.success.dialog @@ -1,3 +1,3 @@ -Super. Vérifiez mes yeux. -Voilà. J'ai meilleure mine, maintenant ? C'est une bonne couleur. Regardez moi. +Super. Vérifiez mes yeux. +Voilà. J'ai meilleure mine, maintenant ? \ No newline at end of file diff --git a/locale/fr-FR/set.custom.color.dialog b/locale/fr-FR/set.custom.color.dialog new file mode 100644 index 0000000..54fae32 --- /dev/null +++ b/locale/fr-FR/set.custom.color.dialog @@ -0,0 +1 @@ +Mon cerveau est cablé pour comprendre les couleurs en RVB. \ No newline at end of file diff --git a/locale/fr-FR/set.default.eye.color.dialog b/locale/fr-FR/set.default.eye.color.dialog new file mode 100644 index 0000000..6de7e35 --- /dev/null +++ b/locale/fr-FR/set.default.eye.color.dialog @@ -0,0 +1 @@ +Voulez-vous définir cette couleur comme couleur des yeux par défaut ? \ No newline at end of file diff --git a/locale/fr-FR/smile.voc b/locale/fr-FR/smile.voc new file mode 100644 index 0000000..57a5225 --- /dev/null +++ b/locale/fr-FR/smile.voc @@ -0,0 +1,2 @@ +sourire +souris \ No newline at end of file diff --git a/locale/fr-FR/spin.voc b/locale/fr-FR/spin.voc new file mode 100644 index 0000000..74c0521 --- /dev/null +++ b/locale/fr-FR/spin.voc @@ -0,0 +1,3 @@ +fais tourner +pivote +tourne \ No newline at end of file diff --git a/locale/fr-FR/system.voc b/locale/fr-FR/system.voc new file mode 100644 index 0000000..3bc9ec6 --- /dev/null +++ b/locale/fr-FR/system.voc @@ -0,0 +1,2 @@ +système +système d'exploitation \ No newline at end of file diff --git a/locale/fr-FR/think.voc b/locale/fr-FR/think.voc new file mode 100644 index 0000000..3f6037f --- /dev/null +++ b/locale/fr-FR/think.voc @@ -0,0 +1,2 @@ +réfléchir +réfléchis \ No newline at end of file diff --git a/locale/fr-FR/unmute.voc b/locale/fr-FR/unmute.voc new file mode 100644 index 0000000..1aa5c8e --- /dev/null +++ b/locale/fr-FR/unmute.voc @@ -0,0 +1,3 @@ +active le son du mark one +remets le son du mark one +rétablis le son du mark one \ No newline at end of file diff --git a/locale/fr-FR/up.voc b/locale/fr-FR/up.voc new file mode 100644 index 0000000..9dd6b63 --- /dev/null +++ b/locale/fr-FR/up.voc @@ -0,0 +1 @@ +haut \ No newline at end of file diff --git a/locale/fr-fr/brightness.not.found.final.dialog b/locale/fr-fr/brightness.not.found.final.dialog deleted file mode 100644 index 24c00f7..0000000 --- a/locale/fr-fr/brightness.not.found.final.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Désolé, je ne comprend pas ce niveau. -Je comprends les expressions comme "à fond", "bas" ou 50%. diff --git a/locale/fr-fr/error.rgbvalue.dialog b/locale/fr-fr/error.rgbvalue.dialog deleted file mode 100644 index 28940cd..0000000 --- a/locale/fr-fr/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -J'ai besoin d'un nombre entre 0 et 255 -La valeur doit être comprise entre 0 et 255 diff --git a/locale/fr-fr/get.g.value.dialog b/locale/fr-fr/get.g.value.dialog deleted file mode 100644 index cfa4814..0000000 --- a/locale/fr-fr/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Maintenant j'ai besoin d'une autre valeur pour le vert -Ensuite j'ai besoin de la valeur du vert diff --git a/locale/fr-fr/set.custom.color.dialog b/locale/fr-fr/set.custom.color.dialog deleted file mode 100644 index 2dbae17..0000000 --- a/locale/fr-fr/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Mon cerveau est cablé pour comprendre les couleurs en RVB. diff --git a/locale/gl-ES/animation.voc b/locale/gl-ES/animation.voc new file mode 100644 index 0000000..490a668 --- /dev/null +++ b/locale/gl-ES/animation.voc @@ -0,0 +1,2 @@ +animación +animacións \ No newline at end of file diff --git a/locale/gl-ES/blink.voc b/locale/gl-ES/blink.voc new file mode 100644 index 0000000..ae157d7 --- /dev/null +++ b/locale/gl-ES/blink.voc @@ -0,0 +1 @@ +(pestanexa|pestanexar) \ No newline at end of file diff --git a/locale/gl-es/brightness.entity b/locale/gl-ES/brightness.entity similarity index 100% rename from locale/gl-es/brightness.entity rename to locale/gl-ES/brightness.entity diff --git a/locale/gl-es/brightness.error.dialog b/locale/gl-ES/brightness.error.dialog similarity index 76% rename from locale/gl-es/brightness.error.dialog rename to locale/gl-ES/brightness.error.dialog index 9687e83..377dc65 100644 --- a/locale/gl-es/brightness.error.dialog +++ b/locale/gl-ES/brightness.error.dialog @@ -1 +1 @@ -Non entendo este valor de brillo, dáme un valor de brillo entre 0 e 100 por cento. +Non entendo este valor de brillo, dáme un valor de brillo entre 0 e 100 por cento. \ No newline at end of file diff --git a/locale/gl-es/brightness.intent b/locale/gl-ES/brightness.intent similarity index 81% rename from locale/gl-es/brightness.intent rename to locale/gl-ES/brightness.intent index 9015949..7c65055 100644 --- a/locale/gl-es/brightness.intent +++ b/locale/gl-ES/brightness.intent @@ -1,13 +1,12 @@ -escurece (os teus) ollos ata o {brightness} (porcento|) -escurecer ata o {brightness} (porcento|) -(reduzace) (o|a) (brillo|iluminación) dos teus ollos ata o {brightness} (porcento|) -cambia (o|a) (brillo|iluminación) ata o {brightness} (porcento|) -cambia (o|a) (brillo|iluminación) ata o {brightness} (porcento|) -ilumina (un pouco|) ata o {brightness} (porcento|) (cambiar|establece) ata o {brightness} (porcento|) (o|a) (brillo|iluminación) (dos|) (ollos|) -(cambiar|establecer) (o teu) (nivel) de (brillo|iluminación) do (ollo|) ata o {brightness} (por cento|) (cambiar|establecer) (o teu) (nivel) de (brillo|iluminación) do (ollo|) ata o (nivel|) -estás (moi|) (brillante|escuro) -estás con brillo (moi|) (fraco|forte) +(cambiar|establecer) (o teu) (nivel) de (brillo|iluminación) do (ollo|) ata o {brightness} (por cento|) +(reduzace) (o|a) (brillo|iluminación) dos teus ollos ata o {brightness} (porcento|) aumenta o brillo +cambia (o|a) (brillo|iluminación) ata o {brightness} (porcento|) diminúe o brillo +escurece (os teus) ollos ata o {brightness} (porcento|) +escurecer ata o {brightness} (porcento|) +estás (moi|) (brillante|escuro) +estás con brillo (moi|) (fraco|forte) +ilumina (un pouco|) ata o {brightness} (porcento|) \ No newline at end of file diff --git a/locale/gl-es/brightness.levels.value b/locale/gl-ES/brightness.levels.value similarity index 100% rename from locale/gl-es/brightness.levels.value rename to locale/gl-ES/brightness.levels.value diff --git a/locale/gl-es/brightness.not.found.dialog b/locale/gl-ES/brightness.not.found.dialog similarity index 50% rename from locale/gl-es/brightness.not.found.dialog rename to locale/gl-ES/brightness.not.found.dialog index d9a4c5e..4c62a87 100644 --- a/locale/gl-es/brightness.not.found.dialog +++ b/locale/gl-ES/brightness.not.found.dialog @@ -1,2 +1,2 @@ -Dime unha porcentaxe ou nivel de brillo para o meu rostro Cal é o nivel ou porcentaxe de brillo que che gustaría? +Dime unha porcentaxe ou nivel de brillo para o meu rostro \ No newline at end of file diff --git a/locale/gl-es/brightness.not.found.final.dialog b/locale/gl-ES/brightness.not.found.final.dialog similarity index 52% rename from locale/gl-es/brightness.not.found.final.dialog rename to locale/gl-ES/brightness.not.found.final.dialog index de5113a..f04e528 100644 --- a/locale/gl-es/brightness.not.found.final.dialog +++ b/locale/gl-ES/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ Desculpa, non entendín este nivel de brillo. -Entendo só cousas como, 'máximo' ou 50% +Entendo só cousas como, 'máximo' ou 50% \ No newline at end of file diff --git a/locale/gl-ES/brightness.set.dialog b/locale/gl-ES/brightness.set.dialog new file mode 100644 index 0000000..0c5772f --- /dev/null +++ b/locale/gl-ES/brightness.set.dialog @@ -0,0 +1,2 @@ +Moi ben, definindo brillo para {val}. +Parece ben, definindo brillo para {val} \ No newline at end of file diff --git a/locale/gl-es/color.entity b/locale/gl-ES/color.entity similarity index 100% rename from locale/gl-es/color.entity rename to locale/gl-ES/color.entity diff --git a/locale/gl-es/color.need.dialog b/locale/gl-ES/color.need.dialog similarity index 71% rename from locale/gl-es/color.need.dialog rename to locale/gl-ES/color.need.dialog index ef46e95..ddca66b 100644 --- a/locale/gl-es/color.need.dialog +++ b/locale/gl-ES/color.need.dialog @@ -1,3 +1,3 @@ -Cal é a cor que che gustaría usar? Cal é a cor que che gustaría para os meus ollos? -Dime o nome dunha cor para probar. +Cal é a cor que che gustaría usar? +Dime o nome dunha cor para probar. \ No newline at end of file diff --git a/locale/gl-es/color.not.exist.dialog b/locale/gl-ES/color.not.exist.dialog similarity index 74% rename from locale/gl-es/color.not.exist.dialog rename to locale/gl-ES/color.not.exist.dialog index d784c66..c01f85b 100644 --- a/locale/gl-es/color.not.exist.dialog +++ b/locale/gl-ES/color.not.exist.dialog @@ -1,2 +1,2 @@ -Non coñezo esta cor. Se sabes os valores R G H, podes dicir "definir unha cor de ollos personalizada". Esta non é unha cor coa que estea familiarizado. +Non coñezo esta cor. Se sabes os valores R G H, podes dicir "definir unha cor de ollos personalizada". \ No newline at end of file diff --git a/locale/gl-es/color.not.found.dialog b/locale/gl-ES/color.not.found.dialog similarity index 84% rename from locale/gl-es/color.not.found.dialog rename to locale/gl-ES/color.not.found.dialog index 8c4a452..dcc7e2f 100644 --- a/locale/gl-es/color.not.found.dialog +++ b/locale/gl-ES/color.not.found.dialog @@ -1,3 +1,3 @@ Desculpa, esta cor non é unha opción. Intenta pedirme para establecer unha cor de ollos personalizada. Non teño esta cor dispoñible, mais podo definir unha cor de ollos personalizada. -Os meus ollos non poden quedar desta cor. Só se podería pedíndome definir unha cor de ollos personalizada. +Os meus ollos non poden quedar desta cor. Só se podería pedíndome definir unha cor de ollos personalizada. \ No newline at end of file diff --git a/locale/gl-es/colors.value b/locale/gl-ES/colors.value similarity index 100% rename from locale/gl-es/colors.value rename to locale/gl-ES/colors.value diff --git a/locale/gl-ES/crazy.voc b/locale/gl-ES/crazy.voc new file mode 100644 index 0000000..a2e7c66 --- /dev/null +++ b/locale/gl-ES/crazy.voc @@ -0,0 +1 @@ +tolo \ No newline at end of file diff --git a/locale/gl-es/custom.eye.color.intent b/locale/gl-ES/custom.eye.color.intent similarity index 55% rename from locale/gl-es/custom.eye.color.intent rename to locale/gl-ES/custom.eye.color.intent index 4c313af..85f971a 100644 --- a/locale/gl-es/custom.eye.color.intent +++ b/locale/gl-ES/custom.eye.color.intent @@ -1,2 +1,2 @@ -definir (cor|cores) (de|dos) ollos (personalizada|s) (definir|cambiar) para (unha|s) (cor|cores) de ollos personalizada +definir (cor|cores) (de|dos) ollos (personalizada|s) \ No newline at end of file diff --git a/locale/gl-ES/down.voc b/locale/gl-ES/down.voc new file mode 100644 index 0000000..886035f --- /dev/null +++ b/locale/gl-ES/down.voc @@ -0,0 +1 @@ +abaixo \ No newline at end of file diff --git a/locale/gl-ES/enclosure.voc b/locale/gl-ES/enclosure.voc new file mode 100644 index 0000000..7caab08 --- /dev/null +++ b/locale/gl-ES/enclosure.voc @@ -0,0 +1,4 @@ +mark 1 +mark one +o teu corpo +recinto \ No newline at end of file diff --git a/locale/gl-es/error.rgbvalue.dialog b/locale/gl-ES/error.rgbvalue.dialog similarity index 50% rename from locale/gl-es/error.rgbvalue.dialog rename to locale/gl-ES/error.rgbvalue.dialog index 8ac987b..15dd9ae 100644 --- a/locale/gl-es/error.rgbvalue.dialog +++ b/locale/gl-ES/error.rgbvalue.dialog @@ -1,2 +1,2 @@ Necesito un número entre 0 e 255 -O valor debe estar entre 0 e 255 +O valor debe estar entre 0 e 255 \ No newline at end of file diff --git a/locale/gl-ES/error.set.color.dialog b/locale/gl-ES/error.set.color.dialog new file mode 100644 index 0000000..74db950 --- /dev/null +++ b/locale/gl-ES/error.set.color.dialog @@ -0,0 +1,2 @@ +Desculpa, houbo un erro ao definir a cor. +Parece que tiven un erro intentando definir a cor. \ No newline at end of file diff --git a/locale/gl-es/eye.color.intent b/locale/gl-ES/eye.color.intent similarity index 83% rename from locale/gl-es/eye.color.intent rename to locale/gl-ES/eye.color.intent index 6273aa4..b453a70 100644 --- a/locale/gl-es/eye.color.intent +++ b/locale/gl-ES/eye.color.intent @@ -1,6 +1,6 @@ -(cambiar|definir) (a|túa|as|túas) (cor|cores) de (ollo|ollos) para {color} -(cambiar|definir) (a|as|)(cor|cores) de (ollo|ollos) para {color} (cambiar|definir) (a|as) (cor|cores) dos ollos para algo (como|) {color} -(cambiar|definir) (os teus|) ollos para (unha|) (cor|) {color} -(cambiar|definir) (ollo|ollos) para (unha|) cor {color} +(cambiar|definir) (a|as|)(cor|cores) de (ollo|ollos) para {color} +(cambiar|definir) (a|túa|as|túas) (cor|cores) de (ollo|ollos) para {color} (cambiar|definir) (cor|cores) dos ollos +(cambiar|definir) (ollo|ollos) para (unha|) cor {color} +(cambiar|definir) (os teus|) ollos para (unha|) (cor|) {color} \ No newline at end of file diff --git a/locale/gl-ES/eyes.voc b/locale/gl-ES/eyes.voc new file mode 100644 index 0000000..5eba055 --- /dev/null +++ b/locale/gl-ES/eyes.voc @@ -0,0 +1,2 @@ +ollo +ollos \ No newline at end of file diff --git a/locale/gl-es/get.b.value.dialog b/locale/gl-ES/get.b.value.dialog similarity index 54% rename from locale/gl-es/get.b.value.dialog rename to locale/gl-ES/get.b.value.dialog index e4f13d4..a38b272 100644 --- a/locale/gl-es/get.b.value.dialog +++ b/locale/gl-ES/get.b.value.dialog @@ -1,2 +1,2 @@ Case estamos aí. Canto de valor lle dámos ao azul? -Un último número entre 0 e 255 para o azul +Un último número entre 0 e 255 para o azul \ No newline at end of file diff --git a/locale/gl-ES/get.g.value.dialog b/locale/gl-ES/get.g.value.dialog new file mode 100644 index 0000000..e5b4254 --- /dev/null +++ b/locale/gl-ES/get.g.value.dialog @@ -0,0 +1,2 @@ +Agora eu preciso doutro valor para o verde +En seguida eu preciso do valor para o verde \ No newline at end of file diff --git a/locale/gl-es/get.r.value.dialog b/locale/gl-ES/get.r.value.dialog similarity index 94% rename from locale/gl-es/get.r.value.dialog rename to locale/gl-ES/get.r.value.dialog index d6c9454..f6a2952 100644 --- a/locale/gl-es/get.r.value.dialog +++ b/locale/gl-ES/get.r.value.dialog @@ -1,2 +1,2 @@ -Por favor, dáme un valor entre o 0 e 255 para o compoñente vermello Dime un valor entre o 0 e 255 para o vermello +Por favor, dáme un valor entre o 0 e 255 para o compoñente vermello \ No newline at end of file diff --git a/locale/gl-ES/left.voc b/locale/gl-ES/left.voc new file mode 100644 index 0000000..29af9a6 --- /dev/null +++ b/locale/gl-ES/left.voc @@ -0,0 +1 @@ +esquerda \ No newline at end of file diff --git a/locale/gl-ES/listen.voc b/locale/gl-ES/listen.voc new file mode 100644 index 0000000..33e479f --- /dev/null +++ b/locale/gl-ES/listen.voc @@ -0,0 +1,2 @@ +(escoita|escoitar) +escoitando \ No newline at end of file diff --git a/locale/gl-ES/look.voc b/locale/gl-ES/look.voc new file mode 100644 index 0000000..094b3d2 --- /dev/null +++ b/locale/gl-ES/look.voc @@ -0,0 +1,2 @@ +(dirixe|dirixir) a mirada +(mira|mirar) \ No newline at end of file diff --git a/locale/gl-ES/mouth.voc b/locale/gl-ES/mouth.voc new file mode 100644 index 0000000..26ce633 --- /dev/null +++ b/locale/gl-ES/mouth.voc @@ -0,0 +1 @@ +boca \ No newline at end of file diff --git a/locale/gl-ES/mute.voc b/locale/gl-ES/mute.voc new file mode 100644 index 0000000..dd17ec5 --- /dev/null +++ b/locale/gl-ES/mute.voc @@ -0,0 +1,4 @@ +apagar (o|) son +desactivar (o|) son +son apagado +son desactivado \ No newline at end of file diff --git a/locale/gl-ES/narrow.voc b/locale/gl-ES/narrow.voc new file mode 100644 index 0000000..2fb8b81 --- /dev/null +++ b/locale/gl-ES/narrow.voc @@ -0,0 +1 @@ +estreito \ No newline at end of file diff --git a/locale/gl-ES/perform.voc b/locale/gl-ES/perform.voc new file mode 100644 index 0000000..206e290 --- /dev/null +++ b/locale/gl-ES/perform.voc @@ -0,0 +1 @@ +realizar \ No newline at end of file diff --git a/locale/gl-ES/reboot.voc b/locale/gl-ES/reboot.voc new file mode 100644 index 0000000..1788e99 --- /dev/null +++ b/locale/gl-ES/reboot.voc @@ -0,0 +1 @@ +reiniciar \ No newline at end of file diff --git a/locale/gl-ES/reset.voc b/locale/gl-ES/reset.voc new file mode 100644 index 0000000..09ece2c --- /dev/null +++ b/locale/gl-ES/reset.voc @@ -0,0 +1,4 @@ +(volve|volver|volta) ao normal +(volve|volver|volta) ao valor predeterminado +(volve|volver|volta) aos valores predeterminados +restablecer \ No newline at end of file diff --git a/locale/gl-ES/right.voc b/locale/gl-ES/right.voc new file mode 100644 index 0000000..3fed53c --- /dev/null +++ b/locale/gl-ES/right.voc @@ -0,0 +1 @@ +dereita \ No newline at end of file diff --git a/locale/gl-es/set.color.success.dialog b/locale/gl-ES/set.color.success.dialog similarity index 68% rename from locale/gl-es/set.color.success.dialog rename to locale/gl-ES/set.color.success.dialog index 7a54fac..885abf4 100644 --- a/locale/gl-es/set.color.success.dialog +++ b/locale/gl-ES/set.color.success.dialog @@ -1,3 +1,3 @@ Ben. Vexa os meus ollos. -Moi ben. Luzo mellor agora? Esta é unha boa cor. Mírame agora. +Moi ben. Luzo mellor agora? \ No newline at end of file diff --git a/locale/gl-ES/set.custom.color.dialog b/locale/gl-ES/set.custom.color.dialog new file mode 100644 index 0000000..0d6df27 --- /dev/null +++ b/locale/gl-ES/set.custom.color.dialog @@ -0,0 +1 @@ +O meu cerebro está programado para entender cores en R G B. \ No newline at end of file diff --git a/locale/gl-ES/set.default.eye.color.dialog b/locale/gl-ES/set.default.eye.color.dialog new file mode 100644 index 0000000..81781bc --- /dev/null +++ b/locale/gl-ES/set.default.eye.color.dialog @@ -0,0 +1 @@ +Queres establecer esta como a cor de ollos predeterminada? \ No newline at end of file diff --git a/locale/gl-ES/smile.voc b/locale/gl-ES/smile.voc new file mode 100644 index 0000000..e7a1c3c --- /dev/null +++ b/locale/gl-ES/smile.voc @@ -0,0 +1,2 @@ +(sorri|sorrir) +sorrindo \ No newline at end of file diff --git a/locale/gl-ES/spin.voc b/locale/gl-ES/spin.voc new file mode 100644 index 0000000..b9f25ba --- /dev/null +++ b/locale/gl-ES/spin.voc @@ -0,0 +1 @@ +xirar \ No newline at end of file diff --git a/locale/gl-ES/system.voc b/locale/gl-ES/system.voc new file mode 100644 index 0000000..f1dd507 --- /dev/null +++ b/locale/gl-ES/system.voc @@ -0,0 +1,2 @@ +sistema +sistema operativo \ No newline at end of file diff --git a/locale/gl-ES/think.voc b/locale/gl-ES/think.voc new file mode 100644 index 0000000..53a202b --- /dev/null +++ b/locale/gl-ES/think.voc @@ -0,0 +1,2 @@ +(pensa|pensar) +pensando \ No newline at end of file diff --git a/locale/gl-ES/unmute.voc b/locale/gl-ES/unmute.voc new file mode 100644 index 0000000..eabe031 --- /dev/null +++ b/locale/gl-ES/unmute.voc @@ -0,0 +1,3 @@ +(desactivar o silencio|activar son) +activar (o|) son +son activado \ No newline at end of file diff --git a/locale/gl-ES/up.voc b/locale/gl-ES/up.voc new file mode 100644 index 0000000..1f7cddb --- /dev/null +++ b/locale/gl-ES/up.voc @@ -0,0 +1 @@ +arriba \ No newline at end of file diff --git a/locale/gl-es/brightness.set.dialog b/locale/gl-es/brightness.set.dialog deleted file mode 100644 index a03ba6a..0000000 --- a/locale/gl-es/brightness.set.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Moi ben, definindo brillo para {val}. -Parece ben, definindo brillo para {val} diff --git a/locale/gl-es/error.set.color.dialog b/locale/gl-es/error.set.color.dialog deleted file mode 100644 index d32f26c..0000000 --- a/locale/gl-es/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Desculpa, houbo un erro ao definir a cor. -Parece que tiven un erro intentando definir a cor. diff --git a/locale/gl-es/get.g.value.dialog b/locale/gl-es/get.g.value.dialog deleted file mode 100644 index e46e0b5..0000000 --- a/locale/gl-es/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Agora eu preciso doutro valor para o verde -En seguida eu preciso do valor para o verde diff --git a/locale/gl-es/set.custom.color.dialog b/locale/gl-es/set.custom.color.dialog deleted file mode 100644 index 5c45e18..0000000 --- a/locale/gl-es/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -O meu cerebro está programado para entender cores en R G B. diff --git a/locale/it-it/brightness.entity b/locale/it-IT/brightness.entity similarity index 100% rename from locale/it-it/brightness.entity rename to locale/it-IT/brightness.entity diff --git a/locale/it-it/brightness.error.dialog b/locale/it-IT/brightness.error.dialog similarity index 70% rename from locale/it-it/brightness.error.dialog rename to locale/it-IT/brightness.error.dialog index 8c0b4b6..e9456b4 100644 --- a/locale/it-it/brightness.error.dialog +++ b/locale/it-IT/brightness.error.dialog @@ -1 +1 @@ -Non capisco il valore di luminosità, dammi un valore di luminosità fra 0 e 100 percento. +Non capisco il valore di luminosità, dammi un valore di luminosità fra 0 e 100 percento. \ No newline at end of file diff --git a/locale/it-it/brightness.intent b/locale/it-IT/brightness.intent similarity index 96% rename from locale/it-it/brightness.intent rename to locale/it-IT/brightness.intent index 668f8c1..c203639 100644 --- a/locale/it-it/brightness.intent +++ b/locale/it-IT/brightness.intent @@ -1,13 +1,13 @@ -oscura (gli|i tuoi) occhi al {brightness} (percento|) -abbassa luminosità {brightness} (percento|) -abbassa la (brillantezza|luminosità) dei tuoi occhi del {brightness} (percento|) -(abbassa|aumenta) (|la |l')(luminosità|illuminazione) (ad|al |all'){brightness} (|percento) (abbassa|aumenta) (la| ) (luminosità|illuminazione) al {brightness} percento -aumenta la luminosità al {brightness} per cento +(abbassa|aumenta) (|la |l')(luminosità|illuminazione) (ad|al |all'){brightness} (|percento) +(cambia|imposta |modifica) (livello| ) (di) (luminosità | illuminazione) (del| tuo) (occhio |) (diminuisci|aumenta|cambia) (la| ) (luminosità|illuminazione) al {brightness} percento (modifica|cambia|imposta) (il|tuo|livello|la|di) (luminosità|illuminazione) (degli occhi) al {brightness} (percento) -(cambia|imposta |modifica) (livello| ) (di) (luminosità | illuminazione) (del| tuo) (occhio |) -sei (troppo|) (luminoso|scuro) -sei (troppo|) (brillante|scuro) -illuminalo un pò +abbassa la (brillantezza|luminosità) dei tuoi occhi del {brightness} (percento|) +abbassa luminosità {brightness} (percento|) abbassalo un pò +aumenta la luminosità al {brightness} per cento +illuminalo un pò +oscura (gli|i tuoi) occhi al {brightness} (percento|) +sei (troppo|) (brillante|scuro) +sei (troppo|) (luminoso|scuro) \ No newline at end of file diff --git a/locale/it-it/brightness.levels.value b/locale/it-IT/brightness.levels.value similarity index 100% rename from locale/it-it/brightness.levels.value rename to locale/it-IT/brightness.levels.value diff --git a/locale/it-it/brightness.not.found.dialog b/locale/it-IT/brightness.not.found.dialog similarity index 50% rename from locale/it-it/brightness.not.found.dialog rename to locale/it-IT/brightness.not.found.dialog index 663c3ce..a567c82 100644 --- a/locale/it-it/brightness.not.found.dialog +++ b/locale/it-IT/brightness.not.found.dialog @@ -1,2 +1,2 @@ Dimmi la percentuale di luminosità per la mia faccia -Quale livello di luminosità o percentuale vorresti? +Quale livello di luminosità o percentuale vorresti? \ No newline at end of file diff --git a/locale/it-IT/brightness.not.found.final.dialog b/locale/it-IT/brightness.not.found.final.dialog new file mode 100644 index 0000000..118b68a --- /dev/null +++ b/locale/it-IT/brightness.not.found.final.dialog @@ -0,0 +1,2 @@ +Capisco solo cose come, 'pieno' o 50% +Scusa, non capisco quella luminosità. \ No newline at end of file diff --git a/locale/it-IT/brightness.set.dialog b/locale/it-IT/brightness.set.dialog new file mode 100644 index 0000000..76e7dd7 --- /dev/null +++ b/locale/it-IT/brightness.set.dialog @@ -0,0 +1,2 @@ +Ok, imposto la luminosità su {val}. +Sembra buono, imposto la luminosità su {val} \ No newline at end of file diff --git a/locale/it-it/color.entity b/locale/it-IT/color.entity similarity index 100% rename from locale/it-it/color.entity rename to locale/it-IT/color.entity diff --git a/locale/it-it/color.need.dialog b/locale/it-IT/color.need.dialog similarity index 70% rename from locale/it-it/color.need.dialog rename to locale/it-IT/color.need.dialog index 6d47617..6415f4d 100644 --- a/locale/it-it/color.need.dialog +++ b/locale/it-IT/color.need.dialog @@ -1,3 +1,3 @@ Che colore vuoi usare? Di che colore vuoi che siano i miei occhi? -Dì un colore per provare. +Dì un colore per provare. \ No newline at end of file diff --git a/locale/it-it/color.not.exist.dialog b/locale/it-IT/color.not.exist.dialog similarity index 79% rename from locale/it-it/color.not.exist.dialog rename to locale/it-IT/color.not.exist.dialog index 6474096..6ae8725 100644 --- a/locale/it-it/color.not.exist.dialog +++ b/locale/it-IT/color.not.exist.dialog @@ -1,2 +1,2 @@ Non conosco questo colore. Se conosci i valori R, V e B puoi dire 'imposta un colore personalizzato per gli occhi'. -Non è un colore che conosco. +Non è un colore che conosco. \ No newline at end of file diff --git a/locale/it-it/color.not.found.dialog b/locale/it-IT/color.not.found.dialog similarity index 92% rename from locale/it-it/color.not.found.dialog rename to locale/it-IT/color.not.found.dialog index a331802..5853e98 100644 --- a/locale/it-it/color.not.found.dialog +++ b/locale/it-IT/color.not.found.dialog @@ -1,3 +1,3 @@ -Mi spiace, questo colore non è un'opzione. Prova a chiedermi di impostare un colore personalizzato per gli occhi. -Non ho questo colore disponibile, ma posso dare un colore personalizzato ai miei occhi. I miei occhi non possono diventare di quel colore. Forse dovresti chiedermi di impostare un colore personalizzato. +Mi spiace, questo colore non è un'opzione. Prova a chiedermi di impostare un colore personalizzato per gli occhi. +Non ho questo colore disponibile, ma posso dare un colore personalizzato ai miei occhi. \ No newline at end of file diff --git a/locale/it-it/colors.value b/locale/it-IT/colors.value similarity index 100% rename from locale/it-it/colors.value rename to locale/it-IT/colors.value diff --git a/locale/it-it/custom.eye.color.intent b/locale/it-IT/custom.eye.color.intent similarity index 54% rename from locale/it-it/custom.eye.color.intent rename to locale/it-IT/custom.eye.color.intent index b0aef0e..09bf50c 100644 --- a/locale/it-it/custom.eye.color.intent +++ b/locale/it-IT/custom.eye.color.intent @@ -1,2 +1,2 @@ -imposta occhio personalizzato (colore|colori) (imposta|cambia) occhio personalizzato (colore|colori) +imposta occhio personalizzato (colore|colori) \ No newline at end of file diff --git a/locale/it-it/error.rgbvalue.dialog b/locale/it-IT/error.rgbvalue.dialog similarity index 51% rename from locale/it-it/error.rgbvalue.dialog rename to locale/it-IT/error.rgbvalue.dialog index 2ff4578..91aba35 100644 --- a/locale/it-it/error.rgbvalue.dialog +++ b/locale/it-IT/error.rgbvalue.dialog @@ -1,2 +1,2 @@ Ho bisogno di un numero compreso tra 0 e 255 -Il valore deve essere compreso tra 0 e 255 +Il valore deve essere compreso tra 0 e 255 \ No newline at end of file diff --git a/locale/it-it/error.set.color.dialog b/locale/it-IT/error.set.color.dialog similarity index 93% rename from locale/it-it/error.set.color.dialog rename to locale/it-IT/error.set.color.dialog index 8f800e1..16e31ee 100644 --- a/locale/it-it/error.set.color.dialog +++ b/locale/it-IT/error.set.color.dialog @@ -1,2 +1,2 @@ -Spiacente, si è verificato un errore durante l'impostazione del colore. Sembra che abbia avuto un errore nel tentativo di impostare il colore. +Spiacente, si è verificato un errore durante l'impostazione del colore. \ No newline at end of file diff --git a/locale/it-it/eye.color.intent b/locale/it-IT/eye.color.intent similarity index 84% rename from locale/it-it/eye.color.intent rename to locale/it-IT/eye.color.intent index 6b7f996..1bec807 100644 --- a/locale/it-it/eye.color.intent +++ b/locale/it-IT/eye.color.intent @@ -1,6 +1,6 @@ -(cambia|imposta) (colore|colori|) (degli|tuo|tuoi|) (occhio|occhi) in {color} (cambia|imposta) (colore|colori) (occhio|occhi) in {color} -(cambia|imposta) (il|tuo|i) (colore|colori) degli occhi a qualcosa {color} -(cambia|imposta) (i tuoi|gli|) occhi a (un) (colore) {color} -(cambia|imposta) (occhio|occhi) a (un) (colore) {color} (cambia|imposta) (colore|colori) occhio +(cambia|imposta) (colore|colori|) (degli|tuo|tuoi|) (occhio|occhi) in {color} +(cambia|imposta) (i tuoi|gli|) occhi a (un) (colore) {color} +(cambia|imposta) (il|tuo|i) (colore|colori) degli occhi a qualcosa {color} +(cambia|imposta) (occhio|occhi) a (un) (colore) {color} \ No newline at end of file diff --git a/locale/it-IT/get.b.value.dialog b/locale/it-IT/get.b.value.dialog new file mode 100644 index 0000000..84e263c --- /dev/null +++ b/locale/it-IT/get.b.value.dialog @@ -0,0 +1,2 @@ +Ci siamo quasi. Quale valore al blu? +Un ultimo numero tra 0 e 255 per il blue \ No newline at end of file diff --git a/locale/it-it/get.g.value.dialog b/locale/it-IT/get.g.value.dialog similarity index 51% rename from locale/it-it/get.g.value.dialog rename to locale/it-IT/get.g.value.dialog index 1332b14..b8d4021 100644 --- a/locale/it-it/get.g.value.dialog +++ b/locale/it-IT/get.g.value.dialog @@ -1,2 +1,2 @@ Ora ho bisogno di un altro valore per il verde -Successivamente ho bisogno del valore verde +Successivamente ho bisogno del valore verde \ No newline at end of file diff --git a/locale/it-IT/get.r.value.dialog b/locale/it-IT/get.r.value.dialog new file mode 100644 index 0000000..14e07ed --- /dev/null +++ b/locale/it-IT/get.r.value.dialog @@ -0,0 +1,2 @@ +Dimmi un valore da 0 a 255 per il rosso +Per favore dammi un valore tra 0 e 255 per la componente rossa \ No newline at end of file diff --git a/locale/it-it/set.color.success.dialog b/locale/it-IT/set.color.success.dialog similarity index 62% rename from locale/it-it/set.color.success.dialog rename to locale/it-IT/set.color.success.dialog index 94a4087..2f423ce 100644 --- a/locale/it-it/set.color.success.dialog +++ b/locale/it-IT/set.color.success.dialog @@ -1,3 +1,3 @@ Bene! Guarda i miei occhi. Va bene. Ti sembro meglio ora? -È un bel colore. Guardami adesso. +È un bel colore. Guardami adesso. \ No newline at end of file diff --git a/locale/it-IT/set.custom.color.dialog b/locale/it-IT/set.custom.color.dialog new file mode 100644 index 0000000..145b6d3 --- /dev/null +++ b/locale/it-IT/set.custom.color.dialog @@ -0,0 +1 @@ +Il mio cervello è cablato per capire i colori in R G B. \ No newline at end of file diff --git a/locale/it-it/brightness.not.found.final.dialog b/locale/it-it/brightness.not.found.final.dialog deleted file mode 100644 index 2cb6622..0000000 --- a/locale/it-it/brightness.not.found.final.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Scusa, non capisco quella luminosità. -Capisco solo cose come, 'pieno' o 50% diff --git a/locale/it-it/brightness.set.dialog b/locale/it-it/brightness.set.dialog deleted file mode 100644 index 9617f65..0000000 --- a/locale/it-it/brightness.set.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ok, imposto la luminosità su {val}. -Sembra buono, imposto la luminosità su {val} diff --git a/locale/it-it/get.b.value.dialog b/locale/it-it/get.b.value.dialog deleted file mode 100644 index 23ba2ea..0000000 --- a/locale/it-it/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ci siamo quasi. Quale valore al blu? -Un ultimo numero tra 0 e 255 per il blue diff --git a/locale/it-it/get.r.value.dialog b/locale/it-it/get.r.value.dialog deleted file mode 100644 index 28cec62..0000000 --- a/locale/it-it/get.r.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Per favore dammi un valore tra 0 e 255 per la componente rossa -Dimmi un valore da 0 a 255 per il rosso diff --git a/locale/it-it/set.custom.color.dialog b/locale/it-it/set.custom.color.dialog deleted file mode 100644 index 36d97fd..0000000 --- a/locale/it-it/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Il mio cervello è cablato per capire i colori in R G B. diff --git a/locale/nl-nl/brightness.entity b/locale/nl-NL/brightness.entity similarity index 100% rename from locale/nl-nl/brightness.entity rename to locale/nl-NL/brightness.entity diff --git a/locale/nl-nl/brightness.error.dialog b/locale/nl-NL/brightness.error.dialog similarity index 67% rename from locale/nl-nl/brightness.error.dialog rename to locale/nl-NL/brightness.error.dialog index 77fcd5b..9f0d803 100644 --- a/locale/nl-nl/brightness.error.dialog +++ b/locale/nl-NL/brightness.error.dialog @@ -1 +1 @@ -I begrijp die lichtsterkte waarde niet, geef me een lichtsterkte niveau van 0 tot 100 procent. +I begrijp die lichtsterkte waarde niet, geef me een lichtsterkte niveau van 0 tot 100 procent. \ No newline at end of file diff --git a/locale/nl-nl/brightness.intent b/locale/nl-NL/brightness.intent similarity index 94% rename from locale/nl-nl/brightness.intent rename to locale/nl-NL/brightness.intent index 583f20d..8b02ae0 100644 --- a/locale/nl-nl/brightness.intent +++ b/locale/nl-NL/brightness.intent @@ -1,13 +1,12 @@ +(verander|zet|switch) (de|je) (oog|) (helderheid|felheid) (niveau|) +(verander|zet|switch) (de|je) (oog|) (helderheid|felheid) (niveau|) naar {brightness} (procent|) +(verander|zet|switch) naar {brightness} (procent|) (oog|) (helderheid|felheid) dim (de|jouw) ogen naar {brightness} (procent|) +dim een beetje dim licht naar {brightness} (procent|) -verlaag de (lichtsterkte|verlichting) van je ogen naar {brightness} (procent|) +je bent (te|) (fel|zwak) stel (de|) (helderheid|verlichting) (omlaag|omhoog) in op {brightness} (procent|) stel (de|) (helderheid|verlichting) (omlaag|omhoog) naar {brightness} (procent|) -verhoog de helderheid (een beetje|) naar {brightness} (procent|) -(verander|zet|switch) naar {brightness} (procent|) (oog|) (helderheid|felheid) -(verander|zet|switch) (de|je) (oog|) (helderheid|felheid) (niveau|) naar {brightness} (procent|) -(verander|zet|switch) (de|je) (oog|) (helderheid|felheid) (niveau|) -je bent (te|) (fel|zwak) -je bent (te|) (fel|zwak) verhelder -dim een beetje +verhoog de helderheid (een beetje|) naar {brightness} (procent|) +verlaag de (lichtsterkte|verlichting) van je ogen naar {brightness} (procent|) \ No newline at end of file diff --git a/locale/nl-nl/brightness.levels.value b/locale/nl-NL/brightness.levels.value similarity index 100% rename from locale/nl-nl/brightness.levels.value rename to locale/nl-NL/brightness.levels.value diff --git a/locale/nl-nl/brightness.not.found.dialog b/locale/nl-NL/brightness.not.found.dialog similarity index 56% rename from locale/nl-nl/brightness.not.found.dialog rename to locale/nl-NL/brightness.not.found.dialog index 2c0c2c6..90cadef 100644 --- a/locale/nl-nl/brightness.not.found.dialog +++ b/locale/nl-NL/brightness.not.found.dialog @@ -1,2 +1,2 @@ Vertel me een helderheidspercentage of niveau voor mijn gezicht -Wat voor helderheidsniveau of percentage wil je? +Wat voor helderheidsniveau of percentage wil je? \ No newline at end of file diff --git a/locale/nl-nl/brightness.not.found.final.dialog b/locale/nl-NL/brightness.not.found.final.dialog similarity index 53% rename from locale/nl-nl/brightness.not.found.final.dialog rename to locale/nl-NL/brightness.not.found.final.dialog index 3e07797..dea128f 100644 --- a/locale/nl-nl/brightness.not.found.final.dialog +++ b/locale/nl-NL/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ -Sorry, ik begrijp die helderheid niet. Ik begrijp alleen dingen zoals, 'vol' of 50% +Sorry, ik begrijp die helderheid niet. \ No newline at end of file diff --git a/locale/nl-nl/brightness.set.dialog b/locale/nl-NL/brightness.set.dialog similarity index 54% rename from locale/nl-nl/brightness.set.dialog rename to locale/nl-NL/brightness.set.dialog index b5f8435..14fd450 100644 --- a/locale/nl-nl/brightness.set.dialog +++ b/locale/nl-NL/brightness.set.dialog @@ -1,2 +1,2 @@ -Oke, zet helderheid naar {val}. Klinkt goed, zet helderheid naar {val} +Oke, zet helderheid naar {val}. \ No newline at end of file diff --git a/locale/nl-nl/color.entity b/locale/nl-NL/color.entity similarity index 100% rename from locale/nl-nl/color.entity rename to locale/nl-NL/color.entity diff --git a/locale/nl-nl/color.need.dialog b/locale/nl-NL/color.need.dialog similarity index 72% rename from locale/nl-nl/color.need.dialog rename to locale/nl-NL/color.need.dialog index dc38037..a1af6fe 100644 --- a/locale/nl-nl/color.need.dialog +++ b/locale/nl-NL/color.need.dialog @@ -1,3 +1,3 @@ -Welke kleur wil je gebruiken? -Welke kleur wil je dat mijn ogen hebben? Noem een kleur om het uit te proberen. +Welke kleur wil je dat mijn ogen hebben? +Welke kleur wil je gebruiken? \ No newline at end of file diff --git a/locale/nl-nl/color.not.exist.dialog b/locale/nl-NL/color.not.exist.dialog similarity index 71% rename from locale/nl-nl/color.not.exist.dialog rename to locale/nl-NL/color.not.exist.dialog index 26f3c19..7202552 100644 --- a/locale/nl-nl/color.not.exist.dialog +++ b/locale/nl-NL/color.not.exist.dialog @@ -1,2 +1,2 @@ -Die kleur ken ik niet. Als je de R G B waardes kent dan kun je zeggen 'gebruik een aangepaste oogkleur'. Dat is geen kleur die mij bekent is. +Die kleur ken ik niet. Als je de R G B waardes kent dan kun je zeggen 'gebruik een aangepaste oogkleur'. \ No newline at end of file diff --git a/locale/nl-nl/color.not.found.dialog b/locale/nl-NL/color.not.found.dialog similarity index 90% rename from locale/nl-nl/color.not.found.dialog rename to locale/nl-NL/color.not.found.dialog index 0f173f2..e13e6b8 100644 --- a/locale/nl-nl/color.not.found.dialog +++ b/locale/nl-NL/color.not.found.dialog @@ -1,3 +1,3 @@ -Sorry, die kleur is niet mogelijk. Probeer me te vragen een aangepaste kleur te gebruiken. Die kleur heb ik niet beschikbaar, maar ik kan aangepaste oogkleuren gebruiken. Mijn ogen kunnen niet in die kleur veranderen. Misschien zou je me moeten vragen een aangepaste oogkleur te gebruiken. +Sorry, die kleur is niet mogelijk. Probeer me te vragen een aangepaste kleur te gebruiken. \ No newline at end of file diff --git a/locale/nl-nl/colors.value b/locale/nl-NL/colors.value similarity index 100% rename from locale/nl-nl/colors.value rename to locale/nl-NL/colors.value diff --git a/locale/nl-nl/custom.eye.color.intent b/locale/nl-NL/custom.eye.color.intent similarity index 58% rename from locale/nl-nl/custom.eye.color.intent rename to locale/nl-NL/custom.eye.color.intent index 851ac8b..9c879cf 100644 --- a/locale/nl-nl/custom.eye.color.intent +++ b/locale/nl-NL/custom.eye.color.intent @@ -1,2 +1,2 @@ -(zet|stel) aangepaste oog(kleur|kleuren) (in)? (stel|verander) (op|in) (een)? aangepaste oog(kleur|kleuren) (in)? +(zet|stel) aangepaste oog(kleur|kleuren) (in)? \ No newline at end of file diff --git a/locale/nl-nl/error.rgbvalue.dialog b/locale/nl-NL/error.rgbvalue.dialog similarity index 52% rename from locale/nl-nl/error.rgbvalue.dialog rename to locale/nl-NL/error.rgbvalue.dialog index ee1394b..e491526 100644 --- a/locale/nl-nl/error.rgbvalue.dialog +++ b/locale/nl-NL/error.rgbvalue.dialog @@ -1,2 +1,2 @@ -Ik heb een nummer tussen 0 en 255 nodig De waarde moet tussen 0 en 255 (zijn|liggen) +Ik heb een nummer tussen 0 en 255 nodig \ No newline at end of file diff --git a/locale/nl-nl/error.set.color.dialog b/locale/nl-NL/error.set.color.dialog similarity index 57% rename from locale/nl-nl/error.set.color.dialog rename to locale/nl-NL/error.set.color.dialog index e885f28..c16eb97 100644 --- a/locale/nl-nl/error.set.color.dialog +++ b/locale/nl-NL/error.set.color.dialog @@ -1,2 +1,2 @@ -Sorry, het instellen van de kleur is fout gegaan. Het lijkt erop dat ik een fout kreeg bij het instellen van de kleur. +Sorry, het instellen van de kleur is fout gegaan. \ No newline at end of file diff --git a/locale/nl-nl/eye.color.intent b/locale/nl-NL/eye.color.intent similarity index 99% rename from locale/nl-nl/eye.color.intent rename to locale/nl-NL/eye.color.intent index ff1c5e9..4359697 100644 --- a/locale/nl-nl/eye.color.intent +++ b/locale/nl-NL/eye.color.intent @@ -1,6 +1,6 @@ (verander|stel) (de|jouw) oog(kleur|kleuren|) (naar|in|op) {color} (in)? -(verander|stel) (oog(kleur|kleuren|)|ogen) (naar|in|op) {color} (in)? -(verander|stel) oog(kleur|kleuren) (naar|in|op) iets {color} (in)? (verander|stel) (jouw)? ogen (naar|in|op) (een)? {color} (kleur)? (in)? +(verander|stel) (oog(kleur|kleuren|)|ogen) (naar|in|op) {color} (in)? (verander|stel) (oog|ogen) (naar|in|op) een {color} kleur (verander|stel) oog(kleur|kleuren) (in)? +(verander|stel) oog(kleur|kleuren) (naar|in|op) iets {color} (in)? \ No newline at end of file diff --git a/locale/nl-NL/get.b.value.dialog b/locale/nl-NL/get.b.value.dialog new file mode 100644 index 0000000..37c68c4 --- /dev/null +++ b/locale/nl-NL/get.b.value.dialog @@ -0,0 +1,2 @@ +Bijna klaar. Wat doen we met de blauw waarde? +Een laatste waarde tussen 0 en 255 voor blauw. \ No newline at end of file diff --git a/locale/nl-nl/get.g.value.dialog b/locale/nl-NL/get.g.value.dialog similarity index 50% rename from locale/nl-nl/get.g.value.dialog rename to locale/nl-NL/get.g.value.dialog index 4ded1eb..25e5cb5 100644 --- a/locale/nl-nl/get.g.value.dialog +++ b/locale/nl-NL/get.g.value.dialog @@ -1,2 +1,2 @@ -Nu heb ik nog een waarde voor groen nodig. Als volgende heb ik een groen waarde nodig. +Nu heb ik nog een waarde voor groen nodig. \ No newline at end of file diff --git a/locale/nl-nl/get.r.value.dialog b/locale/nl-NL/get.r.value.dialog similarity index 60% rename from locale/nl-nl/get.r.value.dialog rename to locale/nl-NL/get.r.value.dialog index f5ec65b..eac1e4e 100644 --- a/locale/nl-nl/get.r.value.dialog +++ b/locale/nl-NL/get.r.value.dialog @@ -1,2 +1,2 @@ Geef me alsjeblieft een waarde tussen 0 en 255 voor de rood component. -Geef me een waarde tussen 0 en 255 voor rood. +Geef me een waarde tussen 0 en 255 voor rood. \ No newline at end of file diff --git a/locale/nl-nl/set.color.success.dialog b/locale/nl-NL/set.color.success.dialog similarity index 69% rename from locale/nl-nl/set.color.success.dialog rename to locale/nl-NL/set.color.success.dialog index b6fbb3b..f130db5 100644 --- a/locale/nl-nl/set.color.success.dialog +++ b/locale/nl-NL/set.color.success.dialog @@ -1,3 +1,3 @@ -Te gek. Kijk eens naar mijn ogen. -Oke. Zie ik er zo beter uit? Dat is een goede kleur. Kijk nu eens naar mij. +Oke. Zie ik er zo beter uit? +Te gek. Kijk eens naar mijn ogen. \ No newline at end of file diff --git a/locale/nl-NL/set.custom.color.dialog b/locale/nl-NL/set.custom.color.dialog new file mode 100644 index 0000000..e1bc9a5 --- /dev/null +++ b/locale/nl-NL/set.custom.color.dialog @@ -0,0 +1 @@ +Mijn brein is ingesteld om R G B kleuren te begrijpen. \ No newline at end of file diff --git a/locale/nl-nl/get.b.value.dialog b/locale/nl-nl/get.b.value.dialog deleted file mode 100644 index 4ada368..0000000 --- a/locale/nl-nl/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Bijna klaar. Wat doen we met de blauw waarde? -Een laatste waarde tussen 0 en 255 voor blauw. diff --git a/locale/nl-nl/set.custom.color.dialog b/locale/nl-nl/set.custom.color.dialog deleted file mode 100644 index 7a3812d..0000000 --- a/locale/nl-nl/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Mijn brein is ingesteld om R G B kleuren te begrijpen. diff --git a/locale/pt-br/brightness.entity b/locale/pt-BR/brightness.entity similarity index 100% rename from locale/pt-br/brightness.entity rename to locale/pt-BR/brightness.entity diff --git a/locale/pt-br/brightness.error.dialog b/locale/pt-BR/brightness.error.dialog similarity index 71% rename from locale/pt-br/brightness.error.dialog rename to locale/pt-BR/brightness.error.dialog index bd1ea74..bd5ebba 100644 --- a/locale/pt-br/brightness.error.dialog +++ b/locale/pt-BR/brightness.error.dialog @@ -1 +1 @@ -Eu não entendo esse valor de brilho, me dê um valor de brilho entre 0 e 100 por cento. +Eu não entendo esse valor de brilho, me dê um valor de brilho entre 0 e 100 por cento. \ No newline at end of file diff --git a/locale/pt-br/brightness.intent b/locale/pt-BR/brightness.intent similarity index 79% rename from locale/pt-br/brightness.intent rename to locale/pt-BR/brightness.intent index 4dc1c8e..5eaf1d8 100644 --- a/locale/pt-br/brightness.intent +++ b/locale/pt-BR/brightness.intent @@ -1,13 +1,12 @@ -escureça (os|seus) olhos para {brightness} (porcento|) -escurecer para {brightness} (porcento|) -(reduza|abaixe) (o|a) (brilho|iluminação) dos seus olhos para {brightness} (porcento|) -mude (o|a) (brilho|iluminação) para {brightness} (porcento|) -mude (o|a) (brilho|iluminação) para {brightness} (porcento|) -ilumine (um pouco|) para {brightness} (porcento|) -(mude|altere|chaveie) para {brightness} (porcento|) (o|a) (brilho|iluminação) (dos|) (olhos|) (mudar|definir|trocar) (o|seu) (nível) de (brilho|iluminação) do (olho|) para {brightness} (por cento|) -(mudar|definir|trocar) (o|seu) (nível|) (de|) (brilho|iluminação) (do|) (olho|) -você está (muito|) (brilhante|escuro) -você está com brilho (muito|) (fraco|forte) +(mudar|definir|trocar) (o|seu) (nível|) (de|) (brilho|iluminação) (do|) (olho|) +(mude|altere|chaveie) para {brightness} (porcento|) (o|a) (brilho|iluminação) (dos|) (olhos|) +(reduza|abaixe) (o|a) (brilho|iluminação) dos seus olhos para {brightness} (porcento|) aumente o brilho diminua um pouco +escurecer para {brightness} (porcento|) +escureça (os|seus) olhos para {brightness} (porcento|) +ilumine (um pouco|) para {brightness} (porcento|) +mude (o|a) (brilho|iluminação) para {brightness} (porcento|) +você está (muito|) (brilhante|escuro) +você está com brilho (muito|) (fraco|forte) \ No newline at end of file diff --git a/locale/pt-br/brightness.levels.value b/locale/pt-BR/brightness.levels.value similarity index 100% rename from locale/pt-br/brightness.levels.value rename to locale/pt-BR/brightness.levels.value diff --git a/locale/pt-br/brightness.not.found.dialog b/locale/pt-BR/brightness.not.found.dialog similarity index 50% rename from locale/pt-br/brightness.not.found.dialog rename to locale/pt-BR/brightness.not.found.dialog index 1e96360..01f75ed 100644 --- a/locale/pt-br/brightness.not.found.dialog +++ b/locale/pt-BR/brightness.not.found.dialog @@ -1,2 +1,2 @@ Diga-me uma porcentagem ou nível de brilho para meu rosto -Qual o nível ou porcentagem de brilho que você gostaria? +Qual o nível ou porcentagem de brilho que você gostaria? \ No newline at end of file diff --git a/locale/pt-br/brightness.not.found.final.dialog b/locale/pt-BR/brightness.not.found.final.dialog similarity index 50% rename from locale/pt-br/brightness.not.found.final.dialog rename to locale/pt-BR/brightness.not.found.final.dialog index 9013e6c..7522ec0 100644 --- a/locale/pt-br/brightness.not.found.final.dialog +++ b/locale/pt-BR/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ Desculpe, eu não entendi esse nível de brilho. -Eu entendo apenas coisas como, 'máximo' ou 50% +Eu entendo apenas coisas como, 'máximo' ou 50% \ No newline at end of file diff --git a/locale/pt-BR/brightness.set.dialog b/locale/pt-BR/brightness.set.dialog new file mode 100644 index 0000000..fa66239 --- /dev/null +++ b/locale/pt-BR/brightness.set.dialog @@ -0,0 +1,2 @@ +Ok, definindo brilho para {val}. +Parece bom, definindo brilho para {val} \ No newline at end of file diff --git a/locale/pt-br/color.entity b/locale/pt-BR/color.entity similarity index 100% rename from locale/pt-br/color.entity rename to locale/pt-BR/color.entity diff --git a/locale/pt-br/color.need.dialog b/locale/pt-BR/color.need.dialog similarity index 61% rename from locale/pt-br/color.need.dialog rename to locale/pt-BR/color.need.dialog index 90f3d8c..7871e8b 100644 --- a/locale/pt-br/color.need.dialog +++ b/locale/pt-BR/color.need.dialog @@ -1,3 +1,3 @@ -Qual a cor que você gostaria de usar? -Qual cor você gostaria que meus olhos fossem? Diga o nome de uma cor para testar. +Qual a cor que você gostaria de usar? +Qual cor você gostaria que meus olhos fossem? \ No newline at end of file diff --git a/locale/pt-br/color.not.exist.dialog b/locale/pt-BR/color.not.exist.dialog similarity index 68% rename from locale/pt-br/color.not.exist.dialog rename to locale/pt-BR/color.not.exist.dialog index 5747ea6..6e67b5c 100644 --- a/locale/pt-br/color.not.exist.dialog +++ b/locale/pt-BR/color.not.exist.dialog @@ -1,2 +1,2 @@ -Eu não conheço essa cor. Se você souber os valores R G H, você pode dizer "definir uma cor de olhos personalizada" Essa não é uma cor com que eu esteja familiarizado. +Eu não conheço essa cor. Se você souber os valores R G H, você pode dizer "definir uma cor de olhos personalizada" \ No newline at end of file diff --git a/locale/pt-br/color.not.found.dialog b/locale/pt-BR/color.not.found.dialog similarity index 84% rename from locale/pt-br/color.not.found.dialog rename to locale/pt-BR/color.not.found.dialog index 122c5de..b84406f 100644 --- a/locale/pt-br/color.not.found.dialog +++ b/locale/pt-BR/color.not.found.dialog @@ -1,3 +1,3 @@ Desculpe, essa cor não é uma opção. Tente me pedir para definir uma cor de olhos personalizada. Eu não tenho essa cor disponível, mas eu posso definir cor de olhos personalizada. -Meus olhos não podem ficar dessa cor. Talvez devesse me pedir para definir uma cor de olhos personalizada. +Meus olhos não podem ficar dessa cor. Talvez devesse me pedir para definir uma cor de olhos personalizada. \ No newline at end of file diff --git a/locale/pt-br/colors.value b/locale/pt-BR/colors.value similarity index 100% rename from locale/pt-br/colors.value rename to locale/pt-BR/colors.value diff --git a/locale/pt-br/custom.eye.color.intent b/locale/pt-BR/custom.eye.color.intent similarity index 56% rename from locale/pt-br/custom.eye.color.intent rename to locale/pt-BR/custom.eye.color.intent index d5bbc03..d6d800e 100644 --- a/locale/pt-br/custom.eye.color.intent +++ b/locale/pt-BR/custom.eye.color.intent @@ -1,2 +1,2 @@ -definir (cor|cores) (de|dos) olhos personalizada (definir|mudar) para (uma|) (cor|cores) de olhos personalizada +definir (cor|cores) (de|dos) olhos personalizada \ No newline at end of file diff --git a/locale/pt-br/error.rgbvalue.dialog b/locale/pt-BR/error.rgbvalue.dialog similarity index 54% rename from locale/pt-br/error.rgbvalue.dialog rename to locale/pt-BR/error.rgbvalue.dialog index 27db372..127a65e 100644 --- a/locale/pt-br/error.rgbvalue.dialog +++ b/locale/pt-BR/error.rgbvalue.dialog @@ -1,2 +1,2 @@ Eu preciso de um número entre 0 e 255 -O valor deve estar entre 0 e 255 +O valor deve estar entre 0 e 255 \ No newline at end of file diff --git a/locale/pt-BR/error.set.color.dialog b/locale/pt-BR/error.set.color.dialog new file mode 100644 index 0000000..1fab8d3 --- /dev/null +++ b/locale/pt-BR/error.set.color.dialog @@ -0,0 +1,2 @@ +Desculpe, houve um erro ao definir a cor +Parece que eu tive um erro tentando definir a cor \ No newline at end of file diff --git a/locale/pt-br/eye.color.intent b/locale/pt-BR/eye.color.intent similarity index 84% rename from locale/pt-br/eye.color.intent rename to locale/pt-BR/eye.color.intent index f714426..127fdd2 100644 --- a/locale/pt-br/eye.color.intent +++ b/locale/pt-BR/eye.color.intent @@ -1,6 +1,6 @@ -(mudar|definir) (a|sua|as|suas) (cor|cores) de (olho|olhos) para {color} -(mudar|definir) (a|as|)(cor|cores) de (olho|olhos) para {color} (alterar|definir) (a|as) (cor|cores) dos olhos para algo (como|) {color} -(mudar|definir) (seus|) olhos para (uma|) (cor|) {color} -(mudar|definir) (olho|olhos) para (uma|) cor {color} +(mudar|definir) (a|as|)(cor|cores) de (olho|olhos) para {color} +(mudar|definir) (a|sua|as|suas) (cor|cores) de (olho|olhos) para {color} (mudar|definir) (cor|cores) dos olhos +(mudar|definir) (olho|olhos) para (uma|) cor {color} +(mudar|definir) (seus|) olhos para (uma|) (cor|) {color} \ No newline at end of file diff --git a/locale/pt-BR/get.b.value.dialog b/locale/pt-BR/get.b.value.dialog new file mode 100644 index 0000000..acbc002 --- /dev/null +++ b/locale/pt-BR/get.b.value.dialog @@ -0,0 +1,2 @@ +Quase lá. Quanto será o valor azul? +Um último número entre 0 e 255 para o azul \ No newline at end of file diff --git a/locale/pt-br/get.g.value.dialog b/locale/pt-BR/get.g.value.dialog similarity index 50% rename from locale/pt-br/get.g.value.dialog rename to locale/pt-BR/get.g.value.dialog index 298034e..805d1f8 100644 --- a/locale/pt-br/get.g.value.dialog +++ b/locale/pt-BR/get.g.value.dialog @@ -1,2 +1,2 @@ Agora eu preciso de outro valor para o verde -Em seguida eu preciso do valor para o verde +Em seguida eu preciso do valor para o verde \ No newline at end of file diff --git a/locale/pt-br/get.r.value.dialog b/locale/pt-BR/get.r.value.dialog similarity index 97% rename from locale/pt-br/get.r.value.dialog rename to locale/pt-BR/get.r.value.dialog index f3085f0..b35f3eb 100644 --- a/locale/pt-br/get.r.value.dialog +++ b/locale/pt-BR/get.r.value.dialog @@ -1,2 +1,2 @@ -Por favor me dê um valor entre 0 e 255 para a componente vermelho Me diga um valor entre 0 e 255 para o vermelho +Por favor me dê um valor entre 0 e 255 para a componente vermelho \ No newline at end of file diff --git a/locale/pt-br/set.color.success.dialog b/locale/pt-BR/set.color.success.dialog similarity index 68% rename from locale/pt-br/set.color.success.dialog rename to locale/pt-BR/set.color.success.dialog index 531b39b..fef3baa 100644 --- a/locale/pt-br/set.color.success.dialog +++ b/locale/pt-BR/set.color.success.dialog @@ -1,3 +1,3 @@ -Legal. Veja os meus olhos. -Ok. Eu pareço melhor agora? Essa é uma boa cor. Me olhe agora. +Legal. Veja os meus olhos. +Ok. Eu pareço melhor agora? \ No newline at end of file diff --git a/locale/pt-BR/set.custom.color.dialog b/locale/pt-BR/set.custom.color.dialog new file mode 100644 index 0000000..cad3a25 --- /dev/null +++ b/locale/pt-BR/set.custom.color.dialog @@ -0,0 +1 @@ +Meu cérebro está projetado para entender cores em R G B. \ No newline at end of file diff --git a/locale/pt-br/brightness.set.dialog b/locale/pt-br/brightness.set.dialog deleted file mode 100644 index c5e037c..0000000 --- a/locale/pt-br/brightness.set.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Ok, definindo brilho para {val}. -Parece bom, definindo brilho para {val} diff --git a/locale/pt-br/error.set.color.dialog b/locale/pt-br/error.set.color.dialog deleted file mode 100644 index b4c42f9..0000000 --- a/locale/pt-br/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Desculpe, houve um erro ao definir a cor -Parece que eu tive um erro tentando definir a cor diff --git a/locale/pt-br/get.b.value.dialog b/locale/pt-br/get.b.value.dialog deleted file mode 100644 index 0eea631..0000000 --- a/locale/pt-br/get.b.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Quase lá. Quanto será o valor azul? -Um último número entre 0 e 255 para o azul diff --git a/locale/pt-br/set.custom.color.dialog b/locale/pt-br/set.custom.color.dialog deleted file mode 100644 index 1dcf9cd..0000000 --- a/locale/pt-br/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Meu cérebro está projetado para entender cores em R G B. diff --git a/locale/ru-ru/brightness.entity b/locale/ru-RU/brightness.entity similarity index 100% rename from locale/ru-ru/brightness.entity rename to locale/ru-RU/brightness.entity diff --git a/locale/ru-ru/brightness.error.dialog b/locale/ru-RU/brightness.error.dialog similarity index 83% rename from locale/ru-ru/brightness.error.dialog rename to locale/ru-RU/brightness.error.dialog index 558c39a..f6a733d 100644 --- a/locale/ru-ru/brightness.error.dialog +++ b/locale/ru-RU/brightness.error.dialog @@ -1 +1 @@ -Я не понимаю какое значение яркости, скажи мне значение яркости от 0 до 100 процентов. +Я не понимаю какое значение яркости, скажи мне значение яркости от 0 до 100 процентов. \ No newline at end of file diff --git a/locale/ru-ru/brightness.intent b/locale/ru-RU/brightness.intent similarity index 90% rename from locale/ru-ru/brightness.intent rename to locale/ru-RU/brightness.intent index 37f8b42..6da44ca 100644 --- a/locale/ru-ru/brightness.intent +++ b/locale/ru-RU/brightness.intent @@ -1,13 +1,12 @@ -затемни ( | твои) глаза {brightness} (процент) -затемни на {brightness} (процент) -уменьши (яркость | освещение) твоих глаз до {brightness} (в процентах |) +(измени|установи|смени) ((уровень|) (яркость|иллюминацию) (|твоих) (глаз|) на {brightness} (процентов|() +(измени|установи|смени) на {brightness} (процент|) (глаз|) (яркости|иллюминации) (поменяй |) (яркость | подсветку) (вниз | вверх | ) до {brightness} (в процентах |) (уменьши | увеличь) (яркость | подсветку) (вниз | вверх | ) до {brightness} (процентов |) -увеличь яркость до {brightness} -(измени|установи|смени) на {brightness} (процент|) (глаз|) (яркости|иллюминации) -(измени|установи|смени) ((уровень|) (яркость|иллюминацию) (|твоих) (глаз|) на {brightness} (процентов|() -измени уровень яркости своих глаз Ты слишком (яркий|тусклый) -Ты слишком (яркий|тусклый) -сделай ярче +затемни ( | твои) глаза {brightness} (процент) +затемни на {brightness} (процент) +измени уровень яркости своих глаз сделай тусклым +сделай ярче +увеличь яркость до {brightness} +уменьши (яркость | освещение) твоих глаз до {brightness} (в процентах |) \ No newline at end of file diff --git a/locale/ru-ru/brightness.levels.value b/locale/ru-RU/brightness.levels.value similarity index 100% rename from locale/ru-ru/brightness.levels.value rename to locale/ru-RU/brightness.levels.value diff --git a/locale/ru-ru/brightness.not.found.dialog b/locale/ru-RU/brightness.not.found.dialog similarity index 79% rename from locale/ru-ru/brightness.not.found.dialog rename to locale/ru-RU/brightness.not.found.dialog index b2c7295..6657568 100644 --- a/locale/ru-ru/brightness.not.found.dialog +++ b/locale/ru-RU/brightness.not.found.dialog @@ -1,2 +1,2 @@ -Скажите мне процент или уровень яркости для моего лица Какой уровень яркости или процент вы хотите? +Скажите мне процент или уровень яркости для моего лица \ No newline at end of file diff --git a/locale/ru-ru/brightness.not.found.final.dialog b/locale/ru-RU/brightness.not.found.final.dialog similarity index 84% rename from locale/ru-ru/brightness.not.found.final.dialog rename to locale/ru-RU/brightness.not.found.final.dialog index a3565da..0cf0a42 100644 --- a/locale/ru-ru/brightness.not.found.final.dialog +++ b/locale/ru-RU/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ Извините, я не понимаю эту яркость. -Я понимаю только такие вещи, как «полный» или 50% +Я понимаю только такие вещи, как «полный» или 50% \ No newline at end of file diff --git a/locale/ru-ru/brightness.set.dialog b/locale/ru-RU/brightness.set.dialog similarity index 55% rename from locale/ru-ru/brightness.set.dialog rename to locale/ru-RU/brightness.set.dialog index 614d89c..6244489 100644 --- a/locale/ru-ru/brightness.set.dialog +++ b/locale/ru-RU/brightness.set.dialog @@ -1,2 +1,2 @@ -Хорошо, установил яркость на {val}. Звучит неплохо, установка яркости на {val} +Хорошо, установил яркость на {val}. \ No newline at end of file diff --git a/locale/ru-ru/color.entity b/locale/ru-RU/color.entity similarity index 100% rename from locale/ru-ru/color.entity rename to locale/ru-RU/color.entity diff --git a/locale/ru-ru/color.need.dialog b/locale/ru-RU/color.need.dialog similarity index 94% rename from locale/ru-ru/color.need.dialog rename to locale/ru-RU/color.need.dialog index 1cbf989..aa35bf3 100644 --- a/locale/ru-ru/color.need.dialog +++ b/locale/ru-RU/color.need.dialog @@ -1,3 +1,3 @@ -Какой цвет вы хотели бы использовать? Какого цвета вы бы хотели, чтобы были мои глаза ? -Назовите цвет, который нужно попробовать. +Какой цвет вы хотели бы использовать? +Назовите цвет, который нужно попробовать. \ No newline at end of file diff --git a/locale/ru-ru/color.not.exist.dialog b/locale/ru-RU/color.not.exist.dialog similarity index 96% rename from locale/ru-ru/color.not.exist.dialog rename to locale/ru-RU/color.not.exist.dialog index 09fd303..ecdc3bb 100644 --- a/locale/ru-ru/color.not.exist.dialog +++ b/locale/ru-RU/color.not.exist.dialog @@ -1,2 +1,2 @@ -Я не знаю этого цвета. Если вы знаете значения R G B, вы можете сказать «установить пользовательский цвет глаз». Это не тот цвет, с которым я знаком. +Я не знаю этого цвета. Если вы знаете значения R G B, вы можете сказать «установить пользовательский цвет глаз». \ No newline at end of file diff --git a/locale/ru-ru/color.not.found.dialog b/locale/ru-RU/color.not.found.dialog similarity index 98% rename from locale/ru-ru/color.not.found.dialog rename to locale/ru-RU/color.not.found.dialog index 2266908..6231d15 100644 --- a/locale/ru-ru/color.not.found.dialog +++ b/locale/ru-RU/color.not.found.dialog @@ -1,3 +1,3 @@ К сожалению, этот цвет не один из вариантов. Попробуйте попросить меня установить пользовательский цвет глаз. -У меня нет такого цвета, но я могу настроить пользовательские цвета глаз. Мои глаза не могут перейти в этот цвет. Возможно, вам стоит попросить меня установить пользовательскиий цвет глаз. +У меня нет такого цвета, но я могу настроить пользовательские цвета глаз. \ No newline at end of file diff --git a/locale/ru-ru/colors.value b/locale/ru-RU/colors.value similarity index 100% rename from locale/ru-ru/colors.value rename to locale/ru-RU/colors.value diff --git a/locale/ru-ru/custom.eye.color.intent b/locale/ru-RU/custom.eye.color.intent similarity index 87% rename from locale/ru-ru/custom.eye.color.intent rename to locale/ru-RU/custom.eye.color.intent index 6b37c6d..95ecc26 100644 --- a/locale/ru-ru/custom.eye.color.intent +++ b/locale/ru-RU/custom.eye.color.intent @@ -1,2 +1,2 @@ -установить пользовательский (цвет | цвета) глаз (установить | изменить) пользовательский (цвет | цвета) глаз +установить пользовательский (цвет | цвета) глаз \ No newline at end of file diff --git a/locale/ru-RU/error.rgbvalue.dialog b/locale/ru-RU/error.rgbvalue.dialog new file mode 100644 index 0000000..5f5bb18 --- /dev/null +++ b/locale/ru-RU/error.rgbvalue.dialog @@ -0,0 +1,2 @@ +Мне нужно число от 0 до 255 +Число должно быть от 0 до 255 \ No newline at end of file diff --git a/locale/ru-ru/error.set.color.dialog b/locale/ru-RU/error.set.color.dialog similarity index 75% rename from locale/ru-ru/error.set.color.dialog rename to locale/ru-RU/error.set.color.dialog index 9a7aecf..a344f1a 100644 --- a/locale/ru-ru/error.set.color.dialog +++ b/locale/ru-RU/error.set.color.dialog @@ -1,2 +1,2 @@ Извините, произошла ошибка установки цвета. -Похоже, произошла ошибка, пока я пы пытался установить цвет. +Похоже, произошла ошибка, пока я пы пытался установить цвет. \ No newline at end of file diff --git a/locale/ru-ru/eye.color.intent b/locale/ru-RU/eye.color.intent similarity index 83% rename from locale/ru-ru/eye.color.intent rename to locale/ru-RU/eye.color.intent index 6e63c7e..92d30b7 100644 --- a/locale/ru-ru/eye.color.intent +++ b/locale/ru-RU/eye.color.intent @@ -1,7 +1,7 @@ -измени цвет своих глаз на {color} -установи цвет глаз на {color} (изменить | установить) (цвет | цвета) глаз на что-то {color} -сделай свои глаза цвета {color} -(изменить | установить) глаза на цвет {color} -установи цвет глаз на {color} цвет +(изменить | установить) глаза на цвет {color} +измени цвет своих глаз на {color} поменяй цвет глаз +сделай свои глаза цвета {color} +установи цвет глаз на {color} +установи цвет глаз на {color} цвет \ No newline at end of file diff --git a/locale/ru-ru/get.b.value.dialog b/locale/ru-RU/get.b.value.dialog similarity index 83% rename from locale/ru-ru/get.b.value.dialog rename to locale/ru-RU/get.b.value.dialog index 0fcf381..a71383a 100644 --- a/locale/ru-ru/get.b.value.dialog +++ b/locale/ru-RU/get.b.value.dialog @@ -1,2 +1,2 @@ -Почти закончили. - Как насчет числа для голубого? Последнее число от 0 до 255 для синего +Почти закончили. - Как насчет числа для голубого? \ No newline at end of file diff --git a/locale/ru-RU/get.g.value.dialog b/locale/ru-RU/get.g.value.dialog new file mode 100644 index 0000000..e440b81 --- /dev/null +++ b/locale/ru-RU/get.g.value.dialog @@ -0,0 +1 @@ +Теперь мне нужно число для зеленого \ No newline at end of file diff --git a/locale/ru-ru/get.r.value.dialog b/locale/ru-RU/get.r.value.dialog similarity index 95% rename from locale/ru-ru/get.r.value.dialog rename to locale/ru-RU/get.r.value.dialog index 149aeaf..6c91a06 100644 --- a/locale/ru-ru/get.r.value.dialog +++ b/locale/ru-RU/get.r.value.dialog @@ -1,2 +1,2 @@ Пожалуйста, дайте мне значение от 0 до 255 для красного компонента -Скажите мне число от 0 до 255 для красного +Скажите мне число от 0 до 255 для красного \ No newline at end of file diff --git a/locale/ru-ru/set.color.success.dialog b/locale/ru-RU/set.color.success.dialog similarity index 62% rename from locale/ru-ru/set.color.success.dialog rename to locale/ru-RU/set.color.success.dialog index 448ca56..95f75a3 100644 --- a/locale/ru-ru/set.color.success.dialog +++ b/locale/ru-RU/set.color.success.dialog @@ -1,3 +1,3 @@ Круто. Посмотри мне в глаза. Хорошо. Теперь я выгляжу лучше? -Это хороший цвет. Посмотри на меня. +Это хороший цвет. Посмотри на меня. \ No newline at end of file diff --git a/locale/ru-ru/set.custom.color.dialog b/locale/ru-RU/set.custom.color.dialog similarity index 87% rename from locale/ru-ru/set.custom.color.dialog rename to locale/ru-RU/set.custom.color.dialog index 29e6f8a..531cc81 100644 --- a/locale/ru-ru/set.custom.color.dialog +++ b/locale/ru-RU/set.custom.color.dialog @@ -1 +1 @@ -Мой мозг споспобен понимать цвета в R G B. +Мой мозг споспобен понимать цвета в R G B. \ No newline at end of file diff --git a/locale/ru-ru/error.rgbvalue.dialog b/locale/ru-ru/error.rgbvalue.dialog deleted file mode 100644 index bd2c717..0000000 --- a/locale/ru-ru/error.rgbvalue.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Мне нужно число от 0 до 255 -Число должно быть от 0 до 255 diff --git a/locale/ru-ru/get.g.value.dialog b/locale/ru-ru/get.g.value.dialog deleted file mode 100644 index 32daa56..0000000 --- a/locale/ru-ru/get.g.value.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Теперь мне нужно число для зеленого -Теперь мне нужно число для зеленого diff --git a/locale/sv-se/brightness.entity b/locale/sv-SE/brightness.entity similarity index 100% rename from locale/sv-se/brightness.entity rename to locale/sv-SE/brightness.entity diff --git a/locale/sv-se/brightness.error.dialog b/locale/sv-SE/brightness.error.dialog similarity index 78% rename from locale/sv-se/brightness.error.dialog rename to locale/sv-SE/brightness.error.dialog index d1e4083..1b397b9 100644 --- a/locale/sv-se/brightness.error.dialog +++ b/locale/sv-SE/brightness.error.dialog @@ -1 +1 @@ -Jag förstår inte ljusstyrkevärdet, ge mig ett värde mellan 0 och 100 procent. +Jag förstår inte ljusstyrkevärdet, ge mig ett värde mellan 0 och 100 procent. \ No newline at end of file diff --git a/locale/sv-se/brightness.intent b/locale/sv-SE/brightness.intent similarity index 77% rename from locale/sv-se/brightness.intent rename to locale/sv-SE/brightness.intent index e3a073a..be23627 100644 --- a/locale/sv-se/brightness.intent +++ b/locale/sv-SE/brightness.intent @@ -1,13 +1,11 @@ -dimma (dina|) (ögon|ögonen) till {brightness} (percent|) -dimma ner till {brightness} (percent|) -sänk ljusstyrkan på dina ögon till {brightness} (percent|) -(sätt|ställ) (ner|upp) (ljusstyrkan|belysningen) till {brightness} (percent|) +(byt|sätt) (ljusstyrkan|ljusheten|styrkan|ljusnivån) på dina ögon (sätt|ställ) (ner|upp) (ljusstyrkan|belysningen) till {brightness} (percent|) -öka ljusstyrkan (lite|) till {brightness} (procent|) -(ändra|ställ in|byt) till {brightness} (percent|) (ändra|ställ in| byt) (ljus|ljushet|styrka|styrkenivå) (på dina ögon|på ögonen|) till {brightness} (procent|) -(byt|sätt) (ljusstyrkan|ljusheten|styrkan|ljusnivån) på dina ögon -du är för (ljus|mörk) -du är för (ljus|mörk) +(ändra|ställ in|byt) till {brightness} (percent|) bli ljusare +dimma (dina|) (ögon|ögonen) till {brightness} (percent|) +dimma ner till {brightness} (percent|) +du är för (ljus|mörk) sänk ljusstyrkan (en aning|lite) +sänk ljusstyrkan på dina ögon till {brightness} (percent|) +öka ljusstyrkan (lite|) till {brightness} (procent|) \ No newline at end of file diff --git a/locale/sv-se/brightness.levels.value b/locale/sv-SE/brightness.levels.value similarity index 100% rename from locale/sv-se/brightness.levels.value rename to locale/sv-SE/brightness.levels.value diff --git a/locale/sv-SE/brightness.not.found.dialog b/locale/sv-SE/brightness.not.found.dialog new file mode 100644 index 0000000..396feb2 --- /dev/null +++ b/locale/sv-SE/brightness.not.found.dialog @@ -0,0 +1,2 @@ +Säg ljusnivå i procent för mitt ansikte +Vilken ljusstyrkenivå eller procentsats önskas? \ No newline at end of file diff --git a/locale/sv-se/brightness.not.found.final.dialog b/locale/sv-SE/brightness.not.found.final.dialog similarity index 51% rename from locale/sv-se/brightness.not.found.final.dialog rename to locale/sv-SE/brightness.not.found.final.dialog index ff332b7..e4a1fff 100644 --- a/locale/sv-se/brightness.not.found.final.dialog +++ b/locale/sv-SE/brightness.not.found.final.dialog @@ -1,2 +1,2 @@ -Jag är ledsen, jag förstår inte den ljusstyrkan Jag förstår bara saker som, 'full' eller 50 procent +Jag är ledsen, jag förstår inte den ljusstyrkan \ No newline at end of file diff --git a/locale/sv-se/brightness.set.dialog b/locale/sv-SE/brightness.set.dialog similarity index 53% rename from locale/sv-se/brightness.set.dialog rename to locale/sv-SE/brightness.set.dialog index 2f44609..1916b21 100644 --- a/locale/sv-se/brightness.set.dialog +++ b/locale/sv-SE/brightness.set.dialog @@ -1,2 +1,2 @@ -Okej, sätter ljusstyrkan till {val}. Låter fint, sätter ljusstyrkan till {val} +Okej, sätter ljusstyrkan till {val}. \ No newline at end of file diff --git a/locale/sv-se/color.entity b/locale/sv-SE/color.entity similarity index 100% rename from locale/sv-se/color.entity rename to locale/sv-SE/color.entity diff --git a/locale/sv-se/color.need.dialog b/locale/sv-SE/color.need.dialog similarity index 54% rename from locale/sv-se/color.need.dialog rename to locale/sv-SE/color.need.dialog index 6e94b74..877c186 100644 --- a/locale/sv-se/color.need.dialog +++ b/locale/sv-SE/color.need.dialog @@ -1,3 +1,3 @@ -Vilken färg vill du använda -vilken färg vill du att mina ögon ska vara? Säg en färg att prova. +Vilken färg vill du använda +vilken färg vill du att mina ögon ska vara? \ No newline at end of file diff --git a/locale/sv-se/color.not.exist.dialog b/locale/sv-SE/color.not.exist.dialog similarity index 72% rename from locale/sv-se/color.not.exist.dialog rename to locale/sv-SE/color.not.exist.dialog index 67197de..507b578 100644 --- a/locale/sv-se/color.not.exist.dialog +++ b/locale/sv-SE/color.not.exist.dialog @@ -1,2 +1,2 @@ -Jag känner inte till den färgen. Om du kan R G B värdet kan du säga 'sätt en anpassad ögonfärg' Det är ingen färg jag är bekant med. +Jag känner inte till den färgen. Om du kan R G B värdet kan du säga 'sätt en anpassad ögonfärg' \ No newline at end of file diff --git a/locale/sv-se/color.not.found.dialog b/locale/sv-SE/color.not.found.dialog similarity index 88% rename from locale/sv-se/color.not.found.dialog rename to locale/sv-SE/color.not.found.dialog index 9a2c90c..2b89108 100644 --- a/locale/sv-se/color.not.found.dialog +++ b/locale/sv-SE/color.not.found.dialog @@ -1,3 +1,3 @@ -Ledsen men den färgen är inte valbar. Försök be mig om en anpassad ögonfärg. Jag har inte den färgen tillgänglig, men jag kan ställa in anpassade ögonfärger. -Mina ögon kan inte bli den färgen. Du kan kanske be mig ställa in en anpassad ögonfärg. +Ledsen men den färgen är inte valbar. Försök be mig om en anpassad ögonfärg. +Mina ögon kan inte bli den färgen. Du kan kanske be mig ställa in en anpassad ögonfärg. \ No newline at end of file diff --git a/locale/sv-se/colors.value b/locale/sv-SE/colors.value similarity index 100% rename from locale/sv-se/colors.value rename to locale/sv-SE/colors.value diff --git a/locale/sv-se/custom.eye.color.intent b/locale/sv-SE/custom.eye.color.intent similarity index 54% rename from locale/sv-se/custom.eye.color.intent rename to locale/sv-SE/custom.eye.color.intent index 55a1e0c..1f5ed80 100644 --- a/locale/sv-se/custom.eye.color.intent +++ b/locale/sv-SE/custom.eye.color.intent @@ -1,2 +1,2 @@ -(ställ in|sätt) anpassad ögonfärg (ställ in| byt till) en anpassad ögonfärg +(ställ in|sätt) anpassad ögonfärg \ No newline at end of file diff --git a/locale/sv-se/error.rgbvalue.dialog b/locale/sv-SE/error.rgbvalue.dialog similarity index 51% rename from locale/sv-se/error.rgbvalue.dialog rename to locale/sv-SE/error.rgbvalue.dialog index 71161b6..8296a49 100644 --- a/locale/sv-se/error.rgbvalue.dialog +++ b/locale/sv-SE/error.rgbvalue.dialog @@ -1,2 +1,2 @@ Jag behöver ett tal mellan 0 och 255 -Värdet måstevara mellan 0 och 255 +Värdet måstevara mellan 0 och 255 \ No newline at end of file diff --git a/locale/sv-SE/error.set.color.dialog b/locale/sv-SE/error.set.color.dialog new file mode 100644 index 0000000..be19902 --- /dev/null +++ b/locale/sv-SE/error.set.color.dialog @@ -0,0 +1,2 @@ +Det verkar som ett fel inträffade under inställning av färg +Tyvärr, ett fel inträffade när jag skulle ställa in färgen \ No newline at end of file diff --git a/locale/sv-se/eye.color.intent b/locale/sv-SE/eye.color.intent similarity index 85% rename from locale/sv-se/eye.color.intent rename to locale/sv-SE/eye.color.intent index 36318cf..69048f9 100644 --- a/locale/sv-se/eye.color.intent +++ b/locale/sv-SE/eye.color.intent @@ -1,6 +1,6 @@ -(byt|sätt|ställ in) (dina|din|) (ögonfärg|ögonfärger) till {color} -(byt|sätt|ställ in) (ögonfärg|ögonfärgen) till {color} -(byt|sätt|ställ in) (ögonfärg|ögonfärgen) till nånting (som|liknande) {color} (byt|sätt|ställ in) (dina|) (ögon|ögonen) till (en|) {color} (färg|) +(byt|sätt|ställ in) (dina|din|) (ögonfärg|ögonfärger) till {color} (byt|sätt|ställ in) (ögonen|ögonfärgen) till en {color} färg (byt|sätt|ställ in) (ögonfärg|ögonfärgen) +(byt|sätt|ställ in) (ögonfärg|ögonfärgen) till nånting (som|liknande) {color} +(byt|sätt|ställ in) (ögonfärg|ögonfärgen) till {color} \ No newline at end of file diff --git a/locale/sv-se/get.b.value.dialog b/locale/sv-SE/get.b.value.dialog similarity index 53% rename from locale/sv-se/get.b.value.dialog rename to locale/sv-SE/get.b.value.dialog index 7d64842..92001ae 100644 --- a/locale/sv-se/get.b.value.dialog +++ b/locale/sv-SE/get.b.value.dialog @@ -1,2 +1,2 @@ -Nästan klar nu. Vilket blå-värde? Ett sista tal mellan 0 och 255 för blått +Nästan klar nu. Vilket blå-värde? \ No newline at end of file diff --git a/locale/sv-se/get.g.value.dialog b/locale/sv-SE/get.g.value.dialog similarity index 56% rename from locale/sv-se/get.g.value.dialog rename to locale/sv-SE/get.g.value.dialog index b5ca3e4..d2b9e59 100644 --- a/locale/sv-se/get.g.value.dialog +++ b/locale/sv-SE/get.g.value.dialog @@ -1,2 +1,2 @@ -Nu behöver jag ett värde för grön Här näst behöver jag det önskade grönvärdet +Nu behöver jag ett värde för grön \ No newline at end of file diff --git a/locale/sv-se/get.r.value.dialog b/locale/sv-SE/get.r.value.dialog similarity index 94% rename from locale/sv-se/get.r.value.dialog rename to locale/sv-SE/get.r.value.dialog index 6d45e37..81a01f0 100644 --- a/locale/sv-se/get.r.value.dialog +++ b/locale/sv-SE/get.r.value.dialog @@ -1,2 +1,2 @@ -Var vänlig och ange ett värde mellan 0 och 255 för den röda delen Ange ett värde mellan 0 och 255 för röd +Var vänlig och ange ett värde mellan 0 och 255 för den röda delen \ No newline at end of file diff --git a/locale/sv-se/set.color.success.dialog b/locale/sv-SE/set.color.success.dialog similarity index 69% rename from locale/sv-se/set.color.success.dialog rename to locale/sv-SE/set.color.success.dialog index 4f72759..7f7f81d 100644 --- a/locale/sv-se/set.color.success.dialog +++ b/locale/sv-SE/set.color.success.dialog @@ -1,3 +1,3 @@ Coolt. Kolla in mina ögon. -Okey, Ser jag bättre ut nu? Det var en bra färg. Kolla in mig nu. +Okey, Ser jag bättre ut nu? \ No newline at end of file diff --git a/locale/sv-SE/set.custom.color.dialog b/locale/sv-SE/set.custom.color.dialog new file mode 100644 index 0000000..0210db2 --- /dev/null +++ b/locale/sv-SE/set.custom.color.dialog @@ -0,0 +1 @@ +Min hjärna är kopplad för att förstå färger i R G B. \ No newline at end of file diff --git a/locale/sv-se/brightness.not.found.dialog b/locale/sv-se/brightness.not.found.dialog deleted file mode 100644 index f88d8f8..0000000 --- a/locale/sv-se/brightness.not.found.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Säg ljusnivå i procent för mitt ansikte -Vilken ljusstyrkenivå eller procentsats önskas? diff --git a/locale/sv-se/error.set.color.dialog b/locale/sv-se/error.set.color.dialog deleted file mode 100644 index 1d7df15..0000000 --- a/locale/sv-se/error.set.color.dialog +++ /dev/null @@ -1,2 +0,0 @@ -Tyvärr, ett fel inträffade när jag skulle ställa in färgen -Det verkar som ett fel inträffade under inställning av färg diff --git a/locale/sv-se/set.custom.color.dialog b/locale/sv-se/set.custom.color.dialog deleted file mode 100644 index da561c3..0000000 --- a/locale/sv-se/set.custom.color.dialog +++ /dev/null @@ -1 +0,0 @@ -Min hjärna är kopplad för att förstå färger i R G B. diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} diff --git a/requirements.txt b/requirements.txt index 546d10c..bf48597 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -ovos-color-parser +ovos-color-parser>=0.0.8a1 +ovos-i2c-detection>=0.0.6a1 diff --git a/scripts/prepare_translations.py b/scripts/prepare_translations.py deleted file mode 100644 index 01a674d..0000000 --- a/scripts/prepare_translations.py +++ /dev/null @@ -1,53 +0,0 @@ -"""this script should run every time the contents of the locale folder change -except if PR originated from @gitlocalize-app -TODO - on commit to dev -""" - -import json -from os.path import dirname -import os - -locale = f"{dirname(dirname(__file__))}/locale" -tx = f"{dirname(dirname(__file__))}/translations" - - -for lang in os.listdir(locale): - intents = {} - dialogs = {} - vocs = {} - regexes = {} - for root, _, files in os.walk(f"{locale}/{lang}"): - b = root.split(f"/{lang}")[-1] - - for f in files: - if b: - fid = f"{b}/{f}" - else: - fid = f - with open(f"{root}/{f}") as fi: - strings = [l.replace("{{", "{").replace("}}", "}") - for l in fi.read().split("\n") if l.strip() - and not l.startswith("#")] - - if fid.endswith(".intent"): - intents[fid] = strings - elif fid.endswith(".dialog"): - dialogs[fid] = strings - elif fid.endswith(".voc"): - vocs[fid] = strings - elif fid.endswith(".rx"): - regexes[fid] = strings - - os.makedirs(f"{tx}/{lang.lower()}", exist_ok=True) - if intents: - with open(f"{tx}/{lang.lower()}/intents.json", "w") as f: - json.dump(intents, f, indent=4) - if dialogs: - with open(f"{tx}/{lang.lower()}/dialogs.json", "w") as f: - json.dump(dialogs, f, indent=4) - if vocs: - with open(f"{tx}/{lang.lower()}/vocabs.json", "w") as f: - json.dump(vocs, f, indent=4) - if regexes: - with open(f"{tx}/{lang.lower()}/regexes.json", "w") as f: - json.dump(regexes, f, indent=4) diff --git a/scripts/sync_translations.py b/scripts/sync_translations.py deleted file mode 100644 index 342b469..0000000 --- a/scripts/sync_translations.py +++ /dev/null @@ -1,78 +0,0 @@ -"""this script should run in every PR originated from @gitlocalize-app -TODO - before PR merge -""" - -import json -from os.path import dirname -import os - -locale = f"{dirname(dirname(__file__))}/locale" -tx = f"{dirname(dirname(__file__))}/translations" - - -for lang in os.listdir(tx): - intents = f"{tx}/{lang}/intents.json" - dialogs = f"{tx}/{lang}/dialogs.json" - vocs = f"{tx}/{lang}/vocabs.json" - regexes = f"{tx}/{lang}/regexes.json" - - if os.path.isfile(intents): - with open(intents) as f: - data = json.load(f) - for fid, samples in data.items(): - if samples: - samples = list(set([s.strip() for s in samples - if s and s.strip() != "[UNUSED]"])) # s may be None - if fid.startswith("/"): - p = f"{locale}/{lang.lower()}{fid}" - else: - p = f"{locale}/{lang.lower()}/{fid}" - os.makedirs(os.path.dirname(p), exist_ok=True) - with open(f"{locale}/{lang.lower()}/{fid}", "w") as f: - f.write("\n".join(sorted(samples))) - - if os.path.isfile(dialogs): - with open(dialogs) as f: - data = json.load(f) - for fid, samples in data.items(): - if samples: - samples = list(set([s.strip() for s in samples - if s and s.strip() != "[UNUSED]"])) # s may be None - if fid.startswith("/"): - p = f"{locale}/{lang.lower()}{fid}" - else: - p = f"{locale}/{lang.lower()}/{fid}" - os.makedirs(os.path.dirname(p), exist_ok=True) - with open(f"{locale}/{lang.lower()}/{fid}", "w") as f: - f.write("\n".join(sorted(samples))) - - if os.path.isfile(vocs): - with open(vocs) as f: - data = json.load(f) - for fid, samples in data.items(): - if samples: - samples = list(set([s.strip() for s in samples - if s and s.strip() != "[UNUSED]"])) # s may be None - if fid.startswith("/"): - p = f"{locale}/{lang.lower()}{fid}" - else: - p = f"{locale}/{lang.lower()}/{fid}" - os.makedirs(os.path.dirname(p), exist_ok=True) - with open(f"{locale}/{lang.lower()}/{fid}", "w") as f: - f.write("\n".join(sorted(samples))) - - if os.path.isfile(regexes): - with open(regexes) as f: - data = json.load(f) - for fid, samples in data.items(): - if samples: - samples = list(set([s.strip() for s in samples - if s and s.strip() != "[UNUSED]"])) # s may be None - if fid.startswith("/"): - p = f"{locale}/{lang.lower()}{fid}" - else: - p = f"{locale}/{lang.lower()}/{fid}" - os.makedirs(os.path.dirname(p), exist_ok=True) - with open(f"{locale}/{lang.lower()}/{fid}", "w") as f: - f.write("\n".join(sorted(samples))) - diff --git a/version.py b/version.py index 2416e7d..bdac248 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 0 -VERSION_BUILD = 0 -VERSION_ALPHA = 0 +VERSION_BUILD = 3 +VERSION_ALPHA = 2 # END_VERSION_BLOCK