Skip to content

Commit

Permalink
Fixed incorrect error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
harawata committed Jan 13, 2019
1 parent 50268be commit 82db8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FMClipboardBroker/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
let xmlData = xml.xmlData(options: XMLNode.Options(rawValue: XMLNode.Options.RawValue(Int(XMLNode.Options.nodePrettyPrint.rawValue))))
return ((try? xmlData.write(to: URL(fileURLWithPath: path), options: [.atomic])) != nil)
} catch {
showMsg(NSLocalizedString("parseErrorInLoadedXml", comment: "Failed to parse XML string copied from FM."))
showMsg(NSLocalizedString("failedToExportXmlStr", comment: "Failed to write XML string to the file."))
}
}
return false
Expand Down

0 comments on commit 82db8d1

Please sign in to comment.