Make WordPress Core

Ticket #8714: patch.2.diff

File patch.2.diff, 33.3 KB (added by jordie23, 16 years ago)
  • wp-login.php

     
    149149        $message .= site_url("wp-login.php?action=rp&key=$key", 'login') . "\r\n";
    150150
    151151        if ( !wp_mail($user_email, sprintf(__('[%s] Password Reset'), get_option('blogname')), $message) )
    152                 die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') . '</p>');
     152                die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') . '</p>');
    153153
    154154        return true;
    155155}
     
    184184        $message .= site_url('wp-login.php', 'login') . "\r\n";
    185185
    186186        if (  !wp_mail($user->user_email, sprintf(__('[%s] Your new password'), get_option('blogname')), $message) )
    187                 die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function...') . '</p>');
     187                die('<p>' . __('The e-mail could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') . '</p>');
    188188
    189189        wp_password_change_notification($user);
    190190
     
    232232        $user_pass = wp_generate_password();
    233233        $user_id = wp_create_user( $user_login, $user_pass, $user_email );
    234234        if ( !$user_id ) {
    235                 $errors->add('registerfail', sprintf(__('<strong>ERROR</strong>: Couldn&#8217;t register you... please contact the <a href="mailto:%s">webmaster</a> !'), get_option('admin_email')));
     235                $errors->add('registerfail', sprintf(__('<strong>ERROR</strong>: Couldn&#8217;t register you. Please contact the <a href="mailto:%s">webmaster</a> !'), get_option('admin_email')));
    236236                return $errors;
    237237        }
    238238
  • wp-includes/post-template.php

     
    180180        global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;
    181181
    182182        if ( null === $more_link_text )
    183                 $more_link_text = __( '(more...)' );
     183                $more_link_text = __( '(more&#8230;)' );
    184184
    185185        $output = '';
    186186
  • wp-includes/post.php

     
    19261926                $excerpt = strip_tags($post_excerpt ? $post_excerpt : $post_content);
    19271927
    19281928                if (strlen($excerpt) > 255) {
    1929                         $excerpt = substr($excerpt,0,252) . '...';
     1929                        $excerpt = substr($excerpt,0,252) . '&#8230;';
    19301930                }
    19311931
    19321932                $trackback_urls = explode(',', $tb_list);
  • wp-includes/comment.php

     
    13491349        else
    13501350                $excerpt = apply_filters('the_excerpt', $post->post_excerpt);
    13511351        $excerpt = str_replace(']]>', ']]&gt;', $excerpt);
    1352         $excerpt = wp_html_excerpt($excerpt, 252) . '...';
     1352        $excerpt = wp_html_excerpt($excerpt, 252) . '&#8230;';
    13531353
    13541354        $post_title = apply_filters('the_title', $post->post_title);
    13551355        $post_title = strip_tags($post_title);
  • wp-includes/comment-template.php

     
    397397        for ($i=0; $i<$k; $i++) {
    398398                $excerpt .= $blah[$i] . ' ';
    399399        }
    400         $excerpt .= ($use_dotdotdot) ? '...' : '';
     400        $excerpt .= ($use_dotdotdot) ? '&#8230;' : '';
    401401        return apply_filters('get_comment_excerpt', $excerpt);
    402402}
    403403
  • wp-includes/formatting.php

     
    16381638                $words = explode(' ', $text, $excerpt_length + 1);
    16391639                if (count($words) > $excerpt_length) {
    16401640                        array_pop($words);
    1641                         array_push($words, '[...]');
     1641                        array_push($words, '[&#8230;]');
    16421642                        $text = implode(' ', $words);
    16431643                }
    16441644        }
  • wp-includes/general-template.php

     
    18171817                                $page_links[] = "<a class='page-numbers' href='" . clean_url($link) . "'>$n_display</a>";
    18181818                                $dots = true;
    18191819                        elseif ( $dots && !$show_all ) :
    1820                                 $page_links[] = "<span class='page-numbers dots'>...</span>";
     1820                                $page_links[] = "<span class='page-numbers dots'>&#8230;</span>";
    18211821                                $dots = false;
    18221822                        endif;
    18231823                endif;
  • wp-includes/pluggable.php

     
    953953                $notify_message  = sprintf( __('New pingback on your post #%1$s "%2$s"'), $comment->comment_post_ID, $post->post_title ) . "\r\n";
    954954                $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
    955955                $notify_message .= sprintf( __('URL    : %s'), $comment->comment_author_url ) . "\r\n";
    956                 $notify_message .= __('Excerpt: ') . "\r\n" . sprintf('[...] %s [...]', $comment->comment_content ) . "\r\n\r\n";
     956                $notify_message .= __('Excerpt: ') . "\r\n" . sprintf('[&#8230;] %s [&#8230;]', $comment->comment_content ) . "\r\n\r\n";
    957957                $notify_message .= __('You can see all pingbacks on this post here: ') . "\r\n";
    958958                $subject = sprintf( __('[%1$s] Pingback: "%2$s"'), $blogname, $post->post_title );
    959959        }
  • wp-includes/feed.php

     
    159159 * @param int $cut Optional. Amount of words to keep for the content.
    160160 * @param int $encode_html Optional. How to encode the content.
    161161 */
    162 function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
     162function the_content_rss($more_link_text='(more&#8230;)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) {
    163163        $content = get_the_content($more_link_text, $stripteaser, $more_file);
    164164        $content = apply_filters('the_content_rss', $content);
    165165        if ( $cut && !$encode_html )
     
    185185                /** @todo Check performance, might be faster to use array slice instead. */
    186186                for ( $i=0; $i<$k; $i++ )
    187187                        $excerpt .= $blah[$i].' ';
    188                 $excerpt .= ($use_dotdotdot) ? '...' : '';
     188                $excerpt .= ($use_dotdotdot) ? '&#8230;' : '';
    189189                $content = $excerpt;
    190190        }
    191191        $content = str_replace(']]>', ']]&gt;', $content);
  • xmlrpc.php

     
    33093309
    33103310                                // prevent really long link text
    33113311                                if ( strlen($context[1]) > 100 )
    3312                                         $context[1] = substr($context[1], 0, 100) . '...';
     3312                                        $context[1] = substr($context[1], 0, 100) . '&#8230;';
    33133313
    33143314                                $marker = '<wpcontext>'.$context[1].'</wpcontext>';    // set up our marker
    33153315                                $excerpt= str_replace($context[0], $marker, $excerpt); // swap out the link for our marker
     
    33273327
    33283328                $pagelinkedfrom = str_replace('&', '&amp;', $pagelinkedfrom);
    33293329
    3330                 $context = '[...] ' . wp_specialchars( $excerpt ) . ' [...]';
     3330                $context = '[&#8230;] ' . wp_specialchars( $excerpt ) . ' [&#8230;]';
    33313331                $pagelinkedfrom = $wpdb->escape( $pagelinkedfrom );
    33323332
    33333333                $comment_post_ID = (int) $post_ID;
  • wp-content/themes/classic/index.php

     
    1515        <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
    1616
    1717        <div class="storycontent">
    18                 <?php the_content(__('(more...)')); ?>
     18                <?php the_content(__('(more&#8230;)')); ?>
    1919        </div>
    2020
    2121        <div class="feedback">
  • wp-trackback.php

     
    8787        if ( !pings_open($tb_id) )
    8888                trackback_response(1, 'Sorry, trackbacks are closed for this item.');
    8989
    90         $title =  wp_html_excerpt( $title, 250 ).'...';
    91         $excerpt = wp_html_excerpt( $excerpt, 252 ).'...';
     90        $title =  wp_html_excerpt( $title, 250 ).'&#8230;';
     91        $excerpt = wp_html_excerpt( $excerpt, 252 ).'&#8230;';
    9292
    9393        $comment_post_ID = (int) $tb_id;
    9494        $comment_author = $blog_name;
  • readme.html

     
    5858<ul>
    5959        <li>PHP version <strong>4.3</strong> or higher.</li>
    6060        <li>MySQL version <strong>4.0</strong> or higher.</li>
    61         <li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
     61        <li>&#8230; and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
    6262</ul>
    6363<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/caf&eacute;log</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
    6464
  • wp-admin/includes/dashboard.php

     
    639639                        $publisher = "<strong>$publisher</strong>";
    640640
    641641                $content = $item->get_content();
    642                 $content = wp_html_excerpt($content, 50) . ' ...';
     642                $content = wp_html_excerpt($content, 50) . ' &#8230;';
    643643
    644644                if ( $link )
    645645                        /* translators: incoming links feed, %1$s is other person, %3$s is content */
  • wp-admin/includes/misc.php

     
    192192        if ('/' == substr( $short_url, -1 ))
    193193                $short_url = substr( $short_url, 0, -1 );
    194194        if ( strlen( $short_url ) > 35 )
    195                 $short_url = substr( $short_url, 0, 32 ).'...';
     195                $short_url = substr( $short_url, 0, 32 ).'&#8230;';
    196196        return $short_url;
    197197}
    198198
  • wp-admin/includes/template.php

     
    18601860        if ('/' == substr( $short_url, -1 ))
    18611861                $short_url = substr( $short_url, 0, -1 );
    18621862        if ( strlen( $short_url ) > 35 )
    1863                 $short_url = substr( $short_url, 0, 32 ).'...';
     1863                $short_url = substr( $short_url, 0, 32 ).'&#8230;';
    18641864        $numposts = get_usernumposts( $user_object->ID );
    18651865        $checkbox = '';
    18661866        // Check if the user for this row is editable
     
    20562056        $author_url_display = str_replace('http://www.', '', $author_url_display);
    20572057        $author_url_display = str_replace('http://', '', $author_url_display);
    20582058        if ( strlen($author_url_display) > 50 )
    2059                 $author_url_display = substr($author_url_display, 0, 49) . '...';
     2059                $author_url_display = substr($author_url_display, 0, 49) . '&#8230;';
    20602060
    20612061        $ptime = date('G', strtotime( $comment->comment_date ) );
    20622062        if ( ( abs(time() - $ptime) ) < 86400 )
  • wp-admin/post.php

     
    208208
    209209        if ( $post->post_type == 'attachment' ) {
    210210                if ( ! wp_delete_attachment($post_id) )
    211                         wp_die( __('Error in deleting...') );
     211                        wp_die( __('Error deleting attachment.') );
    212212        } else {
    213213                if ( !wp_delete_post($post_id) )
    214                         wp_die( __('Error in deleting...') );
     214                        wp_die( __('Error deleting post.') );
    215215        }
    216216
    217217        $sendback = wp_get_referer();
  • wp-admin/theme-editor.php

     
    9494                        $functions = wp_doc_link_parse( $content );
    9595
    9696                        $docs_select = '<select name="docs-list" id="docs-list">';
    97                         $docs_select .= '<option value="">' . __( 'Function Name...' ) . '</option>';
     97                        $docs_select .= '<option value="">' . __( 'Function Name&#8230;' ) . '</option>';
    9898                        foreach ( $functions as $function ) {
    9999                                $docs_select .= '<option value="' . urlencode( $function ) . '">' . htmlspecialchars( $function ) . '()</option>';
    100100                        }
  • wp-admin/import/livejournal.php

     
    274274                update_option( 'ljapi_total', $total );
    275275                update_option( 'ljapi_count', $count );
    276276
    277                 echo '<p>' . __( 'Post metadata has been downloaded, proceeding with posts...' ) . '</p>';
     277                echo '<p>' . __( 'Post metadata has been downloaded, proceeding with posts&#8230;' ) . '</p>';
    278278        }
    279279
    280280        function download_post_bodies() {
     
    374374                if ( $post_id = post_exists( $post_title, $post_content, $post_date ) ) {
    375375                        printf( __( 'Post <strong>%s</strong> already exists.' ), stripslashes( $post_title ) );
    376376                } else {
    377                         printf( __( 'Imported post <strong>%s</strong>...' ), stripslashes( $post_title ) );
     377                        printf( __( 'Imported post <strong>%s</strong>&#8230;' ), stripslashes( $post_title ) );
    378378                        $postdata = compact( 'post_author', 'post_date', 'post_content', 'post_title', 'post_status', 'post_password', 'tags_input', 'comment_status' );
    379379                        $post_id = wp_insert_post( $postdata, true );
    380380                        if ( is_wp_error( $post_id ) ) {
     
    486486                update_option( 'ljapi_maxid',      $maxid );
    487487                update_option( 'ljapi_highest_id', $highest_id );
    488488
    489                 echo '<p>' . __( ' Comment metadata downloaded successfully, proceeding with comment bodies...' ) . '</p>';
     489                echo '<p>' . __( ' Comment metadata downloaded successfully, proceeding with comment bodies&#8230;' ) . '</p>';
    490490
    491491                return true;
    492492        }
     
    778778
    779779                echo '<div id="ljapi-status">';
    780780                echo '<h3>' . __( 'Importing Posts' ) . '</h3>';
    781                 echo '<p>' . __( "We're downloading and importing your LiveJournal posts..." ) . '</p>';
     781                echo '<p>' . __( "We're downloading and importing your LiveJournal posts&#8230;" ) . '</p>';
    782782                if ( get_option( 'ljapi_post_batch' ) && count( get_option( 'ljapi_sync_item_times' ) ) ) {
    783783                        $batch = count( get_option( 'ljapi_sync_item_times' ) );
    784784                        $batch = $count > 300 ? ceil( $batch / 300 ) : 1;
     
    838838
    839839                echo '<div id="ljapi-status">';
    840840                echo '<h3>' . __( 'Downloading Comments' ) . '</h3>';
    841                 echo '<p>' . __( 'Now we will download your comments so we can import them (this could take a <strong>long</strong> time if you have lots of comments)...' ) . '</p>';
     841                echo '<p>' . __( 'Now we will download your comments so we can import them (this could take a <strong>long</strong> time if you have lots of comments)&#8230;' ) . '</p>';
    842842                ob_flush(); flush();
    843843
    844844                if ( !get_option( 'ljapi_usermap' ) ) {
     
    886886
    887887                echo '<div id="ljapi-status">';
    888888                echo '<h3>' . __( 'Threading Comments' ) . '</h3>';
    889                 echo '<p>' . __( 'We are now re-building the threading of your comments (this can also take a while if you have lots of comments)...' ) . '</p>';
     889                echo '<p>' . __( 'We are now re-building the threading of your comments (this can also take a while if you have lots of comments)&#8230;' ) . '</p>';
    890890                ob_flush(); flush();
    891891
    892892                // Only bother adding indexes if they have over 5000 comments (arbitrary number)
  • wp-admin/import/dotclear.php

     
    288288                // Do the Magic
    289289                if(is_array($categories))
    290290                {
    291                         echo '<p>'.__('Importing Categories...').'<br /><br /></p>';
     291                        echo '<p>'.__('Importing Categories&#8230;').'<br /><br /></p>';
    292292                        foreach ($categories as $category)
    293293                        {
    294294                                $count++;
     
    329329                // Midnight Mojo
    330330                if(is_array($users))
    331331                {
    332                         echo '<p>'.__('Importing Users...').'<br /><br /></p>';
     332                        echo '<p>'.__('Importing Users&#8230;').'<br /><br /></p>';
    333333                        foreach($users as $user)
    334334                        {
    335335                                $count++;
     
    406406                // Do the Magic
    407407                if(is_array($posts))
    408408                {
    409                         echo '<p>'.__('Importing Posts...').'<br /><br /></p>';
     409                        echo '<p>'.__('Importing Posts&#8230;').'<br /><br /></p>';
    410410                        foreach($posts as $post)
    411411                        {
    412412                                $count++;
     
    504504                // Magic Mojo
    505505                if(is_array($comments))
    506506                {
    507                         echo '<p>'.__('Importing Comments...').'<br /><br /></p>';
     507                        echo '<p>'.__('Importing Comments&#8230;').'<br /><br /></p>';
    508508                        foreach($comments as $comment)
    509509                        {
    510510                                $count++;
     
    575575                // Deal with the links
    576576                if(is_array($links))
    577577                {
    578                         echo '<p>'.__('Importing Links...').'<br /><br /></p>';
     578                        echo '<p>'.__('Importing Links&#8230;').'<br /><br /></p>';
    579579                        foreach($links as $link)
    580580                        {
    581581                                $count++;
     
    714714                echo '<h3>'.__('Preserving Authors').'</h3>';
    715715                echo '<p>'.__('Secondly, we have attempted to preserve post authors.  If you are the only author or contributor to your blog, then you are safe.  In most cases, we are successful in this preservation endeavor.  However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user.').'</p>';
    716716                echo '<h3>'.__('Textile').'</h3>';
    717                 echo '<p>'.__('Also, since you\'re coming from DotClear, you probably have been using Textile to format your comments and posts.  If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/category/development/wordpress/textile/">Textile for WordPress</a>.  Trust me... You\'ll want it.').'</p>';
     717                echo '<p>'.__('Also, since you\'re coming from DotClear, you probably have been using Textile to format your comments and posts.  If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/category/development/wordpress/textile/">Textile for WordPress</a>.  Trust me&#8230; You\'ll want it.').'</p>';
    718718                echo '<h3>'.__('WordPress Resources').'</h3>';
    719719                echo '<p>'.__('Finally, there are numerous WordPress resources around the internet.  Some of them are:').'</p>';
    720720                echo '<ul>';
  • wp-admin/import/blogware.php

     
    102102                        if ($post_id = post_exists($post_title, $post_content, $post_date)) {
    103103                                printf(__('Post <em>%s</em> already exists.'), stripslashes($post_title));
    104104                        } else {
    105                                 printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
     105                                printf(__('Importing post <em>%s</em>&#8230;'), stripslashes($post_title));
    106106                                $postdata = compact('post_author', 'post_date', 'post_content', 'post_title', 'post_status');
    107107                                $post_id = wp_insert_post($postdata);
    108108                                if ( is_wp_error( $post_id ) ) {
  • wp-admin/import/opml.php

     
    8181?>
    8282<div class="wrap">
    8383
    84 <h2><?php _e('Importing...') ?></h2>
     84<h2><?php _e('Importing&#8230;') ?></h2>
    8585<?php
    8686                $cat_id = abs( (int) $_POST['cat_id'] );
    8787                if ( $cat_id < 1 )
  • wp-admin/import/rss.php

     
    118118                echo '<ol>';
    119119
    120120                foreach ($this->posts as $post) {
    121                         echo "<li>".__('Importing post...');
     121                        echo "<li>".__('Importing post&#8230;');
    122122
    123123                        extract($post);
    124124
  • wp-admin/import/wp-cat2tag.php

     
    252252                                echo '<li>' . sprintf( __('Category %s doesn\'t exist!'),  $cat_id ) . "</li>\n";
    253253                        } else {
    254254                                $category =& get_category($cat_id);
    255                                 echo '<li>' . sprintf(__('Converting category <strong>%s</strong> ... '),  $category->name);
     255                                echo '<li>' . sprintf(__('Converting category <strong>%s</strong> &#8230; '),  $category->name);
    256256
    257257                                // If the category is the default, leave category in place and create tag.
    258258                                if ( $default_cat == $category->term_id ) {
     
    362362                        $tag_id = (int) $tag_id;
    363363
    364364                        if ( $tag = get_term( $tag_id, 'post_tag' ) ) {
    365                                 printf('<li>' . __('Converting tag <strong>%s</strong> ... '),  $tag->name);
     365                                printf('<li>' . __('Converting tag <strong>%s</strong> &#8230; '),  $tag->name);
    366366
    367367                                if ( $cat_ttid = $wpdb->get_var( $wpdb->prepare("SELECT term_taxonomy_id FROM $wpdb->term_taxonomy WHERE term_id = %d AND taxonomy = 'category'", $tag->term_id) ) ) {
    368368                                        $objects_ids = get_objects_in_term($tag->term_id, 'post_tag');
  • wp-admin/import/mt.php

     
    251251                        printf(__('Post <em>%s</em> already exists.'), stripslashes($post->post_title));
    252252                } else {
    253253                        echo '<li>';
    254                         printf(__('Importing post <em>%s</em>...'), stripslashes($post->post_title));
     254                        printf(__('Importing post <em>%s</em>&#8230;'), stripslashes($post->post_title));
    255255
    256256                        if ( '' != trim( $post->extended ) )
    257257                                        $post->post_content .= "\n<!--more-->\n$post->extended";
     
    269269                         // Add tags or keywords
    270270                        if ( 1 < strlen($post->post_keywords) ) {
    271271                                // Keywords exist.
    272                                 printf(__('<br />Adding tags <i>%s</i>...'), stripslashes($post->post_keywords));
     272                                printf(__('<br />Adding tags <i>%s</i>&#8230;'), stripslashes($post->post_keywords));
    273273                                wp_add_post_tags($post_id, $post->post_keywords);
    274274                        }
    275275                }
  • wp-admin/import/blogger.php

     
    192192//echo '<pre>'.print_r($this,1).'</pre>';
    193193                $start    = js_escape( __('Import') );
    194194                $continue = js_escape( __('Continue') );
    195                 $stop     = js_escape( __('Importing...') );
     195                $stop     = js_escape( __('Importing&#8230;') );
    196196                $authors  = js_escape( __('Set Authors') );
    197                 $loadauth = js_escape( __('Preparing author mapping form...') );
     197                $loadauth = js_escape( __('Preparing author mapping form&#8230;') );
    198198                $authhead = js_escape( __('Final Step: Author Mapping') );
    199199                $nothing  = js_escape( __('Nothing was imported. Had you already imported this blog?') );
    200200                $title    = __('Blogger Blogs');
  • wp-admin/import/textpattern.php

     
    177177                // Do the Magic
    178178                if(is_array($categories))
    179179                {
    180                         echo '<p>'.__('Importing Categories...').'<br /><br /></p>';
     180                        echo '<p>'.__('Importing Categories&#8230;').'<br /><br /></p>';
    181181                        foreach ($categories as $category)
    182182                        {
    183183                                $count++;
     
    218218                // Midnight Mojo
    219219                if(is_array($users))
    220220                {
    221                         echo '<p>'.__('Importing Users...').'<br /><br /></p>';
     221                        echo '<p>'.__('Importing Users&#8230;').'<br /><br /></p>';
    222222                        foreach($users as $user)
    223223                        {
    224224                                $count++;
     
    293293                // Do the Magic
    294294                if(is_array($posts))
    295295                {
    296                         echo '<p>'.__('Importing Posts...').'<br /><br /></p>';
     296                        echo '<p>'.__('Importing Posts&#8230;').'<br /><br /></p>';
    297297                        foreach($posts as $post)
    298298                        {
    299299                                $count++;
     
    382382                // Magic Mojo
    383383                if(is_array($comments))
    384384                {
    385                         echo '<p>'.__('Importing Comments...').'<br /><br /></p>';
     385                        echo '<p>'.__('Importing Comments&#8230;').'<br /><br /></p>';
    386386                        foreach($comments as $comment)
    387387                        {
    388388                                $count++;
     
    450450                // Deal with the links
    451451                if(is_array($links))
    452452                {
    453                         echo '<p>'.__('Importing Links...').'<br /><br /></p>';
     453                        echo '<p>'.__('Importing Links&#8230;').'<br /><br /></p>';
    454454                        foreach($links as $link)
    455455                        {
    456456                                $count++;
     
    586586                echo '<h3>'.__('Preserving Authors').'</h3>';
    587587                echo '<p>'.__('Secondly, we have attempted to preserve post authors.  If you are the only author or contributor to your blog, then you are safe.  In most cases, we are successful in this preservation endeavor.  However, if we cannot ascertain the name of the writer due to discrepancies between database tables, we assign it to you, the administrative user.').'</p>';
    588588                echo '<h3>'.__('Textile').'</h3>';
    589                 echo '<p>'.__('Also, since you&#8217;re coming from Textpattern, you probably have been using Textile to format your comments and posts.  If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/category/development/wordpress/textile/">Textile for WordPress</a>.  Trust me... You&#8217;ll want it.').'</p>';
     589                echo '<p>'.__('Also, since you&#8217;re coming from Textpattern, you probably have been using Textile to format your comments and posts.  If this is the case, we recommend downloading and installing <a href="http://www.huddledmasses.org/category/development/wordpress/textile/">Textile for WordPress</a>.  Trust me&#8230; You&#8217;ll want it.').'</p>';
    590590                echo '<h3>'.__('WordPress Resources').'</h3>';
    591591                echo '<p>'.__('Finally, there are numerous WordPress resources around the internet.  Some of them are:').'</p>';
    592592                echo '<ul>';
  • wp-admin/import/greymatter.php

     
    108108
    109109                $this->header();
    110110?>
    111 <p><?php _e('The importer is running...') ?></p>
     111<p><?php _e('The importer is running&#8230;') ?></p>
    112112<ul>
    113 <li><?php _e('importing users...') ?><ul><?php
     113<li><?php _e('importing users&#8230;') ?><ul><?php
    114114
    115115        chdir($gmpath);
    116116        $userbase = file("gm-authors.cgi");
     
    143143                $user_id = wp_insert_user($user_info);
    144144                $this->gmnames[$userdata[0]] = $user_id;
    145145
    146                 printf('<li>'.__('user %s...').' <strong>'.__('Done').'</strong></li>', "<em>$user_login</em>");
     146                printf('<li>'.__('user %s&#8230;').' <strong>'.__('Done').'</strong></li>', "<em>$user_login</em>");
    147147        }
    148148
    149149?></ul><strong><?php _e('Done') ?></strong></li>
    150 <li><?php _e('importing posts, comments, and karma...') ?><br /><ul><?php
     150<li><?php _e('importing posts, comments, and karma&#8230;') ?><br /><ul><?php
    151151
    152152        chdir($archivespath);
    153153
     
    291291                                        printf( _n( 'ignored %s pre-existing comment', 'ignored %s pre-existing comments', $preExisting ) , $preExisting);
    292292                                }
    293293                        }
    294                         echo '... <strong>'.__('Done').'</strong></li>';
     294                        echo '&#8230; <strong>'.__('Done').'</strong></li>';
    295295                }
    296296        }
    297297        do_action('import_done', 'greymatter');
  • wp-admin/import/wordpress.php

     
    445445                                        return $post_id;
    446446                        }
    447447                        else {
    448                                 printf(__('Importing post <em>%s</em>...'), stripslashes($post_title));
     448                                printf(__('Importing post <em>%s</em>&#8230;'), stripslashes($post_title));
    449449                                $comment_post_ID = $post_id = wp_insert_post($postdata);
    450450                        }
    451451
     
    557557
    558558        function process_attachment($postdata, $remote_url) {
    559559                if ($this->fetch_attachments and $remote_url) {
    560                         printf( __('Importing attachment <em>%s</em>... '), htmlspecialchars($remote_url) );
     560                        printf( __('Importing attachment <em>%s</em>&#8230; '), htmlspecialchars($remote_url) );
    561561
    562562                        // If the URL is absolute, but does not contain http, upload it assuming the base_site_url variable
    563563                        if ( preg_match('/^\/[\w\W]+$/', $remote_url) )
  • wp-admin/upload.php

     
    8181
    8282                        if ( $post_del->post_type == 'attachment' )
    8383                                if ( ! wp_delete_attachment($post_id_del) )
    84                                         wp_die( __('Error in deleting...') );
     84                                        wp_die( __('Error deleting attachment.') );
    8585                }
    8686
    8787                $location = 'upload.php';
  • wp-admin/tools.php

     
    2626        <div id="gears-msg1">
    2727        <h3 class="title"><?php _e('Turbo:'); ?> <?php _e('Speed up WordPress'); ?></h3>
    2828        <p><?php _e('WordPress now has support for Gears, which adds new features to your web browser.'); ?><br />
    29         <a href="http://gears.google.com/" target="_blank" style="font-weight:normal;"><?php _e('More information...'); ?></a></p>
     29        <a href="http://gears.google.com/" target="_blank" style="font-weight:normal;"><?php _e('More information&#8230;'); ?></a></p>
    3030        <p><?php _e('After you install and enable Gears, most of WordPress&#8217; images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.'); ?></p>
    3131        <p><strong><?php _e('Don&#8217;t install on a public or shared computer.'); ?></strong></p>
    3232        <div class="buttons"><button onclick="window.location = 'http://gears.google.com/?action=install&amp;return=<?php echo urlencode( admin_url() ); ?>';" class="button"><?php _e('Install Now'); ?></button></div>
  • wp-admin/edit.php

     
    3434
    3535                                        if ( $post_del->post_type == 'attachment' ) {
    3636                                                if ( ! wp_delete_attachment($post_id_del) )
    37                                                         wp_die( __('Error in deleting...') );
     37                                                        wp_die( __('Error deleting attachment.') );
    3838                                        } else {
    3939                                                if ( !wp_delete_post($post_id_del) )
    40                                                         wp_die( __('Error in deleting...') );
     40                                                        wp_die( __('Error deleting post.') );
    4141                                        }
    4242                                        $deleted++;
    4343                                }
  • wp-admin/press-this.php

     
    395395                                return false;
    396396                                break;
    397397                        case 'photo' :
    398                                 jQuery('#extra_fields').before('<p id="waiting"><img src="images/loading.gif" alt="" /> <?php echo js_escape( __( 'Loading...' ) ); ?></p>');
     398                                jQuery('#extra_fields').before('<p id="waiting"><img src="images/loading.gif" alt="" /> <?php echo js_escape( __( 'Loading&#8230;' ) ); ?></p>');
    399399                                jQuery.ajax({
    400400                                        type: "GET",
    401401                                        cache : false,
  • wp-admin/setup-config.php

     
    114114                <tr>
    115115                        <th scope="row"><label for="pwd">Password</label></th>
    116116                        <td><input name="pwd" id="pwd" type="text" size="25" value="password" /></td>
    117                         <td>...and MySQL password.</td>
     117                        <td>&#8230;and MySQL password.</td>
    118118                </tr>
    119119                <tr>
    120120                        <th scope="row"><label for="dbhost">Database Host</label></th>
  • wp-admin/link-manager.php

     
    172172                if ('/' == substr($short_url, -1))
    173173                        $short_url = substr($short_url, 0, -1);
    174174                if (strlen($short_url) > 35)
    175                         $short_url = substr($short_url, 0, 32).'...';
     175                        $short_url = substr($short_url, 0, 32).'&#8230;';
    176176                $visible = ($link->link_visible == 'Y') ? __('Yes') : __('No');
    177177                $style = ($alt % 2) ? '' : ' class="alternate"';
    178178                ++ $alt;
  • wp-admin/page.php

     
    167167
    168168        if ( $page->post_type == 'attachment' ) {
    169169                if ( ! wp_delete_attachment($page_id) )
    170                         wp_die( __('Error in deleting...') );
     170                        wp_die( __('Error deleting attachment.') );
    171171        } else {
    172172                if ( !wp_delete_post($page_id) )
    173                         wp_die( __('Error in deleting...') );
     173                        wp_die( __('Error deleting post.') );
    174174        }
    175175
    176176        $sendback = wp_get_referer();
  • wp-admin/plugin-editor.php

     
    114114                        $functions = wp_doc_link_parse( $content );
    115115
    116116                        $docs_select = '<select name="docs-list" id="docs-list">';
    117                         $docs_select .= '<option value="">' . __( 'Function Name...' ) . '</option>';
     117                        $docs_select .= '<option value="">' . __( 'Function Name&#8230;' ) . '</option>';
    118118                        foreach ( $functions as $function) {
    119119                                $docs_select .= '<option value="' . attribute_escape( $function ) . '">' . htmlspecialchars( $function ) . '()</option>';
    120120                        }
  • wp-admin/edit-pages.php

     
    2626
    2727                                        if ( $post_del->post_type == 'attachment' ) {
    2828                                                if ( ! wp_delete_attachment($post_id_del) )
    29                                                         wp_die( __('Error in deleting...') );
     29                                                        wp_die( __('Error deleting attachment.') );
    3030                                        } else {
    3131                                                if ( !wp_delete_post($post_id_del) )
    32                                                         wp_die( __('Error in deleting...') );
     32                                                        wp_die( __('Error deleting post.') );
    3333                                        }
    3434                                        $deleted++;
    3535                                }