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
title = NSLocalizedString(@"Connected Accounts", @"Noun. Title. Title for the list of accounts for third party sharing services.");
112
112
} else {
113
-
NSString *format = NSLocalizedString(@"Publicize to %@", @"Title. `Publicize` is used as a verb here but `Share` (verb) would also work here. The `%@` is a placeholder for the service name.");
113
+
NSString *format = NSLocalizedString(@"Share post to %@", @"Title. `The `%@` is a placeholder for the service name.");
114
114
title = [NSStringstringWithFormat:format, self.publicizeService.label];
return NSLocalizedString(@"Connections", @"Section title for Publicize services in Sharing screen");
121
+
return NSLocalizedString(@"Jetpack Social Connections", @"Section title for Publicize services in Sharing screen");
122
122
case SharingButtons:
123
123
return NSLocalizedString(@"Sharing Buttons", @"Section title for the sharing buttons section in the Sharing screen");
124
124
default:
@@ -336,7 +336,7 @@ - (void)syncPublicizeServices
336
336
if (!ReachabilityUtils.isInternetReachable) {
337
337
[weakSelf showConnectionError];
338
338
} else {
339
-
[SVProgressHUD showDismissibleErrorWithStatus:NSLocalizedString(@"Publicize service synchronization failed", @"Message to show when Publicize service synchronization failed")];
339
+
[SVProgressHUD showDismissibleErrorWithStatus:NSLocalizedString(@"Jetpack Social service synchronization failed", @"Message to show when Publicize service synchronization failed")];
340
340
[weakSelf refreshPublicizers];
341
341
}
342
342
}];
@@ -352,7 +352,7 @@ - (void)syncConnections
352
352
if (!ReachabilityUtils.isInternetReachable) {
353
353
[weakSelf showConnectionError];
354
354
} else {
355
-
[SVProgressHUD showDismissibleErrorWithStatus:NSLocalizedString(@"Publicize connection synchronization failed", @"Message to show when Publicize connection synchronization failed")];
355
+
[SVProgressHUD showDismissibleErrorWithStatus:NSLocalizedString(@"Jetpack Social connection synchronization failed", @"Message to show when Publicize connection synchronization failed")];
0 commit comments