Skip to content

Commit bab84dc

Browse files
committed
Mark strings for localization. http://mosquito.wordpress.org/view.php?id=1033
git-svn-id: https://develop.svn.wordpress.org/trunk@2411 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 346d169 commit bab84dc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

wp-admin/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<ul>
5555
<?php
5656
foreach ($comments as $comment) {
57-
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>');
57+
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>');
5858
edit_comment_link(__("Edit"), ' <small>(', ')</small>');
5959
echo '</li>';
6060
}

wp-admin/templates.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
?>
136136
</div>
137137
<div class="wrap">
138-
<h2>Other Files</h2>
138+
<h2><?php _e('Other Files') ?></h2>
139139

140140
<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>
141141
<form name="file" action="templates.php" method="get">

0 commit comments

Comments
 (0)