Changeset 16701
- Timestamp:
- 12/03/2010 09:16:28 AM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r16687 r16701 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); ?> -
trunk/wp-admin/includes/theme.php
r16699 r16701 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() ) { -
trunk/wp-admin/update.php
r16221 r16701 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'; … … 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';
Note: See TracChangeset
for help on using the changeset viewer.