diff --git a/CHANGELOG.md b/CHANGELOG.md index c2ef2ce..3ac2d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,16 @@ # Changelog -## [0.0.1a2](https://github.com/OpenVoiceOS/ovos-skill-screenshots/tree/0.0.1a2) (2024-11-18) +## [0.0.2a1](https://github.com/OpenVoiceOS/ovos-skill-screenshots/tree/0.0.2a1) (2024-11-18) -[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-screenshots/compare/903c886d1e6d5d67e1a4143acd7c24b2c8c5596c...0.0.1a2) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-screenshots/compare/V0.0.1...0.0.2a1) **Merged pull requests:** -- semver automations [\#2](https://github.com/OpenVoiceOS/ovos-skill-screenshots/pull/2) ([JarbasAl](https://github.com/JarbasAl)) -- feat: :tada: [\#1](https://github.com/OpenVoiceOS/ovos-skill-screenshots/pull/1) ([JarbasAl](https://github.com/JarbasAl)) +- pt-pt/translate [\#4](https://github.com/OpenVoiceOS/ovos-skill-screenshots/pull/4) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) + +## [V0.0.1](https://github.com/OpenVoiceOS/ovos-skill-screenshots/tree/V0.0.1) (2024-11-18) + +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-screenshots/compare/0.0.1...V0.0.1) diff --git a/README.md b/README.md index 50456ff..0c2f9f0 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Take screenshots by voice +![screen-124907-181124](https://github.com/user-attachments/assets/dde3b4ec-33f2-4f2c-a17f-2b8550c4cc81) + > **Supported platforms**: ovos-shell, Windows, macOS, Linux, and OpenBSD ## Examples diff --git a/locale/en-us/screenshot.failed.dialog b/locale/en-us/screenshot.failed.dialog index 95b7100..74442bd 100644 --- a/locale/en-us/screenshot.failed.dialog +++ b/locale/en-us/screenshot.failed.dialog @@ -1,2 +1,2 @@ -screenshot failed -I was unable to take the screenshot. \ No newline at end of file +I was unable to take the screenshot +screenshot failed \ No newline at end of file diff --git a/locale/en-us/take.screenshot.intent b/locale/en-us/take.screenshot.intent index 6c6d11d..30270b5 100644 --- a/locale/en-us/take.screenshot.intent +++ b/locale/en-us/take.screenshot.intent @@ -1,6 +1,6 @@ -take a screenshot -take screenshot capture the screen -screenshot the display -save a screenshot grab the screen +save a screenshot +screenshot the display +take a screenshot +take screenshot \ No newline at end of file diff --git a/locale/pt-PT/skill.json b/locale/pt-PT/skill.json new file mode 100644 index 0000000..9ad00ef --- /dev/null +++ b/locale/pt-PT/skill.json @@ -0,0 +1,10 @@ +{ + "examples": [ + "tirar captura de ecrã", + "tirar uma captura de ecrã", + "capturar a tela", + null, + "guardar uma captura de ecrã", + null + ] +} diff --git a/locale/pt-pt/screenshot.failed.dialog b/locale/pt-pt/screenshot.failed.dialog new file mode 100644 index 0000000..a48eb9e --- /dev/null +++ b/locale/pt-pt/screenshot.failed.dialog @@ -0,0 +1,2 @@ +Não consegui tirar a captura de ecrã +falha na captura de ecrã \ No newline at end of file diff --git a/locale/pt-pt/screenshot.taken.dialog b/locale/pt-pt/screenshot.taken.dialog new file mode 100644 index 0000000..8d3440e --- /dev/null +++ b/locale/pt-pt/screenshot.taken.dialog @@ -0,0 +1 @@ +captura de ecrã tirada \ No newline at end of file diff --git a/translations/pt-PT/dialogs.json b/translations/pt-PT/dialogs.json new file mode 100644 index 0000000..b00f087 --- /dev/null +++ b/translations/pt-PT/dialogs.json @@ -0,0 +1,9 @@ +{ + "screenshot.taken.dialog": [ + "captura de ecrã tirada" + ], + "screenshot.failed.dialog": [ + "falha na captura de ecrã", + "Não consegui tirar a captura de ecrã" + ] +} diff --git a/translations/pt-PT/intents.json b/translations/pt-PT/intents.json new file mode 100644 index 0000000..ec07e65 --- /dev/null +++ b/translations/pt-PT/intents.json @@ -0,0 +1,10 @@ +{ + "take.screenshot.intent": [ + "tirar captura de (ecrã|tela)", + "tirar uma captura de (ecrã|tela)", + "capturar (o ecrã|a tela)", + "captura de (ecrã|tela)", + "guardar uma captura de (ecrã|tela)", + null + ] +} diff --git a/version.py b/version.py index 76c4342..3d283ec 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 0 -VERSION_BUILD = 1 -VERSION_ALPHA = 0 +VERSION_BUILD = 2 +VERSION_ALPHA = 1 # END_VERSION_BLOCK