Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions addon/globalPlugins/webAccess/ruleHandler/controlMutation.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def apply(self, result):
"landmark.nav.named": Mutation({"landmark": "navigation"}, True),
"landmark.nav.unnamed": Mutation({"landmark": "navigation"}, False),
"link": Mutation({"role": controlTypes.ROLE_LINK}, False),
"redundant.object": Mutation({"role": controlTypes.ROLE_REDUNDANTOBJECT}, False),
"section": Mutation({"role": controlTypes.ROLE_SECTION}, False),
"table.data": Mutation({"table-layout": False}, False),
"table.layout": Mutation({"table-layout": True}, False)
Expand All @@ -126,6 +127,7 @@ def apply(self, result):
"heading.5",
"heading.6",
"labelled",
"redundant.object",
"section",
"landmark.region",
"landmark.nav.named",
Expand Down Expand Up @@ -167,6 +169,8 @@ def apply(self, result):
# Translators: The label for a control mutation.
("labelled", pgettext("webAccess.controlMutation", "Add a label")),
# Translators: The label for a control mutation.
("redundant.object", pgettext("webAccess.controlMutation", "Redundant object")),
# Translators: The label for a control mutation.
("section", pgettext("webAccess.controlMutation", "Section")),
(
"landmark.region",
Expand Down