Changeset 405
- Timestamp:
- 06/24/09 20:59:12 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/superbook/trunk/Classes/FriendsMapViewController.m
r404 r405 127 127 128 128 - (IBAction)didPressMoveTo:(id)sender { 129 UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle: @"Move Map To:"129 UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:LocStr(@"Move Map To:") 130 130 delegate:self 131 131 cancelButtonTitle:nil … … 133 133 otherButtonTitles:nil]; 134 134 if (gpsLocIsAvailable) { 135 moveToGPSButtonIndex = [actionSheet addButtonWithTitle: @"Current location (GPS)"];135 moveToGPSButtonIndex = [actionSheet addButtonWithTitle:LocStr(@"Current location (GPS)")]; 136 136 } else { 137 137 moveToGPSButtonIndex = -1; 138 138 } 139 actionSheet.cancelButtonIndex = [actionSheet addButtonWithTitle: @"Cancel"];139 actionSheet.cancelButtonIndex = [actionSheet addButtonWithTitle:LocStr(@"Cancel")]; 140 140 [actionSheet showFromToolbar:actionBar]; 141 141 [actionSheet release];








