Skip to content

Commit 064eb1b

Browse files
authored
Merge pull request #19262 from wordpress-mobile/update/social-connection-to-jetpack-social
Jetpack Social: Update the jetpack social sharing
2 parents 7f44120 + 7f5264a commit 064eb1b

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

WordPress/Classes/ViewRelated/Blog/SharingConnectionsViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInte
110110
if ([self hasConnectedAccounts] && section == 0) {
111111
title = NSLocalizedString(@"Connected Accounts", @"Noun. Title. Title for the list of accounts for third party sharing services.");
112112
} 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.");
114114
title = [NSString stringWithFormat:format, self.publicizeService.label];
115115
}
116116
return title;

WordPress/Classes/ViewRelated/Blog/SharingViewController.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInte
118118
{
119119
switch (section) {
120120
case SharingPublicizeServices:
121-
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");
122122
case SharingButtons:
123123
return NSLocalizedString(@"Sharing Buttons", @"Section title for the sharing buttons section in the Sharing screen");
124124
default:
@@ -336,7 +336,7 @@ - (void)syncPublicizeServices
336336
if (!ReachabilityUtils.isInternetReachable) {
337337
[weakSelf showConnectionError];
338338
} 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")];
340340
[weakSelf refreshPublicizers];
341341
}
342342
}];
@@ -352,7 +352,7 @@ - (void)syncConnections
352352
if (!ReachabilityUtils.isInternetReachable) {
353353
[weakSelf showConnectionError];
354354
} 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")];
356356
[weakSelf refreshPublicizers];
357357
}
358358
}];

WordPress/Classes/ViewRelated/Post/PostSettingsViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInte
430430
return NSLocalizedString(@"Mark as Sticky", @"Label for the Mark as Sticky option in post settings.");
431431

432432
} else if (sec == PostSettingsSectionShare && [self numberOfRowsForShareSection] > 0) {
433-
return NSLocalizedString(@"Sharing", @"Label for the Sharing section in post Settings. Should be the same as WP core.");
433+
return NSLocalizedString(@"Jetpack Social", @"Label for the Sharing section in post Settings. Should be the same as WP core.");
434434

435435
} else if (sec == PostSettingsSectionMoreOptions) {
436436
return NSLocalizedString(@"More Options", @"Label for the More Options area in post settings. Should use the same translation as core WP.");

WordPress/Classes/ViewRelated/What's New/Data store/Cache/AnnouncementsCache.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ struct UserDefaultsAnnouncementsCache: AnnouncementsCache {
2323
UserPersistentStoreFactory.instance().announcementsDate
2424
}
2525
}
26-

0 commit comments

Comments
 (0)