Some words appear in **bold** in Hungarian translation: * a címlapon **vagyok** It uses parentheses for alternative words without marking them non-capturing: ```xml <target><![CDATA[/^a címlapon (vagyok|van)$/]]></target> ``` Can be easily fixed: ```xml <target><![CDATA[/^a címlapon (?:vagyok|van)$/]]></target> ```
Some words appear in bold in Hungarian translation:
It uses parentheses for alternative words without marking them non-capturing:
Can be easily fixed: