Index: trunk/extensions/SocialProfile/UserGifts/UserGifts.i18n.php |
— | — | @@ -32,7 +32,7 @@ |
33 | 33 | 'g-cancel' => 'Cancel', |
34 | 34 | 'g-count' => '$1 has $2 {{PLURAL:$2|gift|gifts}}.', |
35 | 35 | 'g-create-gift' => 'Create gift', |
36 | | - 'g-created-by' => 'created by', |
| 36 | + 'g-created-by' => 'created by', # this message supports {{GENDER}} |
37 | 37 | 'g-current-image' => 'Current image', |
38 | 38 | 'g-delete-message' => 'Are your sure you want to delete the gift "$1"? |
39 | 39 | This will also delete it from users who may have received it.', |
Index: trunk/extensions/SocialProfile/UserGifts/SpecialGiftManager.php |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | if( $gift_id ){ |
167 | 167 | $creator = Title::makeTitle( NS_USER, $gift['creator_user_name'] ); |
168 | 168 | $form .= '<tr> |
169 | | - <td class="view-form">'.wfMsg('g-created-by').'</td><td><a href="' . $creator->escapeFullURL() . '">' . $gift['creator_user_name'] . '</a></td> |
| 169 | + <td class="view-form">'.wfMsgExt('g-created-by', 'parsemag', $gift['creator_user_name'] ).'</td><td><a href="' . $creator->escapeFullURL() . '">' . $gift['creator_user_name'] . '</a></td> |
170 | 170 | </tr>'; |
171 | 171 | } |
172 | 172 | global $wgUploadPath; |