Ticket #13238: 13238.3.diff
File 13238.3.diff, 4.0 KB (added by , 15 years ago) |
---|
-
wp-admin/ms-themes.php
29 29 <form action="<?php echo esc_url( admin_url( 'ms-edit.php?action=updatethemes' ) ); ?>" method="post"> 30 30 <?php screen_icon(); ?> 31 31 <h2><?php _e( 'Network Themes' ) ?></h2> 32 <p><?php _e( ' Disable themes network-wide. You can enable themes on a site-by-site basis.' ) ?></p>32 <p><?php _e( 'Themes must be enabled for your network before they will be available to individual sites.' ) ?></p> 33 33 <table class="widefat"> 34 34 <thead> 35 35 <tr> 36 <th style="width:15%;text-align:center;"><?php _e( ' Active' ) ?></th>36 <th style="width:15%;text-align:center;"><?php _e( 'Enable' ) ?></th> 37 37 <th style="width:25%;"><?php _e( 'Theme' ) ?></th> 38 38 <th style="width:10%;"><?php _e( 'Version' ) ?></th> 39 39 <th style="width:60%;"><?php _e( 'Description' ) ?></th> … … 80 80 <p> 81 81 <?php printf( __( 'Themes Installed: %d' ), $total_theme_count); ?> 82 82 <br /> 83 <?php printf( __( 'Themes Activated: %d' ), $activated_themes_count); ?>83 <?php printf( __( 'Themes Enabled: %d' ), $activated_themes_count); ?> 84 84 </p> 85 85 </div> 86 86 -
wp-admin/themes.php
34 34 $help = '<p>' . __('Themes give your WordPress style. Once a theme is installed, you may preview it, activate it or deactivate it here.') . '</p>'; 35 35 if ( current_user_can('install_themes') ) { 36 36 $help .= '<p>' . sprintf(__('You can find additional themes for your site by using the new <a href="%1$s">Theme Browser/Installer</a> functionality or by browsing the <a href="http://wordpress.org/extend/themes/">WordPress Theme Directory</a> directly and installing manually. To install a theme <em>manually</em>, <a href="%2$s">upload its ZIP archive with the new uploader</a> or copy its folder via FTP into your <code>wp-content/themes</code> directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '</p>'; 37 $help .= '<p>' . __('Once a theme is uploaded, you should see it on this page.') . '</p>' ;37 $help .= '<p>' . __('Once a theme is uploaded, you should see it on this screen.') . '</p>' ; 38 38 } 39 39 40 40 add_contextual_help($current_screen, $help); … … 44 44 45 45 require_once('./admin-header.php'); 46 46 if ( is_multisite() && current_user_can('edit_themes') ) { 47 ?><div id="message0" class="updated"><p><?php _e('Administrator: new themes must be activated in the <a href="ms-themes.php">Themes Admin</a> page before they appear here.'); ?></p></div><?php47 ?><div id="message0" class="updated"><p><?php printf( __('Administrator: new themes must be activated in the <a href="%s">Network Themes</a> screen before they appear here.'), admin_url( 'ms-themes.php') ); ?></p></div><?php 48 48 } 49 49 ?> 50 50 … … 52 52 <div id="message1" class="updated"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div> 53 53 <?php elseif ( isset($_GET['activated']) ) : 54 54 if ( isset($wp_registered_sidebars) && count( (array) $wp_registered_sidebars ) ) { ?> 55 <div id="message2" class="updated"><p><?php printf( __('New theme activated. This theme supports widgets, please visit the <a href="%s">widgets settings page</a> to configure them.'), admin_url('widgets.php') ); ?></p></div><?php55 <div id="message2" class="updated"><p><?php printf( __('New theme activated. This theme supports widgets, please visit the <a href="%s">widgets settings</a> screen to configure them.'), admin_url( 'widgets.php' ) ); ?></p></div><?php 56 56 } else { ?> 57 <div id="message2" class="updated"><p><?php printf( __('New theme activated. <a href="%s">Visit site</a>'), get_bloginfo('url') . '/'); ?></p></div><?php57 <div id="message2" class="updated"><p><?php printf( __('New theme activated. <a href="%s">Visit site</a>'), home_url( '/ ' ) ); ?></p></div><?php 58 58 } 59 59 elseif ( isset($_GET['deleted']) ) : ?> 60 60 <div id="message3" class="updated"><p><?php _e('Theme deleted.') ?></p></div>