@blocknote/core 0.13.0 → 0.13.2

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.
@@ -0,0 +1,184 @@
1
+ export declare const fr: {
2
+ slash_menu: {
3
+ heading: {
4
+ title: string;
5
+ subtext: string;
6
+ aliases: string[];
7
+ group: string;
8
+ };
9
+ heading_2: {
10
+ title: string;
11
+ subtext: string;
12
+ aliases: string[];
13
+ group: string;
14
+ };
15
+ heading_3: {
16
+ title: string;
17
+ subtext: string;
18
+ aliases: string[];
19
+ group: string;
20
+ };
21
+ numbered_list: {
22
+ title: string;
23
+ subtext: string;
24
+ aliases: string[];
25
+ group: string;
26
+ };
27
+ bullet_list: {
28
+ title: string;
29
+ subtext: string;
30
+ aliases: string[];
31
+ group: string;
32
+ };
33
+ paragraph: {
34
+ title: string;
35
+ subtext: string;
36
+ aliases: string[];
37
+ group: string;
38
+ };
39
+ table: {
40
+ title: string;
41
+ subtext: string;
42
+ aliases: string[];
43
+ group: string;
44
+ };
45
+ image: {
46
+ title: string;
47
+ subtext: string;
48
+ aliases: string[];
49
+ group: string;
50
+ };
51
+ };
52
+ placeholders: {
53
+ default: string;
54
+ heading: string;
55
+ bulletListItem: string;
56
+ numberedListItem: string;
57
+ };
58
+ image: {
59
+ add_button: string;
60
+ };
61
+ side_menu: {
62
+ add_block_label: string;
63
+ drag_handle_label: string;
64
+ };
65
+ drag_handle: {
66
+ delete_menuitem: string;
67
+ colors_menuitem: string;
68
+ };
69
+ table_handle: {
70
+ delete_column_menuitem: string;
71
+ delete_row_menuitem: string;
72
+ add_left_menuitem: string;
73
+ add_right_menuitem: string;
74
+ add_above_menuitem: string;
75
+ add_below_menuitem: string;
76
+ };
77
+ suggestion_menu: {
78
+ no_items_title: string;
79
+ loading: string;
80
+ };
81
+ color_picker: {
82
+ text_title: string;
83
+ background_title: string;
84
+ colors: {
85
+ default: string;
86
+ gray: string;
87
+ brown: string;
88
+ red: string;
89
+ orange: string;
90
+ yellow: string;
91
+ green: string;
92
+ blue: string;
93
+ purple: string;
94
+ pink: string;
95
+ };
96
+ };
97
+ formatting_toolbar: {
98
+ bold: {
99
+ tooltip: string;
100
+ secondary_tooltip: string;
101
+ };
102
+ italic: {
103
+ tooltip: string;
104
+ secondary_tooltip: string;
105
+ };
106
+ underline: {
107
+ tooltip: string;
108
+ secondary_tooltip: string;
109
+ };
110
+ strike: {
111
+ tooltip: string;
112
+ secondary_tooltip: string;
113
+ };
114
+ code: {
115
+ tooltip: string;
116
+ secondary_tooltip: string;
117
+ };
118
+ colors: {
119
+ tooltip: string;
120
+ };
121
+ link: {
122
+ tooltip: string;
123
+ secondary_tooltip: string;
124
+ };
125
+ image_caption: {
126
+ tooltip: string;
127
+ input_placeholder: string;
128
+ };
129
+ image_replace: {
130
+ tooltip: string;
131
+ };
132
+ nest: {
133
+ tooltip: string;
134
+ secondary_tooltip: string;
135
+ };
136
+ unnest: {
137
+ tooltip: string;
138
+ secondary_tooltip: string;
139
+ };
140
+ align_left: {
141
+ tooltip: string;
142
+ };
143
+ align_center: {
144
+ tooltip: string;
145
+ };
146
+ align_right: {
147
+ tooltip: string;
148
+ };
149
+ align_justify: {
150
+ tooltip: string;
151
+ };
152
+ };
153
+ image_panel: {
154
+ upload: {
155
+ title: string;
156
+ file_placeholder: string;
157
+ upload_error: string;
158
+ };
159
+ embed: {
160
+ title: string;
161
+ embed_button: string;
162
+ url_placeholder: string;
163
+ };
164
+ };
165
+ link_toolbar: {
166
+ delete: {
167
+ tooltip: string;
168
+ };
169
+ edit: {
170
+ text: string;
171
+ tooltip: string;
172
+ };
173
+ open: {
174
+ tooltip: string;
175
+ };
176
+ form: {
177
+ title_placeholder: string;
178
+ url_placeholder: string;
179
+ };
180
+ };
181
+ generic: {
182
+ ctrl_shortcut: string;
183
+ };
184
+ };
@@ -1,2 +1,4 @@
1
1
  export * from "./en";
2
2
  export * from "./nl";
3
+ export * from "./zh";
4
+ export * from "./fr";
@@ -0,0 +1,2 @@
1
+ import type { Dictionary } from "../dictionary";
2
+ export declare const zh: Dictionary;