Fix spelling mistake in tooltip for image rotation button. Fixes #11488 for 2.9.1 props computerwiz908.

git-svn-id: http://svn.automattic.com/wordpress/branches/2.9@12482 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-12-22 12:05:28 +00:00
parent eb71e0147d
commit a1fdb6f3e0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ function wp_image_editor($post_id, $msg = false) {
if ( function_exists('imagerotate') ) { ?>
<div onclick="imageEdit.rotate(90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rleft" title="<?php esc_attr_e( 'Rotate couter-clockwise' ); ?>"></div>
<div onclick="imageEdit.rotate(90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rleft" title="<?php esc_attr_e( 'Rotate counter-clockwise' ); ?>"></div>
<div onclick="imageEdit.rotate(-90, <?php echo "$post_id, '$nonce'"; ?>, this)" class="imgedit-rright" title="<?php esc_attr_e( 'Rotate clockwise' ); ?>"></div><?php
} ?>