Make WordPress Core


Ignore:
Timestamp:
04/11/2010 10:41:54 AM (15 years ago)
Author:
dd32
Message:

Tweak new strings for better typography. Props demetris. Fixes #12962

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/ms-upgrade-network.php

    r13998 r14070  
    1111
    1212if ( !is_multisite() )
    13     wp_die( __('Multisite support is not enabled.') );
     13    wp_die( __( 'Multisite support is not enabled.' ) );
    1414
    1515require_once( ABSPATH . WPINC . '/http.php' );
    1616
    17 $title = __('Update Network');
     17$title = __( 'Update Network' );
    1818$parent_file = 'ms-admin.php';
    1919require_once('admin-header.php');
    2020
    2121if ( ! current_user_can( 'manage_network' ) )
    22     wp_die( __('You do not have permission to access this page.') );
     22    wp_die( __( 'You do not have permission to access this page.' ) );
    2323
    2424echo '<div class="wrap">';
    2525screen_icon();
    26 echo '<h2>'.__('Update Network').'</h2>';
     26echo '<h2>' . __( 'Update Network' ) . '</h2>';
    2727
    2828$action = isset($_GET['action']) ? $_GET['action'] : 'show';
     
    5555        }
    5656        echo "</ul>";
    57         ?><p><?php _e("If your browser doesn't start loading the next page automatically click this link:"); ?> <a class="button" href="ms-upgrade-network.php?action=upgrade&amp;n=<?php echo ($n + 5) ?>"><?php _e("Next Sites"); ?></a></p>
     57        ?><p><?php _e( 'If your browser doesn&#8217;t start loading the next page automatically, click this link:' ); ?> <a class="button" href="ms-upgrade-network.php?action=upgrade&amp;n=<?php echo ($n + 5) ?>"><?php _e("Next Sites"); ?></a></p>
    5858        <script type='text/javascript'>
    5959        <!--
     
    6767    case 'show':
    6868    default:
    69         ?><p><?php _e("You can update all the sites on your network through this page. It works by calling the update script of each site automatically. Hit the link below to update."); ?></p>
     69        ?><p><?php _e( 'You can update all the sites on your network through this page. It works by calling the update script of each site automatically. Hit the link below to update.' ); ?></p>
    7070        <p><a class="button" href="ms-upgrade-network.php?action=upgrade"><?php _e("Update Network"); ?></a></p><?php
    7171        do_action( 'wpmu_upgrade_page' );
Note: See TracChangeset for help on using the changeset viewer.