diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-02-19 23:38:52 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-02-19 23:38:52 +0100 |
commit | 3332bebe4da6dfa0fe3e4b2abddc84b1cc62f8f5 (patch) | |
tree | a4f77655fe55b79606e7d3416504686a1ab8b058 /sources/plugins/basicstyles | |
download | piedsjaloux-ckeditor-component-3332bebe4da6dfa0fe3e4b2abddc84b1cc62f8f5.tar.gz piedsjaloux-ckeditor-component-3332bebe4da6dfa0fe3e4b2abddc84b1cc62f8f5.tar.zst piedsjaloux-ckeditor-component-3332bebe4da6dfa0fe3e4b2abddc84b1cc62f8f5.zip |
Initial commit4.5.7
Diffstat (limited to 'sources/plugins/basicstyles')
80 files changed, 1013 insertions, 0 deletions
diff --git a/sources/plugins/basicstyles/icons/bold.png b/sources/plugins/basicstyles/icons/bold.png new file mode 100644 index 0000000..5ff84fe --- /dev/null +++ b/sources/plugins/basicstyles/icons/bold.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/bold.png b/sources/plugins/basicstyles/icons/hidpi/bold.png new file mode 100644 index 0000000..65acb29 --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/bold.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/italic.png b/sources/plugins/basicstyles/icons/hidpi/italic.png new file mode 100644 index 0000000..2b0f44e --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/italic.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/strike.png b/sources/plugins/basicstyles/icons/hidpi/strike.png new file mode 100644 index 0000000..ef045c8 --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/strike.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/subscript.png b/sources/plugins/basicstyles/icons/hidpi/subscript.png new file mode 100644 index 0000000..f12f4be --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/subscript.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/superscript.png b/sources/plugins/basicstyles/icons/hidpi/superscript.png new file mode 100644 index 0000000..4f7b762 --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/superscript.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/hidpi/underline.png b/sources/plugins/basicstyles/icons/hidpi/underline.png new file mode 100644 index 0000000..79702f6 --- /dev/null +++ b/sources/plugins/basicstyles/icons/hidpi/underline.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/italic.png b/sources/plugins/basicstyles/icons/italic.png new file mode 100644 index 0000000..64d1332 --- /dev/null +++ b/sources/plugins/basicstyles/icons/italic.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/strike.png b/sources/plugins/basicstyles/icons/strike.png new file mode 100644 index 0000000..31ea47a --- /dev/null +++ b/sources/plugins/basicstyles/icons/strike.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/subscript.png b/sources/plugins/basicstyles/icons/subscript.png new file mode 100644 index 0000000..bfe5420 --- /dev/null +++ b/sources/plugins/basicstyles/icons/subscript.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/superscript.png b/sources/plugins/basicstyles/icons/superscript.png new file mode 100644 index 0000000..a1eb2f1 --- /dev/null +++ b/sources/plugins/basicstyles/icons/superscript.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/icons/underline.png b/sources/plugins/basicstyles/icons/underline.png new file mode 100644 index 0000000..1dd0c59 --- /dev/null +++ b/sources/plugins/basicstyles/icons/underline.png | |||
Binary files differ | |||
diff --git a/sources/plugins/basicstyles/lang/af.js b/sources/plugins/basicstyles/lang/af.js new file mode 100644 index 0000000..3fbcb9c --- /dev/null +++ b/sources/plugins/basicstyles/lang/af.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'af', { | ||
6 | bold: 'Vet', | ||
7 | italic: 'Skuins', | ||
8 | strike: 'Deurgestreep', | ||
9 | subscript: 'Onderskrif', | ||
10 | superscript: 'Bo-skrif', | ||
11 | underline: 'Onderstreep' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ar.js b/sources/plugins/basicstyles/lang/ar.js new file mode 100644 index 0000000..8ed2b07 --- /dev/null +++ b/sources/plugins/basicstyles/lang/ar.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ar', { | ||
6 | bold: 'عريض', | ||
7 | italic: 'مائل', | ||
8 | strike: 'يتوسطه خط', | ||
9 | subscript: 'منخفض', | ||
10 | superscript: 'مرتفع', | ||
11 | underline: 'تسطير' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/bg.js b/sources/plugins/basicstyles/lang/bg.js new file mode 100644 index 0000000..e410766 --- /dev/null +++ b/sources/plugins/basicstyles/lang/bg.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'bg', { | ||
6 | bold: 'Удебелен', | ||
7 | italic: 'Наклонен', | ||
8 | strike: 'Зачертан текст', | ||
9 | subscript: 'Индексиран текст', | ||
10 | superscript: 'Суперскрипт', | ||
11 | underline: 'Подчертан' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/bn.js b/sources/plugins/basicstyles/lang/bn.js new file mode 100644 index 0000000..007520b --- /dev/null +++ b/sources/plugins/basicstyles/lang/bn.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'bn', { | ||
6 | bold: 'বোল্ড', | ||
7 | italic: 'ইটালিক', | ||
8 | strike: 'স্ট্রাইক থ্রু', | ||
9 | subscript: 'অধোলেখ', | ||
10 | superscript: 'অভিলেখ', | ||
11 | underline: 'আন্ডারলাইন' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/bs.js b/sources/plugins/basicstyles/lang/bs.js new file mode 100644 index 0000000..9484a8d --- /dev/null +++ b/sources/plugins/basicstyles/lang/bs.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'bs', { | ||
6 | bold: 'Boldiraj', | ||
7 | italic: 'Ukosi', | ||
8 | strike: 'Precrtaj', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Podvuci' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ca.js b/sources/plugins/basicstyles/lang/ca.js new file mode 100644 index 0000000..7d3cc03 --- /dev/null +++ b/sources/plugins/basicstyles/lang/ca.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ca', { | ||
6 | bold: 'Negreta', | ||
7 | italic: 'Cursiva', | ||
8 | strike: 'Ratllat', | ||
9 | subscript: 'Subíndex', | ||
10 | superscript: 'Superíndex', | ||
11 | underline: 'Subratllat' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/cs.js b/sources/plugins/basicstyles/lang/cs.js new file mode 100644 index 0000000..5322b5a --- /dev/null +++ b/sources/plugins/basicstyles/lang/cs.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'cs', { | ||
6 | bold: 'Tučné', | ||
7 | italic: 'Kurzíva', | ||
8 | strike: 'Přeškrtnuté', | ||
9 | subscript: 'Dolní index', | ||
10 | superscript: 'Horní index', | ||
11 | underline: 'Podtržené' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/cy.js b/sources/plugins/basicstyles/lang/cy.js new file mode 100644 index 0000000..4a207e8 --- /dev/null +++ b/sources/plugins/basicstyles/lang/cy.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'cy', { | ||
6 | bold: 'Bras', | ||
7 | italic: 'Italig', | ||
8 | strike: 'Llinell Trwyddo', | ||
9 | subscript: 'Is-sgript', | ||
10 | superscript: 'Uwchsgript', | ||
11 | underline: 'Tanlinellu' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/da.js b/sources/plugins/basicstyles/lang/da.js new file mode 100644 index 0000000..d1b1050 --- /dev/null +++ b/sources/plugins/basicstyles/lang/da.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'da', { | ||
6 | bold: 'Fed', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Gennemstreget', | ||
9 | subscript: 'Sænket skrift', | ||
10 | superscript: 'Hævet skrift', | ||
11 | underline: 'Understreget' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/de-ch.js b/sources/plugins/basicstyles/lang/de-ch.js new file mode 100644 index 0000000..21ade9f --- /dev/null +++ b/sources/plugins/basicstyles/lang/de-ch.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'de-ch', { | ||
6 | bold: 'Fett', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Durchgestrichen', | ||
9 | subscript: 'Tiefgestellt', | ||
10 | superscript: 'Hochgestellt', | ||
11 | underline: 'Unterstrichen' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/de.js b/sources/plugins/basicstyles/lang/de.js new file mode 100644 index 0000000..5c67cd9 --- /dev/null +++ b/sources/plugins/basicstyles/lang/de.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'de', { | ||
6 | bold: 'Fett', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Durchgestrichen', | ||
9 | subscript: 'Tiefgestellt', | ||
10 | superscript: 'Hochgestellt', | ||
11 | underline: 'Unterstrichen' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/el.js b/sources/plugins/basicstyles/lang/el.js new file mode 100644 index 0000000..899b794 --- /dev/null +++ b/sources/plugins/basicstyles/lang/el.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'el', { | ||
6 | bold: 'Έντονη', | ||
7 | italic: 'Πλάγια', | ||
8 | strike: 'Διακριτή Διαγραφή', | ||
9 | subscript: 'Δείκτης', | ||
10 | superscript: 'Εκθέτης', | ||
11 | underline: 'Υπογράμμιση' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/en-au.js b/sources/plugins/basicstyles/lang/en-au.js new file mode 100644 index 0000000..4c80293 --- /dev/null +++ b/sources/plugins/basicstyles/lang/en-au.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'en-au', { | ||
6 | bold: 'Bold', | ||
7 | italic: 'Italic', | ||
8 | strike: 'Strike Through', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Underline' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/en-ca.js b/sources/plugins/basicstyles/lang/en-ca.js new file mode 100644 index 0000000..e85611a --- /dev/null +++ b/sources/plugins/basicstyles/lang/en-ca.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'en-ca', { | ||
6 | bold: 'Bold', | ||
7 | italic: 'Italic', | ||
8 | strike: 'Strike Through', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Underline' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/en-gb.js b/sources/plugins/basicstyles/lang/en-gb.js new file mode 100644 index 0000000..b2cd62c --- /dev/null +++ b/sources/plugins/basicstyles/lang/en-gb.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'en-gb', { | ||
6 | bold: 'Bold', | ||
7 | italic: 'Italic', | ||
8 | strike: 'Strike Through', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Underline' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/en.js b/sources/plugins/basicstyles/lang/en.js new file mode 100644 index 0000000..7284189 --- /dev/null +++ b/sources/plugins/basicstyles/lang/en.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'en', { | ||
6 | bold: 'Bold', | ||
7 | italic: 'Italic', | ||
8 | strike: 'Strikethrough', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Underline' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/eo.js b/sources/plugins/basicstyles/lang/eo.js new file mode 100644 index 0000000..0fef072 --- /dev/null +++ b/sources/plugins/basicstyles/lang/eo.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'eo', { | ||
6 | bold: 'Grasa', | ||
7 | italic: 'Kursiva', | ||
8 | strike: 'Trastreko', | ||
9 | subscript: 'Suba indico', | ||
10 | superscript: 'Supra indico', | ||
11 | underline: 'Substreko' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/es.js b/sources/plugins/basicstyles/lang/es.js new file mode 100644 index 0000000..b44dbf7 --- /dev/null +++ b/sources/plugins/basicstyles/lang/es.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'es', { | ||
6 | bold: 'Negrita', | ||
7 | italic: 'Cursiva', | ||
8 | strike: 'Tachado', | ||
9 | subscript: 'Subíndice', | ||
10 | superscript: 'Superíndice', | ||
11 | underline: 'Subrayado' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/et.js b/sources/plugins/basicstyles/lang/et.js new file mode 100644 index 0000000..18d1a04 --- /dev/null +++ b/sources/plugins/basicstyles/lang/et.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'et', { | ||
6 | bold: 'Paks', | ||
7 | italic: 'Kursiiv', | ||
8 | strike: 'Läbijoonitud', | ||
9 | subscript: 'Allindeks', | ||
10 | superscript: 'Ülaindeks', | ||
11 | underline: 'Allajoonitud' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/eu.js b/sources/plugins/basicstyles/lang/eu.js new file mode 100644 index 0000000..97f4075 --- /dev/null +++ b/sources/plugins/basicstyles/lang/eu.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'eu', { | ||
6 | bold: 'Lodia', | ||
7 | italic: 'Etzana', | ||
8 | strike: 'Marratua', | ||
9 | subscript: 'Azpi-indizea', | ||
10 | superscript: 'Goi-indizea', | ||
11 | underline: 'Azpimarratu' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/fa.js b/sources/plugins/basicstyles/lang/fa.js new file mode 100644 index 0000000..21cea30 --- /dev/null +++ b/sources/plugins/basicstyles/lang/fa.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'fa', { | ||
6 | bold: 'درشت', | ||
7 | italic: 'خمیده', | ||
8 | strike: 'خطخورده', | ||
9 | subscript: 'زیرنویس', | ||
10 | superscript: 'بالانویس', | ||
11 | underline: 'زیرخطدار' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/fi.js b/sources/plugins/basicstyles/lang/fi.js new file mode 100644 index 0000000..83b2fca --- /dev/null +++ b/sources/plugins/basicstyles/lang/fi.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'fi', { | ||
6 | bold: 'Lihavoitu', | ||
7 | italic: 'Kursivoitu', | ||
8 | strike: 'Yliviivattu', | ||
9 | subscript: 'Alaindeksi', | ||
10 | superscript: 'Yläindeksi', | ||
11 | underline: 'Alleviivattu' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/fo.js b/sources/plugins/basicstyles/lang/fo.js new file mode 100644 index 0000000..4af4e21 --- /dev/null +++ b/sources/plugins/basicstyles/lang/fo.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'fo', { | ||
6 | bold: 'Feit skrift', | ||
7 | italic: 'Skráskrift', | ||
8 | strike: 'Yvirstrikað', | ||
9 | subscript: 'Lækkað skrift', | ||
10 | superscript: 'Hækkað skrift', | ||
11 | underline: 'Undirstrikað' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/fr-ca.js b/sources/plugins/basicstyles/lang/fr-ca.js new file mode 100644 index 0000000..1a1f013 --- /dev/null +++ b/sources/plugins/basicstyles/lang/fr-ca.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'fr-ca', { | ||
6 | bold: 'Gras', | ||
7 | italic: 'Italique', | ||
8 | strike: 'Barré', | ||
9 | subscript: 'Indice', | ||
10 | superscript: 'Exposant', | ||
11 | underline: 'Souligné' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/fr.js b/sources/plugins/basicstyles/lang/fr.js new file mode 100644 index 0000000..65d8877 --- /dev/null +++ b/sources/plugins/basicstyles/lang/fr.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'fr', { | ||
6 | bold: 'Gras', | ||
7 | italic: 'Italique', | ||
8 | strike: 'Barré', | ||
9 | subscript: 'Indice', | ||
10 | superscript: 'Exposant', | ||
11 | underline: 'Souligné' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/gl.js b/sources/plugins/basicstyles/lang/gl.js new file mode 100644 index 0000000..597f06b --- /dev/null +++ b/sources/plugins/basicstyles/lang/gl.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'gl', { | ||
6 | bold: 'Negra', | ||
7 | italic: 'Cursiva', | ||
8 | strike: 'Riscado', | ||
9 | subscript: 'Subíndice', | ||
10 | superscript: 'Superíndice', | ||
11 | underline: 'Subliñado' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/gu.js b/sources/plugins/basicstyles/lang/gu.js new file mode 100644 index 0000000..3ca4b60 --- /dev/null +++ b/sources/plugins/basicstyles/lang/gu.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'gu', { | ||
6 | bold: 'બોલ્ડ/સ્પષ્ટ', | ||
7 | italic: 'ઇટેલિક, ત્રાંસા', | ||
8 | strike: 'છેકી નાખવું', | ||
9 | subscript: 'એક ચિહ્નની નીચે કરેલું બીજું ચિહ્ન', | ||
10 | superscript: 'એક ચિહ્ન ઉપર કરેલું બીજું ચિહ્ન.', | ||
11 | underline: 'અન્ડર્લાઇન, નીચે લીટી' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/he.js b/sources/plugins/basicstyles/lang/he.js new file mode 100644 index 0000000..5d73395 --- /dev/null +++ b/sources/plugins/basicstyles/lang/he.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'he', { | ||
6 | bold: 'מודגש', | ||
7 | italic: 'נטוי', | ||
8 | strike: 'כתיב מחוק', | ||
9 | subscript: 'כתיב תחתון', | ||
10 | superscript: 'כתיב עליון', | ||
11 | underline: 'קו תחתון' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/hi.js b/sources/plugins/basicstyles/lang/hi.js new file mode 100644 index 0000000..0beaa59 --- /dev/null +++ b/sources/plugins/basicstyles/lang/hi.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'hi', { | ||
6 | bold: 'बोल्ड', | ||
7 | italic: 'इटैलिक', | ||
8 | strike: 'स्ट्राइक थ्रू', | ||
9 | subscript: 'अधोलेख', | ||
10 | superscript: 'अभिलेख', | ||
11 | underline: 'रेखांकण' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/hr.js b/sources/plugins/basicstyles/lang/hr.js new file mode 100644 index 0000000..ef1c439 --- /dev/null +++ b/sources/plugins/basicstyles/lang/hr.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'hr', { | ||
6 | bold: 'Podebljaj', | ||
7 | italic: 'Ukosi', | ||
8 | strike: 'Precrtano', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Potcrtano' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/hu.js b/sources/plugins/basicstyles/lang/hu.js new file mode 100644 index 0000000..36081b3 --- /dev/null +++ b/sources/plugins/basicstyles/lang/hu.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'hu', { | ||
6 | bold: 'Félkövér', | ||
7 | italic: 'Dőlt', | ||
8 | strike: 'Áthúzott', | ||
9 | subscript: 'Alsó index', | ||
10 | superscript: 'Felső index', | ||
11 | underline: 'Aláhúzott' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/id.js b/sources/plugins/basicstyles/lang/id.js new file mode 100644 index 0000000..8bad46e --- /dev/null +++ b/sources/plugins/basicstyles/lang/id.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'id', { | ||
6 | bold: 'Huruf Tebal', | ||
7 | italic: 'Huruf Miring', | ||
8 | strike: 'Strikethrough', // MISSING | ||
9 | subscript: 'Subscript', // MISSING | ||
10 | superscript: 'Superscript', // MISSING | ||
11 | underline: 'Garis Bawah' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/is.js b/sources/plugins/basicstyles/lang/is.js new file mode 100644 index 0000000..67a4cff --- /dev/null +++ b/sources/plugins/basicstyles/lang/is.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'is', { | ||
6 | bold: 'Feitletrað', | ||
7 | italic: 'Skáletrað', | ||
8 | strike: 'Yfirstrikað', | ||
9 | subscript: 'Niðurskrifað', | ||
10 | superscript: 'Uppskrifað', | ||
11 | underline: 'Undirstrikað' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/it.js b/sources/plugins/basicstyles/lang/it.js new file mode 100644 index 0000000..bbd38a7 --- /dev/null +++ b/sources/plugins/basicstyles/lang/it.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'it', { | ||
6 | bold: 'Grassetto', | ||
7 | italic: 'Corsivo', | ||
8 | strike: 'Barrato', | ||
9 | subscript: 'Pedice', | ||
10 | superscript: 'Apice', | ||
11 | underline: 'Sottolineato' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ja.js b/sources/plugins/basicstyles/lang/ja.js new file mode 100644 index 0000000..a28beba --- /dev/null +++ b/sources/plugins/basicstyles/lang/ja.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ja', { | ||
6 | bold: '太字', | ||
7 | italic: '斜体', | ||
8 | strike: '打ち消し線', | ||
9 | subscript: '下付き', | ||
10 | superscript: '上付き', | ||
11 | underline: '下線' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ka.js b/sources/plugins/basicstyles/lang/ka.js new file mode 100644 index 0000000..10be39d --- /dev/null +++ b/sources/plugins/basicstyles/lang/ka.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ka', { | ||
6 | bold: 'მსხვილი', | ||
7 | italic: 'დახრილი', | ||
8 | strike: 'გადახაზული', | ||
9 | subscript: 'ინდექსი', | ||
10 | superscript: 'ხარისხი', | ||
11 | underline: 'გახაზული' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/km.js b/sources/plugins/basicstyles/lang/km.js new file mode 100644 index 0000000..256559c --- /dev/null +++ b/sources/plugins/basicstyles/lang/km.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'km', { | ||
6 | bold: 'ដិត', | ||
7 | italic: 'ទ្រេត', | ||
8 | strike: 'គូសបន្ទាត់ចំកណ្ដាល', | ||
9 | subscript: 'អក្សរតូចក្រោម', | ||
10 | superscript: 'អក្សរតូចលើ', | ||
11 | underline: 'គូសបន្ទាត់ក្រោម' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ko.js b/sources/plugins/basicstyles/lang/ko.js new file mode 100644 index 0000000..0a988f4 --- /dev/null +++ b/sources/plugins/basicstyles/lang/ko.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ko', { | ||
6 | bold: '굵게', | ||
7 | italic: '기울임꼴', | ||
8 | strike: '취소선', | ||
9 | subscript: '아래 첨자', | ||
10 | superscript: '위 첨자', | ||
11 | underline: '밑줄' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ku.js b/sources/plugins/basicstyles/lang/ku.js new file mode 100644 index 0000000..99100cb --- /dev/null +++ b/sources/plugins/basicstyles/lang/ku.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ku', { | ||
6 | bold: 'قەڵەو', | ||
7 | italic: 'لار', | ||
8 | strike: 'لێدان', | ||
9 | subscript: 'ژێرنووس', | ||
10 | superscript: 'سەرنووس', | ||
11 | underline: 'ژێرهێڵ' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/lt.js b/sources/plugins/basicstyles/lang/lt.js new file mode 100644 index 0000000..8ea74dd --- /dev/null +++ b/sources/plugins/basicstyles/lang/lt.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'lt', { | ||
6 | bold: 'Pusjuodis', | ||
7 | italic: 'Kursyvas', | ||
8 | strike: 'Perbrauktas', | ||
9 | subscript: 'Apatinis indeksas', | ||
10 | superscript: 'Viršutinis indeksas', | ||
11 | underline: 'Pabrauktas' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/lv.js b/sources/plugins/basicstyles/lang/lv.js new file mode 100644 index 0000000..38bbe70 --- /dev/null +++ b/sources/plugins/basicstyles/lang/lv.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'lv', { | ||
6 | bold: 'Treknināts', | ||
7 | italic: 'Kursīvs', | ||
8 | strike: 'Pārsvītrots', | ||
9 | subscript: 'Apakšrakstā', | ||
10 | superscript: 'Augšrakstā', | ||
11 | underline: 'Pasvītrots' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/mk.js b/sources/plugins/basicstyles/lang/mk.js new file mode 100644 index 0000000..478ce87 --- /dev/null +++ b/sources/plugins/basicstyles/lang/mk.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'mk', { | ||
6 | bold: 'Здебелено', | ||
7 | italic: 'Накривено', | ||
8 | strike: 'Прецртано', | ||
9 | subscript: 'Долен индекс', | ||
10 | superscript: 'Горен индекс', | ||
11 | underline: 'Подвлечено' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/mn.js b/sources/plugins/basicstyles/lang/mn.js new file mode 100644 index 0000000..7edec37 --- /dev/null +++ b/sources/plugins/basicstyles/lang/mn.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'mn', { | ||
6 | bold: 'Тод бүдүүн', | ||
7 | italic: 'Налуу', | ||
8 | strike: 'Дундуур нь зураастай болгох', | ||
9 | subscript: 'Суурь болгох', | ||
10 | superscript: 'Зэрэг болгох', | ||
11 | underline: 'Доогуур нь зураастай болгох' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ms.js b/sources/plugins/basicstyles/lang/ms.js new file mode 100644 index 0000000..0fc9f9b --- /dev/null +++ b/sources/plugins/basicstyles/lang/ms.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ms', { | ||
6 | bold: 'Bold', | ||
7 | italic: 'Italic', | ||
8 | strike: 'Strike Through', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Underline' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/nb.js b/sources/plugins/basicstyles/lang/nb.js new file mode 100644 index 0000000..b5f922a --- /dev/null +++ b/sources/plugins/basicstyles/lang/nb.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'nb', { | ||
6 | bold: 'Fet', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Gjennomstreking', | ||
9 | subscript: 'Senket skrift', | ||
10 | superscript: 'Hevet skrift', | ||
11 | underline: 'Understreking' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/nl.js b/sources/plugins/basicstyles/lang/nl.js new file mode 100644 index 0000000..92cad81 --- /dev/null +++ b/sources/plugins/basicstyles/lang/nl.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'nl', { | ||
6 | bold: 'Vet', | ||
7 | italic: 'Cursief', | ||
8 | strike: 'Doorhalen', | ||
9 | subscript: 'Subscript', | ||
10 | superscript: 'Superscript', | ||
11 | underline: 'Onderstrepen' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/no.js b/sources/plugins/basicstyles/lang/no.js new file mode 100644 index 0000000..300659a --- /dev/null +++ b/sources/plugins/basicstyles/lang/no.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'no', { | ||
6 | bold: 'Fet', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Gjennomstreking', | ||
9 | subscript: 'Senket skrift', | ||
10 | superscript: 'Hevet skrift', | ||
11 | underline: 'Understreking' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/pl.js b/sources/plugins/basicstyles/lang/pl.js new file mode 100644 index 0000000..321f895 --- /dev/null +++ b/sources/plugins/basicstyles/lang/pl.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'pl', { | ||
6 | bold: 'Pogrubienie', | ||
7 | italic: 'Kursywa', | ||
8 | strike: 'Przekreślenie', | ||
9 | subscript: 'Indeks dolny', | ||
10 | superscript: 'Indeks górny', | ||
11 | underline: 'Podkreślenie' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/pt-br.js b/sources/plugins/basicstyles/lang/pt-br.js new file mode 100644 index 0000000..fad08d4 --- /dev/null +++ b/sources/plugins/basicstyles/lang/pt-br.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'pt-br', { | ||
6 | bold: 'Negrito', | ||
7 | italic: 'Itálico', | ||
8 | strike: 'Tachado', | ||
9 | subscript: 'Subscrito', | ||
10 | superscript: 'Sobrescrito', | ||
11 | underline: 'Sublinhado' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/pt.js b/sources/plugins/basicstyles/lang/pt.js new file mode 100644 index 0000000..85de020 --- /dev/null +++ b/sources/plugins/basicstyles/lang/pt.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'pt', { | ||
6 | bold: 'Negrito', | ||
7 | italic: 'Itálico', | ||
8 | strike: 'Rasurado', | ||
9 | subscript: 'Superior à linha', | ||
10 | superscript: 'Inferior à Linha', | ||
11 | underline: 'Sublinhado' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ro.js b/sources/plugins/basicstyles/lang/ro.js new file mode 100644 index 0000000..c274ded --- /dev/null +++ b/sources/plugins/basicstyles/lang/ro.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ro', { | ||
6 | bold: 'Îngroşat (bold)', | ||
7 | italic: 'Înclinat (italic)', | ||
8 | strike: 'Tăiat (strike through)', | ||
9 | subscript: 'Indice (subscript)', | ||
10 | superscript: 'Putere (superscript)', | ||
11 | underline: 'Subliniat (underline)' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ru.js b/sources/plugins/basicstyles/lang/ru.js new file mode 100644 index 0000000..25cdf88 --- /dev/null +++ b/sources/plugins/basicstyles/lang/ru.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ru', { | ||
6 | bold: 'Полужирный', | ||
7 | italic: 'Курсив', | ||
8 | strike: 'Зачеркнутый', | ||
9 | subscript: 'Подстрочный индекс', | ||
10 | superscript: 'Надстрочный индекс', | ||
11 | underline: 'Подчеркнутый' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/si.js b/sources/plugins/basicstyles/lang/si.js new file mode 100644 index 0000000..fbd052e --- /dev/null +++ b/sources/plugins/basicstyles/lang/si.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'si', { | ||
6 | bold: 'තද අකුරින් ලියනලද', | ||
7 | italic: 'බැධීඅකුරින් ලියන ලද', | ||
8 | strike: 'Strikethrough', // MISSING | ||
9 | subscript: 'Subscript', // MISSING | ||
10 | superscript: 'Superscript', // MISSING | ||
11 | underline: 'යටින් ඉරි අදින ලද' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sk.js b/sources/plugins/basicstyles/lang/sk.js new file mode 100644 index 0000000..3a19d9b --- /dev/null +++ b/sources/plugins/basicstyles/lang/sk.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sk', { | ||
6 | bold: 'Tučné', | ||
7 | italic: 'Kurzíva', | ||
8 | strike: 'Prečiarknuté', | ||
9 | subscript: 'Dolný index', | ||
10 | superscript: 'Horný index', | ||
11 | underline: 'Podčiarknuté' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sl.js b/sources/plugins/basicstyles/lang/sl.js new file mode 100644 index 0000000..d6a0dbc --- /dev/null +++ b/sources/plugins/basicstyles/lang/sl.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sl', { | ||
6 | bold: 'Krepko', | ||
7 | italic: 'Ležeče', | ||
8 | strike: 'Prečrtano', | ||
9 | subscript: 'Podpisano', | ||
10 | superscript: 'Nadpisano', | ||
11 | underline: 'Podčrtano' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sq.js b/sources/plugins/basicstyles/lang/sq.js new file mode 100644 index 0000000..7604a7a --- /dev/null +++ b/sources/plugins/basicstyles/lang/sq.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sq', { | ||
6 | bold: 'Trash', | ||
7 | italic: 'Pjerrët', | ||
8 | strike: 'Nëpërmes', | ||
9 | subscript: 'Nën-skriptë', | ||
10 | superscript: 'Super-skriptë', | ||
11 | underline: 'Nënvijëzuar' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sr-latn.js b/sources/plugins/basicstyles/lang/sr-latn.js new file mode 100644 index 0000000..6c87984 --- /dev/null +++ b/sources/plugins/basicstyles/lang/sr-latn.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sr-latn', { | ||
6 | bold: 'Podebljano', | ||
7 | italic: 'Kurziv', | ||
8 | strike: 'Precrtano', | ||
9 | subscript: 'Indeks', | ||
10 | superscript: 'Stepen', | ||
11 | underline: 'Podvučeno' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sr.js b/sources/plugins/basicstyles/lang/sr.js new file mode 100644 index 0000000..f0cc6eb --- /dev/null +++ b/sources/plugins/basicstyles/lang/sr.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sr', { | ||
6 | bold: 'Подебљано', | ||
7 | italic: 'Курзив', | ||
8 | strike: 'Прецртано', | ||
9 | subscript: 'Индекс', | ||
10 | superscript: 'Степен', | ||
11 | underline: 'Подвучено' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/sv.js b/sources/plugins/basicstyles/lang/sv.js new file mode 100644 index 0000000..d11c18c --- /dev/null +++ b/sources/plugins/basicstyles/lang/sv.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'sv', { | ||
6 | bold: 'Fet', | ||
7 | italic: 'Kursiv', | ||
8 | strike: 'Genomstruken', | ||
9 | subscript: 'Nedsänkta tecken', | ||
10 | superscript: 'Upphöjda tecken', | ||
11 | underline: 'Understruken' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/th.js b/sources/plugins/basicstyles/lang/th.js new file mode 100644 index 0000000..91c0cea --- /dev/null +++ b/sources/plugins/basicstyles/lang/th.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'th', { | ||
6 | bold: 'ตัวหนา', | ||
7 | italic: 'ตัวเอียง', | ||
8 | strike: 'ตัวขีดเส้นทับ', | ||
9 | subscript: 'ตัวห้อย', | ||
10 | superscript: 'ตัวยก', | ||
11 | underline: 'ตัวขีดเส้นใต้' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/tr.js b/sources/plugins/basicstyles/lang/tr.js new file mode 100644 index 0000000..62f6d09 --- /dev/null +++ b/sources/plugins/basicstyles/lang/tr.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'tr', { | ||
6 | bold: 'Kalın', | ||
7 | italic: 'İtalik', | ||
8 | strike: 'Üstü Çizgili', | ||
9 | subscript: 'Alt Simge', | ||
10 | superscript: 'Üst Simge', | ||
11 | underline: 'Altı Çizgili' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/tt.js b/sources/plugins/basicstyles/lang/tt.js new file mode 100644 index 0000000..13e0217 --- /dev/null +++ b/sources/plugins/basicstyles/lang/tt.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'tt', { | ||
6 | bold: 'Калын', | ||
7 | italic: 'Курсив', | ||
8 | strike: 'Сызылган', | ||
9 | subscript: 'Аскы индекс', | ||
10 | superscript: 'Өске индекс', | ||
11 | underline: 'Астына сызылган' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/ug.js b/sources/plugins/basicstyles/lang/ug.js new file mode 100644 index 0000000..780e7b7 --- /dev/null +++ b/sources/plugins/basicstyles/lang/ug.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'ug', { | ||
6 | bold: 'توم', | ||
7 | italic: 'يانتۇ', | ||
8 | strike: 'ئۆچۈرۈش سىزىقى', | ||
9 | subscript: 'تۆۋەن ئىندېكس', | ||
10 | superscript: 'يۇقىرى ئىندېكس', | ||
11 | underline: 'ئاستى سىزىق' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/uk.js b/sources/plugins/basicstyles/lang/uk.js new file mode 100644 index 0000000..66e9f6a --- /dev/null +++ b/sources/plugins/basicstyles/lang/uk.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'uk', { | ||
6 | bold: 'Жирний', | ||
7 | italic: 'Курсив', | ||
8 | strike: 'Закреслений', | ||
9 | subscript: 'Нижній індекс', | ||
10 | superscript: 'Верхній індекс', | ||
11 | underline: 'Підкреслений' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/vi.js b/sources/plugins/basicstyles/lang/vi.js new file mode 100644 index 0000000..510ec58 --- /dev/null +++ b/sources/plugins/basicstyles/lang/vi.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'vi', { | ||
6 | bold: 'Đậm', | ||
7 | italic: 'Nghiêng', | ||
8 | strike: 'Gạch xuyên ngang', | ||
9 | subscript: 'Chỉ số dưới', | ||
10 | superscript: 'Chỉ số trên', | ||
11 | underline: 'Gạch chân' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/zh-cn.js b/sources/plugins/basicstyles/lang/zh-cn.js new file mode 100644 index 0000000..1b7e89f --- /dev/null +++ b/sources/plugins/basicstyles/lang/zh-cn.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'zh-cn', { | ||
6 | bold: '加粗', | ||
7 | italic: '倾斜', | ||
8 | strike: '删除线', | ||
9 | subscript: '下标', | ||
10 | superscript: '上标', | ||
11 | underline: '下划线' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/lang/zh.js b/sources/plugins/basicstyles/lang/zh.js new file mode 100644 index 0000000..6e75580 --- /dev/null +++ b/sources/plugins/basicstyles/lang/zh.js | |||
@@ -0,0 +1,12 @@ | |||
1 | /* | ||
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | CKEDITOR.plugins.setLang( 'basicstyles', 'zh', { | ||
6 | bold: '粗體', | ||
7 | italic: '斜體', | ||
8 | strike: '刪除線', | ||
9 | subscript: '下標', | ||
10 | superscript: '上標', | ||
11 | underline: '底線' | ||
12 | } ); | ||
diff --git a/sources/plugins/basicstyles/plugin.js b/sources/plugins/basicstyles/plugin.js new file mode 100644 index 0000000..6960e2e --- /dev/null +++ b/sources/plugins/basicstyles/plugin.js | |||
@@ -0,0 +1,209 @@ | |||
1 | /** | ||
2 | * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. | ||
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | |||
6 | CKEDITOR.plugins.add( 'basicstyles', { | ||
7 | // jscs:disable maximumLineLength | ||
8 | lang: 'af,ar,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,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% | ||
9 | // jscs:enable maximumLineLength | ||
10 | icons: 'bold,italic,underline,strike,subscript,superscript', // %REMOVE_LINE_CORE% | ||
11 | hidpi: true, // %REMOVE_LINE_CORE% | ||
12 | init: function( editor ) { | ||
13 | var order = 0; | ||
14 | // All buttons use the same code to register. So, to avoid | ||
15 | // duplications, let's use this tool function. | ||
16 | var addButtonCommand = function( buttonName, buttonLabel, commandName, styleDefiniton ) { | ||
17 | // Disable the command if no definition is configured. | ||
18 | if ( !styleDefiniton ) | ||
19 | return; | ||
20 | |||
21 | var style = new CKEDITOR.style( styleDefiniton ), | ||
22 | forms = contentForms[ commandName ]; | ||
23 | |||
24 | // Put the style as the most important form. | ||
25 | forms.unshift( style ); | ||
26 | |||
27 | // Listen to contextual style activation. | ||
28 | editor.attachStyleStateChange( style, function( state ) { | ||
29 | !editor.readOnly && editor.getCommand( commandName ).setState( state ); | ||
30 | } ); | ||
31 | |||
32 | // Create the command that can be used to apply the style. | ||
33 | editor.addCommand( commandName, new CKEDITOR.styleCommand( style, { | ||
34 | contentForms: forms | ||
35 | } ) ); | ||
36 | |||
37 | // Register the button, if the button plugin is loaded. | ||
38 | if ( editor.ui.addButton ) { | ||
39 | editor.ui.addButton( buttonName, { | ||
40 | label: buttonLabel, | ||
41 | command: commandName, | ||
42 | toolbar: 'basicstyles,' + ( order += 10 ) | ||
43 | } ); | ||
44 | } | ||
45 | }; | ||
46 | |||
47 | var contentForms = { | ||
48 | bold: [ | ||
49 | 'strong', | ||
50 | 'b', | ||
51 | [ 'span', function( el ) { | ||
52 | var fw = el.styles[ 'font-weight' ]; | ||
53 | return fw == 'bold' || +fw >= 700; | ||
54 | } ] | ||
55 | ], | ||
56 | |||
57 | italic: [ | ||
58 | 'em', | ||
59 | 'i', | ||
60 | [ 'span', function( el ) { | ||
61 | return el.styles[ 'font-style' ] == 'italic'; | ||
62 | } ] | ||
63 | ], | ||
64 | |||
65 | underline: [ | ||
66 | 'u', | ||
67 | [ 'span', function( el ) { | ||
68 | return el.styles[ 'text-decoration' ] == 'underline'; | ||
69 | } ] | ||
70 | ], | ||
71 | |||
72 | strike: [ | ||
73 | 's', | ||
74 | 'strike', | ||
75 | [ 'span', function( el ) { | ||
76 | return el.styles[ 'text-decoration' ] == 'line-through'; | ||
77 | } ] | ||
78 | ], | ||
79 | |||
80 | subscript: [ | ||
81 | 'sub' | ||
82 | ], | ||
83 | |||
84 | superscript: [ | ||
85 | 'sup' | ||
86 | ] | ||
87 | }, | ||
88 | config = editor.config, | ||
89 | lang = editor.lang.basicstyles; | ||
90 | |||
91 | addButtonCommand( 'Bold', lang.bold, 'bold', config.coreStyles_bold ); | ||
92 | addButtonCommand( 'Italic', lang.italic, 'italic', config.coreStyles_italic ); | ||
93 | addButtonCommand( 'Underline', lang.underline, 'underline', config.coreStyles_underline ); | ||
94 | addButtonCommand( 'Strike', lang.strike, 'strike', config.coreStyles_strike ); | ||
95 | addButtonCommand( 'Subscript', lang.subscript, 'subscript', config.coreStyles_subscript ); | ||
96 | addButtonCommand( 'Superscript', lang.superscript, 'superscript', config.coreStyles_superscript ); | ||
97 | |||
98 | editor.setKeystroke( [ | ||
99 | [ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], | ||
100 | [ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], | ||
101 | [ CKEDITOR.CTRL + 85 /*U*/, 'underline' ] | ||
102 | ] ); | ||
103 | } | ||
104 | } ); | ||
105 | |||
106 | // Basic Inline Styles. | ||
107 | |||
108 | /** | ||
109 | * The style definition that applies the **bold** style to the text. | ||
110 | * | ||
111 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
112 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
113 | * | ||
114 | * config.coreStyles_bold = { element: 'b', overrides: 'strong' }; | ||
115 | * | ||
116 | * config.coreStyles_bold = { | ||
117 | * element: 'span', | ||
118 | * attributes: { 'class': 'Bold' } | ||
119 | * }; | ||
120 | * | ||
121 | * @cfg | ||
122 | * @member CKEDITOR.config | ||
123 | */ | ||
124 | CKEDITOR.config.coreStyles_bold = { element: 'strong', overrides: 'b' }; | ||
125 | |||
126 | /** | ||
127 | * The style definition that applies the *italics* style to the text. | ||
128 | * | ||
129 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
130 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
131 | * | ||
132 | * config.coreStyles_italic = { element: 'i', overrides: 'em' }; | ||
133 | * | ||
134 | * CKEDITOR.config.coreStyles_italic = { | ||
135 | * element: 'span', | ||
136 | * attributes: { 'class': 'Italic' } | ||
137 | * }; | ||
138 | * | ||
139 | * @cfg | ||
140 | * @member CKEDITOR.config | ||
141 | */ | ||
142 | CKEDITOR.config.coreStyles_italic = { element: 'em', overrides: 'i' }; | ||
143 | |||
144 | /** | ||
145 | * The style definition that applies the <u>underline</u> style to the text. | ||
146 | * | ||
147 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
148 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
149 | * | ||
150 | * CKEDITOR.config.coreStyles_underline = { | ||
151 | * element: 'span', | ||
152 | * attributes: { 'class': 'Underline' } | ||
153 | * }; | ||
154 | * | ||
155 | * @cfg | ||
156 | * @member CKEDITOR.config | ||
157 | */ | ||
158 | CKEDITOR.config.coreStyles_underline = { element: 'u' }; | ||
159 | |||
160 | /** | ||
161 | * The style definition that applies the <strike>strikethrough</strike> style to the text. | ||
162 | * | ||
163 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
164 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
165 | * | ||
166 | * CKEDITOR.config.coreStyles_strike = { | ||
167 | * element: 'span', | ||
168 | * attributes: { 'class': 'Strikethrough' }, | ||
169 | * overrides: 'strike' | ||
170 | * }; | ||
171 | * | ||
172 | * @cfg | ||
173 | * @member CKEDITOR.config | ||
174 | */ | ||
175 | CKEDITOR.config.coreStyles_strike = { element: 's', overrides: 'strike' }; | ||
176 | |||
177 | /** | ||
178 | * The style definition that applies the subscript style to the text. | ||
179 | * | ||
180 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
181 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
182 | * | ||
183 | * CKEDITOR.config.coreStyles_subscript = { | ||
184 | * element: 'span', | ||
185 | * attributes: { 'class': 'Subscript' }, | ||
186 | * overrides: 'sub' | ||
187 | * }; | ||
188 | * | ||
189 | * @cfg | ||
190 | * @member CKEDITOR.config | ||
191 | */ | ||
192 | CKEDITOR.config.coreStyles_subscript = { element: 'sub' }; | ||
193 | |||
194 | /** | ||
195 | * The style definition that applies the superscript style to the text. | ||
196 | * | ||
197 | * Read more in the [documentation](#!/guide/dev_basicstyles) | ||
198 | * and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html). | ||
199 | * | ||
200 | * CKEDITOR.config.coreStyles_superscript = { | ||
201 | * element: 'span', | ||
202 | * attributes: { 'class': 'Superscript' }, | ||
203 | * overrides: 'sup' | ||
204 | * }; | ||
205 | * | ||
206 | * @cfg | ||
207 | * @member CKEDITOR.config | ||
208 | */ | ||
209 | CKEDITOR.config.coreStyles_superscript = { element: 'sup' }; | ||