@ckeditor/ckeditor5-document-outline 0.0.0-nightly-20230629.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/LICENSE.md +22 -0
- package/README.md +39 -0
- 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 +38 -0
- 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 +99 -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 +27 -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: Italian (https://app.transifex.com/ckeditor/teams/11143/it/)\n"
|
|
16
|
+
"Language: it\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 "Intestazione vuota"
|
|
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 "Le intestazioni dell'editor appariranno qui durante la digitazione."
|
|
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 "Nel documento non sono state trovate intestazioni."
|
|
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 "Sommario"
|
|
@@ -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: Japanese (https://app.transifex.com/ckeditor/teams/11143/ja/)\n"
|
|
16
|
+
"Language: ja\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 "空の見出し"
|
|
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: Korean (https://app.transifex.com/ckeditor/teams/11143/ko/)\n"
|
|
16
|
+
"Language: ko\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 "빈 표제"
|
|
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: Lithuanian (https://app.transifex.com/ckeditor/teams/11143/lt/)\n"
|
|
16
|
+
"Language: lt\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 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 "Tuščia antraštė"
|
|
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 "Įvedant tekstą čia bus rodomos redaktoriaus antraštės."
|
|
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 "Dokumente nerasta jokių antraščių."
|
|
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 "Turinys"
|
|
@@ -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: Latvian (https://app.transifex.com/ckeditor/teams/11143/lv/)\n"
|
|
16
|
+
"Language: lv\n"
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 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 "Tukšs virsraksts"
|
|
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 "Redaktoru virsraksti tiks parādīti šeit, kamēr jūs rakstāt."
|
|
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 "Dokumentā virsraksti netika atrasti."
|
|
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 "Satura rādītājs"
|
|
@@ -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: Malay (https://app.transifex.com/ckeditor/teams/11143/ms/)\n"
|
|
16
|
+
"Language: ms\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 "Penyunting tajuk akan timbul di sini semasa anda menaip."
|
|
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 "Tiada tajuk ditemui dalam 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 "Isi kandungan"
|
|
@@ -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: Dutch (https://app.transifex.com/ckeditor/teams/11143/nl/)\n"
|
|
16
|
+
"Language: nl\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 "Lege kop"
|
|
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-koppen verschijnen hier terwijl je typt."
|
|
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 "Er zijn geen koppen gevonden in het 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 "Inhoudsopgave"
|
|
@@ -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: Norwegian (https://app.transifex.com/ckeditor/teams/11143/no/)\n"
|
|
16
|
+
"Language: no\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 "Overskrifter dukker opp når 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 ble funnet i dette 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 "Innholdsfortegnelse"
|
|
@@ -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: Polish (https://app.transifex.com/ckeditor/teams/11143/pl/)\n"
|
|
16
|
+
"Language: pl\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Pusty nagłówek"
|
|
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 "Nagłówki pojawią się tutaj po wprowadzeniu tekstu."
|
|
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 "W dokumencie nie znaleziono nagłówków."
|
|
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 "Spis treści"
|
|
@@ -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: Portuguese (Brazil) (https://app.transifex.com/ckeditor/teams/11143/pt_BR/)\n"
|
|
16
|
+
"Language: pt_BR\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 "Cabeçalho vazio"
|
|
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 "Os cabeçalhos do editor aparecerão aqui conforme você digitar."
|
|
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 "Nenhum cabeçalho foi encontrado no 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 "Sumário"
|
|
@@ -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: Portuguese (https://app.transifex.com/ckeditor/teams/11143/pt/)\n"
|
|
16
|
+
"Language: pt\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 "Cabeçalho vazio"
|
|
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 "Os cabeçalhos do editor serão exibidos aqui à medida que escreve."
|
|
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 "Não foram encontrados cabeçalhos no 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 "Índice"
|
|
@@ -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: Romanian (https://app.transifex.com/ckeditor/teams/11143/ro/)\n"
|
|
16
|
+
"Language: ro\n"
|
|
17
|
+
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
|
18
|
+
|
|
19
|
+
msgctxt "A placeholder for the heading when it has no text content yet."
|
|
20
|
+
msgid "Empty heading"
|
|
21
|
+
msgstr "Antet lipsă"
|
|
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 "Antetele editorului vor apărea aici, pe măsură ce tastați."
|
|
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 "Nu s-a găsit niciun antet în 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 "Cuprins"
|
|
@@ -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: Russian (https://app.transifex.com/ckeditor/teams/11143/ru/)\n"
|
|
16
|
+
"Language: ru\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 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: Slovak (https://app.transifex.com/ckeditor/teams/11143/sk/)\n"
|
|
16
|
+
"Language: sk\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 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ázdny 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 "Počas písania sa tu budú zobrazovať nadpisy editora."
|
|
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 dokumente sa nenašli žiadne 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: Serbian (https://app.transifex.com/ckeditor/teams/11143/sr/)\n"
|
|
16
|
+
"Language: sr\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 "Naslovi uređivača će se pojaviti ovde dok kucate."
|
|
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 nije pronađen nijedan naslov."
|
|
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: Swedish (https://app.transifex.com/ckeditor/teams/11143/sv/)\n"
|
|
16
|
+
"Language: sv\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 rubrik"
|
|
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 "Redigerarens rubriker dyker upp här medan 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 "Inga rubriker hittades 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 "Innehållsförteckning"
|
|
@@ -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: Thai (https://app.transifex.com/ckeditor/teams/11143/th/)\n"
|
|
16
|
+
"Language: th\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 "หัวเรื่องว่างเปล่า"
|
|
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: Turkish (https://app.transifex.com/ckeditor/teams/11143/tr/)\n"
|
|
16
|
+
"Language: tr\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 "Boş başlık"
|
|
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 "Siz yazarken editör başlıkları burada görünecektir."
|
|
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 "Dokümanda başlık bulunamadı."
|
|
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 "İçindekiler"
|
|
@@ -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: Ukrainian (https://app.transifex.com/ckeditor/teams/11143/uk/)\n"
|
|
16
|
+
"Language: uk\n"
|
|
17
|
+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 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 "Зміст"
|