diff --git a/plugins/maven/src/main/java/org/jetbrains/idea/maven/buildtool/MavenSyncConsole.kt b/plugins/maven/src/main/java/org/jetbrains/idea/maven/buildtool/MavenSyncConsole.kt index aa5bd1ed4a3b..3d189eef196a 100644 --- a/plugins/maven/src/main/java/org/jetbrains/idea/maven/buildtool/MavenSyncConsole.kt +++ b/plugins/maven/src/main/java/org/jetbrains/idea/maven/buildtool/MavenSyncConsole.kt @@ -295,8 +295,8 @@ class MavenSyncConsole(private val myProject: Project) : MavenEventHandler { private fun attachFullSyncQuickFix() { try { mySyncView.onEvent(mySyncId, BuildIssueEventImpl(mySyncId, object : BuildIssue { - override val title: String = "Incremental Sync Finished" - override val description: String = "Incremental sync finished. If there is something wrong with the project model, run full sync\n" + override val title: String = "Sync Finished" + override val description: String = "Sync finished. If there is something wrong with the project model, reload all projects\n" override val quickFixes: List = listOf(MavenFullSyncQuickFix()) override fun getNavigatable(project: Project): Navigatable? = null }, MessageEvent.Kind.INFO)) diff --git a/plugins/maven/src/main/resources/messages/MavenProjectBundle.properties b/plugins/maven/src/main/resources/messages/MavenProjectBundle.properties index 005b45006ad9..d4d4a665d01d 100644 --- a/plugins/maven/src/main/resources/messages/MavenProjectBundle.properties +++ b/plugins/maven/src/main/resources/messages/MavenProjectBundle.properties @@ -86,7 +86,7 @@ maven.toggle.offline.search.title=Toggle Maven Offline Mode maven.commandline.description=Configures Maven projects under the given folder -action.Maven.SyncIncrementally.text=Reload All Maven Projects Incrementally +action.Maven.SyncIncrementally.text=Sync All Maven Projects action.Maven.Reimport.text=Reload All Maven Projects action.Maven.ReimportProject.text=Sync Project action.Maven.ReimportProject.description=Sync selected Maven projects