i18n: fix findUsages dialogs
#KT-37483
This commit is contained in:
+2
-2
@@ -117,8 +117,8 @@ public class KotlinFindClassUsagesDialog extends FindClassUsagesDialog {
|
|||||||
KotlinBundle.message("find.declaration.properties.usages.checkbox")
|
KotlinBundle.message("find.declaration.properties.usages.checkbox")
|
||||||
);
|
);
|
||||||
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.what.implementing.classes.checkbox"));
|
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.what.implementing.classes.checkbox"));
|
||||||
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.declaration.derived.interfaces.checkbox"));
|
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.what.derived.interfaces.checkbox"));
|
||||||
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.declaration.derived.classes.checkbox"));
|
Utils.removeCheckbox(findWhatPanel, FindBundle.message("find.what.derived.classes.checkbox"));
|
||||||
|
|
||||||
derivedClasses = addCheckboxToPanel(
|
derivedClasses = addCheckboxToPanel(
|
||||||
KotlinBundle.message("find.declaration.derived.classes.checkbox"),
|
KotlinBundle.message("find.declaration.derived.classes.checkbox"),
|
||||||
|
|||||||
+3
-3
@@ -71,12 +71,12 @@ public class KotlinFindFunctionUsagesDialog extends FindMethodUsagesDialog {
|
|||||||
if (findWhatPanel != null) {
|
if (findWhatPanel != null) {
|
||||||
Utils.renameCheckbox(
|
Utils.renameCheckbox(
|
||||||
findWhatPanel,
|
findWhatPanel,
|
||||||
FindBundle.message("find.declaration.implementing.methods.checkbox"),
|
FindBundle.message("find.what.implementing.methods.checkbox"),
|
||||||
KotlinBundle.message("find.declaration.implementing.methods.checkbox")
|
KotlinBundle.message("find.declaration.implementing.methods.checkbox")
|
||||||
);
|
);
|
||||||
Utils.renameCheckbox(
|
Utils.renameCheckbox(
|
||||||
findWhatPanel,
|
findWhatPanel,
|
||||||
FindBundle.message("find.declaration.overriding.methods.checkbox"),
|
FindBundle.message("find.what.overriding.methods.checkbox"),
|
||||||
KotlinBundle.message("find.declaration.overriding.methods.checkbox")
|
KotlinBundle.message("find.declaration.overriding.methods.checkbox")
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -90,7 +90,7 @@ public class KotlinFindFunctionUsagesDialog extends FindMethodUsagesDialog {
|
|||||||
|
|
||||||
if (!Utils.renameCheckbox(
|
if (!Utils.renameCheckbox(
|
||||||
optionsPanel,
|
optionsPanel,
|
||||||
FindBundle.message("find.declaration.include.overloaded.methods.checkbox"),
|
FindBundle.message("find.options.include.overloaded.methods.checkbox"),
|
||||||
KotlinBundle.message("find.declaration.include.overloaded.methods.checkbox")
|
KotlinBundle.message("find.declaration.include.overloaded.methods.checkbox")
|
||||||
)) {
|
)) {
|
||||||
addCheckboxToPanel(
|
addCheckboxToPanel(
|
||||||
|
|||||||
Reference in New Issue
Block a user