Index: trunk/phase3/includes/api/ApiComparePages.php |
— | — | @@ -120,7 +120,7 @@ |
121 | 121 | |
122 | 122 | public function getExamples() { |
123 | 123 | return array( |
124 | | - 'api.php?action=compare&fromrev=1&torev=2' => 'Creates a diff between revision 1 and 2', |
| 124 | + 'api.php?action=compare&fromrev=1&torev=2' => 'Create a diff between revision 1 and 2', |
125 | 125 | ); |
126 | 126 | } |
127 | 127 | |
Index: trunk/phase3/includes/api/ApiLogout.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | |
66 | 66 | public function getExamples() { |
67 | 67 | return array( |
68 | | - 'api.php?action=logout' => 'Logs the current user out', |
| 68 | + 'api.php?action=logout' => 'Log the current user out', |
69 | 69 | ); |
70 | 70 | } |
71 | 71 | |
Index: trunk/phase3/includes/api/ApiPurge.php |
— | — | @@ -149,7 +149,7 @@ |
150 | 150 | |
151 | 151 | public function getExamples() { |
152 | 152 | return array( |
153 | | - 'api.php?action=purge&titles=Main_Page|API' => 'Purges the "Main Page" and the "API" page', |
| 153 | + 'api.php?action=purge&titles=Main_Page|API' => 'Purge the "Main Page" and the "API" page', |
154 | 154 | ); |
155 | 155 | } |
156 | 156 | |
Index: trunk/phase3/includes/api/ApiDelete.php |
— | — | @@ -263,8 +263,8 @@ |
264 | 264 | |
265 | 265 | public function getExamples() { |
266 | 266 | return array( |
267 | | - 'api.php?action=delete&title=Main%20Page&token=123ABC' => 'Deletes the Main Page', |
268 | | - 'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move' => 'Deletes the Main Page with the reason "Preparing for move"', |
| 267 | + 'api.php?action=delete&title=Main%20Page&token=123ABC' => 'Delete the Main Page', |
| 268 | + 'api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move' => 'Delete the Main Page with the reason "Preparing for move"', |
269 | 269 | ); |
270 | 270 | } |
271 | 271 | |
Index: trunk/phase3/includes/api/ApiFormatBase.php |
— | — | @@ -288,7 +288,7 @@ |
289 | 289 | public function getExamples() { |
290 | 290 | return array( |
291 | 291 | 'api.php?action=query&meta=siteinfo&siprop=namespaces&format=' . $this->getModuleName() |
292 | | - => "Formats the query result in the {$this->getModuleName()} format", |
| 292 | + => "Format the query result in the {$this->getModuleName()} format", |
293 | 293 | ); |
294 | 294 | } |
295 | 295 | |
Index: trunk/phase3/includes/api/ApiEmailUser.php |
— | — | @@ -133,7 +133,7 @@ |
134 | 134 | |
135 | 135 | public function getExamples() { |
136 | 136 | return array( |
137 | | - 'api.php?action=emailuser&target=WikiSysop&text=Content' => 'Sends an email to the User "WikiSysop" with the text "Content"', |
| 137 | + 'api.php?action=emailuser&target=WikiSysop&text=Content' => 'Send an email to the User "WikiSysop" with the text "Content"', |
138 | 138 | ); |
139 | 139 | } |
140 | 140 | |