Make WordPress Core


Ignore:
Timestamp:
01/21/2010 09:37:43 PM (15 years ago)
Author:
ryan
Message:

i18n fixes. Props nbachiyski. fixes #11954

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-discussion.php

    r12712 r12789  
    159159<tr valign="top">
    160160<th scope="row"><?php _e('Avatar Display') ?></th>
    161 <td><fieldset><legend class="screen-reader-text"><span><?php _e('Avatar display') ?></span></legend>
     161<td><fieldset><legend class="screen-reader-text"><span><?php _e('Avatar Display') ?></span></legend>
    162162<?php
    163163    $yesorno = array(0 => __("Don&#8217;t show Avatars"), 1 => __('Show Avatars'));
     
    174174
    175175<?php
    176 $ratings = array( 'G' => __('G &#8212; Suitable for all audiences'), 'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'), 'R' => __('R &#8212; Intended for adult audiences above 17'), 'X' => __('X &#8212; Even more mature than above'));
     176$ratings = array(
     177    /* translators: Content suitability rating: http://bit.ly/89QxZA */
     178    'G' => __('G &#8212; Suitable for all audiences'),
     179    /* translators: Content suitability rating: http://bit.ly/89QxZA */
     180    'PG' => __('PG &#8212; Possibly offensive, usually for audiences 13 and above'),
     181    /* translators: Content suitability rating: http://bit.ly/89QxZA */
     182    'R' => __('R &#8212; Intended for adult audiences above 17'),
     183    /* translators: Content suitability rating: http://bit.ly/89QxZA */
     184    'X' => __('X &#8212; Even more mature than above')
     185);
    177186foreach ($ratings as $key => $rating) :
    178187    $selected = (get_option('avatar_rating') == $key) ? 'checked="checked"' : '';
Note: See TracChangeset for help on using the changeset viewer.