We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec57bd commit 5ad82b4Copy full SHA for 5ad82b4
xcode/App-Mac/Functions.swift
@@ -10,13 +10,13 @@ func getSaveLocationURL() -> URL {
10
func setSaveLocationURL(url: URL) -> Bool {
11
guard FileManager.default.isReadableFile(atPath: url.path) else {
12
let alert = NSAlert()
13
- alert.messageText = "Can not read to path. Choose a different path."
+ alert.messageText = "Cannot read the specified path; please choose a different one."
14
alert.runModal()
15
return false
16
}
17
guard FileManager.default.isWritableFile(atPath: url.path) else {
18
19
- alert.messageText = "Can not write to path. Choose a different path."
+ alert.messageText = "Cannot write to the specified path; please choose a different one."
20
21
22
0 commit comments