You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.describe('Array of glob patterns to be ignored from matching.'),
42
42
});
43
43
44
-
exportconstLocaleSchema=z.object({
45
-
/** The label of the locale to show in the status dashboard, e.g. `"English"`, `"Português"`, or `"Español"`. */
46
-
label: z
47
-
.string()
48
-
.describe(
49
-
'The label of the locale to show in the status dashboard, e.g. `"English"`, `"Português"`, or `"Español"`.'
50
-
),
51
-
/** The BCP-47 tag of the locale, both to use in smaller widths and to differentiate regional variants, e.g. `"en-US"` (American English) or `"en-GB"` (British English). */
52
-
lang: z
53
-
.string()
54
-
.describe(
55
-
'The BCP-47 tag of the locale, both to use in smaller widths and to differentiate regional variants, e.g. `"en-US"` (American English) or `"en-GB"` (British English).'
56
-
),
57
-
/** Information about any of your UI dictionaries. */
58
-
dictionaries: DictionariesSchema,
59
-
/** Information about your content. */
60
-
content: ContentSchema,
61
-
});
44
+
exportconstLocaleSchema=z
45
+
.object({
46
+
/** The label of the locale to show in the status dashboard, e.g. `"English"`, `"Português"`, or `"Español"`. */
47
+
label: z
48
+
.string()
49
+
.describe(
50
+
'The label of the locale to show in the status dashboard, e.g. `"English"`, `"Português"`, or `"Español"`.'
51
+
),
52
+
/** The BCP-47 tag of the locale, both to use in smaller widths and to differentiate regional variants, e.g. `"en-US"` (American English) or `"en-GB"` (British English). */
53
+
lang: z
54
+
.string()
55
+
.describe(
56
+
'The BCP-47 tag of the locale, both to use in smaller widths and to differentiate regional variants, e.g. `"en-US"` (American English) or `"en-GB"` (British English).'
57
+
),
58
+
/** Information about any of your UI dictionaries. */
0 commit comments