@@ -39,9 +39,10 @@ class SynthRingSettingsSelectorSettingsPanel(gui.SettingsPanel):
39
39
def makeSettings (self , settingsSizer ):
40
40
self .curSettings = config .conf ['synthRingSettingsSelector' ]['availableSettings' ]
41
41
sHelper = gui .guiHelper .BoxSizerHelper (self , sizer = settingsSizer )
42
+ # Translators: This is a label with instructions for the user.
42
43
sHelper .addItem (wx .StaticText (self , label = _ ("Check the settings that you want to include in the Synth settings ring" )))
43
- settingsGroup = gui . guiHelper . BoxSizerHelper ( self , sizer = wx . StaticBoxSizer (
44
- wx .StaticBox (self , label = _ ("Settings group" )), wx .VERTICAL ))
44
+ # Translators: This is a label for a group of options.
45
+ settingsGroup = gui . guiHelper . BoxSizerHelper ( self , sizer = wx . StaticBoxSizer ( wx .StaticBox (self , label = _ ("Settings group" )), wx .VERTICAL ))
45
46
sHelper .addItem (settingsGroup )
46
47
self .settingsCheckbox = {}
47
48
for k in synthDriverHandler ._curSynth .supportedSettings :
@@ -76,4 +77,4 @@ def terminate(self):
76
77
synthDriverHandler .setSynth = origSetSynth
77
78
gui .settingsDialogs .setSynth = origSetSynth
78
79
gui .settingsDialogs .NVDASettingsDialog .categoryClasses .remove (SynthRingSettingsSelectorSettingsPanel )
79
- config .post_configProfileSwitch .unregister (self .handleConfigProfileSwitch )
80
+ config .post_configProfileSwitch .unregister (self .handleConfigProfileSwitch )
0 commit comments