@blocknote/core 0.32.0-hackdays.0 → 0.33.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 +9 -9
- package/dist/blocknote.cjs.map +1 -1
- package/dist/blocknote.js +2193 -1961
- package/dist/blocknote.js.map +1 -1
- package/dist/en-CsgPjHa4.cjs +2 -0
- package/dist/en-CsgPjHa4.cjs.map +1 -0
- package/dist/{en-qGo6sk9V.js → en-Dx9fwHD4.js} +47 -1
- package/dist/en-Dx9fwHD4.js.map +1 -0
- package/dist/locales.cjs +1 -1
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.js +1453 -30
- package/dist/locales.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/webpack-stats.json +1 -1
- package/package.json +1 -1
- package/src/api/blockManipulation/commands/insertBlocks/__snapshots__/insertBlocks.test.ts.snap +18 -0
- package/src/api/blockManipulation/commands/mergeBlocks/__snapshots__/mergeBlocks.test.ts.snap +10 -0
- package/src/api/blockManipulation/commands/moveBlocks/__snapshots__/moveBlocks.test.ts.snap +40 -0
- package/src/api/blockManipulation/commands/replaceBlocks/__snapshots__/replaceBlocks.test.ts.snap +23 -0
- package/src/api/blockManipulation/commands/splitBlock/__snapshots__/splitBlock.test.ts.snap +13 -0
- package/src/api/blockManipulation/commands/updateBlock/__snapshots__/updateBlock.test.ts.snap +50 -0
- package/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +72 -74
- package/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.ts +1 -0
- package/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.ts +104 -0
- package/src/blocks/ToggleWrapper/createToggleWrapper.ts +182 -0
- package/src/blocks/defaultBlockTypeGuards.ts +6 -2
- package/src/blocks/defaultBlocks.ts +2 -0
- package/src/editor/Block.css +112 -25
- package/src/editor/BlockNoteEditor.test.ts +1 -0
- package/src/editor/BlockNoteEditor.ts +18 -0
- package/src/editor/BlockNoteExtensions.ts +1 -1
- package/src/editor/BlockNoteTipTapEditor.ts +1 -0
- package/src/editor/editor.css +3 -0
- package/src/extensions/Collaboration/CursorPlugin.ts +33 -2
- package/src/extensions/Collaboration/ForkYDocPlugin.ts +26 -8
- package/src/extensions/Collaboration/UndoPlugin.ts +3 -2
- package/src/extensions/FormattingToolbar/FormattingToolbarPlugin.ts +4 -1
- package/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.ts +16 -4
- package/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.ts +64 -0
- package/src/i18n/locales/ar.ts +46 -0
- package/src/i18n/locales/de.ts +65 -0
- package/src/i18n/locales/en.ts +46 -0
- package/src/i18n/locales/es.ts +46 -0
- package/src/i18n/locales/fr.ts +68 -0
- package/src/i18n/locales/he.ts +402 -0
- package/src/i18n/locales/hr.ts +46 -0
- package/src/i18n/locales/index.ts +1 -0
- package/src/i18n/locales/is.ts +67 -0
- package/src/i18n/locales/it.ts +67 -0
- package/src/i18n/locales/ja.ts +66 -0
- package/src/i18n/locales/ko.ts +46 -0
- package/src/i18n/locales/nl.ts +47 -0
- package/src/i18n/locales/no.ts +64 -0
- package/src/i18n/locales/pl.ts +52 -0
- package/src/i18n/locales/pt.ts +46 -0
- package/src/i18n/locales/ru.ts +62 -0
- package/src/i18n/locales/sk.ts +46 -0
- package/src/i18n/locales/uk.ts +46 -0
- package/src/i18n/locales/vi.ts +46 -0
- package/src/i18n/locales/zh-tw.ts +54 -0
- package/src/i18n/locales/zh.ts +54 -0
- package/src/index.ts +1 -0
- package/src/schema/blocks/createSpec.ts +3 -1
- package/src/util/browser.ts +11 -1
- package/types/src/api/blockManipulation/setupTestEnv.d.ts +42 -2
- package/types/src/blocks/HeadingBlockContent/HeadingBlockContent.d.ts +12 -3
- package/types/src/blocks/ListItemBlockContent/ToggleListItemBlockContent/ToggleListItemBlockContent.d.ts +46 -0
- package/types/src/blocks/ToggleWrapper/createToggleWrapper.d.ts +15 -0
- package/types/src/blocks/defaultBlockTypeGuards.d.ts +2 -2
- package/types/src/blocks/defaultBlocks.d.ts +84 -4
- package/types/src/editor/BlockNoteEditor.d.ts +14 -0
- package/types/src/extensions/Collaboration/CursorPlugin.d.ts +6 -0
- package/types/src/extensions/Collaboration/UndoPlugin.d.ts +4 -1
- package/types/src/i18n/locales/en.d.ts +45 -0
- package/types/src/i18n/locales/he.d.ts +2 -0
- package/types/src/i18n/locales/index.d.ts +1 -0
- package/types/src/i18n/locales/sk.d.ts +45 -0
- package/types/src/index.d.ts +1 -0
- package/types/src/schema/blocks/createSpec.d.ts +2 -1
- package/dist/en-BXVKCwYt.cjs +0 -2
- package/dist/en-BXVKCwYt.cjs.map +0 -1
- package/dist/en-qGo6sk9V.js.map +0 -1
- package/types/src/api/blockManipulation/selections/selection.test.d.ts +0 -1
- package/types/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.d.ts +0 -5
- package/types/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.d.ts +0 -1
- package/types/src/extensions/Collaboration/createCollaborationExtensions.d.ts +0 -17
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
import { Dictionary } from "../dictionary.js";
|
|
2
|
+
|
|
3
|
+
export const he: Dictionary = {
|
|
4
|
+
slash_menu: {
|
|
5
|
+
heading: {
|
|
6
|
+
title: "כותרת 1",
|
|
7
|
+
subtext: "כותרת ראשית",
|
|
8
|
+
aliases: ["h", "heading1", "h1"],
|
|
9
|
+
group: "כותרות",
|
|
10
|
+
},
|
|
11
|
+
heading_2: {
|
|
12
|
+
title: "כותרת 2",
|
|
13
|
+
subtext: "כותרת סעיף ראשי",
|
|
14
|
+
aliases: ["h2", "heading2", "subheading"],
|
|
15
|
+
group: "כותרות",
|
|
16
|
+
},
|
|
17
|
+
heading_3: {
|
|
18
|
+
title: "כותרת 3",
|
|
19
|
+
subtext: "כותרת משנה",
|
|
20
|
+
aliases: ["h3", "heading3", "subheading"],
|
|
21
|
+
group: "כותרות",
|
|
22
|
+
},
|
|
23
|
+
toggle_heading: {
|
|
24
|
+
title: "כותרת מתקפלת 1",
|
|
25
|
+
subtext: "כותרת ראשית מתקפלת",
|
|
26
|
+
aliases: ["h", "heading1", "h1", "collapsable"],
|
|
27
|
+
group: "כותרות משנה",
|
|
28
|
+
},
|
|
29
|
+
toggle_heading_2: {
|
|
30
|
+
title: "כותרת מתקפלת 2",
|
|
31
|
+
subtext: "כותרת סעיף ראשי מתקפלת",
|
|
32
|
+
aliases: ["h2", "heading2", "subheading", "collapsable"],
|
|
33
|
+
group: "כותרות משנה",
|
|
34
|
+
},
|
|
35
|
+
toggle_heading_3: {
|
|
36
|
+
title: "כותרת מתקפלת 3",
|
|
37
|
+
subtext: "כותרת משנה מתקפלת",
|
|
38
|
+
aliases: ["h3", "heading3", "subheading", "collapsable"],
|
|
39
|
+
group: "כותרות משנה",
|
|
40
|
+
},
|
|
41
|
+
heading_4: {
|
|
42
|
+
title: "כותרת 4",
|
|
43
|
+
subtext: "כותרת משנה",
|
|
44
|
+
aliases: ["h4", "heading4", "subheading"],
|
|
45
|
+
group: "כותרות משנה",
|
|
46
|
+
},
|
|
47
|
+
heading_5: {
|
|
48
|
+
title: "כותרת 5",
|
|
49
|
+
subtext: "כותרת משנה",
|
|
50
|
+
aliases: ["h5", "heading5", "subheading"],
|
|
51
|
+
group: "כותרות משנה",
|
|
52
|
+
},
|
|
53
|
+
heading_6: {
|
|
54
|
+
title: "כותרת 6",
|
|
55
|
+
subtext: "כותרת משנה",
|
|
56
|
+
aliases: ["h6", "heading6", "subheading"],
|
|
57
|
+
group: "כותרות משנה",
|
|
58
|
+
},
|
|
59
|
+
quote: {
|
|
60
|
+
title: "ציטוט",
|
|
61
|
+
subtext: "ציטוט או קטע",
|
|
62
|
+
aliases: ["quotation", "blockquote", "bq"],
|
|
63
|
+
group: "בלוקים בסיסיים",
|
|
64
|
+
},
|
|
65
|
+
toggle_list: {
|
|
66
|
+
title: "רשימה מתקפלת",
|
|
67
|
+
subtext: "רשימה עם פריטים ניתנים להסתרה",
|
|
68
|
+
aliases: ["li", "list", "toggleList", "toggle list", "collapsable list"],
|
|
69
|
+
group: "בלוקים בסיסיים",
|
|
70
|
+
},
|
|
71
|
+
numbered_list: {
|
|
72
|
+
title: "רשימה ממוספרת",
|
|
73
|
+
subtext: "רשימה עם פריטים מסודרים",
|
|
74
|
+
aliases: ["ol", "li", "list", "numberedlist", "numbered list"],
|
|
75
|
+
group: "בלוקים בסיסיים",
|
|
76
|
+
},
|
|
77
|
+
bullet_list: {
|
|
78
|
+
title: "רשימת תבליטים",
|
|
79
|
+
subtext: "רשימה עם פריטים לא מסודרים",
|
|
80
|
+
aliases: ["ul", "li", "list", "bulletlist", "bullet list"],
|
|
81
|
+
group: "בלוקים בסיסיים",
|
|
82
|
+
},
|
|
83
|
+
check_list: {
|
|
84
|
+
title: "רשימת סימון",
|
|
85
|
+
subtext: "רשימה עם תיבות סימון",
|
|
86
|
+
aliases: [
|
|
87
|
+
"ul",
|
|
88
|
+
"li",
|
|
89
|
+
"list",
|
|
90
|
+
"checklist",
|
|
91
|
+
"check list",
|
|
92
|
+
"checked list",
|
|
93
|
+
"checkbox",
|
|
94
|
+
],
|
|
95
|
+
group: "בלוקים בסיסיים",
|
|
96
|
+
},
|
|
97
|
+
paragraph: {
|
|
98
|
+
title: "פסקה",
|
|
99
|
+
subtext: "גוף המסמך שלך",
|
|
100
|
+
aliases: ["p", "paragraph"],
|
|
101
|
+
group: "בלוקים בסיסיים",
|
|
102
|
+
},
|
|
103
|
+
code_block: {
|
|
104
|
+
title: "בלוק קוד",
|
|
105
|
+
subtext: "בלוק קוד עם הדגשת תחביר",
|
|
106
|
+
aliases: ["code", "pre"],
|
|
107
|
+
group: "בלוקים בסיסיים",
|
|
108
|
+
},
|
|
109
|
+
page_break: {
|
|
110
|
+
title: "שבירת עמוד",
|
|
111
|
+
subtext: "מפריד עמודים",
|
|
112
|
+
aliases: ["page", "break", "separator"],
|
|
113
|
+
group: "בלוקים בסיסיים",
|
|
114
|
+
},
|
|
115
|
+
table: {
|
|
116
|
+
title: "טבלה",
|
|
117
|
+
subtext: "טבלה עם תאים ניתנים לעריכה",
|
|
118
|
+
aliases: ["table"],
|
|
119
|
+
group: "מתקדם",
|
|
120
|
+
},
|
|
121
|
+
image: {
|
|
122
|
+
title: "תמונה",
|
|
123
|
+
subtext: "תמונה עם כיתוב וניתנת לשינוי גודל",
|
|
124
|
+
aliases: [
|
|
125
|
+
"image",
|
|
126
|
+
"imageUpload",
|
|
127
|
+
"upload",
|
|
128
|
+
"img",
|
|
129
|
+
"picture",
|
|
130
|
+
"media",
|
|
131
|
+
"url",
|
|
132
|
+
],
|
|
133
|
+
group: "מדיה",
|
|
134
|
+
},
|
|
135
|
+
video: {
|
|
136
|
+
title: "וידאו",
|
|
137
|
+
subtext: "וידאו עם כיתוב וניתן לשינוי גודל",
|
|
138
|
+
aliases: [
|
|
139
|
+
"video",
|
|
140
|
+
"videoUpload",
|
|
141
|
+
"upload",
|
|
142
|
+
"mp4",
|
|
143
|
+
"film",
|
|
144
|
+
"media",
|
|
145
|
+
"url",
|
|
146
|
+
],
|
|
147
|
+
group: "מדיה",
|
|
148
|
+
},
|
|
149
|
+
audio: {
|
|
150
|
+
title: "אודיו",
|
|
151
|
+
subtext: "אודיו מוטבע עם כיתוב",
|
|
152
|
+
aliases: [
|
|
153
|
+
"audio",
|
|
154
|
+
"audioUpload",
|
|
155
|
+
"upload",
|
|
156
|
+
"mp3",
|
|
157
|
+
"sound",
|
|
158
|
+
"media",
|
|
159
|
+
"url",
|
|
160
|
+
],
|
|
161
|
+
group: "מדיה",
|
|
162
|
+
},
|
|
163
|
+
file: {
|
|
164
|
+
title: "קובץ",
|
|
165
|
+
subtext: "קובץ מוטבע",
|
|
166
|
+
aliases: ["file", "upload", "embed", "media", "url"],
|
|
167
|
+
group: "מדיה",
|
|
168
|
+
},
|
|
169
|
+
emoji: {
|
|
170
|
+
title: "אימוג'י",
|
|
171
|
+
subtext: "חיפוש והוספת אימוג'י",
|
|
172
|
+
aliases: ["emoji", "emote", "emotion", "face"],
|
|
173
|
+
group: "אחר",
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
placeholders: {
|
|
177
|
+
default: "הזן טקסט או הקלד '/' לפקודות",
|
|
178
|
+
heading: "כותרת",
|
|
179
|
+
toggleListItem: "החלף",
|
|
180
|
+
bulletListItem: "רשימה",
|
|
181
|
+
numberedListItem: "רשימה",
|
|
182
|
+
checkListItem: "רשימה",
|
|
183
|
+
emptyDocument: undefined,
|
|
184
|
+
new_comment: "כתוב תגובה...",
|
|
185
|
+
edit_comment: "ערוך תגובה...",
|
|
186
|
+
comment_reply: "הוסף תגובה...",
|
|
187
|
+
} as Record<string | "default" | "emptyDocument", string | undefined>,
|
|
188
|
+
file_blocks: {
|
|
189
|
+
image: {
|
|
190
|
+
add_button_text: "הוסף תמונה",
|
|
191
|
+
},
|
|
192
|
+
video: {
|
|
193
|
+
add_button_text: "הוסף וידאו",
|
|
194
|
+
},
|
|
195
|
+
audio: {
|
|
196
|
+
add_button_text: "הוסף אודיו",
|
|
197
|
+
},
|
|
198
|
+
file: {
|
|
199
|
+
add_button_text: "הוסף קובץ",
|
|
200
|
+
},
|
|
201
|
+
},
|
|
202
|
+
side_menu: {
|
|
203
|
+
add_block_label: "הוסף בלוק",
|
|
204
|
+
drag_handle_label: "פתח תפריט בלוק",
|
|
205
|
+
},
|
|
206
|
+
drag_handle: {
|
|
207
|
+
delete_menuitem: "מחק",
|
|
208
|
+
colors_menuitem: "צבעים",
|
|
209
|
+
header_row_menuitem: "שורת כותרת",
|
|
210
|
+
header_column_menuitem: "עמודת כותרת",
|
|
211
|
+
},
|
|
212
|
+
table_handle: {
|
|
213
|
+
delete_column_menuitem: "מחק עמודה",
|
|
214
|
+
delete_row_menuitem: "מחק שורה",
|
|
215
|
+
add_left_menuitem: "הוסף עמודה משמאל",
|
|
216
|
+
add_right_menuitem: "הוסף עמודה מימין",
|
|
217
|
+
add_above_menuitem: "הוסף שורה מעל",
|
|
218
|
+
add_below_menuitem: "הוסף שורה מתחת",
|
|
219
|
+
split_cell_menuitem: "פיצול תא",
|
|
220
|
+
merge_cells_menuitem: "מיזוג תאים",
|
|
221
|
+
background_color_menuitem: "צבע רקע",
|
|
222
|
+
},
|
|
223
|
+
suggestion_menu: {
|
|
224
|
+
no_items_title: "לא נמצאו פריטים",
|
|
225
|
+
},
|
|
226
|
+
color_picker: {
|
|
227
|
+
text_title: "טקסט",
|
|
228
|
+
background_title: "רקע",
|
|
229
|
+
colors: {
|
|
230
|
+
default: "ברירת מחדל",
|
|
231
|
+
gray: "אפור",
|
|
232
|
+
brown: "חום",
|
|
233
|
+
red: "אדום",
|
|
234
|
+
orange: "כתום",
|
|
235
|
+
yellow: "צהוב",
|
|
236
|
+
green: "ירוק",
|
|
237
|
+
blue: "כחול",
|
|
238
|
+
purple: "סגול",
|
|
239
|
+
pink: "ורוד",
|
|
240
|
+
},
|
|
241
|
+
},
|
|
242
|
+
formatting_toolbar: {
|
|
243
|
+
bold: {
|
|
244
|
+
tooltip: "מודגש",
|
|
245
|
+
secondary_tooltip: "Ctrl+B",
|
|
246
|
+
},
|
|
247
|
+
italic: {
|
|
248
|
+
tooltip: "נטוי",
|
|
249
|
+
secondary_tooltip: "Ctrl+I",
|
|
250
|
+
},
|
|
251
|
+
underline: {
|
|
252
|
+
tooltip: "קו תחתון",
|
|
253
|
+
secondary_tooltip: "Ctrl+U",
|
|
254
|
+
},
|
|
255
|
+
strike: {
|
|
256
|
+
tooltip: "קו חוצה",
|
|
257
|
+
secondary_tooltip: "Ctrl+Shift+S",
|
|
258
|
+
},
|
|
259
|
+
code: {
|
|
260
|
+
tooltip: "קוד",
|
|
261
|
+
secondary_tooltip: "",
|
|
262
|
+
},
|
|
263
|
+
colors: {
|
|
264
|
+
tooltip: "צבעים",
|
|
265
|
+
},
|
|
266
|
+
link: {
|
|
267
|
+
tooltip: "צור קישור",
|
|
268
|
+
secondary_tooltip: "Ctrl+K",
|
|
269
|
+
},
|
|
270
|
+
file_caption: {
|
|
271
|
+
tooltip: "ערוך כיתוב",
|
|
272
|
+
input_placeholder: "ערוך כיתוב",
|
|
273
|
+
},
|
|
274
|
+
file_replace: {
|
|
275
|
+
tooltip: {
|
|
276
|
+
image: "החלף תמונה",
|
|
277
|
+
video: "החלף וידאו",
|
|
278
|
+
audio: "החלף אודיו",
|
|
279
|
+
file: "החלף קובץ",
|
|
280
|
+
} as Record<string, string>,
|
|
281
|
+
},
|
|
282
|
+
file_rename: {
|
|
283
|
+
tooltip: {
|
|
284
|
+
image: "שנה שם תמונה",
|
|
285
|
+
video: "שנה שם וידאו",
|
|
286
|
+
audio: "שנה שם אודיו",
|
|
287
|
+
file: "שנה שם קובץ",
|
|
288
|
+
} as Record<string, string>,
|
|
289
|
+
input_placeholder: {
|
|
290
|
+
image: "שנה שם תמונה",
|
|
291
|
+
video: "שנה שם וידאו",
|
|
292
|
+
audio: "שנה שם אודיו",
|
|
293
|
+
file: "שנה שם קובץ",
|
|
294
|
+
} as Record<string, string>,
|
|
295
|
+
},
|
|
296
|
+
file_download: {
|
|
297
|
+
tooltip: {
|
|
298
|
+
image: "הורד תמונה",
|
|
299
|
+
video: "הורד וידאו",
|
|
300
|
+
audio: "הורד אודיו",
|
|
301
|
+
file: "הורד קובץ",
|
|
302
|
+
} as Record<string, string>,
|
|
303
|
+
},
|
|
304
|
+
file_delete: {
|
|
305
|
+
tooltip: {
|
|
306
|
+
image: "מחק תמונה",
|
|
307
|
+
video: "מחק וידאו",
|
|
308
|
+
audio: "מחק אודיו",
|
|
309
|
+
file: "מחק קובץ",
|
|
310
|
+
} as Record<string, string>,
|
|
311
|
+
},
|
|
312
|
+
file_preview_toggle: {
|
|
313
|
+
tooltip: "החלף תצוגה מקדימה",
|
|
314
|
+
},
|
|
315
|
+
nest: {
|
|
316
|
+
tooltip: "קינון בלוק",
|
|
317
|
+
secondary_tooltip: "Tab",
|
|
318
|
+
},
|
|
319
|
+
unnest: {
|
|
320
|
+
tooltip: "הוצא מקינון",
|
|
321
|
+
secondary_tooltip: "Shift+Tab",
|
|
322
|
+
},
|
|
323
|
+
align_left: {
|
|
324
|
+
tooltip: "ישר טקסט לשמאל",
|
|
325
|
+
},
|
|
326
|
+
align_center: {
|
|
327
|
+
tooltip: "מרכז טקסט",
|
|
328
|
+
},
|
|
329
|
+
align_right: {
|
|
330
|
+
tooltip: "ישר טקסט לימין",
|
|
331
|
+
},
|
|
332
|
+
align_justify: {
|
|
333
|
+
tooltip: "ישר טקסט לשני הצדדים",
|
|
334
|
+
},
|
|
335
|
+
table_cell_merge: {
|
|
336
|
+
tooltip: "מיזוג תאים",
|
|
337
|
+
},
|
|
338
|
+
comment: {
|
|
339
|
+
tooltip: "הוסף תגובה",
|
|
340
|
+
},
|
|
341
|
+
},
|
|
342
|
+
file_panel: {
|
|
343
|
+
upload: {
|
|
344
|
+
title: "העלאה",
|
|
345
|
+
file_placeholder: {
|
|
346
|
+
image: "העלה תמונה",
|
|
347
|
+
video: "העלה וידאו",
|
|
348
|
+
audio: "העלה אודיו",
|
|
349
|
+
file: "העלה קובץ",
|
|
350
|
+
} as Record<string, string>,
|
|
351
|
+
upload_error: "שגיאה: ההעלאה נכשלה",
|
|
352
|
+
},
|
|
353
|
+
embed: {
|
|
354
|
+
title: "הטמעה",
|
|
355
|
+
embed_button: {
|
|
356
|
+
image: "הטמע תמונה",
|
|
357
|
+
video: "הטמע וידאו",
|
|
358
|
+
audio: "הטמע אודיו",
|
|
359
|
+
file: "הטמע קובץ",
|
|
360
|
+
} as Record<string, string>,
|
|
361
|
+
url_placeholder: "הזן כתובת URL",
|
|
362
|
+
},
|
|
363
|
+
},
|
|
364
|
+
link_toolbar: {
|
|
365
|
+
delete: {
|
|
366
|
+
tooltip: "הסר קישור",
|
|
367
|
+
},
|
|
368
|
+
edit: {
|
|
369
|
+
text: "ערוך קישור",
|
|
370
|
+
tooltip: "ערוך",
|
|
371
|
+
},
|
|
372
|
+
open: {
|
|
373
|
+
tooltip: "פתח בכרטיסייה חדשה",
|
|
374
|
+
},
|
|
375
|
+
form: {
|
|
376
|
+
title_placeholder: "ערוך כותרת",
|
|
377
|
+
url_placeholder: "ערוך כתובת URL",
|
|
378
|
+
},
|
|
379
|
+
},
|
|
380
|
+
comments: {
|
|
381
|
+
edited: "נערך",
|
|
382
|
+
save_button_text: "שמור",
|
|
383
|
+
cancel_button_text: "בטל",
|
|
384
|
+
actions: {
|
|
385
|
+
add_reaction: "הוסף תגובה",
|
|
386
|
+
resolve: "סמן כפתור",
|
|
387
|
+
edit_comment: "ערוך תגובה",
|
|
388
|
+
delete_comment: "מחק תגובה",
|
|
389
|
+
more_actions: "פעולות נוספות",
|
|
390
|
+
},
|
|
391
|
+
reactions: {
|
|
392
|
+
reacted_by: "קיבל תגובה מ",
|
|
393
|
+
},
|
|
394
|
+
sidebar: {
|
|
395
|
+
marked_as_resolved: "סומן כפתור",
|
|
396
|
+
more_replies: (count: number) => `${count} תגובות נוספות`,
|
|
397
|
+
},
|
|
398
|
+
},
|
|
399
|
+
generic: {
|
|
400
|
+
ctrl_shortcut: "Ctrl",
|
|
401
|
+
},
|
|
402
|
+
};
|
package/src/i18n/locales/hr.ts
CHANGED
|
@@ -20,6 +20,42 @@ export const hr: Dictionary = {
|
|
|
20
20
|
aliases: ["h3", "naslov3", "podnaslov"],
|
|
21
21
|
group: "Naslovi",
|
|
22
22
|
},
|
|
23
|
+
heading_4: {
|
|
24
|
+
title: "Naslov 4",
|
|
25
|
+
subtext: "Manji naslov podpoglavlja",
|
|
26
|
+
aliases: ["h4", "naslov4", "podnaslov4"],
|
|
27
|
+
group: "Podnaslovi",
|
|
28
|
+
},
|
|
29
|
+
heading_5: {
|
|
30
|
+
title: "Naslov 5",
|
|
31
|
+
subtext: "Mali naslov podpoglavlja",
|
|
32
|
+
aliases: ["h5", "naslov5", "podnaslov5"],
|
|
33
|
+
group: "Podnaslovi",
|
|
34
|
+
},
|
|
35
|
+
heading_6: {
|
|
36
|
+
title: "Naslov 6",
|
|
37
|
+
subtext: "Naslov najniže razine",
|
|
38
|
+
aliases: ["h6", "naslov6", "podnaslov6"],
|
|
39
|
+
group: "Podnaslovi",
|
|
40
|
+
},
|
|
41
|
+
toggle_heading: {
|
|
42
|
+
title: "Proširivi Naslov 1",
|
|
43
|
+
subtext: "Proširivi glavni naslov",
|
|
44
|
+
aliases: ["h", "naslov1", "h1", "proširivi"],
|
|
45
|
+
group: "Podnaslovi",
|
|
46
|
+
},
|
|
47
|
+
toggle_heading_2: {
|
|
48
|
+
title: "Proširivi Naslov 2",
|
|
49
|
+
subtext: "Proširivi naslov poglavlja",
|
|
50
|
+
aliases: ["h2", "naslov2", "podnaslov", "proširivi"],
|
|
51
|
+
group: "Podnaslovi",
|
|
52
|
+
},
|
|
53
|
+
toggle_heading_3: {
|
|
54
|
+
title: "Proširivi Naslov 3",
|
|
55
|
+
subtext: "Proširivi naslov podpoglavlja",
|
|
56
|
+
aliases: ["h3", "naslov3", "podnaslov", "proširivi"],
|
|
57
|
+
group: "Podnaslovi",
|
|
58
|
+
},
|
|
23
59
|
quote: {
|
|
24
60
|
title: "Citat",
|
|
25
61
|
subtext: "Citat ili izvadak",
|
|
@@ -64,6 +100,12 @@ export const hr: Dictionary = {
|
|
|
64
100
|
],
|
|
65
101
|
group: "Osnovni blokovi",
|
|
66
102
|
},
|
|
103
|
+
toggle_list: {
|
|
104
|
+
title: "Proširivi popis",
|
|
105
|
+
subtext: "Popis sa skrivenim podstavkama",
|
|
106
|
+
aliases: ["stavkaPopisa", "popis", "proširivi popis", "sklopivi popis"],
|
|
107
|
+
group: "Osnovni blokovi",
|
|
108
|
+
},
|
|
67
109
|
paragraph: {
|
|
68
110
|
title: "Normalan tekst",
|
|
69
111
|
subtext: "Tekst paragrafa",
|
|
@@ -146,6 +188,7 @@ export const hr: Dictionary = {
|
|
|
146
188
|
placeholders: {
|
|
147
189
|
default: "Unesi tekst ili upiši ‘/’ za naredbe",
|
|
148
190
|
heading: "Naslov",
|
|
191
|
+
toggleListItem: "Prebaciti",
|
|
149
192
|
bulletListItem: "Lista",
|
|
150
193
|
numberedListItem: "Lista",
|
|
151
194
|
checkListItem: "Lista",
|
|
@@ -348,6 +391,9 @@ export const hr: Dictionary = {
|
|
|
348
391
|
},
|
|
349
392
|
},
|
|
350
393
|
comments: {
|
|
394
|
+
edited: "uredio",
|
|
395
|
+
save_button_text: "Spremi",
|
|
396
|
+
cancel_button_text: "Odustani",
|
|
351
397
|
actions: {
|
|
352
398
|
add_reaction: "Dodaj reakciju",
|
|
353
399
|
resolve: "Riješi",
|
package/src/i18n/locales/is.ts
CHANGED
|
@@ -20,6 +20,57 @@ export const is: Dictionary = {
|
|
|
20
20
|
aliases: ["h3", "fyrirsogn3", "undirfyrirsogn"],
|
|
21
21
|
group: "Fyrirsagnir",
|
|
22
22
|
},
|
|
23
|
+
heading_4: {
|
|
24
|
+
title: "Fyrirsögn 4",
|
|
25
|
+
subtext: "Titill fyrir minni undirhluta",
|
|
26
|
+
aliases: ["h4", "fyrirsogn4", "undirfyrirsogn4"],
|
|
27
|
+
group: "Undirfyrirsagnir",
|
|
28
|
+
},
|
|
29
|
+
heading_5: {
|
|
30
|
+
title: "Fyrirsögn 5",
|
|
31
|
+
subtext: "Titill fyrir litla undirkafla",
|
|
32
|
+
aliases: ["h5", "fyrirsogn5", "undirfyrirsogn5"],
|
|
33
|
+
group: "Undirfyrirsagnir",
|
|
34
|
+
},
|
|
35
|
+
heading_6: {
|
|
36
|
+
title: "Fyrirsögn 6",
|
|
37
|
+
subtext: "Titill á lægsta stigi",
|
|
38
|
+
aliases: ["h6", "fyrirsogn6", "undirfyrirsogn6"],
|
|
39
|
+
group: "Undirfyrirsagnir",
|
|
40
|
+
},
|
|
41
|
+
toggle_heading: {
|
|
42
|
+
title: "Fellanleg Fyrirsögn 1",
|
|
43
|
+
subtext:
|
|
44
|
+
"Fellanleg efsta fyrirsögn sem hægt er að sýna eða fela innihald",
|
|
45
|
+
aliases: ["h", "fyrirsogn1", "h1", "fellanleg", "fellanlegt"],
|
|
46
|
+
group: "Undirfyrirsagnir",
|
|
47
|
+
},
|
|
48
|
+
toggle_heading_2: {
|
|
49
|
+
title: "Fellanleg Fyrirsögn 2",
|
|
50
|
+
subtext:
|
|
51
|
+
"Fellanleg fyrirsögn fyrir lykilhluta sem hægt er að sýna eða fela innihald",
|
|
52
|
+
aliases: [
|
|
53
|
+
"h2",
|
|
54
|
+
"fyrirsogn2",
|
|
55
|
+
"undirfyrirsogn",
|
|
56
|
+
"fellanleg",
|
|
57
|
+
"fellanlegt",
|
|
58
|
+
],
|
|
59
|
+
group: "Undirfyrirsagnir",
|
|
60
|
+
},
|
|
61
|
+
toggle_heading_3: {
|
|
62
|
+
title: "Fellanleg Fyrirsögn 3",
|
|
63
|
+
subtext:
|
|
64
|
+
"Fellanleg fyrirsögn fyrir undirhluta og hópfyrirsagnir sem hægt er að sýna eða fela innihald",
|
|
65
|
+
aliases: [
|
|
66
|
+
"h3",
|
|
67
|
+
"fyrirsogn3",
|
|
68
|
+
"undirfyrirsogn",
|
|
69
|
+
"fellanleg",
|
|
70
|
+
"fellanlegt",
|
|
71
|
+
],
|
|
72
|
+
group: "Undirfyrirsagnir",
|
|
73
|
+
},
|
|
23
74
|
quote: {
|
|
24
75
|
title: "Tilvitnun",
|
|
25
76
|
subtext: "Tilvitnun eða útdráttur",
|
|
@@ -44,6 +95,18 @@ export const is: Dictionary = {
|
|
|
44
95
|
aliases: ["ul", "li", "listi", "athugunarlisti", "merktur listi"],
|
|
45
96
|
group: "Grunnblokkar",
|
|
46
97
|
},
|
|
98
|
+
toggle_list: {
|
|
99
|
+
title: "Fellanlegur listi",
|
|
100
|
+
subtext: "Listi með földum undirliðum",
|
|
101
|
+
aliases: [
|
|
102
|
+
"li",
|
|
103
|
+
"listi",
|
|
104
|
+
"fellanlegur listi",
|
|
105
|
+
"samfellanlegur listi",
|
|
106
|
+
"faldanlegur listi",
|
|
107
|
+
],
|
|
108
|
+
group: "Grunnblokkar",
|
|
109
|
+
},
|
|
47
110
|
paragraph: {
|
|
48
111
|
title: "Málsgrein",
|
|
49
112
|
subtext: "Notað fyrir meginmál skjalsins",
|
|
@@ -126,6 +189,7 @@ export const is: Dictionary = {
|
|
|
126
189
|
placeholders: {
|
|
127
190
|
default: "Sláðu inn texta eða skrifaðu '/' fyrir skipanir",
|
|
128
191
|
heading: "Fyrirsögn",
|
|
192
|
+
toggleListItem: "Víxla",
|
|
129
193
|
bulletListItem: "Listi",
|
|
130
194
|
numberedListItem: "Listi",
|
|
131
195
|
checkListItem: "Listi",
|
|
@@ -327,6 +391,9 @@ export const is: Dictionary = {
|
|
|
327
391
|
},
|
|
328
392
|
},
|
|
329
393
|
comments: {
|
|
394
|
+
edited: "breytt",
|
|
395
|
+
save_button_text: "Vista",
|
|
396
|
+
cancel_button_text: "Hætta",
|
|
330
397
|
actions: {
|
|
331
398
|
add_reaction: "Bæta við viðbrögðum",
|
|
332
399
|
resolve: "Leysa",
|
package/src/i18n/locales/it.ts
CHANGED
|
@@ -20,6 +20,57 @@ export const it: Dictionary = {
|
|
|
20
20
|
aliases: ["h3", "intestazione3", "sottotitolo"],
|
|
21
21
|
group: "Intestazioni",
|
|
22
22
|
},
|
|
23
|
+
heading_4: {
|
|
24
|
+
title: "Intestazione 4",
|
|
25
|
+
subtext: "Intestazione di sottosezione minore",
|
|
26
|
+
aliases: ["h4", "intestazione4", "sottotitolo4"],
|
|
27
|
+
group: "Sottotitoli",
|
|
28
|
+
},
|
|
29
|
+
heading_5: {
|
|
30
|
+
title: "Intestazione 5",
|
|
31
|
+
subtext: "Intestazione di sottosezione minore",
|
|
32
|
+
aliases: ["h5", "intestazione5", "sottotitolo5"],
|
|
33
|
+
group: "Sottotitoli",
|
|
34
|
+
},
|
|
35
|
+
heading_6: {
|
|
36
|
+
title: "Intestazione 6",
|
|
37
|
+
subtext: "Intestazione di livello più basso",
|
|
38
|
+
aliases: ["h6", "intestazione6", "sottotitolo6"],
|
|
39
|
+
group: "Sottotitoli",
|
|
40
|
+
},
|
|
41
|
+
toggle_heading: {
|
|
42
|
+
title: "Intestazione Espandibile 1",
|
|
43
|
+
subtext:
|
|
44
|
+
"Intestazione di primo livello che può essere espansa o compressa per mostrare il contenuto",
|
|
45
|
+
aliases: ["h", "intestazione1", "h1", "espandibile", "comprimibile"],
|
|
46
|
+
group: "Sottotitoli",
|
|
47
|
+
},
|
|
48
|
+
toggle_heading_2: {
|
|
49
|
+
title: "Intestazione Espandibile 2",
|
|
50
|
+
subtext:
|
|
51
|
+
"Intestazione di sezione che può essere espansa o compressa per mostrare il contenuto",
|
|
52
|
+
aliases: [
|
|
53
|
+
"h2",
|
|
54
|
+
"intestazione2",
|
|
55
|
+
"sottotitolo",
|
|
56
|
+
"espandibile",
|
|
57
|
+
"comprimibile",
|
|
58
|
+
],
|
|
59
|
+
group: "Sottotitoli",
|
|
60
|
+
},
|
|
61
|
+
toggle_heading_3: {
|
|
62
|
+
title: "Intestazione Espandibile 3",
|
|
63
|
+
subtext:
|
|
64
|
+
"Intestazione di sottosezione che può essere espansa o compressa per mostrare il contenuto",
|
|
65
|
+
aliases: [
|
|
66
|
+
"h3",
|
|
67
|
+
"intestazione3",
|
|
68
|
+
"sottotitolo",
|
|
69
|
+
"espandibile",
|
|
70
|
+
"comprimibile",
|
|
71
|
+
],
|
|
72
|
+
group: "Sottotitoli",
|
|
73
|
+
},
|
|
23
74
|
quote: {
|
|
24
75
|
title: "Citazione",
|
|
25
76
|
subtext: "Citazione o estratto",
|
|
@@ -52,6 +103,18 @@ export const it: Dictionary = {
|
|
|
52
103
|
],
|
|
53
104
|
group: "Blocchi Base",
|
|
54
105
|
},
|
|
106
|
+
toggle_list: {
|
|
107
|
+
title: "Elenco Espandibile",
|
|
108
|
+
subtext: "Elenco con elementi nascondibili",
|
|
109
|
+
aliases: [
|
|
110
|
+
"li",
|
|
111
|
+
"elenco",
|
|
112
|
+
"elenco espandibile",
|
|
113
|
+
"elenco collassabile",
|
|
114
|
+
"elenco espandibile",
|
|
115
|
+
],
|
|
116
|
+
group: "Blocchi Base",
|
|
117
|
+
},
|
|
55
118
|
paragraph: {
|
|
56
119
|
title: "Paragrafo",
|
|
57
120
|
subtext: "Il corpo del tuo documento",
|
|
@@ -134,6 +197,7 @@ export const it: Dictionary = {
|
|
|
134
197
|
placeholders: {
|
|
135
198
|
default: "Inserisci testo o digita '/' per i comandi",
|
|
136
199
|
heading: "Intestazione",
|
|
200
|
+
toggleListItem: "Attiva/Disattiva",
|
|
137
201
|
bulletListItem: "Elenco",
|
|
138
202
|
numberedListItem: "Elenco",
|
|
139
203
|
checkListItem: "Elenco",
|
|
@@ -336,6 +400,9 @@ export const it: Dictionary = {
|
|
|
336
400
|
},
|
|
337
401
|
},
|
|
338
402
|
comments: {
|
|
403
|
+
edited: "modificato",
|
|
404
|
+
save_button_text: "Salva",
|
|
405
|
+
cancel_button_text: "Annulla",
|
|
339
406
|
actions: {
|
|
340
407
|
add_reaction: "Aggiungi reazione",
|
|
341
408
|
resolve: "Risolvi",
|