@ckeditor/ckeditor5-document-outline 0.0.1 → 38.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +37 -2
- package/build/document-outline.js +5 -0
- package/build/translations/ar.js +1 -0
- package/build/translations/bg.js +1 -0
- package/build/translations/bn.js +1 -0
- package/build/translations/ca.js +1 -0
- package/build/translations/cs.js +1 -0
- package/build/translations/da.js +1 -0
- package/build/translations/de.js +1 -0
- package/build/translations/el.js +1 -0
- package/build/translations/en-au.js +1 -0
- package/build/translations/es.js +1 -0
- package/build/translations/et.js +1 -0
- package/build/translations/fi.js +1 -0
- package/build/translations/fr.js +1 -0
- package/build/translations/he.js +1 -0
- package/build/translations/hi.js +1 -0
- package/build/translations/hr.js +1 -0
- package/build/translations/hu.js +1 -0
- package/build/translations/id.js +1 -0
- package/build/translations/it.js +1 -0
- package/build/translations/ja.js +1 -0
- package/build/translations/ko.js +1 -0
- package/build/translations/lt.js +1 -0
- package/build/translations/lv.js +1 -0
- package/build/translations/ms.js +1 -0
- package/build/translations/nl.js +1 -0
- package/build/translations/no.js +1 -0
- package/build/translations/pl.js +1 -0
- package/build/translations/pt-br.js +1 -0
- package/build/translations/pt.js +1 -0
- package/build/translations/ro.js +1 -0
- package/build/translations/ru.js +1 -0
- package/build/translations/sk.js +1 -0
- package/build/translations/sr.js +1 -0
- package/build/translations/sv.js +1 -0
- package/build/translations/th.js +1 -0
- package/build/translations/tr.js +1 -0
- package/build/translations/uk.js +1 -0
- package/build/translations/vi.js +1 -0
- package/build/translations/zh-cn.js +1 -0
- package/build/translations/zh.js +1 -0
- package/ckeditor5-metadata.json +45 -0
- package/lang/contexts.json +6 -0
- package/lang/translations/ar.po +33 -0
- package/lang/translations/bg.po +33 -0
- package/lang/translations/bn.po +33 -0
- package/lang/translations/ca.po +33 -0
- package/lang/translations/cs.po +33 -0
- package/lang/translations/da.po +33 -0
- package/lang/translations/de.po +33 -0
- package/lang/translations/el.po +33 -0
- package/lang/translations/en-au.po +33 -0
- package/lang/translations/en.po +33 -0
- package/lang/translations/es.po +33 -0
- package/lang/translations/et.po +33 -0
- package/lang/translations/fi.po +33 -0
- package/lang/translations/fr.po +33 -0
- package/lang/translations/he.po +33 -0
- package/lang/translations/hi.po +33 -0
- package/lang/translations/hr.po +33 -0
- package/lang/translations/hu.po +33 -0
- package/lang/translations/id.po +33 -0
- package/lang/translations/it.po +33 -0
- package/lang/translations/ja.po +33 -0
- package/lang/translations/ko.po +33 -0
- package/lang/translations/lt.po +33 -0
- package/lang/translations/lv.po +33 -0
- package/lang/translations/ms.po +33 -0
- package/lang/translations/nl.po +33 -0
- package/lang/translations/no.po +33 -0
- package/lang/translations/pl.po +33 -0
- package/lang/translations/pt-br.po +33 -0
- package/lang/translations/pt.po +33 -0
- package/lang/translations/ro.po +33 -0
- package/lang/translations/ru.po +33 -0
- package/lang/translations/sk.po +33 -0
- package/lang/translations/sr.po +33 -0
- package/lang/translations/sv.po +33 -0
- package/lang/translations/th.po +33 -0
- package/lang/translations/tr.po +33 -0
- package/lang/translations/uk.po +33 -0
- package/lang/translations/vi.po +33 -0
- package/lang/translations/zh-cn.po +33 -0
- package/lang/translations/zh.po +33 -0
- package/package.json +27 -4
- package/src/augmentation.d.ts +27 -0
- package/src/augmentation.js +23 -0
- package/src/documentoutline/documentoutlineui.d.ts +39 -0
- package/src/documentoutline/documentoutlineui.js +23 -0
- package/src/documentoutline/documentoutlineutils.d.ts +66 -0
- package/src/documentoutline/documentoutlineutils.js +23 -0
- package/src/documentoutline/ui/documentoutlineitemview.d.ts +55 -0
- package/src/documentoutline/ui/documentoutlineitemview.js +23 -0
- package/src/documentoutline/ui/documentoutlineview.d.ts +44 -0
- package/src/documentoutline/ui/documentoutlineview.js +23 -0
- package/src/documentoutline/utils.d.ts +17 -0
- package/src/documentoutline/utils.js +23 -0
- package/src/documentoutline.d.ts +95 -0
- package/src/documentoutline.js +23 -0
- package/src/index.d.ts +19 -0
- package/src/index.js +23 -0
- package/src/tableofcontents/headingid.d.ts +18 -0
- package/src/tableofcontents/headingid.js +23 -0
- package/src/tableofcontents/tableofcontentscommand.d.ts +21 -0
- package/src/tableofcontents/tableofcontentscommand.js +23 -0
- package/src/tableofcontents/tableofcontentsediting.d.ts +37 -0
- package/src/tableofcontents/tableofcontentsediting.js +23 -0
- package/src/tableofcontents/tableofcontentsui.d.ts +23 -0
- package/src/tableofcontents/tableofcontentsui.js +23 -0
- package/src/tableofcontents.d.ts +26 -0
- package/src/tableofcontents.js +23 -0
- package/theme/documentoutline.css +100 -0
- package/theme/icons/table-of-contents.svg +1 -0
- package/theme/tableofcontents.css +83 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Arabic (https://app.transifex.com/ckeditor/teams/11143/ar/)\n"
|
|
16
|
+
"Language: ar\n"
|
|
17
|
+
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "رأس فارغ"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "تظهر رؤوس المحرر هنا أثناء الكتابة."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "لم نعثر على رؤوس في المستند."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "جدول المحتويات"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Bulgarian (https://app.transifex.com/ckeditor/teams/11143/bg/)\n"
|
|
16
|
+
"Language: bg\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Празно заглавие"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Заглавията на редактора ще се виждат тук по време на писането."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "В документа не бяха намерени заглавия."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Съдържание"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Bengali (https://app.transifex.com/ckeditor/teams/11143/bn/)\n"
|
|
16
|
+
"Language: bn\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "খালি হেডিং"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "আপনি টাইপ করার সাথে সাথে এডিটর হেডিং এখানে প্রদর্শিত হবে।"
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "ডকুমেন্টে কোনো হেডিং পাওয়া যায়নি।"
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "বিষয়বস্তুর টেবিল"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Catalan (https://app.transifex.com/ckeditor/teams/11143/ca/)\n"
|
|
16
|
+
"Language: ca\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Encapçalament buit"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Els encapçalaments de l'editor apareixeran aquí a mesura que escriguis."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "No s'ha trobat cap encapçalament al document."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Taula de continguts"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Czech (https://app.transifex.com/ckeditor/teams/11143/cs/)\n"
|
|
16
|
+
"Language: cs\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Prázdný nadpis"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Tady se během psaní objeví nadpisy editoru."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "V dokumentu nebyly nalezeny žádné nadpisy."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Obsah"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Danish (https://app.transifex.com/ckeditor/teams/11143/da/)\n"
|
|
16
|
+
"Language: da\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Tom overskrift"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Redigeringsoverskrifter vil stå her, efterhånden som du skriver."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Ingen overskrifter blev fundet i dokumentet."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Indholdsfortegnelse"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: German (https://app.transifex.com/ckeditor/teams/11143/de/)\n"
|
|
16
|
+
"Language: de\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Leere Überschrift"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Während Sie schreiben, werden hier die Editor-Überschriften angezeigt."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Im Dokument wurden keine Überschriften gefunden."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Inhaltsverzeichnis"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Greek (https://app.transifex.com/ckeditor/teams/11143/el/)\n"
|
|
16
|
+
"Language: el\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Κενή επικεφαλίδα"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Οι επικεφαλίδες του επεξεργαστή θα εμφανίζονται εδώ καθώς πληκτρολογείτε."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Δεν βρέθηκαν επικεφαλίδες στο έγγραφο."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Πίνακας περιεχομένων"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: English (Australia) (https://app.transifex.com/ckeditor/teams/11143/en_AU/)\n"
|
|
16
|
+
"Language: en_AU\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Empty heading"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Editor headings will appear here as you type."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "No headings were found in the document."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Table of contents"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language: \n"
|
|
16
|
+
"Language-Team: \n"
|
|
17
|
+
"Plural-Forms: \n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Empty heading"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Editor headings will appear here as you type."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "No headings were found in the document."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Table of contents"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Spanish (https://app.transifex.com/ckeditor/teams/11143/es/)\n"
|
|
16
|
+
"Language: es\n"
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Encabezado vacío"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Los encabezados del editor aparecerán aquí mientras escribe."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "No se han encontrado encabezados en el documento."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Tabla de contenido"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Estonian (https://app.transifex.com/ckeditor/teams/11143/et/)\n"
|
|
16
|
+
"Language: et\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Tühi pealkiri"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Redaktori pealkirjad ilmuvad siia tippimise ajal."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Dokumendist ei leitud ühtegi pealkirja"
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Sisukord"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Finnish (https://app.transifex.com/ckeditor/teams/11143/fi/)\n"
|
|
16
|
+
"Language: fi\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Tyhjä otsikko"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Editorin otsikot ilmaantuvat tähän kirjoittaessasi."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Asiakirjalta ei löytynyt otsikoita."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Sisällysluettelo"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: French (https://app.transifex.com/ckeditor/teams/11143/fr/)\n"
|
|
16
|
+
"Language: fr\n"
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Titre vide"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Les titres de l'éditeur apparaîtront ici au fur et à mesure que vous tapez."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Aucun titre n'a été trouvé dans le document."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Table des matières"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Hebrew (https://app.transifex.com/ckeditor/teams/11143/he/)\n"
|
|
16
|
+
"Language: he\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "כותרת ריקה"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "כותרות העורך יופיעו כאן תוך כדי הקלדה."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "לא נמצאו כותרות במסמך."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "תוכן העניינים"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Hindi (https://app.transifex.com/ckeditor/teams/11143/hi/)\n"
|
|
16
|
+
"Language: hi\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "हेडिंग को खाली कर दें"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "जैसे-जैसे आप टाइप करेंगे एडिटर हेडिंग्ज़ यहाँ दिखाई देंगी."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "इस डॉक्युमेंट में कोई हेडिंग नहीं मिली."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "टेबल ऑफ़ कॉन्टेंट्स"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Croatian (https://app.transifex.com/ckeditor/teams/11143/hr/)\n"
|
|
16
|
+
"Language: hr\n"
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Prazan naslov"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Uređivanje naslova će se pojaviti ovdje dok tipkate."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "U dokumentu nisu pronađeni naslovi."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Sadržaj"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Hungarian (https://app.transifex.com/ckeditor/teams/11143/hu/)\n"
|
|
16
|
+
"Language: hu\n"
|
|
17
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Üres címsor"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "A szerkesztő címsorai itt jelennek meg gépelés közben."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "A dokumentumban nem található címsor."
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Tartalomjegyzék"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
|
+
#
|
|
3
|
+
# !!! IMPORTANT !!!
|
|
4
|
+
#
|
|
5
|
+
# Before you edit this file, please keep in mind that contributing to the project
|
|
6
|
+
# translations is possible ONLY via the Transifex online service.
|
|
7
|
+
#
|
|
8
|
+
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
|
|
9
|
+
#
|
|
10
|
+
# To learn more, check out the official contributor's guide:
|
|
11
|
+
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
|
|
12
|
+
#
|
|
13
|
+
msgid ""
|
|
14
|
+
msgstr ""
|
|
15
|
+
"Language-Team: Indonesian (https://app.transifex.com/ckeditor/teams/11143/id/)\n"
|
|
16
|
+
"Language: id\n"
|
|
17
|
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Tajuk kosong"
|
|
22
|
+
|
|
23
|
+
msgctxt "Document outline placeholder to display when there are no headings in the document."
|
|
24
|
+
msgid "Editor headings will appear here as you type."
|
|
25
|
+
msgstr "Editor tajuk akan muncul di sini saat Anda mengetik."
|
|
26
|
+
|
|
27
|
+
msgctxt "A hint message explaining that table of contents widget is empty because there are no headings in the document."
|
|
28
|
+
msgid "No headings were found in the document."
|
|
29
|
+
msgstr "Tidak menemukan tajuk di dokumen"
|
|
30
|
+
|
|
31
|
+
msgctxt "A label displayed inside the table of contents widget in order to distinguish it in the document content."
|
|
32
|
+
msgid "Table of contents"
|
|
33
|
+
msgstr "Daftar isi"
|