-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOC-1020: add option to page that configures whether additional plugi…
…n/theme languages are loaded when bundling.
- Loading branch information
1 parent
a7d31ec
commit 7712558
Showing
3 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[[language_load]] | ||
== `+language_load+` | ||
|
||
// This option configures whether additional plugin/theme languages are loaded. | ||
|
||
// When bundling, plugins that support multiple languages its a good recommended to load the additional language packs in addition. | ||
|
||
*Type:* `+boolean+` | ||
|
||
*Default value:* `+true+` | ||
|
||
=== Example: using `+language_load+` | ||
|
||
[source,js] | ||
---- | ||
tinymce.init({ | ||
selector: 'textarea', // change this value according to your HTML | ||
language_load: true, | ||
}); | ||
---- | ||
|
||
You can find and download languages link:{gettiny}/language-packages/[here]. |