File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ():
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments