Index: trunk/extensions/WebFonts/resources/ext.webfonts.js |
— | — | @@ -327,7 +327,10 @@ |
328 | 328 | .attr( 'id', 'webfonts-menu' ) |
329 | 329 | .addClass( 'webfontMenu' ) |
330 | 330 | .append( $menuItemsDiv ); |
331 | | - var $link = $( '<a>' ).prop( 'href', '#' ).text( mw.message( 'webfonts-load' ).escaped() ); |
| 331 | + var $link = $( '<a>' ) |
| 332 | + .prop( 'href', '#' ) |
| 333 | + .text( mw.message( 'webfonts-load' ).escaped() ) |
| 334 | + .attr( 'title', mw.msg( 'webfonts-menu-tooltip' ) ); |
332 | 335 | // This is the fonts link |
333 | 336 | var $li = $( '<li>' ).attr( 'id', 'pt-webfont' ).append( $link ); |
334 | 337 | // If RTL, add to the right of top personal links. Else, to the left |
Index: trunk/extensions/WebFonts/WebFonts.i18n.php |
— | — | @@ -17,13 +17,18 @@ |
18 | 18 | 'webfonts-load' => 'Select font', |
19 | 19 | 'webfonts-reset' => 'Reset', |
20 | 20 | 'webfonts-enable-preference' => 'Enable font embedding (WebFonts)', |
| 21 | + 'webfonts-menu-tooltip' => 'Select a font for the page', |
21 | 22 | ); |
22 | 23 | |
23 | 24 | /** Message documentation (Message documentation) |
24 | 25 | * @author EugeneZelenko |
25 | 26 | */ |
26 | 27 | $messages['qqq'] = array( |
| 28 | + 'webfonts' => 'The extension name - WebFonts', |
| 29 | + 'webfonts-desc' => 'short description of the extension', |
| 30 | + 'webfonts-load' => 'The text shown in the webfont link', |
27 | 31 | 'webfonts-reset' => '{{Identical|Reset}}', |
| 32 | + 'webfonts-menu-tooltip' => 'Tooltip text displayed in the webfont link', |
28 | 33 | ); |
29 | 34 | |
30 | 35 | /** Arabic (العربية) |
— | — | @@ -321,6 +326,7 @@ |
322 | 327 | 'webfonts-load' => 'ഫോണ്ടുകള്', |
323 | 328 | 'webfonts-reset' => 'പഴയപടിയാക്കുക', |
324 | 329 | 'webfonts-enable-preference' => 'ഫോണ്ട് എംബെഡ് ചെയ്യുക.(വെബ്ഫോണ്ട്സ്)', |
| 330 | + 'webfonts-menu-tooltip' => 'താളിനുവേണ്ടി ഒരു ഫോണ്ട് തിരഞ്ഞെടുക്കുക', |
325 | 331 | ); |
326 | 332 | |
327 | 333 | /** Marathi (मराठी) |
Index: trunk/extensions/WebFonts/WebFonts.php |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | ), |
59 | 59 | 'localBasePath' => $dir, |
60 | 60 | 'remoteExtPath' => 'WebFonts', |
61 | | - 'messages' => array( 'webfonts-load', 'webfonts-reset' ), |
| 61 | + 'messages' => array( 'webfonts-load', 'webfonts-reset', 'webfonts-menu-tooltip' ), |
62 | 62 | 'dependencies' => 'jquery.cookie' , |
63 | 63 | 'position' => 'top', |
64 | 64 | ); |