Skip to content

Commit 08b3924

Browse files
author
Isaac Keyet
committed
Change Dashboard link > "View Admin", change icon
Fixes #1633
1 parent 4989af1 commit 08b3924

File tree

5 files changed

+22
-8
lines changed

5 files changed

+22
-8
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
Pods/Pods.xcodeproj/xcuserdata/Pangaea.xcuserdatad/xcschemes/Pods-WordPressTest.xcscheme
3+
4+
Pods/Pods.xcodeproj/xcuserdata/Pangaea.xcuserdatad/xcschemes/xcschememanagement.plist
5+
6+
WordPress.xcworkspace/xcuserdata/Pangaea.xcuserdatad/UserInterfaceState.xcuserstate
7+
8+
WordPress/Resources/.DS_Store
9+
10+
WordPress/Resources/Images/.DS_Store
11+
12+
WordPress/WordPress.xcodeproj/xcuserdata/Pangaea.xcuserdatad/xcschemes/xcschememanagement.plist
13+
14+
.DS_Store

WordPress/Classes/SidebarViewController.m

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -754,49 +754,49 @@ - (UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(
754754

755755
if (indexPath.section == 0) {
756756
if (indexPath.row == 0) {
757-
title = NSLocalizedString(@"Reader", @"");
757+
title = NSLocalizedString(@"Reader", @"Menu item to view the Reader for WordPress.com blogs, a way to read and follow blogs that interests you");
758758
cell.imageView.image = [UIImage imageNamed:@"sidebar_read"];
759759
} else if(indexPath.row == 1){
760-
title = NSLocalizedString(@"Notifications", @"");
760+
title = NSLocalizedString(@"Notifications", @"Menu item to view Notifications for WordPress.com and Jetpack-enabled blogs");
761761
cell.imageView.image = [UIImage imageNamed:(self.hasUnseenNotes) ? @"sidebar_notifications_highlighted" : @"sidebar_notifications"];
762762
}
763763
} else {
764764
switch (indexPath.row) {
765765
case 0:
766766
{
767-
title = NSLocalizedString(@"Posts", @"");
767+
title = NSLocalizedString(@"Posts", @"Menu item to view posts");
768768
cell.imageView.image = [UIImage imageNamed:@"sidebar_posts"];
769769
break;
770770
}
771771
case 1:
772772
{
773-
title = NSLocalizedString(@"Pages", @"");
773+
title = NSLocalizedString(@"Pages", @"Menu item to view pages");
774774
cell.imageView.image = [UIImage imageNamed:@"sidebar_pages"];
775775
break;
776776
}
777777
case 2:
778778
{
779-
title = NSLocalizedString(@"Comments", @"");
779+
title = NSLocalizedString(@"Comments", @"Menu item to view comments");
780780
Blog *blog = [self.resultsController objectAtIndexPath:[NSIndexPath indexPathForRow:(indexPath.section - 1) inSection:0]];
781781
cell.blog = blog;
782782
cell.imageView.image = [UIImage imageNamed:@"sidebar_comments"];
783783
break;
784784
}
785785
case 3:
786786
{
787-
title = NSLocalizedString(@"Stats", @"");
787+
title = NSLocalizedString(@"Stats", @"Menu item to view Jetpack stats associated with a blog");
788788
cell.imageView.image = [UIImage imageNamed:@"sidebar_stats"];
789789
break;
790790
}
791791
case 4:
792792
{
793-
title = NSLocalizedString(@"View Site", @"");
793+
title = NSLocalizedString(@"View Site", @"Menu item to view the site in a an in-app web view");
794794
cell.imageView.image = [UIImage imageNamed:@"sidebar_view"];
795795
break;
796796
}
797797
case 5:
798798
{
799-
title = NSLocalizedString(@"Dashboard", @"Button to load the dashboard in a web view");
799+
title = NSLocalizedString(@"View Admin", @"Menu item to load the dashboard in a an in-app web view");
800800
cell.imageView.image = [UIImage imageNamed:@"sidebar_dashboard"];
801801
break;
802802
}
141 Bytes
Loading
-1.77 KB
Loading

0 commit comments

Comments
 (0)