@blocknote/core 0.24.2 → 0.25.0
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/blocknote.cjs +12 -0
- package/dist/blocknote.cjs.map +1 -0
- package/dist/blocknote.js +4754 -3514
- package/dist/blocknote.js.map +1 -1
- package/dist/comments.cjs +2 -0
- package/dist/comments.cjs.map +1 -0
- package/dist/comments.js +593 -0
- package/dist/comments.js.map +1 -0
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/webpack-stats.json +1 -1
- package/package.json +39 -26
- package/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +1022 -378
- package/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +730 -270
- package/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +3100 -1260
- package/src/api/blockManipulation/commands/removeBlocks/__snapshots__/removeBlocks.test.ts.snap +438 -162
- package/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +1168 -432
- package/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +930 -378
- package/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +2485 -1015
- package/src/api/blockManipulation/commands/updateBlock/updateBlock.test.ts +28 -1
- package/src/api/blockManipulation/commands/updateBlock/updateBlock.ts +1 -1
- package/src/api/blockManipulation/selections/__snapshots__/selection.test.ts.snap +292 -108
- package/src/api/blockManipulation/setupTestEnv.ts +14 -1
- package/src/api/blockManipulation/tables/tables.test.ts +1987 -0
- package/src/api/blockManipulation/tables/tables.ts +887 -0
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraph.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraphText.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteImage.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteParagraphInCustomBlock.html +66 -24
- package/src/api/clipboard/__snapshots__/external/pasteTable.html +132 -48
- package/src/api/clipboard/__snapshots__/external/pasteTableInExistingTable.html +136 -44
- package/src/api/clipboard/toClipboard/copyExtension.ts +2 -3
- package/src/api/exporters/html/__snapshots__/table/headerCols/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerCols/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerRows/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headerRows/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headersRows/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/headersRows/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedCellColors/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedCellColors/internal.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedRowspansAndColspans/external.html +1 -0
- package/src/api/exporters/html/__snapshots__/table/mixedRowspansAndColspans/internal.html +1 -0
- package/src/api/exporters/markdown/__snapshots__/table/headerCols/markdown.md +4 -0
- package/src/api/exporters/markdown/__snapshots__/table/headerRows/markdown.md +4 -0
- package/src/api/exporters/markdown/__snapshots__/table/mixedCellColors/markdown.md +5 -0
- package/src/api/exporters/markdown/__snapshots__/table/mixedRowspansAndColspans/markdown.md +5 -0
- package/src/api/nodeConversions/__snapshots__/nodeConversions.test.ts.snap +985 -20
- package/src/api/nodeConversions/blockToNode.ts +63 -20
- package/src/api/nodeConversions/nodeToBlock.ts +75 -13
- package/src/api/parsers/html/__snapshots__/parse-notion-html.json +145 -54
- package/src/api/testUtil/cases/defaultSchema.ts +782 -9
- package/src/api/testUtil/partialBlockTestUtil.ts +39 -4
- package/src/blocks/TableBlockContent/TableBlockContent.ts +11 -5
- package/src/blocks/defaultBlockTypeGuards.ts +8 -0
- package/src/comments/index.ts +9 -0
- package/src/comments/models/User.ts +8 -0
- package/src/comments/threadstore/DefaultThreadStoreAuth.ts +106 -0
- package/src/comments/threadstore/ThreadStore.ts +134 -0
- package/src/comments/threadstore/ThreadStoreAuth.ts +13 -0
- package/src/comments/threadstore/TipTapThreadStore.ts +292 -0
- package/src/comments/threadstore/yjs/RESTYjsThreadStore.ts +144 -0
- package/src/comments/threadstore/yjs/YjsThreadStore.test.ts +294 -0
- package/src/comments/threadstore/yjs/YjsThreadStore.ts +340 -0
- package/src/comments/threadstore/yjs/YjsThreadStoreBase.ts +48 -0
- package/src/comments/threadstore/yjs/yjsHelpers.ts +121 -0
- package/src/comments/types.ts +117 -0
- package/src/editor/Block.css +16 -8
- package/src/editor/BlockNoteEditor.ts +269 -92
- package/src/editor/BlockNoteExtensions.ts +24 -1
- package/src/editor/BlockNoteTipTapEditor.ts +5 -1
- package/src/editor/editor.css +17 -0
- package/src/extensions/BackgroundColor/BackgroundColorExtension.ts +1 -1
- package/src/extensions/Comments/CommentMark.ts +61 -0
- package/src/extensions/Comments/CommentsPlugin.ts +301 -0
- package/src/extensions/Comments/userstore/UserStore.ts +72 -0
- package/src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts +9 -5
- package/src/extensions/LinkToolbar/LinkToolbarPlugin.ts +3 -3
- package/src/extensions/ShowSelection/ShowSelectionPlugin.ts +52 -0
- package/src/extensions/TableHandles/TableHandlesPlugin.ts +409 -57
- package/src/extensions/TextAlignment/TextAlignmentExtension.ts +2 -0
- package/src/extensions/TextColor/TextColorExtension.ts +1 -1
- package/src/i18n/locales/ar.ts +23 -0
- package/src/i18n/locales/de.ts +15 -0
- package/src/i18n/locales/en.ts +25 -1
- package/src/i18n/locales/es.ts +16 -1
- package/src/i18n/locales/fr.ts +23 -0
- package/src/i18n/locales/hr.ts +18 -0
- package/src/i18n/locales/is.ts +24 -1
- package/src/i18n/locales/it.ts +15 -0
- package/src/i18n/locales/ja.ts +23 -0
- package/src/i18n/locales/ko.ts +23 -0
- package/src/i18n/locales/nl.ts +23 -0
- package/src/i18n/locales/no.ts +23 -0
- package/src/i18n/locales/pl.ts +23 -0
- package/src/i18n/locales/pt.ts +23 -0
- package/src/i18n/locales/ru.ts +23 -0
- package/src/i18n/locales/uk.ts +23 -0
- package/src/i18n/locales/vi.ts +23 -0
- package/src/i18n/locales/zh.ts +23 -0
- package/src/index.ts +6 -4
- package/src/schema/blocks/types.ts +32 -2
- package/src/util/browser.ts +1 -1
- package/src/util/table.ts +107 -0
- package/types/src/api/blockManipulation/tables/tables.d.ts +343 -0
- package/types/src/api/blockManipulation/tables/tables.test.d.ts +1 -0
- package/types/src/api/clipboard/toClipboard/copyExtension.d.ts +1 -1
- package/types/src/blocks/TableBlockContent/TableBlockContent.d.ts +1 -2
- package/types/src/blocks/defaultBlockTypeGuards.d.ts +3 -0
- package/types/src/comments/index.d.ts +9 -0
- package/types/src/comments/models/User.d.ts +8 -0
- package/types/src/comments/threadstore/DefaultThreadStoreAuth.d.ts +47 -0
- package/types/src/comments/threadstore/ThreadStore.d.ts +121 -0
- package/types/src/comments/threadstore/ThreadStoreAuth.d.ts +12 -0
- package/types/src/comments/threadstore/TipTapThreadStore.d.ts +97 -0
- package/types/src/comments/threadstore/yjs/RESTYjsThreadStore.d.ts +83 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStore.d.ts +79 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStore.test.d.ts +1 -0
- package/types/src/comments/threadstore/yjs/YjsThreadStoreBase.d.ts +15 -0
- package/types/src/comments/threadstore/yjs/yjsHelpers.d.ts +13 -0
- package/types/src/comments/types.d.ts +109 -0
- package/types/src/editor/BlockNoteEditor.d.ts +146 -66
- package/types/src/editor/BlockNoteExtensions.d.ts +4 -0
- package/types/src/extensions/Collaboration/createCollaborationExtensions.d.ts +1 -1
- package/types/src/extensions/Comments/CommentMark.d.ts +2 -0
- package/types/src/extensions/Comments/CommentsPlugin.d.ts +49 -0
- package/types/src/extensions/Comments/userstore/UserStore.d.ts +31 -0
- package/types/src/extensions/ShowSelection/ShowSelectionPlugin.d.ts +15 -0
- package/types/src/extensions/TableHandles/TableHandlesPlugin.d.ts +66 -1
- package/types/src/i18n/locales/de.d.ts +15 -0
- package/types/src/i18n/locales/en.d.ts +20 -0
- package/types/src/i18n/locales/es.d.ts +15 -0
- package/types/src/i18n/locales/hr.d.ts +18 -0
- package/types/src/i18n/locales/it.d.ts +15 -0
- package/types/src/index.d.ts +5 -4
- package/types/src/pm-nodes/BlockContainer.d.ts +2 -2
- package/types/src/pm-nodes/BlockGroup.d.ts +2 -2
- package/types/src/schema/blocks/types.d.ts +23 -2
- package/types/src/util/browser.d.ts +1 -1
- package/types/src/util/table.d.ts +12 -0
- package/dist/blocknote.umd.cjs +0 -11
- package/dist/blocknote.umd.cjs.map +0 -1
package/src/i18n/locales/de.ts
CHANGED
|
@@ -129,6 +129,9 @@ export const de = {
|
|
|
129
129
|
bulletListItem: "Liste",
|
|
130
130
|
numberedListItem: "Liste",
|
|
131
131
|
checkListItem: "Liste",
|
|
132
|
+
new_comment: "Einen Kommentar schreiben...",
|
|
133
|
+
edit_comment: "Kommentar bearbeiten...",
|
|
134
|
+
comment_reply: "Kommentar hinzufügen...",
|
|
132
135
|
},
|
|
133
136
|
file_blocks: {
|
|
134
137
|
image: {
|
|
@@ -315,6 +318,18 @@ export const de = {
|
|
|
315
318
|
url_placeholder: "URL bearbeiten",
|
|
316
319
|
},
|
|
317
320
|
},
|
|
321
|
+
comments: {
|
|
322
|
+
actions: {
|
|
323
|
+
add_reaction: "Reaktion hinzufügen",
|
|
324
|
+
resolve: "Lösen",
|
|
325
|
+
edit_comment: "Kommentar bearbeiten",
|
|
326
|
+
delete_comment: "Kommentar löschen",
|
|
327
|
+
more_actions: "Weitere Aktionen",
|
|
328
|
+
},
|
|
329
|
+
reactions: {
|
|
330
|
+
reacted_by: "Reagiert von",
|
|
331
|
+
},
|
|
332
|
+
},
|
|
318
333
|
generic: {
|
|
319
334
|
ctrl_shortcut: "Strg",
|
|
320
335
|
},
|
package/src/i18n/locales/en.ts
CHANGED
|
@@ -129,7 +129,11 @@ export const en = {
|
|
|
129
129
|
bulletListItem: "List",
|
|
130
130
|
numberedListItem: "List",
|
|
131
131
|
checkListItem: "List",
|
|
132
|
-
|
|
132
|
+
emptyDocument: undefined,
|
|
133
|
+
new_comment: "Write a comment...",
|
|
134
|
+
edit_comment: "Edit comment...",
|
|
135
|
+
comment_reply: "Add comment...",
|
|
136
|
+
} as Record<string | "default" | "emptyDocument", string | undefined>,
|
|
133
137
|
file_blocks: {
|
|
134
138
|
image: {
|
|
135
139
|
add_button_text: "Add image",
|
|
@@ -152,6 +156,8 @@ export const en = {
|
|
|
152
156
|
drag_handle: {
|
|
153
157
|
delete_menuitem: "Delete",
|
|
154
158
|
colors_menuitem: "Colors",
|
|
159
|
+
header_row_menuitem: "Header row",
|
|
160
|
+
header_column_menuitem: "Header column",
|
|
155
161
|
},
|
|
156
162
|
table_handle: {
|
|
157
163
|
delete_column_menuitem: "Delete column",
|
|
@@ -160,6 +166,9 @@ export const en = {
|
|
|
160
166
|
add_right_menuitem: "Add column right",
|
|
161
167
|
add_above_menuitem: "Add row above",
|
|
162
168
|
add_below_menuitem: "Add row below",
|
|
169
|
+
split_cell_menuitem: "Split cell",
|
|
170
|
+
merge_cells_menuitem: "Merge cells",
|
|
171
|
+
background_color_menuitem: "Background color",
|
|
163
172
|
},
|
|
164
173
|
suggestion_menu: {
|
|
165
174
|
no_items_title: "No items found",
|
|
@@ -275,6 +284,9 @@ export const en = {
|
|
|
275
284
|
align_justify: {
|
|
276
285
|
tooltip: "Justify text",
|
|
277
286
|
},
|
|
287
|
+
table_cell_merge: {
|
|
288
|
+
tooltip: "Merge cells",
|
|
289
|
+
},
|
|
278
290
|
comment: {
|
|
279
291
|
tooltip: "Add comment",
|
|
280
292
|
},
|
|
@@ -317,6 +329,18 @@ export const en = {
|
|
|
317
329
|
url_placeholder: "Edit URL",
|
|
318
330
|
},
|
|
319
331
|
},
|
|
332
|
+
comments: {
|
|
333
|
+
actions: {
|
|
334
|
+
add_reaction: "Add reaction",
|
|
335
|
+
resolve: "Resolve",
|
|
336
|
+
edit_comment: "Edit comment",
|
|
337
|
+
delete_comment: "Delete comment",
|
|
338
|
+
more_actions: "More actions",
|
|
339
|
+
},
|
|
340
|
+
reactions: {
|
|
341
|
+
reacted_by: "Reacted by",
|
|
342
|
+
},
|
|
343
|
+
},
|
|
320
344
|
generic: {
|
|
321
345
|
ctrl_shortcut: "Ctrl",
|
|
322
346
|
},
|
package/src/i18n/locales/es.ts
CHANGED
|
@@ -128,6 +128,9 @@ export const es = {
|
|
|
128
128
|
bulletListItem: "Lista",
|
|
129
129
|
numberedListItem: "Lista",
|
|
130
130
|
checkListItem: "Lista",
|
|
131
|
+
new_comment: "Escribe un comentario...",
|
|
132
|
+
edit_comment: "Editar comentario...",
|
|
133
|
+
comment_reply: "Agregar comentario...",
|
|
131
134
|
},
|
|
132
135
|
file_blocks: {
|
|
133
136
|
image: {
|
|
@@ -273,7 +276,7 @@ export const es = {
|
|
|
273
276
|
tooltip: "Justificar texto",
|
|
274
277
|
},
|
|
275
278
|
comment: {
|
|
276
|
-
tooltip: "
|
|
279
|
+
tooltip: "Añadir comentario",
|
|
277
280
|
},
|
|
278
281
|
},
|
|
279
282
|
file_panel: {
|
|
@@ -314,6 +317,18 @@ export const es = {
|
|
|
314
317
|
url_placeholder: "Editar URL",
|
|
315
318
|
},
|
|
316
319
|
},
|
|
320
|
+
comments: {
|
|
321
|
+
actions: {
|
|
322
|
+
add_reaction: "Agregar reacción",
|
|
323
|
+
resolve: "Resolver",
|
|
324
|
+
edit_comment: "Editar comentario",
|
|
325
|
+
delete_comment: "Eliminar comentario",
|
|
326
|
+
more_actions: "Más acciones",
|
|
327
|
+
},
|
|
328
|
+
reactions: {
|
|
329
|
+
reacted_by: "Reaccionado por",
|
|
330
|
+
},
|
|
331
|
+
},
|
|
317
332
|
generic: {
|
|
318
333
|
ctrl_shortcut: "Ctrl",
|
|
319
334
|
},
|
package/src/i18n/locales/fr.ts
CHANGED
|
@@ -154,6 +154,9 @@ export const fr: Dictionary = {
|
|
|
154
154
|
bulletListItem: "Liste",
|
|
155
155
|
numberedListItem: "Liste",
|
|
156
156
|
checkListItem: "Liste",
|
|
157
|
+
new_comment: "Écrire un commentaire...",
|
|
158
|
+
edit_comment: "Modifier le commentaire...",
|
|
159
|
+
comment_reply: "Ajouter un commentaire...",
|
|
157
160
|
},
|
|
158
161
|
file_blocks: {
|
|
159
162
|
image: {
|
|
@@ -177,6 +180,8 @@ export const fr: Dictionary = {
|
|
|
177
180
|
drag_handle: {
|
|
178
181
|
delete_menuitem: "Supprimer",
|
|
179
182
|
colors_menuitem: "Couleurs",
|
|
183
|
+
header_row_menuitem: "En-tête de ligne",
|
|
184
|
+
header_column_menuitem: "En-tête de colonne",
|
|
180
185
|
},
|
|
181
186
|
table_handle: {
|
|
182
187
|
delete_column_menuitem: "Supprimer la colonne",
|
|
@@ -185,6 +190,9 @@ export const fr: Dictionary = {
|
|
|
185
190
|
add_right_menuitem: "Ajouter une colonne à droite",
|
|
186
191
|
add_above_menuitem: "Ajouter une ligne au-dessus",
|
|
187
192
|
add_below_menuitem: "Ajouter une ligne en dessous",
|
|
193
|
+
split_cell_menuitem: "Diviser la cellule",
|
|
194
|
+
merge_cells_menuitem: "Fusionner les cellules",
|
|
195
|
+
background_color_menuitem: "Couleur de fond",
|
|
188
196
|
},
|
|
189
197
|
suggestion_menu: {
|
|
190
198
|
no_items_title: "Aucun élément trouvé",
|
|
@@ -300,6 +308,9 @@ export const fr: Dictionary = {
|
|
|
300
308
|
align_justify: {
|
|
301
309
|
tooltip: "Justifier le texte",
|
|
302
310
|
},
|
|
311
|
+
table_cell_merge: {
|
|
312
|
+
tooltip: "Fusionner les cellules",
|
|
313
|
+
},
|
|
303
314
|
comment: {
|
|
304
315
|
tooltip: "Ajouter un commentaire",
|
|
305
316
|
},
|
|
@@ -342,6 +353,18 @@ export const fr: Dictionary = {
|
|
|
342
353
|
url_placeholder: "Modifier l'URL",
|
|
343
354
|
},
|
|
344
355
|
},
|
|
356
|
+
comments: {
|
|
357
|
+
actions: {
|
|
358
|
+
add_reaction: "Ajouter une réaction",
|
|
359
|
+
resolve: "Résoudre",
|
|
360
|
+
edit_comment: "Modifier le commentaire",
|
|
361
|
+
delete_comment: "Supprimer le commentaire",
|
|
362
|
+
more_actions: "Plus d'actions",
|
|
363
|
+
},
|
|
364
|
+
reactions: {
|
|
365
|
+
reacted_by: "Réagi par",
|
|
366
|
+
},
|
|
367
|
+
},
|
|
345
368
|
generic: {
|
|
346
369
|
ctrl_shortcut: "Ctrl",
|
|
347
370
|
},
|
package/src/i18n/locales/hr.ts
CHANGED
|
@@ -128,6 +128,9 @@ export const hr = {
|
|
|
128
128
|
aliases: ["emoji", "emotikon", "emocija", "lice"],
|
|
129
129
|
group: "Ostalo",
|
|
130
130
|
},
|
|
131
|
+
comment: {
|
|
132
|
+
tooltip: "Dodaj komentar",
|
|
133
|
+
},
|
|
131
134
|
},
|
|
132
135
|
placeholders: {
|
|
133
136
|
default: "Unesi tekst ili upiši ‘/’ za naredbe",
|
|
@@ -135,6 +138,9 @@ export const hr = {
|
|
|
135
138
|
bulletListItem: "Lista",
|
|
136
139
|
numberedListItem: "Lista",
|
|
137
140
|
checkListItem: "Lista",
|
|
141
|
+
new_comment: "Napišite komentar...",
|
|
142
|
+
edit_comment: "Uredi komentar...",
|
|
143
|
+
comment_reply: "Dodaj komentar...",
|
|
138
144
|
},
|
|
139
145
|
file_blocks: {
|
|
140
146
|
image: {
|
|
@@ -323,6 +329,18 @@ export const hr = {
|
|
|
323
329
|
url_placeholder: "Uredi URL",
|
|
324
330
|
},
|
|
325
331
|
},
|
|
332
|
+
comments: {
|
|
333
|
+
actions: {
|
|
334
|
+
add_reaction: "Dodaj reakciju",
|
|
335
|
+
resolve: "Riješi",
|
|
336
|
+
edit_comment: "Uredi komentar",
|
|
337
|
+
delete_comment: "Obriši komentar",
|
|
338
|
+
more_actions: "Više radnji",
|
|
339
|
+
},
|
|
340
|
+
reactions: {
|
|
341
|
+
reacted_by: "Reagirao/la",
|
|
342
|
+
},
|
|
343
|
+
},
|
|
326
344
|
generic: {
|
|
327
345
|
ctrl_shortcut: "Ctrl",
|
|
328
346
|
},
|
package/src/i18n/locales/is.ts
CHANGED
|
@@ -123,6 +123,9 @@ export const is: Dictionary = {
|
|
|
123
123
|
bulletListItem: "Listi",
|
|
124
124
|
numberedListItem: "Listi",
|
|
125
125
|
checkListItem: "Listi",
|
|
126
|
+
new_comment: "Skrifaðu athugasemd...",
|
|
127
|
+
edit_comment: "Breyta athugasemd...",
|
|
128
|
+
comment_reply: "Bæta við athugasemd...",
|
|
126
129
|
},
|
|
127
130
|
file_blocks: {
|
|
128
131
|
image: {
|
|
@@ -145,6 +148,8 @@ export const is: Dictionary = {
|
|
|
145
148
|
drag_handle: {
|
|
146
149
|
delete_menuitem: "Eyða",
|
|
147
150
|
colors_menuitem: "Litir",
|
|
151
|
+
header_row_menuitem: "Höfuðröð",
|
|
152
|
+
header_column_menuitem: "Höfuðdálkur",
|
|
148
153
|
},
|
|
149
154
|
table_handle: {
|
|
150
155
|
delete_column_menuitem: "Eyða dálki",
|
|
@@ -153,6 +158,9 @@ export const is: Dictionary = {
|
|
|
153
158
|
add_right_menuitem: "Bæta dálki við til hægri",
|
|
154
159
|
add_above_menuitem: "Bæta röð við fyrir ofan",
|
|
155
160
|
add_below_menuitem: "Bæta röð við fyrir neðan",
|
|
161
|
+
split_cell_menuitem: "Splita dálk",
|
|
162
|
+
merge_cells_menuitem: "Sameina dálka",
|
|
163
|
+
background_color_menuitem: "Breyta bakgrunni",
|
|
156
164
|
},
|
|
157
165
|
suggestion_menu: {
|
|
158
166
|
no_items_title: "Engir hlutir fundust",
|
|
@@ -268,8 +276,11 @@ export const is: Dictionary = {
|
|
|
268
276
|
align_justify: {
|
|
269
277
|
tooltip: "Jafna texta",
|
|
270
278
|
},
|
|
279
|
+
table_cell_merge: {
|
|
280
|
+
tooltip: "Sameina dálka",
|
|
281
|
+
},
|
|
271
282
|
comment: {
|
|
272
|
-
tooltip: "Bæta við
|
|
283
|
+
tooltip: "Bæta við athugasemd",
|
|
273
284
|
},
|
|
274
285
|
},
|
|
275
286
|
file_panel: {
|
|
@@ -310,6 +321,18 @@ export const is: Dictionary = {
|
|
|
310
321
|
url_placeholder: "Breyta URL",
|
|
311
322
|
},
|
|
312
323
|
},
|
|
324
|
+
comments: {
|
|
325
|
+
actions: {
|
|
326
|
+
add_reaction: "Bæta við viðbrögðum",
|
|
327
|
+
resolve: "Leysa",
|
|
328
|
+
edit_comment: "Breyta athugasemd",
|
|
329
|
+
delete_comment: "Eyða athugasemd",
|
|
330
|
+
more_actions: "Fleiri aðgerðir",
|
|
331
|
+
},
|
|
332
|
+
reactions: {
|
|
333
|
+
reacted_by: "Brást við af",
|
|
334
|
+
},
|
|
335
|
+
},
|
|
313
336
|
generic: {
|
|
314
337
|
ctrl_shortcut: "Ctrl",
|
|
315
338
|
},
|
package/src/i18n/locales/it.ts
CHANGED
|
@@ -129,6 +129,9 @@ export const it = {
|
|
|
129
129
|
bulletListItem: "Elenco",
|
|
130
130
|
numberedListItem: "Elenco",
|
|
131
131
|
checkListItem: "Elenco",
|
|
132
|
+
new_comment: "Scrivi un commento...",
|
|
133
|
+
edit_comment: "Modifica commento...",
|
|
134
|
+
comment_reply: "Aggiungi commento...",
|
|
132
135
|
},
|
|
133
136
|
file_blocks: {
|
|
134
137
|
image: {
|
|
@@ -317,6 +320,18 @@ export const it = {
|
|
|
317
320
|
url_placeholder: "Modifica URL",
|
|
318
321
|
},
|
|
319
322
|
},
|
|
323
|
+
comments: {
|
|
324
|
+
actions: {
|
|
325
|
+
add_reaction: "Aggiungi reazione",
|
|
326
|
+
resolve: "Risolvi",
|
|
327
|
+
edit_comment: "Modifica commento",
|
|
328
|
+
delete_comment: "Elimina commento",
|
|
329
|
+
more_actions: "Altre azioni",
|
|
330
|
+
},
|
|
331
|
+
reactions: {
|
|
332
|
+
reacted_by: "Reagito da",
|
|
333
|
+
},
|
|
334
|
+
},
|
|
320
335
|
generic: {
|
|
321
336
|
ctrl_shortcut: "Ctrl",
|
|
322
337
|
},
|
package/src/i18n/locales/ja.ts
CHANGED
|
@@ -150,6 +150,9 @@ export const ja: Dictionary = {
|
|
|
150
150
|
bulletListItem: "リストを追加",
|
|
151
151
|
numberedListItem: "リストを追加",
|
|
152
152
|
checkListItem: "リストを追加",
|
|
153
|
+
new_comment: "コメントを書く...",
|
|
154
|
+
edit_comment: "コメントを編集...",
|
|
155
|
+
comment_reply: "コメントを追加...",
|
|
153
156
|
},
|
|
154
157
|
file_blocks: {
|
|
155
158
|
image: {
|
|
@@ -173,6 +176,8 @@ export const ja: Dictionary = {
|
|
|
173
176
|
drag_handle: {
|
|
174
177
|
delete_menuitem: "削除",
|
|
175
178
|
colors_menuitem: "色を変更",
|
|
179
|
+
header_row_menuitem: "行の見出し",
|
|
180
|
+
header_column_menuitem: "列の見出し",
|
|
176
181
|
},
|
|
177
182
|
table_handle: {
|
|
178
183
|
delete_column_menuitem: "列を削除",
|
|
@@ -181,6 +186,9 @@ export const ja: Dictionary = {
|
|
|
181
186
|
add_right_menuitem: "右に列を追加",
|
|
182
187
|
add_above_menuitem: "上に行を追加",
|
|
183
188
|
add_below_menuitem: "下に行を追加",
|
|
189
|
+
split_cell_menuitem: "セルを分割",
|
|
190
|
+
merge_cells_menuitem: "セルを結合",
|
|
191
|
+
background_color_menuitem: "背景色を変更",
|
|
184
192
|
},
|
|
185
193
|
suggestion_menu: {
|
|
186
194
|
no_items_title: "アイテムが見つかりません",
|
|
@@ -296,6 +304,9 @@ export const ja: Dictionary = {
|
|
|
296
304
|
align_justify: {
|
|
297
305
|
tooltip: "両端揃え",
|
|
298
306
|
},
|
|
307
|
+
table_cell_merge: {
|
|
308
|
+
tooltip: "セルを結合",
|
|
309
|
+
},
|
|
299
310
|
comment: {
|
|
300
311
|
tooltip: "コメントを追加",
|
|
301
312
|
},
|
|
@@ -338,6 +349,18 @@ export const ja: Dictionary = {
|
|
|
338
349
|
url_placeholder: "URLを編集",
|
|
339
350
|
},
|
|
340
351
|
},
|
|
352
|
+
comments: {
|
|
353
|
+
actions: {
|
|
354
|
+
add_reaction: "リアクションを追加",
|
|
355
|
+
resolve: "解決",
|
|
356
|
+
edit_comment: "コメントを編集",
|
|
357
|
+
delete_comment: "コメントを削除",
|
|
358
|
+
more_actions: "その他の操作",
|
|
359
|
+
},
|
|
360
|
+
reactions: {
|
|
361
|
+
reacted_by: "リアクションした人",
|
|
362
|
+
},
|
|
363
|
+
},
|
|
341
364
|
generic: {
|
|
342
365
|
ctrl_shortcut: "Ctrl",
|
|
343
366
|
},
|
package/src/i18n/locales/ko.ts
CHANGED
|
@@ -143,6 +143,9 @@ export const ko: Dictionary = {
|
|
|
143
143
|
bulletListItem: "목록",
|
|
144
144
|
numberedListItem: "목록",
|
|
145
145
|
checkListItem: "목록",
|
|
146
|
+
new_comment: "댓글 작성...",
|
|
147
|
+
edit_comment: "댓글 수정...",
|
|
148
|
+
comment_reply: "댓글 추가...",
|
|
146
149
|
},
|
|
147
150
|
file_blocks: {
|
|
148
151
|
image: {
|
|
@@ -166,6 +169,8 @@ export const ko: Dictionary = {
|
|
|
166
169
|
drag_handle: {
|
|
167
170
|
delete_menuitem: "삭제",
|
|
168
171
|
colors_menuitem: "색깔",
|
|
172
|
+
header_row_menuitem: "행 제목",
|
|
173
|
+
header_column_menuitem: "열 제목",
|
|
169
174
|
},
|
|
170
175
|
table_handle: {
|
|
171
176
|
delete_column_menuitem: "열 1개 삭제",
|
|
@@ -174,6 +179,9 @@ export const ko: Dictionary = {
|
|
|
174
179
|
add_right_menuitem: "오른쪽에 열 1개 추가",
|
|
175
180
|
add_above_menuitem: "위에 행 1개 추가",
|
|
176
181
|
add_below_menuitem: "아래에 행 1개 추가",
|
|
182
|
+
split_cell_menuitem: "셀 분할",
|
|
183
|
+
merge_cells_menuitem: "셀 병합",
|
|
184
|
+
background_color_menuitem: "배경색 변경",
|
|
177
185
|
},
|
|
178
186
|
suggestion_menu: {
|
|
179
187
|
no_items_title: "항목을 찾을 수 없음",
|
|
@@ -289,6 +297,9 @@ export const ko: Dictionary = {
|
|
|
289
297
|
align_justify: {
|
|
290
298
|
tooltip: "텍스트 양쪽 맞춤",
|
|
291
299
|
},
|
|
300
|
+
table_cell_merge: {
|
|
301
|
+
tooltip: "셀 병합",
|
|
302
|
+
},
|
|
292
303
|
comment: {
|
|
293
304
|
tooltip: "코멘트 추가",
|
|
294
305
|
},
|
|
@@ -331,6 +342,18 @@ export const ko: Dictionary = {
|
|
|
331
342
|
url_placeholder: "URL 수정",
|
|
332
343
|
},
|
|
333
344
|
},
|
|
345
|
+
comments: {
|
|
346
|
+
actions: {
|
|
347
|
+
add_reaction: "반응 추가",
|
|
348
|
+
resolve: "해결",
|
|
349
|
+
edit_comment: "댓글 수정",
|
|
350
|
+
delete_comment: "댓글 삭제",
|
|
351
|
+
more_actions: "더 많은 작업",
|
|
352
|
+
},
|
|
353
|
+
reactions: {
|
|
354
|
+
reacted_by: "반응한 사람",
|
|
355
|
+
},
|
|
356
|
+
},
|
|
334
357
|
generic: {
|
|
335
358
|
ctrl_shortcut: "Ctrl",
|
|
336
359
|
},
|
package/src/i18n/locales/nl.ts
CHANGED
|
@@ -130,6 +130,9 @@ export const nl: Dictionary = {
|
|
|
130
130
|
bulletListItem: "Lijst",
|
|
131
131
|
numberedListItem: "Lijst",
|
|
132
132
|
checkListItem: "Lijst",
|
|
133
|
+
new_comment: "Schrijf een reactie...",
|
|
134
|
+
edit_comment: "Reactie bewerken...",
|
|
135
|
+
comment_reply: "Reactie toevoegen...",
|
|
133
136
|
},
|
|
134
137
|
file_blocks: {
|
|
135
138
|
image: {
|
|
@@ -153,6 +156,8 @@ export const nl: Dictionary = {
|
|
|
153
156
|
drag_handle: {
|
|
154
157
|
delete_menuitem: "Verwijder",
|
|
155
158
|
colors_menuitem: "Kleuren",
|
|
159
|
+
header_row_menuitem: "Kopregel",
|
|
160
|
+
header_column_menuitem: "Kopkolom",
|
|
156
161
|
},
|
|
157
162
|
table_handle: {
|
|
158
163
|
delete_column_menuitem: "Verwijder kolom",
|
|
@@ -161,6 +166,9 @@ export const nl: Dictionary = {
|
|
|
161
166
|
add_right_menuitem: "Voeg kolom rechts toe",
|
|
162
167
|
add_above_menuitem: "Voeg rij boven toe",
|
|
163
168
|
add_below_menuitem: "Voeg rij onder toe",
|
|
169
|
+
split_cell_menuitem: "Splits cel",
|
|
170
|
+
merge_cells_menuitem: "Voeg cellen samen",
|
|
171
|
+
background_color_menuitem: "Achtergrondkleur wijzigen",
|
|
164
172
|
},
|
|
165
173
|
suggestion_menu: {
|
|
166
174
|
no_items_title: "Geen items gevonden",
|
|
@@ -275,6 +283,9 @@ export const nl: Dictionary = {
|
|
|
275
283
|
align_justify: {
|
|
276
284
|
tooltip: "Tekst uitvullen",
|
|
277
285
|
},
|
|
286
|
+
table_cell_merge: {
|
|
287
|
+
tooltip: "Voeg cellen samen",
|
|
288
|
+
},
|
|
278
289
|
comment: {
|
|
279
290
|
tooltip: "Commentaar toevoegen",
|
|
280
291
|
},
|
|
@@ -317,6 +328,18 @@ export const nl: Dictionary = {
|
|
|
317
328
|
url_placeholder: "Bewerk URL",
|
|
318
329
|
},
|
|
319
330
|
},
|
|
331
|
+
comments: {
|
|
332
|
+
actions: {
|
|
333
|
+
add_reaction: "Reactie toevoegen",
|
|
334
|
+
resolve: "Oplossen",
|
|
335
|
+
edit_comment: "Reactie bewerken",
|
|
336
|
+
delete_comment: "Reactie verwijderen",
|
|
337
|
+
more_actions: "Meer acties",
|
|
338
|
+
},
|
|
339
|
+
reactions: {
|
|
340
|
+
reacted_by: "Gereageerd door",
|
|
341
|
+
},
|
|
342
|
+
},
|
|
320
343
|
generic: {
|
|
321
344
|
ctrl_shortcut: "Ctrl",
|
|
322
345
|
},
|
package/src/i18n/locales/no.ts
CHANGED
|
@@ -131,6 +131,9 @@ export const no: Dictionary = {
|
|
|
131
131
|
bulletListItem: "Liste",
|
|
132
132
|
numberedListItem: "Liste",
|
|
133
133
|
checkListItem: "Liste",
|
|
134
|
+
new_comment: "Skriv en kommentar...",
|
|
135
|
+
edit_comment: "Rediger kommentar...",
|
|
136
|
+
comment_reply: "Legg til kommentar...",
|
|
134
137
|
},
|
|
135
138
|
file_blocks: {
|
|
136
139
|
image: {
|
|
@@ -153,6 +156,8 @@ export const no: Dictionary = {
|
|
|
153
156
|
drag_handle: {
|
|
154
157
|
delete_menuitem: "Slett",
|
|
155
158
|
colors_menuitem: "Farger",
|
|
159
|
+
header_row_menuitem: "Rad overskrift",
|
|
160
|
+
header_column_menuitem: "Kolonne overskrift",
|
|
156
161
|
},
|
|
157
162
|
table_handle: {
|
|
158
163
|
delete_column_menuitem: "Slett kolonne",
|
|
@@ -161,6 +166,9 @@ export const no: Dictionary = {
|
|
|
161
166
|
add_right_menuitem: "Legg til kolonne til høyre",
|
|
162
167
|
add_above_menuitem: "Legg til rad over",
|
|
163
168
|
add_below_menuitem: "Legg til rad under",
|
|
169
|
+
split_cell_menuitem: "Del celle",
|
|
170
|
+
merge_cells_menuitem: "Slå sammen celler",
|
|
171
|
+
background_color_menuitem: "Bakgrunnsfarge",
|
|
164
172
|
},
|
|
165
173
|
suggestion_menu: {
|
|
166
174
|
no_items_title: "Ingen elementer funnet",
|
|
@@ -278,6 +286,9 @@ export const no: Dictionary = {
|
|
|
278
286
|
comment: {
|
|
279
287
|
tooltip: "Legg til kommentar",
|
|
280
288
|
},
|
|
289
|
+
table_cell_merge: {
|
|
290
|
+
tooltip: "Slå sammen celler",
|
|
291
|
+
},
|
|
281
292
|
},
|
|
282
293
|
file_panel: {
|
|
283
294
|
upload: {
|
|
@@ -317,6 +328,18 @@ export const no: Dictionary = {
|
|
|
317
328
|
url_placeholder: "Rediger URL",
|
|
318
329
|
},
|
|
319
330
|
},
|
|
331
|
+
comments: {
|
|
332
|
+
actions: {
|
|
333
|
+
add_reaction: "Legg til reaksjon",
|
|
334
|
+
resolve: "Løs",
|
|
335
|
+
edit_comment: "Rediger kommentar",
|
|
336
|
+
delete_comment: "Slett kommentar",
|
|
337
|
+
more_actions: "Flere handlinger",
|
|
338
|
+
},
|
|
339
|
+
reactions: {
|
|
340
|
+
reacted_by: "Reagert av",
|
|
341
|
+
},
|
|
342
|
+
},
|
|
320
343
|
generic: {
|
|
321
344
|
ctrl_shortcut: "Ctrl",
|
|
322
345
|
},
|
package/src/i18n/locales/pl.ts
CHANGED
|
@@ -115,6 +115,9 @@ export const pl: Dictionary = {
|
|
|
115
115
|
bulletListItem: "Lista",
|
|
116
116
|
numberedListItem: "Lista",
|
|
117
117
|
checkListItem: "Lista",
|
|
118
|
+
new_comment: "Napisz komentarz...",
|
|
119
|
+
edit_comment: "Edytuj komentarz...",
|
|
120
|
+
comment_reply: "Dodaj komentarz...",
|
|
118
121
|
},
|
|
119
122
|
file_blocks: {
|
|
120
123
|
image: {
|
|
@@ -137,6 +140,8 @@ export const pl: Dictionary = {
|
|
|
137
140
|
drag_handle: {
|
|
138
141
|
delete_menuitem: "Usuń",
|
|
139
142
|
colors_menuitem: "Kolory",
|
|
143
|
+
header_row_menuitem: "Nagłówek wiersza",
|
|
144
|
+
header_column_menuitem: "Nagłówek kolumny",
|
|
140
145
|
},
|
|
141
146
|
table_handle: {
|
|
142
147
|
delete_column_menuitem: "Usuń kolumnę",
|
|
@@ -145,6 +150,9 @@ export const pl: Dictionary = {
|
|
|
145
150
|
add_right_menuitem: "Dodaj kolumnę po prawej",
|
|
146
151
|
add_above_menuitem: "Dodaj wiersz powyżej",
|
|
147
152
|
add_below_menuitem: "Dodaj wiersz poniżej",
|
|
153
|
+
split_cell_menuitem: "Podziel komórkę",
|
|
154
|
+
merge_cells_menuitem: "Połącz komórki",
|
|
155
|
+
background_color_menuitem: "Zmień kolor tła",
|
|
148
156
|
},
|
|
149
157
|
suggestion_menu: {
|
|
150
158
|
no_items_title: "Nie znaleziono elementów",
|
|
@@ -260,6 +268,9 @@ export const pl: Dictionary = {
|
|
|
260
268
|
align_justify: {
|
|
261
269
|
tooltip: "Wyjustuj tekst",
|
|
262
270
|
},
|
|
271
|
+
table_cell_merge: {
|
|
272
|
+
tooltip: "Połącz komórki",
|
|
273
|
+
},
|
|
263
274
|
comment: {
|
|
264
275
|
tooltip: "Dodaj komentarz",
|
|
265
276
|
},
|
|
@@ -302,6 +313,18 @@ export const pl: Dictionary = {
|
|
|
302
313
|
url_placeholder: "Edytuj URL",
|
|
303
314
|
},
|
|
304
315
|
},
|
|
316
|
+
comments: {
|
|
317
|
+
actions: {
|
|
318
|
+
add_reaction: "Dodaj reakcję",
|
|
319
|
+
resolve: "Rozwiąż",
|
|
320
|
+
edit_comment: "Edytuj komentarz",
|
|
321
|
+
delete_comment: "Usuń komentarz",
|
|
322
|
+
more_actions: "Więcej akcji",
|
|
323
|
+
},
|
|
324
|
+
reactions: {
|
|
325
|
+
reacted_by: "Zareagowali",
|
|
326
|
+
},
|
|
327
|
+
},
|
|
305
328
|
generic: {
|
|
306
329
|
ctrl_shortcut: "Ctrl",
|
|
307
330
|
},
|
package/src/i18n/locales/pt.ts
CHANGED
|
@@ -122,6 +122,9 @@ export const pt: Dictionary = {
|
|
|
122
122
|
bulletListItem: "Lista",
|
|
123
123
|
numberedListItem: "Lista",
|
|
124
124
|
checkListItem: "Lista",
|
|
125
|
+
new_comment: "Escreva um comentário...",
|
|
126
|
+
edit_comment: "Editar comentário...",
|
|
127
|
+
comment_reply: "Adicionar comentário...",
|
|
125
128
|
},
|
|
126
129
|
file_blocks: {
|
|
127
130
|
image: {
|
|
@@ -145,6 +148,8 @@ export const pt: Dictionary = {
|
|
|
145
148
|
drag_handle: {
|
|
146
149
|
delete_menuitem: "Excluir",
|
|
147
150
|
colors_menuitem: "Cores",
|
|
151
|
+
header_row_menuitem: "Cabeçalho de linha",
|
|
152
|
+
header_column_menuitem: "Cabeçalho de coluna",
|
|
148
153
|
},
|
|
149
154
|
table_handle: {
|
|
150
155
|
delete_column_menuitem: "Excluir coluna",
|
|
@@ -153,6 +158,9 @@ export const pt: Dictionary = {
|
|
|
153
158
|
add_right_menuitem: "Adicionar coluna à direita",
|
|
154
159
|
add_above_menuitem: "Adicionar linha acima",
|
|
155
160
|
add_below_menuitem: "Adicionar linha abaixo",
|
|
161
|
+
split_cell_menuitem: "Dividir célula",
|
|
162
|
+
merge_cells_menuitem: "Juntar células",
|
|
163
|
+
background_color_menuitem: "Alterar cor de fundo",
|
|
156
164
|
},
|
|
157
165
|
suggestion_menu: {
|
|
158
166
|
no_items_title: "Nenhum item encontrado",
|
|
@@ -268,6 +276,9 @@ export const pt: Dictionary = {
|
|
|
268
276
|
align_justify: {
|
|
269
277
|
tooltip: "Justificar texto",
|
|
270
278
|
},
|
|
279
|
+
table_cell_merge: {
|
|
280
|
+
tooltip: "Juntar células",
|
|
281
|
+
},
|
|
271
282
|
comment: {
|
|
272
283
|
tooltip: "Adicionar comentário",
|
|
273
284
|
},
|
|
@@ -310,6 +321,18 @@ export const pt: Dictionary = {
|
|
|
310
321
|
url_placeholder: "Editar URL",
|
|
311
322
|
},
|
|
312
323
|
},
|
|
324
|
+
comments: {
|
|
325
|
+
actions: {
|
|
326
|
+
add_reaction: "Adicionar reação",
|
|
327
|
+
resolve: "Resolver",
|
|
328
|
+
edit_comment: "Editar comentário",
|
|
329
|
+
delete_comment: "Excluir comentário",
|
|
330
|
+
more_actions: "Mais ações",
|
|
331
|
+
},
|
|
332
|
+
reactions: {
|
|
333
|
+
reacted_by: "Reagido por",
|
|
334
|
+
},
|
|
335
|
+
},
|
|
313
336
|
generic: {
|
|
314
337
|
ctrl_shortcut: "Ctrl",
|
|
315
338
|
},
|