mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-17 03:56:07 +00:00
Mark strings for localization. http://mosquito.wordpress.org/view.php?id=1033
git-svn-id: http://svn.automattic.com/wordpress/trunk@2411 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3a0fc8bf43
commit
a91c28459e
@ -54,7 +54,7 @@ if ( $comments = $wpdb->get_results("SELECT comment_author, comment_author_url,
|
|||||||
<ul>
|
<ul>
|
||||||
<?php
|
<?php
|
||||||
foreach ($comments as $comment) {
|
foreach ($comments as $comment) {
|
||||||
echo '<li>' . sprintf('%s on %s', get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>');
|
echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>');
|
||||||
edit_comment_link(__("Edit"), ' <small>(', ')</small>');
|
edit_comment_link(__("Edit"), ' <small>(', ')</small>');
|
||||||
echo '</li>';
|
echo '</li>';
|
||||||
}
|
}
|
||||||
|
@ -135,7 +135,7 @@ endif;
|
|||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<h2>Other Files</h2>
|
<h2><?php _e('Other Files') ?></h2>
|
||||||
|
|
||||||
<p><?php _e('To edit a file, type its name here. You can edit any file <a href="http://wiki.wordpress.org/index.php/MakeWritable" title="Read more about making files writable">writable by the server</a>, e.g. CHMOD 666.') ?></p>
|
<p><?php _e('To edit a file, type its name here. You can edit any file <a href="http://wiki.wordpress.org/index.php/MakeWritable" title="Read more about making files writable">writable by the server</a>, e.g. CHMOD 666.') ?></p>
|
||||||
<form name="file" action="templates.php" method="get">
|
<form name="file" action="templates.php" method="get">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user