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.
Files changed (107) hide show
  1. package/README.md +7 -3
  2. package/dist/tiptapify.css +1 -1
  3. package/dist/tiptapify.mjs +18524 -17801
  4. package/dist/tiptapify.umd.js +77 -38
  5. package/index.d.ts +2 -2
  6. package/package.json +41 -40
  7. package/src/components/MenuBubble.vue +8 -8
  8. package/src/components/Tiptapify.vue +5 -6
  9. package/src/components/Toolbar/Group.vue +2 -2
  10. package/src/components/Toolbar/GroupBtn.vue +12 -9
  11. package/src/components/Toolbar/GroupDropdown.vue +5 -19
  12. package/src/components/Toolbar/Index.vue +13 -9
  13. package/src/components/Toolbar/Items.vue +5 -8
  14. package/src/components/Toolbar/Toggle.vue +3 -5
  15. package/src/components/Toolbar/defaultExtensionComponents.ts +34 -13
  16. package/src/components/Toolbar/items.ts +53 -70
  17. package/src/components/UI/BtnIcon.vue +24 -0
  18. package/src/components/UI/{Dialog.vue → TiptapifyDialog.vue} +4 -3
  19. package/src/components/editorExtensions.ts +17 -2
  20. package/src/components/index.ts +8 -2
  21. package/src/composables/Toolbar/Actions/useRedo.ts +23 -0
  22. package/src/composables/Toolbar/Actions/useUndo.ts +23 -0
  23. package/src/composables/Toolbar/Alignment/useAlignmentCenter.ts +24 -0
  24. package/src/composables/Toolbar/Alignment/useAlignmentJustify.ts +24 -0
  25. package/src/composables/Toolbar/Alignment/useAlignmentLeft.ts +24 -0
  26. package/src/composables/Toolbar/Alignment/useAlignmentRight.ts +24 -0
  27. package/src/composables/Toolbar/Format/useBold.ts +24 -0
  28. package/src/composables/Toolbar/Format/useItalic.ts +24 -0
  29. package/src/composables/Toolbar/Format/useStrike.ts +24 -0
  30. package/src/composables/Toolbar/Format/useUnderline.ts +24 -0
  31. package/src/composables/Toolbar/FormatExtra/useBlockquote.ts +24 -0
  32. package/src/composables/Toolbar/FormatExtra/useCode.ts +24 -0
  33. package/src/composables/Toolbar/FormatExtra/useCodeBlock.ts +24 -0
  34. package/src/composables/Toolbar/FormatExtra/useSub.ts +24 -0
  35. package/src/composables/Toolbar/FormatExtra/useSup.ts +24 -0
  36. package/src/composables/Toolbar/List/useBullet.ts +23 -0
  37. package/src/composables/Toolbar/List/useIndent.ts +24 -0
  38. package/src/composables/Toolbar/List/useNumbered.ts +23 -0
  39. package/src/composables/Toolbar/List/useOutdent.ts +24 -0
  40. package/src/composables/Toolbar/List/useTask.ts +23 -0
  41. package/src/composables/Toolbar/Media/useImage.ts +24 -0
  42. package/src/composables/Toolbar/Media/useLink.ts +24 -0
  43. package/src/composables/Toolbar/Media/useTable.ts +188 -0
  44. package/src/composables/Toolbar/Misc/useBreak.ts +21 -0
  45. package/src/composables/Toolbar/Misc/useFormatClear.ts +23 -0
  46. package/src/composables/Toolbar/Misc/useInvisibleCharacters.ts +23 -0
  47. package/src/composables/Toolbar/Misc/useLine.ts +21 -0
  48. package/src/composables/Toolbar/Misc/usePreview.ts +20 -0
  49. package/src/composables/Toolbar/Misc/useSource.ts +21 -0
  50. package/src/composables/Toolbar/Style/useColor.ts +36 -0
  51. package/src/composables/Toolbar/Style/useFontFamily.ts +49 -0
  52. package/src/composables/Toolbar/Style/useFontSize.ts +50 -0
  53. package/src/composables/Toolbar/Style/useHeading.ts +64 -0
  54. package/src/composables/Toolbar/Style/useHighlight.ts +36 -0
  55. package/src/composables/Toolbar/Style/useLineHeight.ts +49 -0
  56. package/src/composables/Toolbar/useActionsItems.ts +9 -0
  57. package/src/composables/Toolbar/useAlignmentItems.ts +13 -0
  58. package/src/composables/Toolbar/useFormatExtraItems.ts +15 -0
  59. package/src/composables/Toolbar/useFormatItems.ts +13 -0
  60. package/src/composables/Toolbar/useListItems.ts +15 -0
  61. package/src/composables/Toolbar/useMediaItems.ts +11 -0
  62. package/src/composables/Toolbar/useMiscItems.ts +17 -0
  63. package/src/composables/Toolbar/useStyleItems.ts +17 -0
  64. package/src/{components/Toolbar/fonts.ts → constants/style.ts} +21 -0
  65. package/src/extensions/components/FontFamily.vue +82 -0
  66. package/src/extensions/components/FontSize.vue +83 -0
  67. package/src/extensions/components/ImageDialog.vue +7 -3
  68. package/src/extensions/components/LineHeight.vue +82 -0
  69. package/src/extensions/components/LinkDialog.vue +27 -7
  70. package/src/extensions/components/PreviewDialog.vue +11 -4
  71. package/src/extensions/components/ShowSourceDialog.vue +10 -6
  72. package/src/extensions/components/StyleColor.vue +2 -2
  73. package/src/extensions/components/slashCommands/CommandsList.vue +1 -4
  74. package/src/extensions/image.ts +2 -1
  75. package/src/extensions/link.ts +10 -1
  76. package/src/extensions/preview.ts +2 -1
  77. package/src/extensions/slash-commands.ts +1 -1
  78. package/src/extensions/view-source.ts +2 -1
  79. package/src/i18n/locales/ch.json +84 -82
  80. package/src/i18n/locales/cz.json +32 -30
  81. package/src/i18n/locales/de.json +28 -26
  82. package/src/i18n/locales/en.json +3 -1
  83. package/src/i18n/locales/es.json +30 -28
  84. package/src/i18n/locales/fr.json +30 -28
  85. package/src/i18n/locales/it.json +32 -30
  86. package/src/i18n/locales/la.json +61 -59
  87. package/src/i18n/locales/lt.json +38 -36
  88. package/src/i18n/locales/nl.json +31 -29
  89. package/src/i18n/locales/pl.json +32 -30
  90. package/src/i18n/locales/pt.json +29 -27
  91. package/src/i18n/locales/ru.json +3 -1
  92. package/src/i18n/locales/se.json +30 -28
  93. package/src/i18n/locales/ua.json +3 -1
  94. package/src/index.ts +3 -1
  95. package/src/types/extensionComponents.ts +22 -0
  96. package/src/types/toolbarItems.ts +43 -0
  97. package/src/types/toolbarSections.ts +11 -0
  98. package/src/components/Toolbar/items/actions.ts +0 -32
  99. package/src/components/Toolbar/items/alignment.ts +0 -60
  100. package/src/components/Toolbar/items/format.ts +0 -60
  101. package/src/components/Toolbar/items/formatExtra.ts +0 -73
  102. package/src/components/Toolbar/items/list.ts +0 -70
  103. package/src/components/Toolbar/items/media.ts +0 -211
  104. package/src/components/Toolbar/items/misc.ts +0 -59
  105. package/src/components/Toolbar/items/style.ts +0 -204
  106. package/src/types/overridable-extensions.ts +0 -6
  107. /package/src/{components → extensions/components}/CodeBlockComponent.vue +0 -0
@@ -1,26 +1,27 @@
1
1
  {
2
+ "defaultValue": "Valor por defecto",
2
3
  "content": {
3
- "placeholder": "Escriba algo aquí..."
4
+ "placeholder": "Escribe algo..."
4
5
  },
5
6
  "style": {
6
- "paragraph": "Párrafo",
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": "Familia de fuente",
17
- "fontSize": "Tamaño de fuente",
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": "Quitar color",
23
- "custom": "Color personalizado"
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 fila de encabezado",
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": "Combinar celdas",
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": "Alinear a la izquierda",
69
- "center": "Alinear al centro",
70
- "right": "Alinear a la derecha",
71
- "justify": "Justificar"
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 sin orden",
76
+ "bullet": "Lista con viñetas",
76
77
  "numbered": "Lista numerada",
77
78
  "task": "Lista de tareas",
78
- "indent": "Sangrar elemento",
79
- "outdent": "Desangrar elemento"
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/editar imagen",
87
+ "title": "Agregar/modificar imagen",
87
88
  "src": "Fuente",
88
- "alt": "Texto alternativo",
89
+ "alt": "alt",
89
90
  "width": "Ancho",
90
91
  "height": "Alto"
91
92
  },
92
93
  "link": {
93
- "title": "Agregar/editar enlace",
94
+ "title": "Agregar/modificar enlace",
94
95
  "href": "Dirección del enlace",
95
- "href_error": "Dirección del enlace inválida",
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": "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": "Formatear"
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",
@@ -1,27 +1,28 @@
1
1
 
2
2
  {
3
+ "defaultValue": "Valeur par défaut",
3
4
  "content": {
4
- "placeholder": "Écrivez quelque chose ici..."
5
+ "placeholder": "Écrivez quelque chose..."
5
6
  },
6
7
  "style": {
7
- "paragraph": "Paragraphe",
8
- "heading": "Titre",
8
+ "paragraph": "paragraphe",
9
+ "heading": "En-tête",
9
10
  "headings": {
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"
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 de caractères",
18
- "fontSize": "Taille de police",
18
+ "fontFamily": "Police",
19
+ "fontSize": "Taille",
19
20
  "lineHeight": "Hauteur de ligne",
20
21
  "color": {
21
- "highlight": "Couleur de surligné",
22
+ "highlight": "Couleur de surbrillance",
22
23
  "text": "Couleur du texte",
23
- "unset": "Supprimer la couleur",
24
- "custom": "Couleur personnalisée"
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": "Rétablir"
66
+ "redo": "Refaire"
66
67
  },
67
68
  "alignment": "Alignement",
68
69
  "alignments": {
69
- "left": "Aligner à gauche",
70
- "center": "Centrer",
71
- "right": "Aligner à droite",
72
- "justify": "Justifier"
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": "Indenter l'élément",
80
- "outdent": "Désindenter l'élément"
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 une image",
88
+ "title": "Ajouter/modifier l'image",
88
89
  "src": "Source",
89
- "alt": "Texte alternatif",
90
+ "alt": "alt",
90
91
  "width": "Largeur",
91
92
  "height": "Hauteur"
92
93
  },
93
94
  "link": {
94
- "title": "Ajouter/modifier un lien",
95
+ "title": "Ajouter/modifier le lien",
95
96
  "href": "Adresse du lien",
96
- "href_error": "Adresse du lien invalide",
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": "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": "Formater"
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",
@@ -1,26 +1,27 @@
1
1
  {
2
+ "defaultValue": "Valore predefinito",
2
3
  "content": {
3
- "placeholder": "Scrivi qualcosa qui..."
4
+ "placeholder": "Scrivi qualcosa..."
4
5
  },
5
6
  "style": {
6
- "paragraph": "Paragrafo",
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": "Famiglia di caratteri",
17
- "fontSize": "Dimensione carattere",
18
- "lineHeight": "Altezza della linea",
17
+ "fontFamily": "Carattere",
18
+ "fontSize": "Dimensione",
19
+ "lineHeight": "Altezza riga",
19
20
  "color": {
20
21
  "highlight": "Colore evidenziazione",
21
- "text": "Colore del testo",
22
- "unset": "Rimuovi colore",
23
- "custom": "Colore personalizzato"
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 di riga",
34
+ "break": "Interruzione riga",
34
35
  "line": "Linea orizzontale",
35
36
  "blockquote": "Citazione",
36
37
  "code": "Codice",
37
- "codeblock": "Blocco di codice",
38
- "formatClear": "Cancella formato"
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": "Allinea a sinistra",
69
- "center": "Allinea al centro",
70
- "right": "Allinea a destra",
71
- "justify": "Giustifica"
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 delle attività",
78
- "indent": "Indenta elemento",
79
- "outdent": "Rimuovi indentazione"
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": "Testo alternativo",
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 del collegamento",
95
- "href_error": "Indirizzo del collegamento non valido",
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": "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": "Formatta"
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",
@@ -1,115 +1,117 @@
1
1
  {
2
+ "defaultValue": "Valor per defectum",
2
3
  "content": {
3
- "placeholder": "Scribe aliquid hic..."
4
+ "placeholder": "Scribe aliquid..."
4
5
  },
5
6
  "style": {
6
- "paragraph": "Paragraphus",
7
+ "paragraph": "paragraphus",
7
8
  "heading": "Titulus",
8
9
  "headings": {
9
- "h1": "Titulus gradus 1",
10
- "h2": "Titulus gradus 2",
11
- "h3": "Titulus gradus 3",
12
- "h4": "Titulus gradus 4",
13
- "h5": "Titulus gradus 5",
14
- "h6": "Titulus gradus 6"
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": "Familia litterarum",
17
- "fontSize": "Magnitudo litterarum",
17
+ "fontFamily": "Genus litterarum",
18
+ "fontSize": "Magnitudo",
18
19
  "lineHeight": "Altitudo lineae",
19
20
  "color": {
20
- "highlight": "Color illustrationis",
21
+ "highlight": "Color illuminationis",
21
22
  "text": "Color textus",
22
- "unset": "Removere colorem",
23
- "custom": "Color proprius"
23
+ "unset": "Colorem delere",
24
+ "custom": "Selectio propria"
24
25
  }
25
26
  },
26
27
  "format": {
27
- "bold": "Crassus",
28
- "italic": "Italicus",
29
- "strike": "Percussus",
30
- "underline": "Sublineatus",
31
- "sup": "Superscriptus",
32
- "sub": "Subscriptus",
33
- "break": "Fractio dura",
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": "Codex blocus",
38
- "formatClear": "Forma clara"
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": "Inserere tabulam",
46
- "deleteTable": "Delere tabulam",
47
- "insertWithHeaderRow": "Inserere tabulam cum titulo",
46
+ "insertTable": "Tabulam inserere",
47
+ "deleteTable": "Tabulam delere",
48
+ "insertWithHeaderRow": "Tabulam cum titulo inserere",
48
49
  "rows": "Ordines",
49
50
  "row": "Ordo",
50
- "insertRowBefore": "Inserere ordinem ante",
51
- "insertRowAfter": "Inserere ordinem post",
52
- "deleteRow": "Delere ordinem",
51
+ "insertRowBefore": "Ordinem ante inserere",
52
+ "insertRowAfter": "Ordinem post inserere",
53
+ "deleteRow": "Ordinem delere",
53
54
  "cols": "Columnae",
54
55
  "col": "Columna",
55
- "insertColBefore": "Inserere columnam ante",
56
- "insertColAfter": "Inserere columnam post",
57
- "deleteCol": "Delere columnam",
58
- "mergeCells": "Conjungere cellulas",
59
- "splitCell": "Dividere cellulam"
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 facere",
64
- "redo": "Iterum facere"
64
+ "undo": "Infectum reddere",
65
+ "redo": "Iterare"
65
66
  },
66
- "alignment": "Directio",
67
+ "alignment": "Ordinatio",
67
68
  "alignments": {
68
- "left": "Sinistra dirigere",
69
- "center": "Centro dirigere",
70
- "right": "Dextra dirigere",
71
- "justify": "Justificare"
69
+ "left": "Ordinatio sinistra",
70
+ "center": "Ordinatio media",
71
+ "right": "Ordinatio dextra",
72
+ "justify": "Ordinatio iustificata"
72
73
  },
73
- "list": "Catalogus",
74
+ "list": "Index",
74
75
  "lists": {
75
- "bullet": "Catalogus non ordinatus",
76
- "numbered": "Catalogus numeratus",
77
- "task": "Catalogus operum",
78
- "indent": "Elementum intendere",
79
- "outdent": "Elementum extendere"
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": "Addere/emendare imaginem",
87
+ "title": "Imaginem addere/mutare",
87
88
  "src": "Fons",
88
- "alt": "Alternativus textus",
89
+ "alt": "alt",
89
90
  "width": "Latitudo",
90
91
  "height": "Altitudo"
91
92
  },
92
93
  "link": {
93
- "title": "Addere/emendare nexum",
94
- "href": "Nexus locus",
95
- "href_error": "Nexus locus invalidus",
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": "Praesens fenestra",
99
- "rel": "Rel",
100
- "class": "CSS classis"
99
+ "target_self": "Fenestra praesens",
100
+ "rel": "rel",
101
+ "class": "Classis CSS"
101
102
  },
102
103
  "preview": {
103
- "title": "Prospectus"
104
+ "title": "Praevisio"
104
105
  },
105
106
  "source": {
106
- "title": "Videre codicem fontem",
107
- "prettify": "Ornare"
107
+ "title": "Codicem fontem videre",
108
+ "prettify": "prettify"
108
109
  }
109
110
  },
110
111
  "misc": {
111
- "source": "Videre codicem fontem",
112
- "preview": "Prospectus"
112
+ "source": "Codicem fontem videre",
113
+ "preview": "Praevisio",
114
+ "toggleInvisibleCharacters": "Ostende/cela characteres invisibiles"
113
115
  },
114
116
  "footer": {
115
117
  "words": "verba",