all capitals in dialog title

This commit is contained in:
kirill.safonov
2011-11-15 15:46:58 +04:00
parent fc14cfb25d
commit fe46aabddd
2 changed files with 2 additions and 1 deletions
@@ -565,6 +565,7 @@ todo.handler.only.in.changed=<html><body>There {0,choice, 1#was one|2#were {0}}
todo.handler.only.both=<html><body><b>There were {0, choice, 1#one|2#{0}} added or edited,</b><br/>\
and {1, choice, 1#one|2#{1}} located in changed {1,choice, 1#fragment|2#fragments} TODO items found.<br/>\
{2,choice, 0#|1#One file was skipped.|2#{2} files were skipped.}Would you like to review them?</body></html>
paths.affected.in.revision=Paths Affected in Revision {0}
#Dir diff
refresh.failed.message=Refresh failed: {0}
@@ -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()) {