Translate TinyMCE's spellchecker languages. props SergeyBiryukov, fixes #19962.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19833 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
909e20ed27
commit
bcf460d02e
|
@ -260,13 +260,20 @@ final class _WP_Editors {
|
||||||
|
|
||||||
self::$plugins = $plugins;
|
self::$plugins = $plugins;
|
||||||
|
|
||||||
|
/*
|
||||||
|
translators: These languages show up in the spellchecker drop-down menu, in the order specified, and with the first
|
||||||
|
language listed being the default language. They must be comma-separated and take the format of name=code, where name
|
||||||
|
is the language name (which you may internationalize), and code is a valid ISO 639 language code. Please test the
|
||||||
|
spellchecker with your values.
|
||||||
|
*/
|
||||||
|
$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' );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
The following filter allows localization scripts to change the languages displayed in the spellchecker's drop-down menu.
|
The following filter allows localization scripts to change the languages displayed in the spellchecker's drop-down menu.
|
||||||
By default it uses Google's spellchecker API, but can be configured to use PSpell/ASpell if installed on the server.
|
By default it uses Google's spellchecker API, but can be configured to use PSpell/ASpell if installed on the server.
|
||||||
The + sign marks the default language. More information:
|
The + sign marks the default language. More: http://www.tinymce.com/wiki.php/Plugin:spellchecker.
|
||||||
http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/spellchecker
|
|
||||||
*/
|
*/
|
||||||
$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');
|
$mce_spellchecker_languages = apply_filters( 'mce_spellchecker_languages', '+' . $mce_spellchecker_languages );
|
||||||
|
|
||||||
self::$first_init = array(
|
self::$first_init = array(
|
||||||
'mode' => 'exact',
|
'mode' => 'exact',
|
||||||
|
|
Loading…
Reference in New Issue