aboutsummaryrefslogtreecommitdiff
path: root/sources/plugins/liststyle
diff options
context:
space:
mode:
Diffstat (limited to 'sources/plugins/liststyle')
-rw-r--r--sources/plugins/liststyle/dialogs/liststyle.js189
-rw-r--r--sources/plugins/liststyle/lang/af.js25
-rw-r--r--sources/plugins/liststyle/lang/ar.js25
-rw-r--r--sources/plugins/liststyle/lang/az.js25
-rw-r--r--sources/plugins/liststyle/lang/bg.js25
-rw-r--r--sources/plugins/liststyle/lang/bn.js25
-rw-r--r--sources/plugins/liststyle/lang/bs.js25
-rw-r--r--sources/plugins/liststyle/lang/ca.js25
-rw-r--r--sources/plugins/liststyle/lang/cs.js25
-rw-r--r--sources/plugins/liststyle/lang/cy.js25
-rw-r--r--sources/plugins/liststyle/lang/da.js25
-rw-r--r--sources/plugins/liststyle/lang/de-ch.js25
-rw-r--r--sources/plugins/liststyle/lang/de.js25
-rw-r--r--sources/plugins/liststyle/lang/el.js25
-rw-r--r--sources/plugins/liststyle/lang/en-au.js25
-rw-r--r--sources/plugins/liststyle/lang/en-ca.js25
-rw-r--r--sources/plugins/liststyle/lang/en-gb.js25
-rw-r--r--sources/plugins/liststyle/lang/en.js25
-rw-r--r--sources/plugins/liststyle/lang/eo.js25
-rw-r--r--sources/plugins/liststyle/lang/es.js25
-rw-r--r--sources/plugins/liststyle/lang/et.js25
-rw-r--r--sources/plugins/liststyle/lang/eu.js25
-rw-r--r--sources/plugins/liststyle/lang/fa.js25
-rw-r--r--sources/plugins/liststyle/lang/fi.js25
-rw-r--r--sources/plugins/liststyle/lang/fo.js25
-rw-r--r--sources/plugins/liststyle/lang/fr-ca.js25
-rw-r--r--sources/plugins/liststyle/lang/fr.js25
-rw-r--r--sources/plugins/liststyle/lang/gl.js25
-rw-r--r--sources/plugins/liststyle/lang/gu.js25
-rw-r--r--sources/plugins/liststyle/lang/he.js25
-rw-r--r--sources/plugins/liststyle/lang/hi.js25
-rw-r--r--sources/plugins/liststyle/lang/hr.js25
-rw-r--r--sources/plugins/liststyle/lang/hu.js25
-rw-r--r--sources/plugins/liststyle/lang/id.js25
-rw-r--r--sources/plugins/liststyle/lang/is.js25
-rw-r--r--sources/plugins/liststyle/lang/it.js25
-rw-r--r--sources/plugins/liststyle/lang/ja.js25
-rw-r--r--sources/plugins/liststyle/lang/ka.js25
-rw-r--r--sources/plugins/liststyle/lang/km.js25
-rw-r--r--sources/plugins/liststyle/lang/ko.js25
-rw-r--r--sources/plugins/liststyle/lang/ku.js25
-rw-r--r--sources/plugins/liststyle/lang/lt.js25
-rw-r--r--sources/plugins/liststyle/lang/lv.js25
-rw-r--r--sources/plugins/liststyle/lang/mk.js25
-rw-r--r--sources/plugins/liststyle/lang/mn.js25
-rw-r--r--sources/plugins/liststyle/lang/ms.js25
-rw-r--r--sources/plugins/liststyle/lang/nb.js25
-rw-r--r--sources/plugins/liststyle/lang/nl.js25
-rw-r--r--sources/plugins/liststyle/lang/no.js25
-rw-r--r--sources/plugins/liststyle/lang/oc.js25
-rw-r--r--sources/plugins/liststyle/lang/pl.js25
-rw-r--r--sources/plugins/liststyle/lang/pt-br.js25
-rw-r--r--sources/plugins/liststyle/lang/pt.js25
-rw-r--r--sources/plugins/liststyle/lang/ro.js25
-rw-r--r--sources/plugins/liststyle/lang/ru.js25
-rw-r--r--sources/plugins/liststyle/lang/si.js25
-rw-r--r--sources/plugins/liststyle/lang/sk.js25
-rw-r--r--sources/plugins/liststyle/lang/sl.js25
-rw-r--r--sources/plugins/liststyle/lang/sq.js25
-rw-r--r--sources/plugins/liststyle/lang/sr-latn.js25
-rw-r--r--sources/plugins/liststyle/lang/sr.js25
-rw-r--r--sources/plugins/liststyle/lang/sv.js25
-rw-r--r--sources/plugins/liststyle/lang/th.js25
-rw-r--r--sources/plugins/liststyle/lang/tr.js25
-rw-r--r--sources/plugins/liststyle/lang/tt.js25
-rw-r--r--sources/plugins/liststyle/lang/ug.js25
-rw-r--r--sources/plugins/liststyle/lang/uk.js25
-rw-r--r--sources/plugins/liststyle/lang/vi.js25
-rw-r--r--sources/plugins/liststyle/lang/zh-cn.js25
-rw-r--r--sources/plugins/liststyle/lang/zh.js25
-rw-r--r--sources/plugins/liststyle/plugin.js75
71 files changed, 1989 insertions, 0 deletions
diff --git a/sources/plugins/liststyle/dialogs/liststyle.js b/sources/plugins/liststyle/dialogs/liststyle.js
new file mode 100644
index 0000000..4f8f39b
--- /dev/null
+++ b/sources/plugins/liststyle/dialogs/liststyle.js
@@ -0,0 +1,189 @@
1/**
2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6( function() {
7 function getListElement( editor, listTag ) {
8 var range;
9 try {
10 range = editor.getSelection().getRanges()[ 0 ];
11 } catch ( e ) {
12 return null;
13 }
14
15 range.shrink( CKEDITOR.SHRINK_TEXT );
16 return editor.elementPath( range.getCommonAncestor() ).contains( listTag, 1 );
17 }
18
19 var listItem = function( node ) {
20 return node.type == CKEDITOR.NODE_ELEMENT && node.is( 'li' );
21 };
22
23 var mapListStyle = {
24 'a': 'lower-alpha',
25 'A': 'upper-alpha',
26 'i': 'lower-roman',
27 'I': 'upper-roman',
28 '1': 'decimal',
29 'disc': 'disc',
30 'circle': 'circle',
31 'square': 'square'
32 };
33
34 function listStyle( editor, startupPage ) {
35 var lang = editor.lang.liststyle;
36 if ( startupPage == 'bulletedListStyle' ) {
37 return {
38 title: lang.bulletedTitle,
39 minWidth: 300,
40 minHeight: 50,
41 contents: [ {
42 id: 'info',
43 accessKey: 'I',
44 elements: [ {
45 type: 'select',
46 label: lang.type,
47 id: 'type',
48 align: 'center',
49 style: 'width:150px',
50 items: [
51 [ lang.notset, '' ],
52 [ lang.circle, 'circle' ],
53 [ lang.disc, 'disc' ],
54 [ lang.square, 'square' ]
55 ],
56 setup: function( element ) {
57 var value = element.getStyle( 'list-style-type' ) || mapListStyle[ element.getAttribute( 'type' ) ] || element.getAttribute( 'type' ) || '';
58
59 this.setValue( value );
60 },
61 commit: function( element ) {
62 var value = this.getValue();
63 if ( value )
64 element.setStyle( 'list-style-type', value );
65 else
66 element.removeStyle( 'list-style-type' );
67 }
68 } ]
69 } ],
70 onShow: function() {
71 var editor = this.getParentEditor(),
72 element = getListElement( editor, 'ul' );
73
74 element && this.setupContent( element );
75 },
76 onOk: function() {
77 var editor = this.getParentEditor(),
78 element = getListElement( editor, 'ul' );
79
80 element && this.commitContent( element );
81 }
82 };
83 } else if ( startupPage == 'numberedListStyle' ) {
84
85 var listStyleOptions = [
86 [ lang.notset, '' ],
87 [ lang.lowerRoman, 'lower-roman' ],
88 [ lang.upperRoman, 'upper-roman' ],
89 [ lang.lowerAlpha, 'lower-alpha' ],
90 [ lang.upperAlpha, 'upper-alpha' ],
91 [ lang.decimal, 'decimal' ]
92 ];
93
94 if ( !CKEDITOR.env.ie || CKEDITOR.env.version > 7 ) {
95 listStyleOptions.concat( [
96 [ lang.armenian, 'armenian' ],
97 [ lang.decimalLeadingZero, 'decimal-leading-zero' ],
98 [ lang.georgian, 'georgian' ],
99 [ lang.lowerGreek, 'lower-greek' ]
100 ] );
101 }
102
103 return {
104 title: lang.numberedTitle,
105 minWidth: 300,
106 minHeight: 50,
107 contents: [ {
108 id: 'info',
109 accessKey: 'I',
110 elements: [ {
111 type: 'hbox',
112 widths: [ '25%', '75%' ],
113 children: [ {
114 label: lang.start,
115 type: 'text',
116 id: 'start',
117 validate: CKEDITOR.dialog.validate.integer( lang.validateStartNumber ),
118 setup: function( element ) {
119 // List item start number dominates.
120 var value = element.getFirst( listItem ).getAttribute( 'value' ) || element.getAttribute( 'start' ) || 1;
121 value && this.setValue( value );
122 },
123 commit: function( element ) {
124 var firstItem = element.getFirst( listItem );
125 var oldStart = firstItem.getAttribute( 'value' ) || element.getAttribute( 'start' ) || 1;
126
127 // Force start number on list root.
128 element.getFirst( listItem ).removeAttribute( 'value' );
129 var val = parseInt( this.getValue(), 10 );
130 if ( isNaN( val ) )
131 element.removeAttribute( 'start' );
132 else
133 element.setAttribute( 'start', val );
134
135 // Update consequent list item numbering.
136 var nextItem = firstItem,
137 conseq = oldStart,
138 startNumber = isNaN( val ) ? 1 : val;
139 while ( ( nextItem = nextItem.getNext( listItem ) ) && conseq++ ) {
140 if ( nextItem.getAttribute( 'value' ) == conseq )
141 nextItem.setAttribute( 'value', startNumber + conseq - oldStart );
142 }
143 }
144 },
145 {
146 type: 'select',
147 label: lang.type,
148 id: 'type',
149 style: 'width: 100%;',
150 items: listStyleOptions,
151 setup: function( element ) {
152 var value = element.getStyle( 'list-style-type' ) || mapListStyle[ element.getAttribute( 'type' ) ] || element.getAttribute( 'type' ) || '';
153
154 this.setValue( value );
155 },
156 commit: function( element ) {
157 var value = this.getValue();
158 if ( value )
159 element.setStyle( 'list-style-type', value );
160 else
161 element.removeStyle( 'list-style-type' );
162 }
163 } ]
164 } ]
165 } ],
166 onShow: function() {
167 var editor = this.getParentEditor(),
168 element = getListElement( editor, 'ol' );
169
170 element && this.setupContent( element );
171 },
172 onOk: function() {
173 var editor = this.getParentEditor(),
174 element = getListElement( editor, 'ol' );
175
176 element && this.commitContent( element );
177 }
178 };
179 }
180 }
181
182 CKEDITOR.dialog.add( 'numberedListStyle', function( editor ) {
183 return listStyle( editor, 'numberedListStyle' );
184 } );
185
186 CKEDITOR.dialog.add( 'bulletedListStyle', function( editor ) {
187 return listStyle( editor, 'bulletedListStyle' );
188 } );
189} )();
diff --git a/sources/plugins/liststyle/lang/af.js b/sources/plugins/liststyle/lang/af.js
new file mode 100644
index 0000000..71ba760
--- /dev/null
+++ b/sources/plugins/liststyle/lang/af.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'af', {
6 armenian: 'Armeense nommering',
7 bulletedTitle: 'Eienskappe van ongenommerde lys',
8 circle: 'Sirkel',
9 decimal: 'Desimale syfers (1, 2, 3, ens.)',
10 decimalLeadingZero: 'Desimale syfers met voorloopnul (01, 02, 03, ens.)',
11 disc: 'Skyf',
12 georgian: 'Georgiese nommering (an, ban, gan, ens.)',
13 lowerAlpha: 'Kleinletters (a, b, c, d, e, ens.)',
14 lowerGreek: 'Griekse kleinletters (alpha, beta, gamma, ens.)',
15 lowerRoman: 'Romeinse kleinletters (i, ii, iii, iv, v, ens.)',
16 none: 'Geen',
17 notset: '<nie ingestel nie>',
18 numberedTitle: 'Eienskappe van genommerde lys',
19 square: 'Vierkant',
20 start: 'Begin',
21 type: 'Tipe',
22 upperAlpha: 'Hoofletters (A, B, C, D, E, ens.)',
23 upperRoman: 'Romeinse hoofletters (I, II, III, IV, V, ens.)',
24 validateStartNumber: 'Beginnommer van lys moet \'n heelgetal wees.'
25} );
diff --git a/sources/plugins/liststyle/lang/ar.js b/sources/plugins/liststyle/lang/ar.js
new file mode 100644
index 0000000..7d961df
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ar.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ar', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/az.js b/sources/plugins/liststyle/lang/az.js
new file mode 100644
index 0000000..73fc927
--- /dev/null
+++ b/sources/plugins/liststyle/lang/az.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'az', {
6 armenian: 'Erməni nömrələmə',
7 bulletedTitle: 'Markerlənmiş siyahının xüsusiyyətləri',
8 circle: 'Dəirəcik',
9 decimal: 'Rəqəm (1, 2, 3 və s.)',
10 decimalLeadingZero: 'Aparıcı sıfır olan rəqəm (01, 02, 03 və s.)',
11 disc: 'Disk',
12 georgian: 'Gürcü nömrələmə (an, ban, gan, və s.)',
13 lowerAlpha: 'Kiçik hərflər (a, b, c, d, e və s.)',
14 lowerGreek: 'Kiçik Yunan hərfləri (alfa, beta, qamma və s.)',
15 lowerRoman: 'Rum rəqəmləri (i, ii, iii, iv, v və s.)',
16 none: 'Yoxdur',
17 notset: '<seçilməmiş>',
18 numberedTitle: 'Nömrəli siyahının xüsusiyyətləri',
19 square: 'Dördbucaq',
20 start: 'Başlanğıc',
21 type: 'Növ',
22 upperAlpha: 'Böyük hərflər (a, b, c, d, e və s.)',
23 upperRoman: 'Böyük Rum rəqəmləri (I, II, III, IV, V və s.)',
24 validateStartNumber: 'Siyahının başlanğıc nömrəsi tam və müsbət rəqəm olmalıdır.'
25} );
diff --git a/sources/plugins/liststyle/lang/bg.js b/sources/plugins/liststyle/lang/bg.js
new file mode 100644
index 0000000..a119fd4
--- /dev/null
+++ b/sources/plugins/liststyle/lang/bg.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'bg', {
6 armenian: 'Арменско номериране',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Кръг',
9 decimal: 'Числа (1, 2, 3 и др.)',
10 decimalLeadingZero: 'Числа с водеща нула (01, 02, 03 и т.н.)',
11 disc: 'Диск',
12 georgian: 'Грузинско номериране (an, ban, gan, и т.н.)',
13 lowerAlpha: 'Малки букви (а, б, в, г, д и т.н.)',
14 lowerGreek: 'Малки гръцки букви (алфа, бета, гама и т.н.)',
15 lowerRoman: 'Малки римски числа (i, ii, iii, iv, v и т.н.)',
16 none: 'Няма',
17 notset: '<не е указано>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Квадрат',
20 start: 'Старт',
21 type: 'Тип',
22 upperAlpha: 'Големи букви (А, Б, В, Г, Д и т.н.)',
23 upperRoman: 'Големи римски числа (I, II, III, IV, V и т.н.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/bn.js b/sources/plugins/liststyle/lang/bn.js
new file mode 100644
index 0000000..f1b7bf3
--- /dev/null
+++ b/sources/plugins/liststyle/lang/bn.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'bn', {
6 armenian: 'আর্মেনিয়ান সংখ্যাক্রমে বিন্যাস',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/bs.js b/sources/plugins/liststyle/lang/bs.js
new file mode 100644
index 0000000..163d1fb
--- /dev/null
+++ b/sources/plugins/liststyle/lang/bs.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'bs', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/ca.js b/sources/plugins/liststyle/lang/ca.js
new file mode 100644
index 0000000..8006ff8
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ca.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ca', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/cs.js b/sources/plugins/liststyle/lang/cs.js
new file mode 100644
index 0000000..c1e9a07
--- /dev/null
+++ b/sources/plugins/liststyle/lang/cs.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'cs', {
6 armenian: 'Arménské',
7 bulletedTitle: 'Vlastnosti odrážek',
8 circle: 'Kroužky',
9 decimal: 'Arabská čísla (1, 2, 3, atd.)',
10 decimalLeadingZero: 'Arabská čísla uvozená nulou (01, 02, 03, atd.)',
11 disc: 'Kolečka',
12 georgian: 'Gruzínské (an, ban, gan, atd.)',
13 lowerAlpha: 'Malá latinka (a, b, c, d, e, atd.)',
14 lowerGreek: 'Malé řecké (alpha, beta, gamma, atd.)',
15 lowerRoman: 'Malé římské (i, ii, iii, iv, v, atd.)',
16 none: 'Nic',
17 notset: '<nenastaveno>',
18 numberedTitle: 'Vlastnosti číslování',
19 square: 'Čtverce',
20 start: 'Počátek',
21 type: 'Typ',
22 upperAlpha: 'Velká latinka (A, B, C, D, E, atd.)',
23 upperRoman: 'Velké římské (I, II, III, IV, V, atd.)',
24 validateStartNumber: 'Číslování musí začínat celým číslem.'
25} );
diff --git a/sources/plugins/liststyle/lang/cy.js b/sources/plugins/liststyle/lang/cy.js
new file mode 100644
index 0000000..97902b5
--- /dev/null
+++ b/sources/plugins/liststyle/lang/cy.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'cy', {
6 armenian: 'Rhifo Armeneg',
7 bulletedTitle: 'Priodweddau Rhestr Fwled',
8 circle: 'Cylch',
9 decimal: 'Degol (1, 2, 3, ayyb.)',
10 decimalLeadingZero: 'Degol â sero arweiniol (01, 02, 03, ayyb.)',
11 disc: 'Disg',
12 georgian: 'Rhifau Sioraidd (an, ban, gan, ayyb.)',
13 lowerAlpha: 'Alffa Is (a, b, c, d, e, ayyb.)',
14 lowerGreek: 'Groeg Is (alpha, beta, gamma, ayyb.)',
15 lowerRoman: 'Rhufeinig Is (i, ii, iii, iv, v, ayyb.)',
16 none: 'Dim',
17 notset: '<heb osod>',
18 numberedTitle: 'Priodweddau Rhestr Rifol',
19 square: 'Sgwâr',
20 start: 'Dechrau',
21 type: 'Math',
22 upperAlpha: 'Alffa Uwch (A, B, C, D, E, ayyb.)',
23 upperRoman: 'Rhufeinig Uwch (I, II, III, IV, V, ayyb.)',
24 validateStartNumber: 'Rhaid bod y rhif cychwynnol yn gyfanrif.'
25} );
diff --git a/sources/plugins/liststyle/lang/da.js b/sources/plugins/liststyle/lang/da.js
new file mode 100644
index 0000000..27c47b5
--- /dev/null
+++ b/sources/plugins/liststyle/lang/da.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'da', {
6 armenian: 'Armensk nummering',
7 bulletedTitle: 'Værdier for cirkelpunktopstilling',
8 circle: 'Cirkel',
9 decimal: 'Decimal (1, 2, 3, osv.)',
10 decimalLeadingZero: 'Decimaler med 0 først (01, 02, 03, etc.)',
11 disc: 'Værdier for diskpunktopstilling',
12 georgian: 'Georgiansk nummering (an, ban, gan, etc.)',
13 lowerAlpha: 'Små alfabet (a, b, c, d, e, etc.)',
14 lowerGreek: 'Små græsk (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Små romerske (i, ii, iii, iv, v, etc.)',
16 none: 'Ingen',
17 notset: '<ikke defineret>',
18 numberedTitle: 'Egenskaber for nummereret liste',
19 square: 'Firkant',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Store alfabet (A, B, C, D, E, etc.)',
23 upperRoman: 'Store romerske (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Den nummererede liste skal starte med et rundt nummer'
25} );
diff --git a/sources/plugins/liststyle/lang/de-ch.js b/sources/plugins/liststyle/lang/de-ch.js
new file mode 100644
index 0000000..47d8634
--- /dev/null
+++ b/sources/plugins/liststyle/lang/de-ch.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'de-ch', {
6 armenian: 'Armenische Nummerierung',
7 bulletedTitle: 'Aufzählungslisteneigenschaften',
8 circle: 'Ring',
9 decimal: 'Dezimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Dezimal mit führender Null (01, 02, 03, usw.)',
11 disc: 'Kreis',
12 georgian: 'Georgische Nummerierung (an, ban, gan, usw.)',
13 lowerAlpha: 'Klein Alpha (a, b, c, d, e, usw.)',
14 lowerGreek: 'Klein griechisch (alpha, beta, gamma, usw.)',
15 lowerRoman: 'Klein römisch (i, ii, iii, iv, v, usw.)',
16 none: 'Keine',
17 notset: '<nicht festgelegt>',
18 numberedTitle: 'Nummerierte Listeneigenschaften',
19 square: 'Quadrat',
20 start: 'Start',
21 type: 'Typ',
22 upperAlpha: 'Gross alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Gross römisch (I, II, III, IV, V, usw.)',
24 validateStartNumber: 'Listenstartnummer muss eine ganze Zahl sein.'
25} );
diff --git a/sources/plugins/liststyle/lang/de.js b/sources/plugins/liststyle/lang/de.js
new file mode 100644
index 0000000..cdbf0b3
--- /dev/null
+++ b/sources/plugins/liststyle/lang/de.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'de', {
6 armenian: 'Armenische Nummerierung',
7 bulletedTitle: 'Aufzählungslisteneigenschaften',
8 circle: 'Ring',
9 decimal: 'Dezimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Dezimal mit führender Null (01, 02, 03, usw.)',
11 disc: 'Kreis',
12 georgian: 'Georgische Nummerierung (an, ban, gan, usw.)',
13 lowerAlpha: 'Klein Alpha (a, b, c, d, e, usw.)',
14 lowerGreek: 'Klein griechisch (alpha, beta, gamma, usw.)',
15 lowerRoman: 'Klein römisch (i, ii, iii, iv, v, usw.)',
16 none: 'Keine',
17 notset: '<nicht festgelegt>',
18 numberedTitle: 'Nummerierte Listeneigenschaften',
19 square: 'Quadrat',
20 start: 'Start',
21 type: 'Typ',
22 upperAlpha: 'Groß alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Groß römisch (I, II, III, IV, V, usw.)',
24 validateStartNumber: 'Listenstartnummer muss eine ganze Zahl sein.'
25} );
diff --git a/sources/plugins/liststyle/lang/el.js b/sources/plugins/liststyle/lang/el.js
new file mode 100644
index 0000000..2bd7ce2
--- /dev/null
+++ b/sources/plugins/liststyle/lang/el.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'el', {
6 armenian: 'Αρμενική αρίθμηση',
7 bulletedTitle: 'Ιδιότητες Λίστας Σημείων',
8 circle: 'Κύκλος',
9 decimal: 'Δεκαδική (1, 2, 3, κτλ)',
10 decimalLeadingZero: 'Δεκαδική με αρχικό μηδεν (01, 02, 03, κτλ)',
11 disc: 'Δίσκος',
12 georgian: 'Γεωργιανή αρίθμηση (ა, ბ, გ, κτλ)',
13 lowerAlpha: 'Μικρά Λατινικά (a, b, c, d, e, κτλ.)',
14 lowerGreek: 'Μικρά Ελληνικά (α, β, γ, κτλ)',
15 lowerRoman: 'Μικρά Ρωμαϊκά (i, ii, iii, iv, v, κτλ)',
16 none: 'Καμία',
17 notset: '<δεν έχει οριστεί>',
18 numberedTitle: 'Ιδιότητες Αριθμημένης Λίστας ',
19 square: 'Τετράγωνο',
20 start: 'Εκκίνηση',
21 type: 'Τύπος',
22 upperAlpha: 'Κεφαλαία Λατινικά (A, B, C, D, E, κτλ)',
23 upperRoman: 'Κεφαλαία Ρωμαϊκά (I, II, III, IV, V, κτλ)',
24 validateStartNumber: 'Ο αριθμός εκκίνησης της αρίθμησης πρέπει να είναι ακέραιος αριθμός.'
25} );
diff --git a/sources/plugins/liststyle/lang/en-au.js b/sources/plugins/liststyle/lang/en-au.js
new file mode 100644
index 0000000..af38b3e
--- /dev/null
+++ b/sources/plugins/liststyle/lang/en-au.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'en-au', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/en-ca.js b/sources/plugins/liststyle/lang/en-ca.js
new file mode 100644
index 0000000..ce76d82
--- /dev/null
+++ b/sources/plugins/liststyle/lang/en-ca.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'en-ca', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/en-gb.js b/sources/plugins/liststyle/lang/en-gb.js
new file mode 100644
index 0000000..7f67124
--- /dev/null
+++ b/sources/plugins/liststyle/lang/en-gb.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'en-gb', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/en.js b/sources/plugins/liststyle/lang/en.js
new file mode 100644
index 0000000..c41b7d7
--- /dev/null
+++ b/sources/plugins/liststyle/lang/en.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'en', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/eo.js b/sources/plugins/liststyle/lang/eo.js
new file mode 100644
index 0000000..b601e76
--- /dev/null
+++ b/sources/plugins/liststyle/lang/eo.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'eo', {
6 armenian: 'Armena nombrado',
7 bulletedTitle: 'Atributoj de Bula Listo',
8 circle: 'Cirklo',
9 decimal: 'Dekumaj Nombroj (1, 2, 3, ktp.)',
10 decimalLeadingZero: 'Dekumaj Nombroj malantaŭ nulo (01, 02, 03, ktp.)',
11 disc: 'Disko',
12 georgian: 'Gruza nombrado (an, ban, gan, ktp.)',
13 lowerAlpha: 'Minusklaj Literoj (a, b, c, d, e, ktp.)',
14 lowerGreek: 'Grekaj Minusklaj Literoj (alpha, beta, gamma, ktp.)',
15 lowerRoman: 'Minusklaj Romanaj Nombroj (i, ii, iii, iv, v, ktp.)',
16 none: 'Neniu',
17 notset: '<Defaŭlta>',
18 numberedTitle: 'Atributoj de Numera Listo',
19 square: 'kvadrato',
20 start: 'Komenco',
21 type: 'Tipo',
22 upperAlpha: 'Majusklaj Literoj (A, B, C, D, E, ktp.)',
23 upperRoman: 'Majusklaj Romanaj Nombroj (I, II, III, IV, V, ktp.)',
24 validateStartNumber: 'La unua listero devas esti entjera nombro.'
25} );
diff --git a/sources/plugins/liststyle/lang/es.js b/sources/plugins/liststyle/lang/es.js
new file mode 100644
index 0000000..75d2920
--- /dev/null
+++ b/sources/plugins/liststyle/lang/es.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'es', {
6 armenian: 'Numeración armenia',
7 bulletedTitle: 'Propiedades de viñetas',
8 circle: 'Círculo',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal con cero inicial (01, 02, 03, etc.)',
11 disc: 'Disco',
12 georgian: 'Numeración georgiana (an, ban, gan, etc.)',
13 lowerAlpha: 'Alfabeto en minúsculas (a, b, c, d, e, etc.)',
14 lowerGreek: 'Letras griegas (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Números romanos en minúsculas (i, ii, iii, iv, v, etc.)',
16 none: 'Ninguno',
17 notset: '<sin establecer>',
18 numberedTitle: 'Propiedades de lista numerada',
19 square: 'Cuadrado',
20 start: 'Inicio',
21 type: 'Tipo',
22 upperAlpha: 'Alfabeto en mayúsculas (A, B, C, D, E, etc.)',
23 upperRoman: 'Números romanos en mayúsculas (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'El Inicio debe ser un número entero.'
25} );
diff --git a/sources/plugins/liststyle/lang/et.js b/sources/plugins/liststyle/lang/et.js
new file mode 100644
index 0000000..d2dfd5e
--- /dev/null
+++ b/sources/plugins/liststyle/lang/et.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'et', {
6 armenian: 'Armeenia numbrid',
7 bulletedTitle: 'Punktloendi omadused',
8 circle: 'Ring',
9 decimal: 'Numbrid (1, 2, 3, jne)',
10 decimalLeadingZero: 'Numbrid algusnulliga (01, 02, 03, jne)',
11 disc: 'Täpp',
12 georgian: 'Gruusia numbrid (an, ban, gan, jne)',
13 lowerAlpha: 'Väiketähed (a, b, c, d, e, jne)',
14 lowerGreek: 'Kreeka väiketähed (alpha, beta, gamma, jne)',
15 lowerRoman: 'Väiksed rooma numbrid (i, ii, iii, iv, v, jne)',
16 none: 'Puudub',
17 notset: '<pole määratud>',
18 numberedTitle: 'Numberloendi omadused',
19 square: 'Ruut',
20 start: 'Algus',
21 type: 'Liik',
22 upperAlpha: 'Suurtähed (A, B, C, D, E, jne)',
23 upperRoman: 'Suured rooma numbrid (I, II, III, IV, V, jne)',
24 validateStartNumber: 'Loendi algusnumber peab olema täisarv.'
25} );
diff --git a/sources/plugins/liststyle/lang/eu.js b/sources/plugins/liststyle/lang/eu.js
new file mode 100644
index 0000000..ef616e5
--- /dev/null
+++ b/sources/plugins/liststyle/lang/eu.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'eu', {
6 armenian: 'Zenbakitze armeniarra',
7 bulletedTitle: 'Buletadun zerrendaren propietateak',
8 circle: 'Zirkulua',
9 decimal: 'Hamartarra (1, 2, 3...)',
10 decimalLeadingZero: 'Aurretik zeroa duen hamartarra (01, 02, 03...)',
11 disc: 'Diskoa',
12 georgian: 'Zenbakitze georgiarra (an, ban, gan...)',
13 lowerAlpha: 'Alfabetoa minuskulaz (a, b, c, d, e...)',
14 lowerGreek: 'Greziera minuskulaz (alpha, beta, gamma...)',
15 lowerRoman: 'Erromatarra minuskulaz (i, ii, iii, iv, v...)',
16 none: 'Bat ere ez',
17 notset: '<ezarri gabea>',
18 numberedTitle: 'Zenbakidun zerrendaren propietateak',
19 square: 'Karratua',
20 start: 'Hasi',
21 type: 'Mota',
22 upperAlpha: 'Alfabetoa maiuskulaz (A, B, C, D, E...)',
23 upperRoman: 'Erromatarra maiuskulaz (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Zerrendaren hasierako zenbakiak zenbaki osoa izan behar du.'
25} );
diff --git a/sources/plugins/liststyle/lang/fa.js b/sources/plugins/liststyle/lang/fa.js
new file mode 100644
index 0000000..7a4517c
--- /dev/null
+++ b/sources/plugins/liststyle/lang/fa.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'fa', {
6 armenian: 'شماره‌گذاری ارمنی',
7 bulletedTitle: 'خصوصیات فهرست نقطه‌ای',
8 circle: 'دایره',
9 decimal: 'ده‌دهی (۱، ۲، ۳، ...)',
10 decimalLeadingZero: 'دهدهی همراه با صفر (۰۱، ۰۲، ۰۳، ...)',
11 disc: 'صفحه گرد',
12 georgian: 'شمارهگذاری گریگورین (an, ban, gan, etc.)',
13 lowerAlpha: 'پانویس الفبایی (a, b, c, d, e, etc.)',
14 lowerGreek: 'پانویس یونانی (alpha, beta, gamma, etc.)',
15 lowerRoman: 'پانویس رومی (i, ii, iii, iv, v, etc.)',
16 none: 'هیچ',
17 notset: '<تنظیم نشده>',
18 numberedTitle: 'ویژگیهای فهرست شمارهدار',
19 square: 'چهارگوش',
20 start: 'شروع',
21 type: 'نوع',
22 upperAlpha: 'بالانویس الفبایی (A, B, C, D, E, etc.)',
23 upperRoman: 'بالانویس رومی (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'فهرست شماره شروع باید یک عدد صحیح باشد.'
25} );
diff --git a/sources/plugins/liststyle/lang/fi.js b/sources/plugins/liststyle/lang/fi.js
new file mode 100644
index 0000000..b0cf1b3
--- /dev/null
+++ b/sources/plugins/liststyle/lang/fi.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'fi', {
6 armenian: 'Armeenialainen numerointi',
7 bulletedTitle: 'Numeroimattoman listan ominaisuudet',
8 circle: 'Ympyrä',
9 decimal: 'Desimaalit (1, 2, 3, jne.)',
10 decimalLeadingZero: 'Desimaalit, alussa nolla (01, 02, 03, jne.)',
11 disc: 'Levy',
12 georgian: 'Georgialainen numerointi (an, ban, gan, etc.)',
13 lowerAlpha: 'Pienet aakkoset (a, b, c, d, e, jne.)',
14 lowerGreek: 'Pienet kreikkalaiset (alpha, beta, gamma, jne.)',
15 lowerRoman: 'Pienet roomalaiset (i, ii, iii, iv, v, jne.)',
16 none: 'Ei mikään',
17 notset: '<ei asetettu>',
18 numberedTitle: 'Numeroidun listan ominaisuudet',
19 square: 'Neliö',
20 start: 'Alku',
21 type: 'Tyyppi',
22 upperAlpha: 'Isot aakkoset (A, B, C, D, E, jne.)',
23 upperRoman: 'Isot roomalaiset (I, II, III, IV, V, jne.)',
24 validateStartNumber: 'Listan ensimmäisen numeron tulee olla kokonaisluku.'
25} );
diff --git a/sources/plugins/liststyle/lang/fo.js b/sources/plugins/liststyle/lang/fo.js
new file mode 100644
index 0000000..922a85c
--- /dev/null
+++ b/sources/plugins/liststyle/lang/fo.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'fo', {
6 armenian: 'Armensk talskipan',
7 bulletedTitle: 'Eginleikar fyri lista við prikkum',
8 circle: 'Sirkul',
9 decimal: 'Vanlig tøl (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Tøl við null frammanfyri (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgisk talskipan (an, ban, gan, osv.)',
13 lowerAlpha: 'Lítlir bókstavir (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grikskt við lítlum (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lítil rómaratøl (i, ii, iii, iv, v, etc.)',
16 none: 'Einki',
17 notset: '<ikki sett>',
18 numberedTitle: 'Eginleikar fyri lista við tølum',
19 square: 'Fýrkantur',
20 start: 'Byrjan',
21 type: 'Slag',
22 upperAlpha: 'Stórir bókstavir (A, B, C, D, E, etc.)',
23 upperRoman: 'Stór rómaratøl (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Byrjunartalið fyri lista má vera eitt heiltal.'
25} );
diff --git a/sources/plugins/liststyle/lang/fr-ca.js b/sources/plugins/liststyle/lang/fr-ca.js
new file mode 100644
index 0000000..06c2af9
--- /dev/null
+++ b/sources/plugins/liststyle/lang/fr-ca.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'fr-ca', {
6 armenian: 'Numération arménienne',
7 bulletedTitle: 'Propriété de liste à puce',
8 circle: 'Cercle',
9 decimal: 'Décimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Décimal avec zéro (01, 02, 03, etc.)',
11 disc: 'Disque',
12 georgian: 'Numération géorgienne (an, ban, gan, etc.)',
13 lowerAlpha: 'Alphabétique minuscule (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grecque minuscule (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Romain minuscule (i, ii, iii, iv, v, etc.)',
16 none: 'Aucun',
17 notset: '<non défini>',
18 numberedTitle: 'Propriété de la liste numérotée',
19 square: 'Carré',
20 start: 'Début',
21 type: 'Type',
22 upperAlpha: 'Alphabétique majuscule (A, B, C, D, E, etc.)',
23 upperRoman: 'Romain Majuscule (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Le numéro de début de liste doit être un entier.'
25} );
diff --git a/sources/plugins/liststyle/lang/fr.js b/sources/plugins/liststyle/lang/fr.js
new file mode 100644
index 0000000..ccb6944
--- /dev/null
+++ b/sources/plugins/liststyle/lang/fr.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'fr', {
6 armenian: 'Numération arménienne',
7 bulletedTitle: 'Propriétés de la liste à puces',
8 circle: 'Cercle',
9 decimal: 'Décimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Décimal précédé par un 0 (01, 02, 03, etc.)',
11 disc: 'Disque',
12 georgian: 'Numération géorgienne (an, ban, gan, etc.)',
13 lowerAlpha: 'Lettres minuscules (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grec minuscule (alpha, bêta, gamma, etc.)',
15 lowerRoman: 'Chiffres romains minuscules (i, ii, iii, iv, v, etc.)',
16 none: 'Aucun',
17 notset: '<indéfini>',
18 numberedTitle: 'Propriétés de la liste numérotée',
19 square: 'Carré',
20 start: 'Début',
21 type: 'Type',
22 upperAlpha: 'Lettres majuscules (A, B, C, D, E, etc.)',
23 upperRoman: 'Chiffres romains majuscules (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Le premier élément de la liste doit être un nombre entier.'
25} );
diff --git a/sources/plugins/liststyle/lang/gl.js b/sources/plugins/liststyle/lang/gl.js
new file mode 100644
index 0000000..eeb622d
--- /dev/null
+++ b/sources/plugins/liststyle/lang/gl.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'gl', {
6 armenian: 'Numeración armenia',
7 bulletedTitle: 'Propiedades da lista viñeteada',
8 circle: 'Circulo',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal con cero á esquerda (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Numeración xeorxiana (an, ban, gan, etc.)',
13 lowerAlpha: 'Alfabeto en minúsculas (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grego en minúsculas (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Números romanos en minúsculas (i, ii, iii, iv, v, etc.)',
16 none: 'Ningún',
17 notset: '<sen estabelecer>',
18 numberedTitle: 'Propiedades da lista numerada',
19 square: 'Cadrado',
20 start: 'Inicio',
21 type: 'Tipo',
22 upperAlpha: 'Alfabeto en maiúsculas (A, B, C, D, E, etc.)',
23 upperRoman: 'Números romanos en maiúsculas (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'O número de inicio da lista debe ser un número enteiro.'
25} );
diff --git a/sources/plugins/liststyle/lang/gu.js b/sources/plugins/liststyle/lang/gu.js
new file mode 100644
index 0000000..434f218
--- /dev/null
+++ b/sources/plugins/liststyle/lang/gu.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'gu', {
6 armenian: 'અરમેનિયન આંકડા પદ્ધતિ',
7 bulletedTitle: 'બુલેટેડ લીસ્ટના ગુણ',
8 circle: 'વર્તુળ',
9 decimal: 'આંકડા (1, 2, 3, etc.)',
10 decimalLeadingZero: 'સુન્ય આગળ આંકડા (01, 02, 03, etc.)',
11 disc: 'ડિસ્ક',
12 georgian: 'ગેઓર્ગિયન આંકડા પદ્ધતિ (an, ban, gan, etc.)',
13 lowerAlpha: 'આલ્ફા નાના (a, b, c, d, e, etc.)',
14 lowerGreek: 'ગ્રીક નાના (alpha, beta, gamma, etc.)',
15 lowerRoman: 'રોમન નાના (i, ii, iii, iv, v, etc.)',
16 none: 'કસુ ',
17 notset: '<સેટ નથી>',
18 numberedTitle: 'આંકડાના લીસ્ટના ગુણ',
19 square: 'ચોરસ',
20 start: 'શરુ કરવું',
21 type: 'પ્રકાર',
22 upperAlpha: 'આલ્ફા મોટા (A, B, C, D, E, etc.)',
23 upperRoman: 'રોમન મોટા (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'લીસ્ટના સરુઆતનો આંકડો પુરો હોવો જોઈએ.'
25} );
diff --git a/sources/plugins/liststyle/lang/he.js b/sources/plugins/liststyle/lang/he.js
new file mode 100644
index 0000000..93b6106
--- /dev/null
+++ b/sources/plugins/liststyle/lang/he.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'he', {
6 armenian: 'ספרות ארמניות',
7 bulletedTitle: 'תכונות רשימת תבליטים',
8 circle: 'עיגול ריק',
9 decimal: 'ספרות (1, 2, 3 וכו\')',
10 decimalLeadingZero: 'ספרות עם 0 בהתחלה (01, 02, 03 וכו\')',
11 disc: 'עיגול מלא',
12 georgian: 'ספרות גיאורגיות (an, ban, gan וכו\')',
13 lowerAlpha: 'אותיות אנגליות קטנות (a, b, c, d, e וכו\')',
14 lowerGreek: 'אותיות יווניות קטנות (alpha, beta, gamma וכו\')',
15 lowerRoman: 'ספירה רומית באותיות קטנות (i, ii, iii, iv, v וכו\')',
16 none: 'ללא',
17 notset: '<לא נקבע>',
18 numberedTitle: 'תכונות רשימה ממוספרת',
19 square: 'ריבוע',
20 start: 'תחילת מספור',
21 type: 'סוג',
22 upperAlpha: 'אותיות אנגליות גדולות (A, B, C, D, E וכו\')',
23 upperRoman: 'ספירה רומיות באותיות גדולות (I, II, III, IV, V וכו\')',
24 validateStartNumber: 'שדה תחילת המספור חייב להכיל מספר שלם.'
25} );
diff --git a/sources/plugins/liststyle/lang/hi.js b/sources/plugins/liststyle/lang/hi.js
new file mode 100644
index 0000000..0f1ae03
--- /dev/null
+++ b/sources/plugins/liststyle/lang/hi.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'hi', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/hr.js b/sources/plugins/liststyle/lang/hr.js
new file mode 100644
index 0000000..8da2ff3
--- /dev/null
+++ b/sources/plugins/liststyle/lang/hr.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'hr', {
6 armenian: 'Armenijska numeracija',
7 bulletedTitle: 'Svojstva liste',
8 circle: 'Krug',
9 decimal: 'Decimalna numeracija (1, 2, 3, itd.)',
10 decimalLeadingZero: 'Decimalna s vodećom nulom (01, 02, 03, itd)',
11 disc: 'Disk',
12 georgian: 'Gruzijska numeracija(an, ban, gan, etc.)',
13 lowerAlpha: 'Znakovi mala slova (a, b, c, d, e, itd.)',
14 lowerGreek: 'Grčka numeracija mala slova (alfa, beta, gama, itd).',
15 lowerRoman: 'Romanska numeracija mala slova (i, ii, iii, iv, v, itd.)',
16 none: 'Bez',
17 notset: '<nije određen>',
18 numberedTitle: 'Svojstva brojčane liste',
19 square: 'Kvadrat',
20 start: 'Početak',
21 type: 'Vrsta',
22 upperAlpha: 'Znakovi velika slova (A, B, C, D, E, itd.)',
23 upperRoman: 'Romanska numeracija velika slova (I, II, III, IV, V, itd.)',
24 validateStartNumber: 'Početak brojčane liste mora biti cijeli broj.'
25} );
diff --git a/sources/plugins/liststyle/lang/hu.js b/sources/plugins/liststyle/lang/hu.js
new file mode 100644
index 0000000..4e3d922
--- /dev/null
+++ b/sources/plugins/liststyle/lang/hu.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'hu', {
6 armenian: 'Örmény számozás',
7 bulletedTitle: 'Pontozott lista tulajdonságai',
8 circle: 'Kör',
9 decimal: 'Arab számozás (1, 2, 3, stb.)',
10 decimalLeadingZero: 'Számozás bevezető nullákkal (01, 02, 03, stb.)',
11 disc: 'Korong',
12 georgian: 'Grúz számozás (an, ban, gan, stb.)',
13 lowerAlpha: 'Kisbetűs (a, b, c, d, e, stb.)',
14 lowerGreek: 'Görög (alpha, beta, gamma, stb.)',
15 lowerRoman: 'Római kisbetűs (i, ii, iii, iv, v, stb.)',
16 none: 'Nincs',
17 notset: '<Nincs beállítva>',
18 numberedTitle: 'Sorszámozott lista tulajdonságai',
19 square: 'Négyzet',
20 start: 'Kezdőszám',
21 type: 'Típus',
22 upperAlpha: 'Nagybetűs (A, B, C, D, E, stb.)',
23 upperRoman: 'Római nagybetűs (I, II, III, IV, V, stb.)',
24 validateStartNumber: 'A kezdőszám nem lehet tört érték.'
25} );
diff --git a/sources/plugins/liststyle/lang/id.js b/sources/plugins/liststyle/lang/id.js
new file mode 100644
index 0000000..36ec1ec
--- /dev/null
+++ b/sources/plugins/liststyle/lang/id.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'id', {
6 armenian: 'Armenian numbering', // MISSING
7 bulletedTitle: 'Bulleted List Properties', // MISSING
8 circle: 'Lingkaran',
9 decimal: 'Desimal (1, 2, 3, dst.)',
10 decimalLeadingZero: 'Desimal diawali angka nol (01, 02, 03, dst.)',
11 disc: 'Cakram',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)', // MISSING
13 lowerAlpha: 'Huruf Kecil (a, b, c, d, e, dst.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
15 lowerRoman: 'Angka Romawi (i, ii, iii, iv, v, dst.)',
16 none: 'Tidak ada',
17 notset: '<tidak diatur>',
18 numberedTitle: 'Numbered List Properties', // MISSING
19 square: 'Persegi',
20 start: 'Mulai',
21 type: 'Tipe',
22 upperAlpha: 'Huruf Besar (A, B, C, D, E, dst.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
24 validateStartNumber: 'List start number must be a whole number.' // MISSING
25} );
diff --git a/sources/plugins/liststyle/lang/is.js b/sources/plugins/liststyle/lang/is.js
new file mode 100644
index 0000000..a05c5bc
--- /dev/null
+++ b/sources/plugins/liststyle/lang/is.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'is', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/it.js b/sources/plugins/liststyle/lang/it.js
new file mode 100644
index 0000000..6ef919d
--- /dev/null
+++ b/sources/plugins/liststyle/lang/it.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'it', {
6 armenian: 'Numerazione Armena',
7 bulletedTitle: 'Proprietà liste puntate',
8 circle: 'Cerchio',
9 decimal: 'Decimale (1, 2, 3, ecc.)',
10 decimalLeadingZero: 'Decimale preceduto da 0 (01, 02, 03, ecc.)',
11 disc: 'Disco',
12 georgian: 'Numerazione Georgiana (an, ban, gan, ecc.)',
13 lowerAlpha: 'Alfabetico minuscolo (a, b, c, d, e, ecc.)',
14 lowerGreek: 'Greco minuscolo (alpha, beta, gamma, ecc.)',
15 lowerRoman: 'Numerazione Romana minuscola (i, ii, iii, iv, v, ecc.)',
16 none: 'Nessuno',
17 notset: '<non impostato>',
18 numberedTitle: 'Proprietà liste numerate',
19 square: 'Quadrato',
20 start: 'Inizio',
21 type: 'Tipo',
22 upperAlpha: 'Alfabetico maiuscolo (A, B, C, D, E, ecc.)',
23 upperRoman: 'Numerazione Romana maiuscola (I, II, III, IV, V, ecc.)',
24 validateStartNumber: 'Il numero di inizio di una lista numerata deve essere un numero intero.'
25} );
diff --git a/sources/plugins/liststyle/lang/ja.js b/sources/plugins/liststyle/lang/ja.js
new file mode 100644
index 0000000..e55dafc
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ja.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ja', {
6 armenian: 'アルメニア数字',
7 bulletedTitle: '箇条書きのプロパティ',
8 circle: '白丸',
9 decimal: '数字 (1, 2, 3, etc.)',
10 decimalLeadingZero: '0付きの数字 (01, 02, 03, etc.)',
11 disc: '黒丸',
12 georgian: 'グルジア数字 (an, ban, gan, etc.)',
13 lowerAlpha: '小文字アルファベット (a, b, c, d, e, etc.)',
14 lowerGreek: '小文字ギリシャ文字 (alpha, beta, gamma, etc.)',
15 lowerRoman: '小文字ローマ数字 (i, ii, iii, iv, v, etc.)',
16 none: 'なし',
17 notset: '<なし>',
18 numberedTitle: '番号付きリストのプロパティ',
19 square: '四角',
20 start: '開始',
21 type: '種類',
22 upperAlpha: '大文字アルファベット (A, B, C, D, E, etc.)',
23 upperRoman: '大文字ローマ数字 (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'リストの開始番号は数値で入力してください。'
25} );
diff --git a/sources/plugins/liststyle/lang/ka.js b/sources/plugins/liststyle/lang/ka.js
new file mode 100644
index 0000000..0ede82d
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ka.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ka', {
6 armenian: 'სომხური გადანომრვა',
7 bulletedTitle: 'ღილებიანი სიის პარამეტრები',
8 circle: 'წრეწირი',
9 decimal: 'რიცხვებით (1, 2, 3, ..)',
10 decimalLeadingZero: 'ნულით დაწყებული რიცხვებით (01, 02, 03, ..)',
11 disc: 'წრე',
12 georgian: 'ქართული გადანომრვა (ან, ბან, გან, ..)',
13 lowerAlpha: 'პატარა ლათინური ასოებით (a, b, c, d, e, ..)',
14 lowerGreek: 'პატარა ბერძნული ასოებით (ალფა, ბეტა, გამა, ..)',
15 lowerRoman: 'რომაული გადანომრვცა პატარა ციფრებით (i, ii, iii, iv, v, ..)',
16 none: 'არაფერი',
17 notset: '<არაფერი>',
18 numberedTitle: 'გადანომრილი სიის პარამეტრები',
19 square: 'კვადრატი',
20 start: 'საწყისი',
21 type: 'ტიპი',
22 upperAlpha: 'დიდი ლათინური ასოებით (A, B, C, D, E, ..)',
23 upperRoman: 'რომაული გადანომრვა დიდი ციფრებით (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'სიის საწყისი მთელი რიცხვი უნდა იყოს.'
25} );
diff --git a/sources/plugins/liststyle/lang/km.js b/sources/plugins/liststyle/lang/km.js
new file mode 100644
index 0000000..51d7365
--- /dev/null
+++ b/sources/plugins/liststyle/lang/km.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'km', {
6 armenian: 'លេខ​អារមេនី',
7 bulletedTitle: 'លក្ខណៈ​សម្បត្តិ​បញ្ជី​ជា​ចំណុច',
8 circle: 'រង្វង់​មូល',
9 decimal: 'លេខ​ទសភាគ (1, 2, 3, ...)',
10 decimalLeadingZero: 'ទសភាគ​ចាប់​ផ្ដើម​ពី​សូន្យ (01, 02, 03, ...)',
11 disc: 'ថាស',
12 georgian: 'លេខ​ចចជា (an, ban, gan, ...)',
13 lowerAlpha: 'ព្យញ្ជនៈ​តូច (a, b, c, d, e, ...)',
14 lowerGreek: 'លេខ​ក្រិក​តូច (alpha, beta, gamma, ...)',
15 lowerRoman: 'លេខ​រ៉ូម៉ាំង​តូច (i, ii, iii, iv, v, ...)',
16 none: 'គ្មាន',
17 notset: '<not set>',
18 numberedTitle: 'លក្ខណៈ​សម្បត្តិ​បញ្ជី​ជា​លេខ',
19 square: 'ការេ',
20 start: 'ចាប់​ផ្ដើម',
21 type: 'ប្រភេទ',
22 upperAlpha: 'អក្សរ​ធំ (A, B, C, D, E, ...)',
23 upperRoman: 'លេខ​រ៉ូម៉ាំង​ធំ (I, II, III, IV, V, ...)',
24 validateStartNumber: 'លេខ​ចាប់​ផ្ដើម​បញ្ជី ត្រូវ​តែ​ជា​តួ​លេខ​ពិត​ប្រាកដ។'
25} );
diff --git a/sources/plugins/liststyle/lang/ko.js b/sources/plugins/liststyle/lang/ko.js
new file mode 100644
index 0000000..8b88e2d
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ko.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ko', {
6 armenian: '아르메니아 숫자',
7 bulletedTitle: '순서 없는 목록 속성',
8 circle: '원',
9 decimal: '수 (1, 2, 3, 등)',
10 decimalLeadingZero: '0이 붙은 수 (01, 02, 03, 등)',
11 disc: '내림차순',
12 georgian: '그루지야 숫자 (an, ban, gan, 등)',
13 lowerAlpha: '영소문자 (a, b, c, d, e, 등)',
14 lowerGreek: '그리스 소문자 (alpha, beta, gamma, 등)',
15 lowerRoman: '로마 소문자 (i, ii, iii, iv, v, 등)',
16 none: '없음',
17 notset: '<설정 없음>',
18 numberedTitle: '순서 있는 목록 속성',
19 square: '사각',
20 start: '시작',
21 type: '유형',
22 upperAlpha: '영대문자 (A, B, C, D, E, 등)',
23 upperRoman: '로마 대문자 (I, II, III, IV, V, 등)',
24 validateStartNumber: '목록 시작 숫자는 정수여야 합니다.'
25} );
diff --git a/sources/plugins/liststyle/lang/ku.js b/sources/plugins/liststyle/lang/ku.js
new file mode 100644
index 0000000..a3a7b47
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ku.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ku', {
6 armenian: 'ئاراستەی ژمارەی ئەرمەنی',
7 bulletedTitle: 'خاسیەتی لیستی خاڵی',
8 circle: 'بازنه',
9 decimal: 'ژمارە (1, 2, 3, وە هیتر.)',
10 decimalLeadingZero: 'ژمارە سفڕی لەپێشەوه (01, 02, 03, وە هیتر.)',
11 disc: 'پەپکە',
12 georgian: 'ئاراستەی ژمارەی جۆڕجی (an, ban, gan, وە هیتر.)',
13 lowerAlpha: 'ئەلفابێی بچووك (a, b, c, d, e, وە هیتر.)',
14 lowerGreek: 'یۆنانی بچووك (alpha, beta, gamma, وە هیتر.)',
15 lowerRoman: 'ژمارەی ڕۆمی بچووك (i, ii, iii, iv, v, وە هیتر.)',
16 none: 'هیچ',
17 notset: '<دانەندراوه>',
18 numberedTitle: 'خاسیەتی لیستی ژمارەیی',
19 square: 'چووراگۆشە',
20 start: 'دەستپێکردن',
21 type: 'جۆر',
22 upperAlpha: 'ئەلفابێی گەوره (A, B, C, D, E, وە هیتر.)',
23 upperRoman: 'ژمارەی ڕۆمی گەوره (I, II, III, IV, V, وە هیتر.)',
24 validateStartNumber: 'دەستپێکەری لیستی ژمارەیی دەبێت تەنها ژمارە بێت.'
25} );
diff --git a/sources/plugins/liststyle/lang/lt.js b/sources/plugins/liststyle/lang/lt.js
new file mode 100644
index 0000000..6b7c949
--- /dev/null
+++ b/sources/plugins/liststyle/lang/lt.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'lt', {
6 armenian: 'Armėniški skaitmenys',
7 bulletedTitle: 'Ženklelinio sąrašo nustatymai',
8 circle: 'Apskritimas',
9 decimal: 'Dešimtainis (1, 2, 3, t.t)',
10 decimalLeadingZero: 'Dešimtainis su nuliu priekyje (01, 02, 03, t.t)',
11 disc: 'Diskas',
12 georgian: 'Gruziniški skaitmenys (an, ban, gan, t.t)',
13 lowerAlpha: 'Mažosios Alpha (a, b, c, d, e, t.t)',
14 lowerGreek: 'Mažosios Graikų (alpha, beta, gamma, t.t)',
15 lowerRoman: 'Mažosios Romėnų (i, ii, iii, iv, v, t.t)',
16 none: 'Niekas',
17 notset: '<nenurodytas>',
18 numberedTitle: 'Skaitmeninio sąrašo nustatymai',
19 square: 'Kvadratas',
20 start: 'Pradžia',
21 type: 'Rūšis',
22 upperAlpha: 'Didžiosios Alpha (A, B, C, D, E, t.t)',
23 upperRoman: 'Didžiosios Romėnų (I, II, III, IV, V, t.t)',
24 validateStartNumber: 'Sąrašo pradžios skaitmuo turi būti sveikas skaičius.'
25} );
diff --git a/sources/plugins/liststyle/lang/lv.js b/sources/plugins/liststyle/lang/lv.js
new file mode 100644
index 0000000..17b6da7
--- /dev/null
+++ b/sources/plugins/liststyle/lang/lv.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'lv', {
6 armenian: 'Armēņu skaitļi',
7 bulletedTitle: 'Vienkārša saraksta uzstādījumi',
8 circle: 'Aplis',
9 decimal: 'Decimālie (1, 2, 3, utt)',
10 decimalLeadingZero: 'Decimālie ar nulli (01, 02, 03, utt)',
11 disc: 'Disks',
12 georgian: 'Gruzīņu skaitļi (an, ban, gan, utt)',
13 lowerAlpha: 'Mazie alfabēta (a, b, c, d, e, utt)',
14 lowerGreek: 'Mazie grieķu (alfa, beta, gamma, utt)',
15 lowerRoman: 'Mazie romāņu (i, ii, iii, iv, v, utt)',
16 none: 'Nekas',
17 notset: '<nav norādīts>',
18 numberedTitle: 'Numurēta saraksta uzstādījumi',
19 square: 'Kvadrāts',
20 start: 'Sākt',
21 type: 'Tips',
22 upperAlpha: 'Lielie alfabēta (A, B, C, D, E, utt)',
23 upperRoman: 'Lielie romāņu (I, II, III, IV, V, utt)',
24 validateStartNumber: 'Saraksta sākuma numuram jābūt veselam skaitlim'
25} );
diff --git a/sources/plugins/liststyle/lang/mk.js b/sources/plugins/liststyle/lang/mk.js
new file mode 100644
index 0000000..dbb640b
--- /dev/null
+++ b/sources/plugins/liststyle/lang/mk.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'mk', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/mn.js b/sources/plugins/liststyle/lang/mn.js
new file mode 100644
index 0000000..54e884c
--- /dev/null
+++ b/sources/plugins/liststyle/lang/mn.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'mn', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Төрөл',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/ms.js b/sources/plugins/liststyle/lang/ms.js
new file mode 100644
index 0000000..297c02c
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ms.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ms', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/nb.js b/sources/plugins/liststyle/lang/nb.js
new file mode 100644
index 0000000..0fe7859
--- /dev/null
+++ b/sources/plugins/liststyle/lang/nb.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'nb', {
6 armenian: 'Armensk nummerering',
7 bulletedTitle: 'Egenskaper for punktliste',
8 circle: 'Sirkel',
9 decimal: 'Tall (1, 2, 3, osv.)',
10 decimalLeadingZero: 'Tall, med førstesiffer null (01, 02, 03, osv.)',
11 disc: 'Disk',
12 georgian: 'Georgisk nummerering (an, ban, gan, osv.)',
13 lowerAlpha: 'Alfabetisk, små (a, b, c, d, e, osv.)',
14 lowerGreek: 'Gresk, små (alpha, beta, gamma, osv.)',
15 lowerRoman: 'Romertall, små (i, ii, iii, iv, v, osv.)',
16 none: 'Ingen',
17 notset: '<ikke satt>',
18 numberedTitle: 'Egenskaper for nummerert liste',
19 square: 'Firkant',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Alfabetisk, store (A, B, C, D, E, osv.)',
23 upperRoman: 'Romertall, store (I, II, III, IV, V, osv.)',
24 validateStartNumber: 'Starten på listen må være et heltall.'
25} );
diff --git a/sources/plugins/liststyle/lang/nl.js b/sources/plugins/liststyle/lang/nl.js
new file mode 100644
index 0000000..88ea3f8
--- /dev/null
+++ b/sources/plugins/liststyle/lang/nl.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'nl', {
6 armenian: 'Armeense nummering',
7 bulletedTitle: 'Eigenschappen lijst met opsommingstekens',
8 circle: 'Cirkel',
9 decimal: 'Cijfers (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Cijfers beginnen met nul (01, 02, 03, etc.)',
11 disc: 'Schijf',
12 georgian: 'Georgische nummering (an, ban, gan, etc.)',
13 lowerAlpha: 'Kleine letters (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grieks kleine letters (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Romeins kleine letters (i, ii, iii, iv, v, etc.)',
16 none: 'Geen',
17 notset: '<niet gezet>',
18 numberedTitle: 'Eigenschappen genummerde lijst',
19 square: 'Vierkant',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Hoofdletters (A, B, C, D, E, etc.)',
23 upperRoman: 'Romeinse hoofdletters (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Startnummer van de lijst moet een heel nummer zijn.'
25} );
diff --git a/sources/plugins/liststyle/lang/no.js b/sources/plugins/liststyle/lang/no.js
new file mode 100644
index 0000000..26927e6
--- /dev/null
+++ b/sources/plugins/liststyle/lang/no.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'no', {
6 armenian: 'Armensk nummerering',
7 bulletedTitle: 'Egenskaper for punktmerket liste',
8 circle: 'Sirkel',
9 decimal: 'Tall (1, 2, 3, osv.)',
10 decimalLeadingZero: 'Tall, med førstesiffer null (01, 02, 03, osv.)',
11 disc: 'Disk',
12 georgian: 'Georgisk nummerering (an, ban, gan, osv.)',
13 lowerAlpha: 'Alfabetisk, små (a, b, c, d, e, osv.)',
14 lowerGreek: 'Gresk, små (alpha, beta, gamma, osv.)',
15 lowerRoman: 'Romertall, små (i, ii, iii, iv, v, osv.)',
16 none: 'Ingen',
17 notset: '<ikke satt>',
18 numberedTitle: 'Egenskaper for nummerert liste',
19 square: 'Firkant',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Alfabetisk, store (A, B, C, D, E, osv.)',
23 upperRoman: 'Romertall, store (I, II, III, IV, V, osv.)',
24 validateStartNumber: 'Starten på listen må være et heltall.'
25} );
diff --git a/sources/plugins/liststyle/lang/oc.js b/sources/plugins/liststyle/lang/oc.js
new file mode 100644
index 0000000..eb64753
--- /dev/null
+++ b/sources/plugins/liststyle/lang/oc.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'oc', {
6 armenian: 'Numerotacion armènia',
7 bulletedTitle: 'Proprietats de la lista de piuses',
8 circle: 'Cercle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal precedit per un 0 (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Numeracion georgiana (an, ban, gan, etc.)',
13 lowerAlpha: 'Letras minusculas (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grèc minuscula (alfa, bèta, gamma, etc.)',
15 lowerRoman: 'Chifras romanas minusculas (i, ii, iii, iv, v, etc.)',
16 none: 'Pas cap',
17 notset: '<indefinit>',
18 numberedTitle: 'Proprietats de la lista numerotada',
19 square: 'Carrat',
20 start: 'Començament',
21 type: 'Tipe',
22 upperAlpha: 'Letras majusculas (A, B, C, D, E, etc.)',
23 upperRoman: 'Chifras romanas majusculas (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Lo primièr element de la lista deu èsser un nombre entièr.'
25} );
diff --git a/sources/plugins/liststyle/lang/pl.js b/sources/plugins/liststyle/lang/pl.js
new file mode 100644
index 0000000..37d2cd7
--- /dev/null
+++ b/sources/plugins/liststyle/lang/pl.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'pl', {
6 armenian: 'Numerowanie armeńskie',
7 bulletedTitle: 'Właściwości list wypunktowanych',
8 circle: 'Koło',
9 decimal: 'Liczby (1, 2, 3 itd.)',
10 decimalLeadingZero: 'Liczby z początkowym zerem (01, 02, 03 itd.)',
11 disc: 'Okrąg',
12 georgian: 'Numerowanie gruzińskie (an, ban, gan itd.)',
13 lowerAlpha: 'Małe litery (a, b, c, d, e itd.)',
14 lowerGreek: 'Małe litery greckie (alpha, beta, gamma itd.)',
15 lowerRoman: 'Małe cyfry rzymskie (i, ii, iii, iv, v itd.)',
16 none: 'Brak',
17 notset: '<nie ustawiono>',
18 numberedTitle: 'Właściwości list numerowanych',
19 square: 'Kwadrat',
20 start: 'Początek',
21 type: 'Typ punktora',
22 upperAlpha: 'Duże litery (A, B, C, D, E itd.)',
23 upperRoman: 'Duże cyfry rzymskie (I, II, III, IV, V itd.)',
24 validateStartNumber: 'Listę musi rozpoczynać liczba całkowita.'
25} );
diff --git a/sources/plugins/liststyle/lang/pt-br.js b/sources/plugins/liststyle/lang/pt-br.js
new file mode 100644
index 0000000..c5f0296
--- /dev/null
+++ b/sources/plugins/liststyle/lang/pt-br.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'pt-br', {
6 armenian: 'Numeração Armêna',
7 bulletedTitle: 'Propriedades da Lista sem Numeros',
8 circle: 'Círculo',
9 decimal: 'Numeração Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Numeração Decimal com zeros (01, 02, 03, etc.)',
11 disc: 'Disco',
12 georgian: 'Numeração da Geórgia (an, ban, gan, etc.)',
13 lowerAlpha: 'Numeração Alfabética minúscula (a, b, c, d, e, etc.)',
14 lowerGreek: 'Numeração Grega minúscula (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Numeração Romana minúscula (i, ii, iii, iv, v, etc.)',
16 none: 'Nenhum',
17 notset: '<não definido>',
18 numberedTitle: 'Propriedades da Lista Numerada',
19 square: 'Quadrado',
20 start: 'Início',
21 type: 'Tipo',
22 upperAlpha: 'Numeração Alfabética Maiúscula (A, B, C, D, E, etc.)',
23 upperRoman: 'Numeração Romana maiúscula (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'O número inicial da lista deve ser um número inteiro.'
25} );
diff --git a/sources/plugins/liststyle/lang/pt.js b/sources/plugins/liststyle/lang/pt.js
new file mode 100644
index 0000000..7dc1f25
--- /dev/null
+++ b/sources/plugins/liststyle/lang/pt.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'pt', {
6 armenian: 'Numeração armênia',
7 bulletedTitle: 'Propriedades da lista não numerada',
8 circle: 'Círculo',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Zero decimal à esquerda (01, 02, 03, etc.)',
11 disc: 'Disco',
12 georgian: 'Numeração georgiana (an, ban, gan, etc.)',
13 lowerAlpha: 'Minúsculas (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grego em minúsculas (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Romano em minúsculas (i, ii, iii, iv, v, etc.)',
16 none: 'Nenhum',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Quadrado',
20 start: 'Iniciar',
21 type: 'Tipo',
22 upperAlpha: 'Maiúsculas (A, B, C, D, E, etc.)',
23 upperRoman: 'Romanos em maiúscula (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'A lista tem iniciar por um número inteiro'
25} );
diff --git a/sources/plugins/liststyle/lang/ro.js b/sources/plugins/liststyle/lang/ro.js
new file mode 100644
index 0000000..5a8c327
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ro.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ro', {
6 armenian: 'Numerotare armeniană',
7 bulletedTitle: 'Proprietățile listei cu simboluri',
8 circle: 'Cerc',
9 decimal: 'Decimale (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimale cu zero în față (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Numerotare georgiană (an, ban, gan, etc.)',
13 lowerAlpha: 'Litere mici (a, b, c, d, e, etc.)',
14 lowerGreek: 'Litere grecești mici (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Cifre romane mici (i, ii, iii, iv, v, etc.)',
16 none: 'Nimic',
17 notset: '<nesetat>',
18 numberedTitle: 'Proprietățile listei numerotate',
19 square: 'Pătrat',
20 start: 'Start',
21 type: 'Tip',
22 upperAlpha: 'Litere mari (A, B, C, D, E, etc.)',
23 upperRoman: 'Cifre romane mari (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Începutul listei trebuie să fie un număr întreg.'
25} );
diff --git a/sources/plugins/liststyle/lang/ru.js b/sources/plugins/liststyle/lang/ru.js
new file mode 100644
index 0000000..5bfa8c6
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ru.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ru', {
6 armenian: 'Армянская нумерация',
7 bulletedTitle: 'Свойства маркированного списка',
8 circle: 'Круг',
9 decimal: 'Десятичные (1, 2, 3, и т.д.)',
10 decimalLeadingZero: 'Десятичные с ведущим нулём (01, 02, 03, и т.д.)',
11 disc: 'Окружность',
12 georgian: 'Грузинская нумерация (ани, бани, гани, и т.д.)',
13 lowerAlpha: 'Строчные латинские (a, b, c, d, e, и т.д.)',
14 lowerGreek: 'Строчные греческие (альфа, бета, гамма, и т.д.)',
15 lowerRoman: 'Строчные римские (i, ii, iii, iv, v, и т.д.)',
16 none: 'Нет',
17 notset: '<не указано>',
18 numberedTitle: 'Свойства нумерованного списка',
19 square: 'Квадрат',
20 start: 'Начиная с',
21 type: 'Тип',
22 upperAlpha: 'Заглавные латинские (A, B, C, D, E, и т.д.)',
23 upperRoman: 'Заглавные римские (I, II, III, IV, V, и т.д.)',
24 validateStartNumber: 'Первый номер списка должен быть задан обычным целым числом.'
25} );
diff --git a/sources/plugins/liststyle/lang/si.js b/sources/plugins/liststyle/lang/si.js
new file mode 100644
index 0000000..b401a13
--- /dev/null
+++ b/sources/plugins/liststyle/lang/si.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'si', {
6 armenian: 'Armenian numbering', // MISSING
7 bulletedTitle: 'Bulleted List Properties', // MISSING
8 circle: 'Circle', // MISSING
9 decimal: 'Decimal (1, 2, 3, etc.)', // MISSING
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)', // MISSING
11 disc: 'Disc', // MISSING
12 georgian: 'Georgian numbering (an, ban, gan, etc.)', // MISSING
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
16 none: 'කිසිවක්ම නොවේ',
17 notset: '<යොදා >',
18 numberedTitle: 'Numbered List Properties', // MISSING
19 square: 'Square', // MISSING
20 start: 'Start', // MISSING
21 type: 'වර්ගය',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
24 validateStartNumber: 'List start number must be a whole number.' // MISSING
25} );
diff --git a/sources/plugins/liststyle/lang/sk.js b/sources/plugins/liststyle/lang/sk.js
new file mode 100644
index 0000000..2529c18
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sk.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sk', {
6 armenian: 'Arménske číslovanie',
7 bulletedTitle: 'Vlastnosti odrážkového zoznamu',
8 circle: 'Kruh',
9 decimal: 'Číselné (1, 2, 3, atď.)',
10 decimalLeadingZero: 'Číselné s nulou (01, 02, 03, atď.)',
11 disc: 'Disk',
12 georgian: 'Gruzínske číslovanie (an, ban, gan, atď.)',
13 lowerAlpha: 'Malé latinské (a, b, c, d, e, atď.)',
14 lowerGreek: 'Malé grécke (alfa, beta, gama, atď.)',
15 lowerRoman: 'Malé rímske (i, ii, iii, iv, v, atď.)',
16 none: 'Nič',
17 notset: '<nenastavené>',
18 numberedTitle: 'Vlastnosti číselného zoznamu',
19 square: 'Štvorec',
20 start: 'Začiatok',
21 type: 'Typ',
22 upperAlpha: 'Veľké latinské (A, B, C, D, E, atď.)',
23 upperRoman: 'Veľké rímske (I, II, III, IV, V, atď.)',
24 validateStartNumber: 'Začiatočné číslo číselného zoznamu musí byť celé číslo.'
25} );
diff --git a/sources/plugins/liststyle/lang/sl.js b/sources/plugins/liststyle/lang/sl.js
new file mode 100644
index 0000000..bd6c27f
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sl.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sl', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/sq.js b/sources/plugins/liststyle/lang/sq.js
new file mode 100644
index 0000000..6ee94a5
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sq.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sq', {
6 armenian: 'Numërim armenian',
7 bulletedTitle: 'Karakteristikat e Listës me Pulla',
8 circle: 'Rreth',
9 decimal: 'Decimal (1, 2, 3, etj.)',
10 decimalLeadingZero: 'Decimal me zerro udhëheqëse (01, 02, 03, etj.)',
11 disc: 'Disk',
12 georgian: 'Numërim gjeorgjian (an, ban, gan, etj.)',
13 lowerAlpha: 'Të vogla alfa (a, b, c, d, e, etj.)',
14 lowerGreek: 'Të vogla greke (alpha, beta, gamma, etj.)',
15 lowerRoman: 'Të vogla romake (i, ii, iii, iv, v, etj.)',
16 none: 'Asnjë',
17 notset: '<e pazgjedhur>',
18 numberedTitle: 'Karakteristikat e Listës me Numra',
19 square: 'Katror',
20 start: 'Fillimi',
21 type: 'LLoji',
22 upperAlpha: 'Të mëdha alfa (A, B, C, D, E, etj.)',
23 upperRoman: 'Të mëdha romake (I, II, III, IV, V, etj.)',
24 validateStartNumber: 'Numri i fillimit të listës duhet të është numër i plotë.'
25} );
diff --git a/sources/plugins/liststyle/lang/sr-latn.js b/sources/plugins/liststyle/lang/sr-latn.js
new file mode 100644
index 0000000..75d1cfa
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sr-latn.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sr-latn', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/sr.js b/sources/plugins/liststyle/lang/sr.js
new file mode 100644
index 0000000..f89a441
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sr.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sr', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/sv.js b/sources/plugins/liststyle/lang/sv.js
new file mode 100644
index 0000000..49bbf48
--- /dev/null
+++ b/sources/plugins/liststyle/lang/sv.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'sv', {
6 armenian: 'Armenisk numrering',
7 bulletedTitle: 'Egenskaper för punktlista',
8 circle: 'Cirkel',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal nolla (01, 02, 03, etc.)',
11 disc: 'Disk',
12 georgian: 'Georgisk numrering (an, ban, gan, etc.)',
13 lowerAlpha: 'Alpha gemener (a, b, c, d, e, etc.)',
14 lowerGreek: 'Grekiska gemener (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Romerska gemener (i, ii, iii, iv, v, etc.)',
16 none: 'Ingen',
17 notset: '<ej angiven>',
18 numberedTitle: 'Egenskaper för punktlista',
19 square: 'Fyrkant',
20 start: 'Start',
21 type: 'Typ',
22 upperAlpha: 'Alpha versaler (A, B, C, D, E, etc.)',
23 upperRoman: 'Romerska versaler (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'Listans startnummer måste vara ett heltal.'
25} );
diff --git a/sources/plugins/liststyle/lang/th.js b/sources/plugins/liststyle/lang/th.js
new file mode 100644
index 0000000..d1425e8
--- /dev/null
+++ b/sources/plugins/liststyle/lang/th.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'th', {
6 armenian: 'Armenian numbering',
7 bulletedTitle: 'Bulleted List Properties',
8 circle: 'Circle',
9 decimal: 'Decimal (1, 2, 3, etc.)',
10 decimalLeadingZero: 'Decimal leading zero (01, 02, 03, etc.)',
11 disc: 'Disc',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)',
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)',
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)',
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)',
16 none: 'None',
17 notset: '<not set>',
18 numberedTitle: 'Numbered List Properties',
19 square: 'Square',
20 start: 'Start',
21 type: 'Type',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)',
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)',
24 validateStartNumber: 'List start number must be a whole number.'
25} );
diff --git a/sources/plugins/liststyle/lang/tr.js b/sources/plugins/liststyle/lang/tr.js
new file mode 100644
index 0000000..f08131e
--- /dev/null
+++ b/sources/plugins/liststyle/lang/tr.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'tr', {
6 armenian: 'Ermenice sayılandırma',
7 bulletedTitle: 'Simgeli Liste Özellikleri',
8 circle: 'Daire',
9 decimal: 'Ondalık (1, 2, 3, vs.)',
10 decimalLeadingZero: 'Başı sıfırlı ondalık (01, 02, 03, vs.)',
11 disc: 'Disk',
12 georgian: 'Gürcüce numaralandırma (an, ban, gan, vs.)',
13 lowerAlpha: 'Küçük Alpha (a, b, c, d, e, vs.)',
14 lowerGreek: 'Küçük Greek (alpha, beta, gamma, vs.)',
15 lowerRoman: 'Küçük Roman (i, ii, iii, iv, v, vs.)',
16 none: 'Yok',
17 notset: '<ayarlanmamış>',
18 numberedTitle: 'Sayılandırılmış Liste Özellikleri',
19 square: 'Kare',
20 start: 'Başla',
21 type: 'Tipi',
22 upperAlpha: 'Büyük Alpha (A, B, C, D, E, vs.)',
23 upperRoman: 'Büyük Roman (I, II, III, IV, V, vs.)',
24 validateStartNumber: 'Liste başlangıcı tam sayı olmalıdır.'
25} );
diff --git a/sources/plugins/liststyle/lang/tt.js b/sources/plugins/liststyle/lang/tt.js
new file mode 100644
index 0000000..13991f4
--- /dev/null
+++ b/sources/plugins/liststyle/lang/tt.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'tt', {
6 armenian: 'Әрмән номерлавы',
7 bulletedTitle: 'Маркерлы тезмә үзлекләре',
8 circle: 'Түгәрәк',
9 decimal: 'Унарлы (1, 2, 3, ...)',
10 decimalLeadingZero: 'Ноль белән башланган унарлы (01, 02, 03, ...)',
11 disc: 'Диск',
12 georgian: 'Georgian numbering (an, ban, gan, etc.)', // MISSING
13 lowerAlpha: 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
14 lowerGreek: 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
15 lowerRoman: 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
16 none: 'Һичбер',
17 notset: '<билгеләнмәгән>',
18 numberedTitle: 'Номерлы тезмә үзлекләре',
19 square: 'Шакмак',
20 start: 'Башлау',
21 type: 'Төр',
22 upperAlpha: 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
23 upperRoman: 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
24 validateStartNumber: 'List start number must be a whole number.' // MISSING
25} );
diff --git a/sources/plugins/liststyle/lang/ug.js b/sources/plugins/liststyle/lang/ug.js
new file mode 100644
index 0000000..2d4336e
--- /dev/null
+++ b/sources/plugins/liststyle/lang/ug.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'ug', {
6 armenian: 'قەدىمكى ئەرمىنىيە تەرتىپ نومۇرى شەكلى',
7 bulletedTitle: 'تۈر بەلگە تىزىم خاسلىقى',
8 circle: 'بوش چەمبەر',
9 decimal: 'سان (1, 2, 3 قاتارلىق)',
10 decimalLeadingZero: 'نۆلدىن باشلانغان سان بەلگە (01, 02, 03 قاتارلىق)',
11 disc: 'تولدۇرۇلغان چەمبەر',
12 georgian: 'قەدىمكى جورجىيە تەرتىپ نومۇرى شەكلى (an, ban, gan قاتارلىق)',
13 lowerAlpha: 'ئىنگلىزچە كىچىك ھەرپ (a, b, c, d, e قاتارلىق)',
14 lowerGreek: 'گرېكچە كىچىك ھەرپ (alpha, beta, gamma قاتارلىق)',
15 lowerRoman: 'كىچىك ھەرپلىك رىم رەقىمى (i, ii, iii, iv, v قاتارلىق)',
16 none: 'بەلگە يوق',
17 notset: '‹تەڭشەلمىگەن›',
18 numberedTitle: 'تەرتىپ نومۇر تىزىم خاسلىقى',
19 square: 'تولدۇرۇلغان تۆت چاسا',
20 start: 'باشلىنىش نومۇرى',
21 type: 'بەلگە تىپى',
22 upperAlpha: 'ئىنگلىزچە چوڭ ھەرپ (A, B, C, D, E قاتارلىق)',
23 upperRoman: 'چوڭ ھەرپلىك رىم رەقىمى (I, II, III, IV, V قاتارلىق)',
24 validateStartNumber: 'تىزىم باشلىنىش تەرتىپ نومۇرى چوقۇم پۈتۈن سان پىچىمىدا بولۇشى لازىم'
25} );
diff --git a/sources/plugins/liststyle/lang/uk.js b/sources/plugins/liststyle/lang/uk.js
new file mode 100644
index 0000000..7ef2343
--- /dev/null
+++ b/sources/plugins/liststyle/lang/uk.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'uk', {
6 armenian: 'Вірменська нумерація',
7 bulletedTitle: 'Опції маркованого списку',
8 circle: 'Кільце',
9 decimal: 'Десяткові (1, 2, 3 і т.д.)',
10 decimalLeadingZero: 'Десяткові з нулем (01, 02, 03 і т.д.)',
11 disc: 'Кружечок',
12 georgian: 'Грузинська нумерація (an, ban, gan і т.д.)',
13 lowerAlpha: 'Малі лат. букви (a, b, c, d, e і т.д.)',
14 lowerGreek: 'Малі гр. букви (альфа, бета, гамма і т.д.)',
15 lowerRoman: 'Малі римські (i, ii, iii, iv, v і т.д.)',
16 none: 'Нема',
17 notset: '<не вказано>',
18 numberedTitle: 'Опції нумерованого списку',
19 square: 'Квадратик',
20 start: 'Почати з...',
21 type: 'Тип',
22 upperAlpha: 'Великі лат. букви (A, B, C, D, E і т.д.)',
23 upperRoman: 'Великі римські (I, II, III, IV, V і т.д.)',
24 validateStartNumber: 'Початковий номер списку повинен бути цілим числом.'
25} );
diff --git a/sources/plugins/liststyle/lang/vi.js b/sources/plugins/liststyle/lang/vi.js
new file mode 100644
index 0000000..c5ecc44
--- /dev/null
+++ b/sources/plugins/liststyle/lang/vi.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'vi', {
6 armenian: 'Số theo kiểu Armenian',
7 bulletedTitle: 'Thuộc tính danh sách không thứ tự',
8 circle: 'Khuyên tròn',
9 decimal: 'Kiểu số (1, 2, 3 ...)',
10 decimalLeadingZero: 'Kiểu số (01, 02, 03...)',
11 disc: 'Hình đĩa',
12 georgian: 'Số theo kiểu Georgian (an, ban, gan...)',
13 lowerAlpha: 'Kiểu abc thường (a, b, c, d, e...)',
14 lowerGreek: 'Kiểu Hy Lạp (alpha, beta, gamma...)',
15 lowerRoman: 'Số La Mã kiểu thường (i, ii, iii, iv, v...)',
16 none: 'Không gì cả',
17 notset: '<không thiết lập>',
18 numberedTitle: 'Thuộc tính danh sách có thứ tự',
19 square: 'Hình vuông',
20 start: 'Bắt đầu',
21 type: 'Kiểu loại',
22 upperAlpha: 'Kiểu ABC HOA (A, B, C, D, E...)',
23 upperRoman: 'Số La Mã kiểu HOA (I, II, III, IV, V...)',
24 validateStartNumber: 'Số bắt đầu danh sách phải là một số nguyên.'
25} );
diff --git a/sources/plugins/liststyle/lang/zh-cn.js b/sources/plugins/liststyle/lang/zh-cn.js
new file mode 100644
index 0000000..9d274c2
--- /dev/null
+++ b/sources/plugins/liststyle/lang/zh-cn.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'zh-cn', {
6 armenian: '传统的亚美尼亚编号方式',
7 bulletedTitle: '项目列表属性',
8 circle: '空心圆',
9 decimal: '数字 (1, 2, 3, 等)',
10 decimalLeadingZero: '0开头的数字标记(01, 02, 03, 等)',
11 disc: '实心圆',
12 georgian: '传统的乔治亚编号方式(an, ban, gan, 等)',
13 lowerAlpha: '小写英文字母(a, b, c, d, e, 等)',
14 lowerGreek: '小写希腊字母(alpha, beta, gamma, 等)',
15 lowerRoman: '小写罗马数字(i, ii, iii, iv, v, 等)',
16 none: '无标记',
17 notset: '<没有设置>',
18 numberedTitle: '编号列表属性',
19 square: '实心方块',
20 start: '开始序号',
21 type: '标记类型',
22 upperAlpha: '大写英文字母(A, B, C, D, E, 等)',
23 upperRoman: '大写罗马数字(I, II, III, IV, V, 等)',
24 validateStartNumber: '列表开始序号必须为整数格式'
25} );
diff --git a/sources/plugins/liststyle/lang/zh.js b/sources/plugins/liststyle/lang/zh.js
new file mode 100644
index 0000000..e832518
--- /dev/null
+++ b/sources/plugins/liststyle/lang/zh.js
@@ -0,0 +1,25 @@
1/*
2Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.md or http://ckeditor.com/license
4*/
5CKEDITOR.plugins.setLang( 'liststyle', 'zh', {
6 armenian: '亞美尼亞數字',
7 bulletedTitle: '項目符號清單屬性',
8 circle: '圓圈',
9 decimal: '小數點 (1, 2, 3, etc.)',
10 decimalLeadingZero: '前綴 0 十位數字 (01, 02, 03, 等)',
11 disc: '圓點',
12 georgian: '喬治王時代數字 (an, ban, gan, 等)',
13 lowerAlpha: '小寫字母 (a, b, c, d, e 等)',
14 lowerGreek: '小寫希臘字母 (alpha, beta, gamma, 等)',
15 lowerRoman: '小寫羅馬數字 (i, ii, iii, iv, v 等)',
16 none: '無',
17 notset: '<未設定>',
18 numberedTitle: '編號清單屬性',
19 square: '方塊',
20 start: '開始',
21 type: '類型',
22 upperAlpha: '大寫字母 (A, B, C, D, E 等)',
23 upperRoman: '大寫羅馬數字 (I, II, III, IV, V 等)',
24 validateStartNumber: '清單起始號碼須為一完整數字。'
25} );
diff --git a/sources/plugins/liststyle/plugin.js b/sources/plugins/liststyle/plugin.js
new file mode 100644
index 0000000..2d94142
--- /dev/null
+++ b/sources/plugins/liststyle/plugin.js
@@ -0,0 +1,75 @@
1/**
2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */
5
6( function() {
7 CKEDITOR.plugins.liststyle = {
8 requires: 'dialog,contextmenu',
9 // jscs:disable maximumLineLength
10 lang: 'af,ar,az,bg,bn,bs,ca,cs,cy,da,de,de-ch,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,oc,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn', // %REMOVE_LINE_CORE%
11 // jscs:enable maximumLineLength
12 init: function( editor ) {
13 if ( editor.blockless )
14 return;
15
16 var def, cmd;
17
18 def = new CKEDITOR.dialogCommand( 'numberedListStyle', {
19 requiredContent: 'ol',
20 allowedContent: 'ol{list-style-type}[start]; li{list-style-type}[value]',
21 contentTransformations: [
22 [ 'ol: listTypeToStyle' ]
23 ]
24 } );
25 cmd = editor.addCommand( 'numberedListStyle', def );
26 editor.addFeature( cmd );
27 CKEDITOR.dialog.add( 'numberedListStyle', this.path + 'dialogs/liststyle.js' );
28
29 def = new CKEDITOR.dialogCommand( 'bulletedListStyle', {
30 requiredContent: 'ul',
31 allowedContent: 'ul{list-style-type}',
32 contentTransformations: [
33 [ 'ul: listTypeToStyle' ]
34 ]
35 } );
36 cmd = editor.addCommand( 'bulletedListStyle', def );
37 editor.addFeature( cmd );
38 CKEDITOR.dialog.add( 'bulletedListStyle', this.path + 'dialogs/liststyle.js' );
39
40 //Register map group;
41 editor.addMenuGroup( 'list', 108 );
42
43 editor.addMenuItems( {
44 numberedlist: {
45 label: editor.lang.liststyle.numberedTitle,
46 group: 'list',
47 command: 'numberedListStyle'
48 },
49 bulletedlist: {
50 label: editor.lang.liststyle.bulletedTitle,
51 group: 'list',
52 command: 'bulletedListStyle'
53 }
54 } );
55
56 editor.contextMenu.addListener( function( element ) {
57 if ( !element || element.isReadOnly() )
58 return null;
59
60 while ( element ) {
61 var name = element.getName();
62 if ( name == 'ol' )
63 return { numberedlist: CKEDITOR.TRISTATE_OFF };
64 else if ( name == 'ul' )
65 return { bulletedlist: CKEDITOR.TRISTATE_OFF };
66
67 element = element.getParent();
68 }
69 return null;
70 } );
71 }
72 };
73
74 CKEDITOR.plugins.add( 'liststyle', CKEDITOR.plugins.liststyle );
75} )();