[vcs-log] use specific vcs name in the status bar progress

GitOrigin-RevId: 063406ccc72812ce0df8e7b19936d390f33c9761
This commit is contained in:
Julia Beliaeva
2020-05-08 00:48:05 +00:00
committed by intellij-monorepo-bot
parent 199f4c023c
commit 35a04c3cdd
2 changed files with 2 additions and 2 deletions
@@ -107,7 +107,7 @@ file.history.commit.not.found.view.and.show.all.branches.link=View and Show All
file.history.commit.not.found.view.in.log.link=View in Log
# indexing progress
vcs.log.status.bar.indexing.cancel.tooltip=Cancel indexing. Indexing could be restarted manually from Vcs Log toolbar.
vcs.log.status.bar.indexing.cancel.tooltip=Cancel indexing. Indexing could be restarted manually from {0} Log toolbar.
vcs.log.status.bar.indexing={0} Log Indexing...
# processes
@@ -102,7 +102,7 @@ class VcsLogStatusBarProgress(project: Project, logProviders: Map<VirtualFile, V
override fun getCancelText(): String = CommonBundle.getCancelButtonText()
override fun getCancelTooltipText(): String = VcsLogBundle.message("vcs.log.status.bar.indexing.cancel.tooltip")
override fun getCancelTooltipText(): String = VcsLogBundle.message("vcs.log.status.bar.indexing.cancel.tooltip", vcsName.capitalize())
override fun isCancellable(): Boolean = true
}