tiptapify 0.0.10 → 0.0.12
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/README.md +7 -3
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +18524 -17801
- package/dist/tiptapify.umd.js +77 -38
- package/index.d.ts +2 -2
- package/package.json +41 -40
- package/src/components/MenuBubble.vue +8 -8
- package/src/components/Tiptapify.vue +5 -6
- package/src/components/Toolbar/Group.vue +2 -2
- package/src/components/Toolbar/GroupBtn.vue +12 -9
- package/src/components/Toolbar/GroupDropdown.vue +5 -19
- package/src/components/Toolbar/Index.vue +13 -9
- package/src/components/Toolbar/Items.vue +5 -8
- package/src/components/Toolbar/Toggle.vue +3 -5
- package/src/components/Toolbar/defaultExtensionComponents.ts +34 -13
- package/src/components/Toolbar/items.ts +53 -70
- package/src/components/UI/BtnIcon.vue +24 -0
- package/src/components/UI/{Dialog.vue → TiptapifyDialog.vue} +4 -3
- package/src/components/editorExtensions.ts +17 -2
- package/src/components/index.ts +8 -2
- package/src/composables/Toolbar/Actions/useRedo.ts +23 -0
- package/src/composables/Toolbar/Actions/useUndo.ts +23 -0
- package/src/composables/Toolbar/Alignment/useAlignmentCenter.ts +24 -0
- package/src/composables/Toolbar/Alignment/useAlignmentJustify.ts +24 -0
- package/src/composables/Toolbar/Alignment/useAlignmentLeft.ts +24 -0
- package/src/composables/Toolbar/Alignment/useAlignmentRight.ts +24 -0
- package/src/composables/Toolbar/Format/useBold.ts +24 -0
- package/src/composables/Toolbar/Format/useItalic.ts +24 -0
- package/src/composables/Toolbar/Format/useStrike.ts +24 -0
- package/src/composables/Toolbar/Format/useUnderline.ts +24 -0
- package/src/composables/Toolbar/FormatExtra/useBlockquote.ts +24 -0
- package/src/composables/Toolbar/FormatExtra/useCode.ts +24 -0
- package/src/composables/Toolbar/FormatExtra/useCodeBlock.ts +24 -0
- package/src/composables/Toolbar/FormatExtra/useSub.ts +24 -0
- package/src/composables/Toolbar/FormatExtra/useSup.ts +24 -0
- package/src/composables/Toolbar/List/useBullet.ts +23 -0
- package/src/composables/Toolbar/List/useIndent.ts +24 -0
- package/src/composables/Toolbar/List/useNumbered.ts +23 -0
- package/src/composables/Toolbar/List/useOutdent.ts +24 -0
- package/src/composables/Toolbar/List/useTask.ts +23 -0
- package/src/composables/Toolbar/Media/useImage.ts +24 -0
- package/src/composables/Toolbar/Media/useLink.ts +24 -0
- package/src/composables/Toolbar/Media/useTable.ts +188 -0
- package/src/composables/Toolbar/Misc/useBreak.ts +21 -0
- package/src/composables/Toolbar/Misc/useFormatClear.ts +23 -0
- package/src/composables/Toolbar/Misc/useInvisibleCharacters.ts +23 -0
- package/src/composables/Toolbar/Misc/useLine.ts +21 -0
- package/src/composables/Toolbar/Misc/usePreview.ts +20 -0
- package/src/composables/Toolbar/Misc/useSource.ts +21 -0
- package/src/composables/Toolbar/Style/useColor.ts +36 -0
- package/src/composables/Toolbar/Style/useFontFamily.ts +49 -0
- package/src/composables/Toolbar/Style/useFontSize.ts +50 -0
- package/src/composables/Toolbar/Style/useHeading.ts +64 -0
- package/src/composables/Toolbar/Style/useHighlight.ts +36 -0
- package/src/composables/Toolbar/Style/useLineHeight.ts +49 -0
- package/src/composables/Toolbar/useActionsItems.ts +9 -0
- package/src/composables/Toolbar/useAlignmentItems.ts +13 -0
- package/src/composables/Toolbar/useFormatExtraItems.ts +15 -0
- package/src/composables/Toolbar/useFormatItems.ts +13 -0
- package/src/composables/Toolbar/useListItems.ts +15 -0
- package/src/composables/Toolbar/useMediaItems.ts +11 -0
- package/src/composables/Toolbar/useMiscItems.ts +17 -0
- package/src/composables/Toolbar/useStyleItems.ts +17 -0
- package/src/{components/Toolbar/fonts.ts → constants/style.ts} +21 -0
- package/src/extensions/components/FontFamily.vue +82 -0
- package/src/extensions/components/FontSize.vue +83 -0
- package/src/extensions/components/ImageDialog.vue +7 -3
- package/src/extensions/components/LineHeight.vue +82 -0
- package/src/extensions/components/LinkDialog.vue +27 -7
- package/src/extensions/components/PreviewDialog.vue +11 -4
- package/src/extensions/components/ShowSourceDialog.vue +10 -6
- package/src/extensions/components/StyleColor.vue +2 -2
- package/src/extensions/components/slashCommands/CommandsList.vue +1 -4
- package/src/extensions/image.ts +2 -1
- package/src/extensions/link.ts +10 -1
- package/src/extensions/preview.ts +2 -1
- package/src/extensions/slash-commands.ts +1 -1
- package/src/extensions/view-source.ts +2 -1
- package/src/i18n/locales/ch.json +84 -82
- package/src/i18n/locales/cz.json +32 -30
- package/src/i18n/locales/de.json +28 -26
- package/src/i18n/locales/en.json +3 -1
- package/src/i18n/locales/es.json +30 -28
- package/src/i18n/locales/fr.json +30 -28
- package/src/i18n/locales/it.json +32 -30
- package/src/i18n/locales/la.json +61 -59
- package/src/i18n/locales/lt.json +38 -36
- package/src/i18n/locales/nl.json +31 -29
- package/src/i18n/locales/pl.json +32 -30
- package/src/i18n/locales/pt.json +29 -27
- package/src/i18n/locales/ru.json +3 -1
- package/src/i18n/locales/se.json +30 -28
- package/src/i18n/locales/ua.json +3 -1
- package/src/index.ts +3 -1
- package/src/types/extensionComponents.ts +22 -0
- package/src/types/toolbarItems.ts +43 -0
- package/src/types/toolbarSections.ts +11 -0
- package/src/components/Toolbar/items/actions.ts +0 -32
- package/src/components/Toolbar/items/alignment.ts +0 -60
- package/src/components/Toolbar/items/format.ts +0 -60
- package/src/components/Toolbar/items/formatExtra.ts +0 -73
- package/src/components/Toolbar/items/list.ts +0 -70
- package/src/components/Toolbar/items/media.ts +0 -211
- package/src/components/Toolbar/items/misc.ts +0 -59
- package/src/components/Toolbar/items/style.ts +0 -204
- package/src/types/overridable-extensions.ts +0 -6
- /package/src/{components → extensions/components}/CodeBlockComponent.vue +0 -0
package/src/i18n/locales/lt.json
CHANGED
|
@@ -1,36 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Numatytoji reikšmė",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
4
|
+
"placeholder": "Parašykite ką nors..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "pastraipa",
|
|
7
8
|
"heading": "Antraštė",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
10
|
+
"h1": "1 lygio antraštė",
|
|
11
|
+
"h2": "2 lygio antraštė",
|
|
12
|
+
"h3": "3 lygio antraštė",
|
|
13
|
+
"h4": "4 lygio antraštė",
|
|
14
|
+
"h5": "5 lygio antraštė",
|
|
15
|
+
"h6": "6 lygio antraštė"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
17
|
+
"fontFamily": "Šriftas",
|
|
18
|
+
"fontSize": "Dydis",
|
|
18
19
|
"lineHeight": "Eilutės aukštis",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Paryškinimo spalva",
|
|
21
22
|
"text": "Teksto spalva",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Išvalyti spalvą",
|
|
24
|
+
"custom": "Savo pasirinkimas"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
+
"bold": "Paryškintas",
|
|
28
29
|
"italic": "Kursyvas",
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
30
|
+
"strike": "Perbrauktas",
|
|
31
|
+
"underline": "Pabrauktas",
|
|
31
32
|
"sup": "Viršutinis indeksas",
|
|
32
33
|
"sub": "Apatinis indeksas",
|
|
33
|
-
"break": "
|
|
34
|
+
"break": "Eilutės lūžis",
|
|
34
35
|
"line": "Horizontali linija",
|
|
35
36
|
"blockquote": "Citata",
|
|
36
37
|
"code": "Kodas",
|
|
@@ -38,8 +39,8 @@
|
|
|
38
39
|
"formatClear": "Išvalyti formatavimą"
|
|
39
40
|
},
|
|
40
41
|
"media": {
|
|
41
|
-
"link": "
|
|
42
|
-
"image": "
|
|
42
|
+
"link": "Išorinė nuoroda",
|
|
43
|
+
"image": "Paveikslas",
|
|
43
44
|
"tables": {
|
|
44
45
|
"table": "Lentelė",
|
|
45
46
|
"insertTable": "Įterpti lentelę",
|
|
@@ -55,8 +56,8 @@
|
|
|
55
56
|
"insertColBefore": "Įterpti stulpelį prieš",
|
|
56
57
|
"insertColAfter": "Įterpti stulpelį po",
|
|
57
58
|
"deleteCol": "Ištrinti stulpelį",
|
|
58
|
-
"mergeCells": "Sujungti
|
|
59
|
-
"splitCell": "Padalinti
|
|
59
|
+
"mergeCells": "Sujungti ląsteles",
|
|
60
|
+
"splitCell": "Padalinti ląstelę"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"action": {
|
|
@@ -65,51 +66,52 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Lygiavimas",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Lygiavimas kairėje",
|
|
70
|
+
"center": "Lygiavimas centre",
|
|
71
|
+
"right": "Lygiavimas dešinėje",
|
|
72
|
+
"justify": "Lygiavimas pločiu"
|
|
72
73
|
},
|
|
73
74
|
"list": "Sąrašas",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
+
"bullet": "Ženklelių sąrašas",
|
|
76
77
|
"numbered": "Numeruotas sąrašas",
|
|
77
78
|
"task": "Užduočių sąrašas",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Padidinti sąrašo elemento įtrauką",
|
|
80
|
+
"outdent": "Sumažinti sąrašo elemento įtrauką"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Taikyti",
|
|
83
84
|
"clear": "Išvalyti",
|
|
84
85
|
"close": "Uždaryti",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Pridėti/
|
|
87
|
+
"title": "Pridėti/keisti paveikslą",
|
|
87
88
|
"src": "Šaltinis",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Plotis",
|
|
90
91
|
"height": "Aukštis"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Pridėti/
|
|
94
|
+
"title": "Pridėti/keisti nuorodą",
|
|
94
95
|
"href": "Nuorodos adresas",
|
|
95
|
-
"href_error": "
|
|
96
|
+
"href_error": "Neteisingas nuorodos adresas",
|
|
96
97
|
"target": "Atidaryti...",
|
|
97
98
|
"target_blank": "Naujame lange",
|
|
98
99
|
"target_self": "Dabartiniame lange",
|
|
99
|
-
"rel": "
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "CSS klasė"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
103
104
|
"title": "Peržiūra"
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
|
-
"title": "
|
|
107
|
-
"prettify": "
|
|
107
|
+
"title": "Žiūrėti išeities kodą",
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
|
-
"source": "
|
|
112
|
-
"preview": "Peržiūra"
|
|
112
|
+
"source": "Žiūrėti išeities kodą",
|
|
113
|
+
"preview": "Peržiūra",
|
|
114
|
+
"toggleInvisibleCharacters": "Rodyti/slėpti nematomus simbolius"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "žodžiai",
|
package/src/i18n/locales/nl.json
CHANGED
|
@@ -1,36 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Standaardwaarde",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Schrijf
|
|
4
|
+
"placeholder": "Schrijf iets..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
-
"heading": "
|
|
7
|
+
"paragraph": "paragraaf",
|
|
8
|
+
"heading": "Kop",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
10
|
+
"h1": "Kop niveau 1",
|
|
11
|
+
"h2": "Kop niveau 2",
|
|
12
|
+
"h3": "Kop niveau 3",
|
|
13
|
+
"h4": "Kop niveau 4",
|
|
14
|
+
"h5": "Kop niveau 5",
|
|
15
|
+
"h6": "Kop niveau 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
17
|
+
"fontFamily": "Lettertype",
|
|
18
|
+
"fontSize": "Grootte",
|
|
18
19
|
"lineHeight": "Regelhoogte",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Markeringskleur",
|
|
21
22
|
"text": "Tekstkleur",
|
|
22
|
-
"unset": "Kleur
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Kleur wissen",
|
|
24
|
+
"custom": "Eigen keuze"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
27
28
|
"bold": "Vet",
|
|
28
29
|
"italic": "Cursief",
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
30
|
+
"strike": "Doorhalen",
|
|
31
|
+
"underline": "Onderstrepen",
|
|
31
32
|
"sup": "Superscript",
|
|
32
33
|
"sub": "Subscript",
|
|
33
|
-
"break": "
|
|
34
|
+
"break": "Regeleinde",
|
|
34
35
|
"line": "Horizontale lijn",
|
|
35
36
|
"blockquote": "Citaat",
|
|
36
37
|
"code": "Code",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"table": "Tabel",
|
|
45
46
|
"insertTable": "Tabel invoegen",
|
|
46
47
|
"deleteTable": "Tabel verwijderen",
|
|
47
|
-
"insertWithHeaderRow": "Tabel met
|
|
48
|
+
"insertWithHeaderRow": "Tabel met kop invoegen",
|
|
48
49
|
"rows": "Rijen",
|
|
49
50
|
"row": "Rij",
|
|
50
51
|
"insertRowBefore": "Rij ervoor invoegen",
|
|
@@ -61,55 +62,56 @@
|
|
|
61
62
|
},
|
|
62
63
|
"action": {
|
|
63
64
|
"undo": "Ongedaan maken",
|
|
64
|
-
"redo": "Opnieuw
|
|
65
|
+
"redo": "Opnieuw"
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Uitlijning",
|
|
67
68
|
"alignments": {
|
|
68
69
|
"left": "Links uitlijnen",
|
|
69
|
-
"center": "
|
|
70
|
+
"center": "Centreren",
|
|
70
71
|
"right": "Rechts uitlijnen",
|
|
71
72
|
"justify": "Uitvullen"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lijst",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
+
"bullet": "Ongenummerde lijst",
|
|
76
77
|
"numbered": "Genummerde lijst",
|
|
77
78
|
"task": "Takenlijst",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Inspringing verhogen",
|
|
80
|
+
"outdent": "Inspringing verlagen"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Toepassen",
|
|
83
84
|
"clear": "Wissen",
|
|
84
85
|
"close": "Sluiten",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Afbeelding toevoegen/
|
|
87
|
+
"title": "Afbeelding toevoegen/wijzigen",
|
|
87
88
|
"src": "Bron",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Breedte",
|
|
90
91
|
"height": "Hoogte"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Link toevoegen/
|
|
94
|
+
"title": "Link toevoegen/wijzigen",
|
|
94
95
|
"href": "Linkadres",
|
|
95
96
|
"href_error": "Ongeldig linkadres",
|
|
96
97
|
"target": "Openen in...",
|
|
97
98
|
"target_blank": "Nieuw venster",
|
|
98
99
|
"target_self": "Huidig venster",
|
|
99
|
-
"rel": "
|
|
100
|
-
"class": "CSS
|
|
100
|
+
"rel": "rel",
|
|
101
|
+
"class": "CSS klasse"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
103
104
|
"title": "Voorvertoning"
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Broncode bekijken",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Broncode bekijken",
|
|
112
|
-
"preview": "Voorvertoning"
|
|
113
|
+
"preview": "Voorvertoning",
|
|
114
|
+
"toggleInvisibleCharacters": "Onzichtbare tekens tonen/verbergen"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "woorden",
|
package/src/i18n/locales/pl.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Wartość domyślna",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Napisz
|
|
4
|
+
"placeholder": "Napisz coś..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "akapit",
|
|
7
8
|
"heading": "Nagłówek",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "Nagłówek
|
|
10
|
-
"h2": "Nagłówek
|
|
11
|
-
"h3": "Nagłówek
|
|
12
|
-
"h4": "Nagłówek
|
|
13
|
-
"h5": "Nagłówek
|
|
14
|
-
"h6": "Nagłówek
|
|
10
|
+
"h1": "Nagłówek 1. poziomu",
|
|
11
|
+
"h2": "Nagłówek 2. poziomu",
|
|
12
|
+
"h3": "Nagłówek 3. poziomu",
|
|
13
|
+
"h4": "Nagłówek 4. poziomu",
|
|
14
|
+
"h5": "Nagłówek 5. poziomu",
|
|
15
|
+
"h6": "Nagłówek 6. poziomu"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "Rozmiar
|
|
17
|
+
"fontFamily": "Czcionka",
|
|
18
|
+
"fontSize": "Rozmiar",
|
|
18
19
|
"lineHeight": "Wysokość linii",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Kolor podświetlenia",
|
|
21
22
|
"text": "Kolor tekstu",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Wyczyść kolor",
|
|
24
|
+
"custom": "Własny wybór"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"underline": "Podkreślenie",
|
|
31
32
|
"sup": "Indeks górny",
|
|
32
33
|
"sub": "Indeks dolny",
|
|
33
|
-
"break": "
|
|
34
|
+
"break": "Łamanie linii",
|
|
34
35
|
"line": "Linia pozioma",
|
|
35
36
|
"blockquote": "Cytat",
|
|
36
37
|
"code": "Kod",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"insertColBefore": "Wstaw kolumnę przed",
|
|
56
57
|
"insertColAfter": "Wstaw kolumnę po",
|
|
57
58
|
"deleteCol": "Usuń kolumnę",
|
|
58
|
-
"mergeCells": "
|
|
59
|
+
"mergeCells": "Scal komórki",
|
|
59
60
|
"splitCell": "Podziel komórkę"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
@@ -65,38 +66,38 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Wyrównanie",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Wyrównanie do lewej",
|
|
70
|
+
"center": "Wyrównanie do środka",
|
|
71
|
+
"right": "Wyrównanie do prawej",
|
|
72
|
+
"justify": "Wyjustowanie"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lista",
|
|
74
75
|
"lists": {
|
|
75
76
|
"bullet": "Lista punktowana",
|
|
76
77
|
"numbered": "Lista numerowana",
|
|
77
78
|
"task": "Lista zadań",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Zwiększ wcięcie elementu",
|
|
80
|
+
"outdent": "Zmniejsz wcięcie elementu"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Zastosuj",
|
|
83
84
|
"clear": "Wyczyść",
|
|
84
85
|
"close": "Zamknij",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Dodaj/
|
|
87
|
+
"title": "Dodaj/zmień obraz",
|
|
87
88
|
"src": "Źródło",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Szerokość",
|
|
90
91
|
"height": "Wysokość"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Dodaj/
|
|
94
|
-
"href": "Adres
|
|
95
|
-
"href_error": "Nieprawidłowy adres
|
|
94
|
+
"title": "Dodaj/zmień link",
|
|
95
|
+
"href": "Adres linka",
|
|
96
|
+
"href_error": "Nieprawidłowy adres linka",
|
|
96
97
|
"target": "Otwórz w...",
|
|
97
|
-
"target_blank": "
|
|
98
|
-
"target_self": "
|
|
99
|
-
"rel": "
|
|
98
|
+
"target_blank": "Nowym oknie",
|
|
99
|
+
"target_self": "Bieżącym oknie",
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "Klasa CSS"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
@@ -104,12 +105,13 @@
|
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Pokaż kod źródłowy",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Pokaż kod źródłowy",
|
|
112
|
-
"preview": "Podgląd"
|
|
113
|
+
"preview": "Podgląd",
|
|
114
|
+
"toggleInvisibleCharacters": "Pokaż/ukryj niewidoczne znaki"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "słowa",
|
package/src/i18n/locales/pt.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Valor padrão",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Escreva algo
|
|
4
|
+
"placeholder": "Escreva algo..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "parágrafo",
|
|
7
8
|
"heading": "Cabeçalho",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "Cabeçalho nível 1",
|
|
10
|
-
"h2": "Cabeçalho nível 2",
|
|
11
|
-
"h3": "Cabeçalho nível 3",
|
|
12
|
-
"h4": "Cabeçalho nível 4",
|
|
13
|
-
"h5": "Cabeçalho nível 5",
|
|
14
|
-
"h6": "Cabeçalho nível 6"
|
|
10
|
+
"h1": "Cabeçalho de nível 1",
|
|
11
|
+
"h2": "Cabeçalho de nível 2",
|
|
12
|
+
"h3": "Cabeçalho de nível 3",
|
|
13
|
+
"h4": "Cabeçalho de nível 4",
|
|
14
|
+
"h5": "Cabeçalho de nível 5",
|
|
15
|
+
"h6": "Cabeçalho de nível 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "Tamanho
|
|
17
|
+
"fontFamily": "Fonte",
|
|
18
|
+
"fontSize": "Tamanho",
|
|
18
19
|
"lineHeight": "Altura da linha",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Cor de destaque",
|
|
21
22
|
"text": "Cor do texto",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Limpar cor",
|
|
24
|
+
"custom": "Seleção personalizada"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
@@ -65,51 +66,52 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Alinhamento",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Alinhamento à esquerda",
|
|
70
|
+
"center": "Alinhamento centralizado",
|
|
71
|
+
"right": "Alinhamento à direita",
|
|
72
|
+
"justify": "Justificado"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lista",
|
|
74
75
|
"lists": {
|
|
75
76
|
"bullet": "Lista com marcadores",
|
|
76
77
|
"numbered": "Lista numerada",
|
|
77
78
|
"task": "Lista de tarefas",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Aumentar recuo do item",
|
|
80
|
+
"outdent": "Diminuir recuo do item"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Aplicar",
|
|
83
84
|
"clear": "Limpar",
|
|
84
85
|
"close": "Fechar",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Adicionar/
|
|
87
|
-
"src": "
|
|
88
|
-
"alt": "
|
|
87
|
+
"title": "Adicionar/modificar imagem",
|
|
88
|
+
"src": "Fonte",
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Largura",
|
|
90
91
|
"height": "Altura"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Adicionar/
|
|
94
|
+
"title": "Adicionar/modificar link",
|
|
94
95
|
"href": "Endereço do link",
|
|
95
|
-
"href_error": "Endereço
|
|
96
|
+
"href_error": "Endereço de link incorreto",
|
|
96
97
|
"target": "Abrir em...",
|
|
97
98
|
"target_blank": "Nova janela",
|
|
98
99
|
"target_self": "Janela atual",
|
|
99
|
-
"rel": "
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "Classe CSS"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
103
|
-
"title": "
|
|
104
|
+
"title": "Visualização"
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Ver código fonte",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Ver código fonte",
|
|
112
|
-
"preview": "
|
|
113
|
+
"preview": "Visualização",
|
|
114
|
+
"toggleInvisibleCharacters": "Mostrar/ocultar caracteres invisíveis"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "palavras",
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Значение по-умолчанию",
|
|
2
3
|
"content": {
|
|
3
4
|
"placeholder": "Напишите что-нибудь..."
|
|
4
5
|
},
|
|
@@ -109,7 +110,8 @@
|
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Просмотр исходного кода",
|
|
112
|
-
"preview": "Предпросмотр"
|
|
113
|
+
"preview": "Предпросмотр",
|
|
114
|
+
"toggleInvisibleCharacters": "Показать/скрыть невидимые символы"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "слова",
|
package/src/i18n/locales/se.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Standardvärde",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Skriv något
|
|
4
|
+
"placeholder": "Skriv något..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "stycke",
|
|
7
8
|
"heading": "Rubrik",
|
|
8
9
|
"headings": {
|
|
9
10
|
"h1": "Rubrik nivå 1",
|
|
@@ -13,14 +14,14 @@
|
|
|
13
14
|
"h5": "Rubrik nivå 5",
|
|
14
15
|
"h6": "Rubrik nivå 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
17
|
+
"fontFamily": "Typsnitt",
|
|
18
|
+
"fontSize": "Storlek",
|
|
18
19
|
"lineHeight": "Radhöjd",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Markeringsfärg",
|
|
21
22
|
"text": "Textfärg",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Rensa färg",
|
|
24
|
+
"custom": "Eget val"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
"underline": "Understruken",
|
|
31
32
|
"sup": "Upphöjt",
|
|
32
33
|
"sub": "Nedsänkt",
|
|
33
|
-
"break": "
|
|
34
|
+
"break": "Radbrytning",
|
|
34
35
|
"line": "Horisontell linje",
|
|
35
36
|
"blockquote": "Citat",
|
|
36
37
|
"code": "Kod",
|
|
@@ -42,20 +43,20 @@
|
|
|
42
43
|
"image": "Bild",
|
|
43
44
|
"tables": {
|
|
44
45
|
"table": "Tabell",
|
|
45
|
-
"insertTable": "
|
|
46
|
+
"insertTable": "Sätt in tabell",
|
|
46
47
|
"deleteTable": "Ta bort tabell",
|
|
47
|
-
"insertWithHeaderRow": "
|
|
48
|
+
"insertWithHeaderRow": "Sätt in tabell med rubrik",
|
|
48
49
|
"rows": "Rader",
|
|
49
50
|
"row": "Rad",
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
51
|
+
"insertRowBefore": "Sätt in rad före",
|
|
52
|
+
"insertRowAfter": "Sätt in rad efter",
|
|
52
53
|
"deleteRow": "Ta bort rad",
|
|
53
54
|
"cols": "Kolumner",
|
|
54
55
|
"col": "Kolumn",
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
56
|
+
"insertColBefore": "Sätt in kolumn före",
|
|
57
|
+
"insertColAfter": "Sätt in kolumn efter",
|
|
57
58
|
"deleteCol": "Ta bort kolumn",
|
|
58
|
-
"mergeCells": "
|
|
59
|
+
"mergeCells": "Sammanfoga celler",
|
|
59
60
|
"splitCell": "Dela cell"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
@@ -65,51 +66,52 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Justering",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Vänsterjustering",
|
|
70
|
+
"center": "Centrerjustering",
|
|
71
|
+
"right": "Högerjustering",
|
|
72
|
+
"justify": "Marginaljustering"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lista",
|
|
74
75
|
"lists": {
|
|
75
76
|
"bullet": "Punktlista",
|
|
76
77
|
"numbered": "Numrerad lista",
|
|
77
78
|
"task": "Uppgiftslista",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Öka indrag för element",
|
|
80
|
+
"outdent": "Minska indrag för element"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Tillämpa",
|
|
83
84
|
"clear": "Rensa",
|
|
84
85
|
"close": "Stäng",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Lägg till
|
|
87
|
+
"title": "Lägg till/ändra bild",
|
|
87
88
|
"src": "Källa",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Bredd",
|
|
90
91
|
"height": "Höjd"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Lägg till
|
|
94
|
+
"title": "Lägg till/ändra länk",
|
|
94
95
|
"href": "Länkadress",
|
|
95
|
-
"href_error": "
|
|
96
|
+
"href_error": "Felaktig länkadress",
|
|
96
97
|
"target": "Öppna i...",
|
|
97
98
|
"target_blank": "Nytt fönster",
|
|
98
99
|
"target_self": "Aktuellt fönster",
|
|
99
|
-
"rel": "
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "CSS-klass"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
103
|
-
"title": "
|
|
104
|
+
"title": "Förhandsgranskning"
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Visa källkod",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Visa källkod",
|
|
112
|
-
"preview": "
|
|
113
|
+
"preview": "Förhandsgranskning",
|
|
114
|
+
"toggleInvisibleCharacters": "Visa/dölj osynliga tecken"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "ord",
|