uilanguages.html 4.3 KB

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