12
12
def _ (arg ):
13
13
return arg
14
14
15
-
16
15
# Add-on information variables
17
16
addon_info = {
18
17
# add-on Name/identifier, internal for NVDA
@@ -57,7 +56,7 @@ def _(arg):
57
56
# pythonSources = ["addon/globalPlugins/*.py"]
58
57
# For more information on SCons Glob expressions please take a look at:
59
58
# https://scons.org/doc/production/HTML/scons-user/apd.html
60
- pythonSources = ["addon/globalPlugins/*.py" ]
59
+ pythonSources = []
61
60
62
61
# Files that contain strings for translation. Usually your python sources
63
62
i18nSources = pythonSources + ["buildVars.py" ]
@@ -69,6 +68,7 @@ def _(arg):
69
68
# Base language for the NVDA add-on
70
69
# If your add-on is written in a language other than english, modify this variable.
71
70
# For example, set baseLanguage to "es" if your add-on is primarily written in spanish.
71
+ # You must also edit .gitignore file to specify base language files to be ignored.
72
72
baseLanguage = "en"
73
73
74
74
# Markdown extensions for add-on documentation
@@ -77,3 +77,22 @@ def _(arg):
77
77
# Extensions string must be of the form "markdown.extensions.extensionName"
78
78
# e.g. "markdown.extensions.tables" to add tables.
79
79
markdownExtensions = []
80
+
81
+ # Custom braille translation tables
82
+ # If your add-on includes custom braille tables (most will not), fill out this dictionary.
83
+ # Each key is a dictionary named according to braille table file name,
84
+ # with keys inside recording the following attributes:
85
+ # displayName (name of the table shown to users and translatable),
86
+ # contracted (contracted (True) or uncontracted (False) braille code),
87
+ # output (shown in output table list),
88
+ # input (shown in input table list).
89
+ brailleTables = {}
90
+
91
+ # Custom speech symbol dictionaries
92
+ # Symbol dictionary files reside in the locale folder, e.g. `locale\en`, and are named `symbols-<name>.dic`.
93
+ # If your add-on includes custom speech symbol dictionaries (most will not), fill out this dictionary.
94
+ # Each key is the name of the dictionary,
95
+ # with keys inside recording the following attributes:
96
+ # displayName (name of the speech dictionary shown to users and translatable),
97
+ # mandatory (True when always enabled, False when not.
98
+ symbolDictionaries = {}
0 commit comments