tiptapify 0.0.9 → 0.0.10
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/dist/tiptapify.css +1 -1
- package/dist/tiptapify.mjs +19114 -18086
- package/dist/tiptapify.umd.js +39 -39
- package/package.json +5 -5
- package/src/components/Toolbar/GroupBtn.vue +2 -6
- package/src/components/Toolbar/GroupDropdown.vue +4 -8
- package/src/components/Toolbar/Index.vue +2 -2
- package/src/components/Toolbar/items/format.ts +13 -13
- package/src/components/Toolbar/items/formatExtra.ts +1 -1
- package/src/components/Toolbar/items/style.ts +17 -0
- package/src/components/UI/Dialog.vue +141 -0
- package/src/extensions/components/ImageDialog.vue +17 -29
- package/src/extensions/components/LinkDialog.vue +58 -43
- package/src/extensions/components/PreviewDialog.vue +8 -16
- package/src/extensions/components/ShowSourceDialog.vue +14 -16
- package/src/extensions/components/StyleColor.vue +68 -15
- package/src/extensions/components/TableBuilder.vue +3 -6
- package/src/i18n/locales/ch.json +118 -0
- package/src/i18n/locales/cz.json +118 -0
- package/src/i18n/locales/de.json +84 -78
- package/src/i18n/locales/en.json +81 -75
- package/src/i18n/locales/es.json +82 -76
- package/src/i18n/locales/fr.json +83 -76
- package/src/i18n/locales/it.json +82 -76
- package/src/i18n/locales/la.json +118 -0
- package/src/i18n/locales/lt.json +118 -0
- package/src/i18n/locales/nl.json +118 -0
- package/src/i18n/locales/pl.json +82 -77
- package/src/i18n/locales/pt.json +118 -0
- package/src/i18n/locales/ru.json +77 -71
- package/src/i18n/locales/se.json +118 -0
- package/src/i18n/locales/ua.json +78 -72
package/src/i18n/locales/es.json
CHANGED
|
@@ -1,109 +1,115 @@
|
|
|
1
1
|
{
|
|
2
2
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
3
|
+
"placeholder": "Escriba algo aquí..."
|
|
4
4
|
},
|
|
5
5
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
-
"heading": "
|
|
6
|
+
"paragraph": "Párrafo",
|
|
7
|
+
"heading": "Encabezado",
|
|
8
8
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
9
|
+
"h1": "Encabezado nivel 1",
|
|
10
|
+
"h2": "Encabezado nivel 2",
|
|
11
|
+
"h3": "Encabezado nivel 3",
|
|
12
|
+
"h4": "Encabezado nivel 4",
|
|
13
|
+
"h5": "Encabezado nivel 5",
|
|
14
|
+
"h6": "Encabezado nivel 6"
|
|
15
15
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
18
|
-
"lineHeight": "
|
|
16
|
+
"fontFamily": "Familia de fuente",
|
|
17
|
+
"fontSize": "Tamaño de fuente",
|
|
18
|
+
"lineHeight": "Altura de línea",
|
|
19
19
|
"color": {
|
|
20
|
-
"highlight": "
|
|
21
|
-
"text": "
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
20
|
+
"highlight": "Color de resaltado",
|
|
21
|
+
"text": "Color del texto",
|
|
22
|
+
"unset": "Quitar color",
|
|
23
|
+
"custom": "Color personalizado"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
-
"italic": "
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
31
|
-
"sup": "
|
|
32
|
-
"sub": "
|
|
33
|
-
"break": "
|
|
34
|
-
"line": "
|
|
35
|
-
"blockquote": "
|
|
36
|
-
"code": "
|
|
37
|
-
"codeblock": "
|
|
38
|
-
"formatClear": "
|
|
27
|
+
"bold": "Negrita",
|
|
28
|
+
"italic": "Cursiva",
|
|
29
|
+
"strike": "Tachado",
|
|
30
|
+
"underline": "Subrayado",
|
|
31
|
+
"sup": "Superíndice",
|
|
32
|
+
"sub": "Subíndice",
|
|
33
|
+
"break": "Salto de línea",
|
|
34
|
+
"line": "Línea horizontal",
|
|
35
|
+
"blockquote": "Cita",
|
|
36
|
+
"code": "Código",
|
|
37
|
+
"codeblock": "Bloque de código",
|
|
38
|
+
"formatClear": "Limpiar formato"
|
|
39
39
|
},
|
|
40
40
|
"media": {
|
|
41
|
-
"link": "
|
|
42
|
-
"image": "
|
|
41
|
+
"link": "Enlace externo",
|
|
42
|
+
"image": "Imagen",
|
|
43
43
|
"tables": {
|
|
44
|
-
"table": "
|
|
45
|
-
"insertTable": "
|
|
46
|
-
"deleteTable": "
|
|
47
|
-
"insertWithHeaderRow": "
|
|
48
|
-
"rows": "
|
|
49
|
-
"row": "
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
52
|
-
"deleteRow": "
|
|
53
|
-
"cols": "
|
|
54
|
-
"col": "
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
57
|
-
"deleteCol": "
|
|
58
|
-
"mergeCells": "
|
|
59
|
-
"splitCell": "
|
|
44
|
+
"table": "Tabla",
|
|
45
|
+
"insertTable": "Insertar tabla",
|
|
46
|
+
"deleteTable": "Eliminar tabla",
|
|
47
|
+
"insertWithHeaderRow": "Insertar tabla con fila de encabezado",
|
|
48
|
+
"rows": "Filas",
|
|
49
|
+
"row": "Fila",
|
|
50
|
+
"insertRowBefore": "Insertar fila antes",
|
|
51
|
+
"insertRowAfter": "Insertar fila después",
|
|
52
|
+
"deleteRow": "Eliminar fila",
|
|
53
|
+
"cols": "Columnas",
|
|
54
|
+
"col": "Columna",
|
|
55
|
+
"insertColBefore": "Insertar columna antes",
|
|
56
|
+
"insertColAfter": "Insertar columna después",
|
|
57
|
+
"deleteCol": "Eliminar columna",
|
|
58
|
+
"mergeCells": "Combinar celdas",
|
|
59
|
+
"splitCell": "Dividir celda"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"action": {
|
|
63
|
-
"undo": "
|
|
64
|
-
"redo": "
|
|
63
|
+
"undo": "Deshacer",
|
|
64
|
+
"redo": "Rehacer"
|
|
65
65
|
},
|
|
66
|
-
"alignment": "
|
|
66
|
+
"alignment": "Alineación",
|
|
67
67
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
68
|
+
"left": "Alinear a la izquierda",
|
|
69
|
+
"center": "Alinear al centro",
|
|
70
|
+
"right": "Alinear a la derecha",
|
|
71
|
+
"justify": "Justificar"
|
|
72
72
|
},
|
|
73
|
-
"list": "
|
|
73
|
+
"list": "Lista",
|
|
74
74
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
-
"numbered": "
|
|
77
|
-
"task": "
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
75
|
+
"bullet": "Lista sin orden",
|
|
76
|
+
"numbered": "Lista numerada",
|
|
77
|
+
"task": "Lista de tareas",
|
|
78
|
+
"indent": "Sangrar elemento",
|
|
79
|
+
"outdent": "Desangrar elemento"
|
|
80
80
|
},
|
|
81
81
|
"dialog": {
|
|
82
|
-
"apply": "
|
|
83
|
-
"clear": "
|
|
84
|
-
"close": "
|
|
82
|
+
"apply": "Aplicar",
|
|
83
|
+
"clear": "Limpiar",
|
|
84
|
+
"close": "Cerrar",
|
|
85
85
|
"image": {
|
|
86
|
-
"title": "
|
|
87
|
-
"src": "
|
|
88
|
-
"alt": "
|
|
89
|
-
"width": "
|
|
90
|
-
"height": "
|
|
86
|
+
"title": "Agregar/editar imagen",
|
|
87
|
+
"src": "Fuente",
|
|
88
|
+
"alt": "Texto alternativo",
|
|
89
|
+
"width": "Ancho",
|
|
90
|
+
"height": "Alto"
|
|
91
91
|
},
|
|
92
92
|
"link": {
|
|
93
|
-
"title": "
|
|
94
|
-
"href": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
93
|
+
"title": "Agregar/editar enlace",
|
|
94
|
+
"href": "Dirección del enlace",
|
|
95
|
+
"href_error": "Dirección del enlace inválida",
|
|
96
|
+
"target": "Abrir en...",
|
|
97
|
+
"target_blank": "Nueva ventana",
|
|
98
|
+
"target_self": "Ventana actual",
|
|
99
|
+
"rel": "Rel",
|
|
100
|
+
"class": "Clase CSS"
|
|
101
|
+
},
|
|
102
|
+
"preview": {
|
|
103
|
+
"title": "Vista previa"
|
|
98
104
|
},
|
|
99
105
|
"source": {
|
|
100
|
-
"title": "
|
|
101
|
-
"prettify": "
|
|
106
|
+
"title": "Ver código fuente",
|
|
107
|
+
"prettify": "Formatear"
|
|
102
108
|
}
|
|
103
109
|
},
|
|
104
110
|
"misc": {
|
|
105
|
-
"source": "
|
|
106
|
-
"preview": "
|
|
111
|
+
"source": "Ver código fuente",
|
|
112
|
+
"preview": "Vista previa"
|
|
107
113
|
},
|
|
108
114
|
"footer": {
|
|
109
115
|
"words": "palabras",
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -1,109 +1,116 @@
|
|
|
1
|
+
|
|
1
2
|
{
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
4
|
+
"placeholder": "Écrivez quelque chose ici..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
-
"heading": "
|
|
7
|
+
"paragraph": "Paragraphe",
|
|
8
|
+
"heading": "Titre",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
10
|
+
"h1": "Titre niveau 1",
|
|
11
|
+
"h2": "Titre niveau 2",
|
|
12
|
+
"h3": "Titre niveau 3",
|
|
13
|
+
"h4": "Titre niveau 4",
|
|
14
|
+
"h5": "Titre niveau 5",
|
|
15
|
+
"h6": "Titre niveau 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
18
|
-
"lineHeight": "
|
|
17
|
+
"fontFamily": "Police de caractères",
|
|
18
|
+
"fontSize": "Taille de police",
|
|
19
|
+
"lineHeight": "Hauteur de ligne",
|
|
19
20
|
"color": {
|
|
20
|
-
"highlight": "
|
|
21
|
-
"text": "
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
21
|
+
"highlight": "Couleur de surligné",
|
|
22
|
+
"text": "Couleur du texte",
|
|
23
|
+
"unset": "Supprimer la couleur",
|
|
24
|
+
"custom": "Couleur personnalisée"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
-
"italic": "
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
31
|
-
"sup": "
|
|
32
|
-
"sub": "
|
|
33
|
-
"break": "
|
|
34
|
-
"line": "
|
|
35
|
-
"blockquote": "
|
|
36
|
-
"code": "
|
|
37
|
-
"codeblock": "
|
|
38
|
-
"formatClear": "
|
|
28
|
+
"bold": "Gras",
|
|
29
|
+
"italic": "Italique",
|
|
30
|
+
"strike": "Barré",
|
|
31
|
+
"underline": "Souligné",
|
|
32
|
+
"sup": "Exposant",
|
|
33
|
+
"sub": "Indice",
|
|
34
|
+
"break": "Saut de ligne",
|
|
35
|
+
"line": "Ligne horizontale",
|
|
36
|
+
"blockquote": "Citation",
|
|
37
|
+
"code": "Code",
|
|
38
|
+
"codeblock": "Bloc de code",
|
|
39
|
+
"formatClear": "Effacer le formatage"
|
|
39
40
|
},
|
|
40
41
|
"media": {
|
|
41
|
-
"link": "
|
|
42
|
-
"image": "
|
|
42
|
+
"link": "Lien externe",
|
|
43
|
+
"image": "Image",
|
|
43
44
|
"tables": {
|
|
44
|
-
"table": "
|
|
45
|
-
"insertTable": "
|
|
46
|
-
"deleteTable": "
|
|
47
|
-
"insertWithHeaderRow": "
|
|
48
|
-
"rows": "
|
|
49
|
-
"row": "
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
52
|
-
"deleteRow": "
|
|
53
|
-
"cols": "
|
|
54
|
-
"col": "
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
57
|
-
"deleteCol": "
|
|
58
|
-
"mergeCells": "
|
|
59
|
-
"splitCell": "
|
|
45
|
+
"table": "Tableau",
|
|
46
|
+
"insertTable": "Insérer un tableau",
|
|
47
|
+
"deleteTable": "Supprimer le tableau",
|
|
48
|
+
"insertWithHeaderRow": "Insérer un tableau avec en-tête",
|
|
49
|
+
"rows": "Lignes",
|
|
50
|
+
"row": "Ligne",
|
|
51
|
+
"insertRowBefore": "Insérer une ligne avant",
|
|
52
|
+
"insertRowAfter": "Insérer une ligne après",
|
|
53
|
+
"deleteRow": "Supprimer la ligne",
|
|
54
|
+
"cols": "Colonnes",
|
|
55
|
+
"col": "Colonne",
|
|
56
|
+
"insertColBefore": "Insérer une colonne avant",
|
|
57
|
+
"insertColAfter": "Insérer une colonne après",
|
|
58
|
+
"deleteCol": "Supprimer la colonne",
|
|
59
|
+
"mergeCells": "Fusionner les cellules",
|
|
60
|
+
"splitCell": "Diviser la cellule"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"action": {
|
|
63
|
-
"undo": "
|
|
64
|
-
"redo": "
|
|
64
|
+
"undo": "Annuler",
|
|
65
|
+
"redo": "Rétablir"
|
|
65
66
|
},
|
|
66
|
-
"alignment": "
|
|
67
|
+
"alignment": "Alignement",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Aligner à gauche",
|
|
70
|
+
"center": "Centrer",
|
|
71
|
+
"right": "Aligner à droite",
|
|
72
|
+
"justify": "Justifier"
|
|
72
73
|
},
|
|
73
|
-
"list": "
|
|
74
|
+
"list": "Liste",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
-
"numbered": "
|
|
77
|
-
"task": "
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
76
|
+
"bullet": "Liste à puces",
|
|
77
|
+
"numbered": "Liste numérotée",
|
|
78
|
+
"task": "Liste de tâches",
|
|
79
|
+
"indent": "Indenter l'élément",
|
|
80
|
+
"outdent": "Désindenter l'élément"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
|
-
"apply": "
|
|
83
|
-
"clear": "
|
|
84
|
-
"close": "
|
|
83
|
+
"apply": "Appliquer",
|
|
84
|
+
"clear": "Effacer",
|
|
85
|
+
"close": "Fermer",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "
|
|
87
|
-
"src": "
|
|
88
|
-
"alt": "
|
|
89
|
-
"width": "
|
|
90
|
-
"height": "
|
|
87
|
+
"title": "Ajouter/modifier une image",
|
|
88
|
+
"src": "Source",
|
|
89
|
+
"alt": "Texte alternatif",
|
|
90
|
+
"width": "Largeur",
|
|
91
|
+
"height": "Hauteur"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "
|
|
94
|
-
"href": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
94
|
+
"title": "Ajouter/modifier un lien",
|
|
95
|
+
"href": "Adresse du lien",
|
|
96
|
+
"href_error": "Adresse du lien invalide",
|
|
97
|
+
"target": "Ouvrir dans...",
|
|
98
|
+
"target_blank": "Nouvelle fenêtre",
|
|
99
|
+
"target_self": "Fenêtre actuelle",
|
|
100
|
+
"rel": "Rel",
|
|
101
|
+
"class": "Classe CSS"
|
|
102
|
+
},
|
|
103
|
+
"preview": {
|
|
104
|
+
"title": "Aperçu"
|
|
98
105
|
},
|
|
99
106
|
"source": {
|
|
100
|
-
"title": "
|
|
101
|
-
"prettify": "
|
|
107
|
+
"title": "Voir le code source",
|
|
108
|
+
"prettify": "Formater"
|
|
102
109
|
}
|
|
103
110
|
},
|
|
104
111
|
"misc": {
|
|
105
|
-
"source": "
|
|
106
|
-
"preview": "
|
|
112
|
+
"source": "Voir le code source",
|
|
113
|
+
"preview": "Aperçu"
|
|
107
114
|
},
|
|
108
115
|
"footer": {
|
|
109
116
|
"words": "mots",
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -1,109 +1,115 @@
|
|
|
1
1
|
{
|
|
2
2
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
3
|
+
"placeholder": "Scrivi qualcosa qui..."
|
|
4
4
|
},
|
|
5
5
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
-
"heading": "
|
|
6
|
+
"paragraph": "Paragrafo",
|
|
7
|
+
"heading": "Intestazione",
|
|
8
8
|
"headings": {
|
|
9
|
-
"h1": "
|
|
10
|
-
"h2": "
|
|
11
|
-
"h3": "
|
|
12
|
-
"h4": "
|
|
13
|
-
"h5": "
|
|
14
|
-
"h6": "
|
|
9
|
+
"h1": "Intestazione livello 1",
|
|
10
|
+
"h2": "Intestazione livello 2",
|
|
11
|
+
"h3": "Intestazione livello 3",
|
|
12
|
+
"h4": "Intestazione livello 4",
|
|
13
|
+
"h5": "Intestazione livello 5",
|
|
14
|
+
"h6": "Intestazione livello 6"
|
|
15
15
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "
|
|
18
|
-
"lineHeight": "
|
|
16
|
+
"fontFamily": "Famiglia di caratteri",
|
|
17
|
+
"fontSize": "Dimensione carattere",
|
|
18
|
+
"lineHeight": "Altezza della linea",
|
|
19
19
|
"color": {
|
|
20
|
-
"highlight": "
|
|
21
|
-
"text": "
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
20
|
+
"highlight": "Colore evidenziazione",
|
|
21
|
+
"text": "Colore del testo",
|
|
22
|
+
"unset": "Rimuovi colore",
|
|
23
|
+
"custom": "Colore personalizzato"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
-
"italic": "
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
31
|
-
"sup": "
|
|
32
|
-
"sub": "
|
|
33
|
-
"break": "
|
|
34
|
-
"line": "
|
|
35
|
-
"blockquote": "
|
|
36
|
-
"code": "
|
|
37
|
-
"codeblock": "
|
|
38
|
-
"formatClear": "
|
|
27
|
+
"bold": "Grassetto",
|
|
28
|
+
"italic": "Corsivo",
|
|
29
|
+
"strike": "Barrato",
|
|
30
|
+
"underline": "Sottolineato",
|
|
31
|
+
"sup": "Apice",
|
|
32
|
+
"sub": "Pedice",
|
|
33
|
+
"break": "Interruzione di riga",
|
|
34
|
+
"line": "Linea orizzontale",
|
|
35
|
+
"blockquote": "Citazione",
|
|
36
|
+
"code": "Codice",
|
|
37
|
+
"codeblock": "Blocco di codice",
|
|
38
|
+
"formatClear": "Cancella formato"
|
|
39
39
|
},
|
|
40
40
|
"media": {
|
|
41
|
-
"link": "
|
|
42
|
-
"image": "
|
|
41
|
+
"link": "Collegamento esterno",
|
|
42
|
+
"image": "Immagine",
|
|
43
43
|
"tables": {
|
|
44
|
-
"table": "
|
|
45
|
-
"insertTable": "
|
|
46
|
-
"deleteTable": "
|
|
47
|
-
"insertWithHeaderRow": "
|
|
48
|
-
"rows": "
|
|
49
|
-
"row": "
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
52
|
-
"deleteRow": "
|
|
53
|
-
"cols": "
|
|
54
|
-
"col": "
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
57
|
-
"deleteCol": "
|
|
58
|
-
"mergeCells": "
|
|
59
|
-
"splitCell": "
|
|
44
|
+
"table": "Tabella",
|
|
45
|
+
"insertTable": "Inserisci tabella",
|
|
46
|
+
"deleteTable": "Elimina tabella",
|
|
47
|
+
"insertWithHeaderRow": "Inserisci tabella con intestazione",
|
|
48
|
+
"rows": "Righe",
|
|
49
|
+
"row": "Riga",
|
|
50
|
+
"insertRowBefore": "Inserisci riga prima",
|
|
51
|
+
"insertRowAfter": "Inserisci riga dopo",
|
|
52
|
+
"deleteRow": "Elimina riga",
|
|
53
|
+
"cols": "Colonne",
|
|
54
|
+
"col": "Colonna",
|
|
55
|
+
"insertColBefore": "Inserisci colonna prima",
|
|
56
|
+
"insertColAfter": "Inserisci colonna dopo",
|
|
57
|
+
"deleteCol": "Elimina colonna",
|
|
58
|
+
"mergeCells": "Unisci celle",
|
|
59
|
+
"splitCell": "Dividi cella"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"action": {
|
|
63
|
-
"undo": "
|
|
64
|
-
"redo": "
|
|
63
|
+
"undo": "Annulla",
|
|
64
|
+
"redo": "Ripeti"
|
|
65
65
|
},
|
|
66
|
-
"alignment": "
|
|
66
|
+
"alignment": "Allineamento",
|
|
67
67
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
68
|
+
"left": "Allinea a sinistra",
|
|
69
|
+
"center": "Allinea al centro",
|
|
70
|
+
"right": "Allinea a destra",
|
|
71
|
+
"justify": "Giustifica"
|
|
72
72
|
},
|
|
73
|
-
"list": "
|
|
73
|
+
"list": "Lista",
|
|
74
74
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
-
"numbered": "
|
|
77
|
-
"task": "
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
75
|
+
"bullet": "Lista puntata",
|
|
76
|
+
"numbered": "Lista numerata",
|
|
77
|
+
"task": "Lista delle attività",
|
|
78
|
+
"indent": "Indenta elemento",
|
|
79
|
+
"outdent": "Rimuovi indentazione"
|
|
80
80
|
},
|
|
81
81
|
"dialog": {
|
|
82
|
-
"apply": "
|
|
83
|
-
"clear": "
|
|
84
|
-
"close": "
|
|
82
|
+
"apply": "Applica",
|
|
83
|
+
"clear": "Cancella",
|
|
84
|
+
"close": "Chiudi",
|
|
85
85
|
"image": {
|
|
86
|
-
"title": "
|
|
87
|
-
"src": "
|
|
88
|
-
"alt": "
|
|
89
|
-
"width": "
|
|
90
|
-
"height": "
|
|
86
|
+
"title": "Aggiungi/modifica immagine",
|
|
87
|
+
"src": "Origine",
|
|
88
|
+
"alt": "Testo alternativo",
|
|
89
|
+
"width": "Larghezza",
|
|
90
|
+
"height": "Altezza"
|
|
91
91
|
},
|
|
92
92
|
"link": {
|
|
93
|
-
"title": "
|
|
94
|
-
"href": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
93
|
+
"title": "Aggiungi/modifica collegamento",
|
|
94
|
+
"href": "Indirizzo del collegamento",
|
|
95
|
+
"href_error": "Indirizzo del collegamento non valido",
|
|
96
|
+
"target": "Apri in...",
|
|
97
|
+
"target_blank": "Nuova finestra",
|
|
98
|
+
"target_self": "Finestra corrente",
|
|
99
|
+
"rel": "Rel",
|
|
100
|
+
"class": "Classe CSS"
|
|
101
|
+
},
|
|
102
|
+
"preview": {
|
|
103
|
+
"title": "Anteprima"
|
|
98
104
|
},
|
|
99
105
|
"source": {
|
|
100
|
-
"title": "
|
|
101
|
-
"prettify": "
|
|
106
|
+
"title": "Visualizza codice sorgente",
|
|
107
|
+
"prettify": "Formatta"
|
|
102
108
|
}
|
|
103
109
|
},
|
|
104
110
|
"misc": {
|
|
105
|
-
"source": "
|
|
106
|
-
"preview": "
|
|
111
|
+
"source": "Visualizza codice sorgente",
|
|
112
|
+
"preview": "Anteprima"
|
|
107
113
|
},
|
|
108
114
|
"footer": {
|
|
109
115
|
"words": "parole",
|