Index: trunk/extensions/WebFonts/WebFonts.hooks.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | public static function addModules( $out, $skin ) { |
13 | 13 | global $wgUser; |
14 | 14 | |
15 | | - if ( !$wgUser->getOption( 'webfontsDisable' ) ) { |
| 15 | + if ( $wgUser->getOption( 'webfontsEnable' ) ) { |
16 | 16 | $out->addModules( 'webfonts' ); |
17 | 17 | } |
18 | 18 | |
— | — | @@ -31,11 +31,12 @@ |
32 | 32 | } |
33 | 33 | |
34 | 34 | public static function addPreference( $user, &$preferences ) { |
35 | | - // A checkbox in preferences to disable WebFonts |
36 | | - $preferences['webfontsDisable'] = array( |
| 35 | + // A checkbox in preferences to enable WebFonts |
| 36 | + $preferences['webfontsEnable'] = array( |
37 | 37 | 'type' => 'toggle', |
38 | | - 'label-message' => 'webfonts-disable-preference', // a system message |
| 38 | + 'label-message' => 'webfonts-enable-preference', // a system message |
39 | 39 | 'section' => 'rendering/advancedrendering', // under 'Advanced options' section of 'Editing' tab |
| 40 | + 'default' => true |
40 | 41 | ); |
41 | 42 | |
42 | 43 | return true; |
Index: trunk/extensions/WebFonts/WebFonts.i18n.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | 'webfonts-desc' => 'Embed fonts in pages', |
18 | 18 | 'webfonts-load' => 'Select font', |
19 | 19 | 'webfonts-reset' => 'Reset', |
20 | | - 'webfonts-disable-preference' => 'Disable font embedding (WebFonts)', |
| 20 | + 'webfonts-enable-preference' => 'Enable font embedding (WebFonts)', |
21 | 21 | ); |
22 | 22 | |
23 | 23 | /** Message documentation (Message documentation) |
— | — | @@ -256,7 +256,7 @@ |
257 | 257 | 'webfonts-desc' => 'മീഡിയവിക്കി താളുകളില് ഫോണ്ടുകള് എംബെഡ് ചെയ്യുക', |
258 | 258 | 'webfonts-load' => 'ഫോണ്ടുകള്', |
259 | 259 | 'webfonts-reset' => 'പഴയപടിയാക്കുക', |
260 | | - 'webfonts-disable-preference' => 'ഫോണ്ട് എംബെഡ് ചെയ്യൽ (വെബ്ഫോണ്ട്സ്) പ്രവർത്തനരഹിതമാക്കുക', |
| 260 | + 'webfonts-enable-preference' => 'ഫോണ്ട് എംബെഡ് ചെയ്യുക.(വെബ്ഫോണ്ട്സ്)', |
261 | 261 | ); |
262 | 262 | |
263 | 263 | /** Marathi (मराठी) |