Skip to content

Commit 0c6ea58

Browse files
authored
Merge 56e98ce into f692c2f
2 parents f692c2f + 56e98ce commit 0c6ea58

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

source/gui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def __init__(self, parent):
703703
self.capsAsNVDAModifierCheckBox = sHelper.addItem(wx.CheckBox(self, label=capsAsNVDAModifierText))
704704
self.capsAsNVDAModifierCheckBox.SetValue(config.conf["keyboard"]["useCapsLockAsNVDAModifierKey"])
705705
# Translators: The label of a checkbox in the Welcome dialog.
706-
startAfterLogonText = _("&Automatically start NVDA after I log on to Windows")
706+
startAfterLogonText = _("St&art NVDA after Windows sign-in for me")
707707
self.startAfterLogonCheckBox = sHelper.addItem(wx.CheckBox(self, label=startAfterLogonText))
708708
self.startAfterLogonCheckBox.Value = config.getStartAfterLogon()
709709
if globalVars.appArgs.secure or config.isAppX or not config.isInstalledCopy():

source/gui/settingsDialogs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,14 +713,16 @@ def makeSettings(self, settingsSizer):
713713
# Translators: The label for a setting in general settings to allow NVDA to start after logging onto
714714
# Windows (if checked, NVDA will start automatically after logging into Windows; if not, user must
715715
# start NVDA by pressing the shortcut key (CTRL+Alt+N by default).
716-
self.startAfterLogonCheckBox = wx.CheckBox(self, label=_("St&art NVDA after Windows sign in"))
716+
self.startAfterLogonCheckBox = wx.CheckBox(self, label=_("St&art NVDA after Windows sign-in for me"))
717717
self.startAfterLogonCheckBox.SetValue(config.getStartAfterLogon())
718718
if globalVars.appArgs.secure or not config.isInstalledCopy():
719719
self.startAfterLogonCheckBox.Disable()
720720
settingsSizerHelper.addItem(self.startAfterLogonCheckBox)
721721

722722
# Translators: The label for a setting in general settings to allow NVDA to come up in Windows login screen (useful if user needs to enter passwords or if multiple user accounts are present to allow user to choose the correct account).
723-
self.startOnLogonScreenCheckBox = wx.CheckBox(self, label=_("Use NVDA on the Windows logon screen (requires administrator privileges)"))
723+
self.startOnLogonScreenCheckBox = wx.CheckBox(self, label=
724+
_("Start NVDA before Windows sign-in for &everyone (requires administrator privileges)")
725+
)
724726
self.startOnLogonScreenCheckBox.SetValue(config.getStartOnLogonScreen())
725727
if globalVars.appArgs.secure or not config.canStartOnSecureScreens():
726728
self.startOnLogonScreenCheckBox.Disable()

0 commit comments

Comments
 (0)