]>
git.immae.eu Git - perso/Immae/Projets/packagist/ludivine-ckeditor-component.git/blob - sources/samples/old/assets/uilanguages/languages.js
df6b2dcdf0e4f018bbf86c51cb15275ff341f2fa
2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
6 /* exported CKEDITOR_LANGS */
8 var CKEDITOR_LANGS
= ( function() {
21 'de-ch': 'German (Switzerland)',
24 'en-au': 'English (Australia)',
25 'en-ca': 'English (Canadian)',
26 'en-gb': 'English (United Kingdom)',
35 'fr-ca': 'French (Canada)',
55 nb: 'Norwegian Bokmal',
60 pt: 'Portuguese (Portugal)',
61 'pt-br': 'Portuguese (Brazil)',
68 sr: 'Serbian (Cyrillic)',
69 'sr-latn': 'Serbian (Latin)',
77 zh: 'Chinese Traditional',
78 'zh-cn': 'Chinese Simplified'
83 for ( var code
in CKEDITOR
.lang
.languages
) {
84 langsArray
.push( { code: code
, name: ( langs
[ code
] || code
) } );
87 langsArray
.sort( function( a
, b
) {
88 return ( a
.name
< b
.name
) ? -1 : 1;