Changeset 6943
- Timestamp:
- 02/20/2008 07:30:55 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/comment.php
r6923 r6943 61 61 if ( 'spam' == $_GET['dt'] ) { 62 62 $caution_msg = __('You are about to mark the following comment as spam:'); 63 $button = __('Spam Comment »');63 $button = __('Spam Comment'); 64 64 } elseif ( 'cdc' == $action ) { 65 65 $caution_msg = __('You are about to delete the following comment:'); 66 $button = __('Delete Comment »');66 $button = __('Delete Comment'); 67 67 } else { 68 68 $caution_msg = __('You are about to approve the following comment:'); 69 $button = __('Approve Comment »');69 $button = __('Approve Comment'); 70 70 } 71 71 ?> -
trunk/wp-admin/custom-header.php
r6551 r6943 170 170 <input type="button" value="<?php _e('Select a Text Color'); ?>" onclick="colorSelect($('textcolor'), 'pickcolor')" id="pickcolor" /><input type="button" value="<?php _e('Use Original Color'); ?>" onclick="colorDefault()" id="defaultcolor" /> 171 171 <?php wp_nonce_field('custom-header') ?> 172 <input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes »'); ?>" /></form>172 <input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes'); ?>" /></form> 173 173 <?php } ?> 174 174 … … 184 184 <?php wp_nonce_field('custom-header') ?> 185 185 <p class="submit"> 186 <input type="submit" value="<?php _e('Upload »'); ?>" />186 <input type="submit" value="<?php _e('Upload'); ?>" /> 187 187 </p> 188 188 </form> … … 263 263 <input type="hidden" name="oitar" id="oitar" value="<?php echo $oitar; ?>" /> 264 264 <?php wp_nonce_field('custom-header') ?> 265 <input type="submit" value="<?php _e('Crop Header »'); ?>" />265 <input type="submit" value="<?php _e('Crop Header'); ?>" /> 266 266 </p> 267 267 -
trunk/wp-admin/edit-category-form.php
r6850 r6943 2 2 if ( ! empty($cat_ID) ) { 3 3 $heading = __('Edit Category'); 4 $submit_text = __('Edit Category »');4 $submit_text = __('Edit Category'); 5 5 $form = '<form name="editcat" id="editcat" method="post" action="categories.php">'; 6 6 $action = 'editedcat'; … … 9 9 } else { 10 10 $heading = __('Add Category'); 11 $submit_text = __('Add Category »');11 $submit_text = __('Add Category'); 12 12 $form = '<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list:">'; 13 13 $action = 'addcat'; -
trunk/wp-admin/edit-comments.php
r6918 r6943 159 159 ?></tbody> 160 160 </table> 161 <p class="submit"><input type="submit" name="delete_button" class="delete" value="<?php _e('Delete Checked Comments »') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to delete")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to delete %s comments permanently \n 'Cancel' to stop, 'OK' to delete.")), "' + numchecked + '"); ?>')" />162 <input type="submit" name="spam_button" value="<?php _e('Mark Checked Comments as Spam »') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to mark as spam")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to mark %s comments as spam \n 'Cancel' to stop, 'OK' to mark as spam.")), "' + numchecked + '"); ?>')" /></p>161 <p class="submit"><input type="submit" name="delete_button" class="delete" value="<?php _e('Delete Checked Comments') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to delete")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to delete %s comments permanently \n 'Cancel' to stop, 'OK' to delete.")), "' + numchecked + '"); ?>')" /> 162 <input type="submit" name="spam_button" value="<?php _e('Mark Checked Comments as Spam') ?>" onclick="var numchecked = getNumChecked(document.getElementById('deletecomments')); if(numchecked < 1) { alert('<?php echo js_escape(__("Please select some comments to mark as spam")); ?>'); return false } return confirm('<?php echo sprintf(js_escape(__("You are about to mark %s comments as spam \n 'Cancel' to stop, 'OK' to mark as spam.")), "' + numchecked + '"); ?>')" /></p> 163 163 </form> 164 164 <div id="ajax-response"></div> -
trunk/wp-admin/edit-form-comment.php
r6930 r6943 1 1 <?php 2 $submitbutton_text = __('Edit Comment »');2 $submitbutton_text = __('Edit Comment'); 3 3 $toprow_title = sprintf(__('Editing Comment # %s'), $comment->comment_ID); 4 4 $form_action = 'editedcomment'; -
trunk/wp-admin/edit-form.php
r6739 r6943 63 63 64 64 <?php if ('bookmarklet' != $mode) { 65 echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing »') . '" />';65 echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing') . '" />'; 66 66 } ?> 67 67 <input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" /> -
trunk/wp-admin/edit-link-category-form.php
r6850 r6943 2 2 if ( ! empty($cat_ID) ) { 3 3 $heading = __('Edit Category'); 4 $submit_text = __('Edit Category »');4 $submit_text = __('Edit Category'); 5 5 $form = '<form name="editcat" id="editcat" method="post" action="link-category.php">'; 6 6 $action = 'editedcat'; … … 9 9 } else { 10 10 $heading = __('Add Category'); 11 $submit_text = __('Add Category »');11 $submit_text = __('Add Category'); 12 12 $form = '<form name="addcat" id="addcat" class="add:the-list:" method="post" action="link-category.php">'; 13 13 $action = 'addcat'; -
trunk/wp-admin/edit-link-form.php
r6935 r6943 2 2 if ( ! empty($link_id) ) { 3 3 $heading = __('Edit Link'); 4 $submit_text = __('Save Changes »');4 $submit_text = __('Save Changes'); 5 5 $form = '<form name="editlink" id="editlink" method="post" action="link.php">'; 6 6 $nonce_action = 'update-bookmark_' . $link_id; 7 7 } else { 8 8 $heading = __('Add Link'); 9 $submit_text = __('Add Link »');9 $submit_text = __('Add Link'); 10 10 $form = '<form name="addlink" id="addlink" method="post" action="link.php">'; 11 11 $nonce_action = 'add-bookmark'; -
trunk/wp-admin/edit-tag-form.php
r6850 r6943 2 2 if ( ! empty($tag_ID) ) { 3 3 $heading = __('Edit Tag'); 4 $submit_text = __('Edit Tag »');4 $submit_text = __('Edit Tag'); 5 5 $form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php">'; 6 6 $action = 'editedtag'; … … 9 9 } else { 10 10 $heading = __('Add Tag'); 11 $submit_text = __('Add Tag »');11 $submit_text = __('Add Tag'); 12 12 $form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list:">'; 13 13 $action = 'addtag'; -
trunk/wp-admin/export.php
r6836 r6943 39 39 </tr> 40 40 </table> 41 <p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> »" />41 <p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?>" /> 42 42 <input type="hidden" name="download" value="true" /> 43 43 </p> -
trunk/wp-admin/import/blogger.php
r6726 r6943 614 614 $mapthis = __('Blogger username'); 615 615 $tothis = __('WordPress login'); 616 $submit = js_escape( __('Save Changes »') );616 $submit = js_escape( __('Save Changes') ); 617 617 618 618 foreach ( $blog['authors'] as $i => $author ) -
trunk/wp-admin/import/btt.php
r6726 r6943 21 21 echo '<form action="admin.php?import=btt&step=1" method="post">'; 22 22 wp_nonce_field('import-btt'); 23 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags »').'" /></p>';23 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags').'" /></p>'; 24 24 echo '</form>'; 25 25 echo '</div>'; … … 91 91 echo '<form action="admin.php?import=btt&step='.($precheck? 2:3).'" method="post">'; 92 92 wp_nonce_field('import-btt'); 93 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';93 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>'; 94 94 echo '</form>'; 95 95 echo '</div>'; -
trunk/wp-admin/import/dotclear.php
r6472 r6943 129 129 wp_nonce_field('import-dotclear'); 130 130 $this->db_form(); 131 echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories »')).'" /></p>';131 echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>'; 132 132 echo '</form></div>'; 133 133 } -
trunk/wp-admin/import/jkw.php
r6726 r6943 21 21 echo '<form action="admin.php?import=jkw&step=1" method="post">'; 22 22 wp_nonce_field('import-jkw'); 23 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x »').'" /></p>';23 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x').'" /></p>'; 24 24 echo '</form>'; 25 25 echo '<form action="admin.php?import=jkw&step=3" method="post">'; 26 26 wp_nonce_field('import-jkw'); 27 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a »').'" /></p>';27 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a').'" /></p>'; 28 28 echo '</form>'; 29 29 echo '</div>'; … … 107 107 echo '<form action="admin.php?import=jkw&step='.($precheck? 2:6).'" method="post">'; 108 108 wp_nonce_field('import-jkw'); 109 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';109 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>'; 110 110 echo '</form>'; 111 111 echo '</div>'; … … 140 140 echo '<form action="admin.php?import=jkw&step='.($precheck? 4:5).'" method="post">'; 141 141 wp_nonce_field('import-jkw'); 142 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';142 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>'; 143 143 echo '</form>'; 144 144 echo '</div>'; -
trunk/wp-admin/import/mt.php
r6726 r6943 31 31 <?php _e('Or use <code>mt-export.txt</code> in your <code>/wp-content/</code> directory'); ?></p> 32 32 <p class="submit"> 33 <input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt »')); ?>" />33 <input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt')); ?>" /> 34 34 </p> 35 35 </form> -
trunk/wp-admin/import/stp.php
r6726 r6943 19 19 echo '<form action="admin.php?import=stp&step=1" method="post">'; 20 20 wp_nonce_field('import-stp'); 21 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 »').'" /></p>';21 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>'; 22 22 echo '</form>'; 23 23 echo '</div>'; … … 79 79 echo '<form action="admin.php?import=stp&step=2" method="post">'; 80 80 wp_nonce_field('import-stp'); 81 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 »').'" /></p>';81 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>'; 82 82 echo '</form>'; 83 83 echo '</div>'; … … 95 95 echo '<form action="admin.php?import=stp&step=3" method="post">'; 96 96 wp_nonce_field('import-stp'); 97 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 »').'" /></p>';97 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>'; 98 98 echo '</form>'; 99 99 echo '</div>'; -
trunk/wp-admin/import/textpattern.php
r6726 r6943 47 47 wp_nonce_field('import-textpattern'); 48 48 $this->db_form(); 49 echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories »')).'" /></p>';49 echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>'; 50 50 echo '</form>'; 51 51 echo '</div>'; -
trunk/wp-admin/import/utw.php
r6430 r6943 20 20 echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>'; 21 21 echo '<form action="admin.php?import=utw&step=1" method="post">'; 22 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 »').'" /></p>';22 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>'; 23 23 echo '</form>'; 24 24 echo '</div>'; … … 107 107 echo '<form action="admin.php?import=utw&step=2" method="post">'; 108 108 wp_nonce_field('import-utw'); 109 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 »').'" /></p>';109 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>'; 110 110 echo '</form>'; 111 111 echo '</div>'; … … 143 143 echo '<form action="admin.php?import=utw&step=3" method="post">'; 144 144 wp_nonce_field('import-utw'); 145 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 »').'" /></p>';145 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>'; 146 146 echo '</form>'; 147 147 echo '</div>'; … … 162 162 echo '<form action="admin.php?import=utw&step=4" method="post">'; 163 163 wp_nonce_field('import-utw'); 164 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4 »').'" /></p>';164 echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4').'" /></p>'; 165 165 echo '</form>'; 166 166 echo '</div>'; -
trunk/wp-admin/import/wp-cat2tag.php
r6726 r6943 91 91 echo '</ul>'; 92 92 93 echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags »') . '" /></p>';93 echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags') . '" /></p>'; 94 94 95 95 echo '</form>'; -
trunk/wp-admin/includes/media.php
r6876 r6943 667 667 $tags_label = __('Tags'); 668 668 669 $toggle_on = __('Describe »');669 $toggle_on = __('Describe'); 670 670 $toggle_off = __('Describe «'); 671 671 -
trunk/wp-admin/includes/template.php
r6936 r6943 757 757 <tr class="submit"><td colspan="3"> 758 758 <?php wp_nonce_field( 'change_meta', '_ajax_nonce', false ); ?> 759 <input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field »' ) ?>" />759 <input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field' ) ?>" /> 760 760 </td></tr> 761 761 </table> … … 946 946 </p> 947 947 <p class="submit"> 948 <input type="submit" value="<?php _e( 'Upload file and import »' ); ?>" />948 <input type="submit" value="<?php _e( 'Upload file and import' ); ?>" /> 949 949 </p> 950 950 </form> -
trunk/wp-admin/includes/upload.php
r6363 r6943 223 223 <?php wp_nonce_field( 'inlineuploading' ); ?> 224 224 <div class="submit"> 225 <input type="submit" value="<?php $id ? _e('Save »') : _e('Upload »'); ?>" />225 <input type="submit" value="<?php $id ? _e('Save') : _e('Upload'); ?>" /> 226 226 </div> 227 227 </td> -
trunk/wp-admin/install.php
r6726 r6943 40 40 <h1><?php _e('Welcome'); ?></h1> 41 41 <p><?php printf(__('Welcome to the famous five minute WordPress installation process! You may want to browse the <a href="%s">ReadMe documentation</a> at your leisure. Otherwise, just fill in the information below and you\'ll be on your way to using the most extendable and powerful personal publishing platform in the world.'), '../readme.html'); ?></p> 42 <!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step »'); ?></a></h2>-->42 <!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step'); ?></a></h2>--> 43 43 44 44 <h1><?php _e('Information needed'); ?></h1> … … 61 61 </table> 62 62 <p><em><?php _e('Double-check your email address before continuing.'); ?></em></p> 63 <h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress »'); ?>" /></h2>63 <h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" /></h2> 64 64 </form> 65 65 -
trunk/wp-admin/link-import.php
r6555 r6943 54 54 </select></p> 55 55 56 <p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File »') ?>" /></p>56 <p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File') ?>" /></p> 57 57 </form> 58 58 -
trunk/wp-admin/moderation.php
r6430 r6943 220 220 221 221 <p class="submit"> 222 <input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments »' ); ?>" />222 <input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments' ); ?>" /> 223 223 </p> 224 224 -
trunk/wp-admin/page-new.php
r6894 r6943 15 15 16 16 <?php if ( (isset($_GET['posted']) && $_GET['posted']) || isset($_GET['saved']) ) : ?> 17 <div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page »') ; ?></a></p></div>17 <div id="message" class="updated fade"><p><strong><?php _e('Page saved.') ?></strong> <a href="edit-pages.php"><?php _e('Manage pages'); ?></a> | <a href="<?php echo get_page_link( isset($_GET['posted']) ? $_GET['posted'] : $_GET['saved'] ); ?>"><?php _e('View page') ; ?></a></p></div> 18 18 <?php endif; ?> 19 19 -
trunk/wp-admin/plugin-editor.php
r6918 r6943 136 136 <?php 137 137 if ( isset($_GET['phperror']) ) 138 echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate »') . "' tabindex='2' />";138 echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate') . "' tabindex='2' />"; 139 139 else 140 140 echo "<input type='submit' name='submit' value='" . __('Update File') . "' tabindex='2' />"; -
trunk/wp-admin/themes.php
r6530 r6943 20 20 <div id="message1" class="updated fade"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div> 21 21 <?php elseif ( isset($_GET['activated']) ) : ?> 22 <div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site »</a>'), get_bloginfo('url') . '/'); ?></p></div>22 <div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site</a>'), get_bloginfo('url') . '/'); ?></p></div> 23 23 <?php endif; ?> 24 24 -
trunk/wp-admin/update.php
r6779 r6943 60 60 </table> 61 61 <p class="submit"> 62 <input type="submit" name="submit" value="<?php _e('Proceed »'); ?>" />62 <input type="submit" name="submit" value="<?php _e('Proceed'); ?>" /> 63 63 </p> 64 64 </div> -
trunk/wp-admin/upgrade.php
r6026 r6943 28 28 <h2><?php _e('No Upgrade Required'); ?></h2> 29 29 <p><?php _e('Your WordPress database is already up-to-date!'); ?></p> 30 <h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue »'); ?></a></h2>30 <h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></h2> 31 31 32 32 <?php else : … … 38 38 <p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p> 39 39 <p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p> 40 <h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress »'); ?></a></h2>40 <h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2> 41 41 <?php 42 42 break; … … 51 51 <h2><?php _e('Upgrade Complete'); ?></h2> 52 52 <p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p> 53 <h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue »'); ?></a></h2>53 <h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></h2> 54 54 55 55 <!-- -
trunk/wp-admin/user-edit.php
r6726 r6943 157 157 ?> 158 158 159 <p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »'); ?>" name="submit" /></p>159 <p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User'); ?>" name="submit" /></p> 160 160 161 161 <fieldset> … … 301 301 <input type="hidden" name="action" value="update" /> 302 302 <input type="hidden" name="user_id" id="user_id" value="<?php echo $user_id; ?>" /> 303 <input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »') ?>" name="submit" />303 <input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User') ?>" name="submit" /> 304 304 </p> 305 305 </form>
Note: See TracChangeset
for help on using the changeset viewer.