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: WordPressKit.xcodeproj/project.pbxproj
+20
Original file line number
Diff line number
Diff line change
@@ -2829,6 +2829,7 @@
2829
2829
9368C7761EC5EF1B0092CE8E /* Sources */,
2830
2830
9368C7771EC5EF1B0092CE8E /* Frameworks */,
2831
2831
9368C7791EC5EF1B0092CE8E /* Resources */,
2832
+
3F391E242B577AD7007975C4 /* SwiftLint */,
2832
2833
);
2833
2834
buildRules = (
2834
2835
);
@@ -3247,6 +3248,25 @@
3247
3248
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
lettitle=NSLocalizedString("Certificate error", comment:"Popup title for wrong SSL certificate.")
39
-
letmessage=String(format:NSLocalizedString("The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?", comment:""), challenge.protectionSpace.host)
39
+
letlocalizedMessage=NSLocalizedString(
40
+
"The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?",
41
+
comment:"Message for when the certificate for the server is invalid. The %@ placeholder will be replaced the a host name, received from the API."
Copy file name to clipboardexpand all lines: WordPressKit/WordPressOrgXMLRPCValidator.swift
+4-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,10 @@ import Foundation
22
22
case.notWordPressError:
23
23
returnNSLocalizedString("That doesn't look like a WordPress site.", comment:"Message to show to user when he tries to add a self-hosted site that isn't a WordPress site.")
24
24
case.mobilePluginRedirectedError:
25
-
returnNSLocalizedString("You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog", comment:"")
25
+
returnNSLocalizedString(
26
+
"You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog",
27
+
comment:"Error messaged show when a mobile plugin is redirecting traffict to their site, DudaMobile in particular"
28
+
)
26
29
case.invalid:
27
30
returnNSLocalizedString("Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered.", comment:"Error message shown a URL points to a valid site but not a WordPress site.")
0 commit comments