@expcat/tigercat-core 2.0.0-preview.2 → 2.0.0-preview.3
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/{datepicker-ZdzYUqm5.d.ts → datepicker-Digy7Stt.d.ts} +6 -1
- package/dist/datepicker-locales/ar-SA.d.ts +1 -1
- package/dist/datepicker-locales/de-DE.d.ts +1 -1
- package/dist/datepicker-locales/en-US.d.ts +1 -1
- package/dist/datepicker-locales/en-US.js +6 -1
- package/dist/datepicker-locales/es-ES.d.ts +1 -1
- package/dist/datepicker-locales/fr-FR.d.ts +1 -1
- package/dist/datepicker-locales/id-ID.d.ts +1 -1
- package/dist/datepicker-locales/ja-JP.d.ts +1 -1
- package/dist/datepicker-locales/ko-KR.d.ts +1 -1
- package/dist/datepicker-locales/pt-BR.d.ts +1 -1
- package/dist/datepicker-locales/registry.d.ts +1 -1
- package/dist/datepicker-locales/registry.js +14 -3
- package/dist/datepicker-locales/th-TH.d.ts +1 -1
- package/dist/datepicker-locales/vi-VN.d.ts +1 -1
- package/dist/datepicker-locales/zh-CN.d.ts +1 -1
- package/dist/datepicker-locales/zh-CN.js +6 -1
- package/dist/datepicker-locales/zh-TW.d.ts +1 -1
- package/dist/index.d.ts +85 -10
- package/dist/index.js +462 -20
- package/dist/{locale-BH-hERmR.d.ts → locale-DKOXT9k0.d.ts} +98 -2
- package/dist/locales/ar-SA.d.ts +2 -2
- package/dist/locales/ar-SA.js +85 -1
- package/dist/locales/de-DE.d.ts +2 -2
- package/dist/locales/de-DE.js +85 -1
- package/dist/locales/en-US.d.ts +2 -2
- package/dist/locales/en-US.js +85 -1
- package/dist/locales/es-ES.d.ts +2 -2
- package/dist/locales/es-ES.js +85 -1
- package/dist/locales/fr-FR.d.ts +2 -2
- package/dist/locales/fr-FR.js +85 -1
- package/dist/locales/id-ID.d.ts +2 -2
- package/dist/locales/id-ID.js +85 -1
- package/dist/locales/ja-JP.d.ts +2 -2
- package/dist/locales/ja-JP.js +85 -1
- package/dist/locales/ko-KR.d.ts +2 -2
- package/dist/locales/ko-KR.js +85 -1
- package/dist/locales/pt-BR.d.ts +2 -2
- package/dist/locales/pt-BR.js +85 -1
- package/dist/locales/th-TH.d.ts +2 -2
- package/dist/locales/th-TH.js +85 -1
- package/dist/locales/vi-VN.d.ts +2 -2
- package/dist/locales/vi-VN.js +85 -1
- package/dist/locales/zh-CN.d.ts +2 -2
- package/dist/locales/zh-CN.js +85 -1
- package/dist/locales/zh-TW.d.ts +2 -2
- package/dist/locales/zh-TW.js +85 -1
- package/dist/{table-export-PkfTtGdp.d.ts → table-export-DR-OBL6e.d.ts} +1 -1
- package/dist/utils/table-export.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as ComponentSize, D as DatePickerLocalePreset } from './datepicker-
|
|
1
|
+
import { C as ComponentSize, D as DatePickerLocalePreset } from './datepicker-Digy7Stt.js';
|
|
2
2
|
|
|
3
3
|
/** TimePicker shared types */
|
|
4
4
|
|
|
@@ -307,6 +307,93 @@ interface TigerLocaleSelect {
|
|
|
307
307
|
/** Mobile dropdown completion action text */
|
|
308
308
|
doneText?: string;
|
|
309
309
|
}
|
|
310
|
+
interface TigerLocaleTabs {
|
|
311
|
+
addTabAriaLabel?: string;
|
|
312
|
+
/** Template: supports {label} */
|
|
313
|
+
closeTabAriaLabel?: string;
|
|
314
|
+
}
|
|
315
|
+
interface TigerLocaleRate {
|
|
316
|
+
ariaLabel?: string;
|
|
317
|
+
/** Template: supports {value} */
|
|
318
|
+
valueText?: string;
|
|
319
|
+
}
|
|
320
|
+
interface TigerLocaleAvatarGroup {
|
|
321
|
+
ariaLabel?: string;
|
|
322
|
+
/** Template: supports {count} */
|
|
323
|
+
overflowAriaLabel?: string;
|
|
324
|
+
}
|
|
325
|
+
interface TigerLocaleCarousel {
|
|
326
|
+
ariaLabel?: string;
|
|
327
|
+
navigationAriaLabel?: string;
|
|
328
|
+
previousSlideAriaLabel?: string;
|
|
329
|
+
nextSlideAriaLabel?: string;
|
|
330
|
+
/** Template: supports {index} */
|
|
331
|
+
goToSlideAriaLabel?: string;
|
|
332
|
+
/** Template: supports {index} and {total} */
|
|
333
|
+
slideAriaLabel?: string;
|
|
334
|
+
}
|
|
335
|
+
interface TigerLocaleTransfer {
|
|
336
|
+
sourceTitle?: string;
|
|
337
|
+
targetTitle?: string;
|
|
338
|
+
/** Template: supports {title} */
|
|
339
|
+
searchAriaLabel?: string;
|
|
340
|
+
/** Template: supports {title} */
|
|
341
|
+
itemsAriaLabel?: string;
|
|
342
|
+
moveToTargetAriaLabel?: string;
|
|
343
|
+
moveToSourceAriaLabel?: string;
|
|
344
|
+
}
|
|
345
|
+
interface TigerLocaleChart {
|
|
346
|
+
legendAriaLabel?: string;
|
|
347
|
+
/** Template: supports {index}, {x}, {y} */
|
|
348
|
+
pointAriaLabel?: string;
|
|
349
|
+
}
|
|
350
|
+
interface TigerLocaleMarkdownEditor {
|
|
351
|
+
formattingToolbarAriaLabel?: string;
|
|
352
|
+
modeToolbarAriaLabel?: string;
|
|
353
|
+
editorAriaLabel?: string;
|
|
354
|
+
previewAriaLabel?: string;
|
|
355
|
+
editModeLabel?: string;
|
|
356
|
+
splitModeLabel?: string;
|
|
357
|
+
previewModeLabel?: string;
|
|
358
|
+
}
|
|
359
|
+
interface TigerLocaleRichTextEditor {
|
|
360
|
+
formattingToolbarAriaLabel?: string;
|
|
361
|
+
editorAriaLabel?: string;
|
|
362
|
+
}
|
|
363
|
+
interface TigerLocaleCronEditor {
|
|
364
|
+
ariaLabel?: string;
|
|
365
|
+
expressionAriaLabel?: string;
|
|
366
|
+
presetAriaLabel?: string;
|
|
367
|
+
presetPlaceholder?: string;
|
|
368
|
+
everyMinutePreset?: string;
|
|
369
|
+
hourlyPreset?: string;
|
|
370
|
+
dailyPreset?: string;
|
|
371
|
+
weeklyPreset?: string;
|
|
372
|
+
monthlyPreset?: string;
|
|
373
|
+
minuteLabel?: string;
|
|
374
|
+
hourLabel?: string;
|
|
375
|
+
dayOfMonthLabel?: string;
|
|
376
|
+
monthLabel?: string;
|
|
377
|
+
dayOfWeekLabel?: string;
|
|
378
|
+
modeAnyLabel?: string;
|
|
379
|
+
modeEveryLabel?: string;
|
|
380
|
+
modeSpecificLabel?: string;
|
|
381
|
+
modeRangeLabel?: string;
|
|
382
|
+
modeCustomLabel?: string;
|
|
383
|
+
modeAriaLabel?: string;
|
|
384
|
+
stepAriaLabel?: string;
|
|
385
|
+
valueAriaLabel?: string;
|
|
386
|
+
rangeStartAriaLabel?: string;
|
|
387
|
+
rangeEndAriaLabel?: string;
|
|
388
|
+
customValueAriaLabel?: string;
|
|
389
|
+
expressionFieldsError?: string;
|
|
390
|
+
fieldRequiredError?: string;
|
|
391
|
+
invalidStepError?: string;
|
|
392
|
+
stepRangeError?: string;
|
|
393
|
+
fieldRangeError?: string;
|
|
394
|
+
rangeOrderError?: string;
|
|
395
|
+
invalidFieldError?: string;
|
|
396
|
+
}
|
|
310
397
|
/**
|
|
311
398
|
* Built-in form-validation messages.
|
|
312
399
|
*
|
|
@@ -373,6 +460,15 @@ interface TigerLocale {
|
|
|
373
460
|
status?: TigerLocaleStatus;
|
|
374
461
|
taskBoard?: TigerLocaleTaskBoard;
|
|
375
462
|
select?: TigerLocaleSelect;
|
|
463
|
+
tabs?: TigerLocaleTabs;
|
|
464
|
+
rate?: TigerLocaleRate;
|
|
465
|
+
avatarGroup?: TigerLocaleAvatarGroup;
|
|
466
|
+
carousel?: TigerLocaleCarousel;
|
|
467
|
+
transfer?: TigerLocaleTransfer;
|
|
468
|
+
chart?: TigerLocaleChart;
|
|
469
|
+
markdownEditor?: TigerLocaleMarkdownEditor;
|
|
470
|
+
richTextEditor?: TigerLocaleRichTextEditor;
|
|
471
|
+
cronEditor?: TigerLocaleCronEditor;
|
|
376
472
|
formValidation?: TigerLocaleFormValidation;
|
|
377
473
|
}
|
|
378
474
|
/**
|
|
@@ -391,4 +487,4 @@ type TigerLocaleLazyModule = Partial<TigerLocale> | {
|
|
|
391
487
|
type TigerLocaleLoader = () => PromiseLike<TigerLocaleLazyModule>;
|
|
392
488
|
type TigerLocaleInput = Partial<TigerLocale> | PromiseLike<TigerLocaleLazyModule> | TigerLocaleLoader;
|
|
393
489
|
|
|
394
|
-
export type {
|
|
490
|
+
export type { TigerText as A, TimeFormat as B, TigerLocaleDrawer as C, TigerLocaleModal as D, TigerLocaleCommon as E, TigerLocaleEmpty as F, TigerLocaleQRCode as G, TigerLocaleTimePicker as H, TigerLocaleTimeline as I, TigerLocaleUpload as J, TimePickerModelValue as K, TimePickerProps as L, TigerLocale as T, TigerLocaleAvatarGroup as a, TigerLocaleCalendar as b, TigerLocaleCarousel as c, TigerLocaleChart as d, TigerLocaleCronEditor as e, TigerLocaleFileManager as f, TigerLocaleFormValidation as g, TigerLocaleFormWizard as h, TigerLocaleImageEditor as i, TigerLocaleImageViewer as j, TigerLocaleMarkdownEditor as k, TigerLocalePagination as l, TigerLocaleRate as m, TigerLocaleRichTextEditor as n, TigerLocaleSelect as o, TigerLocaleStatus as p, TigerLocaleTable as q, TigerLocaleTabs as r, TigerLocaleTaskBoard as s, TimePickerLabels as t, TigerLocaleTour as u, TigerLocaleTransfer as v, TigerLocaleInput as w, TigerLocaleDirection as x, TigerLocaleLazyModule as y, TigerLocaleLoader as z };
|
package/dist/locales/ar-SA.d.ts
CHANGED
package/dist/locales/ar-SA.js
CHANGED
|
@@ -33,13 +33,18 @@ var DEFAULT_UPLOAD_LABELS = {
|
|
|
33
33
|
var EN_US_DATEPICKER_LOCALE = {
|
|
34
34
|
locale: "en-US",
|
|
35
35
|
labels: {
|
|
36
|
+
placeholder: "Select date",
|
|
37
|
+
rangePlaceholder: "Select date range",
|
|
36
38
|
today: "Today",
|
|
37
39
|
ok: "OK",
|
|
38
40
|
calendar: "Calendar",
|
|
39
41
|
toggleCalendar: "Toggle calendar",
|
|
40
42
|
clearDate: "Clear date",
|
|
41
43
|
previousMonth: "Previous month",
|
|
42
|
-
nextMonth: "Next month"
|
|
44
|
+
nextMonth: "Next month",
|
|
45
|
+
year: "Year",
|
|
46
|
+
month: "Month",
|
|
47
|
+
day: "Day"
|
|
43
48
|
}
|
|
44
49
|
};
|
|
45
50
|
|
|
@@ -194,6 +199,85 @@ var enUS = {
|
|
|
194
199
|
select: {
|
|
195
200
|
doneText: "Done"
|
|
196
201
|
},
|
|
202
|
+
tabs: {
|
|
203
|
+
addTabAriaLabel: "Add tab",
|
|
204
|
+
closeTabAriaLabel: "Close {label}"
|
|
205
|
+
},
|
|
206
|
+
rate: {
|
|
207
|
+
ariaLabel: "Rating",
|
|
208
|
+
valueText: "{value} star{plural}"
|
|
209
|
+
},
|
|
210
|
+
avatarGroup: {
|
|
211
|
+
ariaLabel: "Avatar group",
|
|
212
|
+
overflowAriaLabel: "{count} more"
|
|
213
|
+
},
|
|
214
|
+
carousel: {
|
|
215
|
+
ariaLabel: "Image carousel",
|
|
216
|
+
navigationAriaLabel: "Carousel navigation",
|
|
217
|
+
previousSlideAriaLabel: "Previous slide",
|
|
218
|
+
nextSlideAriaLabel: "Next slide",
|
|
219
|
+
goToSlideAriaLabel: "Go to slide {index}",
|
|
220
|
+
slideAriaLabel: "Slide {index} of {total}"
|
|
221
|
+
},
|
|
222
|
+
transfer: {
|
|
223
|
+
sourceTitle: "Source",
|
|
224
|
+
targetTitle: "Target",
|
|
225
|
+
searchAriaLabel: "Search {title}",
|
|
226
|
+
itemsAriaLabel: "{title} items",
|
|
227
|
+
moveToTargetAriaLabel: "Move selected to target",
|
|
228
|
+
moveToSourceAriaLabel: "Move selected to source"
|
|
229
|
+
},
|
|
230
|
+
chart: {
|
|
231
|
+
legendAriaLabel: "Chart legend",
|
|
232
|
+
pointAriaLabel: "Point {index}: ({x}, {y})"
|
|
233
|
+
},
|
|
234
|
+
markdownEditor: {
|
|
235
|
+
formattingToolbarAriaLabel: "Markdown formatting",
|
|
236
|
+
modeToolbarAriaLabel: "Markdown view mode",
|
|
237
|
+
editorAriaLabel: "Markdown editor",
|
|
238
|
+
previewAriaLabel: "Markdown preview",
|
|
239
|
+
editModeLabel: "Edit",
|
|
240
|
+
splitModeLabel: "Split",
|
|
241
|
+
previewModeLabel: "Preview"
|
|
242
|
+
},
|
|
243
|
+
richTextEditor: {
|
|
244
|
+
formattingToolbarAriaLabel: "Text formatting",
|
|
245
|
+
editorAriaLabel: "Rich text editor"
|
|
246
|
+
},
|
|
247
|
+
cronEditor: {
|
|
248
|
+
ariaLabel: "Cron editor",
|
|
249
|
+
expressionAriaLabel: "Cron expression",
|
|
250
|
+
presetAriaLabel: "Cron preset",
|
|
251
|
+
presetPlaceholder: "Preset",
|
|
252
|
+
everyMinutePreset: "Every minute",
|
|
253
|
+
hourlyPreset: "Hourly",
|
|
254
|
+
dailyPreset: "Daily",
|
|
255
|
+
weeklyPreset: "Weekly",
|
|
256
|
+
monthlyPreset: "Monthly",
|
|
257
|
+
minuteLabel: "Minute",
|
|
258
|
+
hourLabel: "Hour",
|
|
259
|
+
dayOfMonthLabel: "Day",
|
|
260
|
+
monthLabel: "Month",
|
|
261
|
+
dayOfWeekLabel: "Weekday",
|
|
262
|
+
modeAnyLabel: "Any",
|
|
263
|
+
modeEveryLabel: "Every",
|
|
264
|
+
modeSpecificLabel: "Specific",
|
|
265
|
+
modeRangeLabel: "Range",
|
|
266
|
+
modeCustomLabel: "Custom",
|
|
267
|
+
modeAriaLabel: "{field} mode",
|
|
268
|
+
stepAriaLabel: "{field} step",
|
|
269
|
+
valueAriaLabel: "{field} value",
|
|
270
|
+
rangeStartAriaLabel: "{field} range start",
|
|
271
|
+
rangeEndAriaLabel: "{field} range end",
|
|
272
|
+
customValueAriaLabel: "{field} custom value",
|
|
273
|
+
expressionFieldsError: "Cron expression must contain 5 fields",
|
|
274
|
+
fieldRequiredError: "{field} is required",
|
|
275
|
+
invalidStepError: "{field} has an invalid step expression",
|
|
276
|
+
stepRangeError: "{field} step must be between 1 and {max}",
|
|
277
|
+
fieldRangeError: "{field} must be between {min} and {max}",
|
|
278
|
+
rangeOrderError: "{field} range start must be less than or equal to end",
|
|
279
|
+
invalidFieldError: "{field} must be *, a number, a range, a step, or a comma list"
|
|
280
|
+
},
|
|
197
281
|
formValidation: {
|
|
198
282
|
required: "This field is required",
|
|
199
283
|
typeString: "Value must be a string",
|
package/dist/locales/de-DE.d.ts
CHANGED
package/dist/locales/de-DE.js
CHANGED
|
@@ -33,13 +33,18 @@ var DEFAULT_UPLOAD_LABELS = {
|
|
|
33
33
|
var EN_US_DATEPICKER_LOCALE = {
|
|
34
34
|
locale: "en-US",
|
|
35
35
|
labels: {
|
|
36
|
+
placeholder: "Select date",
|
|
37
|
+
rangePlaceholder: "Select date range",
|
|
36
38
|
today: "Today",
|
|
37
39
|
ok: "OK",
|
|
38
40
|
calendar: "Calendar",
|
|
39
41
|
toggleCalendar: "Toggle calendar",
|
|
40
42
|
clearDate: "Clear date",
|
|
41
43
|
previousMonth: "Previous month",
|
|
42
|
-
nextMonth: "Next month"
|
|
44
|
+
nextMonth: "Next month",
|
|
45
|
+
year: "Year",
|
|
46
|
+
month: "Month",
|
|
47
|
+
day: "Day"
|
|
43
48
|
}
|
|
44
49
|
};
|
|
45
50
|
|
|
@@ -194,6 +199,85 @@ var enUS = {
|
|
|
194
199
|
select: {
|
|
195
200
|
doneText: "Done"
|
|
196
201
|
},
|
|
202
|
+
tabs: {
|
|
203
|
+
addTabAriaLabel: "Add tab",
|
|
204
|
+
closeTabAriaLabel: "Close {label}"
|
|
205
|
+
},
|
|
206
|
+
rate: {
|
|
207
|
+
ariaLabel: "Rating",
|
|
208
|
+
valueText: "{value} star{plural}"
|
|
209
|
+
},
|
|
210
|
+
avatarGroup: {
|
|
211
|
+
ariaLabel: "Avatar group",
|
|
212
|
+
overflowAriaLabel: "{count} more"
|
|
213
|
+
},
|
|
214
|
+
carousel: {
|
|
215
|
+
ariaLabel: "Image carousel",
|
|
216
|
+
navigationAriaLabel: "Carousel navigation",
|
|
217
|
+
previousSlideAriaLabel: "Previous slide",
|
|
218
|
+
nextSlideAriaLabel: "Next slide",
|
|
219
|
+
goToSlideAriaLabel: "Go to slide {index}",
|
|
220
|
+
slideAriaLabel: "Slide {index} of {total}"
|
|
221
|
+
},
|
|
222
|
+
transfer: {
|
|
223
|
+
sourceTitle: "Source",
|
|
224
|
+
targetTitle: "Target",
|
|
225
|
+
searchAriaLabel: "Search {title}",
|
|
226
|
+
itemsAriaLabel: "{title} items",
|
|
227
|
+
moveToTargetAriaLabel: "Move selected to target",
|
|
228
|
+
moveToSourceAriaLabel: "Move selected to source"
|
|
229
|
+
},
|
|
230
|
+
chart: {
|
|
231
|
+
legendAriaLabel: "Chart legend",
|
|
232
|
+
pointAriaLabel: "Point {index}: ({x}, {y})"
|
|
233
|
+
},
|
|
234
|
+
markdownEditor: {
|
|
235
|
+
formattingToolbarAriaLabel: "Markdown formatting",
|
|
236
|
+
modeToolbarAriaLabel: "Markdown view mode",
|
|
237
|
+
editorAriaLabel: "Markdown editor",
|
|
238
|
+
previewAriaLabel: "Markdown preview",
|
|
239
|
+
editModeLabel: "Edit",
|
|
240
|
+
splitModeLabel: "Split",
|
|
241
|
+
previewModeLabel: "Preview"
|
|
242
|
+
},
|
|
243
|
+
richTextEditor: {
|
|
244
|
+
formattingToolbarAriaLabel: "Text formatting",
|
|
245
|
+
editorAriaLabel: "Rich text editor"
|
|
246
|
+
},
|
|
247
|
+
cronEditor: {
|
|
248
|
+
ariaLabel: "Cron editor",
|
|
249
|
+
expressionAriaLabel: "Cron expression",
|
|
250
|
+
presetAriaLabel: "Cron preset",
|
|
251
|
+
presetPlaceholder: "Preset",
|
|
252
|
+
everyMinutePreset: "Every minute",
|
|
253
|
+
hourlyPreset: "Hourly",
|
|
254
|
+
dailyPreset: "Daily",
|
|
255
|
+
weeklyPreset: "Weekly",
|
|
256
|
+
monthlyPreset: "Monthly",
|
|
257
|
+
minuteLabel: "Minute",
|
|
258
|
+
hourLabel: "Hour",
|
|
259
|
+
dayOfMonthLabel: "Day",
|
|
260
|
+
monthLabel: "Month",
|
|
261
|
+
dayOfWeekLabel: "Weekday",
|
|
262
|
+
modeAnyLabel: "Any",
|
|
263
|
+
modeEveryLabel: "Every",
|
|
264
|
+
modeSpecificLabel: "Specific",
|
|
265
|
+
modeRangeLabel: "Range",
|
|
266
|
+
modeCustomLabel: "Custom",
|
|
267
|
+
modeAriaLabel: "{field} mode",
|
|
268
|
+
stepAriaLabel: "{field} step",
|
|
269
|
+
valueAriaLabel: "{field} value",
|
|
270
|
+
rangeStartAriaLabel: "{field} range start",
|
|
271
|
+
rangeEndAriaLabel: "{field} range end",
|
|
272
|
+
customValueAriaLabel: "{field} custom value",
|
|
273
|
+
expressionFieldsError: "Cron expression must contain 5 fields",
|
|
274
|
+
fieldRequiredError: "{field} is required",
|
|
275
|
+
invalidStepError: "{field} has an invalid step expression",
|
|
276
|
+
stepRangeError: "{field} step must be between 1 and {max}",
|
|
277
|
+
fieldRangeError: "{field} must be between {min} and {max}",
|
|
278
|
+
rangeOrderError: "{field} range start must be less than or equal to end",
|
|
279
|
+
invalidFieldError: "{field} must be *, a number, a range, a step, or a comma list"
|
|
280
|
+
},
|
|
197
281
|
formValidation: {
|
|
198
282
|
required: "This field is required",
|
|
199
283
|
typeString: "Value must be a string",
|
package/dist/locales/en-US.d.ts
CHANGED
package/dist/locales/en-US.js
CHANGED
|
@@ -33,13 +33,18 @@ var DEFAULT_UPLOAD_LABELS = {
|
|
|
33
33
|
var EN_US_DATEPICKER_LOCALE = {
|
|
34
34
|
locale: "en-US",
|
|
35
35
|
labels: {
|
|
36
|
+
placeholder: "Select date",
|
|
37
|
+
rangePlaceholder: "Select date range",
|
|
36
38
|
today: "Today",
|
|
37
39
|
ok: "OK",
|
|
38
40
|
calendar: "Calendar",
|
|
39
41
|
toggleCalendar: "Toggle calendar",
|
|
40
42
|
clearDate: "Clear date",
|
|
41
43
|
previousMonth: "Previous month",
|
|
42
|
-
nextMonth: "Next month"
|
|
44
|
+
nextMonth: "Next month",
|
|
45
|
+
year: "Year",
|
|
46
|
+
month: "Month",
|
|
47
|
+
day: "Day"
|
|
43
48
|
}
|
|
44
49
|
};
|
|
45
50
|
|
|
@@ -194,6 +199,85 @@ var enUS = {
|
|
|
194
199
|
select: {
|
|
195
200
|
doneText: "Done"
|
|
196
201
|
},
|
|
202
|
+
tabs: {
|
|
203
|
+
addTabAriaLabel: "Add tab",
|
|
204
|
+
closeTabAriaLabel: "Close {label}"
|
|
205
|
+
},
|
|
206
|
+
rate: {
|
|
207
|
+
ariaLabel: "Rating",
|
|
208
|
+
valueText: "{value} star{plural}"
|
|
209
|
+
},
|
|
210
|
+
avatarGroup: {
|
|
211
|
+
ariaLabel: "Avatar group",
|
|
212
|
+
overflowAriaLabel: "{count} more"
|
|
213
|
+
},
|
|
214
|
+
carousel: {
|
|
215
|
+
ariaLabel: "Image carousel",
|
|
216
|
+
navigationAriaLabel: "Carousel navigation",
|
|
217
|
+
previousSlideAriaLabel: "Previous slide",
|
|
218
|
+
nextSlideAriaLabel: "Next slide",
|
|
219
|
+
goToSlideAriaLabel: "Go to slide {index}",
|
|
220
|
+
slideAriaLabel: "Slide {index} of {total}"
|
|
221
|
+
},
|
|
222
|
+
transfer: {
|
|
223
|
+
sourceTitle: "Source",
|
|
224
|
+
targetTitle: "Target",
|
|
225
|
+
searchAriaLabel: "Search {title}",
|
|
226
|
+
itemsAriaLabel: "{title} items",
|
|
227
|
+
moveToTargetAriaLabel: "Move selected to target",
|
|
228
|
+
moveToSourceAriaLabel: "Move selected to source"
|
|
229
|
+
},
|
|
230
|
+
chart: {
|
|
231
|
+
legendAriaLabel: "Chart legend",
|
|
232
|
+
pointAriaLabel: "Point {index}: ({x}, {y})"
|
|
233
|
+
},
|
|
234
|
+
markdownEditor: {
|
|
235
|
+
formattingToolbarAriaLabel: "Markdown formatting",
|
|
236
|
+
modeToolbarAriaLabel: "Markdown view mode",
|
|
237
|
+
editorAriaLabel: "Markdown editor",
|
|
238
|
+
previewAriaLabel: "Markdown preview",
|
|
239
|
+
editModeLabel: "Edit",
|
|
240
|
+
splitModeLabel: "Split",
|
|
241
|
+
previewModeLabel: "Preview"
|
|
242
|
+
},
|
|
243
|
+
richTextEditor: {
|
|
244
|
+
formattingToolbarAriaLabel: "Text formatting",
|
|
245
|
+
editorAriaLabel: "Rich text editor"
|
|
246
|
+
},
|
|
247
|
+
cronEditor: {
|
|
248
|
+
ariaLabel: "Cron editor",
|
|
249
|
+
expressionAriaLabel: "Cron expression",
|
|
250
|
+
presetAriaLabel: "Cron preset",
|
|
251
|
+
presetPlaceholder: "Preset",
|
|
252
|
+
everyMinutePreset: "Every minute",
|
|
253
|
+
hourlyPreset: "Hourly",
|
|
254
|
+
dailyPreset: "Daily",
|
|
255
|
+
weeklyPreset: "Weekly",
|
|
256
|
+
monthlyPreset: "Monthly",
|
|
257
|
+
minuteLabel: "Minute",
|
|
258
|
+
hourLabel: "Hour",
|
|
259
|
+
dayOfMonthLabel: "Day",
|
|
260
|
+
monthLabel: "Month",
|
|
261
|
+
dayOfWeekLabel: "Weekday",
|
|
262
|
+
modeAnyLabel: "Any",
|
|
263
|
+
modeEveryLabel: "Every",
|
|
264
|
+
modeSpecificLabel: "Specific",
|
|
265
|
+
modeRangeLabel: "Range",
|
|
266
|
+
modeCustomLabel: "Custom",
|
|
267
|
+
modeAriaLabel: "{field} mode",
|
|
268
|
+
stepAriaLabel: "{field} step",
|
|
269
|
+
valueAriaLabel: "{field} value",
|
|
270
|
+
rangeStartAriaLabel: "{field} range start",
|
|
271
|
+
rangeEndAriaLabel: "{field} range end",
|
|
272
|
+
customValueAriaLabel: "{field} custom value",
|
|
273
|
+
expressionFieldsError: "Cron expression must contain 5 fields",
|
|
274
|
+
fieldRequiredError: "{field} is required",
|
|
275
|
+
invalidStepError: "{field} has an invalid step expression",
|
|
276
|
+
stepRangeError: "{field} step must be between 1 and {max}",
|
|
277
|
+
fieldRangeError: "{field} must be between {min} and {max}",
|
|
278
|
+
rangeOrderError: "{field} range start must be less than or equal to end",
|
|
279
|
+
invalidFieldError: "{field} must be *, a number, a range, a step, or a comma list"
|
|
280
|
+
},
|
|
197
281
|
formValidation: {
|
|
198
282
|
required: "This field is required",
|
|
199
283
|
typeString: "Value must be a string",
|
package/dist/locales/es-ES.d.ts
CHANGED
package/dist/locales/es-ES.js
CHANGED
|
@@ -33,13 +33,18 @@ var DEFAULT_UPLOAD_LABELS = {
|
|
|
33
33
|
var EN_US_DATEPICKER_LOCALE = {
|
|
34
34
|
locale: "en-US",
|
|
35
35
|
labels: {
|
|
36
|
+
placeholder: "Select date",
|
|
37
|
+
rangePlaceholder: "Select date range",
|
|
36
38
|
today: "Today",
|
|
37
39
|
ok: "OK",
|
|
38
40
|
calendar: "Calendar",
|
|
39
41
|
toggleCalendar: "Toggle calendar",
|
|
40
42
|
clearDate: "Clear date",
|
|
41
43
|
previousMonth: "Previous month",
|
|
42
|
-
nextMonth: "Next month"
|
|
44
|
+
nextMonth: "Next month",
|
|
45
|
+
year: "Year",
|
|
46
|
+
month: "Month",
|
|
47
|
+
day: "Day"
|
|
43
48
|
}
|
|
44
49
|
};
|
|
45
50
|
|
|
@@ -194,6 +199,85 @@ var enUS = {
|
|
|
194
199
|
select: {
|
|
195
200
|
doneText: "Done"
|
|
196
201
|
},
|
|
202
|
+
tabs: {
|
|
203
|
+
addTabAriaLabel: "Add tab",
|
|
204
|
+
closeTabAriaLabel: "Close {label}"
|
|
205
|
+
},
|
|
206
|
+
rate: {
|
|
207
|
+
ariaLabel: "Rating",
|
|
208
|
+
valueText: "{value} star{plural}"
|
|
209
|
+
},
|
|
210
|
+
avatarGroup: {
|
|
211
|
+
ariaLabel: "Avatar group",
|
|
212
|
+
overflowAriaLabel: "{count} more"
|
|
213
|
+
},
|
|
214
|
+
carousel: {
|
|
215
|
+
ariaLabel: "Image carousel",
|
|
216
|
+
navigationAriaLabel: "Carousel navigation",
|
|
217
|
+
previousSlideAriaLabel: "Previous slide",
|
|
218
|
+
nextSlideAriaLabel: "Next slide",
|
|
219
|
+
goToSlideAriaLabel: "Go to slide {index}",
|
|
220
|
+
slideAriaLabel: "Slide {index} of {total}"
|
|
221
|
+
},
|
|
222
|
+
transfer: {
|
|
223
|
+
sourceTitle: "Source",
|
|
224
|
+
targetTitle: "Target",
|
|
225
|
+
searchAriaLabel: "Search {title}",
|
|
226
|
+
itemsAriaLabel: "{title} items",
|
|
227
|
+
moveToTargetAriaLabel: "Move selected to target",
|
|
228
|
+
moveToSourceAriaLabel: "Move selected to source"
|
|
229
|
+
},
|
|
230
|
+
chart: {
|
|
231
|
+
legendAriaLabel: "Chart legend",
|
|
232
|
+
pointAriaLabel: "Point {index}: ({x}, {y})"
|
|
233
|
+
},
|
|
234
|
+
markdownEditor: {
|
|
235
|
+
formattingToolbarAriaLabel: "Markdown formatting",
|
|
236
|
+
modeToolbarAriaLabel: "Markdown view mode",
|
|
237
|
+
editorAriaLabel: "Markdown editor",
|
|
238
|
+
previewAriaLabel: "Markdown preview",
|
|
239
|
+
editModeLabel: "Edit",
|
|
240
|
+
splitModeLabel: "Split",
|
|
241
|
+
previewModeLabel: "Preview"
|
|
242
|
+
},
|
|
243
|
+
richTextEditor: {
|
|
244
|
+
formattingToolbarAriaLabel: "Text formatting",
|
|
245
|
+
editorAriaLabel: "Rich text editor"
|
|
246
|
+
},
|
|
247
|
+
cronEditor: {
|
|
248
|
+
ariaLabel: "Cron editor",
|
|
249
|
+
expressionAriaLabel: "Cron expression",
|
|
250
|
+
presetAriaLabel: "Cron preset",
|
|
251
|
+
presetPlaceholder: "Preset",
|
|
252
|
+
everyMinutePreset: "Every minute",
|
|
253
|
+
hourlyPreset: "Hourly",
|
|
254
|
+
dailyPreset: "Daily",
|
|
255
|
+
weeklyPreset: "Weekly",
|
|
256
|
+
monthlyPreset: "Monthly",
|
|
257
|
+
minuteLabel: "Minute",
|
|
258
|
+
hourLabel: "Hour",
|
|
259
|
+
dayOfMonthLabel: "Day",
|
|
260
|
+
monthLabel: "Month",
|
|
261
|
+
dayOfWeekLabel: "Weekday",
|
|
262
|
+
modeAnyLabel: "Any",
|
|
263
|
+
modeEveryLabel: "Every",
|
|
264
|
+
modeSpecificLabel: "Specific",
|
|
265
|
+
modeRangeLabel: "Range",
|
|
266
|
+
modeCustomLabel: "Custom",
|
|
267
|
+
modeAriaLabel: "{field} mode",
|
|
268
|
+
stepAriaLabel: "{field} step",
|
|
269
|
+
valueAriaLabel: "{field} value",
|
|
270
|
+
rangeStartAriaLabel: "{field} range start",
|
|
271
|
+
rangeEndAriaLabel: "{field} range end",
|
|
272
|
+
customValueAriaLabel: "{field} custom value",
|
|
273
|
+
expressionFieldsError: "Cron expression must contain 5 fields",
|
|
274
|
+
fieldRequiredError: "{field} is required",
|
|
275
|
+
invalidStepError: "{field} has an invalid step expression",
|
|
276
|
+
stepRangeError: "{field} step must be between 1 and {max}",
|
|
277
|
+
fieldRangeError: "{field} must be between {min} and {max}",
|
|
278
|
+
rangeOrderError: "{field} range start must be less than or equal to end",
|
|
279
|
+
invalidFieldError: "{field} must be *, a number, a range, a step, or a comma list"
|
|
280
|
+
},
|
|
197
281
|
formValidation: {
|
|
198
282
|
required: "This field is required",
|
|
199
283
|
typeString: "Value must be a string",
|
package/dist/locales/fr-FR.d.ts
CHANGED