diff --git a/java/java-impl/src/com/intellij/internal/GenerateVisitorByHierarchyAction.java b/java/java-impl/src/com/intellij/internal/GenerateVisitorByHierarchyAction.java index 0ebb5795d02a..c7b4d908ec53 100644 --- a/java/java-impl/src/com/intellij/internal/GenerateVisitorByHierarchyAction.java +++ b/java/java-impl/src/com/intellij/internal/GenerateVisitorByHierarchyAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2009 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,11 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - -/* - * User: anna - * Date: 28-Jun-2007 - */ package com.intellij.internal; import com.intellij.codeInsight.editorActions.SelectWordUtil; @@ -64,9 +59,6 @@ import java.util.*; import java.util.List; public class GenerateVisitorByHierarchyAction extends AnAction { - public GenerateVisitorByHierarchyAction() { - super("Generate Hierarchy Visitor"); - } public void actionPerformed(AnActionEvent e) { final Ref visitorNameRef = Ref.create("MyVisitor"); diff --git a/platform/lang-impl/src/com/intellij/internal/ComputeVirtualFileNameStatAction.java b/platform/lang-impl/src/com/intellij/internal/ComputeVirtualFileNameStatAction.java index 07c07ffdb05a..3f5ede84b483 100644 --- a/platform/lang-impl/src/com/intellij/internal/ComputeVirtualFileNameStatAction.java +++ b/platform/lang-impl/src/com/intellij/internal/ComputeVirtualFileNameStatAction.java @@ -37,7 +37,7 @@ import java.util.*; public class ComputeVirtualFileNameStatAction extends AnAction implements DumbAware { public ComputeVirtualFileNameStatAction() { - super("Compute VF name statistics"); + super("Compute VF Name Statistics"); } public static void main(String[] args) { diff --git a/platform/platform-impl/src/com/intellij/diagnostic/DropAnErrorWithAttachmentsAction.java b/platform/platform-impl/src/com/intellij/diagnostic/DropAnErrorWithAttachmentsAction.java index 151f98ea3649..a2f54fc1ae24 100644 --- a/platform/platform-impl/src/com/intellij/diagnostic/DropAnErrorWithAttachmentsAction.java +++ b/platform/platform-impl/src/com/intellij/diagnostic/DropAnErrorWithAttachmentsAction.java @@ -25,7 +25,7 @@ import java.awt.event.InputEvent; @SuppressWarnings({"HardCodedStringLiteral"}) public class DropAnErrorWithAttachmentsAction extends DumbAwareAction { public DropAnErrorWithAttachmentsAction() { - super("Drop an error with attachments", "Hold down SHIFT for multiple attachments", null); + super("Drop An Error With Attachments", "Hold down SHIFT for multiple attachments", null); } public void actionPerformed(AnActionEvent e) { diff --git a/platform/platform-impl/src/com/intellij/internal/ToggleDumbModeAction.java b/platform/platform-impl/src/com/intellij/internal/ToggleDumbModeAction.java index 5bdd0667775b..c03f12f5e6b3 100644 --- a/platform/platform-impl/src/com/intellij/internal/ToggleDumbModeAction.java +++ b/platform/platform-impl/src/com/intellij/internal/ToggleDumbModeAction.java @@ -60,10 +60,10 @@ public class ToggleDumbModeAction extends AnAction implements DumbAware { final Project project = CommonDataKeys.PROJECT.getData(e.getDataContext()); presentation.setEnabled(project != null && myDumb == DumbServiceImpl.getInstance(project).isDumb()); if (myDumb) { - presentation.setText("Exit dumb mode"); + presentation.setText("Exit Dumb Mode"); } else { - presentation.setText("Enter dumb mode"); + presentation.setText("Enter Dumb Mode"); } } } diff --git a/platform/platform-impl/src/com/intellij/internal/ToggleLaggingModeAction.java b/platform/platform-impl/src/com/intellij/internal/ToggleLaggingModeAction.java index d08114519369..77a20379d9f8 100644 --- a/platform/platform-impl/src/com/intellij/internal/ToggleLaggingModeAction.java +++ b/platform/platform-impl/src/com/intellij/internal/ToggleLaggingModeAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2012 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -65,10 +65,10 @@ public class ToggleLaggingModeAction extends AnAction implements DumbAware { public void update(final AnActionEvent e) { final Presentation presentation = e.getPresentation(); if (myLagging) { - presentation.setText("Exit lagging mode"); + presentation.setText("Exit Lagging Mode"); } else { - presentation.setText("Enter lagging mode"); + presentation.setText("Enter Lagging Mode"); } } } diff --git a/platform/platform-impl/src/com/intellij/internal/anomalies/TopAnomaliesAction.java b/platform/platform-impl/src/com/intellij/internal/anomalies/TopAnomaliesAction.java index 52fcae58bcbc..5e0d78d23d42 100644 --- a/platform/platform-impl/src/com/intellij/internal/anomalies/TopAnomaliesAction.java +++ b/platform/platform-impl/src/com/intellij/internal/anomalies/TopAnomaliesAction.java @@ -62,7 +62,7 @@ public class TopAnomaliesAction extends ActionGroup { @Override public void update(AnActionEvent e) { - e.getPresentation().setText("Top " + LIMIT + " component parents"); + e.getPresentation().setText("Top " + LIMIT + " Component Parents"); } @Override @@ -169,7 +169,7 @@ public class TopAnomaliesAction extends ActionGroup { }; - private static final ResettableAction RESET_THEM_ALL = new ResettableAction("Reset statistics") { + private static final ResettableAction RESET_THEM_ALL = new ResettableAction("Reset Statistics") { @Override void reset() { } diff --git a/platform/platform-resources-en/src/messages/ActionsBundle.properties b/platform/platform-resources-en/src/messages/ActionsBundle.properties index 9a64c0605932..21f9050a6312 100644 --- a/platform/platform-resources-en/src/messages/ActionsBundle.properties +++ b/platform/platform-resources-en/src/messages/ActionsBundle.properties @@ -775,16 +775,16 @@ action.Merge3Files.text=Merge action.LocalizePlugin.text=Localize Plugin group.MemoryManagement.text=Memory Management action.DumpPsiMemoryCaches.text=Dump what is cached in PSI -action.DecodeBytesAction.text=Decode Bytes -action.ReloadProjectAction.text=Reload project +action.DecodeBytesAction.text=Decode Bytes... +action.ReloadProjectAction.text=Reload Project action.LocalVcs.ShowStatistics.text=Show Local VCS Statistics... action.LocalVcs.ShowStatistics.description=Show Local VCS statistics action.LocalVcs.ShowRepHistory.text=Repository History -action.DropAnError.text=Drop an error -action.DropAnOutOfMemoryError.text=Drop an OutOfMemoryError -action.DropAnOutOfPermGenMemoryError.text=Drop an perm gen OutOfMemoryError -action.DumpInspectionDescriptions.text=Dump inspection descriptions -action.DumpIntentionsDescriptions.text=Dump intentions descriptions +action.DropAnError.text=Drop An Error +action.DropAnOutOfMemoryError.text=Drop An OutOfMemoryError +action.DropAnOutOfPermGenMemoryError.text=Drop An PermGen OutOfMemoryError +action.DumpInspectionDescriptions.text=Dump Inspection Descriptions +action.DumpIntentionsDescriptions.text=Dump Intentions Descriptions action.ShowUserActivities.text=Show Activities group.WindowMenu.text=_Window group.ToolWindowsGroup.text=_Tool Windows @@ -1365,8 +1365,8 @@ group.ToolsBasicGroup.text=Tools Basic Group group.ToolsBasicGroup.description=Tools Basic Group group.ToolbarNewElement.text=Toolbar New Element Group action.NewElementToolbarAction.text=Create New File -action.ShowRegistry.text=Registry -action.UiDebugger.text=UI Debugger +action.ShowRegistry.text=Registry... +action.UiDebugger.text=UI Debugger... action.ExportTestResults.text=Export Test Results... action.ExportTestResults.description=Export test results to the file action.TogglePowerSave.text=Power Save Mode diff --git a/platform/platform-resources/src/idea/PlatformActions.xml b/platform/platform-resources/src/idea/PlatformActions.xml index 4e2657b427ee..5aef9075f588 100644 --- a/platform/platform-resources/src/idea/PlatformActions.xml +++ b/platform/platform-resources/src/idea/PlatformActions.xml @@ -613,7 +613,7 @@ - + diff --git a/plugins/devkit/src/internal/DumpCleanHighlightingTestdataAction.java b/plugins/devkit/src/internal/DumpCleanHighlightingTestdataAction.java index aeee529d9935..b631b8d7290c 100644 --- a/plugins/devkit/src/internal/DumpCleanHighlightingTestdataAction.java +++ b/plugins/devkit/src/internal/DumpCleanHighlightingTestdataAction.java @@ -1,5 +1,5 @@ /* - * Copyright 2000-2013 JetBrains s.r.o. + * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -38,7 +38,7 @@ public class DumpCleanHighlightingTestdataAction extends AnAction implements Dum private static final Logger LOG = Logger.getInstance("#" + DumpCleanHighlightingTestdataAction.class); public DumpCleanHighlightingTestdataAction() { - super("Dump highlighting-markup-free data"); + super("Dump Highlighting-markup-free Data"); } @Override diff --git a/resources/src/idea/JavaActions.xml b/resources/src/idea/JavaActions.xml index 31f6d9ad84f4..c7cc6e9756a7 100644 --- a/resources/src/idea/JavaActions.xml +++ b/resources/src/idea/JavaActions.xml @@ -138,7 +138,7 @@ + text="Generate Hierarchy Visitor..."> diff --git a/resources/src/idea/RichPlatformActions.xml b/resources/src/idea/RichPlatformActions.xml index df6c28c3615e..1f534708c21b 100644 --- a/resources/src/idea/RichPlatformActions.xml +++ b/resources/src/idea/RichPlatformActions.xml @@ -123,7 +123,7 @@ + text="Dump All Comments In Project"/> @@ -132,8 +132,8 @@ - - + +