diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dcd0c42e..1668ecbfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) -------------------------- diff --git a/CotEditor/Sources/FormatPaneController.swift b/CotEditor/Sources/FormatPaneController.swift index 8c8bfd8ba..6dad824a1 100644 --- a/CotEditor/Sources/FormatPaneController.swift +++ b/CotEditor/Sources/FormatPaneController.swift @@ -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