Ticket #5851: 5851.byeByeRaquo.diff
| File 5851.byeByeRaquo.diff, 9.0 KB (added by , 19 years ago) |
|---|
-
wp-admin/options-privacy.php
24 24 </tr> 25 25 </table> 26 26 27 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />27 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 28 28 <input type="hidden" name="action" value="update" /> 29 29 <input type="hidden" name="page_options" value="blog_public" /> 30 30 </p> -
wp-admin/options-general.php
11 11 <h2><?php _e('General Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p>14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /></p> 15 15 <table class="niceblue"> 16 16 <tr valign="top"> 17 17 <th scope="row"><?php _e('Blog title:') ?></th> … … 90 90 </tr> 91 91 </table> 92 92 93 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />93 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 94 94 <input type="hidden" name="action" value="update" /> 95 95 <input type="hidden" name="page_options" value="<?php if ( ! defined( 'WP_SITEURL' ) ) echo 'siteurl,'; if ( ! defined( 'WP_HOME' ) ) echo 'home,'; ?>blogname,blogdescription,admin_email,users_can_register,gmt_offset,date_format,time_format,start_of_week,comment_registration,default_role" /> 96 96 </p> -
wp-admin/options-misc.php
12 12 <h2><?php _e('Miscellaneous Settings') ?></h2> 13 13 <form method="post" action="options.php"> 14 14 <?php wp_nonce_field('update-options') ?> 15 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p>15 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /></p> 16 16 <fieldset class="options"> 17 17 <legend><?php _e('Uploading'); ?></legend> 18 18 <table class="niceblue"> … … 51 51 <p class="submit"> 52 52 <input type="hidden" name="action" value="update" /> 53 53 <input type="hidden" name="page_options" value="hack_file,use_linksupdate,uploads_use_yearmonth_folders,upload_path,upload_url_path" /> 54 <input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />54 <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 55 55 </p> 56 56 </form> 57 57 </div> -
wp-admin/options-discussion.php
11 11 <h2><?php _e('Discussion Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p>14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /></p> 15 15 <fieldset class="options"> 16 16 <legend><?php echo __('Usual settings for an article:').'<br /><small><em>('.__('These settings may be overridden for individual articles.').')</em></small>'; ?></legend> 17 17 <ul> … … 78 78 <p class="submit"> 79 79 <input type="hidden" name="action" value="update" /> 80 80 <input type="hidden" name="page_options" value="default_pingback_flag,default_ping_status,default_comment_status,comments_notify,moderation_notify,comment_moderation,require_name_email,comment_whitelist,comment_max_links,moderation_keys,blacklist_keys" /> 81 <input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />81 <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 82 82 </p> 83 83 </form> 84 84 </div> -
wp-admin/options.php
48 48 <form name="form" action="options.php" method="post" id="all-options"> 49 49 <?php wp_nonce_field('update-options') ?> 50 50 <input type="hidden" name="action" value="update" /> 51 <p class="submit"><input type="submit" name="Update" value="<?php _e('Save Changes »') ?>" /></p>51 <p class="submit"><input type="submit" name="Update" value="<?php _e('Save Changes') ?>" /></p> 52 52 <table width="98%"> 53 53 <?php 54 54 $options = $wpdb->get_results("SELECT * FROM $wpdb->options ORDER BY option_name"); … … 86 86 ?> 87 87 </table> 88 88 <?php $options_to_update = implode(',', $options_to_update); ?> 89 <p class="submit"><input type="hidden" name="page_options" value="<?php echo $options_to_update; ?>" /><input type="submit" name="Update" value="<?php _e('Save Changes »') ?>" /></p>89 <p class="submit"><input type="hidden" name="page_options" value="<?php echo $options_to_update; ?>" /><input type="submit" name="Update" value="<?php _e('Save Changes') ?>" /></p> 90 90 </form> 91 91 </div> 92 92 -
wp-admin/options-reading.php
11 11 <h2><?php _e('Reading Settings') ?></h2> 12 12 <form name="form1" method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" /></p>14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /></p> 15 15 <?php if ( get_pages() ): ?> 16 16 <fieldset class="options"> 17 17 <legend><?php _e('Front Page') ?></legend> … … 119 119 <p class="submit"> 120 120 <input type="hidden" name="action" value="update" /> 121 121 <input type="hidden" name="page_options" value="posts_per_page,posts_per_rss,rss_use_excerpt,blog_charset,gzipcompression,show_on_front,page_on_front,page_for_posts,show_avatars,avatar_rating" /> 122 <input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />122 <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 123 123 </p> 124 124 </form> 125 125 </div> -
wp-admin/options-permalink.php
112 112 <h2><?php _e('Customize Permalink Structure') ?></h2> 113 113 <form name="form" action="options-permalink.php" method="post"> 114 114 <?php wp_nonce_field('update-permalink') ?> 115 <p class="submit"><input type="submit" name="submit" value="<?php _e('Update Permalink Structure »') ?>" /></p>115 <p class="submit"><input type="submit" name="submit" value="<?php _e('Update Permalink Structure') ?>" /></p> 116 116 <p><?php _e('By default WordPress uses web <abbr title="Universal Resource Locator">URL</abbr>s which have question marks and lots of numbers in them, however WordPress offers you the ability to create a custom URL structure for your permalinks and archives. This can improve the aesthetics, usability, and forward-compatibility of your links. A <a href="http://codex.wordpress.org/Using_Permalinks">number of tags are available</a>, and here are some examples to get you started.'); ?></p> 117 117 118 118 <?php … … 172 172 <?php _e('Tag base'); ?>: <input name="tag_base" id="tag_base" type="text" class="code" value="<?php echo attribute_escape($tag_base); ?>" size="30" /> 173 173 </p> 174 174 <p class="submit"> 175 <input type="submit" name="submit" value="<?php _e('Update Permalink Structure »') ?>" />175 <input type="submit" name="submit" value="<?php _e('Update Permalink Structure') ?>" /> 176 176 </p> 177 177 </form> 178 178 <?php if ( $permalink_structure && !$usingpi && !$writable ) : ?> -
wp-admin/options-writing.php
11 11 <h2><?php _e('Writing Settings') ?></h2> 12 12 <form method="post" action="options.php"> 13 13 <?php wp_nonce_field('update-options') ?> 14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Settings »') ?>" /></p>14 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Settings') ?>" /></p> 15 15 16 16 <table class="niceblue"> 17 17 <tr valign="top"> … … 117 117 <p class="submit"> 118 118 <input type="hidden" name="action" value="update" /> 119 119 <input type="hidden" name="page_options" value="default_post_edit_rows,use_smilies,ping_sites,mailserver_url,mailserver_port,mailserver_login,mailserver_pass,default_category,default_email_category,use_balanceTags,default_link_category" /> 120 <input type="submit" name="Submit" value="<?php _e('Save Changes »') ?>" />120 <input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /> 121 121 </p> 122 122 </form> 123 123 </div>
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)