diff --git a/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthExtension.java b/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthExtension.java index 5bdd0b402f99..c5f99c1c55b0 100644 --- a/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthExtension.java +++ b/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthExtension.java @@ -62,7 +62,7 @@ public interface JpsServerAuthExtension { ApplicationManager.getApplication().invokeLater(() -> { ATTENTION .createNotification(JavaCompilerBundle.message("notification.title.jps.caches.downloader"), - JavaCompilerBundle.message("notification.content.internal.authentication.plugin.required.for.correct.work.plugin"), + JavaCompilerBundle.message("notification.content.internal.authentication.plugin.required.for.correct.work"), NotificationType.WARNING) .setListener(NotificationListener.URL_OPENING_LISTENER) .notify(project); diff --git a/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthUtil.java b/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthUtil.java index c2a527aa2c0b..92d4ba3c2649 100644 --- a/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthUtil.java +++ b/java/compiler/impl/src/com/intellij/compiler/cache/client/JpsServerAuthUtil.java @@ -18,7 +18,7 @@ public final class JpsServerAuthUtil { public static @NotNull Map getRequestHeaders(@NotNull Project project) { JpsServerAuthExtension authExtension = JpsServerAuthExtension.getInstance(); if (authExtension == null) { - String message = JavaCompilerBundle.message("notification.content.internal.authentication.plugin.required.for.correct.work.plugin"); + String message = JavaCompilerBundle.message("notification.content.internal.authentication.plugin.required.for.correct.work"); ApplicationManager.getApplication().invokeLater(() -> { ATTENTION.createNotification(JavaCompilerBundle.message("notification.title.jps.caches.downloader"), message, NotificationType.WARNING).notify(project); }); diff --git a/java/compiler/openapi/resources/messages/JavaCompilerBundle.properties b/java/compiler/openapi/resources/messages/JavaCompilerBundle.properties index 45b846e7a625..21f0da10190c 100644 --- a/java/compiler/openapi/resources/messages/JavaCompilerBundle.properties +++ b/java/compiler/openapi/resources/messages/JavaCompilerBundle.properties @@ -331,5 +331,5 @@ plugins.advertiser.feature.artifact=artifact notification.group.compiler=Build finished notification.title.jps.caches.downloader=Jps caches downloader -notification.content.internal.authentication.plugin.required.for.correct.work.plugin=JetBrains Internal Authentication is required for the correct work of the plugin +notification.content.internal.authentication.plugin.required.for.correct.work=JetBrains Internal Authentication is required for the correct work of JPS Caches internal.authentication.plugin.missing.token=Unexpected state: jetbrains.team token is missing. Please report this exception and perform actions 'Logout from JetBrains.team' and 'Login to JetBrains.team' as a workaround \ No newline at end of file