16825 |
efrain |
1 |
<!DOCTYPE html>
|
|
|
2 |
<!--
|
|
|
3 |
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
|
4 |
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
5 |
-->
|
|
|
6 |
<html lang="en">
|
|
|
7 |
<head>
|
|
|
8 |
<meta charset="utf-8">
|
|
|
9 |
<title>User Interface Globalization — CKEditor Sample</title>
|
|
|
10 |
<script src="../../ckeditor.js"></script>
|
|
|
11 |
<script src="assets/uilanguages/languages.js"></script>
|
|
|
12 |
<link rel="stylesheet" href="sample.css">
|
|
|
13 |
<meta name="description" content="Try the latest sample of CKEditor 4 and learn more about customizing your WYSIWYG editor with endless possibilities.">
|
|
|
14 |
</head>
|
|
|
15 |
<body>
|
|
|
16 |
<h1 class="samples">
|
|
|
17 |
<a href="index.html">CKEditor Samples</a> » User Interface Languages
|
|
|
18 |
</h1>
|
|
|
19 |
<div class="warning deprecated">
|
|
|
20 |
This sample is not maintained anymore. Check out its <a href="https://ckeditor.com/docs/ckeditor4/latest/examples/uilanguages.html">brand new version in CKEditor Examples</a>.
|
|
|
21 |
</div>
|
|
|
22 |
<div class="description">
|
|
|
23 |
<p>
|
|
|
24 |
This sample shows how to automatically replace <code><textarea></code> elements
|
|
|
25 |
with a CKEditor instance with an option to change the language of its user interface.
|
|
|
26 |
</p>
|
|
|
27 |
<p>
|
|
|
28 |
It pulls the language list from CKEditor <code>_languages.js</code> file that contains the list of supported languages and creates
|
|
|
29 |
a drop-down list that lets the user change the UI language.
|
|
|
30 |
</p>
|
|
|
31 |
<p>
|
|
|
32 |
By default, CKEditor automatically localizes the editor to the language of the user.
|
|
|
33 |
The UI language can be controlled with two configuration options:
|
|
|
34 |
<code><a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-language">language</a></code> and
|
|
|
35 |
<code><a class="samples" href="https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-defaultLanguage">
|
|
|
36 |
defaultLanguage</a></code>. The <code>defaultLanguage</code> setting specifies the
|
|
|
37 |
default CKEditor language to be used when a localization suitable for user's settings is not available.
|
|
|
38 |
</p>
|
|
|
39 |
<p>
|
|
|
40 |
To specify the user interface language that will be used no matter what language is
|
|
|
41 |
specified in user's browser or operating system, set the <code>language</code> property:
|
|
|
42 |
</p>
|
|
|
43 |
<pre class="samples">
|
|
|
44 |
CKEDITOR.replace( '<em>textarea_id</em>', {
|
|
|
45 |
// Load the German interface.
|
|
|
46 |
<strong>language: 'de'</strong>
|
|
|
47 |
});</pre>
|
|
|
48 |
<p>
|
|
|
49 |
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
|
|
|
50 |
the <code><textarea></code> element to be replaced.
|
|
|
51 |
</p>
|
|
|
52 |
</div>
|
|
|
53 |
<form action="sample_posteddata.php" method="post">
|
|
|
54 |
<p>
|
|
|
55 |
Available languages (<span id="count"> </span> languages!):<br>
|
|
|
56 |
<script>
|
|
|
57 |
|
|
|
58 |
document.write( '<select disabled="disabled" id="languages" onchange="createEditor( this.value );">' );
|
|
|
59 |
|
|
|
60 |
// Get the language list from the _languages.js file.
|
|
|
61 |
for ( var i = 0 ; i < window.CKEDITOR_LANGS.length ; i++ ) {
|
|
|
62 |
document.write(
|
|
|
63 |
'<option value="' + window.CKEDITOR_LANGS[i].code + '">' +
|
|
|
64 |
window.CKEDITOR_LANGS[i].name +
|
|
|
65 |
'</option>' );
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
document.write( '</select>' );
|
|
|
69 |
|
|
|
70 |
</script>
|
|
|
71 |
<br>
|
|
|
72 |
<span style="color: #888888">
|
|
|
73 |
(You may see strange characters if your system does not support the selected language)
|
|
|
74 |
</span>
|
|
|
75 |
</p>
|
|
|
76 |
<p>
|
|
|
77 |
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="https://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
|
78 |
<script>
|
|
|
79 |
|
|
|
80 |
// Set the number of languages.
|
|
|
81 |
document.getElementById( 'count' ).innerHTML = window.CKEDITOR_LANGS.length;
|
|
|
82 |
|
|
|
83 |
var editor;
|
|
|
84 |
|
|
|
85 |
function createEditor( languageCode ) {
|
|
|
86 |
if ( editor )
|
|
|
87 |
editor.destroy();
|
|
|
88 |
|
|
|
89 |
// Replace the <textarea id="editor"> with an CKEditor
|
|
|
90 |
// instance, using default configurations.
|
|
|
91 |
editor = CKEDITOR.replace( 'editor1', {
|
|
|
92 |
language: languageCode,
|
|
|
93 |
|
|
|
94 |
on: {
|
|
|
95 |
instanceReady: function() {
|
|
|
96 |
// Wait for the editor to be ready to set
|
|
|
97 |
// the language combo.
|
|
|
98 |
var languages = document.getElementById( 'languages' );
|
|
|
99 |
languages.value = this.langCode;
|
|
|
100 |
languages.disabled = false;
|
|
|
101 |
}
|
|
|
102 |
}
|
|
|
103 |
});
|
|
|
104 |
}
|
|
|
105 |
|
|
|
106 |
// At page startup, load the default language:
|
|
|
107 |
createEditor( '' );
|
|
|
108 |
|
|
|
109 |
</script>
|
|
|
110 |
</p>
|
|
|
111 |
</form>
|
|
|
112 |
<div id="footer">
|
|
|
113 |
<hr>
|
|
|
114 |
<p>
|
|
|
115 |
CKEditor - The text editor for the Internet - <a class="samples" href="https://ckeditor.com/">https://ckeditor.com</a>
|
|
|
116 |
</p>
|
|
|
117 |
<p id="copy">
|
|
|
118 |
Copyright © 2003-2021, <a class="samples" href="https://cksource.com/">CKSource</a> - Frederico
|
|
|
119 |
Knabben. All rights reserved.
|
|
|
120 |
</p>
|
|
|
121 |
</div>
|
|
|
122 |
</body>
|
|
|
123 |
</html>
|