Fix label of import button in syntax import panel

This commit is contained in:
1024jp 2018-04-11 19:56:07 +09:00
parent c1d044438c
commit 9ebfb22162
2 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,11 @@ unreleased
- [beta] Disable the remove button in replacement set panel when nothing is selected.
### Fixes
- [trivial] Fix “Import” button label in the syntax import dialog.
3.4.0-beta (241)
--------------------------

View File

@ -304,7 +304,7 @@ final class FormatPaneController: NSViewController, NSTableViewDelegate {
@IBAction func importSyntaxStyle(_ sender: Any?) {
let openPanel = NSOpenPanel()
openPanel.prompt = NSLocalizedString("", comment: "")
openPanel.prompt = NSLocalizedString("Import", comment: "")
openPanel.resolvesAliases = true
openPanel.allowsMultipleSelection = false
openPanel.canChooseDirectories = false