Index: trunk/phase3/includes/api/ApiQueryImageInfo.php |
— | — | @@ -199,7 +199,8 @@ |
200 | 200 | 'limit' => 'How many image revisions to return', |
201 | 201 | 'start' => 'Timestamp to start listing from', |
202 | 202 | 'end' => 'Timestamp to stop listing at', |
203 | | - 'urlwidth' => 'If iiprop=url is set, a URL to an image scaled to this width will be returned. Only the current version of the image can be scaled.', |
| 203 | + 'urlwidth' => array('If iiprop=url is set, a URL to an image scaled to this width will be returned.', |
| 204 | + 'Only the current version of the image can be scaled.'), |
204 | 205 | 'urlheight' => 'Similar to iiurlwidth. Cannot be used without iiurlwidth', |
205 | 206 | ); |
206 | 207 | } |
Index: trunk/phase3/includes/api/ApiQueryBacklinks.php |
— | — | @@ -29,7 +29,7 @@ |
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
33 | | - * This is three-in-one module to query: |
| 33 | + * This is a three-in-one module to query: |
34 | 34 | * * backlinks - links pointing to the given page, |
35 | 35 | * * embeddedin - what pages transclude the given page within themselves, |
36 | 36 | * * imageusage - what pages use the given image |
Index: trunk/phase3/includes/api/ApiQueryCategoryInfo.php |
— | — | @@ -29,7 +29,7 @@ |
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
33 | | - * This query adds <images> subelement to all pages with the list of images embedded into those pages. |
| 33 | + * This query adds <categories> subelement to all pages with the list of images embedded into those pages. |
34 | 34 | * |
35 | 35 | * @ingroup API |
36 | 36 | */ |
Index: trunk/phase3/includes/api/ApiQueryAllmessages.php |
— | — | @@ -108,8 +108,8 @@ |
109 | 109 | public function getParamDescription() { |
110 | 110 | return array ( |
111 | 111 | 'messages' => 'Which messages to output. "*" means all messages', |
112 | | - 'filter' => 'Return only messages that contains specified string', |
113 | | - 'lang' => 'Language code', |
| 112 | + 'filter' => 'Return only messages that contain this string', |
| 113 | + 'lang' => 'Return messages in this language', |
114 | 114 | ); |
115 | 115 | } |
116 | 116 | |