mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
all capitals in dialog title
This commit is contained in:
@@ -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}
|
||||
|
||||
+1
-1
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user