Corrected two typos

"don't" with ' should be more correct than &rsquot; (or is it better to escape it \' ?)
I personally find the line * translators: %1$s: smiley */ pretty confusing, but at least it should be singular (not smilies)
This commit is contained in:
pixolin 2012-09-18 11:48:12 +03:00
parent 0b8fc2e601
commit 13efab7ac6
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ get_header(); ?>
<article id="post-0" class="post error404 not-found">
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found.', '_s' ); ?></h1>
<h1 class="entry-title"><?php _e( 'Oops! That page can&apos;t be found.', '_s' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
@ -31,7 +31,7 @@ get_header(); ?>
</div><!-- .widget -->
<?php
/* translators: %1$s: smilie */
/* translators: %1$s: smiley */
$archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %1$s', '_s' ), convert_smilies( ':)' ) ) . '</p>';
the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=</h2>$archive_content" );
?>