2323LEFT_TO_RIGHT_EMBEDDING = "\u202a "
2424"""Character often found in translator comments."""
2525
26+ category_title = "Poedit"
2627
2728class _WindowControlIdOffset (IntEnum ):
2829 """Window control ID's are not static, however, the order of ids stays the same.
@@ -146,6 +147,7 @@ def _reportControlScriptHelper(self, obj: Window, description: str):
146147 "Reports any notes for translators. If pressed twice, presents the notes in browse mode" ,
147148 ),
148149 gesture = "kb:control+shift+a" ,
150+ category = category_title ,
149151 speakOnDemand = True ,
150152 )
151153 def script_reportAutoCommentsWindow (self , gesture ):
@@ -172,6 +174,7 @@ def _get__commentObj(self) -> Window | None:
172174 "If pressed twice, presents the comment in browse mode" ,
173175 ),
174176 gesture = "kb:control+shift+c" ,
177+ category = category_title ,
175178 speakOnDemand = True ,
176179 )
177180 def script_reportCommentsWindow (self , gesture ):
@@ -197,6 +200,7 @@ def _get__oldSourceTextObj(self) -> Window | None:
197200 "Reports the old source text, if any. If pressed twice, presents the text in browse mode" ,
198201 ),
199202 gesture = "kb:control+shift+o" ,
203+ category = category_title ,
200204 speakOnDemand = True ,
201205 )
202206 def script_reportOldSourceText (self , gesture ):
@@ -220,6 +224,7 @@ def _get__translationWarningObj(self) -> Window | None:
220224 "Reports a translation warning, if any. If pressed twice, presents the warning in browse mode" ,
221225 ),
222226 gesture = "kb:control+shift+w" ,
227+ category = category_title ,
223228 speakOnDemand = True ,
224229 )
225230 def script_reportTranslationWarning (self , gesture ):
0 commit comments