mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[devkit] AbstractRegisterFix: fix getFamilyName() contract
This commit is contained in:
@@ -144,7 +144,7 @@ inspections.component.not.registered.name=Component/Action not registered
|
||||
inspections.component.not.registered.message={0} is not registered in plugin.xml
|
||||
inspections.component.not.registered.option.check.actions=Check Actions
|
||||
inspections.component.not.registered.option.ignore.non.public=Ignore non-public classes
|
||||
inspections.component.not.registered.quickfix.family=Register Component
|
||||
inspections.component.not.registered.quickfix.family=Register {0}
|
||||
inspections.component.not.registered.quickfix.name=Register {0}
|
||||
inspections.component.not.registered.quickfix.error=Cannot Register {0}
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@ abstract class AbstractRegisterFix implements LocalQuickFix, DescriptorUtil.Patc
|
||||
|
||||
@NotNull
|
||||
public String getFamilyName() {
|
||||
return DevKitBundle.message("inspections.component.not.registered.quickfix.family");
|
||||
return DevKitBundle.message("inspections.component.not.registered.quickfix.family", StringUtil.toLowerCase(getType()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user