wording tweak

This commit is contained in:
Damien Elmes 2019-02-18 13:07:20 +10:00
parent d8f059b570
commit dcec361410

View file

@ -142,7 +142,7 @@ add-ons section</a> of our support site.
# reverse to list most likely suspect first, dict to deduplicate: # reverse to list most likely suspect first, dict to deduplicate:
addons = [mw.addonManager.addonName(i) for i in addons = [mw.addonManager.addonName(i) for i in
dict.fromkeys(reversed(matches))] dict.fromkeys(reversed(matches))]
txt = _("""Potentially affected add-ons: {}\n""") txt = _("""Add-ons possibly involved: {}\n""")
# highlight importance of first add-on: # highlight importance of first add-on:
addons[0] = "<b>{}</b>".format(addons[0]) addons[0] = "<b>{}</b>".format(addons[0])
return txt.format(", ".join(addons)) return txt.format(", ".join(addons))