Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.hooks.php |
— | — | @@ -0,0 +1,64 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Hooks for WebFonts extension |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +// WebFonts hooks |
| 11 | +class WebFontsHooks { |
| 12 | + |
| 13 | + /** |
| 14 | + * BeforePageDisplay hook handler. |
| 15 | + * @param $out OutputPage |
| 16 | + * @param $skin Skin |
| 17 | + * @return bool |
| 18 | + */ |
| 19 | + public static function addModules( $out, $skin ) { |
| 20 | + |
| 21 | + if ( $out->getUser()->getOption( 'webfontsEnable' ) ) { |
| 22 | + $out->addModules( 'ext.webfonts.init' ); |
| 23 | + } |
| 24 | + |
| 25 | + return true; |
| 26 | + } |
| 27 | + |
| 28 | + /** |
| 29 | + * GetPreferences hook handler. |
| 30 | + * @param $user User |
| 31 | + * @param $preferences array |
| 32 | + * @return bool |
| 33 | + */ |
| 34 | + public static function addPreference( $user, &$preferences ) { |
| 35 | + // A checkbox in preferences to enable WebFonts |
| 36 | + $preferences['webfontsEnable'] = array( |
| 37 | + 'type' => 'toggle', |
| 38 | + 'label-message' => 'webfonts-enable-preference', // a system message |
| 39 | + 'section' => 'rendering/advancedrendering', // under 'Advanced options' section of 'Editing' tab |
| 40 | + 'default' => $user->getOption( 'webfontsEnable' ) |
| 41 | + ); |
| 42 | + |
| 43 | + return true; |
| 44 | + } |
| 45 | + |
| 46 | + /** |
| 47 | + * Hook: ResourceLoaderGetConfigVars |
| 48 | + */ |
| 49 | + public static function addConfig( &$vars ) { |
| 50 | + $vars['wgWebFontsHelpPage'] = wfMsgForContent( 'webfonts-help-page' ); |
| 51 | + return true; |
| 52 | + } |
| 53 | + |
| 54 | + /** |
| 55 | + * UserGetDefaultOptions hook handler. |
| 56 | + * @param $defaultOptions array |
| 57 | + * @return bool |
| 58 | + */ |
| 59 | + public static function addDefaultOptions( &$defaultOptions ) { |
| 60 | + global $wgWebFontsEnabledByDefault; |
| 61 | + // By default, the preference page option to enable webfonts is set to wgWebFontsEnabledByDefault value. |
| 62 | + $defaultOptions['webfontsEnable'] = $wgWebFontsEnabledByDefault; |
| 63 | + return true; |
| 64 | + } |
| 65 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.hooks.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 66 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.alias.php |
— | — | @@ -0,0 +1,20 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Aliases for special pages of WebFonts extension. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
| 8 | + */ |
| 9 | + |
| 10 | +$specialPageAliases = array(); |
| 11 | + |
| 12 | +/** English (English) */ |
| 13 | +$specialPageAliases['en'] = array( |
| 14 | + 'WebFonts' => array( 'WebFonts' ), |
| 15 | +); |
| 16 | + |
| 17 | +/** Malayalam (മലയാളം) */ |
| 18 | +$specialPageAliases['ml'] = array( |
| 19 | + 'WebFonts' => array( 'വെബ്ഫോണ്ട്സ്' ), |
| 20 | +); |
| 21 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.alias.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 22 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.woff |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 23 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan_license.txt |
— | — | @@ -0,0 +1,16 @@ |
| 2 | +Open Type rules and Nepali glyphsets developed at Madan Puraskar Pustakalaya and released under GPL. |
| 3 | + |
| 4 | +Contacts: |
| 5 | +Madan Puraskar Pustakalaya |
| 6 | +Yalamaya Kendra, Patan, NEPAL |
| 7 | +GPO Box. 42 |
| 8 | +www.mpp.org.np |
| 9 | +info@mpp.org.np |
| 10 | + |
| 11 | +Font Developers: |
| 12 | +Gaurav Shrestha | gaurav@mpp.org.np |
| 13 | +Anjan Ale | anjan@mpp.org.np |
| 14 | + |
| 15 | + |
| 16 | +Copyright (c) 2007 by Madan Puraskar Pustakalaya. All rights reserved. |
| 17 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan_license.txt |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 18 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 19 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.eot |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 20 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.eot |
___________________________________________________________________ |
Added: svn:mime-type |
4 | 21 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.woff |
___________________________________________________________________ |
Added: svn:mime-type |
5 | 22 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
6 | 23 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/madan.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
7 | 24 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/SamyakDevanagari.eot |
___________________________________________________________________ |
Added: svn:mime-type |
8 | 25 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Deva/Lohit-Devanagari.woff |
___________________________________________________________________ |
Added: svn:mime-type |
9 | 26 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.woff |
___________________________________________________________________ |
Added: svn:mime-type |
10 | 27 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.eot |
___________________________________________________________________ |
Added: svn:mime-type |
11 | 28 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.eot |
___________________________________________________________________ |
Added: svn:mime-type |
12 | 29 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
13 | 30 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/MiriamCLM-Book.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
14 | 31 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Hebr/TaameyFrankCLM.woff |
___________________________________________________________________ |
Added: svn:mime-type |
15 | 32 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
16 | 33 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
17 | 34 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.woff |
___________________________________________________________________ |
Added: svn:mime-type |
18 | 35 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.woff |
___________________________________________________________________ |
Added: svn:mime-type |
19 | 36 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Lohit-Punjabi.eot |
___________________________________________________________________ |
Added: svn:mime-type |
20 | 37 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Guru/Saab.eot |
___________________________________________________________________ |
Added: svn:mime-type |
21 | 38 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
22 | 39 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.eot |
___________________________________________________________________ |
Added: svn:mime-type |
23 | 40 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.svg |
___________________________________________________________________ |
Added: svn:mime-type |
24 | 41 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.woff |
___________________________________________________________________ |
Added: svn:mime-type |
25 | 42 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.eot |
___________________________________________________________________ |
Added: svn:mime-type |
26 | 43 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
27 | 44 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-book.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-book.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
28 | 45 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.eot |
___________________________________________________________________ |
Added: svn:mime-type |
29 | 46 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.svg |
___________________________________________________________________ |
Added: svn:mime-type |
30 | 47 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Yunghkio.woff |
___________________________________________________________________ |
Added: svn:mime-type |
31 | 48 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
32 | 49 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Parabaik_UTN11-3.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Parabaik_UTN11-3.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
33 | 50 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.svg |
___________________________________________________________________ |
Added: svn:mime-type |
34 | 51 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
35 | 52 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
36 | 53 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.svg |
___________________________________________________________________ |
Added: svn:mime-type |
37 | 54 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/MasterpieceUniSans.woff |
___________________________________________________________________ |
Added: svn:mime-type |
38 | 55 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Padauk-Regular.woff |
___________________________________________________________________ |
Added: svn:mime-type |
39 | 56 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mymr/Myanmar3.eot |
___________________________________________________________________ |
Added: svn:mime-type |
40 | 57 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.eot |
___________________________________________________________________ |
Added: svn:mime-type |
41 | 58 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
42 | 59 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Ethi/AbyssinicaSIL-R.woff |
___________________________________________________________________ |
Added: svn:mime-type |
43 | 60 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
44 | 61 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
45 | 62 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.woff |
___________________________________________________________________ |
Added: svn:mime-type |
46 | 63 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.eot |
___________________________________________________________________ |
Added: svn:mime-type |
47 | 64 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.woff |
___________________________________________________________________ |
Added: svn:mime-type |
48 | 65 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/Lohit-Tamil.eot |
___________________________________________________________________ |
Added: svn:mime-type |
49 | 66 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
50 | 67 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/TheneeUni.eot |
___________________________________________________________________ |
Added: svn:mime-type |
51 | 68 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Taml/ThendralUni.woff |
___________________________________________________________________ |
Added: svn:mime-type |
52 | 69 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
53 | 70 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.woff |
___________________________________________________________________ |
Added: svn:mime-type |
54 | 71 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.woff |
___________________________________________________________________ |
Added: svn:mime-type |
55 | 72 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.svg |
___________________________________________________________________ |
Added: svn:mime-type |
56 | 73 | + image/svg+xml |
Added: svn:eol-style |
57 | 74 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Perizia.woff |
___________________________________________________________________ |
Added: svn:mime-type |
58 | 75 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.woff |
___________________________________________________________________ |
Added: svn:mime-type |
59 | 76 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.eot |
___________________________________________________________________ |
Added: svn:mime-type |
60 | 77 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.eot |
___________________________________________________________________ |
Added: svn:mime-type |
61 | 78 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r-webfont.eot |
___________________________________________________________________ |
Added: svn:mime-type |
62 | 79 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/CharisSIL-R.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
63 | 80 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/Rufscript.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
64 | 81 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Latn/ubuntu-r.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
65 | 82 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.svg |
___________________________________________________________________ |
Added: svn:mime-type |
66 | 83 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.woff |
___________________________________________________________________ |
Added: svn:mime-type |
67 | 84 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
68 | 85 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmetalchrieng.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmetalchrieng.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
69 | 86 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.svg |
___________________________________________________________________ |
Added: svn:mime-type |
70 | 87 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
71 | 88 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.woff |
___________________________________________________________________ |
Added: svn:mime-type |
72 | 89 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
73 | 90 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.svg |
___________________________________________________________________ |
Added: svn:mime-type |
74 | 91 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.eot |
___________________________________________________________________ |
Added: svn:mime-type |
75 | 92 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.svg |
___________________________________________________________________ |
Added: svn:mime-type |
76 | 93 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.woff |
___________________________________________________________________ |
Added: svn:mime-type |
77 | 94 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.eot |
___________________________________________________________________ |
Added: svn:mime-type |
78 | 95 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
79 | 96 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.eot |
___________________________________________________________________ |
Added: svn:mime-type |
80 | 97 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.svg |
___________________________________________________________________ |
Added: svn:mime-type |
81 | 98 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
82 | 99 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
83 | 100 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOScontent.woff |
___________________________________________________________________ |
Added: svn:mime-type |
84 | 101 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.svg |
___________________________________________________________________ |
Added: svn:mime-type |
85 | 102 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.svg |
___________________________________________________________________ |
Added: svn:mime-type |
86 | 103 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
87 | 104 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.woff |
___________________________________________________________________ |
Added: svn:mime-type |
88 | 105 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.woff |
___________________________________________________________________ |
Added: svn:mime-type |
89 | 106 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.svg |
___________________________________________________________________ |
Added: svn:mime-type |
90 | 107 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.eot |
___________________________________________________________________ |
Added: svn:mime-type |
91 | 108 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbattambang.eot |
___________________________________________________________________ |
Added: svn:mime-type |
92 | 109 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuollight.eot |
___________________________________________________________________ |
Added: svn:mime-type |
93 | 110 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.eot |
___________________________________________________________________ |
Added: svn:mime-type |
94 | 111 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSbokor.eot |
___________________________________________________________________ |
Added: svn:mime-type |
95 | 112 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuol.eot |
___________________________________________________________________ |
Added: svn:mime-type |
96 | 113 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.eot |
___________________________________________________________________ |
Added: svn:mime-type |
97 | 114 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsiemreap.woff |
___________________________________________________________________ |
Added: svn:mime-type |
98 | 115 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
99 | 116 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.svg |
___________________________________________________________________ |
Added: svn:mime-type |
100 | 117 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
101 | 118 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfreehand.woff |
___________________________________________________________________ |
Added: svn:mime-type |
102 | 119 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.svg |
___________________________________________________________________ |
Added: svn:mime-type |
103 | 120 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
104 | 121 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSsys.woff |
___________________________________________________________________ |
Added: svn:mime-type |
105 | 122 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOS.woff |
___________________________________________________________________ |
Added: svn:mime-type |
106 | 123 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.svg |
Cannot display: file marked as a binary type. |
svn:mime-type = image/svg+xml |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.svg |
___________________________________________________________________ |
Added: svn:mime-type |
107 | 124 | + image/svg+xml |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSmuolpali.woff |
___________________________________________________________________ |
Added: svn:mime-type |
108 | 125 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Khmr/KhmerOSfasthand.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
109 | 126 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
110 | 127 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.woff |
___________________________________________________________________ |
Added: svn:mime-type |
111 | 128 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSansLicense.txt |
— | — | @@ -0,0 +1,59 @@ |
| 2 | +======================================================================= |
| 3 | +THIS PACKAGE IS FREE SOFTWARE BUT IS NOT GPL. PLEASE READ THE FOLLOWING |
| 4 | +LICENSE FOR DETAILS OF YOUR RIGHTS: |
| 5 | +======================================================================= |
| 6 | + |
| 7 | +Arabic Script Glyphs, OpenType Layout and TrueType Instructions (c) 2007 by Iranian National Initiative for Free and Open Source Software (www.foss.ir) See license details in section one. |
| 8 | + |
| 9 | +Latin Glyph Outlines Copyright (c) 2003 by Bitstream, Inc. See license details in section two. |
| 10 | + |
| 11 | + |
| 12 | +----------------------------------------------------------------------- |
| 13 | + |
| 14 | + |
| 15 | +SECTION ONE - Iranian National Initiative for Free and Open Source Software Font License |
| 16 | + |
| 17 | + |
| 18 | +Copyright (c) 2007 by Iranian National Initiative for Free and Open Source Software, |
| 19 | +All Rights Reserved. |
| 20 | + |
| 21 | +"Iranian Sans" is a service mark of Iranian National Initiative for Free and Open Source Software |
| 22 | + |
| 23 | +Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: |
| 24 | + |
| 25 | +The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. |
| 26 | + |
| 27 | +The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "Iranian". |
| 28 | + |
| 29 | +This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed either under the "Iranian" names or claimed to be endorsed or associated with Iranian National Initiative for Free and Open Source Software. |
| 30 | + |
| 31 | +The Font Software may be sold as part of a larger software package provided that: a) No copy of one or more of the Font Software typefaces may be sold by itself or as part of a package that only consists of a collection of fonts and associated supplementary documentation and utilities. b) No price is charged or associated with any of the Font Software typefaces themselves. So, the price of the package with or without the Font Software typefaces should be the same. |
| 32 | + |
| 33 | +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL "IRANIAN NATIONAL INITIATIVE FOR FREE AND OPEN SOURCE SOFTWARE" BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. |
| 34 | + |
| 35 | +Except as contained in this notice, the names of "Iranian", "Iranian Sans", "Iranian National Initiative for Free and Open Source Software" or "www.foss.ir" shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Iranian National Initiative for Free and Open Source Software. For further information, contact: fonts (at) foss (dot) ir. |
| 36 | + |
| 37 | + |
| 38 | +----------------------------------------------------------------------- |
| 39 | + |
| 40 | + |
| 41 | +SECTION TWO - Bitstream, Inc. License |
| 42 | + |
| 43 | + |
| 44 | +Copyright (c) 2003 by Bitstream, Inc. |
| 45 | +All Rights Reserved. |
| 46 | +Bitstream Vera is a trademark of Bitstream, Inc. |
| 47 | + |
| 48 | +Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: |
| 49 | + |
| 50 | +The above copyright and trademark notices and this permission notice shall be included in all copies of one or more of the Font Software typefaces. |
| 51 | + |
| 52 | +The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing either the words "Bitstream" or the word "Vera". |
| 53 | + |
| 54 | +This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "Bitstream Vera" names. |
| 55 | + |
| 56 | +The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. |
| 57 | + |
| 58 | +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. |
| 59 | + |
| 60 | +Except as contained in this notice, the names of Gnome, the Gnome Foundation, and Bitstream Inc., shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Font Software without prior written authorization from the Gnome Foundation or Bitstream Inc., respectively. For further information, contact: fonts at gnome dot org. |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSansLicense.txt |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 61 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Arab/IranianSans.eot |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 62 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 63 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.eot |
___________________________________________________________________ |
Added: svn:mime-type |
4 | 64 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.woff |
___________________________________________________________________ |
Added: svn:mime-type |
5 | 65 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
6 | 66 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/Lohit-Gujarati.eot |
___________________________________________________________________ |
Added: svn:mime-type |
7 | 67 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Gujr/SamyakGujarati.woff |
___________________________________________________________________ |
Added: svn:mime-type |
8 | 68 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.eot |
___________________________________________________________________ |
Added: svn:mime-type |
9 | 69 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.woff |
___________________________________________________________________ |
Added: svn:mime-type |
10 | 70 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.eot |
___________________________________________________________________ |
Added: svn:mime-type |
11 | 71 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
12 | 72 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.eot |
___________________________________________________________________ |
Added: svn:mime-type |
13 | 73 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
14 | 74 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Vemana2000.woff |
___________________________________________________________________ |
Added: svn:mime-type |
15 | 75 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Pothana2000.woff |
___________________________________________________________________ |
Added: svn:mime-type |
16 | 76 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Telu/Lohit-Telugu.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
17 | 77 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.woff |
___________________________________________________________________ |
Added: svn:mime-type |
18 | 78 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.woff |
___________________________________________________________________ |
Added: svn:mime-type |
19 | 79 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.eot |
___________________________________________________________________ |
Added: svn:mime-type |
20 | 80 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.eot |
___________________________________________________________________ |
Added: svn:mime-type |
21 | 81 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/Lohit-Oriya.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
22 | 82 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Orya/utkal.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
23 | 83 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
24 | 84 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.woff |
___________________________________________________________________ |
Added: svn:mime-type |
25 | 85 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Saur/Pagul.eot |
___________________________________________________________________ |
Added: svn:mime-type |
26 | 86 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.eot |
___________________________________________________________________ |
Added: svn:mime-type |
27 | 87 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.eot |
___________________________________________________________________ |
Added: svn:mime-type |
28 | 88 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
29 | 89 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
30 | 90 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Assamese.woff |
___________________________________________________________________ |
Added: svn:mime-type |
31 | 91 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Beng/Lohit-Bengali.woff |
___________________________________________________________________ |
Added: svn:mime-type |
32 | 92 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.woff |
___________________________________________________________________ |
Added: svn:mime-type |
33 | 93 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.eot |
___________________________________________________________________ |
Added: svn:mime-type |
34 | 94 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.eot |
___________________________________________________________________ |
Added: svn:mime-type |
35 | 95 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
36 | 96 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Lohit-Kannada.woff |
___________________________________________________________________ |
Added: svn:mime-type |
37 | 97 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Knda/Kedage.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
38 | 98 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.eot |
___________________________________________________________________ |
Added: svn:mime-type |
39 | 99 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.eot |
___________________________________________________________________ |
Added: svn:mime-type |
40 | 100 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
41 | 101 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
42 | 102 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.woff |
___________________________________________________________________ |
Added: svn:mime-type |
43 | 103 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.ttf |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-font-ttf |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.ttf |
___________________________________________________________________ |
Added: svn:mime-type |
44 | 104 | + application/x-font-ttf |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/Meera.woff |
___________________________________________________________________ |
Added: svn:mime-type |
45 | 105 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.woff |
Cannot display: file marked as a binary type. |
svn:mime-type = application/x-woff |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/AnjaliOldLipi.woff |
___________________________________________________________________ |
Added: svn:mime-type |
46 | 106 | + application/x-woff |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.eot |
Cannot display: file marked as a binary type. |
svn:mime-type = application/vnd.ms-fontobject |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/fonts/Mlym/RaghuMalayalam.eot |
___________________________________________________________________ |
Added: svn:mime-type |
47 | 107 | + application/vnd.ms-fontobject |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.monobook.css |
— | — | @@ -0,0 +1,4 @@ |
| 2 | +div#webfonts-menu ul { |
| 3 | + font-size: 1.2em; |
| 4 | +} |
| 5 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.monobook.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 6 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.modern.css |
— | — | @@ -0,0 +1,39 @@ |
| 2 | +#p-personal { |
| 3 | + /* #p-personal has overflow:hidden. That makes a dropdown menu appearing hidden. |
| 4 | + * overriding it this way may not be the best way. |
| 5 | + */ |
| 6 | + overflow: visible!important; |
| 7 | +} |
| 8 | + |
| 9 | +li#pt-webfont { |
| 10 | + margin-left: 5px; |
| 11 | +} |
| 12 | + |
| 13 | +div.webfontMenu div.menu { |
| 14 | + top: 0px; |
| 15 | + position: relative; |
| 16 | +} |
| 17 | + |
| 18 | +div#webfonts-menu li { |
| 19 | + background-color: #FFFFFF; |
| 20 | + font-weight: normal; |
| 21 | + white-space: nowrap; |
| 22 | + text-transform: none; |
| 23 | + font-variant: normal; |
| 24 | +} |
| 25 | + |
| 26 | +div#webfonts-menu ul { |
| 27 | + border: solid 1px silver; |
| 28 | + background-color: #FFFFFF; |
| 29 | + height: auto; |
| 30 | + font-size: 1.2em; |
| 31 | +} |
| 32 | + |
| 33 | +div#webfonts-menu li a:hover{ |
| 34 | + color: #0645AD; |
| 35 | +} |
| 36 | + |
| 37 | +div#webfonts-menu li:hover { |
| 38 | + background-color: #FFFFFF; |
| 39 | +} |
| 40 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.modern.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 41 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.js |
— | — | @@ -0,0 +1,429 @@ |
| 2 | +( function( $, mw, undefined ) { |
| 3 | + |
| 4 | + function fontID( font ) { |
| 5 | + if ( typeof font !== 'string' ) { |
| 6 | + return font; |
| 7 | + } |
| 8 | + return 'webfont-' + font.toLowerCase().replace(/[_ ]/g, '-' ).replace(/[^-a-z]/g, '' ); |
| 9 | + } |
| 10 | + |
| 11 | + mw.webfonts = { |
| 12 | + |
| 13 | + oldconfig: false, |
| 14 | + config: { fonts: {}, languages: {} }, |
| 15 | + version: '0.1.2', |
| 16 | + fonts : [], |
| 17 | + set: function( font ) { |
| 18 | + if ( !font || font === 'none' ) { |
| 19 | + mw.webfonts.reset(); |
| 20 | + return; |
| 21 | + } |
| 22 | + |
| 23 | + if ( mw.webfonts.config.fonts[font] === undefined ) { |
| 24 | + mw.log( 'Requested unknown font', font ); |
| 25 | + return; |
| 26 | + } |
| 27 | + var config = mw.webfonts.config.fonts[font], |
| 28 | + $body = $( 'body' ); |
| 29 | + |
| 30 | + // Load the style sheet for the font |
| 31 | + mw.webfonts.addFont( font ); |
| 32 | + |
| 33 | + // Save the current font and its size. Used for reset. |
| 34 | + if ( !mw.webfonts.oldconfig ) { |
| 35 | + |
| 36 | + mw.webfonts.oldconfig = { |
| 37 | + fontFamily: $body.css( 'font-family' ), |
| 38 | + fontSize: $body.css( 'font-size' ) |
| 39 | + }; |
| 40 | + } |
| 41 | + |
| 42 | + // Set the font, fallback fonts. |
| 43 | + // Need to change the fonts of Input Select and Textarea explicitly. |
| 44 | + $( 'body, input, select, textarea' ).css( 'font-family', '"' + font + '", Helvetica, Arial, sans-serif' ); |
| 45 | + |
| 46 | + if ( config.normalization !== undefined ) { |
| 47 | + $( document ).ready( function() { |
| 48 | + mw.webfonts.normalize( config.normalization ); |
| 49 | + } ); |
| 50 | + } |
| 51 | + // Store the font choise in cookie |
| 52 | + $.cookie( 'webfonts-font', font, { 'path': '/', 'expires': 30 } ); |
| 53 | + |
| 54 | + // If we had reset the fonts for tags with lang attribute, apply the fonts again. |
| 55 | + mw.webfonts.loadFontsForLangAttr(); |
| 56 | + }, |
| 57 | + |
| 58 | + /** |
| 59 | + * Reset the font with old configuration |
| 60 | + */ |
| 61 | + reset: function() { |
| 62 | + $( 'body' ).css( { |
| 63 | + fontFamily: mw.webfonts.oldconfig.fontFamily, |
| 64 | + fontSize: mw.webfonts.oldconfig.fontSize |
| 65 | + }); |
| 66 | + // We need to reset the font family of Input and Select explicitly. |
| 67 | + $( 'input, select' ).css( 'font-family', mw.webfonts.oldconfig.fontFamily ); |
| 68 | + |
| 69 | + // Reset the fonts applied for tags with lang attribute. |
| 70 | + $( '.webfonts-lang-attr' ).css( 'font-family', '' ).removeClass( 'webfonts-lang-attr' ); |
| 71 | + |
| 72 | + // Remove the cookie |
| 73 | + $.cookie( 'webfonts-font', 'none', { 'path': '/', 'expires': 30 } ); |
| 74 | + }, |
| 75 | + |
| 76 | + /** |
| 77 | + * Does a find replace of string on the page. |
| 78 | + * @param normalization_rules hashmap of replacement rules. |
| 79 | + */ |
| 80 | + normalize: function( normalizationRules ) { |
| 81 | + $.each( normalizationRules, function( search, replace ) { |
| 82 | + var searchPattern = new RegExp( search, 'g' ); |
| 83 | + return $( '*' ).each( function() { |
| 84 | + var node = this.firstChild, |
| 85 | + val, newVal; |
| 86 | + if ( node ) { |
| 87 | + do { |
| 88 | + if ( node.nodeType === 3 ) { |
| 89 | + val = node.nodeValue; |
| 90 | + newVal = val.replace( searchPattern, replace ); |
| 91 | + if ( newVal !== val ) { |
| 92 | + node.nodeValue = newVal; |
| 93 | + } |
| 94 | + } |
| 95 | + } while ( node = node.nextSibling ); |
| 96 | + } |
| 97 | + } ); |
| 98 | + } ); |
| 99 | + }, |
| 100 | + |
| 101 | + /** |
| 102 | + * Construct the CSS required for the font-family, inject it to the head of the body |
| 103 | + * so that it gets loaded. |
| 104 | + * @param fontFamily The font-family name |
| 105 | + */ |
| 106 | + loadCSS: function( fontFamily ) { |
| 107 | + var fontconfig = mw.webfonts.config.fonts[fontFamily], |
| 108 | + base = mw.config.get( 'wgExtensionAssetsPath' ) + '/WebFonts/fonts/', |
| 109 | + fontFormats = [], |
| 110 | + version = fontconfig.version || "0.0", |
| 111 | + versionSuffix = "?version=" + version + '&20111213', |
| 112 | + styleString = "@font-face { font-family: '"+fontFamily+"';\n", |
| 113 | + ua = navigator.userAgent; |
| 114 | + |
| 115 | + if ( fontconfig.eot !== undefined ) { |
| 116 | + styleString += "\tsrc: url('" + base + fontconfig.eot + versionSuffix + "');\n"; |
| 117 | + } |
| 118 | + |
| 119 | + styleString += "\tsrc: "; |
| 120 | + |
| 121 | + // If the font is present locally, use it. |
| 122 | + if( ua.match( /Android 2\.3/ ) === null ) { |
| 123 | + // Android 2.3.x does not respect local() syntax. |
| 124 | + // http://code.google.com/p/android/issues/detail?id=10609 |
| 125 | + styleString += "local('" + fontFamily + "'),"; |
| 126 | + } |
| 127 | + |
| 128 | + if ( fontconfig.woff !== undefined ) { |
| 129 | + fontFormats.push( "\t\turl('" + base + fontconfig.woff + versionSuffix + "') format('woff')" ); |
| 130 | + } |
| 131 | + |
| 132 | + if ( fontconfig.svg !== undefined ) { |
| 133 | + fontFormats.push( "\t\turl('" + base + fontconfig.svg + versionSuffix + "#" + fontFamily + "') format('svg')" ); |
| 134 | + } |
| 135 | + |
| 136 | + if ( fontconfig.ttf !== undefined ) { |
| 137 | + fontFormats.push( "\t\turl('" + base + fontconfig.ttf + versionSuffix + "') format('truetype')" ); |
| 138 | + } |
| 139 | + |
| 140 | + styleString += fontFormats.join() + ";\n"; |
| 141 | + styleString += "\tfont-weight: normal;}"; |
| 142 | + |
| 143 | + // inject the css to the head of the page. |
| 144 | + mw.util.addCSS( styleString ); |
| 145 | + }, |
| 146 | + |
| 147 | + /** |
| 148 | + * Add a font to the page. |
| 149 | + * This method ensures that css are not duplicated and |
| 150 | + * keep track of added fonts. |
| 151 | + * @param fontFamilyName {String} The font-family name |
| 152 | + */ |
| 153 | + addFont: function( fontFamilyName ) { |
| 154 | + // Avoid duplicate loading |
| 155 | + if ( $.inArray( fontFamilyName, mw.webfonts.fonts ) === -1 ) { |
| 156 | + // Check whether the requested font is available. |
| 157 | + if ( mw.webfonts.config.fonts[fontFamilyName] !== undefined ) { |
| 158 | + mw.webfonts.loadCSS( fontFamilyName ); |
| 159 | + mw.webfonts.fonts.push( fontFamilyName ); |
| 160 | + } |
| 161 | + } |
| 162 | + }, |
| 163 | + |
| 164 | + /** |
| 165 | + * Setup the font selection menu. |
| 166 | + * It also apply the font from cookie, if any. |
| 167 | + */ |
| 168 | + setup: function() { |
| 169 | + // Blacklist some browsers that are known to have issues with font rendering |
| 170 | + if ( navigator.appName === 'Microsoft Internet Explorer' ) { |
| 171 | + var ua = navigator.userAgent; |
| 172 | + if ( /MSIE 6/i.test( ua ) ) { |
| 173 | + // IE6 has not font fallbacks |
| 174 | + return; |
| 175 | + } else if ( /MSIE 8/i.test( ua ) && /Windows NT 5.1/i.test( ua ) ) { |
| 176 | + // IE8 on XP has occasional gibberish bug |
| 177 | + return; |
| 178 | + } |
| 179 | + } |
| 180 | + |
| 181 | + var fonts = [], |
| 182 | + languages = mw.webfonts.config.languages, |
| 183 | + requested = [mw.config.get( 'wgUserVariant' ), mw.config.get( 'wgContentLanguage' ), |
| 184 | + mw.config.get( 'wgUserLanguage' ), mw.config.get( 'wgPageContentLanguage' )], |
| 185 | + i, j; |
| 186 | + |
| 187 | + for ( i = 0; i < requested.length; i++ ) { |
| 188 | + if ( languages[requested[i]] !== undefined ) { |
| 189 | + fonts = languages[requested[i]]; |
| 190 | + for ( j = 0; j < fonts.length; j++ ) { |
| 191 | + if ( $.inArray( fonts[j], fonts ) === -1 ) { |
| 192 | + fonts.push( fonts[j] ); |
| 193 | + } |
| 194 | + } |
| 195 | + } |
| 196 | + } |
| 197 | + |
| 198 | + // Build font dropdown |
| 199 | + mw.webfonts.buildMenu( fonts ); |
| 200 | + // See if there is a font in cookie if not first font is default font. |
| 201 | + var cookieFont = $.cookie( 'webfonts-font' ), |
| 202 | + selectedFont = null; |
| 203 | + // check whether this font is for the current userlang/contentlang |
| 204 | + if ( $.inArray( cookieFont, fonts ) !== -1 || cookieFont === 'none' ) { |
| 205 | + selectedFont = cookieFont; |
| 206 | + } |
| 207 | + else { |
| 208 | + // We cannot use cookie font since it is not one of the fonts suitable |
| 209 | + // for current language. |
| 210 | + selectedFont = fonts[0]; |
| 211 | + } |
| 212 | + if ( selectedFont ) { |
| 213 | + mw.webfonts.set( selectedFont ); |
| 214 | + // Mark it as checked |
| 215 | + $( '#'+fontID( selectedFont ) ).prop( 'checked', true ); |
| 216 | + } |
| 217 | + |
| 218 | + mw.webfonts.loadFontsForFontFamilyStyle(); |
| 219 | + mw.webfonts.loadFontsForLangAttr(); |
| 220 | + |
| 221 | + if ( $( '.webfonts-lang-attr' ).length && !$( '#webfonts-fontsmenu' ).length ) { |
| 222 | + // We need to show the reset option even if there is no font to show |
| 223 | + // for the language, if there is lang attr based font embedding. |
| 224 | + mw.webfonts.buildMenu( fonts ); |
| 225 | + } |
| 226 | + }, |
| 227 | + |
| 228 | + /** |
| 229 | + * Scan the page for tags with lang attr and load the default font |
| 230 | + * for that language if available. |
| 231 | + */ |
| 232 | + loadFontsForLangAttr: function() { |
| 233 | + var languages = mw.webfonts.config.languages; |
| 234 | + var requested = [mw.config.get( 'wgUserVariant' ), mw.config.get( 'wgContentLanguage' ), |
| 235 | + mw.config.get( 'wgUserLanguage' ), mw.config.get( 'wgPageContentLanguage' )]; |
| 236 | + var fontFamily = false; |
| 237 | + // If there are tags with lang attribute, |
| 238 | + $( 'body' ).find( '*[lang]' ).each( function( i, el) { |
| 239 | + // If the lang attribute value is same as one of |
| 240 | + // contentLang,useLang, variant, no need to do this. |
| 241 | + if( $.inArray( el.lang , requested ) === -1 ) { |
| 242 | + // check the availability of font, add a font-family style if it does not have any |
| 243 | + if( languages[el.lang] && ( !el.style.fontFamily || el.style.fontFamily === 'none' ) ) { |
| 244 | + fontFamily = languages[el.lang][0]; |
| 245 | + mw.webfonts.addFont( fontFamily ); |
| 246 | + $(el).css( 'font-family', fontFamily ).addClass( 'webfonts-lang-attr' ); |
| 247 | + } |
| 248 | + } |
| 249 | + }); |
| 250 | + }, |
| 251 | + |
| 252 | + /** |
| 253 | + * Scan the page for tags with font-family style declarations |
| 254 | + * If that font is available, embed it. |
| 255 | + */ |
| 256 | + loadFontsForFontFamilyStyle: function() { |
| 257 | + // If there are tags with font-family style definition, get a list of fonts to be loaded |
| 258 | + $( 'body' ).find( '*[style]' ).each( function( i, el ) { |
| 259 | + if( el.style.fontFamily ) { |
| 260 | + var fontFamilyItems = el.style.fontFamily.split( ',' ); |
| 261 | + $.each( fontFamilyItems, function( i, fontFamily ) { |
| 262 | + // Remove the ' characters if any. |
| 263 | + fontFamily = fontFamily.replace( /'/g, '' ); |
| 264 | + mw.webfonts.addFont( fontFamily ); |
| 265 | + }); |
| 266 | + } |
| 267 | + }); |
| 268 | + |
| 269 | + }, |
| 270 | + |
| 271 | + /** |
| 272 | + * Prepare the div containing menu items. |
| 273 | + * @param fonts {Array} List of fonts to be provided as a menu option. |
| 274 | + */ |
| 275 | + buildMenuItems: function ( fonts ){ |
| 276 | + var haveSchemes = false, |
| 277 | + $fontsMenu = $( '<ul>' ) |
| 278 | + .attr( 'id', 'webfonts-fontsmenu' ) |
| 279 | + .delegate( 'input:radio', 'click', function() { |
| 280 | + mw.webfonts.set( $(this).val() ); |
| 281 | + } ), |
| 282 | + len = fonts.length, |
| 283 | + i, font, $link, $label, $item; |
| 284 | + |
| 285 | + for ( i = 0; i < len; i++ ) { |
| 286 | + font = fonts[i]; |
| 287 | + |
| 288 | + $link = $( '<input type="radio" name="font" />' ) |
| 289 | + .attr( 'id', fontID( font ) ) |
| 290 | + .val( font ); |
| 291 | + |
| 292 | + $label = $( '<label>' ) |
| 293 | + .attr( 'for',fontID( font ) ) |
| 294 | + .append( $link ) |
| 295 | + .append( font ); |
| 296 | + |
| 297 | + $item = $( '<li>' ) |
| 298 | + .val( font ) |
| 299 | + .append( $label ); |
| 300 | + |
| 301 | + haveSchemes = true; |
| 302 | + |
| 303 | + $fontsMenu.append( $item ); |
| 304 | + |
| 305 | + } |
| 306 | + |
| 307 | + $resetLink = $resetLabel = $resetItem = undefined; |
| 308 | + |
| 309 | + if ( !haveSchemes && !$( '.webfonts-lang-attr' ).length ) { |
| 310 | + // No schemes available, and no tags with lang attr |
| 311 | + // with fonts loaded. Don't show the menu. |
| 312 | + return null; |
| 313 | + } |
| 314 | + |
| 315 | + $resetLink = $( '<input type="radio" name="font" />' ) |
| 316 | + .attr( 'value', 'webfont-none' ) |
| 317 | + .attr( 'id', 'webfont-none' ) |
| 318 | + .click( function() { |
| 319 | + mw.webfonts.set( 'none' ); |
| 320 | + }); |
| 321 | + |
| 322 | + $resetLabel = $( '<label>' ) |
| 323 | + .attr( 'for', 'webfont-none' ) |
| 324 | + .append( $resetLink ) |
| 325 | + .append( mw.message( 'webfonts-reset' ).escaped() ); |
| 326 | + |
| 327 | + $resetItem = $( '<li>' ) |
| 328 | + .val( 'none' ) |
| 329 | + .append( $resetLabel ); |
| 330 | + |
| 331 | + $fontsMenu.append( $resetItem ); |
| 332 | + |
| 333 | + |
| 334 | + var helpPage = mw.config.get( 'wgWebFontsHelpPage' ); |
| 335 | + var $helpLink = $( '<a id="webfont-help-link" >' ) |
| 336 | + .text( mw.msg( 'webfonts-help' ) ) |
| 337 | + .prop( 'href', helpPage ) |
| 338 | + .prop( 'target', '_blank'); |
| 339 | + var $helpItem = $( '<li>' ).addClass( 'webfont-help-item' ).append( $helpLink ); |
| 340 | + $fontsMenu.append( $helpItem ); |
| 341 | + |
| 342 | + return $( '<div>' ) |
| 343 | + .attr( 'id', 'webfonts-fonts' ) |
| 344 | + .addClass( 'menu' ) |
| 345 | + .append( $fontsMenu ); |
| 346 | + }, |
| 347 | + |
| 348 | + /** |
| 349 | + * Prepare the menu for the webfonts. |
| 350 | + * @param fonts {Array} List of fonts to be provided as a menu option. |
| 351 | + */ |
| 352 | + buildMenu: function( fonts ) { |
| 353 | + var $menuItemsDiv = mw.webfonts.buildMenuItems( fonts ); |
| 354 | + if( $menuItemsDiv === null ) { |
| 355 | + return; |
| 356 | + } |
| 357 | + var $menu = $( '<div>' ) |
| 358 | + .attr( 'id', 'webfonts-menu' ) |
| 359 | + .addClass( 'webfontMenu' ) |
| 360 | + .append( $menuItemsDiv ); |
| 361 | + var $link = $( '<a>' ) |
| 362 | + .prop( 'href', '#' ) |
| 363 | + .text( mw.msg( 'webfonts-load' ) ) |
| 364 | + .attr( 'title', mw.msg( 'webfonts-menu-tooltip' ) ); |
| 365 | + |
| 366 | + // This is the fonts link |
| 367 | + var $li = $( '<li>' ).attr( 'id', 'pt-webfont' ).append( $link ); |
| 368 | + |
| 369 | + var rtlEnv = $( 'body' ).hasClass( 'rtl' ); |
| 370 | + |
| 371 | + // If RTL, add to the right of top personal links. Else, to the left |
| 372 | + var positionFunction = rtlEnv ? 'append' : 'prepend'; |
| 373 | + $( '#p-personal ul:first' )[positionFunction]( $li ); |
| 374 | + |
| 375 | + $( 'body' ).prepend( $menu ); |
| 376 | + $li.click( function( event ) { |
| 377 | + var menuSide, menuOffset, distanceToEdge; |
| 378 | + |
| 379 | + if ( rtlEnv ) { |
| 380 | + distanceToEdge = $li.outerWidth() + $li.offset().left; |
| 381 | + if ( $menuItemsDiv.outerWidth() > distanceToEdge ) { |
| 382 | + menuSide = 'left'; |
| 383 | + menuOffset = $li.offset().left; |
| 384 | + } else { |
| 385 | + menuSide = 'right'; |
| 386 | + menuOffset = $(window).width() - distanceToEdge; |
| 387 | + } |
| 388 | + } else { |
| 389 | + distanceToEdge = $(window).width() - $li.offset().left; |
| 390 | + if ( $menuItemsDiv.outerWidth() > distanceToEdge ) { |
| 391 | + menuSide = 'right'; |
| 392 | + menuOffset = distanceToEdge - $li.outerWidth(); |
| 393 | + } else { |
| 394 | + menuSide = 'left'; |
| 395 | + menuOffset = $li.offset().left; |
| 396 | + } |
| 397 | + } |
| 398 | + |
| 399 | + $menuItemsDiv.css( menuSide, menuOffset ); |
| 400 | + |
| 401 | + if ( $menu.hasClass( 'open' ) ) { |
| 402 | + $menu.removeClass( 'open' ); |
| 403 | + } else { |
| 404 | + $( 'div.open' ).removeClass( 'open' ); |
| 405 | + $menu.addClass( 'open' ); |
| 406 | + event.stopPropagation(); |
| 407 | + } |
| 408 | + } ); |
| 409 | + |
| 410 | + $( 'html' ).click( function() { |
| 411 | + $menu.removeClass( 'open' ); |
| 412 | + } ); |
| 413 | + |
| 414 | + $menu.click( function( event ) { |
| 415 | + event.stopPropagation(); |
| 416 | + } ); |
| 417 | + |
| 418 | + // Workaround for IE bug - ActiveX components like input fields coming on top of everything. |
| 419 | + // @todo Is there a better solution other than hiding it on hover? |
| 420 | + if ( $.browser.msie ) { |
| 421 | + $( '#webfonts-menu' ).hover( function() { |
| 422 | + $( '#searchform' ).css({ visibility: 'hidden' } ); |
| 423 | + }, function() { |
| 424 | + $( '#searchform' ).css( { visibility: 'visible' } ); |
| 425 | + } ); |
| 426 | + } |
| 427 | + } |
| 428 | + }; |
| 429 | + |
| 430 | +})( jQuery, mediaWiki ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 431 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.preview.js |
— | — | @@ -0,0 +1,68 @@ |
| 2 | +/** |
| 3 | + * Preview page script |
| 4 | + */ |
| 5 | +(function( $, mw ) { |
| 6 | + "use strict"; |
| 7 | + |
| 8 | + var showPreview = function () { |
| 9 | + var font = $( 'select#webfonts-font-chooser' ).val(); |
| 10 | + if ( font === null ) { |
| 11 | + return true; |
| 12 | + } |
| 13 | + |
| 14 | + var $downloadLink = $( 'a#webfonts-preview-download' ); |
| 15 | + var $previewBox = $( 'div#webfonts-preview-area' ); |
| 16 | + mw.webfonts.addFont( font ); |
| 17 | + $previewBox.css( 'font-family', font ).addClass( 'webfonts-lang-attr' ); |
| 18 | + $previewBox.css( 'font-size', parseInt( $( 'select#webfonts-size-chooser' ).val(), 10 ) ); |
| 19 | + var fontconfig = mw.webfonts.config.fonts[font]; |
| 20 | + var base = mw.config.get( 'wgExtensionAssetsPath' ) + '/WebFonts/fonts/'; |
| 21 | + $downloadLink.prop( 'href', base + fontconfig.ttf ).removeClass( 'disabled' ); |
| 22 | + return true; |
| 23 | + }; |
| 24 | + |
| 25 | + var getFontsForLang = function ( language ) { |
| 26 | + var $fontSelecter = $( 'select#webfonts-font-chooser' ); |
| 27 | + var $downloadLink = $( 'a#webfonts-preview-download' ); |
| 28 | + $fontSelecter.empty(); |
| 29 | + var languages = mw.webfonts.config.languages; |
| 30 | + var fonts = languages[language]; |
| 31 | + if( !fonts ) { |
| 32 | + $downloadLink.removeAttr( 'href' ).addClass( 'disabled' ); |
| 33 | + return false; |
| 34 | + } |
| 35 | + $.each( fonts, function( key, value ) { |
| 36 | + $fontSelecter.append( $( '<option>', { value: value } ) |
| 37 | + .text( value ) ); |
| 38 | + } ); |
| 39 | + showPreview(); |
| 40 | + return true; |
| 41 | + }; |
| 42 | + |
| 43 | + $( document ).ready( function () { |
| 44 | + $( 'select#wpUserLanguage' ).change( function () { |
| 45 | + var language = $( 'select#wpUserLanguage' ).val(); |
| 46 | + getFontsForLang( language ); |
| 47 | + } ); |
| 48 | + |
| 49 | + $( 'select#webfonts-font-chooser, select#webfonts-size-chooser' ).change( function () { |
| 50 | + showPreview(); |
| 51 | + } ); |
| 52 | + |
| 53 | + $( 'button#webfonts-preview-bold' ).click( function () { |
| 54 | + document.execCommand( 'bold', false, null ); |
| 55 | + } ); |
| 56 | + |
| 57 | + $( 'button#webfonts-preview-italic' ).click( function () { |
| 58 | + document.execCommand( 'italic', false, null ); |
| 59 | + } ); |
| 60 | + |
| 61 | + $( 'button#webfonts-preview-underline' ).click( function () { |
| 62 | + document.execCommand( 'underline', false, null ); |
| 63 | + } ); |
| 64 | + |
| 65 | + getFontsForLang( $( 'select#wpUserLanguage' ).val() ); |
| 66 | + showPreview(); |
| 67 | + } ); |
| 68 | + |
| 69 | +} )( jQuery, mediaWiki ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.preview.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 70 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.fontlist.js |
— | — | @@ -0,0 +1,390 @@ |
| 2 | +/** |
| 3 | + * Configuration file for webfonts |
| 4 | + * First font is the default font for the language |
| 5 | + */ |
| 6 | + |
| 7 | +( function ( $ ) { |
| 8 | + |
| 9 | + var config = { |
| 10 | + fonts: { |
| 11 | + "Iranian Sans": { |
| 12 | + eot: "Arab/IranianSans.eot", |
| 13 | + ttf: "Arab/IranianSans.ttf", |
| 14 | + woff: "Arab/IranianSans.woff", |
| 15 | + version: "1.0" |
| 16 | + }, |
| 17 | + |
| 18 | + "Lohit Bengali": { |
| 19 | + eot: "Beng/Lohit-Bengali.eot", |
| 20 | + ttf: "Beng/Lohit-Bengali.ttf", |
| 21 | + woff: "Beng/Lohit-Bengali.woff", |
| 22 | + version: "2.5.0" |
| 23 | + }, |
| 24 | + |
| 25 | + "Lohit Assamese": { |
| 26 | + eot: "Beng/Lohit-Assamese.eot", |
| 27 | + ttf: "Beng/Lohit-Assamese.ttf", |
| 28 | + woff: "Beng/Lohit-Assamese.woff", |
| 29 | + version: "2.5.0" |
| 30 | + }, |
| 31 | + |
| 32 | + "Lohit Devanagari": { |
| 33 | + eot: "Deva/Lohit-Devanagari.eot", |
| 34 | + ttf: "Deva/Lohit-Devanagari.ttf", |
| 35 | + woff: "Deva/Lohit-Devanagari.woff", |
| 36 | + version: "2.5.0" |
| 37 | + }, |
| 38 | + |
| 39 | + "Samyak Devanagari": { |
| 40 | + eot: "Deva/SamyakDevanagari.eot", |
| 41 | + ttf: "Deva/SamyakDevanagari.ttf", |
| 42 | + woff: "Deva/SamyakDevanagari.woff", |
| 43 | + version: "1.0" |
| 44 | + }, |
| 45 | + |
| 46 | + "Madan": { |
| 47 | + eot: "Deva/madan.eot", |
| 48 | + ttf: "Deva/madan.ttf", |
| 49 | + woff: "Deva/madan.woff", |
| 50 | + version: "2.0" |
| 51 | + }, |
| 52 | + |
| 53 | + AbyssinicaSIL: { |
| 54 | + eot: "Ethi/AbyssinicaSIL-R.eot", |
| 55 | + ttf: "Ethi/AbyssinicaSIL-R.ttf", |
| 56 | + woff: "Ethi/AbyssinicaSIL-R.woff", |
| 57 | + version: "1.2" |
| 58 | + }, |
| 59 | + |
| 60 | + "Lohit Gujarati": { |
| 61 | + eot: "Gujr/Lohit-Gujarati.eot", |
| 62 | + ttf: "Gujr/Lohit-Gujarati.ttf", |
| 63 | + woff: "Gujr/Lohit-Gujarati.woff", |
| 64 | + version: "2.5.0" |
| 65 | + }, |
| 66 | + |
| 67 | + "Samyak Gujarati": { |
| 68 | + eot: "Gujr/SamyakGujarati.eot", |
| 69 | + ttf: "Gujr/SamyakGujarati.ttf", |
| 70 | + woff: "Gujr/SamyakGujarati.woff", |
| 71 | + version: "1.0" |
| 72 | + }, |
| 73 | + |
| 74 | + "Miriam CLM": { |
| 75 | + eot: "Hebr/MiriamCLM-Book.eot", |
| 76 | + ttf: "Hebr/MiriamCLM-Book.ttf", |
| 77 | + woff: "Hebr/MiriamCLM-Book.woff", |
| 78 | + version: "0.105" |
| 79 | + }, |
| 80 | + |
| 81 | + "Taamey Frank CLM": { |
| 82 | + eot: "Hebr/TaameyFrankCLM.eot", |
| 83 | + ttf: "Hebr/TaameyFrankCLM.ttf", |
| 84 | + woff: "Hebr/TaameyFrankCLM.woff", |
| 85 | + svg: "Hebr/TaameyFrankCLM.svg", |
| 86 | + version: "0.110" |
| 87 | + }, |
| 88 | + |
| 89 | + KhmerOS: { |
| 90 | + eot: "Khmr/KhmerOS.eot", |
| 91 | + ttf: "Khmr/KhmerOS.ttf", |
| 92 | + woff: "Khmr/KhmerOS.woff", |
| 93 | + svg: "Khmr/KhmerOS.svg", |
| 94 | + version: "1.10" |
| 95 | + }, |
| 96 | + |
| 97 | + KhmerOSbattambang: { |
| 98 | + eot: "Khmr/KhmerOSbattambang.eot", |
| 99 | + ttf: "Khmr/KhmerOSbattambang.ttf", |
| 100 | + woff: "Khmr/KhmerOSbattambang.woff", |
| 101 | + svg: "Khmr/KhmerOSbattambang.svg", |
| 102 | + version: "1.10" |
| 103 | + }, |
| 104 | + |
| 105 | + KhmerOSbokor: { |
| 106 | + eot: "Khmr/KhmerOSbokor.eot", |
| 107 | + ttf: "Khmr/KhmerOSbokor.ttf", |
| 108 | + woff: "Khmr/KhmerOSbokor.woff", |
| 109 | + svg: "Khmr/KhmerOSbokor.svg", |
| 110 | + version: "1.10" |
| 111 | + }, |
| 112 | + |
| 113 | + KhmerOSfreehand: { |
| 114 | + eot: "Khmr/KhmerOSfreehand.eot", |
| 115 | + ttf: "Khmr/KhmerOSfreehand.ttf", |
| 116 | + woff: "Khmr/KhmerOSfreehand.woff", |
| 117 | + svg: "Khmr/KhmerOSfreehand.svg", |
| 118 | + version: "1.10" |
| 119 | + }, |
| 120 | + |
| 121 | + KhmerOSfasthand: { |
| 122 | + eot: "Khmr/KhmerOSfasthand.eot", |
| 123 | + ttf: "Khmr/KhmerOSfasthand.ttf", |
| 124 | + woff: "Khmr/KhmerOSfasthand.woff", |
| 125 | + svg: "Khmr/KhmerOSfasthand.svg", |
| 126 | + version: "1.10" |
| 127 | + }, |
| 128 | + |
| 129 | + KhmerOSmuol: { |
| 130 | + eot: "Khmr/KhmerOSmuol.eot", |
| 131 | + ttf: "Khmr/KhmerOSmuol.ttf", |
| 132 | + woff: "Khmr/KhmerOSmuol.woff", |
| 133 | + svg: "Khmr/KhmerOSmuol.svg", |
| 134 | + version: "1.10" |
| 135 | + }, |
| 136 | + |
| 137 | + KhmerOSmuollight: { |
| 138 | + eot: "Khmr/KhmerOSmuollight.eot", |
| 139 | + ttf: "Khmr/KhmerOSmuollight.ttf", |
| 140 | + woff: "Khmr/KhmerOSmuollight.woff", |
| 141 | + svg: "Khmr/KhmerOSmuollight.svg", |
| 142 | + version: "1.10" |
| 143 | + }, |
| 144 | + |
| 145 | + KhmerOSmuolpali: { |
| 146 | + eot: "Khmr/KhmerOSmuolpali.eot", |
| 147 | + ttf: "Khmr/KhmerOSmuolpali.ttf", |
| 148 | + woff: "Khmr/KhmerOSmuolpali.woff", |
| 149 | + svg: "Khmr/KhmerOSmuolpali.svg", |
| 150 | + version: "1.10" |
| 151 | + }, |
| 152 | + |
| 153 | + KhmerOSsiemreap: { |
| 154 | + eot: "Khmr/KhmerOSsiemreap.eot", |
| 155 | + ttf: "Khmr/KhmerOSsiemreap.ttf", |
| 156 | + woff: "Khmr/KhmerOSsiemreap.woff", |
| 157 | + svg: "Khmr/KhmerOSsiemreap.svg", |
| 158 | + version: "1.10" |
| 159 | + }, |
| 160 | + |
| 161 | + Kedage: { |
| 162 | + eot: "Knda/Kedage.eot", |
| 163 | + ttf: "Knda/Kedage.ttf", |
| 164 | + woff: "Knda/Kedage.woff", |
| 165 | + version: "1.06" |
| 166 | + }, |
| 167 | + |
| 168 | + "Lohit Kannada": { |
| 169 | + eot: "Knda/Lohit-Kannada.eot", |
| 170 | + ttf: "Knda/Lohit-Kannada.ttf", |
| 171 | + woff: "Knda/Lohit-Kannada.woff", |
| 172 | + version: "2.5.0" |
| 173 | + }, |
| 174 | + |
| 175 | + "Charis SIL": { |
| 176 | + eot: "Latn/CharisSIL-R.eot", |
| 177 | + ttf: "Latn/CharisSIL-R.ttf", |
| 178 | + woff: "Latn/CharisSIL-R.woff", |
| 179 | + version: "4.011" |
| 180 | + }, |
| 181 | + |
| 182 | + Perizia: { |
| 183 | + eot: "Latn/Perizia.eot", |
| 184 | + ttf: "Latn/Perizia.ttf", |
| 185 | + woff: "Latn/Perizia.woff", |
| 186 | + version: "0.1" |
| 187 | + }, |
| 188 | + |
| 189 | + RufScript: { |
| 190 | + eot: "Latn/Rufscript.eot", |
| 191 | + ttf: "Latn/Rufscript.ttf", |
| 192 | + woff: "Latn/Rufscript.woff", |
| 193 | + version: "0.1" |
| 194 | + }, |
| 195 | + |
| 196 | + Ubuntu: { |
| 197 | + eot: "Latn/ubuntu-r-webfont.eot", |
| 198 | + ttf: "Latn/ubuntu-r.ttf", |
| 199 | + woff: "Latn/ubuntu-r-webfont.woff", |
| 200 | + svg: "Latn/ubuntu-r-webfont.svg", |
| 201 | + version: "0.69" |
| 202 | + }, |
| 203 | + |
| 204 | + AnjaliOldLipi: { |
| 205 | + eot: "Mlym/AnjaliOldLipi.eot", |
| 206 | + ttf: "Mlym/AnjaliOldLipi.ttf", |
| 207 | + woff: "Mlym/AnjaliOldLipi.woff", |
| 208 | + version: "0.730" |
| 209 | + }, |
| 210 | + |
| 211 | + Meera: { |
| 212 | + eot: "Mlym/Meera.eot", |
| 213 | + ttf: "Mlym/Meera.ttf", |
| 214 | + woff: "Mlym/Meera.woff", |
| 215 | + normalization: { |
| 216 | + "ൾ": "ള്", |
| 217 | + "ൻ": "ന്", |
| 218 | + "ർ": "ര്", |
| 219 | + "ൺ ": "ണ്", |
| 220 | + "ൽ": "ല്", |
| 221 | + "ൿ": "ക് " |
| 222 | + }, |
| 223 | + version: "5.01" |
| 224 | + }, |
| 225 | + |
| 226 | + RaghuMalayalam: { |
| 227 | + eot: "Mlym/RaghuMalayalam.eot", |
| 228 | + ttf: "Mlym/RaghuMalayalam.ttf", |
| 229 | + woff: "Mlym/RaghuMalayalam.woff", |
| 230 | + normalization: { |
| 231 | + "ൾ": "ള്", |
| 232 | + "ൻ": "ന്", |
| 233 | + "ർ": "ര്", |
| 234 | + "ൺ ": "ണ്", |
| 235 | + "ൽ": "ല്", |
| 236 | + "ൿ": "ക് " |
| 237 | + }, |
| 238 | + version: "2.0" |
| 239 | + }, |
| 240 | + |
| 241 | + "Masterpiece Uni Sans": { |
| 242 | + eot: "Mymr/MasterpieceUniSans.eot", |
| 243 | + ttf: "Mymr/MasterpieceUniSans.ttf", |
| 244 | + woff: "Mymr/MasterpieceUniSans.woff", |
| 245 | + svg: "Mymr/MasterpieceUniSans.svg", |
| 246 | + version: "0.5" |
| 247 | + }, |
| 248 | + |
| 249 | + Myanmar3: { |
| 250 | + eot: "Mymr/Myanmar3.eot", |
| 251 | + ttf: "Mymr/Myanmar3.ttf", |
| 252 | + woff: "Mymr/Myanmar3.woff", |
| 253 | + svg: "Mymr/Myanmar3.svg", |
| 254 | + version: "3.0" |
| 255 | + }, |
| 256 | + |
| 257 | + "Padauk-Regular": { |
| 258 | + eot: "Mymr/Padauk-Regular.eot", |
| 259 | + ttf: "Mymr/Padauk-Regular.ttf", |
| 260 | + woff: "Mymr/Padauk-Regular.woff", |
| 261 | + svg: "Mymr/Padauk-Regular.svg", |
| 262 | + version: "2.8" |
| 263 | + }, |
| 264 | + |
| 265 | + Yunghkio: { |
| 266 | + eot: "Mymr/Yunghkio.eot", |
| 267 | + ttf: "Mymr/Yunghkio.ttf", |
| 268 | + woff: "Mymr/Yunghkio.woff", |
| 269 | + svg: "Mymr/Yunghkio.svg", |
| 270 | + version: "1.0" |
| 271 | + }, |
| 272 | + |
| 273 | + "Lohit Oriya": { |
| 274 | + eot: "Orya/Lohit-Oriya.eot", |
| 275 | + ttf: "Orya/Lohit-Oriya.ttf", |
| 276 | + woff: "Orya/Lohit-Oriya.woff", |
| 277 | + version: "2.5.0" |
| 278 | + }, |
| 279 | + |
| 280 | + Utkal: { |
| 281 | + eot: "Orya/utkal.eot", |
| 282 | + ttf: "Orya/utkal.ttf", |
| 283 | + woff: "Orya/utkal.woff", |
| 284 | + version: "0.13" |
| 285 | + }, |
| 286 | + |
| 287 | + Pagul: { |
| 288 | + eot: "Saur/Pagul.eot", |
| 289 | + ttf: "Saur/Pagul.ttf", |
| 290 | + woff: "Saur/Pagul.woff", |
| 291 | + version: "1.0" |
| 292 | + }, |
| 293 | + |
| 294 | + "Lohit Tamil": { |
| 295 | + eot: "Taml/Lohit-Tamil.eot", |
| 296 | + ttf: "Taml/Lohit-Tamil.ttf", |
| 297 | + woff: "Taml/Lohit-Tamil.woff", |
| 298 | + version: "2.5.0" |
| 299 | + }, |
| 300 | + |
| 301 | + Thendral: { |
| 302 | + eot: "Taml/ThendralUni.eot", |
| 303 | + ttf: "Taml/ThendralUni.ttf", |
| 304 | + woff: "Taml/ThendralUni.woff", |
| 305 | + version: "1.0" |
| 306 | + }, |
| 307 | + |
| 308 | + Thenee: { |
| 309 | + eot: "Taml/TheneeUni.eot", |
| 310 | + ttf: "Taml/TheneeUni.ttf", |
| 311 | + woff: "Taml/TheneeUni.woff", |
| 312 | + version: "1.0" |
| 313 | + }, |
| 314 | + |
| 315 | + "Lohit Telugu": { |
| 316 | + eot: "Telu/Lohit-Telugu.eot", |
| 317 | + ttf: "Telu/Lohit-Telugu.ttf", |
| 318 | + woff: "Telu/Lohit-Telugu.woff", |
| 319 | + version: "2.5.0" |
| 320 | + }, |
| 321 | + |
| 322 | + "Pothana2000": { |
| 323 | + eot: "Telu/Pothana2000.eot", |
| 324 | + ttf: "Telu/Pothana2000.ttf", |
| 325 | + woff: "Telu/Pothana2000.woff", |
| 326 | + version: "1.3" |
| 327 | + }, |
| 328 | + |
| 329 | + "Vemana2000": { |
| 330 | + eot: "Telu/Vemana2000.eot", |
| 331 | + ttf: "Telu/Vemana2000.ttf", |
| 332 | + woff: "Telu/Vemana2000.woff", |
| 333 | + version: "1.3" |
| 334 | + }, |
| 335 | + |
| 336 | + "Lohit Punjabi": { |
| 337 | + eot: "Guru/Lohit-Punjabi.eot", |
| 338 | + ttf: "Guru/Lohit-Punjabi.ttf", |
| 339 | + woff: "Guru/Lohit-Punjabi.woff", |
| 340 | + version: "2.5.0" |
| 341 | + }, |
| 342 | + |
| 343 | + "Saab": { |
| 344 | + eot: "Guru/Saab.eot", |
| 345 | + ttf: "Guru/Saab.ttf", |
| 346 | + woff: "Guru/Saab.woff", |
| 347 | + version: "0.91" |
| 348 | + } |
| 349 | + |
| 350 | + }, |
| 351 | + |
| 352 | + languages: { |
| 353 | + // en: [ "RufScript", "Perizia", "Ubuntu" ], |
| 354 | + ahr: [ "Lohit Devanagari" ], |
| 355 | + am: [ "AbyssinicaSIL" ], |
| 356 | + as: [ "Lohit Assamese" ], |
| 357 | + bh: [ "Lohit Devanagari" ], |
| 358 | + bho: [ "Lohit Devanagari" ], |
| 359 | + bn: [ "Lohit Bengali" ], |
| 360 | + bpy: [ "Lohit Bengali" ], |
| 361 | + cdo: [ "Charis SIL" ], |
| 362 | + fa: [ "Iranian Sans" ], |
| 363 | + gu: [ "Lohit Gujarati" ], |
| 364 | + hbo: [ "Taamey Frank CLM" ], |
| 365 | + he: [ "Miriam CLM", "Taamey Frank CLM" ], |
| 366 | + hi: [ "Lohit Devanagari" ], |
| 367 | + km: [ "KhmerOSbattambang", "KhmerOSsiemreap", "KhmerOS", "KhmerOSbokor", |
| 368 | + "KhmerOSmuollight", "KhmerOSmuol", "KhmerOSmuolpali", |
| 369 | + "KhmerOSfreehand", "KhmerOSfasthand" ], |
| 370 | + kn: [ "Lohit Kannada", "Kedage"], |
| 371 | + kok: [ "Lohit Devanagari" ], |
| 372 | + gom: [ "Lohit Devanagari" ], |
| 373 | + mai: [ "Lohit Devanagari" ], |
| 374 | + ml: [ "AnjaliOldLipi" ], |
| 375 | + mr: [ "Lohit Devanagari" ], |
| 376 | + my: [ "Masterpiece Uni Sans", "Padauk-Regular", "Myanmar3", "Yunghkio" ], |
| 377 | + ne: [ "Lohit Devanagari", "Madan" ], |
| 378 | + or: [ "Lohit Oriya" , "Utkal" ], |
| 379 | + pa: [ "Lohit Punjabi", "Saab" ], |
| 380 | + sa: [ "Lohit Devanagari" ], |
| 381 | + saz: [ "Pagul" ], |
| 382 | + ta: [ "Lohit Tamil", "Thendral", "Thenee" ], |
| 383 | + tcy: [ "Lohit Kannada", "Kedage" ], |
| 384 | + te: [ "Lohit Telugu", "Pothana2000", "Vemana2000" ], |
| 385 | + ti: [ "AbyssinicaSIL" ] |
| 386 | + } |
| 387 | + }; |
| 388 | + |
| 389 | + $.extend( mw.webfonts.config, config ); |
| 390 | + |
| 391 | +} ) ( jQuery ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.fontlist.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 392 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.init.js |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +/** |
| 3 | + * WebFonts startup script |
| 4 | + */ |
| 5 | +( function( $ ) { |
| 6 | + $( document ).ready( function() { |
| 7 | + mw.webfonts.setup(); |
| 8 | + } ); |
| 9 | +} )( jQuery ); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.init.js |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 10 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/font-icon.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/font-icon.png |
___________________________________________________________________ |
Added: svn:mime-type |
2 | 11 | + image/png |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/help.png |
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/images/help.png |
___________________________________________________________________ |
Added: svn:mime-type |
3 | 12 | + image/png |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.css |
— | — | @@ -0,0 +1,127 @@ |
| 2 | +li#pt-webfont { |
| 3 | + /* @embed */ |
| 4 | + background: url(images/font-icon.png) no-repeat scroll left top transparent; |
| 5 | + padding-left: 18px !important; |
| 6 | +} |
| 7 | + |
| 8 | +div#webfonts-menu { |
| 9 | + font-size: 100%; |
| 10 | + z-index: 99999; |
| 11 | + display: none; |
| 12 | +} |
| 13 | + |
| 14 | +div#webfonts-menu.open { |
| 15 | + display: block; |
| 16 | +} |
| 17 | +div#webfonts-fonts { |
| 18 | + font-size: 100%; |
| 19 | + z-index: 99999; |
| 20 | +} |
| 21 | + |
| 22 | +div#webfonts-menu .menu ul { |
| 23 | + padding-left: 5px!important; |
| 24 | +} |
| 25 | + |
| 26 | +div#webfonts-fonts li { |
| 27 | + margin: 0; |
| 28 | + padding: 5px; |
| 29 | + font-size: 100%; |
| 30 | + float: none; |
| 31 | +} |
| 32 | + |
| 33 | +/* Variants and Actions */ |
| 34 | +/* @noflip */ |
| 35 | +div.webfontMenu { |
| 36 | + direction: ltr; |
| 37 | + float: left; |
| 38 | +} |
| 39 | + |
| 40 | +/* @noflip */ |
| 41 | +body.rtl div.webfontMenu { |
| 42 | + direction: rtl; |
| 43 | +} |
| 44 | + |
| 45 | +div.webfontMenu div.menu { |
| 46 | + position: absolute; |
| 47 | + display: block; |
| 48 | + clear: both; |
| 49 | + text-align: left; |
| 50 | + top: 20px; |
| 51 | + width: 200px; |
| 52 | +} |
| 53 | + |
| 54 | +/* OVERRIDDEN BY COMPLIANT BROWSERS */ |
| 55 | +/* @noflip */ |
| 56 | +body.rtl div.webfontMenu div.menu { |
| 57 | + margin-left: 24px; |
| 58 | +} |
| 59 | +/* IGNORED BY IE6 */ |
| 60 | +/* @noflip */ |
| 61 | +body.rtl div.webfontMenu > div.menu { |
| 62 | + margin-left: auto; |
| 63 | +} |
| 64 | +/* IGNORED BY IE6 */ |
| 65 | +/* Also fixes old versions of FireFox */ |
| 66 | +/* @noflip */ |
| 67 | +body.rtl div.webfontMenu > div.menu, |
| 68 | +x:-moz-any-link { |
| 69 | + margin-left: 23px; |
| 70 | +} |
| 71 | + |
| 72 | +div.webfontMenu ul { |
| 73 | + position: absolute; |
| 74 | + background-color: white; |
| 75 | + border: solid 1px silver; |
| 76 | + -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 77 | + -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 78 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 79 | + border-top-width: 0; |
| 80 | + list-style: none; |
| 81 | + list-style-image: none; |
| 82 | + list-style-type: none; |
| 83 | + padding: 0; |
| 84 | + margin: 0; |
| 85 | + margin-left: -1px; |
| 86 | + text-align: left; |
| 87 | + font-size: 0.8em; |
| 88 | + width: 100%; |
| 89 | +} |
| 90 | + |
| 91 | +div.webfontMenu li { |
| 92 | + padding: 0; |
| 93 | + margin: 0; |
| 94 | + text-align: left; |
| 95 | + line-height: 1em; |
| 96 | +} |
| 97 | +/* OVERRIDDEN BY COMPLIANT BROWSERS */ |
| 98 | +div.webfontMenu li a { |
| 99 | + display: inline-block; |
| 100 | + padding: 0.5em; |
| 101 | + white-space: nowrap; |
| 102 | + color: #0645ad; |
| 103 | +} |
| 104 | +/* IGNORED BY IE6 */ |
| 105 | +div.webfontMenu li > a { |
| 106 | + display: block; |
| 107 | +} |
| 108 | +div.webfontMenu li.selected a, |
| 109 | +div.webfontMenu li.selected a:visited { |
| 110 | + color: #333333; |
| 111 | + text-decoration: none; |
| 112 | +} |
| 113 | +div.webfontMenu a { |
| 114 | + display: block; |
| 115 | + padding-left: 5px; |
| 116 | + padding-right: 5px; |
| 117 | +} |
| 118 | + |
| 119 | +div.webfontMenu label:hover, div.webfontMenu input:hover { |
| 120 | + cursor: pointer; |
| 121 | +} |
| 122 | + |
| 123 | +a#webfont-help-link { |
| 124 | + /* @embed */ |
| 125 | + background: url(images/help.png) no-repeat scroll left center transparent; |
| 126 | + padding-left: 20px; |
| 127 | + font-size: 1.0em; |
| 128 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 129 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.preview.css |
— | — | @@ -0,0 +1,68 @@ |
| 2 | +select#wpUserLanguage, |
| 3 | +select#webfonts-font-chooser, |
| 4 | +select#webfonts-size-chooser { |
| 5 | + width: 200px; |
| 6 | + height: 25px; |
| 7 | + vertical-align: middle; |
| 8 | +} |
| 9 | + |
| 10 | +select#webfonts-size-chooser { |
| 11 | + width: 50px; |
| 12 | +} |
| 13 | + |
| 14 | +div#webfonts-preview-area { |
| 15 | + height: 150px; |
| 16 | + border: 1px solid #cccccc; |
| 17 | + border-radius: 0 0 4px 4px; |
| 18 | + -webkit-border-radius: 0 0 4px 4px; |
| 19 | + -moz-border-radius: 0 0 4px 4px; |
| 20 | + text-align: left; |
| 21 | + padding: 10px 5px; |
| 22 | + line-height: 1.5em; |
| 23 | + overflow: auto; |
| 24 | +} |
| 25 | + |
| 26 | +button#webfonts-preview-bold, |
| 27 | +button#webfonts-preview-italic, |
| 28 | +button#webfonts-preview-underline, |
| 29 | +a#webfonts-preview-download { |
| 30 | + height: 25px; |
| 31 | + vertical-align: middle; |
| 32 | + font-weight: bold; |
| 33 | + text-shadow: 0 1px 0 rgba(255,255,255,0.4); |
| 34 | +} |
| 35 | + |
| 36 | +a#webfonts-preview-download.disabled { |
| 37 | + color: #808080; |
| 38 | +} |
| 39 | + |
| 40 | +div#webfonts-preview-toolbar button { |
| 41 | + width: 30px; |
| 42 | +} |
| 43 | + |
| 44 | +button#webfonts-preview-italic { |
| 45 | + font-style: italic; |
| 46 | +} |
| 47 | + |
| 48 | +button#webfonts-preview-underline { |
| 49 | + text-decoration: underline; |
| 50 | +} |
| 51 | + |
| 52 | +a#webfonts-preview-download { |
| 53 | + padding-right: 10px; |
| 54 | + padding-left: 10px; |
| 55 | + padding-top: 3px; |
| 56 | + float: right; |
| 57 | + text-decoration: none; |
| 58 | +} |
| 59 | + |
| 60 | +div#webfonts-preview-toolbar { |
| 61 | + overflow: hidden; |
| 62 | + background-color: #F9F9F9; |
| 63 | + border: 1px solid #CCCCCC; |
| 64 | + border-radius: 4px 4px 0 0; |
| 65 | + -webkit-border-radius: 4px 4px 0 0; |
| 66 | + -moz-border-radius: 4px 4px 0 0; |
| 67 | + position: relative; |
| 68 | + padding: 2px; |
| 69 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/resources/ext.webfonts.preview.css |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 70 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.i18n.php |
— | — | @@ -0,0 +1,1109 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Internationalisation file for extension webfonts. |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @ingroup Extensions |
| 8 | + */ |
| 9 | + |
| 10 | +$messages = array(); |
| 11 | + |
| 12 | +/** English |
| 13 | + * @author santhosh |
| 14 | +*/ |
| 15 | +$messages['en'] = array( |
| 16 | + 'webfonts' => 'Web fonts', |
| 17 | + 'webfonts-desc' => 'Embed fonts in pages', |
| 18 | + 'webfonts-load' => 'Select font', |
| 19 | + 'webfonts-reset' => 'Reset', |
| 20 | + 'webfonts-enable-preference' => 'Enable font embedding (Web fonts)', |
| 21 | + 'webfonts-menu-tooltip' => 'Select a font for the page', |
| 22 | + 'webfonts-help' => 'Help', |
| 23 | + 'webfonts-help-page' => '//www.mediawiki.org/wiki/Special:MyLanguage/Help:Extension:WebFonts', |
| 24 | + 'webfonts-preview-intro' => 'This page helps you to preview the fonts available in the WebFonts extension and optionally download and install in your computer.', |
| 25 | + 'webfonts-preview-title' => 'Preview the fonts', |
| 26 | + 'webfonts-preview-download' => 'Download this font', |
| 27 | + 'webfonts-preview-sampletext' => 'The quick brown fox jumps over the lazy dog', |
| 28 | + 'webfonts-preview-installing-fonts-title' => 'Installing Fonts', |
| 29 | + 'webfonts-preview-installing-fonts-text' => 'You can download a font using the "{{int:webfonts-preview-download}}" link given above. To install the downloaded font on your computer, please see [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts this documentation].', |
| 30 | +); |
| 31 | + |
| 32 | +/** Message documentation (Message documentation) |
| 33 | + * @author EugeneZelenko |
| 34 | + * @author McDutchie |
| 35 | + * @author Mormegil |
| 36 | + * @author Raymond |
| 37 | + * @author Singhalawap |
| 38 | + */ |
| 39 | +$messages['qqq'] = array( |
| 40 | + 'webfonts' => 'The extension name - WebFonts', |
| 41 | + 'webfonts-desc' => 'short description of the extension', |
| 42 | + 'webfonts-load' => 'The text shown in the webfont link', |
| 43 | + 'webfonts-reset' => '{{Identical|Reset}}', |
| 44 | + 'webfonts-menu-tooltip' => 'Tooltip text displayed in the webfont link', |
| 45 | + 'webfonts-help' => 'Text for the help link. |
| 46 | +{{Identical|Help}}', |
| 47 | + 'webfonts-preview-intro' => 'Introduction to [[Special:WebFonts|the special page]].', |
| 48 | + 'webfonts-preview-title' => 'Title for the preview area.', |
| 49 | + 'webfonts-preview-download' => 'Download link text.', |
| 50 | + 'webfonts-preview-sampletext' => 'Do not translate literally, but give a [[:w:Pangram|pangram]] in your language for using as default preview text.', |
| 51 | + 'webfonts-preview-installing-fonts-title' => 'Title of Installing Fonts section', |
| 52 | + 'webfonts-preview-installing-fonts-text' => 'Text pointing to the installation document link.', |
| 53 | +); |
| 54 | + |
| 55 | +/** Afrikaans (Afrikaans) |
| 56 | + * @author පසිඳු කාවින්ද |
| 57 | + */ |
| 58 | +$messages['af'] = array( |
| 59 | + 'webfonts' => 'WebFonts', |
| 60 | + 'webfonts-load' => 'Kies font', |
| 61 | + 'webfonts-reset' => 'Reset', |
| 62 | + 'webfonts-menu-tooltip' => "Kies 'n font vir die bladsy", |
| 63 | + 'webfonts-help' => 'Help', |
| 64 | +); |
| 65 | + |
| 66 | +/** Aragonese (Aragonés) |
| 67 | + * @author Juanpabl |
| 68 | + */ |
| 69 | +$messages['an'] = array( |
| 70 | + 'webfonts' => 'WebFonts', |
| 71 | + 'webfonts-desc' => 'Incrustar fuents tipograficas en as pachinas', |
| 72 | + 'webfonts-load' => 'Trigar fuent tipografica', |
| 73 | + 'webfonts-reset' => 'Restablir', |
| 74 | + 'webfonts-enable-preference' => 'Activar a incrustación de fuents tipograficas (WebFonts)', |
| 75 | + 'webfonts-menu-tooltip' => "Trigar una fuent tipografica t'a pachina", |
| 76 | + 'webfonts-help' => 'Aduya', |
| 77 | + 'webfonts-preview-intro' => 'Ista pachina le aduya a previsualizar as fuents tipograficas disponibles en a extensión WebFonts y, si lo deseya, descargar-las y instalar-las en o suyo ordinador.', |
| 78 | + 'webfonts-preview-title' => "Anvista previa d'as fuents tipograficas", |
| 79 | + 'webfonts-preview-download' => 'Descargar ista fuent tipografica', |
| 80 | + 'webfonts-preview-sampletext' => 'A-saber-las vegadas o can o mixín y o zapo han malfurriau quantos kilowatios.', |
| 81 | + 'webfonts-preview-installing-fonts-title' => 'Instalando as fuents tipograficas', |
| 82 | + 'webfonts-preview-installing-fonts-text' => 'Puede descargar-se una fuent tipografica fendo servir o vinclo "{{int:webfonts-preview-download}}" d\'alto. Ta instalar a fuent descargada en o suyo ordinador, consulte por favor [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts ista documentación]', |
| 83 | +); |
| 84 | + |
| 85 | +/** Arabic (العربية) |
| 86 | + * @author روخو |
| 87 | + */ |
| 88 | +$messages['ar'] = array( |
| 89 | + 'webfonts-load' => 'أختر الخط', |
| 90 | + 'webfonts-reset' => 'أعد الضبط', |
| 91 | +); |
| 92 | + |
| 93 | +/** Asturian (Asturianu) |
| 94 | + * @author Xuacu |
| 95 | + */ |
| 96 | +$messages['ast'] = array( |
| 97 | + 'webfonts' => 'WebFonts', |
| 98 | + 'webfonts-desc' => 'Incorporar fontes nes páxines', |
| 99 | + 'webfonts-load' => 'Seleiciona la fonte', |
| 100 | + 'webfonts-reset' => 'Reaniciar', |
| 101 | + 'webfonts-enable-preference' => 'Activar la incorporación de fontes (WebFonts)', |
| 102 | + 'webfonts-menu-tooltip' => 'Seleicionar una fonte pa la páxina', |
| 103 | + 'webfonts-help' => 'Ayuda', |
| 104 | +); |
| 105 | + |
| 106 | +/** Azerbaijani (Azərbaycanca) |
| 107 | + * @author Cekli829 |
| 108 | + */ |
| 109 | +$messages['az'] = array( |
| 110 | + 'webfonts-help' => 'Kömək', |
| 111 | +); |
| 112 | + |
| 113 | +/** Bashkir (Башҡортса) |
| 114 | + * @author Haqmar |
| 115 | + */ |
| 116 | +$messages['ba'] = array( |
| 117 | + 'webfonts' => 'WebFonts', |
| 118 | + 'webfonts-load' => 'Шрифт һайларға', |
| 119 | + 'webfonts-reset' => 'Баштан алырға', |
| 120 | + 'webfonts-help' => 'Белешмә', |
| 121 | +); |
| 122 | + |
| 123 | +/** Belarusian (Taraškievica orthography) (Беларуская (тарашкевіца)) |
| 124 | + * @author EugeneZelenko |
| 125 | + * @author Jim-by |
| 126 | + * @author Wizardist |
| 127 | + */ |
| 128 | +$messages['be-tarask'] = array( |
| 129 | + 'webfonts' => 'WebFonts', |
| 130 | + 'webfonts-desc' => 'Дазваляе ўбудоўваць шрыфты на старонкі', |
| 131 | + 'webfonts-load' => 'Выбраць шрыфт', |
| 132 | + 'webfonts-reset' => 'Скінуць', |
| 133 | + 'webfonts-enable-preference' => 'Дазволіць убудаваньне шрыфтоў (WebFonts)', |
| 134 | + 'webfonts-menu-tooltip' => 'Выбраць шрыфт для старонкі', |
| 135 | + 'webfonts-help' => 'Дапамога', |
| 136 | + 'webfonts-preview-intro' => 'Гэтая старонка дапаможа Вам праглядзець шрыфты даступныя ў пашырэньні WebFonts і, калі пажадаеце, загрузіць і ўсталяваць іх на Вашым кампьютары.', |
| 137 | + 'webfonts-preview-title' => 'Праглядзець шрыфты', |
| 138 | + 'webfonts-preview-download' => 'Загрузіць гэты шрыфт', |
| 139 | + 'webfonts-preview-sampletext' => 'Хуткая шэрая лісіца пераскочыла праз лянівага сабаку', |
| 140 | + 'webfonts-preview-installing-fonts-title' => 'Усталяваньне шрыфтоў', |
| 141 | + 'webfonts-preview-installing-fonts-text' => 'Вы можаце загрузіць шрыфт, скарыстаўшыся спасылкай «{{int:webfonts-preview-download}}» вышэй. Каб усталяваць загружаны шрыфт на Ваш кампутар, калі ласка, глядзіце [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts дакумэнтацыю].', |
| 142 | +); |
| 143 | + |
| 144 | +/** Bengali (বাংলা) |
| 145 | + * @author Bellayet |
| 146 | + * @author Jayantanth |
| 147 | + */ |
| 148 | +$messages['bn'] = array( |
| 149 | + 'webfonts' => 'ওয়েবফন্টস', |
| 150 | + 'webfonts-desc' => 'পাতায় ফন্ট সন্নিবেশ', |
| 151 | + 'webfonts-load' => 'ফন্ট নির্বাচন', |
| 152 | + 'webfonts-reset' => 'পুনরায় আরম্ভ', |
| 153 | + 'webfonts-enable-preference' => 'ফন্ট এমবেড সস্ক্রিয় করুন (ওয়েবফন্টস)', |
| 154 | + 'webfonts-menu-tooltip' => 'পাতার জন্য ফন্ট নির্বাচন করুন', |
| 155 | + 'webfonts-help' => 'সাহায্য', |
| 156 | + 'webfonts-preview-title' => 'ফন্ট প্রাকদর্শন', |
| 157 | + 'webfonts-preview-download' => 'ডাউনলোড', |
| 158 | + 'webfonts-preview-sampletext' => 'আমার সোনার বাংলা আমি তোমায় ভালবাসি', |
| 159 | + 'webfonts-preview-installing-fonts-title' => 'ফন্ট ইন্সটল হচ্ছে', |
| 160 | +); |
| 161 | + |
| 162 | +/** Bishnupria Manipuri (ইমার ঠার/বিষ্ণুপ্রিয়া মণিপুরী) |
| 163 | + * @author Usingha |
| 164 | + */ |
| 165 | +$messages['bpy'] = array( |
| 166 | + 'webfonts' => 'ৱেবফন্টস', |
| 167 | + 'webfonts-desc' => 'পাতাহাত ফন্ট নাপকর', |
| 168 | + 'webfonts-load' => 'ফন্ট বাছ', |
| 169 | + 'webfonts-reset' => 'বারো অকর', |
| 170 | + 'webfonts-enable-preference' => 'ফন্ট নাপকরানিহান অকর (ৱেবফন্ট)', |
| 171 | + 'webfonts-menu-tooltip' => 'পাতাহানরকা ফন্ট বাছ', |
| 172 | + 'webfonts-help' => 'পাংলাক', |
| 173 | +); |
| 174 | + |
| 175 | +/** Breton (Brezhoneg) |
| 176 | + * @author Fulup |
| 177 | + * @author Y-M D |
| 178 | + */ |
| 179 | +$messages['br'] = array( |
| 180 | + 'webfonts' => 'Fontoù Kenrouedad', |
| 181 | + 'webfonts-desc' => "Ensoc'hañ a ra ar fontoù er pajennoù", |
| 182 | + 'webfonts-load' => 'Diuzañ ar font', |
| 183 | + 'webfonts-reset' => 'Adderaouekaat', |
| 184 | + 'webfonts-enable-preference' => "Gweredekaat an ensoc'hañ fontoù (Fontoù Kenrouedad)", |
| 185 | + 'webfonts-menu-tooltip' => 'Dibabit ur font evit ar bajenn', |
| 186 | + 'webfonts-help' => 'Skoazell', |
| 187 | + 'webfonts-preview-title' => 'Rakwelet ar fontoù', |
| 188 | + 'webfonts-preview-download' => 'Pellgargañ ar font-mañ', |
| 189 | + 'webfonts-preview-installing-fonts-title' => 'Staliañ ar fontoù', |
| 190 | +); |
| 191 | + |
| 192 | +/** Bosnian (Bosanski) |
| 193 | + * @author CERminator |
| 194 | + */ |
| 195 | +$messages['bs'] = array( |
| 196 | + 'webfonts' => 'WebFonts', |
| 197 | + 'webfonts-desc' => 'Ugradnja fontova na stranice', |
| 198 | + 'webfonts-load' => 'Odaberi font', |
| 199 | +); |
| 200 | + |
| 201 | +/** Czech (Česky) |
| 202 | + * @author Mormegil |
| 203 | + * @author Utar |
| 204 | + */ |
| 205 | +$messages['cs'] = array( |
| 206 | + 'webfonts' => 'WebFonts', |
| 207 | + 'webfonts-desc' => 'Vkládání písem do stránek', |
| 208 | + 'webfonts-load' => 'Vybrat písmo', |
| 209 | + 'webfonts-reset' => 'Resetovat', |
| 210 | + 'webfonts-enable-preference' => 'Povolit vkládání písem (WebFonts)', |
| 211 | + 'webfonts-menu-tooltip' => 'Vybrat písmo pro tuto stránku', |
| 212 | + 'webfonts-help' => 'Nápověda', |
| 213 | + 'webfonts-preview-intro' => 'Tato stránka vám pomůže zobrazit náhled písem dostupných v rozšíření WebFonts a případně si je i stáhnout a nainstalovat do počítače.', |
| 214 | + 'webfonts-preview-title' => 'Náhled písem', |
| 215 | + 'webfonts-preview-download' => 'Stáhnout toto písmo', |
| 216 | + 'webfonts-preview-sampletext' => 'Příliš žluťoučký kůň úpěl ďábelské ódy.', |
| 217 | + 'webfonts-preview-installing-fonts-title' => 'Instalace písem', |
| 218 | + 'webfonts-preview-installing-fonts-text' => 'Písmo si můžete stáhnout pomocí odkazu „{{int:webfonts-preview-download}}“ zobrazeného výše. Postup instalace staženého písma do vašeho počítače najdete v [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts dokumentaci]', |
| 219 | +); |
| 220 | + |
| 221 | +/** Danish (Dansk) |
| 222 | + * @author Peter Alberti |
| 223 | + */ |
| 224 | +$messages['da'] = array( |
| 225 | + 'webfonts' => 'WebFonts', |
| 226 | + 'webfonts-desc' => 'Integrer skrifttyper i siderne', |
| 227 | + 'webfonts-load' => 'Vælg skrifttype', |
| 228 | + 'webfonts-reset' => 'Nulstil', |
| 229 | + 'webfonts-enable-preference' => 'Aktiver integrering af skrifttyper (WebFonts)', |
| 230 | + 'webfonts-menu-tooltip' => 'Vælg en skrifttype for siden', |
| 231 | + 'webfonts-help' => 'Hjælp', |
| 232 | +); |
| 233 | + |
| 234 | +/** German (Deutsch) |
| 235 | + * @author Kghbln |
| 236 | + * @author Metalhead64 |
| 237 | + */ |
| 238 | +$messages['de'] = array( |
| 239 | + 'webfonts' => 'WebFonts', |
| 240 | + 'webfonts-desc' => 'Ermöglicht die Schriftarteneinbettung in Seiten', |
| 241 | + 'webfonts-load' => 'Schriftart auswählen', |
| 242 | + 'webfonts-reset' => 'Zurücksetzen', |
| 243 | + 'webfonts-enable-preference' => 'Schriftarteneinbettung aktivieren', |
| 244 | + 'webfonts-menu-tooltip' => 'Eine Schriftart für die Seite auswählen.', |
| 245 | + 'webfonts-help' => 'Hilfe', |
| 246 | + 'webfonts-preview-intro' => 'Diese Seite hilft dir dabei, die durch die Erweiterung Webfonts verfügbaren Schriftarten in der Vorschau anzusehen und sie auf deinen Computer herunterzuladen sowie zu installieren.', |
| 247 | + 'webfonts-preview-title' => 'Schriftartvorschau', |
| 248 | + 'webfonts-preview-download' => 'Diese Schriftart herunterladen', |
| 249 | + 'webfonts-preview-sampletext' => 'Franz jagt im komplett verwahrlosten Taxi quer durch Bayern.', |
| 250 | + 'webfonts-preview-installing-fonts-title' => 'Schriftarten installieren', |
| 251 | + 'webfonts-preview-installing-fonts-text' => 'Du kannst eine Schriftart herunterladen, indem du oben rechts auf den Link „{{int:webfonts-preview-download}}“ klickst. Um die heruntergeladene Schriftart auf deinem Computer zu installieren, folge bitte [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts diesen Hinweisen].', |
| 252 | +); |
| 253 | + |
| 254 | +/** German (formal address) (Deutsch (Sie-Form)) |
| 255 | + * @author Kghbln |
| 256 | + */ |
| 257 | +$messages['de-formal'] = array( |
| 258 | + 'webfonts-preview-intro' => 'Diese Seite hilft Ihnen dabei, die durch die Erweiterung Webfonts verfügbaren Schriftarten in der Vorschau anzusehen und sie auf Ihren Computer herunterzuladen sowie zu installieren.', |
| 259 | + 'webfonts-preview-installing-fonts-text' => 'Sie können eine Schriftart herunterladen, indem Sie oben rechts auf den Link „{{int:webfonts-preview-download}}“ klicken. Um die heruntergeladene Schriftart auf Ihrem Computer zu installieren, folgen Sie bitte [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts diesen Hinweisen].', |
| 260 | +); |
| 261 | + |
| 262 | +/** Lower Sorbian (Dolnoserbski) |
| 263 | + * @author Michawiki |
| 264 | + */ |
| 265 | +$messages['dsb'] = array( |
| 266 | + 'webfonts' => 'WebFonts', |
| 267 | + 'webfonts-desc' => 'Pisma do bokow zasajźiś', |
| 268 | + 'webfonts-load' => 'Pismo wubraś', |
| 269 | + 'webfonts-reset' => 'Slědk stajiś', |
| 270 | + 'webfonts-enable-preference' => 'Zasajźenje pismow zmóžniś (WebFonts)', |
| 271 | + 'webfonts-menu-tooltip' => 'Pismo za bok wubraś', |
| 272 | + 'webfonts-help' => 'Pomoc', |
| 273 | + 'webfonts-preview-intro' => 'Toś ten bok śi pomaga se pisma woglědaś, kótarež stoje w rozšyrjenju k dispoziciji a je na žycenje ześěgnuś a na twójom licadle instalěrowaś.', |
| 274 | + 'webfonts-preview-title' => 'Pśeglěd pismow', |
| 275 | + 'webfonts-preview-download' => 'Toś to pismo ześěgnuś', |
| 276 | + 'webfonts-preview-installing-fonts-title' => 'Pisma instalěrowaś', |
| 277 | + 'webfonts-preview-installing-fonts-text' => 'Móžoš pismo z pomocu wótkaza "{{int:webfonts-preview-download}}" górjejce ześěgnuś. Aby ześěgnjone pismo na swójo licadle instalěrował, glědaj pšosym [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts toś tu dokumentaciju].', |
| 278 | +); |
| 279 | + |
| 280 | +/** Greek (Ελληνικά) |
| 281 | + * @author AK |
| 282 | + */ |
| 283 | +$messages['el'] = array( |
| 284 | + 'webfonts' => 'WebFonts', |
| 285 | + 'webfonts-desc' => 'Ενσωμάτωση γραμματοσειρών στις σελίδες', |
| 286 | + 'webfonts-load' => 'Επιλέξτε γραμματοσειρά', |
| 287 | + 'webfonts-reset' => 'Επαναφορά', |
| 288 | + 'webfonts-enable-preference' => 'Ενεργοποίηση της ενσωμάτωσης γραμματοσειρών (WebFonts)', |
| 289 | + 'webfonts-menu-tooltip' => 'Επιλέξτε γραμματοσειρά για τη σελίδα', |
| 290 | + 'webfonts-help' => 'Βοήθεια', |
| 291 | +); |
| 292 | + |
| 293 | +/** Esperanto (Esperanto) |
| 294 | + * @author Yekrats |
| 295 | + */ |
| 296 | +$messages['eo'] = array( |
| 297 | + 'webfonts' => 'Retaj Tiparoj', |
| 298 | + 'webfonts-desc' => 'Enmeti tiparojn en paĝoj', |
| 299 | + 'webfonts-load' => 'Elekti tiparon', |
| 300 | + 'webfonts-reset' => 'Restarigi', |
| 301 | + 'webfonts-enable-preference' => 'Ŝalti enmetadon de tiparoj (WebFonts)', |
| 302 | + 'webfonts-menu-tooltip' => 'Elektu tiparon por la paĝo', |
| 303 | + 'webfonts-help' => 'Helpo', |
| 304 | +); |
| 305 | + |
| 306 | +/** Spanish (Español) |
| 307 | + * @author Fitoschido |
| 308 | + * @author Imre |
| 309 | + * @author Platonides |
| 310 | + */ |
| 311 | +$messages['es'] = array( |
| 312 | + 'webfonts' => 'WebFonts', |
| 313 | + 'webfonts-desc' => 'Incrustar tipografías en las páginas', |
| 314 | + 'webfonts-load' => 'Seleccionar tipografía', |
| 315 | + 'webfonts-reset' => 'Restablecer', |
| 316 | + 'webfonts-enable-preference' => 'Activar la incrustación de tipografías (WebFonts)', |
| 317 | + 'webfonts-menu-tooltip' => 'Escoger una fuente para la página', |
| 318 | + 'webfonts-help' => 'Ayuda', |
| 319 | +); |
| 320 | + |
| 321 | +/** Basque (Euskara) |
| 322 | + * @author An13sa |
| 323 | + */ |
| 324 | +$messages['eu'] = array( |
| 325 | + 'webfonts-help' => 'Laguntza', |
| 326 | +); |
| 327 | + |
| 328 | +/** Persian (فارسی) |
| 329 | + * @author Ebraminio |
| 330 | + * @author Huji |
| 331 | + * @author Rmashhadi |
| 332 | + * @author ZxxZxxZ |
| 333 | + */ |
| 334 | +$messages['fa'] = array( |
| 335 | + 'webfonts' => 'وبقلم', |
| 336 | + 'webfonts-desc' => 'جاسازی قلمها در صفحهها', |
| 337 | + 'webfonts-load' => 'انتخاب قلم', |
| 338 | + 'webfonts-reset' => 'بازنشانی', |
| 339 | + 'webfonts-enable-preference' => 'فعالکردن جاسازی قلم (وبقلم)', |
| 340 | + 'webfonts-menu-tooltip' => 'انتخاب قلم برای صفحه', |
| 341 | + 'webfonts-help' => 'کمک', |
| 342 | +); |
| 343 | + |
| 344 | +/** Finnish (Suomi) |
| 345 | + * @author Nedergard |
| 346 | + * @author Olli |
| 347 | + */ |
| 348 | +$messages['fi'] = array( |
| 349 | + 'webfonts' => 'WebFonts', |
| 350 | + 'webfonts-desc' => 'Upota fontit sivuille', |
| 351 | + 'webfonts-load' => 'Valitse fontti', |
| 352 | + 'webfonts-reset' => 'Nollaa', |
| 353 | + 'webfonts-enable-preference' => 'Ota fonttien upotus käyttöön (WebFonts)', |
| 354 | + 'webfonts-menu-tooltip' => 'Valitse sivun fontti', |
| 355 | + 'webfonts-help' => 'Ohje', |
| 356 | +); |
| 357 | + |
| 358 | +/** French (Français) |
| 359 | + * @author Gomoko |
| 360 | + * @author IAlex |
| 361 | + * @author Od1n |
| 362 | + * @author Sherbrooke |
| 363 | + */ |
| 364 | +$messages['fr'] = array( |
| 365 | + 'webfonts' => 'Polices web', |
| 366 | + 'webfonts-desc' => 'Incorpore les polices dans les pages', |
| 367 | + 'webfonts-load' => 'Sélectionnez une police', |
| 368 | + 'webfonts-reset' => 'Réinitialiser', |
| 369 | + 'webfonts-enable-preference' => "Active l'incorporation des fontes (WebFonts)", |
| 370 | + 'webfonts-menu-tooltip' => 'Sélectionnez une police pour la page', |
| 371 | + 'webfonts-help' => 'Aide', |
| 372 | + 'webfonts-preview-intro' => "Cette page vous aide à prévisualiser les polices disponibles dans l'extension WebFonts et éventuellement à les télécharger et les installer dans votre ordinateur.", |
| 373 | + 'webfonts-preview-title' => 'Prévisualiser les polices', |
| 374 | + 'webfonts-preview-download' => 'Télécharger cette police', |
| 375 | + 'webfonts-preview-sampletext' => 'Portez ce vieux whisky au juge blond qui fume', |
| 376 | + 'webfonts-preview-installing-fonts-title' => 'Installation des polices', |
| 377 | + 'webfonts-preview-installing-fonts-text' => 'Vous pouvez télécharger une police en utilisant le lien "{{int:webfonts-preview-download}}" ci-dessus. Pour installer la police téléchargée sur votre ordinateur, veuillez consulter [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts cette documentation].', |
| 378 | +); |
| 379 | + |
| 380 | +/** Franco-Provençal (Arpetan) |
| 381 | + * @author ChrisPtDe |
| 382 | + */ |
| 383 | +$messages['frp'] = array( |
| 384 | + 'webfonts' => 'Polices vouèbe', |
| 385 | + 'webfonts-desc' => 'Apond les polices a les pâges.', |
| 386 | + 'webfonts-load' => 'Chouèsésséd una police', |
| 387 | + 'webfonts-reset' => 'Tornar inicialisar', |
| 388 | + 'webfonts-enable-preference' => 'Activar l’aponsa de les fontes (WebFonts)', |
| 389 | + 'webfonts-menu-tooltip' => 'Chouèsésséd una police por la pâge', |
| 390 | + 'webfonts-help' => 'Éde', |
| 391 | +); |
| 392 | + |
| 393 | +/** Galician (Galego) |
| 394 | + * @author Toliño |
| 395 | + */ |
| 396 | +$messages['gl'] = array( |
| 397 | + 'webfonts' => 'WebFonts', |
| 398 | + 'webfonts-desc' => 'Incorporar fontes nas páxinas', |
| 399 | + 'webfonts-load' => 'Seleccione unha fonte', |
| 400 | + 'webfonts-reset' => 'Restablecer', |
| 401 | + 'webfonts-enable-preference' => 'Activar a incorporación de fontes (WebFonts)', |
| 402 | + 'webfonts-menu-tooltip' => 'Seleccione unha fonte para a páxina', |
| 403 | + 'webfonts-help' => 'Axuda', |
| 404 | + 'webfonts-preview-intro' => 'Esta páxina axúdalle a ollar unha vista previa das fontes dispoñibles na extensión WebFonts e, opcionalmente, descargalas e instalalas no seu ordenador.', |
| 405 | + 'webfonts-preview-title' => 'Vista previa das fontes', |
| 406 | + 'webfonts-preview-download' => 'Descargar esta fonte', |
| 407 | + 'webfonts-preview-sampletext' => 'Necesitamos unha tipografía chuliña de cor kiwi, que lle zorregue unha labazada visual á xente', |
| 408 | + 'webfonts-preview-installing-fonts-title' => 'Instalación das fontes', |
| 409 | + 'webfonts-preview-installing-fonts-text' => 'Pode descargar unha fonte mediante a ligazón "{{int:webfonts-preview-download}}" anterior. Para instalar a fonte descargada no seu ordenador consulte [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts esta documentación].', |
| 410 | +); |
| 411 | + |
| 412 | +/** Swiss German (Alemannisch) |
| 413 | + * @author Als-Chlämens |
| 414 | + */ |
| 415 | +$messages['gsw'] = array( |
| 416 | + 'webfonts' => 'WebSchriftarte', |
| 417 | + 'webfonts-desc' => 'Schriftarte in Syte yybette', |
| 418 | + 'webfonts-load' => 'Schriftart usswääle', |
| 419 | + 'webfonts-reset' => 'Zruggsetze', |
| 420 | + 'webfonts-enable-preference' => 'D Yybettig vo Schriftarte aktiviere', |
| 421 | +); |
| 422 | + |
| 423 | +/** Gujarati (ગુજરાતી) |
| 424 | + * @author Ankit |
| 425 | + */ |
| 426 | +$messages['gu'] = array( |
| 427 | + 'webfonts-load' => 'ફોન્ટ પસંદ કરો', |
| 428 | + 'webfonts-reset' => 'ફરી ગોઠવો', |
| 429 | +); |
| 430 | + |
| 431 | +/** Hebrew (עברית) |
| 432 | + * @author Amire80 |
| 433 | + */ |
| 434 | +$messages['he'] = array( |
| 435 | + 'webfonts' => 'גופני רשת', |
| 436 | + 'webfonts-desc' => 'הטמעת גופנים בדפים', |
| 437 | + 'webfonts-load' => 'בחירת גופן', |
| 438 | + 'webfonts-reset' => 'ביטול גופן רשת', |
| 439 | + 'webfonts-enable-preference' => 'הפעלה של הטמעת גופנים (גופני רשת)', |
| 440 | + 'webfonts-menu-tooltip' => 'בחירת גופן לדף', |
| 441 | + 'webfonts-help' => 'עזרה', |
| 442 | + 'webfonts-preview-intro' => 'בדף הזה יש תצוגה מקדימה של הגופנים הזמינים בהרחבה WebFonts ושאפשר להוריד ולהתקין במחשב שלך.', |
| 443 | + 'webfonts-preview-title' => 'תצוגה מקדימה של גופנים', |
| 444 | + 'webfonts-preview-download' => 'הורדת הגופן הזה', |
| 445 | + 'webfonts-preview-sampletext' => 'יַעֲקֹב דָּגָן הַשָּׂמֵחַ טִפֵּס בֶּעֱזוּז לְרֹאשׁ סֻלָּם מָאֳרָךְ לִצְפּוֹת בִּמְעוֹף דּוּכִיפַת וְנֵץ', |
| 446 | + 'webfonts-preview-installing-fonts-title' => 'התקנת גופנים', |
| 447 | + 'webfonts-preview-installing-fonts-text' => 'אפשר להוריד גופן באמצעות הקישור "{{int:webfonts-preview-download}}" לעיל. כדי להתקין את הגופן במחשב שלך, ר\' [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts את דפי העזרה האלה]', |
| 448 | +); |
| 449 | + |
| 450 | +/** Hindi (हिन्दी) |
| 451 | + * @author Ansumang |
| 452 | + * @author Bhawani Gautam |
| 453 | + */ |
| 454 | +$messages['hi'] = array( |
| 455 | + 'webfonts' => 'वेब फॉण्ट्स', |
| 456 | + 'webfonts-desc' => 'पृष्ठों में फॉन्ट्सका जड़ान करें', |
| 457 | + 'webfonts-load' => 'फ़ॉन्ट का चयन करें', |
| 458 | + 'webfonts-reset' => 'पुनर्स्थापित करें', |
| 459 | + 'webfonts-enable-preference' => 'फ़ॉन्ट एम्बेडिंग (WebFonts) को सक्षम करें', |
| 460 | + 'webfonts-menu-tooltip' => 'पृष्ठ के लिए फ़ॉन्ट का चयन करें', |
| 461 | + 'webfonts-help' => 'सहायता', |
| 462 | +); |
| 463 | + |
| 464 | +/** Upper Sorbian (Hornjoserbsce) |
| 465 | + * @author Michawiki |
| 466 | + */ |
| 467 | +$messages['hsb'] = array( |
| 468 | + 'webfonts' => 'WebFonts', |
| 469 | + 'webfonts-desc' => 'Pisma do stronow zasadźić', |
| 470 | + 'webfonts-load' => 'Pismo wubrać', |
| 471 | + 'webfonts-reset' => 'Wróćo stajić', |
| 472 | + 'webfonts-enable-preference' => 'Zasadźenje pismow zmóžnić (WebFonts)', |
| 473 | + 'webfonts-menu-tooltip' => 'Pismo za stronu wubrać', |
| 474 | + 'webfonts-help' => 'Pomoc', |
| 475 | + 'webfonts-preview-intro' => 'Tuta strona ći pomha sej pismaj wobhladać, kotrež w rozšěrjenju k dispoziciji steja a je na přeće sćahnyć a na twojim ličaku instalować.', |
| 476 | + 'webfonts-preview-title' => 'Přehlad pismow', |
| 477 | + 'webfonts-preview-download' => 'Tute pismo sćahnyć', |
| 478 | + 'webfonts-preview-installing-fonts-title' => 'Pisma instalować', |
| 479 | + 'webfonts-preview-installing-fonts-text' => 'Móžeš pismo z pomocu wotkaza "{{int:webfonts-preview-download}}" horjeka sćahnyć. Zo by sćehnjene pismo na swojim ličaku instalował, hlej prošu [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts tutu dokumentaciju].', |
| 480 | +); |
| 481 | + |
| 482 | +/** Hungarian (Magyar) |
| 483 | + * @author Dj |
| 484 | + * @author Misibacsi |
| 485 | + * @author Xbspiro |
| 486 | + */ |
| 487 | +$messages['hu'] = array( |
| 488 | + 'webfonts' => 'WebFonts', |
| 489 | + 'webfonts-desc' => 'Fontok beágyazása a lapokba', |
| 490 | + 'webfonts-load' => 'Válassza ki a betűtípust!', |
| 491 | + 'webfonts-reset' => 'Törlés', |
| 492 | + 'webfonts-enable-preference' => 'Fontok beágyazása (WebFonts)', |
| 493 | + 'webfonts-menu-tooltip' => 'Válassz egy fontot az oldalhoz', |
| 494 | + 'webfonts-help' => 'Segítség', |
| 495 | +); |
| 496 | + |
| 497 | +/** Interlingua (Interlingua) |
| 498 | + * @author McDutchie |
| 499 | + */ |
| 500 | +$messages['ia'] = array( |
| 501 | + 'webfonts' => 'WebFonts', |
| 502 | + 'webfonts-desc' => 'Incorporar typos de litteras in paginas', |
| 503 | + 'webfonts-load' => 'Selige un typo de litteras', |
| 504 | + 'webfonts-reset' => 'Reinitialisar', |
| 505 | + 'webfonts-enable-preference' => 'Activar le incorporation de typos de litteras (WebFonts)', |
| 506 | + 'webfonts-menu-tooltip' => 'Selige un typo de litteras pro le pagina', |
| 507 | + 'webfonts-help' => 'Adjuta', |
| 508 | + 'webfonts-preview-intro' => 'Iste pagina permitte previsualisar le typos de litteras disponibile in le extension WebFonts e, si desirate, discargar e installar los in tu computator.', |
| 509 | + 'webfonts-preview-title' => 'Previsualisar le typos de litteras', |
| 510 | + 'webfonts-preview-download' => 'Discargar iste typo de litteras', |
| 511 | + 'webfonts-preview-sampletext' => 'Apud le zoo, quatro juvene feminas bibe whisky ex calices gothic', |
| 512 | + 'webfonts-preview-installing-fonts-title' => 'Installar typos de litteras', |
| 513 | + 'webfonts-preview-installing-fonts-text' => 'Tu pote discargar un typo de litteras usante le ligamine "{{int:webfonts-preview-download}}" hic supra. Pro installar le typo de litteras discargate in tu computator, per favor consulta [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts iste documentation].', |
| 514 | +); |
| 515 | + |
| 516 | +/** Indonesian (Bahasa Indonesia) |
| 517 | + * @author IvanLanin |
| 518 | + */ |
| 519 | +$messages['id'] = array( |
| 520 | + 'webfonts' => 'WebFonts', |
| 521 | + 'webfonts-desc' => 'Menyertakan fon (huruf) dalam halaman', |
| 522 | + 'webfonts-load' => 'Pilih fon', |
| 523 | + 'webfonts-reset' => 'Setel ulang', |
| 524 | +); |
| 525 | + |
| 526 | +/** Iloko (Ilokano) |
| 527 | + * @author Lam-ang |
| 528 | + */ |
| 529 | +$messages['ilo'] = array( |
| 530 | + 'webfonts' => 'WebFonts', |
| 531 | + 'webfonts-desc' => 'Ikabil dagiti kita ti letra kadagiti panid', |
| 532 | + 'webfonts-load' => 'Agpili ti kita ti letra', |
| 533 | + 'webfonts-reset' => 'Isubli', |
| 534 | + 'webfonts-enable-preference' => 'Pakabaelan na ti agikabil ti kita ti letra (WebFonts)', |
| 535 | + 'webfonts-menu-tooltip' => 'Agpili ti kita ti letra para iti panid', |
| 536 | + 'webfonts-help' => 'Tulong', |
| 537 | + 'webfonts-preview-intro' => 'Daytoy a panid ket makatulong kenka nga agipadas kadagiti kita ti letra a magun-od iti WebFonts a pagpaatiddog ken mapilim ti agikarga ken agikabil dita komputer mo.', |
| 538 | + 'webfonts-preview-title' => 'Ipadas dagiti kita ti letra', |
| 539 | + 'webfonts-preview-download' => 'Ikarga daytoy a kita ti letra', |
| 540 | + 'webfonts-preview-sampletext' => 'Ti napartak a kayumanggi a sorro ket limmagto ti nasadut nga aso', |
| 541 | + 'webfonts-preview-installing-fonts-title' => 'Agikabkabil kadagiti Kita ti letra', |
| 542 | + 'webfonts-preview-installing-fonts-text' => 'Makaikarga ka ti kita ti letra babaen ti panag-usar ti "{{int:webfonts-preview-download}}" a panilpo a naited dita ngato. Ti panagikabil ti naikarga a kita ti letra iti komputer mo, pangngaasi a kitaen[//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts daytoy a dokumentasion].', |
| 543 | +); |
| 544 | + |
| 545 | +/** Italian (Italiano) |
| 546 | + * @author Aushulz |
| 547 | + * @author Beta16 |
| 548 | + */ |
| 549 | +$messages['it'] = array( |
| 550 | + 'webfonts' => 'WebFonts', |
| 551 | + 'webfonts-desc' => 'Incorpora caratteri nelle pagine', |
| 552 | + 'webfonts-load' => 'Seleziona il tipo di carattere', |
| 553 | + 'webfonts-reset' => 'Reimposta', |
| 554 | + 'webfonts-enable-preference' => "Attiva l'incorporazione dei caratteri (WebFont)", |
| 555 | + 'webfonts-menu-tooltip' => 'Seleziona un tipo di carattere per la pagina', |
| 556 | + 'webfonts-help' => 'Aiuto', |
| 557 | +); |
| 558 | + |
| 559 | +/** Japanese (日本語) |
| 560 | + * @author Fryed-peach |
| 561 | + * @author Schu |
| 562 | + */ |
| 563 | +$messages['ja'] = array( |
| 564 | + 'webfonts' => 'Web フォント', |
| 565 | + 'webfonts-desc' => 'ページにフォントを埋め込みます。', |
| 566 | + 'webfonts-load' => 'フォントを選択', |
| 567 | + 'webfonts-reset' => 'リセット', |
| 568 | +); |
| 569 | + |
| 570 | +/** Georgian (ქართული) |
| 571 | + * @author ITshnik |
| 572 | + */ |
| 573 | +$messages['ka'] = array( |
| 574 | + 'webfonts-help' => 'დახმარება', |
| 575 | +); |
| 576 | + |
| 577 | +/** Khmer (ភាសាខ្មែរ) |
| 578 | + * @author Lovekhmer |
| 579 | + * @author វ័ណថារិទ្ធ |
| 580 | + */ |
| 581 | +$messages['km'] = array( |
| 582 | + 'webfonts' => 'ពុម្ពអក្សរ WebFonts', |
| 583 | + 'webfonts-desc' => 'បង្កប់ពុម្ពអក្សរក្នុងទំព័រនេះ', |
| 584 | + 'webfonts-load' => 'ជ្រើសរើសពុម្ពអក្សរ', |
| 585 | + 'webfonts-reset' => 'កំណត់ឡើងវិញ', |
| 586 | + 'webfonts-enable-preference' => 'ដាក់ពុម្ពអក្សរបង្កប់ចូល (WebFonts)', |
| 587 | +); |
| 588 | + |
| 589 | +/** Korean (한국어) |
| 590 | + * @author Kwj2772 |
| 591 | + */ |
| 592 | +$messages['ko'] = array( |
| 593 | + 'webfonts' => '웹 글꼴', |
| 594 | + 'webfonts-desc' => '문서에 글꼴을 포함하기', |
| 595 | + 'webfonts-load' => '글꼴 선택', |
| 596 | + 'webfonts-reset' => '리셋', |
| 597 | + 'webfonts-enable-preference' => '글꼴 임베딩 켜기 (WebFonts)', |
| 598 | + 'webfonts-menu-tooltip' => '문서를 표시할 글꼴 선택', |
| 599 | + 'webfonts-help' => '도움말', |
| 600 | + 'webfonts-preview-intro' => '이 페이지는 WebFonts 확장 기능에서 제공하는 글꼴을 미리 보고 글꼴을 선택하여 컴퓨터에 내려받고 설치할 수 있도록 도와 줄 것입니다.', |
| 601 | + 'webfonts-preview-title' => '글꼴 미리 보기', |
| 602 | + 'webfonts-preview-download' => '이 글꼴을 다운로드', |
| 603 | + 'webfonts-preview-sampletext' => '덧글은 통신 예절 지키면서 표현 자유 추구하는 방향으로.', |
| 604 | + 'webfonts-preview-installing-fonts-title' => '글꼴 설치하기', |
| 605 | + 'webfonts-preview-installing-fonts-text' => '위의 "{{int:webfonts-preview-download}}" 링크를 통해 글꼴을 내려받을 수 있습니다. 내려받은 글꼴을 컴퓨터에 설치하려면 [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts 이 설명문서]를 참고하십시오.', |
| 606 | +); |
| 607 | + |
| 608 | +/** Colognian (Ripoarisch) |
| 609 | + * @author Purodha |
| 610 | + */ |
| 611 | +$messages['ksh'] = array( |
| 612 | + 'webfonts' => 'Schreff_Aate em Web', |
| 613 | + 'webfonts-desc' => 'Schreff_Aate en Sigge enboue', |
| 614 | + 'webfonts-load' => 'Schreff_Aat ußsöke', |
| 615 | + 'webfonts-reset' => 'Zeröksäze', |
| 616 | + 'webfonts-enable-preference' => 'Et Schreff_Aate en de Sigge enboue aanschallde ({{int:webfonts}})', |
| 617 | + 'webfonts-menu-tooltip' => 'Donn en Schreff för di Sigg ußwähle.', |
| 618 | +); |
| 619 | + |
| 620 | +/** Luxembourgish (Lëtzebuergesch) |
| 621 | + * @author Robby |
| 622 | + */ |
| 623 | +$messages['lb'] = array( |
| 624 | + 'webfonts-desc' => "D'Schrëften an d'Säiten abannen", |
| 625 | + 'webfonts-load' => 'Buschtawen-Typ (Font) eraussichen', |
| 626 | + 'webfonts-reset' => 'Zrécksetzen', |
| 627 | + 'webfonts-menu-tooltip' => "Sicht eng Buschtawen-Zort fir d'Säit eraus", |
| 628 | + 'webfonts-help' => 'Hëllef', |
| 629 | + 'webfonts-preview-download' => 'Dës Schrëftart (Font) eroflueden', |
| 630 | +); |
| 631 | + |
| 632 | +/** Limburgish (Limburgs) |
| 633 | + * @author Ooswesthoesbes |
| 634 | + */ |
| 635 | +$messages['li'] = array( |
| 636 | + 'webfonts' => 'WebFonts', |
| 637 | + 'webfonts-desc' => 'Sloet fonts oppe pagina in', |
| 638 | + 'webfonts-load' => 'Selecteer fonts', |
| 639 | + 'webfonts-reset' => 'Stèl óbbenuids in', |
| 640 | + 'webfonts-enable-preference' => 'Sjakel insloeting fonts aan (WebFonts)', |
| 641 | + 'webfonts-menu-tooltip' => 'Selecteer fonts veure pagina', |
| 642 | + 'webfonts-help' => 'Hölp', |
| 643 | + 'webfonts-preview-intro' => 'Via dees paasj kins se de lettertypes bekieke die besjikbaar zeen inne oetbreiing WebFonts en es se det wils, kins se ze downloade en installere op diene pc.', |
| 644 | + 'webfonts-preview-title' => 'Veurbesjoew lettertypes', |
| 645 | + 'webfonts-preview-download' => 'Download dit lettertype', |
| 646 | +); |
| 647 | + |
| 648 | +/** Macedonian (Македонски) |
| 649 | + * @author Bjankuloski06 |
| 650 | + */ |
| 651 | +$messages['mk'] = array( |
| 652 | + 'webfonts' => 'WebFonts', |
| 653 | + 'webfonts-desc' => 'Вградување на фонтови во страници', |
| 654 | + 'webfonts-load' => 'Изберете фонт', |
| 655 | + 'webfonts-reset' => 'Врати', |
| 656 | + 'webfonts-enable-preference' => 'Овозможи на вметнување на фонтови (WebFonts)', |
| 657 | + 'webfonts-menu-tooltip' => 'Изберете фонт за страницата', |
| 658 | + 'webfonts-help' => 'Помош', |
| 659 | + 'webfonts-preview-intro' => 'На оваа страница можете да ги погледате фонтовите што ви се на располагање со додатокот WebFonts (со можност да ги преземете и инсталирате на вашиот сметач).', |
| 660 | + 'webfonts-preview-title' => 'Преглед на фонтовите', |
| 661 | + 'webfonts-preview-download' => 'Преземи го фонтот', |
| 662 | + 'webfonts-preview-sampletext' => 'Бучниов жолт џин ѕида куќа со фурна меѓу полиња за цреши, хмељ и грозје.', |
| 663 | + 'webfonts-preview-installing-fonts-title' => 'Инсталација на фонотовите', |
| 664 | + 'webfonts-preview-installing-fonts-text' => 'Можете да преземете фонт преку горенаведената врска „{{int:webfonts-preview-download}}“. За да го инсталирате на сметачот, погледајте ја [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts?uselang=mk оваа документација].', |
| 665 | +); |
| 666 | + |
| 667 | +/** Malayalam (മലയാളം) |
| 668 | + * @author Praveenp |
| 669 | + * @author Santhosh |
| 670 | + * @author Vssun |
| 671 | + */ |
| 672 | +$messages['ml'] = array( |
| 673 | + 'webfonts' => 'വെബ്ഫോണ്ടുകൾ', |
| 674 | + 'webfonts-desc' => 'മീഡിയവിക്കി താളുകളിൽ ഫോണ്ടുകൾ എംബെഡ് ചെയ്യുക', |
| 675 | + 'webfonts-load' => 'ഫോണ്ടുകൾ', |
| 676 | + 'webfonts-reset' => 'പഴയപടിയാക്കുക', |
| 677 | + 'webfonts-enable-preference' => 'ഫോണ്ട് എംബെഡ് ചെയ്യുക.(വെബ്ഫോണ്ട്സ്)', |
| 678 | + 'webfonts-menu-tooltip' => 'ഈ താളിനുവേണ്ടി ഒരു ഫോണ്ട് തിരഞ്ഞെടുക്കുക', |
| 679 | + 'webfonts-help' => 'സഹായം', |
| 680 | + 'webfonts-preview-intro' => 'വെബ്ഫോണ്ട് എക്സ്റ്റന്ഷനിലുള്ള ഫോണ്ടുകള് പരീക്ഷിച്ചുനോക്കി അവ നിങ്ങളുടെ കമ്പ്യൂട്ടറില് ഇന്സ്റ്റാള് ചെയ്യുന്നതിനു് ഈ താള് സഹായിക്കുന്നു.', |
| 681 | + 'webfonts-preview-title' => 'ഫോണ്ടുകള് പരീക്ഷിച്ചുനോക്കുക', |
| 682 | + 'webfonts-preview-download' => 'ഡൌണ്ലോഡ്', |
| 683 | + 'webfonts-preview-sampletext' => 'തിരഞ്ഞെടുത്ത ഫോണ്ട് പരീക്ഷിച്ചു നോക്കാനായി ഇവിടെ നിങ്ങള്ക്കിഷ്ടമുള്ളതെഴുതാം.', |
| 684 | + 'webfonts-preview-installing-fonts-title' => 'ഫോണ്ടുകള് ഇന്സ്റ്റാള് ചെയ്യുന്ന വിധം', |
| 685 | + 'webfonts-preview-installing-fonts-text' => 'മുകളില് കൊടുത്തിരിക്കുന്ന {{int:webfonts-preview-download}} കണ്ണി ഉപയോഗിച്ചു് നിങ്ങള്ക്കു് ഫോണ്ട് ഡൌണ്ലോഡ് ചെയ്യാം. അതിനു ശേഷം ഇന്സ്റ്റാള് ചെയ്യുന്നതിനായി [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts ഈ താള് സഹായിച്ചേക്കും.]', |
| 686 | +); |
| 687 | + |
| 688 | +/** Marathi (मराठी) |
| 689 | + * @author Htt |
| 690 | + * @author Kaajawa |
| 691 | + * @author Mahitgar |
| 692 | + */ |
| 693 | +$messages['mr'] = array( |
| 694 | + 'webfonts' => 'जालटंक', |
| 695 | + 'webfonts-load' => 'टंक', |
| 696 | + 'webfonts-reset' => 'पूर्ववत करा', |
| 697 | + 'webfonts-enable-preference' => '(WebFonts) फॉंट अंतःस्थापन (एंबेडिंग) सक्षम करा', |
| 698 | + 'webfonts-menu-tooltip' => 'पानासाठी टंक निवडा', |
| 699 | + 'webfonts-help' => 'मदत', |
| 700 | + 'webfonts-preview-download' => 'हा टंक(फॉँट) उतरवा/वापरा', |
| 701 | + 'webfonts-preview-sampletext' => 'The quick brown fox jumps over the lazy dog कुणी अनुवादाचे हे खरे आव्हान पेलू शकेल काय ? मराठी भाषेतील प्रत्येक अक्षर येईल आणि एकदाच येईल किमान सर्वाधिक अक्षरे येतील अशी वाक्य रचना हवी आहे. येथे बदल करण्याकरिता तुम्हाला ट्रांसलेटविकि डॉट नेट वर आधी आपले खाते उघडून अनुवाद करू देण्याची फॉर्मॅलिटी पार पाडावी लागेल.', |
| 702 | + 'webfonts-preview-installing-fonts-title' => 'फॉंट इन्स्टॉलींग', |
| 703 | +); |
| 704 | + |
| 705 | +/** Malay (Bahasa Melayu) |
| 706 | + * @author Anakmalaysia |
| 707 | + */ |
| 708 | +$messages['ms'] = array( |
| 709 | + 'webfonts' => 'WebFonts', |
| 710 | + 'webfonts-desc' => 'Gunakan fon dalam laman', |
| 711 | + 'webfonts-load' => 'Pilih fon', |
| 712 | + 'webfonts-reset' => 'Set semula', |
| 713 | + 'webfonts-enable-preference' => 'Hidupkan pembenaman fon (WebFonts)', |
| 714 | + 'webfonts-menu-tooltip' => 'Pilih fon untuk laman ini', |
| 715 | + 'webfonts-help' => 'Bantuan', |
| 716 | + 'webfonts-preview-intro' => 'Laman ini membantu anda untuk mempralihat fon-fon yang terdapat dalam sambungan WebFonts, serta memilih untuk memuat turun dan memasang fon-fon itu dalam komputer anda.', |
| 717 | + 'webfonts-preview-title' => 'Pralihat fon', |
| 718 | + 'webfonts-preview-download' => 'Muat turun fon ini', |
| 719 | + 'webfonts-preview-sampletext' => 'Taufik ialah seorang pakar virus dan jurusinar X yang rajin membaca buku, gemar menonton wayang dan pandai menghafaz al-Quran.', |
| 720 | + 'webfonts-preview-installing-fonts-title' => 'Pemasangan Fon', |
| 721 | + 'webfonts-preview-installing-fonts-text' => 'Anda boleh memuat turun fon dengan menggunakan pautan "{{int:webfonts-preview-download}}" yang disediakan di atas. Untuk memasang fon yang dimuat turun ke dalam komputer anda, sila rujuk [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts dokumentasi ini].', |
| 722 | +); |
| 723 | + |
| 724 | +/** Maltese (Malti) |
| 725 | + * @author Chrisportelli |
| 726 | + */ |
| 727 | +$messages['mt'] = array( |
| 728 | + 'webfonts-load' => 'Agħżel it-tipa', |
| 729 | +); |
| 730 | + |
| 731 | +/** Norwegian (bokmål) (Norsk (bokmål)) |
| 732 | + * @author Nghtwlkr |
| 733 | + */ |
| 734 | +$messages['nb'] = array( |
| 735 | + 'webfonts' => 'WebFonts', |
| 736 | + 'webfonts-desc' => 'Bygg inn fonter i sider', |
| 737 | + 'webfonts-load' => 'Velg font', |
| 738 | +); |
| 739 | + |
| 740 | +/** Nepali (नेपाली) |
| 741 | + * @author Bhawani Gautam |
| 742 | + */ |
| 743 | +$messages['ne'] = array( |
| 744 | + 'webfonts' => 'वेब फण्ट्स', |
| 745 | + 'webfonts-desc' => 'पृष्ठहरुमा लिपि जड़ान(fonts embed) गर्ने', |
| 746 | + 'webfonts-load' => 'लिपि(font) चुन्ने', |
| 747 | + 'webfonts-reset' => 'पुनर्स्थापित गर्ने', |
| 748 | + 'webfonts-enable-preference' => 'लिपि जडान कार्य (वेब फण्ट्स) सक्रिय गर्ने', |
| 749 | +); |
| 750 | + |
| 751 | +/** Dutch (Nederlands) |
| 752 | + * @author McDutchie |
| 753 | + * @author SPQRobin |
| 754 | + * @author Saruman |
| 755 | + * @author Siebrand |
| 756 | + */ |
| 757 | +$messages['nl'] = array( |
| 758 | + 'webfonts' => 'WebFonts', |
| 759 | + 'webfonts-desc' => "Lettertypen op pagina's insluiten", |
| 760 | + 'webfonts-load' => 'Lettertype selecteren', |
| 761 | + 'webfonts-reset' => 'Opnieuw instellen', |
| 762 | + 'webfonts-enable-preference' => 'Lettertypen insluiten inschakelen (WebFonts)', |
| 763 | + 'webfonts-menu-tooltip' => 'Selecteer een lettertype voor de pagina', |
| 764 | + 'webfonts-help' => 'Hulp', |
| 765 | + 'webfonts-preview-intro' => 'Via deze pagina kunt u de lettertypen bekijken die beschikbaar zijn in de uitbreiding WebFonts en als u dat wilt, kunt u ze downloaden en installeren op uw computer.', |
| 766 | + 'webfonts-preview-title' => 'Voorvertoning lettertypen', |
| 767 | + 'webfonts-preview-download' => 'Lettertype downloaden', |
| 768 | + 'webfonts-preview-sampletext' => "Pa's wijze lynx bezag vroom het fikse aquaduct", |
| 769 | + 'webfonts-preview-installing-fonts-title' => 'Lettertypen installeren', |
| 770 | + 'webfonts-preview-installing-fonts-text' => 'U kunt een lettertype downloaden via de verwijzing "{{int:webfonts-preview-download}}" hierboven. Bekijk de [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts documentatie] om het gedownloade lettertype te installeren op uw computer.', |
| 771 | +); |
| 772 | + |
| 773 | +/** Oriya (ଓଡ଼ିଆ) |
| 774 | + * @author Ansumang |
| 775 | + * @author Jnanaranjan Sahu |
| 776 | + * @author Odisha1 |
| 777 | + * @author Psubhashish |
| 778 | + */ |
| 779 | +$messages['or'] = array( |
| 780 | + 'webfonts' => 'ୱେବଫଣ୍ଟ', |
| 781 | + 'webfonts-desc' => 'ପୃଷ୍ଠାରେ ଏମବେଡ଼ କରାଯାଇଥିବା ଫଣ୍ଟ', |
| 782 | + 'webfonts-load' => 'ଫଣ୍ଟ ବାଛିବେ', |
| 783 | + 'webfonts-reset' => 'ପୁନସ୍ଥାପନ', |
| 784 | + 'webfonts-enable-preference' => 'ଫଣ୍ଟ ଏମବେଡ଼ କରିବା ସଚଳ କରିବେ (ୱେବ ଫଣ୍ଟ)', |
| 785 | + 'webfonts-menu-tooltip' => 'ଏହି ପୃଷ୍ଠା ପାଇଁ ଏକ ଫଣ୍ଟ ବାଛିବେ', |
| 786 | + 'webfonts-help' => 'ସହଯୋଗ', |
| 787 | + 'webfonts-preview-intro' => 'ଏହି ପୃଷ୍ଠା ୱେବଫଣ୍ଟ ଏକ୍ସଟେନ୍ଶନରେ ଯେଉଁ ଲିପି ଉପଲବ୍ଧ ଅଛି ତାହାର ପୂର୍ବ ଦେଖଣାରେ ସାହାଯ୍ୟ କରିଥାଏ ଏବଂ ଆପଣଙ୍କ କମ୍ପ୍ୟୁଟରରେ ବୈକଳ୍ପିକ ଭାବେ ଡ଼ାଉନଲୋଡ଼ ଓ ଇନସ୍ଟଲ କରିଥାଏ ।', |
| 788 | + 'webfonts-preview-title' => 'ଲିପିର ପୂର୍ବ ଦେଖଣା', |
| 789 | + 'webfonts-preview-download' => 'ଏହି ଲିପି ଡ଼ାଉନଲୋଡ଼ କରନ୍ତୁ', |
| 790 | + 'webfonts-preview-installing-fonts-title' => 'ଲିପି ସ୍ଥାପନ ହେଉଛି', |
| 791 | + 'webfonts-preview-installing-fonts-text' => "ଆପଣ ଏକ ଲିପି ଡ଼ାଉନଲୋଡ଼ କରିପାରିବେ ଉପରେ ଥିବା ଏହି ଲିଙ୍କ ''{{int:webfonts-preview-download}}'' ଉପଯୋଗ କରି । ଡ଼ାଉନଲୋଡ଼ କରାଯାଇଥିବା ଲିପିକୁ ଆପଣଙ୍କ କମ୍ପ୍ୟୁଟରରେ ସ୍ଥାପନ କରିବା ପାଇଁ, ଦୟାକରି ଏହା ଦେଖନ୍ତୁ [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts this documentation] ।", |
| 792 | +); |
| 793 | + |
| 794 | +/** Polish (Polski) |
| 795 | + * @author Olgak85 |
| 796 | + * @author Woytecr |
| 797 | + */ |
| 798 | +$messages['pl'] = array( |
| 799 | + 'webfonts' => 'WebFonts', |
| 800 | + 'webfonts-desc' => 'Czcionki osadzone na stronach', |
| 801 | + 'webfonts-load' => 'Wybierz czcionkę', |
| 802 | + 'webfonts-reset' => 'Reset', |
| 803 | + 'webfonts-enable-preference' => 'Włącz osadzanie czcionek', |
| 804 | + 'webfonts-menu-tooltip' => 'Wybierz czcionkę dla strony', |
| 805 | + 'webfonts-help' => 'Pomoc', |
| 806 | +); |
| 807 | + |
| 808 | +/** Piedmontese (Piemontèis) |
| 809 | + * @author Borichèt |
| 810 | + * @author Dragonòt |
| 811 | + */ |
| 812 | +$messages['pms'] = array( |
| 813 | + 'webfonts' => "Caràter dl'aragnà", |
| 814 | + 'webfonts-desc' => 'Anserì ij caràter ant le pàgine', |
| 815 | + 'webfonts-load' => "Ch'a selession-a un tipo ëd caràter", |
| 816 | + 'webfonts-reset' => 'Spian-a', |
| 817 | + 'webfonts-enable-preference' => "Abilité l'anseriment ëd tipo ëd caràter (Caràter dl'aragnà)", |
| 818 | + 'webfonts-menu-tooltip' => 'Selessioné un tipo ëd caràter për la pàgina', |
| 819 | + 'webfonts-help' => 'Agiut', |
| 820 | + 'webfonts-preview-intro' => "Sta pàgina a-j giuta a previsualisé ij caràter disponìbij ant l'estension WebFonts e opsionalment a dëscarieje e anstaleje an sò ordinator.", |
| 821 | + 'webfonts-preview-title' => 'Preuva ij caràter', |
| 822 | + 'webfonts-preview-download' => 'Dëscarié cost caràter', |
| 823 | + 'webfonts-preview-sampletext' => 'La cita volp maròn a sàuta dlà dël can fòl', |
| 824 | + 'webfonts-preview-installing-fonts-title' => 'Anstalassion dij Caràter', |
| 825 | + 'webfonts-preview-installing-fonts-text' => "A peul dëscarié un caràter an dovrand la liura «{{int:webfonts-preview-download}}» smonùa dëdzora. Për anstalé ël caràter dëscarià an sò ordinator, për piasì ch'a lesa [//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts sa documentassion]", |
| 826 | +); |
| 827 | + |
| 828 | +/** Pashto (پښتو) |
| 829 | + * @author Ahmed-Najib-Biabani-Ibrahimkhel |
| 830 | + */ |
| 831 | +$messages['ps'] = array( |
| 832 | + 'webfonts-load' => 'ليکبڼه ټاکل', |
| 833 | + 'webfonts-reset' => 'بياايښودل', |
| 834 | + 'webfonts-help' => 'لارښود', |
| 835 | + 'webfonts-preview-download' => 'ښکته کول', |
| 836 | +); |
| 837 | + |
| 838 | +/** Portuguese (Português) |
| 839 | + * @author Hamilton Abreu |
| 840 | + */ |
| 841 | +$messages['pt'] = array( |
| 842 | + 'webfonts' => 'TiposDeLetraIncorporados', |
| 843 | + 'webfonts-desc' => 'Tipos de letra incorporados nas páginas', |
| 844 | + 'webfonts-load' => 'Seleccione o tipo', |
| 845 | + 'webfonts-reset' => 'Reiniciar', |
| 846 | +); |
| 847 | + |
| 848 | +/** Brazilian Portuguese (Português do Brasil) |
| 849 | + * @author Rafael Vargas |
| 850 | + */ |
| 851 | +$messages['pt-br'] = array( |
| 852 | + 'webfonts' => 'WebFonts', |
| 853 | + 'webfonts-desc' => 'Incorporar as fontes nas páginas', |
| 854 | + 'webfonts-load' => 'Selecione a fonte', |
| 855 | + 'webfonts-reset' => 'Restaurar', |
| 856 | + 'webfonts-enable-preference' => 'Habilitar incorporação de fontes (WebFonts)', |
| 857 | + 'webfonts-menu-tooltip' => 'Selecione uma fonte para a página', |
| 858 | + 'webfonts-help' => 'Ajuda', |
| 859 | +); |
| 860 | + |
| 861 | +/** Romanian (Română) |
| 862 | + * @author Firilacroco |
| 863 | + * @author Minisarm |
| 864 | + */ |
| 865 | +$messages['ro'] = array( |
| 866 | + 'webfonts-reset' => 'Resetează', |
| 867 | + 'webfonts-enable-preference' => 'Activează încorporarea fonturilor (WebFonts)', |
| 868 | +); |
| 869 | + |
| 870 | +/** Tarandíne (Tarandíne) |
| 871 | + * @author Joetaras |
| 872 | + */ |
| 873 | +$messages['roa-tara'] = array( |
| 874 | + 'webfonts' => 'WebFonts', |
| 875 | + 'webfonts-desc' => "'Ngapsule le font jndr'à pàgene", |
| 876 | + 'webfonts-load' => "Scacchie 'u font", |
| 877 | + 'webfonts-reset' => 'Azzere', |
| 878 | + 'webfonts-enable-preference' => "Abbilite 'u 'ngapsulamende de le font (WebFonts)", |
| 879 | + 'webfonts-menu-tooltip' => "Scacchie 'nu font pa pàgene", |
| 880 | + 'webfonts-help' => 'Ajute', |
| 881 | +); |
| 882 | + |
| 883 | +/** Russian (Русский) |
| 884 | + * @author Eugrus |
| 885 | + * @author Lockal |
| 886 | + * @author Александр Сигачёв |
| 887 | + */ |
| 888 | +$messages['ru'] = array( |
| 889 | + 'webfonts' => 'WebFonts', |
| 890 | + 'webfonts-desc' => 'Позволяет встраивать шрифты на страницы', |
| 891 | + 'webfonts-load' => 'Выбрать шрифт', |
| 892 | + 'webfonts-reset' => 'Сбросить', |
| 893 | + 'webfonts-enable-preference' => 'Включить внедрение шрифтов (WebFonts)', |
| 894 | + 'webfonts-menu-tooltip' => 'Выберите шрифт для страницы', |
| 895 | + 'webfonts-help' => 'Справка', |
| 896 | + 'webfonts-preview-intro' => 'Эта страница поможет просмотреть шрифты, доступные в расширение WebFonts. При необходимости их можно будет загрузить и установить на своём компьютере.', |
| 897 | + 'webfonts-preview-title' => 'Просмотр шрифтов', |
| 898 | + 'webfonts-preview-download' => 'Загрузить этот шрифт', |
| 899 | + 'webfonts-preview-sampletext' => 'В чащах юга жил-был цитрус... — да, но фальшивый экземпляръ! The quick brown fox jumps over the lazy dog.', |
| 900 | + 'webfonts-preview-installing-fonts-title' => 'Установка шрифтов', |
| 901 | + 'webfonts-preview-installing-fonts-text' => 'Вы можете загрузить шрифт с помощью приведённой ниже ссылки «{{int:webfonts-preview-download}}». Чтобы установить загруженный шрифт на вашем компьютере, пожалуйста, обратитесь [//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts к данной документации].', |
| 902 | +); |
| 903 | + |
| 904 | +/** Sanskrit (संस्कृतम्) |
| 905 | + * @author Ansumang |
| 906 | + * @author Bhawani Gautam |
| 907 | + */ |
| 908 | +$messages['sa'] = array( |
| 909 | + 'webfonts' => 'वेब फॉण्ट्स', |
| 910 | + 'webfonts-desc' => 'पृष्ठेषु वर्णानि (fonts) स्थापयतु', |
| 911 | + 'webfonts-load' => 'वर्णानि चयनं करोतु', |
| 912 | + 'webfonts-reset' => 'पुनर्स्थापयतु', |
| 913 | + 'webfonts-enable-preference' => 'वर्णस्थापना (वेबफ़ॉन्ट) सक्रियं करोतु', |
| 914 | + 'webfonts-help' => 'साहाय्यम्', |
| 915 | +); |
| 916 | + |
| 917 | +/** Sicilian (Sicilianu) |
| 918 | + * @author Aushulz |
| 919 | + */ |
| 920 | +$messages['scn'] = array( |
| 921 | + 'webfonts-help' => 'Aiutu', |
| 922 | +); |
| 923 | + |
| 924 | +/** Sinhala (සිංහල) |
| 925 | + * @author පසිඳු කාවින්ද |
| 926 | + */ |
| 927 | +$messages['si'] = array( |
| 928 | + 'webfonts' => 'ජාලක්ෂර', |
| 929 | + 'webfonts-desc' => 'පිටු මත එබ්බවූ අක්ෂර', |
| 930 | + 'webfonts-load' => 'අක්ෂරය තෝරන්න', |
| 931 | + 'webfonts-reset' => 'ප්රත්යාරම්භ කරන්න', |
| 932 | + 'webfonts-enable-preference' => 'අක්ෂර එබ්බවීම සක්රිය කරන්න (ජලාක්ෂර)', |
| 933 | + 'webfonts-menu-tooltip' => 'පිටුව සඳහා අක්ෂරයක් තෝරන්න', |
| 934 | + 'webfonts-help' => 'උදව්', |
| 935 | +); |
| 936 | + |
| 937 | +/** Slovenian (Slovenščina) |
| 938 | + * @author Dbc334 |
| 939 | + */ |
| 940 | +$messages['sl'] = array( |
| 941 | + 'webfonts' => 'SpletnePisave', |
| 942 | + 'webfonts-desc' => 'Vdelaj pisave na strani', |
| 943 | + 'webfonts-load' => 'Izberite pisavo', |
| 944 | + 'webfonts-reset' => 'Ponastavi', |
| 945 | + 'webfonts-enable-preference' => 'Omogoči vdelavo pisav (SpletnePisave)', |
| 946 | + 'webfonts-menu-tooltip' => 'Izberite pisavo strani', |
| 947 | + 'webfonts-help' => 'Pomoč', |
| 948 | + 'webfonts-preview-title' => 'Predogled pisav', |
| 949 | + 'webfonts-preview-download' => 'Prenesi', |
| 950 | + 'webfonts-preview-installing-fonts-title' => 'Nameščanje pisav', |
| 951 | +); |
| 952 | + |
| 953 | +/** Serbian (Cyrillic script) (Српски (ћирилица)) |
| 954 | + * @author Rancher |
| 955 | + */ |
| 956 | +$messages['sr-ec'] = array( |
| 957 | + 'webfonts' => 'Веб фонтови', |
| 958 | + 'webfonts-desc' => 'Угради фонтове на страницама', |
| 959 | + 'webfonts-load' => 'Изабери фонт', |
| 960 | + 'webfonts-reset' => 'Поништи', |
| 961 | + 'webfonts-enable-preference' => 'Омогући уграђивање фонта (WebFonts)', |
| 962 | + 'webfonts-menu-tooltip' => 'Изаберите фонт за страницу', |
| 963 | + 'webfonts-help' => 'Помоћ', |
| 964 | +); |
| 965 | + |
| 966 | +/** Serbian (Latin script) (Srpski (latinica)) */ |
| 967 | +$messages['sr-el'] = array( |
| 968 | + 'webfonts' => 'Veb fontovi', |
| 969 | + 'webfonts-desc' => 'Ugradi fontove na stranicama', |
| 970 | + 'webfonts-load' => 'Izaberi font', |
| 971 | +); |
| 972 | + |
| 973 | +/** Swedish (Svenska) |
| 974 | + * @author WikiPhoenix |
| 975 | + */ |
| 976 | +$messages['sv'] = array( |
| 977 | + 'webfonts' => 'WebFonts', |
| 978 | + 'webfonts-desc' => 'Bäddar in typsnitt i sidor', |
| 979 | + 'webfonts-load' => 'Välj typsnitt', |
| 980 | + 'webfonts-reset' => 'Återställ', |
| 981 | + 'webfonts-enable-preference' => 'Aktivera typsnittsinbäddning (WebFonts)', |
| 982 | + 'webfonts-menu-tooltip' => 'Välj ett typsnitt för sidan', |
| 983 | + 'webfonts-help' => 'Hjälp', |
| 984 | +); |
| 985 | + |
| 986 | +/** Tamil (தமிழ்) |
| 987 | + * @author Logicwiki |
| 988 | + * @author Sodabottle |
| 989 | + */ |
| 990 | +$messages['ta'] = array( |
| 991 | + 'webfonts' => 'இணைய எழுத்துருக்கள்', |
| 992 | + 'webfonts-desc' => 'பக்கங்களில் எழுத்துருக்களை செயலாக்க', |
| 993 | + 'webfonts-load' => 'எழுத்துரு மாற்ற', |
| 994 | + 'webfonts-reset' => 'இயல்பு எழுத்துரு', |
| 995 | + 'webfonts-enable-preference' => 'எழுத்துரு புதைத்தல் (இணைய எழுத்துருக்களை) பயன்படுத்துக', |
| 996 | + 'webfonts-menu-tooltip' => 'பக்கத்திற்கான எழுத்துருவை தேர்வு செய்க', |
| 997 | + 'webfonts-help' => 'உதவி', |
| 998 | +); |
| 999 | + |
| 1000 | +/** Telugu (తెలుగు) |
| 1001 | + * @author Veeven |
| 1002 | + */ |
| 1003 | +$messages['te'] = array( |
| 1004 | + 'webfonts-help' => 'సహాయం', |
| 1005 | +); |
| 1006 | + |
| 1007 | +/** Tagalog (Tagalog) |
| 1008 | + * @author AnakngAraw |
| 1009 | + */ |
| 1010 | +$messages['tl'] = array( |
| 1011 | + 'webfonts' => 'WebFonts', |
| 1012 | + 'webfonts-desc' => 'Magbaon ng mga estilo ng titik sa mga pahina', |
| 1013 | + 'webfonts-load' => 'Pumili ng estilo ng titik', |
| 1014 | +); |
| 1015 | + |
| 1016 | +/** Turkish (Türkçe) |
| 1017 | + * @author Emperyan |
| 1018 | + */ |
| 1019 | +$messages['tr'] = array( |
| 1020 | + 'webfonts-load' => 'Yazı tipi seçin', |
| 1021 | + 'webfonts-reset' => 'Sıfırla', |
| 1022 | +); |
| 1023 | + |
| 1024 | +/** Ukrainian (Українська) |
| 1025 | + * @author A1 |
| 1026 | + * @author Microcell |
| 1027 | + * @author Тест |
| 1028 | + */ |
| 1029 | +$messages['uk'] = array( |
| 1030 | + 'webfonts' => 'WebFonts', |
| 1031 | + 'webfonts-desc' => 'Дозволяє вбудовувати шрифти у сторінки', |
| 1032 | + 'webfonts-load' => 'Обрати шрифт', |
| 1033 | + 'webfonts-reset' => 'Скинути', |
| 1034 | + 'webfonts-menu-tooltip' => 'Виберіть шрифт для сторінки', |
| 1035 | + 'webfonts-help' => 'Допомога', |
| 1036 | + 'webfonts-preview-download' => 'Завантажити цей шрифт', |
| 1037 | +); |
| 1038 | + |
| 1039 | +/** Veps (Vepsän kel') |
| 1040 | + * @author Игорь Бродский |
| 1041 | + */ |
| 1042 | +$messages['vep'] = array( |
| 1043 | + 'webfonts' => 'WebFonts', |
| 1044 | + 'webfonts-load' => 'Valiče šrift', |
| 1045 | + 'webfonts-menu-tooltip' => 'Valiče šrift lehtpolen täht', |
| 1046 | + 'webfonts-help' => 'Abu', |
| 1047 | +); |
| 1048 | + |
| 1049 | +/** Vietnamese (Tiếng Việt) |
| 1050 | + * @author Minh Nguyen |
| 1051 | + * @author Vinhtantran |
| 1052 | + */ |
| 1053 | +$messages['vi'] = array( |
| 1054 | + 'webfonts' => 'Phông chữ Web', |
| 1055 | + 'webfonts-desc' => 'Nhúng phông chữ vào các trang', |
| 1056 | + 'webfonts-load' => 'Chọn phông chữ', |
| 1057 | + 'webfonts-reset' => 'Mặc định lại', |
| 1058 | + 'webfonts-enable-preference' => 'Bật các phông chữ được nhúng vào (WebFonts)', |
| 1059 | + 'webfonts-menu-tooltip' => 'Chọn phông chữ để sử dụng trong trang', |
| 1060 | + 'webfonts-help' => 'Trợ giúp', |
| 1061 | +); |
| 1062 | + |
| 1063 | +/** Yiddish (ייִדיש) |
| 1064 | + * @author Imre |
| 1065 | + */ |
| 1066 | +$messages['yi'] = array( |
| 1067 | + 'webfonts-help' => 'הילף', |
| 1068 | +); |
| 1069 | + |
| 1070 | +/** Simplified Chinese (中文(简体)) |
| 1071 | + * @author Anakmalaysia |
| 1072 | + * @author Hzy980512 |
| 1073 | + * @author Liangent |
| 1074 | + */ |
| 1075 | +$messages['zh-hans'] = array( |
| 1076 | + 'webfonts' => 'WebFonts', |
| 1077 | + 'webfonts-desc' => '在页面中嵌入字体', |
| 1078 | + 'webfonts-load' => '选择字体', |
| 1079 | + 'webfonts-reset' => '重置', |
| 1080 | + 'webfonts-enable-preference' => '启用字体嵌入(WebFonts)', |
| 1081 | + 'webfonts-menu-tooltip' => '为本页选择字体', |
| 1082 | + 'webfonts-help' => '帮助', |
| 1083 | + 'webfonts-preview-intro' => '本页面可以帮助您预览在WebFonts扩展可用的字体,并可选下载并安装字体。', |
| 1084 | + 'webfonts-preview-title' => '预览字体', |
| 1085 | + 'webfonts-preview-download' => '下载', |
| 1086 | + 'webfonts-preview-sampletext' => '灰狐狸快速地从那条笨狗的头上跳过', |
| 1087 | + 'webfonts-preview-installing-fonts-title' => '安装字体', |
| 1088 | + 'webfonts-preview-installing-fonts-text' => '您可以使用上面的"{{int:webfonts-preview-download}}"链接下载字体。要安装在您电脑上的字体,请参阅[//www.mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts 这篇文章].', |
| 1089 | +); |
| 1090 | + |
| 1091 | +/** Traditional Chinese (中文(繁體)) |
| 1092 | + * @author Anakmalaysia |
| 1093 | + * @author Waihorace |
| 1094 | + */ |
| 1095 | +$messages['zh-hant'] = array( |
| 1096 | + 'webfonts' => 'WebFonts', |
| 1097 | + 'webfonts-desc' => '在頁面中嵌入字體', |
| 1098 | + 'webfonts-load' => '選擇字體', |
| 1099 | + 'webfonts-reset' => '重置', |
| 1100 | + 'webfonts-enable-preference' => '啟用字體嵌入(WebFonts)', |
| 1101 | + 'webfonts-menu-tooltip' => '為本頁選擇字體', |
| 1102 | + 'webfonts-help' => '幫助', |
| 1103 | + 'webfonts-preview-intro' => '本頁面可以幫助您預覽在WebFonts擴展可用的字體,並可選下載並安裝字體。', |
| 1104 | + 'webfonts-preview-title' => '預覽字體', |
| 1105 | + 'webfonts-preview-download' => '下載', |
| 1106 | + 'webfonts-preview-sampletext' => '平雪迎骨水直', |
| 1107 | + 'webfonts-preview-installing-fonts-title' => '安裝字體', |
| 1108 | + 'webfonts-preview-installing-fonts-text' => '您可以使用上面給出的{{int:webfonts-preview-download}}連結下載字體。要安裝在您的電腦上下載的字體,請參閱[//mediawiki.org/wiki/Special:MyLanguage/Help:How_to_install_fonts 此文檔]。', |
| 1109 | +); |
| 1110 | + |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 1111 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.php |
— | — | @@ -0,0 +1,87 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Dynamic Font Embedding MediaWiki extension |
| 5 | + * |
| 6 | + * To install it put this file in the extensions directory |
| 7 | + * To activate the extension, include it from your LocalSettings.php |
| 8 | + * with: require("$IP/extensions/WebFonts.php"); |
| 9 | + * |
| 10 | + * @file |
| 11 | + * @ingroup Extensions |
| 12 | + * @author Santhosh Thottingal, <santhosh.thottingal@gmail.com> |
| 13 | + * @copyright © 2011 Santhosh Thottingal http://thottingal.in |
| 14 | + * @licence GNU General Public Licence 3.0 or later |
| 15 | + */ |
| 16 | + |
| 17 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 18 | + echo( "This file is an extension to the MediaWiki software and cannot be used standalone.\n" ); |
| 19 | + die( -1 ); |
| 20 | +} |
| 21 | + |
| 22 | +$wgExtensionCredits['parserhook'][] = array( |
| 23 | + 'path' => __FILE__, |
| 24 | + 'name' => 'WebFonts', |
| 25 | + 'version' => '1.0', |
| 26 | + 'author' => array( 'Santhosh Thottingal', 'Niklas Laxström' ), |
| 27 | + 'url' => 'https://www.mediawiki.org/wiki/Extension:WebFonts', |
| 28 | + 'descriptionmsg' => 'webfonts-desc', |
| 29 | +); |
| 30 | + |
| 31 | +$dir = dirname( __FILE__ ); |
| 32 | + |
| 33 | +// Internationalization |
| 34 | +$wgExtensionMessagesFiles['WebFonts'] = "$dir/WebFonts.i18n.php"; |
| 35 | +$wgExtensionMessagesFiles['WebFontsAlias'] = "$dir/WebFonts.alias.php"; |
| 36 | + |
| 37 | +// Register auto load for the page class |
| 38 | +$wgAutoloadClasses['WebFontsHooks'] = "$dir/WebFonts.hooks.php"; |
| 39 | +$wgAutoloadClasses['SpecialWebFonts'] = "$dir/SpecialWebFonts.php"; |
| 40 | + |
| 41 | +$wgHooks['BeforePageDisplay'][] = 'WebFontsHooks::addModules'; |
| 42 | +$wgHooks['GetPreferences'][] = 'WebFontsHooks::addPreference'; |
| 43 | +$wgHooks['UserGetDefaultOptions'][] = 'WebFontsHooks::addDefaultOptions'; |
| 44 | +$wgHooks['ResourceLoaderGetConfigVars'][] = 'WebFontsHooks::addConfig'; |
| 45 | + |
| 46 | +$wgWebFontsEnabledByDefault = true; |
| 47 | + |
| 48 | +$wgSpecialPages['WebFonts'] = 'SpecialWebFonts'; |
| 49 | +$wgSpecialPageGroups['WebFonts'] = 'wiki'; |
| 50 | + |
| 51 | +$wgResourceModules['ext.webfonts.init'] = array( |
| 52 | + 'scripts' => 'resources/ext.webfonts.init.js', |
| 53 | + 'localBasePath' => $dir, |
| 54 | + 'remoteExtPath' => 'WebFonts', |
| 55 | + 'dependencies' => 'ext.webfonts.core', |
| 56 | + 'position' => 'top', |
| 57 | +); |
| 58 | + |
| 59 | +$wgResourceModules['ext.webfonts.core'] = array( |
| 60 | + 'scripts' => array( 'resources/ext.webfonts.js', 'resources/ext.webfonts.fontlist.js' ), |
| 61 | + 'styles' => 'resources/ext.webfonts.css', |
| 62 | + 'skinStyles' => array( |
| 63 | + 'modern' => 'resources/ext.webfonts.modern.css', |
| 64 | + 'monobook' => 'resources/ext.webfonts.monobook.css', |
| 65 | + ), |
| 66 | + 'localBasePath' => $dir, |
| 67 | + 'remoteExtPath' => 'WebFonts', |
| 68 | + 'messages' => array( |
| 69 | + 'webfonts-load', |
| 70 | + 'webfonts-reset', |
| 71 | + 'webfonts-menu-tooltip', |
| 72 | + 'webfonts-help', |
| 73 | + ), |
| 74 | + 'dependencies' => array( |
| 75 | + 'jquery.cookie', |
| 76 | + 'mediawiki.util', |
| 77 | + ), |
| 78 | + 'position' => 'top', |
| 79 | +); |
| 80 | + |
| 81 | +$wgResourceModules['ext.webfonts.preview'] = array( |
| 82 | + 'scripts' => 'resources/ext.webfonts.preview.js', |
| 83 | + 'styles' => 'resources/ext.webfonts.preview.css', |
| 84 | + 'localBasePath' => $dir, |
| 85 | + 'remoteExtPath' => 'WebFonts', |
| 86 | + 'dependencies' => 'ext.webfonts.core', |
| 87 | + 'position' => 'top', |
| 88 | +); |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/WebFonts.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 89 | + native |
Index: branches/wmf/1.18wmf1/extensions/WebFonts/SpecialWebFonts.php |
— | — | @@ -0,0 +1,72 @@ |
| 2 | +<?php |
| 3 | +/** |
| 4 | + * Contains logic for special page Special:WebFonts |
| 5 | + * |
| 6 | + * @file |
| 7 | + * @author Santhosh Thottingal |
| 8 | + * @copyright Copyright © 2012 Santhosh Thottingal |
| 9 | + * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later |
| 10 | + */ |
| 11 | + |
| 12 | +class SpecialWebFonts extends SpecialPage { |
| 13 | + public function __construct() { |
| 14 | + parent::__construct( 'WebFonts' ); |
| 15 | + } |
| 16 | + |
| 17 | + public function execute( $params ) { |
| 18 | + global $wgOut, $wgLang; |
| 19 | + $this->out = $wgOut; |
| 20 | + $this->lang = $wgLang->getCode(); |
| 21 | + if ( isset( $params ) ) { |
| 22 | + $this->lang = $params; |
| 23 | + } |
| 24 | + $wgOut->addModules( 'ext.webfonts.preview' ); |
| 25 | + $this->setHeaders(); |
| 26 | + $this->out->setPageTitle( wfMsg( 'webfonts' ) ); |
| 27 | + $this->out->addWikiMsg( 'webfonts-preview-intro' ); |
| 28 | + $this->showPreviewForm(); |
| 29 | + } |
| 30 | + |
| 31 | + protected function showPreviewForm() { |
| 32 | + $this->out->wrapWikiMsg( '==$1==', 'webfonts-preview-title' ) ; |
| 33 | + $this->out->addHtml( $this->showToolbar() ); |
| 34 | + $editArea = Html::Element( 'div', array( 'id' => 'webfonts-preview-area' , 'contenteditable' => 'true' ) , |
| 35 | + wfMsg( 'webfonts-preview-sampletext' ) ) ; |
| 36 | + $this->out->addHtml( $editArea ); |
| 37 | + $this->out->wrapWikiMsg( '==$1==', 'webfonts-preview-installing-fonts-title' ) ; |
| 38 | + $this->out->addWikiMsg( 'webfonts-preview-installing-fonts-text' ); |
| 39 | + } |
| 40 | + |
| 41 | + protected function showToolbar() { |
| 42 | + $langSelector = Xml::languageSelector( $this->lang ); |
| 43 | + |
| 44 | + $fontSelector = new XmlSelect(); |
| 45 | + $fontSelector->setAttribute( 'id', 'webfonts-font-chooser' ); |
| 46 | + |
| 47 | + $sizeSelector = new XmlSelect(); |
| 48 | + $sizeSelector->setAttribute( 'id', 'webfonts-size-chooser' ); |
| 49 | + for ( $size = 8; $size <= 28; $size += 2 ) { |
| 50 | + $sizeSelector->addOption( $size , $size ); |
| 51 | + } |
| 52 | + $sizeSelector->setDefault( 16 ); |
| 53 | + |
| 54 | + $bold = Html::Element( 'button', array( 'id' => 'webfonts-preview-bold' ) , 'B' ); |
| 55 | + |
| 56 | + $italic = Html::Element( 'button', array( 'id' => 'webfonts-preview-italic' ) , 'I' ); |
| 57 | + |
| 58 | + $underline = Html::Element( 'button', array( 'id' => 'webfonts-preview-underline' ) , 'U' ); |
| 59 | + |
| 60 | + $download = Html::Element( 'a', array( 'id' => 'webfonts-preview-download', 'href' => '#' ) , |
| 61 | + wfMsg( 'webfonts-preview-download' ) ); |
| 62 | + |
| 63 | + return Html::openElement( 'div', array( 'id' => 'webfonts-preview-toolbar' ) ) |
| 64 | + . $langSelector[1] |
| 65 | + . $fontSelector->getHtml() |
| 66 | + . $sizeSelector->getHtml() |
| 67 | + . $bold |
| 68 | + . $italic |
| 69 | + . $underline |
| 70 | + . $download |
| 71 | + . Html::closeElement( 'div' ); |
| 72 | + } |
| 73 | +} |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts/SpecialWebFonts.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 74 | + native |
Property changes on: branches/wmf/1.18wmf1/extensions/WebFonts |
___________________________________________________________________ |
Added: svn:ignore |
2 | 75 | + .buildpath |
.settings |
.project |