Make WordPress Core


Ignore:
Timestamp:
03/05/2005 06:31:59 PM (20 years ago)
Author:
ryan
Message:

Mark strings for localization. http://mosquito.wordpress.org/view.php?id=1033

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/index.php

    r2377 r2411  
    5555<?php
    5656foreach ($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>';
Note: See TracChangeset for help on using the changeset viewer.