IDEA-65052 Changed mnemonic for change list in commit dialog from 'L' to 'T' due to the conflict with German layout (Alt+L inserts @).

This commit is contained in:
Kirill Likhodedov
2011-02-07 18:24:41 +03:00
parent 2eb60dc1ea
commit 7040ba2d08
2 changed files with 1 additions and 2 deletions
@@ -272,7 +272,7 @@ commit.dialog.failed.commit.template=Failed commit: {0}
commit.dialog.completed.successfully=Completed successfully
commit.dialog.refresh.files=Synchronizing files...
commit.dialog.rejected.commit.template=Rejected commit: {0}
commit.dialog.changelist.label=Change list:
commit.dialog.changelist.label=Change lis&t:
commit.dialog.changed.files.label=Changed &Files
commit.wait.util.synced.message=Please wait until VCS synchronization is finished.
commit.wait.util.synced.title=Finishing VCS refresh
@@ -260,7 +260,6 @@ public class MultipleChangeListBrowser extends ChangesBrowser {
add(myChooser, BorderLayout.CENTER);
JLabel label = new JLabel(VcsBundle.message("commit.dialog.changelist.label"));
label.setDisplayedMnemonic('l');
label.setLabelFor(myChooser);
add(label, BorderLayout.WEST);
}