Index: trunk/extensions/MarkAsHelpful/MarkAsHelpful.i18n.php |
— | — | @@ -12,21 +12,21 @@ |
13 | 13 | * @author Rob Moen |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
16 | | - 'mark-as-helpful-desc' => 'Hooks in to specified objects and provides a user interface to mark them as helpful', |
| 16 | + 'markashelpful-desc' => 'Provides a user interface to mark comments as helpful', |
17 | 17 | 'mah-mark-text' => 'Mark this as helpful', |
18 | 18 | 'mah-you-marked-text' => 'You think this is helpful', |
19 | 19 | 'mah-someone-marked-text' => '$1 thinks this is helpful', |
20 | 20 | 'mah-undo-mark-text' => 'undo', |
21 | | - |
22 | 21 | ); |
23 | 22 | |
24 | 23 | /** Message documentation (Message documentation) |
25 | 24 | * @author Rob Moen |
26 | 25 | */ |
27 | 26 | $messages['qqq'] = array( |
28 | | - 'mark-as-helpful-desc' => 'This is a feature in development. See [[mw:MarkAsHelpful]] for background information.', |
| 27 | + 'markashelpful-desc' => '{{desc}} |
| 28 | +This is a feature in development. See [[mw:MarkAsHelpful]] for background information.', |
29 | 29 | 'mah-mark-text' => 'Text to prompt the user to mark this item as helpful', |
30 | 30 | 'mah-you-marked-text' => 'Text displayed to the logged in user if they mark an item helpful', |
31 | 31 | 'mah-someone-marked-text' => 'Text displayed as to who marked this is helpful, shown if not the user who marked {$1 is the username}', |
32 | 32 | 'mah-undo-mark-text' => 'Text for the the undo mark link', |
33 | | -); |
\ No newline at end of file |
| 33 | +); |
Index: trunk/extensions/MarkAsHelpful/MarkAsHelpful.php |
— | — | @@ -6,9 +6,9 @@ |
7 | 7 | |
8 | 8 | $wgExtensionCredits['other'][] = array( |
9 | 9 | 'author' => array( 'Rob Moen', 'Benny Situ' ), |
10 | | - 'descriptionmsg' => 'mark-as-helpful-desc', |
| 10 | + 'descriptionmsg' => 'markashelpful-desc', |
11 | 11 | 'name' => 'MarkAsHelpful', |
12 | | - 'url' => 'http://www.mediawiki.org/wiki/Mark_as_Helpful', |
| 12 | + 'url' => 'https://www.mediawiki.org/wiki/Mark_as_Helpful', // FIXME: A page in the extension namespace should be created |
13 | 13 | 'version' => '0.1', |
14 | 14 | 'path' => __FILE__, |
15 | 15 | ); |