Remove raquo from buttons. Props filosofo. fixes #5938
git-svn-id: http://svn.automattic.com/wordpress/trunk@6943 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d12642fc81
commit
ad42d0148a
|
@ -60,13 +60,13 @@ case 'mac' :
|
|||
<?php
|
||||
if ( 'spam' == $_GET['dt'] ) {
|
||||
$caution_msg = __('You are about to mark the following comment as spam:');
|
||||
$button = __('Spam Comment »');
|
||||
$button = __('Spam Comment');
|
||||
} elseif ( 'cdc' == $action ) {
|
||||
$caution_msg = __('You are about to delete the following comment:');
|
||||
$button = __('Delete Comment »');
|
||||
$button = __('Delete Comment');
|
||||
} else {
|
||||
$caution_msg = __('You are about to approve the following comment:');
|
||||
$button = __('Approve Comment »');
|
||||
$button = __('Approve Comment');
|
||||
}
|
||||
?>
|
||||
|
||||
|
|
|
@ -169,7 +169,7 @@ Event.observe( window, 'load', hide_text );
|
|||
<input type="button" value="<?php _e('Hide Text'); ?>" onclick="hide_text()" id="hidetext" />
|
||||
<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" />
|
||||
<?php wp_nonce_field('custom-header') ?>
|
||||
<input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes »'); ?>" /></form>
|
||||
<input type="hidden" name="textcolor" id="textcolor" value="#<?php attribute_escape(header_textcolor()) ?>" /><input name="submit" type="submit" value="<?php _e('Save Changes'); ?>" /></form>
|
||||
<?php } ?>
|
||||
|
||||
<div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div>
|
||||
|
@ -183,7 +183,7 @@ Event.observe( window, 'load', hide_text );
|
|||
<input type="hidden" name="action" value="save" />
|
||||
<?php wp_nonce_field('custom-header') ?>
|
||||
<p class="submit">
|
||||
<input type="submit" value="<?php _e('Upload »'); ?>" />
|
||||
<input type="submit" value="<?php _e('Upload'); ?>" />
|
||||
</p>
|
||||
</form>
|
||||
|
||||
|
@ -262,7 +262,7 @@ Event.observe( window, 'load', hide_text );
|
|||
<input type="hidden" name="attachment_id" id="attachment_id" value="<?php echo $id; ?>" />
|
||||
<input type="hidden" name="oitar" id="oitar" value="<?php echo $oitar; ?>" />
|
||||
<?php wp_nonce_field('custom-header') ?>
|
||||
<input type="submit" value="<?php _e('Crop Header »'); ?>" />
|
||||
<input type="submit" value="<?php _e('Crop Header'); ?>" />
|
||||
</p>
|
||||
|
||||
</form>
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
if ( ! empty($cat_ID) ) {
|
||||
$heading = __('Edit Category');
|
||||
$submit_text = __('Edit Category »');
|
||||
$submit_text = __('Edit Category');
|
||||
$form = '<form name="editcat" id="editcat" method="post" action="categories.php">';
|
||||
$action = 'editedcat';
|
||||
$nonce_action = 'update-category_' . $cat_ID;
|
||||
do_action('edit_category_form_pre', $category);
|
||||
} else {
|
||||
$heading = __('Add Category');
|
||||
$submit_text = __('Add Category »');
|
||||
$submit_text = __('Add Category');
|
||||
$form = '<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list:">';
|
||||
$action = 'addcat';
|
||||
$nonce_action = 'add-category';
|
||||
|
|
|
@ -158,8 +158,8 @@ if ( $extra_comments ) : ?>
|
|||
} // end foreach
|
||||
?></tbody>
|
||||
</table>
|
||||
<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 + '"); ?>')" />
|
||||
<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>
|
||||
<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 + '"); ?>')" />
|
||||
<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>
|
||||
</form>
|
||||
<div id="ajax-response"></div>
|
||||
<?php
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
$submitbutton_text = __('Edit Comment »');
|
||||
$submitbutton_text = __('Edit Comment');
|
||||
$toprow_title = sprintf(__('Editing Comment # %s'), $comment->comment_ID);
|
||||
$form_action = 'editedcomment';
|
||||
$form_extra = "' />\n<input type='hidden' name='comment_ID' value='" . $comment->comment_ID . "' />\n<input type='hidden' name='comment_post_ID' value='" . $comment->comment_post_ID;
|
||||
|
|
|
@ -62,7 +62,7 @@ edCanvas = document.getElementById('content');
|
|||
<?php endif; ?>
|
||||
|
||||
<?php if ('bookmarklet' != $mode) {
|
||||
echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing »') . '" />';
|
||||
echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __('Advanced Editing') . '" />';
|
||||
} ?>
|
||||
<input name="referredby" type="hidden" id="referredby" value="<?php if ( $refby = wp_get_referer() ) echo urlencode($refby); ?>" />
|
||||
</p>
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
if ( ! empty($cat_ID) ) {
|
||||
$heading = __('Edit Category');
|
||||
$submit_text = __('Edit Category »');
|
||||
$submit_text = __('Edit Category');
|
||||
$form = '<form name="editcat" id="editcat" method="post" action="link-category.php">';
|
||||
$action = 'editedcat';
|
||||
$nonce_action = 'update-link-category_' . $cat_ID;
|
||||
do_action('edit_link_category_form_pre', $category);
|
||||
} else {
|
||||
$heading = __('Add Category');
|
||||
$submit_text = __('Add Category »');
|
||||
$submit_text = __('Add Category');
|
||||
$form = '<form name="addcat" id="addcat" class="add:the-list:" method="post" action="link-category.php">';
|
||||
$action = 'addcat';
|
||||
$nonce_action = 'add-link-category';
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?php
|
||||
if ( ! empty($link_id) ) {
|
||||
$heading = __('Edit Link');
|
||||
$submit_text = __('Save Changes »');
|
||||
$submit_text = __('Save Changes');
|
||||
$form = '<form name="editlink" id="editlink" method="post" action="link.php">';
|
||||
$nonce_action = 'update-bookmark_' . $link_id;
|
||||
} else {
|
||||
$heading = __('Add Link');
|
||||
$submit_text = __('Add Link »');
|
||||
$submit_text = __('Add Link');
|
||||
$form = '<form name="addlink" id="addlink" method="post" action="link.php">';
|
||||
$nonce_action = 'add-bookmark';
|
||||
}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
<?php
|
||||
if ( ! empty($tag_ID) ) {
|
||||
$heading = __('Edit Tag');
|
||||
$submit_text = __('Edit Tag »');
|
||||
$submit_text = __('Edit Tag');
|
||||
$form = '<form name="edittag" id="edittag" method="post" action="edit-tags.php">';
|
||||
$action = 'editedtag';
|
||||
$nonce_action = 'update-tag_' . $tag_ID;
|
||||
do_action('edit_tag_form_pre', $tag);
|
||||
} else {
|
||||
$heading = __('Add Tag');
|
||||
$submit_text = __('Add Tag »');
|
||||
$submit_text = __('Add Tag');
|
||||
$form = '<form name="addtag" id="addtag" method="post" action="edit-tags.php" class="add:the-list:">';
|
||||
$action = 'addtag';
|
||||
$nonce_action = 'add-tag';
|
||||
|
|
|
@ -38,7 +38,7 @@ foreach ( $authors as $id ) {
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?> »" />
|
||||
<p class="submit"><input type="submit" name="submit" value="<?php _e('Download Export File'); ?>" />
|
||||
<input type="hidden" name="download" value="true" />
|
||||
</p>
|
||||
</form>
|
||||
|
|
|
@ -613,7 +613,7 @@ class Blogger_Import {
|
|||
$blogtitle = "{$blog['title']} ({$blog['host']})";
|
||||
$mapthis = __('Blogger username');
|
||||
$tothis = __('WordPress login');
|
||||
$submit = js_escape( __('Save Changes »') );
|
||||
$submit = js_escape( __('Save Changes') );
|
||||
|
||||
foreach ( $blog['authors'] as $i => $author )
|
||||
$rows .= "<tr><td><label for='authors[$i]'>{$author[0]}</label></td><td><select name='authors[$i]' id='authors[$i]'>" . $this->get_user_options($author[1]) . "</select></td></tr>";
|
||||
|
|
|
@ -20,7 +20,7 @@ class BunnyTags_Import {
|
|||
echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>';
|
||||
echo '<form action="admin.php?import=btt&step=1" method="post">';
|
||||
wp_nonce_field('import-btt');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Tags').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ class BunnyTags_Import {
|
|||
|
||||
echo '<form action="admin.php?import=btt&step='.($precheck? 2:3).'" method="post">';
|
||||
wp_nonce_field('import-btt');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
|
|
@ -128,7 +128,7 @@ class Dotclear_Import {
|
|||
echo '<form action="admin.php?import=dotclear&step=1" method="post">';
|
||||
wp_nonce_field('import-dotclear');
|
||||
$this->db_form();
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories »')).'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>';
|
||||
echo '</form></div>';
|
||||
}
|
||||
|
||||
|
|
|
@ -20,11 +20,11 @@ class JeromesKeyword_Import {
|
|||
echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>';
|
||||
echo '<form action="admin.php?import=jkw&step=1" method="post">';
|
||||
wp_nonce_field('import-jkw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 1.x').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '<form action="admin.php?import=jkw&step=3" method="post">';
|
||||
wp_nonce_field('import-jkw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Import Version 2.0a').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -106,7 +106,7 @@ class JeromesKeyword_Import {
|
|||
|
||||
echo '<form action="admin.php?import=jkw&step='.($precheck? 2:6).'" method="post">';
|
||||
wp_nonce_field('import-jkw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ class JeromesKeyword_Import {
|
|||
}
|
||||
echo '<form action="admin.php?import=jkw&step='.($precheck? 4:5).'" method="post">';
|
||||
wp_nonce_field('import-jkw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Next').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ class MT_Import {
|
|||
<input type="hidden" name="upload_type" value="ftp" />
|
||||
<?php _e('Or use <code>mt-export.txt</code> in your <code>/wp-content/</code> directory'); ?></p>
|
||||
<p class="submit">
|
||||
<input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt »')); ?>" />
|
||||
<input type="submit" value="<?php echo attribute_escape(__('Import mt-export.txt')); ?>" />
|
||||
</p>
|
||||
</form>
|
||||
<p><?php _e('The importer is smart enough not to import duplicates, so you can run this multiple times without worry if—for whatever reason—it doesn\'t finish. If you get an <strong>out of memory</strong> error try splitting up the import file into pieces.'); ?> </p>
|
||||
|
|
|
@ -18,7 +18,7 @@ class STP_Import {
|
|||
echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>';
|
||||
echo '<form action="admin.php?import=stp&step=1" method="post">';
|
||||
wp_nonce_field('import-stp');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ class STP_Import {
|
|||
|
||||
echo '<form action="admin.php?import=stp&step=2" method="post">';
|
||||
wp_nonce_field('import-stp');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -94,7 +94,7 @@ class STP_Import {
|
|||
echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tags where added!', 'Done! <strong>%s</strong> tags where added!', $tags_added), $tags_added ) . '<br /></p>';
|
||||
echo '<form action="admin.php?import=stp&step=3" method="post">';
|
||||
wp_nonce_field('import-stp');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ class Textpattern_Import {
|
|||
echo '<form action="admin.php?import=textpattern&step=1" method="post">';
|
||||
wp_nonce_field('import-textpattern');
|
||||
$this->db_form();
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories »')).'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.attribute_escape(__('Import Categories')).'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ class UTW_Import {
|
|||
echo '<p>'.__('To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!').'</p>';
|
||||
echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>';
|
||||
echo '<form action="admin.php?import=utw&step=1" method="post">';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 1').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -106,7 +106,7 @@ class UTW_Import {
|
|||
|
||||
echo '<form action="admin.php?import=utw&step=2" method="post">';
|
||||
wp_nonce_field('import-utw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 2').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
}
|
||||
|
@ -142,7 +142,7 @@ class UTW_Import {
|
|||
|
||||
echo '<form action="admin.php?import=utw&step=3" method="post">';
|
||||
wp_nonce_field('import-utw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 3').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
|
||||
|
@ -161,7 +161,7 @@ class UTW_Import {
|
|||
|
||||
echo '<form action="admin.php?import=utw&step=4" method="post">';
|
||||
wp_nonce_field('import-utw');
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4 »').'" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="'.__('Step 4').'" /></p>';
|
||||
echo '</form>';
|
||||
echo '</div>';
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ function check_all_rows() {
|
|||
|
||||
echo '</ul>';
|
||||
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags »') . '" /></p>';
|
||||
echo '<p class="submit"><input type="submit" name="submit" value="' . __('Convert Tags') . '" /></p>';
|
||||
|
||||
echo '</form>';
|
||||
}
|
||||
|
|
|
@ -666,7 +666,7 @@ function get_multimedia_item( $attachment_id, $errors = null, $send = true ) {
|
|||
$description_label = __('Description');
|
||||
$tags_label = __('Tags');
|
||||
|
||||
$toggle_on = __('Describe »');
|
||||
$toggle_on = __('Describe');
|
||||
$toggle_off = __('Describe «');
|
||||
|
||||
$post = get_post($attachment_id);
|
||||
|
|
|
@ -756,7 +756,7 @@ function meta_form() {
|
|||
|
||||
<tr class="submit"><td colspan="3">
|
||||
<?php wp_nonce_field( 'change_meta', '_ajax_nonce', false ); ?>
|
||||
<input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field »' ) ?>" />
|
||||
<input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field' ) ?>" />
|
||||
</td></tr>
|
||||
</table>
|
||||
<?php
|
||||
|
@ -945,7 +945,7 @@ function wp_import_upload_form( $action ) {
|
|||
<input type="hidden" name="max_file_size" value="<?php echo $bytes; ?>" />
|
||||
</p>
|
||||
<p class="submit">
|
||||
<input type="submit" value="<?php _e( 'Upload file and import »' ); ?>" />
|
||||
<input type="submit" value="<?php _e( 'Upload file and import' ); ?>" />
|
||||
</p>
|
||||
</form>
|
||||
<?php
|
||||
|
|
|
@ -222,7 +222,7 @@ function wp_upload_form() {
|
|||
<?php endif; ?>
|
||||
<?php wp_nonce_field( 'inlineuploading' ); ?>
|
||||
<div class="submit">
|
||||
<input type="submit" value="<?php $id ? _e('Save »') : _e('Upload »'); ?>" />
|
||||
<input type="submit" value="<?php $id ? _e('Save') : _e('Upload'); ?>" />
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
|
@ -39,7 +39,7 @@ switch($step) {
|
|||
?>
|
||||
<h1><?php _e('Welcome'); ?></h1>
|
||||
<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>
|
||||
<!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step »'); ?></a></h2>-->
|
||||
<!--<h2 class="step"><a href="install.php?step=1"><?php _e('First Step'); ?></a></h2>-->
|
||||
|
||||
<h1><?php _e('Information needed'); ?></h1>
|
||||
<p><?php _e("Please provide the following information. Don't worry, you can always change these settings later."); ?></p>
|
||||
|
@ -60,7 +60,7 @@ switch($step) {
|
|||
</tr>
|
||||
</table>
|
||||
<p><em><?php _e('Double-check your email address before continuing.'); ?></em></p>
|
||||
<h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress »'); ?>" /></h2>
|
||||
<h2 class="step"><input type="submit" name="Submit" value="<?php _e('Install WordPress'); ?>" /></h2>
|
||||
</form>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -53,7 +53,7 @@ foreach ($categories as $category) {
|
|||
?>
|
||||
</select></p>
|
||||
|
||||
<p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File »') ?>" /></p>
|
||||
<p class="submit"><input type="submit" name="submit" value="<?php _e('Import OPML File') ?>" /></p>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -219,7 +219,7 @@ $comments = array_slice( $comments, $start, $stop );
|
|||
</noscript>
|
||||
|
||||
<p class="submit">
|
||||
<input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments »' ); ?>" />
|
||||
<input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments' ); ?>" />
|
||||
</p>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -14,7 +14,7 @@ require_once('admin-header.php');
|
|||
?>
|
||||
|
||||
<?php if ( (isset($_GET['posted']) && $_GET['posted']) || isset($_GET['saved']) ) : ?>
|
||||
<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>
|
||||
<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>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -135,7 +135,7 @@ if ($plugin_files) :
|
|||
<p class="submit">
|
||||
<?php
|
||||
if ( isset($_GET['phperror']) )
|
||||
echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate »') . "' tabindex='2' />";
|
||||
echo "<input type='hidden' name='phperror' value='1' /><input type='submit' name='submit' value='" . __('Update File and Attempt to Reactivate') . "' tabindex='2' />";
|
||||
else
|
||||
echo "<input type='submit' name='submit' value='" . __('Update File') . "' tabindex='2' />";
|
||||
?>
|
||||
|
|
|
@ -19,7 +19,7 @@ require_once('admin-header.php');
|
|||
<?php if ( ! validate_current_theme() ) : ?>
|
||||
<div id="message1" class="updated fade"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div>
|
||||
<?php elseif ( isset($_GET['activated']) ) : ?>
|
||||
<div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site »</a>'), get_bloginfo('url') . '/'); ?></p></div>
|
||||
<div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site</a>'), get_bloginfo('url') . '/'); ?></p></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
|
|
|
@ -59,7 +59,7 @@ endforeach;
|
|||
</tr>
|
||||
</table>
|
||||
<p class="submit">
|
||||
<input type="submit" name="submit" value="<?php _e('Proceed »'); ?>" />
|
||||
<input type="submit" name="submit" value="<?php _e('Proceed'); ?>" />
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -27,7 +27,7 @@ else
|
|||
|
||||
<h2><?php _e('No Upgrade Required'); ?></h2>
|
||||
<p><?php _e('Your WordPress database is already up-to-date!'); ?></p>
|
||||
<h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue »'); ?></a></h2>
|
||||
<h2 class="step"><a href="<?php echo get_option('home'); ?>/"><?php _e('Continue'); ?></a></h2>
|
||||
|
||||
<?php else :
|
||||
switch($step) :
|
||||
|
@ -37,7 +37,7 @@ switch($step) :
|
|||
<h2><?php _e('Database Upgrade Required'); ?></h2>
|
||||
<p><?php _e('Your WordPress database is out-of-date, and must be upgraded before you can continue.'); ?></p>
|
||||
<p><?php _e('The upgrade process may take a while, so please be patient.'); ?></p>
|
||||
<h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress »'); ?></a></h2>
|
||||
<h2 class="step"><a href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e('Upgrade WordPress'); ?></a></h2>
|
||||
<?php
|
||||
break;
|
||||
case 1:
|
||||
|
@ -50,7 +50,7 @@ switch($step) :
|
|||
?>
|
||||
<h2><?php _e('Upgrade Complete'); ?></h2>
|
||||
<p><?php _e('Your WordPress database has been successfully upgraded!'); ?></p>
|
||||
<h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue »'); ?></a></h2>
|
||||
<h2 class="step"><a href="<?php echo $backto; ?>"><?php _e('Continue'); ?></a></h2>
|
||||
|
||||
<!--
|
||||
<pre>
|
||||
|
|
|
@ -156,7 +156,7 @@ include ('admin-header.php');
|
|||
}
|
||||
?>
|
||||
|
||||
<p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »'); ?>" name="submit" /></p>
|
||||
<p class="submit"><input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User'); ?>" name="submit" /></p>
|
||||
|
||||
<fieldset>
|
||||
<legend><?php _e('Name'); ?></legend>
|
||||
|
@ -300,7 +300,7 @@ if ( $show_password_fields ) :
|
|||
<p class="submit">
|
||||
<input type="hidden" name="action" value="update" />
|
||||
<input type="hidden" name="user_id" id="user_id" value="<?php echo $user_id; ?>" />
|
||||
<input type="submit" value="<?php $is_profile_page? _e('Update Profile »') : _e('Update User »') ?>" name="submit" />
|
||||
<input type="submit" value="<?php $is_profile_page? _e('Update Profile') : _e('Update User') ?>" name="submit" />
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue