mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
RegExp: group name i18n
GitOrigin-RevId: 2eef5efea7cab1991d532c9d1e991efcefd2f6fd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d6549b91fb
commit
e68c7b5841
@@ -3,6 +3,8 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<idea-plugin>
|
<idea-plugin>
|
||||||
|
<resource-bundle>messages.RegExpBundle</resource-bundle>
|
||||||
|
|
||||||
<extensionPoints>
|
<extensionPoints>
|
||||||
<extensionPoint name="regExpLanguageHost" beanClass="com.intellij.openapi.util.ClassExtensionPoint" dynamic="true">
|
<extensionPoint name="regExpLanguageHost" beanClass="com.intellij.openapi.util.ClassExtensionPoint" dynamic="true">
|
||||||
<with attribute="implementationClass" implements="org.intellij.lang.regexp.RegExpLanguageHost"/>
|
<with attribute="implementationClass" implements="org.intellij.lang.regexp.RegExpLanguageHost"/>
|
||||||
@@ -39,40 +41,40 @@
|
|||||||
<category>RegExp</category>
|
<category>RegExp</category>
|
||||||
</intentionAction>
|
</intentionAction>
|
||||||
|
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpRepeatedSpace" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpRepeatedSpace" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.consecutive.spaces"
|
groupKey="inspection.group.name.regexp" key="inspection.name.consecutive.spaces"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.RepeatedSpaceInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.RepeatedSpaceInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpSingleCharAlternation" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpSingleCharAlternation" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.single.character.alternation"
|
groupKey="inspection.group.name.regexp" key="inspection.name.single.character.alternation"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.SingleCharAlternationInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.SingleCharAlternationInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpOctalEscape" enabledByDefault="true" level="INFORMATION"
|
<localInspection language="RegExp" shortName="RegExpOctalEscape" enabledByDefault="true" level="INFORMATION"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.octal.escape"
|
groupKey="inspection.group.name.regexp" key="inspection.name.octal.escape"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.OctalEscapeInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.OctalEscapeInspection"/>
|
||||||
<!--<localInspection groupName="RegExp" language="RegExp" shortName="ReDoS" displayName="Exponential backtracking" enabledByDefault="true"
|
<!--<localInspection groupName="RegExp" language="RegExp" shortName="ReDoS" displayName="Exponential backtracking" enabledByDefault="true"
|
||||||
level="WARNING" implementationClass="org.intellij.lang.regexp.inspection.ReDoSInspection"/>-->
|
level="WARNING" implementationClass="org.intellij.lang.regexp.inspection.ReDoSInspection"/>-->
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpDuplicateAlternationBranch" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpDuplicateAlternationBranch" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.duplicate.branch.in.alternation"
|
groupKey="inspection.group.name.regexp" key="inspection.name.duplicate.branch.in.alternation"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.DuplicateAlternationBranchInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.DuplicateAlternationBranchInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpEscapedMetaCharacter" enabledByDefault="true" level="INFORMATION"
|
<localInspection language="RegExp" shortName="RegExpEscapedMetaCharacter" enabledByDefault="true" level="INFORMATION"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.escaped.meta.character"
|
groupKey="inspection.group.name.regexp" key="inspection.name.escaped.meta.character"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.EscapedMetaCharacterInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.EscapedMetaCharacterInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpEmptyAlternationBranch" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpEmptyAlternationBranch" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.empty.branch.in.alternation"
|
groupKey="inspection.group.name.regexp" key="inspection.name.empty.branch.in.alternation"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.EmptyAlternationBranchInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.EmptyAlternationBranchInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpAnonymousGroup" enabledByDefault="false" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpAnonymousGroup" enabledByDefault="false" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.warning.anonymous.capturing.group"
|
groupKey="inspection.group.name.regexp" key="inspection.name.anonymous.group.or.numeric.back.reference"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.AnonymousGroupInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.AnonymousGroupInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpRedundantEscape" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpRedundantEscape" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.redundant.character.escape"
|
groupKey="inspection.group.name.regexp" key="inspection.name.redundant.character.escape"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.RedundantEscapeInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.RedundantEscapeInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpUnexpectedAnchor" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpUnexpectedAnchor" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.begin.or.end.anchor.in.unexpected.position"
|
groupKey="inspection.group.name.regexp" key="inspection.name.begin.or.end.anchor.in.unexpected.position"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.UnexpectedAnchorInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.UnexpectedAnchorInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpDuplicateCharacterInClass" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpDuplicateCharacterInClass" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.duplicate.character.in.class"
|
groupKey="inspection.group.name.regexp" key="inspection.name.duplicate.character.in.class"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.DuplicateCharacterInClassInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.DuplicateCharacterInClassInspection"/>
|
||||||
<localInspection groupName="RegExp" language="RegExp" shortName="RegExpRedundantNestedCharacterClass" enabledByDefault="true" level="WARNING"
|
<localInspection language="RegExp" shortName="RegExpRedundantNestedCharacterClass" enabledByDefault="true" level="WARNING"
|
||||||
bundle="messages.RegExpBundle" key="inspection.name.redundant.nested.character.class"
|
groupKey="inspection.group.name.regexp" key="inspection.name.redundant.nested.character.class"
|
||||||
implementationClass="org.intellij.lang.regexp.inspection.RedundantNestedCharacterClassInspection"/>
|
implementationClass="org.intellij.lang.regexp.inspection.RedundantNestedCharacterClassInspection"/>
|
||||||
|
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ error.unknown.property.value=Unknown property value
|
|||||||
error.unresolved.back.reference=Unresolved back reference
|
error.unresolved.back.reference=Unresolved back reference
|
||||||
error.unresolved.named.group.reference=Unresolved named group reference
|
error.unresolved.named.group.reference=Unresolved named group reference
|
||||||
file.type.description.regular.expression=Regular expression
|
file.type.description.regular.expression=Regular expression
|
||||||
|
inspection.group.name.regexp=RegExp
|
||||||
inspection.name.anonymous.group.or.numeric.back.reference=Anonymous capturing group or numeric back reference
|
inspection.name.anonymous.group.or.numeric.back.reference=Anonymous capturing group or numeric back reference
|
||||||
inspection.name.begin.or.end.anchor.in.unexpected.position=Begin or end anchor in unexpected position
|
inspection.name.begin.or.end.anchor.in.unexpected.position=Begin or end anchor in unexpected position
|
||||||
inspection.name.consecutive.spaces=Consecutive spaces
|
inspection.name.consecutive.spaces=Consecutive spaces
|
||||||
|
|||||||
Reference in New Issue
Block a user