@@ -754,49 +754,49 @@ - (UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(
754
754
755
755
if (indexPath.section == 0 ) {
756
756
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 " );
758
758
cell.imageView .image = [UIImage imageNamed: @" sidebar_read" ];
759
759
} 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 " );
761
761
cell.imageView .image = [UIImage imageNamed: (self .hasUnseenNotes) ? @" sidebar_notifications_highlighted" : @" sidebar_notifications" ];
762
762
}
763
763
} else {
764
764
switch (indexPath.row ) {
765
765
case 0 :
766
766
{
767
- title = NSLocalizedString(@" Posts" , @" " );
767
+ title = NSLocalizedString(@" Posts" , @" Menu item to view posts " );
768
768
cell.imageView .image = [UIImage imageNamed: @" sidebar_posts" ];
769
769
break ;
770
770
}
771
771
case 1 :
772
772
{
773
- title = NSLocalizedString(@" Pages" , @" " );
773
+ title = NSLocalizedString(@" Pages" , @" Menu item to view pages " );
774
774
cell.imageView .image = [UIImage imageNamed: @" sidebar_pages" ];
775
775
break ;
776
776
}
777
777
case 2 :
778
778
{
779
- title = NSLocalizedString(@" Comments" , @" " );
779
+ title = NSLocalizedString(@" Comments" , @" Menu item to view comments " );
780
780
Blog *blog = [self .resultsController objectAtIndexPath: [NSIndexPath indexPathForRow: (indexPath.section - 1 ) inSection: 0 ]];
781
781
cell.blog = blog;
782
782
cell.imageView .image = [UIImage imageNamed: @" sidebar_comments" ];
783
783
break ;
784
784
}
785
785
case 3 :
786
786
{
787
- title = NSLocalizedString(@" Stats" , @" " );
787
+ title = NSLocalizedString(@" Stats" , @" Menu item to view Jetpack stats associated with a blog " );
788
788
cell.imageView .image = [UIImage imageNamed: @" sidebar_stats" ];
789
789
break ;
790
790
}
791
791
case 4 :
792
792
{
793
- title = NSLocalizedString(@" View Site" , @" " );
793
+ title = NSLocalizedString(@" View Site" , @" Menu item to view the site in a an in-app web view " );
794
794
cell.imageView .image = [UIImage imageNamed: @" sidebar_view" ];
795
795
break ;
796
796
}
797
797
case 5 :
798
798
{
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" );
800
800
cell.imageView .image = [UIImage imageNamed: @" sidebar_dashboard" ];
801
801
break ;
802
802
}
0 commit comments