diff --git a/idea/resources/META-INF/jvm-common.xml b/idea/resources/META-INF/jvm-common.xml index 84f4ec4f286..5816c7c781a 100644 --- a/idea/resources/META-INF/jvm-common.xml +++ b/idea/resources/META-INF/jvm-common.xml @@ -17,23 +17,19 @@ - + - + - + @@ -47,26 +43,22 @@ - + + icon="/org/jetbrains/kotlin/idea/icons/kotlin.png"/> + class="org.jetbrains.kotlin.idea.debugger.ToggleKotlinVariablesView"> - + @@ -236,4 +228,5 @@ + messages.KotlinBundle diff --git a/idea/resources/META-INF/plugin-common.xml b/idea/resources/META-INF/plugin-common.xml index 8e0e92bfcda..c10318ea1ea 100644 --- a/idea/resources/META-INF/plugin-common.xml +++ b/idea/resources/META-INF/plugin-common.xml @@ -18,8 +18,7 @@ - + @@ -27,97 +26,78 @@ - - + - + - + - + - + + use-shortcut-of="ExtractMethod"> + use-shortcut-of="IntroduceField"> - + - + - + + class="org.jetbrains.kotlin.idea.actions.internal.refactoringTesting.MoveRefactoringAction"/> - - + + + class="org.jetbrains.kotlin.idea.actions.internal.benchmark.TopLevelCompletionBenchmarkAction"/> + class="org.jetbrains.kotlin.idea.actions.internal.benchmark.LocalCompletionBenchmarkAction"/> + class="org.jetbrains.kotlin.idea.actions.internal.benchmark.HighlightingBenchmarkAction"/> + class="org.jetbrains.kotlin.idea.actions.internal.CacheResetOnProcessCanceledToggleAction"/> - + - + - + - + - + - + - + @@ -127,69 +107,53 @@ - + - + - + - + - + + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$Test"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$SetUp"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$TearDown"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateTestSupportActionBase$Data"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateEqualsAndHashcodeAction"/> + class="org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateToStringAction"/> - + - + - + @@ -203,28 +167,23 @@ - + - + - + - + - + @@ -277,45 +236,34 @@ - + - + - + - + - + - + - + - + - + - + - + @@ -340,11 +288,9 @@ - + - + @@ -352,8 +298,7 @@ - + @@ -773,13 +718,11 @@ - + - + - + - + @@ -3620,5 +3561,6 @@ + messages.KotlinBundle diff --git a/idea/resources/messages/KotlinBundle.properties b/idea/resources/messages/KotlinBundle.properties index f6145b658dd..f2e2188f9bb 100644 --- a/idea/resources/messages/KotlinBundle.properties +++ b/idea/resources/messages/KotlinBundle.properties @@ -1900,4 +1900,59 @@ title.parameters=Parameters signature.preview=Signature Preview move.members.from=Move members from: open.moved.members.in.editor=Open moved members in editor -to.fully.qualified.name=To (fully qualified name): \ No newline at end of file +to.fully.qualified.name=To (fully qualified name): + +action.Kotlin.StopScratch.text=Stop Scratch Execution +action.Kotlin.StopScratch.description=Stop scratch execution +action.Kotlin.ClearScratch.text=Clear Kotlin Scratch +action.Kotlin.ClearScratch.description=Clear kotlin scratch +action.Kotlin.RunScratch.text=Run Kotlin Scratch +action.Kotlin.RunScratch.description=Run kotlin scratch +action.KotlinGenerateToString.text=ToString() +action.KotlinGenerateEqualsAndHashCode.text=Equals() and HashCode() +action.KotlinGenerateSecondaryConstructor.text=Secondary Constructor +action.KotlinGenerateDataMethod.text=Parameters Function +action.KotlinGenerateTearDownMethod.text=TearDown Function +action.KotlinGenerateSetUpMethod.text=SetUp Function +action.KotlinGenerateTestMethod.text=Test Function +action.KotlinShellExecute.text=Execute Kotlin Code +action.KotlinShellExecute.description=Execute Kotlin code in console +action.IntroduceTypeAlias.text=Type _Alias... +action.IntroduceTypeParameter.text=T_ype Parameter... +action.ExtractFunctionToScope.text=Function to _Scope... +action.KotlinThrowException.text=Drop an Error from Kotlin Plugin +action.KotlinFormattingSettingsStatusAction.text=Formatter Settings Info +action.CopyAsDiagnosticTest.text=Copy Current File As Diagnostic Test +action.MultiplatformCompositeAnalysisToggleAction.text=Toggle Composite Analysis +action.StoredExceptionsThrowToggleAction.text=Throw Cached PCE +action.PrintOutNotPropertyMatches.text=Search Not Property Candidates +action.FindImplicitNothingAction.text=Find Implicit Nothing Calls +action.CheckComponentsUsageSearchAction.text=Check Component Functions Usage Search +action.CacheResetOnProcessCanceledToggleAction.text=Reset Caches on ProcessCanceledException +action.HighlightingBenchmarkAction.text=Benchmark Highlighting +action.LocalCompletionBenchmarkAction.text=Local Scenario +action.TopLevelCompletionBenchmarkAction.text=Top-Level Scenario +group.KotlinCompletionBenchmarkGroup.text=Benchmark Completion +group.KotlinInternalGroup.text=Kotlin +action.TestMoveRefactiringAction.text=Test Move Refactoring on Opened Project +group.KotlinRefactoringTesting.text=Kotlin Refactoring Testing +action.DumbModeTremble.text=Tremble Dumb Mode +group.InternalKotlin.text=Kotlin Internal Actions +action.IntroduceProperty.text=P_roperty... +action.ExtractFunction.text=_Function... +action.KotlinCodeMigrationToggle.text=Enable Migrations Detection (Experimental) +action.KotlinCodeMigration.text=Run Code Migrations +action.CopyKotlinProjectInformation.text=Copy Kotlin Project Overview To Clipboard +action.DecompileKotlinToJava.text=Decompile Kotlin To Java +action.KotlinConfigureUpdates.text=Configure Kotlin Plugin Updates +action.KotlinConfigureUpdates.description=Configure automatic updates for the Kotlin plugin +group.KotlinToolsGroup.text=Kotlin +action.ConvertJavaToKotlin.text=Convert Java File to Kotlin File +action.Kotlin.XDebugger.ToggleKotlinVariableView.text=Show Kotlin Variables Only +action.InspectBreakpointApplicability.text=Inspect Breakpoint Applicability +action.Kotlin.XDebugger.CoroutinesDump.text=Get Coroutines Dump +action.AddToProblemApiInspection.text=Report as Incompatible API +action.ShowKotlinBytecode.text=Show Kotlin Bytecode +action.ConfigureKotlinJsInProject.text=Configure Kotlin (JavaScript) in Project +action.ConfigureKotlinInProject.text=Configure Kotlin in Project +action.KotlinConsoleREPL.text=Kotlin REPL \ No newline at end of file