You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MarkEditMac/Sources/Main/AppResources.swift
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -213,17 +213,17 @@ enum Localized {
213
213
}
214
214
215
215
enumScripting{
216
-
staticletmissingCommandErrorMessage=String(localized:"Couldn't find a command to handle incoming Apple Event.", comment:"Script error when MarkEdit has no command to handle the incoming Apple Event")
217
-
staticletmissingArgumentErrorMessage=String(localized:"Argument \"%@\" not found in event descriptor, the descriptor is likely malformed.", comment:"Script error when a command argument is missing due to a corrupted Apple Event")
218
-
staticleteditorNotFoundErrorMessage=String(localized:"No editor for document \"%@\" found.", comment:"Script error when MarkEdit cannot find the editor view to run document commands in")
216
+
staticletmissingCommandErrorMessage=String(localized:"Couldn’t find a command to handle incoming Apple Event.", comment:"Script error when MarkEdit has no command to handle the incoming Apple Event")
217
+
staticletmissingArgumentErrorMessage=String(localized:"Argument “%@” not found in event descriptor, the descriptor is likely malformed.", comment:"Script error when a command argument is missing due to a corrupted Apple Event")
218
+
staticleteditorNotFoundErrorMessage=String(localized:"No editor for document “%@” found.", comment:"Script error when MarkEdit cannot find the editor view to run document commands in")
219
219
staticletjsEvaluationErrorMessage=String(localized:"JavaScript evaluation failed at line %d, column %d: %@", comment:"Script error when JavaScript evaluation raises a detailed error")
220
220
staticletunknownJSErrorMessage=String(localized:"JavaScript evaluation failed for an unknown reason.", comment:"Script error when JavaScript evaluation raises an error with no details")
221
-
staticletinvalidDestinationErrorMessage=String(localized:"Cannot export files with extension \"%@\", supported extensions: %@.", comment:"Script error when attempting to save files with an unsupported extension")
222
-
staticletextensionMismatchErrorMessage=String(localized:"Wrong file extension for type \"%@\", use \".%@\" instead.", comment:"Script save error when the path extension does not match the output type")
221
+
staticletinvalidDestinationErrorMessage=String(localized:"Cannot export files with extension “%@”, supported extensions: %@.", comment:"Script error when attempting to save files with an unsupported extension")
222
+
staticletextensionMismatchErrorMessage=String(localized:"Wrong file extension for type “%@”, use “.%@” instead.", comment:"Script save error when the path extension does not match the output type")
223
223
}
224
224
225
225
enumUpdater{
226
-
staticletupToDateTitle=String(localized:"You're up-to-date!", comment:"Title for the up-to-date info")
226
+
staticletupToDateTitle=String(localized:"You’re up-to-date!", comment:"Title for the up-to-date info")
227
227
staticletupToDateMessage=String(localized:"MarkEdit %@ is currently the latest version.", comment:"Message for the up-to-date info")
228
228
staticletnewVersionAvailable=String(localized:"MarkEdit %@ is available!", comment:"Title for new version available")
229
229
staticletupdateFailedTitle=String(localized:"Failed to get the update.", comment:"Title for failed to get the update")
0 commit comments