Changeset 5124
- Timestamp:
- 03/27/2007 11:54:48 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r5015 r5124 123 123 <li><a href="profile.php"><?php _e('Update your profile or change your password'); ?></a></li> 124 124 <?php if ( current_user_can('manage_links') ) : ?> 125 <li><a href="link-add.php"><?php _e('Add a bookmark to your blogroll'); ?></a></li>125 <li><a href="link-add.php"><?php _e('Add a link to your blogroll'); ?></a></li> 126 126 <?php endif; ?> 127 127 <?php if ( current_user_can('switch_themes') ) : ?> -
trunk/wp-includes/functions.php
r5117 r5124 1232 1232 $trans['moderate']['comments'] = array(__('Are you sure you want to moderate comments?'), false); 1233 1233 1234 $trans['add']['bookmark'] = array(__('Are you sure you want to add this bookmark?'), false);1235 $trans['delete']['bookmark'] = array(__('Are you sure you want to delete this bookmark: "%s"?'), 'use_id');1236 $trans['update']['bookmark'] = array(__('Are you sure you want to edit this bookmark: "%s"?'), 'use_id');1237 $trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify bookmarks?'), false);1234 $trans['add']['bookmark'] = array(__('Are you sure you want to add this link'), false); 1235 $trans['delete']['bookmark'] = array(__('Are you sure you want to delete this link: "%s"?'), 'use_id'); 1236 $trans['update']['bookmark'] = array(__('Are you sure you want to edit this link: "%s"?'), 'use_id'); 1237 $trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify links?'), false); 1238 1238 1239 1239 $trans['add']['page'] = array(__('Are you sure you want to add this page?'), false);
Note: See TracChangeset
for help on using the changeset viewer.