From 3188b04aafae0c880dec14c20efd249e9f33d115 Mon Sep 17 00:00:00 2001 From: "Tanner W. Stokes" Date: Thu, 6 Jan 2022 17:09:35 -0500 Subject: [PATCH 1/2] Match the message with the button title. --- WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m b/WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m index a30d31101..9eeb0de55 100644 --- a/WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m +++ b/WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m @@ -54,7 +54,7 @@ - (NSError *)errorForGuessXMLRPCApiFailure:(NSError *)error return error; } else { NSDictionary *userInfo = @{ - NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need Help?' to view the FAQ.", nil), + NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need more help?' to view the FAQ.", nil), NSLocalizedFailureReasonErrorKey: error.localizedDescription, XMLRPCOriginalErrorKey: error }; @@ -76,7 +76,7 @@ - (void)getBlogOptionsWithEndpoint:(NSURL *)xmlrpc dispatch_async(dispatch_get_main_queue(), ^{ if (![responseObject isKindOfClass:[NSDictionary class]]) { if (failure) { - NSDictionary *userInfo = @{NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need Help?' to view the FAQ.", nil)}; + NSDictionary *userInfo = @{NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need more help?' to view the FAQ.", nil)}; NSError *error = [NSError errorWithDomain:WordPressOrgXMLRPCApiErrorDomain code:WordPressOrgXMLRPCApiErrorResponseSerializationFailed userInfo:userInfo]; failure(error); } From 9fd7c113f01f8944a358afc0aa54dc653e437c6e Mon Sep 17 00:00:00 2001 From: "Tanner W. Stokes" Date: Tue, 18 Jan 2022 12:43:10 -0500 Subject: [PATCH 2/2] Bump Podspec beta version. --- WordPressAuthenticator.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPressAuthenticator.podspec b/WordPressAuthenticator.podspec index 9611a7778..e87d123b2 100644 --- a/WordPressAuthenticator.podspec +++ b/WordPressAuthenticator.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = 'WordPressAuthenticator' - s.version = '1.43.0-beta.2' + s.version = '1.43.0-beta.3' s.summary = 'WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps.' s.description = <<-DESC