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

Commit 3188b04

Browse files
committed
Match the message with the button title.
1 parent 573f676 commit 3188b04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)