Index: trunk/extensions/AJAXPoll/AJAXPoll.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | * @author Jack Phoenix <jack@countervandalism.net> |
21 | 21 | * @author Thomas Gries |
22 | 22 | * @maintainer Thomas Gries |
23 | | - * @version 1.63 |
| 23 | + * @version 1.64 |
24 | 24 | * @link http://www.mediawiki.org/wiki/Extension:AJAX_Poll Documentation |
25 | 25 | */ |
26 | 26 | |
— | — | @@ -31,7 +31,7 @@ |
32 | 32 | $wgExtensionCredits['parserhook'][] = array( |
33 | 33 | 'path' => __FILE__, |
34 | 34 | 'name' => 'AJAX Poll', |
35 | | - 'version' => '1.63 20120310', |
| 35 | + 'version' => '1.64 20120312', |
36 | 36 | 'author' => array( 'Dariusz Siedlecki', 'Jack Phoenix', 'Thomas Gries' ), |
37 | 37 | 'descriptionmsg' => 'ajaxpoll-desc', |
38 | 38 | 'url' => 'https://www.mediawiki.org/wiki/Extension:AJAX_Poll', |
— | — | @@ -47,9 +47,9 @@ |
48 | 48 | # new user rights |
49 | 49 | $wgAvailableRights[] = 'ajaxpoll-vote'; |
50 | 50 | |
51 | | -# default: everyone can vote |
| 51 | +# default: nobody can vote |
52 | 52 | $wgGroupPermissions['*']['ajaxpoll-vote'] = false; |
53 | | -# if you want only users to vote use |
| 53 | +# allow users to vote |
54 | 54 | # $wgGroupPermissions['user']['ajaxpoll-vote'] = true; |
55 | 55 | |
56 | 56 | // Parameter to enable the automatic tracking category |
Index: trunk/extensions/AJAXPoll/AJAXPoll.i18n.php |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | 'ajaxpoll-no-vote' => 'Please vote below.', // http://trac.wikia-code.com/changeset/867 |
25 | 25 | 'ajaxpoll-info' => 'There {{PLURAL:$1|was one vote|were $1 votes}} since the poll was created on $2.', |
26 | 26 | 'ajaxpoll-submitting' => 'Please wait, submitting your vote.', |
27 | | - 'ajaxpoll-vote-permission' => 'You cannot vote.', |
| 27 | + 'ajaxpoll-vote-permission' => 'You are not enttitled to vote.', |
28 | 28 | |
29 | 29 | 'right-ajaxpoll-vote' => 'Can vote in AJAX-based polls', |
30 | 30 | ); |