Changeset 19833 for trunk/wp-includes/class-wp-editor.php
- Timestamp:
- 02/06/2012 07:13:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-editor.php
r19830 r19833 262 262 263 263 /* 264 translators: These languages show up in the spellchecker drop-down menu, in the order specified, and with the first 265 language listed being the default language. They must be comma-separated and take the format of name=code, where name 266 is the language name (which you may internationalize), and code is a valid ISO 639 language code. Please test the 267 spellchecker with your values. 268 */ 269 $mce_spellchecker_languages = __( 'English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv' ); 270 271 /* 264 272 The following filter allows localization scripts to change the languages displayed in the spellchecker's drop-down menu. 265 273 By default it uses Google's spellchecker API, but can be configured to use PSpell/ASpell if installed on the server. 266 The + sign marks the default language. More information: 267 http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker 274 The + sign marks the default language. More: http://www.tinymce.com/wiki.php/Plugin:spellchecker. 268 275 */ 269 $mce_spellchecker_languages = apply_filters( 'mce_spellchecker_languages', '+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv');276 $mce_spellchecker_languages = apply_filters( 'mce_spellchecker_languages', '+' . $mce_spellchecker_languages ); 270 277 271 278 self::$first_init = array(
Note: See TracChangeset
for help on using the changeset viewer.