Skip to content

Commit 86de732

Browse files
committed
little changes
1 parent 1f277f1 commit 86de732

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

source/_magnifier/utils/types.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ class FullScreenMode(DisplayStringStrEnum):
155155
@property
156156
def _displayStringLabels(self) -> dict["FullScreenMode", str]:
157157
return {
158-
# Translators: Magnifier focus mode - center mouse/focus on screen.
158+
# Translators: Magnifier tracking mode - center on screen.
159159
self.CENTER: pgettext("magnifier", "Center"),
160-
# Translators: Magnifier focus mode - follow focus at screen borders.
160+
# Translators: Magnifier tracking mode - follow tracking at screen borders.
161161
self.BORDER: pgettext("magnifier", "Border"),
162-
# Translators: Magnifier focus mode - maintain relative position.
162+
# Translators: Magnifier tracking mode - maintain relative position.
163163
self.RELATIVE: pgettext("magnifier", "Relative"),
164164
}
165165

source/gui/settingsDialogs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6225,15 +6225,15 @@ def makeSettings(
62256225

62266226
# FULLSCREEN MODE SETTINGS
62276227
# Translators: The label for a setting in magnifier settings to select the full-screen mode
6228-
fullscreenModeLabelText = _("Focus &mode:")
6228+
fullscreenModeLabelText = _("Tracking &mode:")
62296229
fullscreenModeChoices = [mode.displayString for mode in FullScreenMode] if FullScreenMode else []
62306230
self.fullscreenModeList = fullscreenGroup.addLabeledControl(
62316231
fullscreenModeLabelText,
62326232
wx.Choice,
62336233
choices=fullscreenModeChoices,
62346234
)
62356235
self.bindHelpEvent(
6236-
"MagnifierFullscreenFocusMode",
6236+
"MagnifierFullscreenTrackingMode",
62376237
self.fullscreenModeList,
62386238
)
62396239

user_docs/en/userGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ Once the magnifier is enabled, you can use the following keyboard commands to co
15901590
| Increases the magnification level of the magnifier | `NVDA+shift+equals` | Increases the zoom level. Starts the magnifier if it's not already running. |
15911591
| Decreases the magnification level of the magnifier | `NVDA+shift+minus` | Decreases the zoom level |
15921592
| Toggle filter of the magnifier | `NVDA+shift+i` | Cycles through available color filters (normal, grayscale, inverted) |
1593-
| Toggle focus mode for the full-screen magnifier | None | Cycles through focus tracking modes (center, border, relative) |
1593+
| Toggle tracking for the full-screen magnifier | None | Cycles through tracking modes (center, border, relative) |
15941594
| Launch spotlight if magnifier is full-screen | `NVDA+shift+l` | Activates spotlight mode for focused reading or presentations |
15951595
| Pan left | `NVDA+alt+leftArrow` | Pan the magnified view to the left by the specified panning step size |
15961596
| Pan right | `NVDA+alt+rightArrow` | Pan the magnified view to the right by the specified panning step size |

0 commit comments

Comments
 (0)