mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 15:06:56 +07:00
i18n and rename for a couple of notification groups (IDEA-256552)
GitOrigin-RevId: 6f2685743ff106ab399c785ccc1236aa6b148e33
This commit is contained in:
committed by
intellij-monorepo-bot
parent
6cec315ce2
commit
45bae4bd07
@@ -328,3 +328,4 @@ action.show.snapshot.location.text=Show Snapshot Location
|
|||||||
dialog.message.failed.to.determine.host.ip.for.wsl.jdk=Failed to determine host IP for WSL JDK
|
dialog.message.failed.to.determine.host.ip.for.wsl.jdk=Failed to determine host IP for WSL JDK
|
||||||
progress.preparing.wsl.build.environment=Preparing WSL build environment...
|
progress.preparing.wsl.build.environment=Preparing WSL build environment...
|
||||||
plugins.advertiser.feature.artifact=artifact
|
plugins.advertiser.feature.artifact=artifact
|
||||||
|
notification.group.compiler=Build finished
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
||||||
package com.intellij.openapi.compiler;
|
package com.intellij.openapi.compiler;
|
||||||
|
|
||||||
import com.intellij.execution.configurations.RunConfiguration;
|
import com.intellij.execution.configurations.RunConfiguration;
|
||||||
import com.intellij.notification.NotificationGroup;
|
import com.intellij.notification.NotificationGroup;
|
||||||
|
import com.intellij.notification.NotificationGroupManager;
|
||||||
import com.intellij.openapi.fileTypes.FileType;
|
import com.intellij.openapi.fileTypes.FileType;
|
||||||
import com.intellij.openapi.module.Module;
|
import com.intellij.openapi.module.Module;
|
||||||
import com.intellij.openapi.module.ModuleType;
|
import com.intellij.openapi.module.ModuleType;
|
||||||
@@ -26,7 +27,7 @@ public abstract class CompilerManager {
|
|||||||
public static final Key<RunConfiguration> RUN_CONFIGURATION_KEY = Key.create("RUN_CONFIGURATION");
|
public static final Key<RunConfiguration> RUN_CONFIGURATION_KEY = Key.create("RUN_CONFIGURATION");
|
||||||
public static final Key<String> RUN_CONFIGURATION_TYPE_ID_KEY = Key.create("RUN_CONFIGURATION_TYPE_ID");
|
public static final Key<String> RUN_CONFIGURATION_TYPE_ID_KEY = Key.create("RUN_CONFIGURATION_TYPE_ID");
|
||||||
|
|
||||||
public static final NotificationGroup NOTIFICATION_GROUP = NotificationGroup.logOnlyGroup("Compiler");
|
public static final NotificationGroup NOTIFICATION_GROUP = NotificationGroupManager.getInstance().getNotificationGroup("Compiler");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the compiler manager instance for the specified project.
|
* Returns the compiler manager instance for the specified project.
|
||||||
|
|||||||
@@ -515,3 +515,4 @@ debugger.attach.group.name.java.read.only=Java Read Only
|
|||||||
debugger.memory.agent.timeout.error=Calculation timeout (heap is too large and memory agent can't execute this operation in reasonable time, it's preferable to capture the heap dump)
|
debugger.memory.agent.timeout.error=Calculation timeout (heap is too large and memory agent can't execute this operation in reasonable time, it's preferable to capture the heap dump)
|
||||||
debugger.memory.agent.loading.error=Memory agent couldn't be loaded to the VM
|
debugger.memory.agent.loading.error=Memory agent couldn't be loaded to the VM
|
||||||
debugger.attach.password.for.sudo=Enter your password to attach with su privileges:
|
debugger.attach.password.for.sudo=Enter your password to attach with su privileges:
|
||||||
|
notification.group.hotswap=Hot Swap performed
|
||||||
|
|||||||
@@ -2204,12 +2204,12 @@
|
|||||||
<codeInsight.inlayProvider language="JAVA" implementationClass="com.intellij.codeInsight.daemon.problems.pass.ProjectProblemHintProvider"/>
|
<codeInsight.inlayProvider language="JAVA" implementationClass="com.intellij.codeInsight.daemon.problems.pass.ProjectProblemHintProvider"/>
|
||||||
<statistics.counterUsagesCollector implementationClass="com.intellij.codeInsight.daemon.impl.JavaCodeVisionUsageCollector"/>
|
<statistics.counterUsagesCollector implementationClass="com.intellij.codeInsight.daemon.impl.JavaCodeVisionUsageCollector"/>
|
||||||
<notificationGroup id="Clean artifact" displayType="BALLOON"/>
|
<notificationGroup id="Clean artifact" displayType="BALLOON"/>
|
||||||
<notificationGroup id="Compiler" displayType="NONE"/>
|
<notificationGroup id="Compiler" displayType="NONE" bundle="messages.JavaCompilerBundle" key="notification.group.compiler"/>
|
||||||
<notificationGroup id="Build Profiler" displayType="STICKY_BALLOON"/>
|
<notificationGroup id="Build Profiler" displayType="STICKY_BALLOON"/>
|
||||||
<notificationGroup id="Analyze thread dump" displayType="TOOL_WINDOW" toolWindowId="Run" isLogByDefault="false"/>
|
<notificationGroup id="Analyze thread dump" displayType="TOOL_WINDOW" toolWindowId="Run" isLogByDefault="false"/>
|
||||||
<notificationGroup id="JSHELL_NOTIFICATIONS" displayType="BALLOON"/>
|
<notificationGroup id="JSHELL_NOTIFICATIONS" displayType="BALLOON"/>
|
||||||
<notificationGroup id="Repository" displayType="BALLOON"/>
|
<notificationGroup id="Repository" displayType="BALLOON"/>
|
||||||
<notificationGroup id="HotSwap" displayType="TOOL_WINDOW" toolWindowId="Debug"/>
|
<notificationGroup id="HotSwap" displayType="TOOL_WINDOW" toolWindowId="Debug" bundle="messages.JavaDebuggerBundle" key="notification.group.hotswap"/>
|
||||||
<notificationGroup id="Source searcher" displayType="BALLOON"/>
|
<notificationGroup id="Source searcher" displayType="BALLOON"/>
|
||||||
<notificationGroup id="Accepted language levels" displayType="STICKY_BALLOON"/>
|
<notificationGroup id="Accepted language levels" displayType="STICKY_BALLOON"/>
|
||||||
<notificationGroup id="Quarantine Cleaner" displayType="BALLOON" bundle="messages.JavaUiBundle" key="quarantine.cleaner"/>
|
<notificationGroup id="Quarantine Cleaner" displayType="BALLOON" bundle="messages.JavaUiBundle" key="quarantine.cleaner"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user