Index: trunk/extensions/CreditTab/CreditTab.i18n.php |
— | — | @@ -16,18 +16,21 @@ |
17 | 17 | $messages['en'] = array( |
18 | 18 | 'credits-desc' => 'Adds a link to credits', |
19 | 19 | 'credits-tab' => 'Credits', |
| 20 | + 'credits-tab-title' => 'Credits for this page', |
20 | 21 | ); |
21 | 22 | |
22 | 23 | /** Message documentation (Message documentation) */ |
23 | 24 | $messages['qqq'] = array( |
24 | 25 | 'credits-desc' => 'Description for Special:Version', |
25 | 26 | 'credits-tab' => 'Label of the tab that is shown by this extension', |
| 27 | + 'credits-tab-title' => 'Title of the link that is shown when hovering (Tool-Tip)' |
26 | 28 | ); |
27 | 29 | |
28 | 30 | /** German (Deutsch) */ |
29 | 31 | $messages['de'] = array( |
30 | 32 | 'credits-desc' => 'Fügt Link zu Autoren hinzu', |
31 | 33 | 'credits-tab' => 'Autoren', |
| 34 | + 'credits-tab-title' => 'Autoren dieser Seite', |
32 | 35 | ); |
33 | 36 | |
34 | 37 | /** Galician (Galego) |
Index: trunk/extensions/CreditTab/CreditTab.php |
— | — | @@ -15,7 +15,7 @@ |
16 | 16 | 'path' => __FILE__, |
17 | 17 | 'name' => 'CreditTab', |
18 | 18 | 'author' => '[http://www.dasch-tour.de DaSch]', |
19 | | - 'version' => '1.2.1', |
| 19 | + 'version' => '1.2.2', |
20 | 20 | 'descriptionmsg' => 'credits-desc', |
21 | 21 | 'url' => 'http://www.mediawiki.org/wiki/Extension:CreditTab', |
22 | 22 | ); |
— | — | @@ -78,6 +78,7 @@ |
79 | 79 | $credit_tab = array( |
80 | 80 | 'class' => $class_name, |
81 | 81 | 'text' => wfMsg('credits-tab'), |
| 82 | + 'title' => wfMsg('credits-tab-title'), |
82 | 83 | 'href' => $title->getLocalURL( 'action=credits' ), |
83 | 84 | ); |
84 | 85 | // find the location of the 'edit' tab, and add |