Skip to content

Commit c23c6f9

Browse files
authored
Merge 07cc58e into 6d67aa6
2 parents 6d67aa6 + 07cc58e commit c23c6f9

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

source/addonStore/models/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def getIncompatibleReason(
122122
# The addon relies on older, removed features of NVDA, an updated add-on is required.
123123
# The placeholder will be replaced with Year.Major.Minor (e.g. 2019.1).
124124
"An updated version of this add-on is required. "
125-
"This add-on was last tested with {lastTestedNVDAVersion}. "
125+
"This add-on was last tested with NVDA {lastTestedNVDAVersion}. "
126126
"NVDA requires this add-on to be tested with NVDA {nvdaVersion} or higher. "
127127
"You can enable this add-on at your own risk. "
128128
).format(

source/gui/addonStoreGui/controls/messageDialogs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ def _shouldInstallWhenAddonTooOldDialog(
157157
# because the add-on is too old for the running version of NVDA.
158158
"Warning: add-on is incompatible: {name} {version}. "
159159
"Check for an updated version of this add-on if possible. "
160-
"The last tested NVDA version for this add-on is {lastTestedNVDAVersion}, "
161-
"your current NVDA version is {NVDAVersion}. "
160+
"This add-on was last tested with NVDA {lastTestedNVDAVersion}. "
161+
"NVDA requires this add-on to be tested with NVDA {nvdaVersion} or higher. "
162162
"Installation may cause unstable behavior in NVDA.\n"
163163
"Proceed with installation anyway? "
164164
).format(
@@ -190,8 +190,8 @@ def _shouldEnableWhenAddonTooOldDialog(
190190
# because the add-on is too old for the running version of NVDA.
191191
"Warning: add-on is incompatible: {name} {version}. "
192192
"Check for an updated version of this add-on if possible. "
193-
"The last tested NVDA version for this add-on is {lastTestedNVDAVersion}, "
194-
"your current NVDA version is {NVDAVersion}. "
193+
"This add-on was last tested with NVDA {lastTestedNVDAVersion}. "
194+
"NVDA requires this add-on to be tested with NVDA {nvdaVersion} or higher. "
195195
"Enabling may cause unstable behavior in NVDA.\n"
196196
"Proceed with enabling anyway? "
197197
).format(

0 commit comments

Comments
 (0)