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/es.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Valor por defecto",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "
|
|
4
|
+
"placeholder": "Escribe algo..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "párrafo",
|
|
7
8
|
"heading": "Encabezado",
|
|
8
9
|
"headings": {
|
|
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"
|
|
10
|
+
"h1": "Encabezado de nivel 1",
|
|
11
|
+
"h2": "Encabezado de nivel 2",
|
|
12
|
+
"h3": "Encabezado de nivel 3",
|
|
13
|
+
"h4": "Encabezado de nivel 4",
|
|
14
|
+
"h5": "Encabezado de nivel 5",
|
|
15
|
+
"h6": "Encabezado de nivel 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "Tamaño
|
|
17
|
+
"fontFamily": "Fuente",
|
|
18
|
+
"fontSize": "Tamaño",
|
|
18
19
|
"lineHeight": "Altura de línea",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Color de resaltado",
|
|
21
22
|
"text": "Color del texto",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Limpiar color",
|
|
24
|
+
"custom": "Selección personalizada"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"table": "Tabla",
|
|
45
46
|
"insertTable": "Insertar tabla",
|
|
46
47
|
"deleteTable": "Eliminar tabla",
|
|
47
|
-
"insertWithHeaderRow": "Insertar tabla con
|
|
48
|
+
"insertWithHeaderRow": "Insertar tabla con encabezado",
|
|
48
49
|
"rows": "Filas",
|
|
49
50
|
"row": "Fila",
|
|
50
51
|
"insertRowBefore": "Insertar fila antes",
|
|
@@ -55,7 +56,7 @@
|
|
|
55
56
|
"insertColBefore": "Insertar columna antes",
|
|
56
57
|
"insertColAfter": "Insertar columna después",
|
|
57
58
|
"deleteCol": "Eliminar columna",
|
|
58
|
-
"mergeCells": "
|
|
59
|
+
"mergeCells": "Fusionar celdas",
|
|
59
60
|
"splitCell": "Dividir celda"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
@@ -65,38 +66,38 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Alineación",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Alineación izquierda",
|
|
70
|
+
"center": "Alineación centrada",
|
|
71
|
+
"right": "Alineación derecha",
|
|
72
|
+
"justify": "Justificado"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lista",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "Lista
|
|
76
|
+
"bullet": "Lista con viñetas",
|
|
76
77
|
"numbered": "Lista numerada",
|
|
77
78
|
"task": "Lista de tareas",
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
79
|
+
"indent": "Aumentar sangría del elemento",
|
|
80
|
+
"outdent": "Disminuir sangría del elemento"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Aplicar",
|
|
83
84
|
"clear": "Limpiar",
|
|
84
85
|
"close": "Cerrar",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "Agregar/
|
|
87
|
+
"title": "Agregar/modificar imagen",
|
|
87
88
|
"src": "Fuente",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Ancho",
|
|
90
91
|
"height": "Alto"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "Agregar/
|
|
94
|
+
"title": "Agregar/modificar enlace",
|
|
94
95
|
"href": "Dirección del enlace",
|
|
95
|
-
"href_error": "Dirección
|
|
96
|
+
"href_error": "Dirección de enlace incorrecta",
|
|
96
97
|
"target": "Abrir en...",
|
|
97
98
|
"target_blank": "Nueva ventana",
|
|
98
99
|
"target_self": "Ventana actual",
|
|
99
|
-
"rel": "
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "Clase CSS"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
@@ -104,12 +105,13 @@
|
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Ver código fuente",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Ver código fuente",
|
|
112
|
-
"preview": "Vista previa"
|
|
113
|
+
"preview": "Vista previa",
|
|
114
|
+
"toggleInvisibleCharacters": "Mostrar/ocultar caracteres invisibles"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "palabras",
|
package/src/i18n/locales/fr.json
CHANGED
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
|
|
2
2
|
{
|
|
3
|
+
"defaultValue": "Valeur par défaut",
|
|
3
4
|
"content": {
|
|
4
|
-
"placeholder": "Écrivez quelque chose
|
|
5
|
+
"placeholder": "Écrivez quelque chose..."
|
|
5
6
|
},
|
|
6
7
|
"style": {
|
|
7
|
-
"paragraph": "
|
|
8
|
-
"heading": "
|
|
8
|
+
"paragraph": "paragraphe",
|
|
9
|
+
"heading": "En-tête",
|
|
9
10
|
"headings": {
|
|
10
|
-
"h1": "
|
|
11
|
-
"h2": "
|
|
12
|
-
"h3": "
|
|
13
|
-
"h4": "
|
|
14
|
-
"h5": "
|
|
15
|
-
"h6": "
|
|
11
|
+
"h1": "En-tête de niveau 1",
|
|
12
|
+
"h2": "En-tête de niveau 2",
|
|
13
|
+
"h3": "En-tête de niveau 3",
|
|
14
|
+
"h4": "En-tête de niveau 4",
|
|
15
|
+
"h5": "En-tête de niveau 5",
|
|
16
|
+
"h6": "En-tête de niveau 6"
|
|
16
17
|
},
|
|
17
|
-
"fontFamily": "Police
|
|
18
|
-
"fontSize": "Taille
|
|
18
|
+
"fontFamily": "Police",
|
|
19
|
+
"fontSize": "Taille",
|
|
19
20
|
"lineHeight": "Hauteur de ligne",
|
|
20
21
|
"color": {
|
|
21
|
-
"highlight": "Couleur de
|
|
22
|
+
"highlight": "Couleur de surbrillance",
|
|
22
23
|
"text": "Couleur du texte",
|
|
23
|
-
"unset": "
|
|
24
|
-
"custom": "
|
|
24
|
+
"unset": "Effacer la couleur",
|
|
25
|
+
"custom": "Sélection personnalisée"
|
|
25
26
|
}
|
|
26
27
|
},
|
|
27
28
|
"format": {
|
|
@@ -62,42 +63,42 @@
|
|
|
62
63
|
},
|
|
63
64
|
"action": {
|
|
64
65
|
"undo": "Annuler",
|
|
65
|
-
"redo": "
|
|
66
|
+
"redo": "Refaire"
|
|
66
67
|
},
|
|
67
68
|
"alignment": "Alignement",
|
|
68
69
|
"alignments": {
|
|
69
|
-
"left": "
|
|
70
|
-
"center": "
|
|
71
|
-
"right": "
|
|
72
|
-
"justify": "
|
|
70
|
+
"left": "Alignement à gauche",
|
|
71
|
+
"center": "Alignement centré",
|
|
72
|
+
"right": "Alignement à droite",
|
|
73
|
+
"justify": "Justifié"
|
|
73
74
|
},
|
|
74
75
|
"list": "Liste",
|
|
75
76
|
"lists": {
|
|
76
77
|
"bullet": "Liste à puces",
|
|
77
78
|
"numbered": "Liste numérotée",
|
|
78
79
|
"task": "Liste de tâches",
|
|
79
|
-
"indent": "
|
|
80
|
-
"outdent": "
|
|
80
|
+
"indent": "Augmenter l'indentation de l'élément",
|
|
81
|
+
"outdent": "Diminuer l'indentation de l'élément"
|
|
81
82
|
},
|
|
82
83
|
"dialog": {
|
|
83
84
|
"apply": "Appliquer",
|
|
84
85
|
"clear": "Effacer",
|
|
85
86
|
"close": "Fermer",
|
|
86
87
|
"image": {
|
|
87
|
-
"title": "Ajouter/modifier
|
|
88
|
+
"title": "Ajouter/modifier l'image",
|
|
88
89
|
"src": "Source",
|
|
89
|
-
"alt": "
|
|
90
|
+
"alt": "alt",
|
|
90
91
|
"width": "Largeur",
|
|
91
92
|
"height": "Hauteur"
|
|
92
93
|
},
|
|
93
94
|
"link": {
|
|
94
|
-
"title": "Ajouter/modifier
|
|
95
|
+
"title": "Ajouter/modifier le lien",
|
|
95
96
|
"href": "Adresse du lien",
|
|
96
|
-
"href_error": "Adresse
|
|
97
|
+
"href_error": "Adresse de lien incorrecte",
|
|
97
98
|
"target": "Ouvrir dans...",
|
|
98
99
|
"target_blank": "Nouvelle fenêtre",
|
|
99
100
|
"target_self": "Fenêtre actuelle",
|
|
100
|
-
"rel": "
|
|
101
|
+
"rel": "rel",
|
|
101
102
|
"class": "Classe CSS"
|
|
102
103
|
},
|
|
103
104
|
"preview": {
|
|
@@ -105,12 +106,13 @@
|
|
|
105
106
|
},
|
|
106
107
|
"source": {
|
|
107
108
|
"title": "Voir le code source",
|
|
108
|
-
"prettify": "
|
|
109
|
+
"prettify": "prettify"
|
|
109
110
|
}
|
|
110
111
|
},
|
|
111
112
|
"misc": {
|
|
112
113
|
"source": "Voir le code source",
|
|
113
|
-
"preview": "Aperçu"
|
|
114
|
+
"preview": "Aperçu",
|
|
115
|
+
"toggleInvisibleCharacters": "Afficher/masquer les caractères invisibles"
|
|
114
116
|
},
|
|
115
117
|
"footer": {
|
|
116
118
|
"words": "mots",
|
package/src/i18n/locales/it.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Valore predefinito",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Scrivi qualcosa
|
|
4
|
+
"placeholder": "Scrivi qualcosa..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "paragrafo",
|
|
7
8
|
"heading": "Intestazione",
|
|
8
9
|
"headings": {
|
|
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"
|
|
10
|
+
"h1": "Intestazione di livello 1",
|
|
11
|
+
"h2": "Intestazione di livello 2",
|
|
12
|
+
"h3": "Intestazione di livello 3",
|
|
13
|
+
"h4": "Intestazione di livello 4",
|
|
14
|
+
"h5": "Intestazione di livello 5",
|
|
15
|
+
"h6": "Intestazione di livello 6"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "Dimensione
|
|
18
|
-
"lineHeight": "Altezza
|
|
17
|
+
"fontFamily": "Carattere",
|
|
18
|
+
"fontSize": "Dimensione",
|
|
19
|
+
"lineHeight": "Altezza riga",
|
|
19
20
|
"color": {
|
|
20
21
|
"highlight": "Colore evidenziazione",
|
|
21
|
-
"text": "Colore
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
22
|
+
"text": "Colore testo",
|
|
23
|
+
"unset": "Cancella colore",
|
|
24
|
+
"custom": "Selezione personalizzata"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
@@ -30,12 +31,12 @@
|
|
|
30
31
|
"underline": "Sottolineato",
|
|
31
32
|
"sup": "Apice",
|
|
32
33
|
"sub": "Pedice",
|
|
33
|
-
"break": "Interruzione
|
|
34
|
+
"break": "Interruzione riga",
|
|
34
35
|
"line": "Linea orizzontale",
|
|
35
36
|
"blockquote": "Citazione",
|
|
36
37
|
"code": "Codice",
|
|
37
|
-
"codeblock": "Blocco
|
|
38
|
-
"formatClear": "Cancella
|
|
38
|
+
"codeblock": "Blocco codice",
|
|
39
|
+
"formatClear": "Cancella formattazione"
|
|
39
40
|
},
|
|
40
41
|
"media": {
|
|
41
42
|
"link": "Collegamento esterno",
|
|
@@ -65,18 +66,18 @@
|
|
|
65
66
|
},
|
|
66
67
|
"alignment": "Allineamento",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Allineamento a sinistra",
|
|
70
|
+
"center": "Allineamento centrato",
|
|
71
|
+
"right": "Allineamento a destra",
|
|
72
|
+
"justify": "Giustificato"
|
|
72
73
|
},
|
|
73
74
|
"list": "Lista",
|
|
74
75
|
"lists": {
|
|
75
76
|
"bullet": "Lista puntata",
|
|
76
77
|
"numbered": "Lista numerata",
|
|
77
|
-
"task": "Lista
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
78
|
+
"task": "Lista attività",
|
|
79
|
+
"indent": "Aumenta rientro elemento",
|
|
80
|
+
"outdent": "Diminuisci rientro elemento"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Applica",
|
|
@@ -85,18 +86,18 @@
|
|
|
85
86
|
"image": {
|
|
86
87
|
"title": "Aggiungi/modifica immagine",
|
|
87
88
|
"src": "Origine",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Larghezza",
|
|
90
91
|
"height": "Altezza"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
94
|
"title": "Aggiungi/modifica collegamento",
|
|
94
|
-
"href": "Indirizzo
|
|
95
|
-
"href_error": "Indirizzo
|
|
95
|
+
"href": "Indirizzo collegamento",
|
|
96
|
+
"href_error": "Indirizzo collegamento incorretto",
|
|
96
97
|
"target": "Apri in...",
|
|
97
98
|
"target_blank": "Nuova finestra",
|
|
98
99
|
"target_self": "Finestra corrente",
|
|
99
|
-
"rel": "
|
|
100
|
+
"rel": "rel",
|
|
100
101
|
"class": "Classe CSS"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
@@ -104,12 +105,13 @@
|
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
107
|
"title": "Visualizza codice sorgente",
|
|
107
|
-
"prettify": "
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
112
|
"source": "Visualizza codice sorgente",
|
|
112
|
-
"preview": "Anteprima"
|
|
113
|
+
"preview": "Anteprima",
|
|
114
|
+
"toggleInvisibleCharacters": "Mostra/nascondi caratteri invisibili"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "parole",
|
package/src/i18n/locales/la.json
CHANGED
|
@@ -1,115 +1,117 @@
|
|
|
1
1
|
{
|
|
2
|
+
"defaultValue": "Valor per defectum",
|
|
2
3
|
"content": {
|
|
3
|
-
"placeholder": "Scribe aliquid
|
|
4
|
+
"placeholder": "Scribe aliquid..."
|
|
4
5
|
},
|
|
5
6
|
"style": {
|
|
6
|
-
"paragraph": "
|
|
7
|
+
"paragraph": "paragraphus",
|
|
7
8
|
"heading": "Titulus",
|
|
8
9
|
"headings": {
|
|
9
|
-
"h1": "Titulus gradus
|
|
10
|
-
"h2": "Titulus gradus
|
|
11
|
-
"h3": "Titulus gradus
|
|
12
|
-
"h4": "Titulus gradus
|
|
13
|
-
"h5": "Titulus gradus
|
|
14
|
-
"h6": "Titulus gradus
|
|
10
|
+
"h1": "Titulus primi gradus",
|
|
11
|
+
"h2": "Titulus secundi gradus",
|
|
12
|
+
"h3": "Titulus tertii gradus",
|
|
13
|
+
"h4": "Titulus quarti gradus",
|
|
14
|
+
"h5": "Titulus quinti gradus",
|
|
15
|
+
"h6": "Titulus sexti gradus"
|
|
15
16
|
},
|
|
16
|
-
"fontFamily": "
|
|
17
|
-
"fontSize": "Magnitudo
|
|
17
|
+
"fontFamily": "Genus litterarum",
|
|
18
|
+
"fontSize": "Magnitudo",
|
|
18
19
|
"lineHeight": "Altitudo lineae",
|
|
19
20
|
"color": {
|
|
20
|
-
"highlight": "Color
|
|
21
|
+
"highlight": "Color illuminationis",
|
|
21
22
|
"text": "Color textus",
|
|
22
|
-
"unset": "
|
|
23
|
-
"custom": "
|
|
23
|
+
"unset": "Colorem delere",
|
|
24
|
+
"custom": "Selectio propria"
|
|
24
25
|
}
|
|
25
26
|
},
|
|
26
27
|
"format": {
|
|
27
|
-
"bold": "
|
|
28
|
-
"italic": "
|
|
29
|
-
"strike": "
|
|
30
|
-
"underline": "
|
|
31
|
-
"sup": "
|
|
32
|
-
"sub": "
|
|
33
|
-
"break": "Fractio
|
|
28
|
+
"bold": "Crassum",
|
|
29
|
+
"italic": "Obliquum",
|
|
30
|
+
"strike": "Deletum",
|
|
31
|
+
"underline": "Sublineatum",
|
|
32
|
+
"sup": "Superscriptum",
|
|
33
|
+
"sub": "Subscriptum",
|
|
34
|
+
"break": "Fractio lineae",
|
|
34
35
|
"line": "Linea horizontalis",
|
|
35
36
|
"blockquote": "Citatio",
|
|
36
37
|
"code": "Codex",
|
|
37
|
-
"codeblock": "
|
|
38
|
-
"formatClear": "
|
|
38
|
+
"codeblock": "Blocum codicis",
|
|
39
|
+
"formatClear": "Formam delere"
|
|
39
40
|
},
|
|
40
41
|
"media": {
|
|
41
42
|
"link": "Nexus externus",
|
|
42
43
|
"image": "Imago",
|
|
43
44
|
"tables": {
|
|
44
45
|
"table": "Tabula",
|
|
45
|
-
"insertTable": "
|
|
46
|
-
"deleteTable": "
|
|
47
|
-
"insertWithHeaderRow": "
|
|
46
|
+
"insertTable": "Tabulam inserere",
|
|
47
|
+
"deleteTable": "Tabulam delere",
|
|
48
|
+
"insertWithHeaderRow": "Tabulam cum titulo inserere",
|
|
48
49
|
"rows": "Ordines",
|
|
49
50
|
"row": "Ordo",
|
|
50
|
-
"insertRowBefore": "
|
|
51
|
-
"insertRowAfter": "
|
|
52
|
-
"deleteRow": "
|
|
51
|
+
"insertRowBefore": "Ordinem ante inserere",
|
|
52
|
+
"insertRowAfter": "Ordinem post inserere",
|
|
53
|
+
"deleteRow": "Ordinem delere",
|
|
53
54
|
"cols": "Columnae",
|
|
54
55
|
"col": "Columna",
|
|
55
|
-
"insertColBefore": "
|
|
56
|
-
"insertColAfter": "
|
|
57
|
-
"deleteCol": "
|
|
58
|
-
"mergeCells": "
|
|
59
|
-
"splitCell": "
|
|
56
|
+
"insertColBefore": "Columnam ante inserere",
|
|
57
|
+
"insertColAfter": "Columnam post inserere",
|
|
58
|
+
"deleteCol": "Columnam delere",
|
|
59
|
+
"mergeCells": "Cellulas iungere",
|
|
60
|
+
"splitCell": "Cellulam dividere"
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"action": {
|
|
63
|
-
"undo": "Infectum
|
|
64
|
-
"redo": "
|
|
64
|
+
"undo": "Infectum reddere",
|
|
65
|
+
"redo": "Iterare"
|
|
65
66
|
},
|
|
66
|
-
"alignment": "
|
|
67
|
+
"alignment": "Ordinatio",
|
|
67
68
|
"alignments": {
|
|
68
|
-
"left": "
|
|
69
|
-
"center": "
|
|
70
|
-
"right": "
|
|
71
|
-
"justify": "
|
|
69
|
+
"left": "Ordinatio sinistra",
|
|
70
|
+
"center": "Ordinatio media",
|
|
71
|
+
"right": "Ordinatio dextra",
|
|
72
|
+
"justify": "Ordinatio iustificata"
|
|
72
73
|
},
|
|
73
|
-
"list": "
|
|
74
|
+
"list": "Index",
|
|
74
75
|
"lists": {
|
|
75
|
-
"bullet": "
|
|
76
|
-
"numbered": "
|
|
77
|
-
"task": "
|
|
78
|
-
"indent": "
|
|
79
|
-
"outdent": "
|
|
76
|
+
"bullet": "Index punctatus",
|
|
77
|
+
"numbered": "Index numeratus",
|
|
78
|
+
"task": "Index officiorum",
|
|
79
|
+
"indent": "Recessum elementi augere",
|
|
80
|
+
"outdent": "Recessum elementi minuere"
|
|
80
81
|
},
|
|
81
82
|
"dialog": {
|
|
82
83
|
"apply": "Applicare",
|
|
83
84
|
"clear": "Purgare",
|
|
84
85
|
"close": "Claudere",
|
|
85
86
|
"image": {
|
|
86
|
-
"title": "
|
|
87
|
+
"title": "Imaginem addere/mutare",
|
|
87
88
|
"src": "Fons",
|
|
88
|
-
"alt": "
|
|
89
|
+
"alt": "alt",
|
|
89
90
|
"width": "Latitudo",
|
|
90
91
|
"height": "Altitudo"
|
|
91
92
|
},
|
|
92
93
|
"link": {
|
|
93
|
-
"title": "
|
|
94
|
-
"href": "
|
|
95
|
-
"href_error": "
|
|
94
|
+
"title": "Nexum addere/mutare",
|
|
95
|
+
"href": "Adressum nexi",
|
|
96
|
+
"href_error": "Adressum nexi incorrectum",
|
|
96
97
|
"target": "Aperire in...",
|
|
97
98
|
"target_blank": "Nova fenestra",
|
|
98
|
-
"target_self": "
|
|
99
|
-
"rel": "
|
|
100
|
-
"class": "CSS
|
|
99
|
+
"target_self": "Fenestra praesens",
|
|
100
|
+
"rel": "rel",
|
|
101
|
+
"class": "Classis CSS"
|
|
101
102
|
},
|
|
102
103
|
"preview": {
|
|
103
|
-
"title": "
|
|
104
|
+
"title": "Praevisio"
|
|
104
105
|
},
|
|
105
106
|
"source": {
|
|
106
|
-
"title": "
|
|
107
|
-
"prettify": "
|
|
107
|
+
"title": "Codicem fontem videre",
|
|
108
|
+
"prettify": "prettify"
|
|
108
109
|
}
|
|
109
110
|
},
|
|
110
111
|
"misc": {
|
|
111
|
-
"source": "
|
|
112
|
-
"preview": "
|
|
112
|
+
"source": "Codicem fontem videre",
|
|
113
|
+
"preview": "Praevisio",
|
|
114
|
+
"toggleInvisibleCharacters": "Ostende/cela characteres invisibiles"
|
|
113
115
|
},
|
|
114
116
|
"footer": {
|
|
115
117
|
"words": "verba",
|