Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 21d3520

Browse files
authored
Merge pull request #631 from wordpress-mobile/bug/need-more-help
Match "Need more help" language
2 parents 573f676 + 9fd7c11 commit 21d3520

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WordPressAuthenticator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pod::Spec.new do |s|
44
s.name = 'WordPressAuthenticator'
5-
s.version = '1.43.0-beta.2'
5+
s.version = '1.43.0-beta.3'
66

77
s.summary = 'WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps.'
88
s.description = <<-DESC

WordPressAuthenticator/Services/WordPressXMLRPCAPIFacade.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ - (NSError *)errorForGuessXMLRPCApiFailure:(NSError *)error
5454
return error;
5555
} else {
5656
NSDictionary *userInfo = @{
57-
NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need Help?' to view the FAQ.", nil),
57+
NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need more help?' to view the FAQ.", nil),
5858
NSLocalizedFailureReasonErrorKey: error.localizedDescription,
5959
XMLRPCOriginalErrorKey: error
6060
};
@@ -76,7 +76,7 @@ - (void)getBlogOptionsWithEndpoint:(NSURL *)xmlrpc
7676
dispatch_async(dispatch_get_main_queue(), ^{
7777
if (![responseObject isKindOfClass:[NSDictionary class]]) {
7878
if (failure) {
79-
NSDictionary *userInfo = @{NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need Help?' to view the FAQ.", nil)};
79+
NSDictionary *userInfo = @{NSLocalizedDescriptionKey: NSLocalizedString(@"Unable to read the WordPress site at that URL. Tap 'Need more help?' to view the FAQ.", nil)};
8080
NSError *error = [NSError errorWithDomain:WordPressOrgXMLRPCApiErrorDomain code:WordPressOrgXMLRPCApiErrorResponseSerializationFailed userInfo:userInfo];
8181
failure(error);
8282
}

0 commit comments

Comments
 (0)