Index: trunk/extensions/Translate/MessageGroups.php |
— | — | @@ -736,7 +736,6 @@ |
737 | 737 | * |
738 | 738 | * @param $id \string Unique id for this group. |
739 | 739 | * @param $source \string Mediawiki message that contains list of message keys. |
740 | | - * @return \void |
741 | 740 | */ |
742 | 741 | public function __construct( $id, $source ) { |
743 | 742 | parent::__construct(); |
Index: trunk/extensions/Translate/utils/MessageWebImporter.php |
— | — | @@ -284,12 +284,12 @@ |
285 | 285 | /** |
286 | 286 | * Perform an action on a given group/key/code |
287 | 287 | * |
288 | | - * @param $action \string Import/conflict/ignore |
| 288 | + * @param $action \string Options: 'import', 'conflict' or 'ignore' |
289 | 289 | * @param $group MessageGroup Group object |
290 | 290 | * @param $key \string Message key |
291 | 291 | * @param $code \string Language code |
292 | | - * @param $message \string: contents for the $key/code combination |
293 | | - * @param $comment \string: edit summary (default: empty) - see Article::doEdit |
| 292 | + * @param $message \string contents for the $key/code combination |
| 293 | + * @param $comment \string edit summary (default: empty) - see Article::doEdit |
294 | 294 | * @param $user User User that will make the edit (default: null - $wgUser) - see Article::doEdit |
295 | 295 | * @param $editFlags Integer bitfield: see Article::doEdit |
296 | 296 | * @return \string Action result |