Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -1719,6 +1719,8 @@ |
1720 | 1720 | Web Chat |
1721 | 1721 | aliasfile = WebChat/WebChat.alias.php |
1722 | 1722 | |
| 1723 | +Web Fonts |
| 1724 | + |
1723 | 1725 | Web Store |
1724 | 1726 | |
1725 | 1727 | What Is My IP |
Index: trunk/extensions/WebFonts/WebFonts.i18n.php |
— | — | @@ -13,13 +13,11 @@ |
14 | 14 | */ |
15 | 15 | $messages['en'] = array( |
16 | 16 | 'webfonts' => 'WebFonts', |
17 | | - 'webfonts-desc' => 'Embed fonts on mediawiki pages', |
| 17 | + 'webfonts-desc' => 'Embed fonts on pages', |
18 | 18 | 'webfonts-load' => 'Select font', |
19 | | - 'webfonts-disable-preference' => 'Disable Font Embedding(WebFonts)', |
20 | | - |
| 19 | + 'webfonts-disable-preference' => 'Disable font embedding (WebFonts)', |
21 | 20 | ); |
22 | 21 | |
23 | | - |
24 | 22 | /** Malayalam |
25 | 23 | * @author Santhosh |
26 | 24 | */ |
Index: trunk/extensions/WebFonts/WebFonts.php |
— | — | @@ -19,10 +19,10 @@ |
20 | 20 | } |
21 | 21 | |
22 | 22 | $wgExtensionCredits['parserhook'][] = array( |
| 23 | + 'path' => __FILE__, |
23 | 24 | 'name' => 'WebFonts', |
24 | 25 | 'author' => array( 'Santhosh Thottingal', 'Niklas Laxström'), |
25 | 26 | 'url' => 'http://www.mediawiki.org/wiki/Extension:WebFonts', |
26 | | - 'description' => 'Embed fonts to the mediawiki pages', |
27 | 27 | 'descriptionmsg' => 'webfonts-desc', |
28 | 28 | ); |
29 | 29 | |