-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added support for nvda NVDA 24.2. * updated the github workflow to include the body of the first header in the release description. * Updated the description to inform the user that the feature exists in NVDA, but this add-on adds improvements. * added spanish locale strings. * updated locale strings template.
- Loading branch information
Showing
10 changed files
with
226 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
permissions: | ||
contents: write | ||
name: Upload on new tags | ||
on: | ||
push: | ||
tags: | ||
['*'] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- run: echo -e "scons\nmarkdown">requirements.txt | ||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
cache: 'pip' | ||
- name: Install dependencies | ||
run: | | ||
pip install scons markdown | ||
sudo apt update | ||
sudo apt install gettext | ||
- name: Set add-on version from tag | ||
run: | | ||
import re | ||
with open("buildVars.py", 'r+', encoding='utf-8') as f: | ||
text = f.read() | ||
version = "${{ github.ref }}".split("/")[-1] | ||
text = re.sub('"addon_version" *:.*,', '"addon_version" : "%s",' % version, text) | ||
f.seek(0) | ||
f.write(text) | ||
f.truncate() | ||
shell: python | ||
|
||
- name: Build add-on | ||
run: scons | ||
- name: load latest changes from changelog | ||
run: awk '/^# / && !flag {flag=1; next} /^# / && flag {exit} flag && NF' changelog.md > newChanges.md | ||
- name: Calculate sha256 | ||
run: sha256sum *.nvda-addon >> newChanges.md | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: packaged_addon | ||
path: | | ||
./*.nvda-addon | ||
./newChanges.md | ||
upload_release: | ||
runs-on: ubuntu-latest | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
needs: ["build"] | ||
steps: | ||
- name: download releases files | ||
uses: actions/download-artifact@v3 | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
|
||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
body_path: packaged_addon/newChanges.md | ||
files: packaged_addon/*.nvda-addon | ||
fail_on_unmatched_files: true | ||
prerelease: ${{ contains(github.ref, '-') }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | ||
# This file is distributed under the same license as the 'EnhancedPhoneticReading' package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: 'EnhancedPhoneticReading' '1.1.3'\n" | ||
"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" | ||
"POT-Creation-Date: 2024-01-04 18:11-0600\n" | ||
"PO-Revision-Date: 2024-01-04 18:30-0600\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"X-Generator: Poedit 3.4.2\n" | ||
|
||
#. Translators: This is the label for the Enhanced phonetic reading settings category in NVDA Settings screen. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:88 | ||
msgid "Enhanced phonetic reading" | ||
msgstr "Lectura fonética mejorada" | ||
|
||
#. Translators: label for a checkbox option in the settings panel. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:93 | ||
msgid "&Enable delayed descriptions for characters" | ||
msgstr "&Habilitar descripciones retrasadas de caracteres" | ||
|
||
#. Translators: label for a edit field option in the settings panel. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:96 | ||
msgid "&Delay to announce character descriptions (in ms)" | ||
msgstr "&Retraso para anunciar descripciones de caracteres (en ms)" | ||
|
||
#. Translators: message spoken if the user enables or disables delayed character descriptions. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:115 | ||
#, python-format | ||
msgid "Delayed descriptions %s" | ||
msgstr "Descripciones retrasadas %s" | ||
|
||
#: addon\globalPlugins\enhancedPhoneticReading.py:115 | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:124 | ||
msgid "on" | ||
msgstr "Activado" | ||
|
||
#: addon\globalPlugins\enhancedPhoneticReading.py:115 | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:124 | ||
msgid "off" | ||
msgstr "Desactivado" | ||
|
||
#. Translators: input help message for a delayed character descriptions command. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:117 | ||
msgid "Toggles delayed character descriptions on or off" | ||
msgstr "Alterna la función de descripciones retrasadas de caracteres" | ||
|
||
#. Translators: message spoken if the user enables or disables instant character descriptions. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:124 | ||
#, python-format | ||
msgid "instant character descriptions %s" | ||
msgstr "descripciones instantáneas de caracteres %s" | ||
|
||
#. Translators: input help message for a Enhanced phonetic reading command. | ||
#: addon\globalPlugins\enhancedPhoneticReading.py:126 | ||
msgid "Toggles instant character descriptions on or off" | ||
msgstr "Activa o desactiva las descripciones instantáneas de caracteres" | ||
|
||
#. Add-on summary, usually the user visible name of the addon. | ||
#. Translators: Summary for this add-on to be shown on installation and add-on information. | ||
#: buildVars.py:17 | ||
msgid "Enhanced Phonetic Reading" | ||
msgstr "Lectura fonética mejorada" | ||
|
||
#. Add-on description | ||
#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager | ||
#: buildVars.py:20 | ||
msgid "" | ||
"This add-on improves the delaied phonetic reading of NVDA:\n" | ||
"\tallows you to set the delay to announce the description in ms, more " | ||
"customizable than the native feature.\n" | ||
"\tRead the character description instead of the current character. This " | ||
"feature must be enabled or disabled manually and will be deactivated when " | ||
"NVDA is closed." | ||
msgstr "" | ||
"Este complemento mejora el anunciado retrasado de descripción de " | ||
"caracteres de NVDA:\n" | ||
"\tle permite configurar el retraso para anunciar la descripción en ms, " | ||
"más personalizable que la característica nativa.\\n\n" | ||
"\\tLeer la descripción del carácter en lugar del carácter actual. Esta " | ||
"característica debe habilitarse o deshabilitarse manualmente y se " | ||
"desactivará cuando se cierre NVDA." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## Changes for 1.1.3 ## | ||
# version 24.1.1 | ||
|
||
* added support for nvda NVDA 24.2. | ||
* Updated the description to inform the user that the feature exists in NVDA, but this add-on adds improvements. | ||
* added spanish locale strings. | ||
|
||
# version 1.1.3 ## | ||
|
||
* Updated manifest to add compatibility with NVDA 2023.1. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.