From 232f547e079aa3369c2eb39f276d8ccafc5a936a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Thu, 29 Jan 2015 18:09:25 +0100 Subject: [PATCH] fix capitalization for AutomaticRenamer#getDialogTitle() --- .../refactoring/rename/naming/AutomaticOverloadsRenamer.java | 2 +- .../refactoring/rename/naming/AutomaticParametersRenamer.java | 2 +- .../src/messages/RefactoringBundle.properties | 2 +- .../resources/messages/PropertiesBundle.properties | 2 +- .../python/refactoring/rename/PyParametersRenameFactory.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticOverloadsRenamer.java b/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticOverloadsRenamer.java index f85ad5c78e2e..3c1e14ecebf2 100644 --- a/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticOverloadsRenamer.java +++ b/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticOverloadsRenamer.java @@ -38,7 +38,7 @@ public class AutomaticOverloadsRenamer extends AutomaticRenamer { } public String getDialogTitle() { - return "Rename overloads"; + return "Rename Overloads"; } public String getDialogDescription() { diff --git a/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticParametersRenamer.java b/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticParametersRenamer.java index 24843ee9fa74..9d9a262b0109 100644 --- a/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticParametersRenamer.java +++ b/java/java-impl/src/com/intellij/refactoring/rename/naming/AutomaticParametersRenamer.java @@ -46,7 +46,7 @@ public class AutomaticParametersRenamer extends AutomaticRenamer { } public String getDialogTitle() { - return "Rename parameters"; + return "Rename Parameters"; } public String getDialogDescription() { diff --git a/platform/platform-resources-en/src/messages/RefactoringBundle.properties b/platform/platform-resources-en/src/messages/RefactoringBundle.properties index b090b049ac86..2b63d9ab4638 100644 --- a/platform/platform-resources-en/src/messages/RefactoringBundle.properties +++ b/platform/platform-resources-en/src/messages/RefactoringBundle.properties @@ -605,7 +605,7 @@ references.in.code.to.0=References in code to {0} rename.variables.title=Rename Variables rename.variables.with.the.following.names.to=Rename variables with the following names to: entity.name.variable=Variable -rename.bound.forms.title=Rename bound forms +rename.bound.forms.title=Rename Bound Forms rename.forms.with.the.following.names.to=Rename forms with the following names to: entity.name.form=Form rename.inheritors.title=Rename Inheritors diff --git a/plugins/properties/properties-psi-api/resources/messages/PropertiesBundle.properties b/plugins/properties/properties-psi-api/resources/messages/PropertiesBundle.properties index 8dcfaf85787d..eb62c895eb7b 100644 --- a/plugins/properties/properties-psi-api/resources/messages/PropertiesBundle.properties +++ b/plugins/properties/properties-psi-api/resources/messages/PropertiesBundle.properties @@ -47,7 +47,7 @@ options.properties.attribute.descriptor.invalid.string.escape=Invalid string esc new.property.dialog.title=New Property Key new.property.dialog.name.prompt.text=Enter new property key name -resource.bundle.renamer=Rename resource bundle properties files +resource.bundle.renamer=Rename Resource Bundle Properties Files resource.bundle.renamer.dialog.description=Rename resource bundle properties files with the following names to: resource.bundle.renamer.entity.name=Resource bundle resource.bundle.renamer.option=Rename bound &resource bundle diff --git a/python/src/com/jetbrains/python/refactoring/rename/PyParametersRenameFactory.java b/python/src/com/jetbrains/python/refactoring/rename/PyParametersRenameFactory.java index 448ed337a294..0b5a9c02ce57 100644 --- a/python/src/com/jetbrains/python/refactoring/rename/PyParametersRenameFactory.java +++ b/python/src/com/jetbrains/python/refactoring/rename/PyParametersRenameFactory.java @@ -85,7 +85,7 @@ public class PyParametersRenameFactory implements AutomaticRenamerFactory { @Override public String getDialogTitle() { - return "Rename parameters"; + return "Rename Parameters"; } @Override