Make WordPress Core

Changeset 5124


Ignore:
Timestamp:
03/27/2007 11:54:48 PM (18 years ago)
Author:
ryan
Message:

Change bookmark to link. Props foolswisdom. fixes #3143

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/index.php

    r5015 r5124  
    123123    <li><a href="profile.php"><?php _e('Update your profile or change your password'); ?></a></li>
    124124<?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>
    126126<?php endif; ?>
    127127<?php if ( current_user_can('switch_themes') ) : ?>
  • trunk/wp-includes/functions.php

    r5117 r5124  
    12321232        $trans['moderate']['comments'] = array(__('Are you sure you want to moderate comments?'), false);
    12331233
    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: &quot;%s&quot;?'), 'use_id');
    1236         $trans['update']['bookmark'] = array(__('Are you sure you want to edit this bookmark: &quot;%s&quot;?'), '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: &quot;%s&quot;?'), 'use_id');
     1236        $trans['update']['bookmark'] = array(__('Are you sure you want to edit this link: &quot;%s&quot;?'), 'use_id');
     1237        $trans['bulk']['bookmarks'] = array(__('Are you sure you want to bulk modify links?'), false);
    12381238
    12391239        $trans['add']['page'] = array(__('Are you sure you want to add this page?'), false);
Note: See TracChangeset for help on using the changeset viewer.