Ticket #15656: 15156.diff
File 15156.diff, 2.6 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/media.php
1544 1544 <div class="clear"></div> 1545 1545 <p class="media-upload-size"><?php printf( __( 'Maximum upload file size: %d%s' ), $upload_size_unit, $sizes[$u] ); ?></p> 1546 1546 <?php if ( is_lighttpd_before_150() ): ?> 1547 <p><?php _e('If you want to use all capabilities of the uploader, like uploading multiple files at once, please up grade to lighttpd 1.5.'); ?></p>1547 <p><?php _e('If you want to use all capabilities of the uploader, like uploading multiple files at once, please update to lighttpd 1.5.'); ?></p> 1548 1548 <?php endif;?> 1549 1549 <?php do_action('post-html-upload-ui', $flash); ?> 1550 1550 </div> -
wp-admin/includes/theme.php
239 239 $theme_name = is_object($theme) ? $theme->name : (is_array($theme) ? $theme['Name'] : ''); 240 240 $details_url = add_query_arg(array('TB_iframe' => 'true', 'width' => 1024, 'height' => 800), $update['url']); //Theme browser inside WP? replace this, Also, theme preview JS will override this on the available list. 241 241 $update_url = wp_nonce_url('update.php?action=upgrade-theme&theme=' . urlencode($stylesheet), 'upgrade-theme_' . $stylesheet); 242 $update_onclick = 'onclick="if ( confirm(\'' . esc_js( __("Updating this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to up grade.") ) . '\') ) {return true;}return false;"';242 $update_onclick = 'onclick="if ( confirm(\'' . esc_js( __("Updating this theme will lose any customizations you have made. 'Cancel' to stop, 'OK' to update.") ) . '\') ) {return true;}return false;"'; 243 243 244 244 if ( !is_multisite() ) { 245 245 if ( ! current_user_can('update_themes') ) -
wp-admin/update.php
51 51 52 52 check_admin_referer('upgrade-plugin_' . $plugin); 53 53 54 $title = __('Up grade Plugin');54 $title = __('Update Plugin'); 55 55 $parent_file = 'plugins.php'; 56 56 $submenu_file = 'plugins.php'; 57 57 require_once(ABSPATH . 'wp-admin/admin-header.php'); … … 155 155 156 156 add_thickbox(); 157 157 wp_enqueue_script('theme-preview'); 158 $title = __('Up grade Theme');158 $title = __('Update Theme'); 159 159 $parent_file = 'themes.php'; 160 160 $submenu_file = 'themes.php'; 161 161 require_once(ABSPATH . 'wp-admin/admin-header.php');