Changeset 4664
- Timestamp:
- 12/27/2006 12:51:00 AM (18 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-functions.php
r4659 r4664 562 562 function edit_link( $link_id = '' ) { 563 563 if (!current_user_can( 'manage_links' )) 564 wp_die( __( 'Cheatin& 8217; uh?' ));564 wp_die( __( 'Cheatin’ uh?' )); 565 565 566 566 $_POST['link_url'] = wp_specialchars( $_POST['link_url'] ); -
trunk/wp-admin/categories.php
r4658 r4664 35 35 // Don't delete the default cats. 36 36 if ( $cat_ID == get_option('default_category') ) 37 wp_die(sprintf(__("Can& 8217;t delete the <strong>%s</strong> category: this is the default one"), $cat_name));37 wp_die(sprintf(__("Can’t delete the <strong>%s</strong> category: this is the default one"), $cat_name)); 38 38 39 39 if ( $cat_ID == get_option('default_link_category') ) 40 wp_die(sprintf(__("Can& 8217;t delete the <strong>%s</strong> category: this is the default one for links"), $cat_name));40 wp_die(sprintf(__("Can’t delete the <strong>%s</strong> category: this is the default one for links"), $cat_name)); 41 41 42 42 wp_delete_category($cat_ID); -
trunk/wp-admin/export.php
r4658 r4664 15 15 <p><?php _e('When you click the button below WordPress will create an XML file for you to save to your computer.'); ?></p> 16 16 <p><?php _e('This format, which we call WordPress eXtended RSS or WXR, will contain your posts, comments, custom fields, and categories.'); ?></p> 17 <p><?php _e('Once you& 8217;ve saved the download file, you can use the Import function on another WordPress blog to import this blog.'); ?></p>17 <p><?php _e('Once you’ve saved the download file, you can use the Import function on another WordPress blog to import this blog.'); ?></p> 18 18 <form action="" method="get"> 19 19 <h3><?php _e('Optional options'); ?></h3> -
trunk/wp-admin/link-add.php
r4658 r4664 29 29 <div id="wp-link-bookmarklet" class="wrap"> 30 30 <h3><?php _e('Add Link Bookmarklet'); ?></h3> 31 <p><?php _e('Right click on the following link and choose "Bookmark This Link..." to create an add link shortcut. Right now this only works on Mozilla or Netscape, but we& 8217;re working on it.'); ?></p>31 <p><?php _e('Right click on the following link and choose "Bookmark This Link..." to create an add link shortcut. Right now this only works on Mozilla or Netscape, but we’re working on it.'); ?></p> 32 32 <?php printf('<p><a href="%s" title="'.__('Link add bookmarklet').'">'.__('Link This').'</a></p>', "javascript:void(linkmanpopup=window.open('" . get_option('siteurl') . "/wp-admin/link-add.php?action=popup&linkurl='+escape(location.href)+'&name='+escape(document.title),'LinkManager','scrollbars=yes,width=750,height=550,left=15,top=15,status=yes,resizable=yes'));linkmanpopup.focus();window.focus();linkmanpopup.focus();") ?> 33 33 </div> -
trunk/wp-admin/plugins.php
r4658 r4664 80 80 if (empty($plugins)) { 81 81 echo '<p>'; 82 _e("Couldn& 8217;t open plugins directory or there are no plugins available."); // TODO: make more helpful82 _e("Couldn’t open plugins directory or there are no plugins available."); // TODO: make more helpful 83 83 echo '</p>'; 84 84 } else {
Note: See TracChangeset
for help on using the changeset viewer.