nextjs-cms 0.7.8 → 0.7.9
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/core/sections/category.d.ts +42 -42
- package/dist/core/sections/hasItems.d.ts +42 -42
- package/dist/core/sections/section.d.ts +21 -21
- package/dist/core/sections/simple.d.ts +6 -6
- package/dist/translations/base/en.d.ts +16 -0
- package/dist/translations/base/en.d.ts.map +1 -1
- package/dist/translations/base/en.js +17 -0
- package/dist/translations/client.d.ts +196 -4
- package/dist/translations/client.d.ts.map +1 -1
- package/dist/translations/server.d.ts +196 -4
- package/dist/translations/server.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -118,9 +118,27 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
118
118
|
*/
|
|
119
119
|
allowRecursiveDelete: z.ZodOptional<z.ZodBoolean>;
|
|
120
120
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
121
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
122
121
|
name: z.ZodString;
|
|
123
|
-
|
|
122
|
+
gallery: z.ZodOptional<z.ZodObject<{
|
|
123
|
+
db: z.ZodObject<{
|
|
124
|
+
tableName: z.ZodString;
|
|
125
|
+
identifierField: z.ZodOptional<z.ZodString>;
|
|
126
|
+
photoNameField: z.ZodOptional<z.ZodString>;
|
|
127
|
+
metaField: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, z.core.$strict>;
|
|
129
|
+
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
130
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
131
|
+
width: z.ZodNumber;
|
|
132
|
+
height: z.ZodNumber;
|
|
133
|
+
fit: z.ZodEnum<{
|
|
134
|
+
cover: "cover";
|
|
135
|
+
contain: "contain";
|
|
136
|
+
}>;
|
|
137
|
+
quality: z.ZodNumber;
|
|
138
|
+
}, z.core.$strict>>;
|
|
139
|
+
}, z.core.$strict>>;
|
|
140
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
141
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
124
142
|
db: z.ZodObject<{
|
|
125
143
|
table: z.ZodString;
|
|
126
144
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -144,26 +162,8 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
144
162
|
name: z.ZodOptional<z.ZodString>;
|
|
145
163
|
}, z.core.$strict>>>;
|
|
146
164
|
}, z.core.$strict>;
|
|
147
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
148
|
-
gallery: z.ZodOptional<z.ZodObject<{
|
|
149
|
-
db: z.ZodObject<{
|
|
150
|
-
tableName: z.ZodString;
|
|
151
|
-
identifierField: z.ZodOptional<z.ZodString>;
|
|
152
|
-
photoNameField: z.ZodOptional<z.ZodString>;
|
|
153
|
-
metaField: z.ZodOptional<z.ZodString>;
|
|
154
|
-
}, z.core.$strict>;
|
|
155
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
156
|
-
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
157
|
-
width: z.ZodNumber;
|
|
158
|
-
height: z.ZodNumber;
|
|
159
|
-
fit: z.ZodEnum<{
|
|
160
|
-
cover: "cover";
|
|
161
|
-
contain: "contain";
|
|
162
|
-
}>;
|
|
163
|
-
quality: z.ZodNumber;
|
|
164
|
-
}, z.core.$strict>>;
|
|
165
|
-
}, z.core.$strict>>;
|
|
166
165
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
166
|
+
order: z.ZodNumber;
|
|
167
167
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
168
168
|
}, z.core.$strict>;
|
|
169
169
|
export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
@@ -218,9 +218,27 @@ export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
|
218
218
|
* @default false
|
|
219
219
|
*/
|
|
220
220
|
allowRecursiveDelete: z.ZodOptional<z.ZodBoolean>;
|
|
221
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
222
221
|
name: z.ZodString;
|
|
223
|
-
|
|
222
|
+
gallery: z.ZodOptional<z.ZodObject<{
|
|
223
|
+
db: z.ZodObject<{
|
|
224
|
+
tableName: z.ZodString;
|
|
225
|
+
identifierField: z.ZodOptional<z.ZodString>;
|
|
226
|
+
photoNameField: z.ZodOptional<z.ZodString>;
|
|
227
|
+
metaField: z.ZodOptional<z.ZodString>;
|
|
228
|
+
}, z.core.$strict>;
|
|
229
|
+
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
230
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
231
|
+
width: z.ZodNumber;
|
|
232
|
+
height: z.ZodNumber;
|
|
233
|
+
fit: z.ZodEnum<{
|
|
234
|
+
cover: "cover";
|
|
235
|
+
contain: "contain";
|
|
236
|
+
}>;
|
|
237
|
+
quality: z.ZodNumber;
|
|
238
|
+
}, z.core.$strict>>;
|
|
239
|
+
}, z.core.$strict>>;
|
|
240
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
241
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
224
242
|
db: z.ZodObject<{
|
|
225
243
|
table: z.ZodString;
|
|
226
244
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -244,26 +262,8 @@ export declare const categorySectionConfigSchema: z.ZodObject<{
|
|
|
244
262
|
name: z.ZodOptional<z.ZodString>;
|
|
245
263
|
}, z.core.$strict>>>;
|
|
246
264
|
}, z.core.$strict>;
|
|
247
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
248
|
-
gallery: z.ZodOptional<z.ZodObject<{
|
|
249
|
-
db: z.ZodObject<{
|
|
250
|
-
tableName: z.ZodString;
|
|
251
|
-
identifierField: z.ZodOptional<z.ZodString>;
|
|
252
|
-
photoNameField: z.ZodOptional<z.ZodString>;
|
|
253
|
-
metaField: z.ZodOptional<z.ZodString>;
|
|
254
|
-
}, z.core.$strict>;
|
|
255
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
256
|
-
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
257
|
-
width: z.ZodNumber;
|
|
258
|
-
height: z.ZodNumber;
|
|
259
|
-
fit: z.ZodEnum<{
|
|
260
|
-
cover: "cover";
|
|
261
|
-
contain: "contain";
|
|
262
|
-
}>;
|
|
263
|
-
quality: z.ZodNumber;
|
|
264
|
-
}, z.core.$strict>>;
|
|
265
|
-
}, z.core.$strict>>;
|
|
266
265
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
266
|
+
order: z.ZodNumber;
|
|
267
267
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
268
268
|
}, z.core.$strict>;
|
|
269
269
|
export type CategorySectionOptions = z.infer<typeof optionsSchema>;
|
|
@@ -481,9 +481,27 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
481
481
|
}>>;
|
|
482
482
|
generateQR: z.ZodOptional<z.ZodBoolean>;
|
|
483
483
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
484
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
485
484
|
name: z.ZodString;
|
|
486
|
-
|
|
485
|
+
gallery: z.ZodOptional<z.ZodObject<{
|
|
486
|
+
db: z.ZodObject<{
|
|
487
|
+
tableName: z.ZodString;
|
|
488
|
+
identifierField: z.ZodOptional<z.ZodString>;
|
|
489
|
+
photoNameField: z.ZodOptional<z.ZodString>;
|
|
490
|
+
metaField: z.ZodOptional<z.ZodString>;
|
|
491
|
+
}, z.core.$strict>;
|
|
492
|
+
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
493
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
494
|
+
width: z.ZodNumber;
|
|
495
|
+
height: z.ZodNumber;
|
|
496
|
+
fit: z.ZodEnum<{
|
|
497
|
+
cover: "cover";
|
|
498
|
+
contain: "contain";
|
|
499
|
+
}>;
|
|
500
|
+
quality: z.ZodNumber;
|
|
501
|
+
}, z.core.$strict>>;
|
|
502
|
+
}, z.core.$strict>>;
|
|
503
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
504
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
487
505
|
db: z.ZodObject<{
|
|
488
506
|
table: z.ZodString;
|
|
489
507
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -507,26 +525,8 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
507
525
|
name: z.ZodOptional<z.ZodString>;
|
|
508
526
|
}, z.core.$strict>>>;
|
|
509
527
|
}, z.core.$strict>;
|
|
510
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
511
|
-
gallery: z.ZodOptional<z.ZodObject<{
|
|
512
|
-
db: z.ZodObject<{
|
|
513
|
-
tableName: z.ZodString;
|
|
514
|
-
identifierField: z.ZodOptional<z.ZodString>;
|
|
515
|
-
photoNameField: z.ZodOptional<z.ZodString>;
|
|
516
|
-
metaField: z.ZodOptional<z.ZodString>;
|
|
517
|
-
}, z.core.$strict>;
|
|
518
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
519
|
-
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
520
|
-
width: z.ZodNumber;
|
|
521
|
-
height: z.ZodNumber;
|
|
522
|
-
fit: z.ZodEnum<{
|
|
523
|
-
cover: "cover";
|
|
524
|
-
contain: "contain";
|
|
525
|
-
}>;
|
|
526
|
-
quality: z.ZodNumber;
|
|
527
|
-
}, z.core.$strict>>;
|
|
528
|
-
}, z.core.$strict>>;
|
|
529
528
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
529
|
+
order: z.ZodNumber;
|
|
530
530
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
531
531
|
}, z.core.$strict>;
|
|
532
532
|
declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
@@ -757,9 +757,27 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
757
757
|
adminGenerated?: boolean | "readonly" | undefined;
|
|
758
758
|
}>>;
|
|
759
759
|
generateQR: z.ZodOptional<z.ZodBoolean>;
|
|
760
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
761
760
|
name: z.ZodString;
|
|
762
|
-
|
|
761
|
+
gallery: z.ZodOptional<z.ZodObject<{
|
|
762
|
+
db: z.ZodObject<{
|
|
763
|
+
tableName: z.ZodString;
|
|
764
|
+
identifierField: z.ZodOptional<z.ZodString>;
|
|
765
|
+
photoNameField: z.ZodOptional<z.ZodString>;
|
|
766
|
+
metaField: z.ZodOptional<z.ZodString>;
|
|
767
|
+
}, z.core.$strict>;
|
|
768
|
+
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
770
|
+
width: z.ZodNumber;
|
|
771
|
+
height: z.ZodNumber;
|
|
772
|
+
fit: z.ZodEnum<{
|
|
773
|
+
cover: "cover";
|
|
774
|
+
contain: "contain";
|
|
775
|
+
}>;
|
|
776
|
+
quality: z.ZodNumber;
|
|
777
|
+
}, z.core.$strict>>;
|
|
778
|
+
}, z.core.$strict>>;
|
|
779
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
780
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
763
781
|
db: z.ZodObject<{
|
|
764
782
|
table: z.ZodString;
|
|
765
783
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -783,26 +801,8 @@ declare const hasItemsSectionConfigSchema: z.ZodObject<{
|
|
|
783
801
|
name: z.ZodOptional<z.ZodString>;
|
|
784
802
|
}, z.core.$strict>>>;
|
|
785
803
|
}, z.core.$strict>;
|
|
786
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
787
|
-
gallery: z.ZodOptional<z.ZodObject<{
|
|
788
|
-
db: z.ZodObject<{
|
|
789
|
-
tableName: z.ZodString;
|
|
790
|
-
identifierField: z.ZodOptional<z.ZodString>;
|
|
791
|
-
photoNameField: z.ZodOptional<z.ZodString>;
|
|
792
|
-
metaField: z.ZodOptional<z.ZodString>;
|
|
793
|
-
}, z.core.$strict>;
|
|
794
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
795
|
-
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
796
|
-
width: z.ZodNumber;
|
|
797
|
-
height: z.ZodNumber;
|
|
798
|
-
fit: z.ZodEnum<{
|
|
799
|
-
cover: "cover";
|
|
800
|
-
contain: "contain";
|
|
801
|
-
}>;
|
|
802
|
-
quality: z.ZodNumber;
|
|
803
|
-
}, z.core.$strict>>;
|
|
804
|
-
}, z.core.$strict>>;
|
|
805
804
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
805
|
+
order: z.ZodNumber;
|
|
806
806
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
807
807
|
}, z.core.$strict>;
|
|
808
808
|
export type HasItemsSectionOptions = z.infer<typeof optionsSchema>;
|
|
@@ -65,9 +65,27 @@ export declare const baseSectionOptionsSchema: z.ZodObject<{
|
|
|
65
65
|
*/
|
|
66
66
|
export declare const baseHelperFunctionOptionsSchema: z.ZodObject<{
|
|
67
67
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
68
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
69
68
|
name: z.ZodString;
|
|
70
|
-
|
|
69
|
+
gallery: z.ZodOptional<z.ZodObject<{
|
|
70
|
+
db: z.ZodObject<{
|
|
71
|
+
tableName: z.ZodString;
|
|
72
|
+
identifierField: z.ZodOptional<z.ZodString>;
|
|
73
|
+
photoNameField: z.ZodOptional<z.ZodString>;
|
|
74
|
+
metaField: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, z.core.$strict>;
|
|
76
|
+
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
78
|
+
width: z.ZodNumber;
|
|
79
|
+
height: z.ZodNumber;
|
|
80
|
+
fit: z.ZodEnum<{
|
|
81
|
+
cover: "cover";
|
|
82
|
+
contain: "contain";
|
|
83
|
+
}>;
|
|
84
|
+
quality: z.ZodNumber;
|
|
85
|
+
}, z.core.$strict>>;
|
|
86
|
+
}, z.core.$strict>>;
|
|
87
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
88
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
71
89
|
db: z.ZodObject<{
|
|
72
90
|
table: z.ZodString;
|
|
73
91
|
identifier: z.ZodOptional<z.ZodCustom<FieldConfig, FieldConfig>>;
|
|
@@ -91,26 +109,8 @@ export declare const baseHelperFunctionOptionsSchema: z.ZodObject<{
|
|
|
91
109
|
name: z.ZodOptional<z.ZodString>;
|
|
92
110
|
}, z.core.$strict>>>;
|
|
93
111
|
}, z.core.$strict>;
|
|
94
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
95
|
-
gallery: z.ZodOptional<z.ZodObject<{
|
|
96
|
-
db: z.ZodObject<{
|
|
97
|
-
tableName: z.ZodString;
|
|
98
|
-
identifierField: z.ZodOptional<z.ZodString>;
|
|
99
|
-
photoNameField: z.ZodOptional<z.ZodString>;
|
|
100
|
-
metaField: z.ZodOptional<z.ZodString>;
|
|
101
|
-
}, z.core.$strict>;
|
|
102
|
-
watermark: z.ZodOptional<z.ZodBoolean>;
|
|
103
|
-
thumbnail: z.ZodOptional<z.ZodObject<{
|
|
104
|
-
width: z.ZodNumber;
|
|
105
|
-
height: z.ZodNumber;
|
|
106
|
-
fit: z.ZodEnum<{
|
|
107
|
-
cover: "cover";
|
|
108
|
-
contain: "contain";
|
|
109
|
-
}>;
|
|
110
|
-
quality: z.ZodNumber;
|
|
111
|
-
}, z.core.$strict>>;
|
|
112
|
-
}, z.core.$strict>>;
|
|
113
112
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<Variant, Variant>>>;
|
|
113
|
+
order: z.ZodNumber;
|
|
114
114
|
hooks: z.ZodOptional<z.ZodCustom<Hooks, Hooks>>;
|
|
115
115
|
}, z.core.$strict>;
|
|
116
116
|
export declare function validateSectionConfig(config: BaseSectionOptions): void;
|
|
@@ -23,10 +23,7 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
23
23
|
table: z.ZodString;
|
|
24
24
|
}, z.core.$strict>;
|
|
25
25
|
fields: z.ZodUnion<[z.ZodArray<z.ZodCustom<FieldConfig, FieldConfig>>, z.ZodArray<z.ZodCustom<FieldGroupConfig, FieldGroupConfig>>]>;
|
|
26
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
27
26
|
name: z.ZodString;
|
|
28
|
-
order: z.ZodNumber;
|
|
29
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
30
27
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
31
28
|
db: z.ZodObject<{
|
|
32
29
|
tableName: z.ZodString;
|
|
@@ -45,7 +42,10 @@ declare const optionsSchema: z.ZodObject<{
|
|
|
45
42
|
quality: z.ZodNumber;
|
|
46
43
|
}, z.core.$strict>>;
|
|
47
44
|
}, z.core.$strict>>;
|
|
45
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
46
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
47
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
48
|
+
order: z.ZodNumber;
|
|
49
49
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
50
50
|
}, z.core.$strict>;
|
|
51
51
|
declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
@@ -57,10 +57,7 @@ declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
|
57
57
|
db: z.ZodObject<{
|
|
58
58
|
table: z.ZodString;
|
|
59
59
|
}, z.core.$strict>;
|
|
60
|
-
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
61
60
|
name: z.ZodString;
|
|
62
|
-
order: z.ZodNumber;
|
|
63
|
-
icon: z.ZodOptional<z.ZodString>;
|
|
64
61
|
gallery: z.ZodOptional<z.ZodObject<{
|
|
65
62
|
db: z.ZodObject<{
|
|
66
63
|
tableName: z.ZodString;
|
|
@@ -79,7 +76,10 @@ declare const simpleSectionConfigSchema: z.ZodObject<{
|
|
|
79
76
|
quality: z.ZodNumber;
|
|
80
77
|
}, z.core.$strict>>;
|
|
81
78
|
}, z.core.$strict>>;
|
|
79
|
+
readonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
80
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
82
81
|
variants: z.ZodOptional<z.ZodArray<z.ZodCustom<import("../types/index.js").Variant, import("../types/index.js").Variant>>>;
|
|
82
|
+
order: z.ZodNumber;
|
|
83
83
|
hooks: z.ZodOptional<z.ZodCustom<import("./section.js").Hooks, import("./section.js").Hooks>>;
|
|
84
84
|
}, z.core.$strict>;
|
|
85
85
|
export type SimpleSectionOptions = z.infer<typeof optionsSchema>;
|
|
@@ -248,6 +248,7 @@ declare const _default: {
|
|
|
248
248
|
readonly log: "Log";
|
|
249
249
|
readonly logs: "Logs";
|
|
250
250
|
readonly select: "Select";
|
|
251
|
+
readonly selectOptions: "Select options";
|
|
251
252
|
readonly settings: "Settings";
|
|
252
253
|
readonly deleteItemText: "Are you sure you want to delete this item?";
|
|
253
254
|
readonly deleteEmailText: "Are you sure you want to delete this email account?";
|
|
@@ -429,6 +430,21 @@ declare const _default: {
|
|
|
429
430
|
readonly sqlQueryNotDefined: "SQL query is not defined";
|
|
430
431
|
readonly galleryTableNotSetUp: "Gallery table is not set up correctly, gallery photos were not saved.";
|
|
431
432
|
readonly useVideoApiRoute: "Please use the /api/video route";
|
|
433
|
+
readonly searchDots: "Search...";
|
|
434
|
+
readonly noItemFound: "No item found";
|
|
435
|
+
readonly searchOptionsDots: "Search options...";
|
|
436
|
+
readonly availableOptions: "Available options";
|
|
437
|
+
readonly searchThroughOptions: "Search through available options";
|
|
438
|
+
readonly filterOptionsHint: "Type to filter options. Use arrow keys to navigate results.";
|
|
439
|
+
readonly openMainMenu: "Open main menu";
|
|
440
|
+
readonly openUserMenu: "Open user menu";
|
|
441
|
+
readonly profileImage: "Profile image";
|
|
442
|
+
readonly logo: "Logo";
|
|
443
|
+
readonly newImage: "New image";
|
|
444
|
+
readonly autoGeneratedFromLinkedField: "Auto-generated from linked field";
|
|
445
|
+
readonly clear: "Clear";
|
|
446
|
+
readonly close: "Close";
|
|
447
|
+
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
432
448
|
};
|
|
433
449
|
export default _default;
|
|
434
450
|
//# sourceMappingURL=en.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/translations/base/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/translations/base/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBA6dU"}
|
|
@@ -248,6 +248,7 @@ export default {
|
|
|
248
248
|
log: 'Log',
|
|
249
249
|
logs: 'Logs',
|
|
250
250
|
select: 'Select',
|
|
251
|
+
selectOptions: 'Select options',
|
|
251
252
|
settings: 'Settings',
|
|
252
253
|
deleteItemText: 'Are you sure you want to delete this item?',
|
|
253
254
|
deleteEmailText: 'Are you sure you want to delete this email account?',
|
|
@@ -442,4 +443,20 @@ export default {
|
|
|
442
443
|
galleryTableNotSetUp: 'Gallery table is not set up correctly, gallery photos were not saved.',
|
|
443
444
|
// Server Action Errors
|
|
444
445
|
useVideoApiRoute: 'Please use the /api/video route',
|
|
446
|
+
// UI / Accessibility
|
|
447
|
+
searchDots: 'Search...',
|
|
448
|
+
noItemFound: 'No item found',
|
|
449
|
+
searchOptionsDots: 'Search options...',
|
|
450
|
+
availableOptions: 'Available options',
|
|
451
|
+
searchThroughOptions: 'Search through available options',
|
|
452
|
+
filterOptionsHint: 'Type to filter options. Use arrow keys to navigate results.',
|
|
453
|
+
openMainMenu: 'Open main menu',
|
|
454
|
+
openUserMenu: 'Open user menu',
|
|
455
|
+
profileImage: 'Profile image',
|
|
456
|
+
logo: 'Logo',
|
|
457
|
+
newImage: 'New image',
|
|
458
|
+
autoGeneratedFromLinkedField: 'Auto-generated from linked field',
|
|
459
|
+
clear: 'Clear',
|
|
460
|
+
close: 'Close',
|
|
461
|
+
clearAllSelectedOptions: 'Clear all {count} selected options',
|
|
445
462
|
};
|