Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -120,6 +120,7 @@ |
121 | 121 | * (bug 10574) Add an option to allow all pages to be exported by Special:Export. |
122 | 122 | * mediawiki.js Message object constructor is now publicly available as mw.Message. |
123 | 123 | * (bug 29309) allow CSS class per tooltip (tipsy) |
| 124 | +* (bug 33565) Add accesskey/tooltip to submit buttons on Special:EditWatchlist. |
124 | 125 | |
125 | 126 | === Bug fixes in 1.19 === |
126 | 127 | * $wgUploadNavigationUrl should be used for file redlinks if. |
Index: trunk/phase3/includes/specials/SpecialEditWatchlist.php |
— | — | @@ -419,6 +419,8 @@ |
420 | 420 | $form = new EditWatchlistNormalHTMLForm( $fields, $this->getContext() ); |
421 | 421 | $form->setTitle( $this->getTitle() ); |
422 | 422 | $form->setSubmitTextMsg( 'watchlistedit-normal-submit' ); |
| 423 | + # Used message keys: 'accesskey-watchlistedit-normal-submit', 'tooltip-watchlistedit-normal-submit' |
| 424 | + $form->setSubmitTooltip('watchlistedit-normal-submit'); |
423 | 425 | $form->setWrapperLegendMsg( 'watchlistedit-normal-legend' ); |
424 | 426 | $form->addHeaderText( $this->msg( 'watchlistedit-normal-explain' )->parse() ); |
425 | 427 | $form->setSubmitCallback( array( $this, 'submitNormal' ) ); |
— | — | @@ -475,6 +477,8 @@ |
476 | 478 | $form = new HTMLForm( $fields, $this->getContext() ); |
477 | 479 | $form->setTitle( $this->getTitle( 'raw' ) ); |
478 | 480 | $form->setSubmitTextMsg( 'watchlistedit-raw-submit' ); |
| 481 | + # Used message keys: 'accesskey-watchlistedit-raw-submit', 'tooltip-watchlistedit-raw-submit' |
| 482 | + $form->setSubmitTooltip('watchlistedit-raw-submit'); |
479 | 483 | $form->setWrapperLegendMsg( 'watchlistedit-raw-legend' ); |
480 | 484 | $form->addHeaderText( $this->msg( 'watchlistedit-raw-explain' )->parse() ); |
481 | 485 | $form->setSubmitCallback( array( $this, 'submitRaw' ) ); |
Index: trunk/phase3/languages/messages/MessagesQqq.php |
— | — | @@ -3138,6 +3138,8 @@ |
3139 | 3139 | 'tooltip-diff' => 'This is the text (tooltip) that appears when you hover the mouse over the "Show changes" button ({{msg|showdiff}}) on the edit page.', |
3140 | 3140 | 'tooltip-compareselectedversions' => 'Tooltip of {{msg|compareselectedversions}} (which is used as button in history pages).', |
3141 | 3141 | 'tooltip-watch' => '{{Identical|Add this page to your watchlist}}', |
| 3142 | +'tooltip-watchlistedit-normal-submit' => 'Tooltip for {{msg|watchlistedit-normal-submit}} (used as button on [[Special:EditWatchlist]]).', |
| 3143 | +'tooltip-watchlistedit-raw-submit' => 'Tooltip for {{msg|watchlistedit-raw-submit}} (used as button on [[Special:EditWatchlist/raw]]).', |
3142 | 3144 | 'tooltip-rollback' => 'Tooltip of the rollback link on the history page and the diff view |
3143 | 3145 | {{Identical|Rollback}} |
3144 | 3146 | {{Identical|Revert}}', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3490,6 +3490,8 @@ |
3491 | 3491 | 'accesskey-blockip-block' => 's', # do not translate or duplicate this message to other languages |
3492 | 3492 | 'accesskey-export' => 's', # do not translate or duplicate this message to other languages |
3493 | 3493 | 'accesskey-import' => 's', # do not translate or duplicate this message to other languages |
| 3494 | +'accesskey-watchlistedit-normal-submit'=> 's', # do not translate or duplicate this message to other languages |
| 3495 | +'accesskey-watchlistedit-raw-submit'=> 's', # do not translate or duplicate this message to other languages |
3494 | 3496 | |
3495 | 3497 | # Tooltip help for the actions |
3496 | 3498 | 'tooltip-pt-userpage' => 'Your user page', |
— | — | @@ -3558,6 +3560,8 @@ |
3559 | 3561 | 'tooltip-undo' => '"Undo" reverts this edit and opens the edit form in preview mode. It allows adding a reason in the summary.', |
3560 | 3562 | 'tooltip-preferences-save' => 'Save preferences', |
3561 | 3563 | 'tooltip-summary' => 'Enter a short summary', |
| 3564 | +'tooltip-watchlistedit-normal-submit' => 'Remove titles', |
| 3565 | +'tooltip-watchlistedit-raw-submit' => 'Update watchlist', |
3562 | 3566 | |
3563 | 3567 | # Stylesheets |
3564 | 3568 | 'common.css' => '/* CSS placed here will be applied to all skins */', # only translate this message to other languages if you have to change it |