From fe46aabddd9112023ebb6caa48153ea7790bf7a1 Mon Sep 17 00:00:00 2001 From: "kirill.safonov" Date: Tue, 15 Nov 2011 12:26:18 +0400 Subject: [PATCH] all capitals in dialog title --- .../platform-resources-en/src/messages/VcsBundle.properties | 1 + .../openapi/vcs/annotate/ShowAllAffectedGenericAction.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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()) {