tiptapify 0.0.7 → 0.0.9
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 +27 -3
- package/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +27785 -23593
- package/dist/tiptapify.umd.js +35 -35
- package/index.d.ts +49 -0
- package/package.json +8 -6
- package/src/components/Footer.vue +48 -6
- package/src/components/MenuBubble.vue +5 -12
- package/src/components/Tiptapify.vue +41 -31
- package/src/components/Toolbar/Group.vue +13 -14
- package/src/components/Toolbar/GroupBtn.vue +34 -0
- package/src/components/Toolbar/Index.vue +28 -79
- package/src/components/Toolbar/Items.vue +77 -0
- package/src/components/Toolbar/defaultExtensionComponents.ts +32 -0
- package/src/components/Toolbar/items/format.ts +0 -13
- package/src/components/Toolbar/items/media.ts +32 -23
- package/src/components/Toolbar/items/misc.ts +1 -1
- package/src/components/Toolbar/items/style.ts +43 -2
- package/src/components/Toolbar/items.ts +8 -7
- package/src/components/editorExtensions.ts +8 -10
- package/src/extensions/components/ImageDialog.vue +142 -0
- package/src/extensions/components/LinkDialog.vue +77 -36
- package/src/extensions/components/PreviewDialog.vue +0 -1
- package/src/extensions/components/ShowSourceDialog.vue +5 -3
- package/src/extensions/components/StyleColor.vue +177 -0
- package/src/extensions/components/TableBuilder.vue +4 -5
- package/src/extensions/image.ts +31 -0
- package/src/extensions/link.ts +24 -0
- package/src/extensions/preview.ts +2 -15
- package/src/extensions/view-source.ts +0 -3
- package/src/i18n/locales/de.json +46 -20
- package/src/i18n/locales/en.json +31 -5
- package/src/i18n/locales/es.json +38 -12
- package/src/i18n/locales/fr.json +49 -23
- package/src/i18n/locales/it.json +42 -16
- package/src/i18n/locales/pl.json +46 -19
- package/src/i18n/locales/ru.json +30 -4
- package/src/i18n/locales/ua.json +30 -4
- package/src/index.ts +0 -1
- package/src/types/overridable-extensions.ts +6 -0
package/src/i18n/locales/en.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "write something here..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "paragraph",
|
|
4
7
|
"heading": "heading",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "font family",
|
|
14
17
|
"fontSize": "font size",
|
|
15
|
-
"lineHeight": "line height"
|
|
18
|
+
"lineHeight": "line height",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "highlight color",
|
|
21
|
+
"text": "text color",
|
|
22
|
+
"unset": "unset color",
|
|
23
|
+
"custom": "custom color"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "bold",
|
|
@@ -22,13 +31,15 @@
|
|
|
22
31
|
"sup": "superscript",
|
|
23
32
|
"sub": "subscript",
|
|
24
33
|
"break": "hard break",
|
|
25
|
-
"highlight": "highlight",
|
|
26
34
|
"line": "horizontal line",
|
|
27
35
|
"blockquote": "cite",
|
|
28
36
|
"code": "code",
|
|
29
37
|
"codeblock": "code block",
|
|
38
|
+
"formatClear": "format clear"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "external link",
|
|
31
|
-
"
|
|
42
|
+
"image": "image",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "table",
|
|
34
45
|
"insertTable": "insert table",
|
|
@@ -68,11 +79,22 @@
|
|
|
68
79
|
"outdent": "list item outdent"
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
|
-
"close": "close",
|
|
72
82
|
"apply": "apply",
|
|
83
|
+
"clear": "clear",
|
|
84
|
+
"close": "close",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "add/edit image",
|
|
87
|
+
"src": "source",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "width",
|
|
90
|
+
"height": "height"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
93
|
"title": "add/edit link",
|
|
75
|
-
"
|
|
94
|
+
"href": "link address",
|
|
95
|
+
"target": "open in new window",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "CSS class"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "view source code",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "view source code",
|
|
84
106
|
"preview": "preview"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "words",
|
|
110
|
+
"chars": "characters"
|
|
85
111
|
}
|
|
86
112
|
}
|
package/src/i18n/locales/es.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "escribe algo aquí..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "párrafo",
|
|
4
7
|
"heading": "encabezado",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "familia de fuente",
|
|
14
17
|
"fontSize": "tamaño de fuente",
|
|
15
|
-
"lineHeight": "altura de línea"
|
|
18
|
+
"lineHeight": "altura de línea",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "color de resaltado",
|
|
21
|
+
"text": "color de texto",
|
|
22
|
+
"unset": "quitar color",
|
|
23
|
+
"custom": "color personalizado"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "negrita",
|
|
@@ -21,14 +30,16 @@
|
|
|
21
30
|
"underline": "subrayado",
|
|
22
31
|
"sup": "superíndice",
|
|
23
32
|
"sub": "subíndice",
|
|
24
|
-
"break": "salto de línea",
|
|
25
|
-
"highlight": "resaltar",
|
|
33
|
+
"break": "salto de línea forzado",
|
|
26
34
|
"line": "línea horizontal",
|
|
27
35
|
"blockquote": "cita",
|
|
28
36
|
"code": "código",
|
|
29
37
|
"codeblock": "bloque de código",
|
|
38
|
+
"formatClear": "limpiar formato"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "enlace externo",
|
|
31
|
-
"
|
|
42
|
+
"image": "imagen",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "tabla",
|
|
34
45
|
"insertTable": "insertar tabla",
|
|
@@ -44,7 +55,7 @@
|
|
|
44
55
|
"insertColBefore": "insertar columna antes",
|
|
45
56
|
"insertColAfter": "insertar columna después",
|
|
46
57
|
"deleteCol": "eliminar columna",
|
|
47
|
-
"mergeCells": "
|
|
58
|
+
"mergeCells": "fusionar celdas",
|
|
48
59
|
"splitCell": "dividir celda"
|
|
49
60
|
}
|
|
50
61
|
},
|
|
@@ -55,24 +66,35 @@
|
|
|
55
66
|
"alignment": "alineación",
|
|
56
67
|
"alignments": {
|
|
57
68
|
"left": "alinear a la izquierda",
|
|
58
|
-
"center": "
|
|
69
|
+
"center": "alinear al centro",
|
|
59
70
|
"right": "alinear a la derecha",
|
|
60
71
|
"justify": "justificar"
|
|
61
72
|
},
|
|
62
73
|
"list": "lista",
|
|
63
74
|
"lists": {
|
|
64
|
-
"bullet": "lista
|
|
65
|
-
"numbered": "lista
|
|
75
|
+
"bullet": "lista no ordenada",
|
|
76
|
+
"numbered": "lista ordenada",
|
|
66
77
|
"task": "lista de tareas",
|
|
67
|
-
"indent": "
|
|
68
|
-
"outdent": "reducir sangría"
|
|
78
|
+
"indent": "sangrar elemento de lista",
|
|
79
|
+
"outdent": "reducir sangría de elemento de lista"
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
|
-
"close": "cerrar",
|
|
72
82
|
"apply": "aplicar",
|
|
83
|
+
"clear": "limpiar",
|
|
84
|
+
"close": "cerrar",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "agregar/editar imagen",
|
|
87
|
+
"src": "fuente",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "ancho",
|
|
90
|
+
"height": "alto"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
93
|
"title": "agregar/editar enlace",
|
|
75
|
-
"
|
|
94
|
+
"href": "dirección del enlace",
|
|
95
|
+
"target": "abrir en nueva ventana",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "clase CSS"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "ver código fuente",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "ver código fuente",
|
|
84
106
|
"preview": "vista previa"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "palabras",
|
|
110
|
+
"chars": "caracteres"
|
|
85
111
|
}
|
|
86
112
|
}
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "écrivez quelque chose ici..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "paragraphe",
|
|
4
7
|
"heading": "titre",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "famille de police",
|
|
14
17
|
"fontSize": "taille de police",
|
|
15
|
-
"lineHeight": "hauteur de ligne"
|
|
18
|
+
"lineHeight": "hauteur de ligne",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "couleur de surbrillance",
|
|
21
|
+
"text": "couleur du texte",
|
|
22
|
+
"unset": "réinitialiser la couleur",
|
|
23
|
+
"custom": "couleur personnalisée"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "gras",
|
|
@@ -21,36 +30,38 @@
|
|
|
21
30
|
"underline": "souligné",
|
|
22
31
|
"sup": "exposant",
|
|
23
32
|
"sub": "indice",
|
|
24
|
-
"break": "saut de ligne",
|
|
25
|
-
"highlight": "surligner",
|
|
33
|
+
"break": "saut de ligne forcé",
|
|
26
34
|
"line": "ligne horizontale",
|
|
27
35
|
"blockquote": "citation",
|
|
28
36
|
"code": "code",
|
|
29
37
|
"codeblock": "bloc de code",
|
|
38
|
+
"formatClear": "effacer le formatage"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "lien externe",
|
|
31
|
-
"
|
|
42
|
+
"image": "image",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "tableau",
|
|
34
|
-
"insertTable": "insérer
|
|
35
|
-
"deleteTable": "supprimer
|
|
36
|
-
"insertWithHeaderRow": "insérer
|
|
45
|
+
"insertTable": "insérer tableau",
|
|
46
|
+
"deleteTable": "supprimer tableau",
|
|
47
|
+
"insertWithHeaderRow": "insérer tableau avec ligne d'en-tête",
|
|
37
48
|
"rows": "lignes",
|
|
38
49
|
"row": "ligne",
|
|
39
|
-
"insertRowBefore": "insérer
|
|
40
|
-
"insertRowAfter": "insérer
|
|
41
|
-
"deleteRow": "supprimer
|
|
50
|
+
"insertRowBefore": "insérer ligne avant",
|
|
51
|
+
"insertRowAfter": "insérer ligne après",
|
|
52
|
+
"deleteRow": "supprimer ligne",
|
|
42
53
|
"cols": "colonnes",
|
|
43
54
|
"col": "colonne",
|
|
44
|
-
"insertColBefore": "insérer
|
|
45
|
-
"insertColAfter": "insérer
|
|
46
|
-
"deleteCol": "supprimer
|
|
47
|
-
"mergeCells": "fusionner
|
|
48
|
-
"splitCell": "diviser
|
|
55
|
+
"insertColBefore": "insérer colonne avant",
|
|
56
|
+
"insertColAfter": "insérer colonne après",
|
|
57
|
+
"deleteCol": "supprimer colonne",
|
|
58
|
+
"mergeCells": "fusionner cellules",
|
|
59
|
+
"splitCell": "diviser cellule"
|
|
49
60
|
}
|
|
50
61
|
},
|
|
51
62
|
"action": {
|
|
52
63
|
"undo": "annuler",
|
|
53
|
-
"redo": "
|
|
64
|
+
"redo": "refaire"
|
|
54
65
|
},
|
|
55
66
|
"alignment": "alignement",
|
|
56
67
|
"alignments": {
|
|
@@ -61,18 +72,29 @@
|
|
|
61
72
|
},
|
|
62
73
|
"list": "liste",
|
|
63
74
|
"lists": {
|
|
64
|
-
"bullet": "liste
|
|
65
|
-
"numbered": "liste
|
|
75
|
+
"bullet": "liste non ordonnée",
|
|
76
|
+
"numbered": "liste ordonnée",
|
|
66
77
|
"task": "liste de tâches",
|
|
67
|
-
"indent": "
|
|
68
|
-
"outdent": "
|
|
78
|
+
"indent": "indenter élément de liste",
|
|
79
|
+
"outdent": "désindenter élément de liste"
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
|
-
"close": "fermer",
|
|
72
82
|
"apply": "appliquer",
|
|
83
|
+
"clear": "effacer",
|
|
84
|
+
"close": "fermer",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "ajouter/modifier image",
|
|
87
|
+
"src": "source",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "largeur",
|
|
90
|
+
"height": "hauteur"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
|
-
"title": "ajouter/modifier
|
|
75
|
-
"
|
|
93
|
+
"title": "ajouter/modifier lien",
|
|
94
|
+
"href": "adresse du lien",
|
|
95
|
+
"target": "ouvrir dans une nouvelle fenêtre",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "classe CSS"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "voir le code source",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "voir le code source",
|
|
84
106
|
"preview": "aperçu"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "mots",
|
|
110
|
+
"chars": "caractères"
|
|
85
111
|
}
|
|
86
112
|
}
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "scrivi qualcosa qui..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "paragrafo",
|
|
4
7
|
"heading": "intestazione",
|
|
@@ -10,9 +13,15 @@
|
|
|
10
13
|
"h5": "intestazione livello 5",
|
|
11
14
|
"h6": "intestazione livello 6"
|
|
12
15
|
},
|
|
13
|
-
"fontFamily": "famiglia
|
|
16
|
+
"fontFamily": "famiglia carattere",
|
|
14
17
|
"fontSize": "dimensione carattere",
|
|
15
|
-
"lineHeight": "altezza
|
|
18
|
+
"lineHeight": "altezza riga",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "colore evidenziazione",
|
|
21
|
+
"text": "colore testo",
|
|
22
|
+
"unset": "rimuovi colore",
|
|
23
|
+
"custom": "colore personalizzato"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "grassetto",
|
|
@@ -21,19 +30,21 @@
|
|
|
21
30
|
"underline": "sottolineato",
|
|
22
31
|
"sup": "apice",
|
|
23
32
|
"sub": "pedice",
|
|
24
|
-
"break": "interruzione
|
|
25
|
-
"
|
|
26
|
-
"line": "linea orizzontale",
|
|
33
|
+
"break": "interruzione riga forzata",
|
|
34
|
+
"line": "riga orizzontale",
|
|
27
35
|
"blockquote": "citazione",
|
|
28
36
|
"code": "codice",
|
|
29
|
-
"codeblock": "blocco
|
|
37
|
+
"codeblock": "blocco codice",
|
|
38
|
+
"formatClear": "cancella formattazione"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "collegamento esterno",
|
|
31
|
-
"
|
|
42
|
+
"image": "immagine",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "tabella",
|
|
34
45
|
"insertTable": "inserisci tabella",
|
|
35
46
|
"deleteTable": "elimina tabella",
|
|
36
|
-
"insertWithHeaderRow": "inserisci tabella con riga
|
|
47
|
+
"insertWithHeaderRow": "inserisci tabella con riga intestazione",
|
|
37
48
|
"rows": "righe",
|
|
38
49
|
"row": "riga",
|
|
39
50
|
"insertRowBefore": "inserisci riga prima",
|
|
@@ -50,29 +61,40 @@
|
|
|
50
61
|
},
|
|
51
62
|
"action": {
|
|
52
63
|
"undo": "annulla",
|
|
53
|
-
"redo": "
|
|
64
|
+
"redo": "ripeti"
|
|
54
65
|
},
|
|
55
66
|
"alignment": "allineamento",
|
|
56
67
|
"alignments": {
|
|
57
68
|
"left": "allinea a sinistra",
|
|
58
|
-
"center": "
|
|
69
|
+
"center": "allinea al centro",
|
|
59
70
|
"right": "allinea a destra",
|
|
60
71
|
"justify": "giustifica"
|
|
61
72
|
},
|
|
62
73
|
"list": "elenco",
|
|
63
74
|
"lists": {
|
|
64
|
-
"bullet": "elenco
|
|
65
|
-
"numbered": "elenco
|
|
75
|
+
"bullet": "elenco non ordinato",
|
|
76
|
+
"numbered": "elenco ordinato",
|
|
66
77
|
"task": "elenco attività",
|
|
67
|
-
"indent": "
|
|
68
|
-
"outdent": "riduci rientro"
|
|
78
|
+
"indent": "rientra elemento elenco",
|
|
79
|
+
"outdent": "riduci rientro elemento elenco"
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
|
-
"close": "chiudi",
|
|
72
82
|
"apply": "applica",
|
|
83
|
+
"clear": "cancella",
|
|
84
|
+
"close": "chiudi",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "aggiungi/modifica immagine",
|
|
87
|
+
"src": "sorgente",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "larghezza",
|
|
90
|
+
"height": "altezza"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
93
|
"title": "aggiungi/modifica collegamento",
|
|
75
|
-
"
|
|
94
|
+
"href": "indirizzo collegamento",
|
|
95
|
+
"target": "apri in nuova finestra",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "classe CSS"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "visualizza codice sorgente",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "visualizza codice sorgente",
|
|
84
106
|
"preview": "anteprima"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "parole",
|
|
110
|
+
"chars": "caratteri"
|
|
85
111
|
}
|
|
86
112
|
}
|
package/src/i18n/locales/pl.json
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
|
+
|
|
1
2
|
{
|
|
3
|
+
"content": {
|
|
4
|
+
"placeholder": "napisz coś tutaj..."
|
|
5
|
+
},
|
|
2
6
|
"style": {
|
|
3
7
|
"paragraph": "akapit",
|
|
4
8
|
"heading": "nagłówek",
|
|
5
9
|
"headings": {
|
|
6
|
-
"h1": "nagłówek
|
|
7
|
-
"h2": "nagłówek
|
|
8
|
-
"h3": "nagłówek
|
|
9
|
-
"h4": "nagłówek
|
|
10
|
-
"h5": "nagłówek
|
|
11
|
-
"h6": "nagłówek
|
|
10
|
+
"h1": "nagłówek poziom 1",
|
|
11
|
+
"h2": "nagłówek poziom 2",
|
|
12
|
+
"h3": "nagłówek poziom 3",
|
|
13
|
+
"h4": "nagłówek poziom 4",
|
|
14
|
+
"h5": "nagłówek poziom 5",
|
|
15
|
+
"h6": "nagłówek poziom 6"
|
|
12
16
|
},
|
|
13
|
-
"fontFamily": "rodzina
|
|
17
|
+
"fontFamily": "rodzina czcionki",
|
|
14
18
|
"fontSize": "rozmiar czcionki",
|
|
15
|
-
"lineHeight": "wysokość linii"
|
|
19
|
+
"lineHeight": "wysokość linii",
|
|
20
|
+
"color": {
|
|
21
|
+
"highlight": "kolor podświetlenia",
|
|
22
|
+
"text": "kolor tekstu",
|
|
23
|
+
"unset": "usuń kolor",
|
|
24
|
+
"custom": "kolor niestandardowy"
|
|
25
|
+
}
|
|
16
26
|
},
|
|
17
27
|
"format": {
|
|
18
28
|
"bold": "pogrubienie",
|
|
@@ -21,14 +31,16 @@
|
|
|
21
31
|
"underline": "podkreślenie",
|
|
22
32
|
"sup": "indeks górny",
|
|
23
33
|
"sub": "indeks dolny",
|
|
24
|
-
"break": "łamanie
|
|
25
|
-
"highlight": "podświetlenie",
|
|
34
|
+
"break": "twarde łamanie",
|
|
26
35
|
"line": "linia pozioma",
|
|
27
36
|
"blockquote": "cytat",
|
|
28
37
|
"code": "kod",
|
|
29
38
|
"codeblock": "blok kodu",
|
|
39
|
+
"formatClear": "wyczyść formatowanie"
|
|
40
|
+
},
|
|
41
|
+
"media": {
|
|
30
42
|
"link": "link zewnętrzny",
|
|
31
|
-
"
|
|
43
|
+
"image": "obraz",
|
|
32
44
|
"tables": {
|
|
33
45
|
"table": "tabela",
|
|
34
46
|
"insertTable": "wstaw tabelę",
|
|
@@ -44,7 +56,7 @@
|
|
|
44
56
|
"insertColBefore": "wstaw kolumnę przed",
|
|
45
57
|
"insertColAfter": "wstaw kolumnę po",
|
|
46
58
|
"deleteCol": "usuń kolumnę",
|
|
47
|
-
"mergeCells": "
|
|
59
|
+
"mergeCells": "scal komórki",
|
|
48
60
|
"splitCell": "podziel komórkę"
|
|
49
61
|
}
|
|
50
62
|
},
|
|
@@ -61,26 +73,41 @@
|
|
|
61
73
|
},
|
|
62
74
|
"list": "lista",
|
|
63
75
|
"lists": {
|
|
64
|
-
"bullet": "lista
|
|
65
|
-
"numbered": "lista
|
|
76
|
+
"bullet": "lista nieuporządkowana",
|
|
77
|
+
"numbered": "lista uporządkowana",
|
|
66
78
|
"task": "lista zadań",
|
|
67
|
-
"indent": "wcięcie elementu",
|
|
68
|
-
"outdent": "
|
|
79
|
+
"indent": "wcięcie elementu listy",
|
|
80
|
+
"outdent": "usuń wcięcie elementu listy"
|
|
69
81
|
},
|
|
70
82
|
"dialog": {
|
|
71
|
-
"close": "zamknij",
|
|
72
83
|
"apply": "zastosuj",
|
|
84
|
+
"clear": "wyczyść",
|
|
85
|
+
"close": "zamknij",
|
|
86
|
+
"image": {
|
|
87
|
+
"title": "dodaj/edytuj obraz",
|
|
88
|
+
"src": "źródło",
|
|
89
|
+
"alt": "alt",
|
|
90
|
+
"width": "szerokość",
|
|
91
|
+
"height": "wysokość"
|
|
92
|
+
},
|
|
73
93
|
"link": {
|
|
74
94
|
"title": "dodaj/edytuj link",
|
|
75
|
-
"
|
|
95
|
+
"href": "adres linku",
|
|
96
|
+
"target": "otwórz w nowym oknie",
|
|
97
|
+
"rel": "rel",
|
|
98
|
+
"class": "klasa CSS"
|
|
76
99
|
},
|
|
77
100
|
"source": {
|
|
78
101
|
"title": "wyświetl kod źródłowy",
|
|
79
|
-
"prettify": "
|
|
102
|
+
"prettify": "upiększ"
|
|
80
103
|
}
|
|
81
104
|
},
|
|
82
105
|
"misc": {
|
|
83
106
|
"source": "wyświetl kod źródłowy",
|
|
84
107
|
"preview": "podgląd"
|
|
108
|
+
},
|
|
109
|
+
"footer": {
|
|
110
|
+
"words": "słowa",
|
|
111
|
+
"chars": "znaki"
|
|
85
112
|
}
|
|
86
113
|
}
|
package/src/i18n/locales/ru.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "напишите что-нибудь..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "абзац",
|
|
4
7
|
"heading": "заголовок",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "шрифт",
|
|
14
17
|
"fontSize": "размер",
|
|
15
|
-
"lineHeight": "высота строки"
|
|
18
|
+
"lineHeight": "высота строки",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "цвет выделения",
|
|
21
|
+
"text": "цвет текста",
|
|
22
|
+
"unset": "очистить цвет",
|
|
23
|
+
"custom": "свой выбор"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "жирный",
|
|
@@ -22,13 +31,15 @@
|
|
|
22
31
|
"sup": "верхний индекс",
|
|
23
32
|
"sub": "нижний индекс",
|
|
24
33
|
"break": "разрыв строки",
|
|
25
|
-
"highlight": "выделение",
|
|
26
34
|
"line": "горизонтальная линия",
|
|
27
35
|
"blockquote": "цитата",
|
|
28
36
|
"code": "код",
|
|
29
37
|
"codeblock": "блок кода",
|
|
38
|
+
"formatClear": "очистить форматирование"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "внешняя ссылка",
|
|
31
|
-
"
|
|
42
|
+
"image": "изображение",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "таблица",
|
|
34
45
|
"insertTable": "вставить таблицу",
|
|
@@ -69,10 +80,21 @@
|
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
82
|
"apply": "применить",
|
|
83
|
+
"clear": "очистить",
|
|
72
84
|
"close": "закрыть",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "добавление/изменение изображения",
|
|
87
|
+
"src": "источник",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "ширина",
|
|
90
|
+
"height": "высота"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
93
|
"title": "добавление/изменение ссылки",
|
|
75
|
-
"
|
|
94
|
+
"href": "адрес ссылки",
|
|
95
|
+
"target": "открывать в новом окне",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "CSS класс"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "просмотр исходного кода",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "просмотр исходного кода",
|
|
84
106
|
"preview": "предпросмотр"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "слова",
|
|
110
|
+
"chars": "символы"
|
|
85
111
|
}
|
|
86
112
|
}
|
package/src/i18n/locales/ua.json
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
+
"content": {
|
|
3
|
+
"placeholder": "напишіть щонебудь..."
|
|
4
|
+
},
|
|
2
5
|
"style": {
|
|
3
6
|
"paragraph": "абзац",
|
|
4
7
|
"heading": "заголовок",
|
|
@@ -12,7 +15,13 @@
|
|
|
12
15
|
},
|
|
13
16
|
"fontFamily": "шрифт",
|
|
14
17
|
"fontSize": "розмір",
|
|
15
|
-
"lineHeight": "висота строки"
|
|
18
|
+
"lineHeight": "висота строки",
|
|
19
|
+
"color": {
|
|
20
|
+
"highlight": "колір виділення",
|
|
21
|
+
"text": "колір тексту",
|
|
22
|
+
"unset": "очистити колір",
|
|
23
|
+
"custom": "власний вибір"
|
|
24
|
+
}
|
|
16
25
|
},
|
|
17
26
|
"format": {
|
|
18
27
|
"bold": "жирний",
|
|
@@ -22,13 +31,15 @@
|
|
|
22
31
|
"sup": "верхній індекс",
|
|
23
32
|
"sub": "нижній індекс",
|
|
24
33
|
"break": "розрив строки",
|
|
25
|
-
"highlight": "виділення",
|
|
26
34
|
"line": "горизонтальна лінія",
|
|
27
35
|
"blockquote": "цитата",
|
|
28
36
|
"code": "код",
|
|
29
37
|
"codeblock": "блок коду",
|
|
38
|
+
"formatClear": "очистити форматування"
|
|
39
|
+
},
|
|
40
|
+
"media": {
|
|
30
41
|
"link": "зовнішнє посилання",
|
|
31
|
-
"
|
|
42
|
+
"image": "зображення",
|
|
32
43
|
"tables": {
|
|
33
44
|
"table": "таблиця",
|
|
34
45
|
"insertTable": "вставити таблицю",
|
|
@@ -69,10 +80,21 @@
|
|
|
69
80
|
},
|
|
70
81
|
"dialog": {
|
|
71
82
|
"apply": "застосувати",
|
|
83
|
+
"clear": "очистити",
|
|
72
84
|
"close": "закрити",
|
|
85
|
+
"image": {
|
|
86
|
+
"title": "додавання/зміна зображення",
|
|
87
|
+
"src": "джерело",
|
|
88
|
+
"alt": "alt",
|
|
89
|
+
"width": "ширина",
|
|
90
|
+
"height": "висота"
|
|
91
|
+
},
|
|
73
92
|
"link": {
|
|
74
93
|
"title": "додавання/зміна посилання",
|
|
75
|
-
"
|
|
94
|
+
"href": "адреса посилання",
|
|
95
|
+
"target": "відкривати у новому вікні",
|
|
96
|
+
"rel": "rel",
|
|
97
|
+
"class": "CSS клас"
|
|
76
98
|
},
|
|
77
99
|
"source": {
|
|
78
100
|
"title": "перегляд вихідного коду",
|
|
@@ -82,5 +104,9 @@
|
|
|
82
104
|
"misc": {
|
|
83
105
|
"source": "перегляд вихідного коду",
|
|
84
106
|
"preview": "попередній перегляд"
|
|
107
|
+
},
|
|
108
|
+
"footer": {
|
|
109
|
+
"words": "слова",
|
|
110
|
+
"chars": "символи"
|
|
85
111
|
}
|
|
86
112
|
}
|