Make WordPress Core

Changeset 19782


Ignore:
Timestamp:
01/29/2012 08:12:09 AM (13 years ago)
Author:
nacin
Message:

Kill the exclamation points off an error message for easier translation. props wojtek.szkutnik, fixes #11270.

File:
1 edited

Legend:

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

    r19712 r19782  
    6666
    6767    if ( !$comment = get_comment( $comment_id ) )
    68         comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'javascript:history.go(-1)') );
     68        comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'javascript:history.go(-1)') );
    6969
    7070    if ( !current_user_can( 'edit_comment', $comment_id ) )
     
    223223
    224224    if ( !$comment = get_comment($comment_id) )
    225         comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit-comments.php') );
     225        comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">' . __('Go back') . '</a>.', 'edit-comments.php') );
    226226    if ( !current_user_can( 'edit_comment', $comment->comment_ID ) )
    227227        comment_footer_die( __('You are not allowed to edit comments on this post.') );
Note: See TracChangeset for help on using the changeset viewer.