diff --git a/platform/platform-resources-en/src/messages/VcsBundle.properties b/platform/platform-resources-en/src/messages/VcsBundle.properties
index f86974145a95..5d6f22501a47 100644
--- a/platform/platform-resources-en/src/messages/VcsBundle.properties
+++ b/platform/platform-resources-en/src/messages/VcsBundle.properties
@@ -565,6 +565,7 @@ todo.handler.only.in.changed=
There {0,choice, 1#was one|2#were {0}}
todo.handler.only.both=There were {0, choice, 1#one|2#{0}} added or edited,
\
and {1, choice, 1#one|2#{1}} located in changed {1,choice, 1#fragment|2#fragments} TODO items found.
\
{2,choice, 0#|1#One file was skipped.|2#{2} files were skipped.}Would you like to review them?
+paths.affected.in.revision=Paths Affected in Revision {0}
#Dir diff
refresh.failed.message=Refresh failed: {0}
diff --git a/platform/vcs-api/src/com/intellij/openapi/vcs/annotate/ShowAllAffectedGenericAction.java b/platform/vcs-api/src/com/intellij/openapi/vcs/annotate/ShowAllAffectedGenericAction.java
index 5b2b63558e35..3ba8d25cd226 100644
--- a/platform/vcs-api/src/com/intellij/openapi/vcs/annotate/ShowAllAffectedGenericAction.java
+++ b/platform/vcs-api/src/com/intellij/openapi/vcs/annotate/ShowAllAffectedGenericAction.java
@@ -60,7 +60,7 @@ public class ShowAllAffectedGenericAction extends AnAction {
final AbstractVcs vcs = ProjectLevelVcsManager.getInstance(project).findVcsByName(vcsKey.getName());
if (vcs == null) return;
- final String title = "Paths affected in revision " + revision.asString();
+ final String title = VcsBundle.message("paths.affected.in.revision", revision.asString());
final CommittedChangeList[] list = new CommittedChangeList[1];
final VcsException[] exc = new VcsException[1];
ProgressManager.getInstance().run(new Task.Backgroundable(project, title, true, BackgroundFromStartOption.getInstance()) {