Changeset 12789 for trunk/wp-admin/options-discussion.php
- Timestamp:
- 01/21/2010 09:37:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-discussion.php
r12712 r12789 159 159 <tr valign="top"> 160 160 <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> 162 162 <?php 163 163 $yesorno = array(0 => __("Don’t show Avatars"), 1 => __('Show Avatars')); … … 174 174 175 175 <?php 176 $ratings = array( 'G' => __('G — Suitable for all audiences'), 'PG' => __('PG — Possibly offensive, usually for audiences 13 and above'), 'R' => __('R — Intended for adult audiences above 17'), 'X' => __('X — Even more mature than above')); 176 $ratings = array( 177 /* translators: Content suitability rating: http://bit.ly/89QxZA */ 178 'G' => __('G — Suitable for all audiences'), 179 /* translators: Content suitability rating: http://bit.ly/89QxZA */ 180 'PG' => __('PG — Possibly offensive, usually for audiences 13 and above'), 181 /* translators: Content suitability rating: http://bit.ly/89QxZA */ 182 'R' => __('R — Intended for adult audiences above 17'), 183 /* translators: Content suitability rating: http://bit.ly/89QxZA */ 184 'X' => __('X — Even more mature than above') 185 ); 177 186 foreach ($ratings as $key => $rating) : 178 187 $selected = (get_option('avatar_rating') == $key) ? 'checked="checked"' : '';
Note: See TracChangeset
for help on using the changeset viewer.