@expcat/tigercat-core 2.1.0 → 2.1.1
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/{data-export-CJUETRjV.d.ts → data-export-BtjseC7G.d.ts} +1 -1
- package/dist/index.d.ts +459 -101
- package/dist/index.js +1128 -250
- package/dist/{locale-CEDXoKX7.d.ts → locale-CGl5S1-B.d.ts} +48 -1
- package/dist/locales/ar-SA.d.ts +1 -1
- package/dist/locales/ar-SA.js +82 -0
- package/dist/locales/de-DE.d.ts +1 -1
- package/dist/locales/de-DE.js +82 -0
- package/dist/locales/en-US.d.ts +1 -1
- package/dist/locales/en-US.js +41 -0
- package/dist/locales/es-ES.d.ts +1 -1
- package/dist/locales/es-ES.js +82 -0
- package/dist/locales/fr-FR.d.ts +1 -1
- package/dist/locales/fr-FR.js +82 -0
- package/dist/locales/id-ID.d.ts +1 -1
- package/dist/locales/id-ID.js +82 -0
- package/dist/locales/ja-JP.d.ts +1 -1
- package/dist/locales/ja-JP.js +82 -0
- package/dist/locales/ko-KR.d.ts +1 -1
- package/dist/locales/ko-KR.js +82 -0
- package/dist/locales/pt-BR.d.ts +1 -1
- package/dist/locales/pt-BR.js +82 -0
- package/dist/locales/th-TH.d.ts +1 -1
- package/dist/locales/th-TH.js +82 -0
- package/dist/locales/vi-VN.d.ts +1 -1
- package/dist/locales/vi-VN.js +82 -0
- package/dist/locales/zh-CN.d.ts +1 -1
- package/dist/locales/zh-CN.js +41 -0
- package/dist/locales/zh-TW.d.ts +1 -1
- package/dist/locales/zh-TW.js +82 -0
- package/dist/{table-CbPOY5bp.d.ts → table-D_1D4Euk.d.ts} +1 -1
- package/dist/tailwind/modern.js +25 -14
- package/dist/{tailwind-entry-CNBAH7iv.d.ts → tailwind-entry-nnuviNxx.d.ts} +1 -1
- package/dist/tailwind.d.ts +1 -1
- package/dist/tailwind.js +23 -12
- package/dist/utils/data-export.d.ts +3 -3
- package/dist/utils/table-export.d.ts +2 -2
- package/package.json +1 -1
|
@@ -315,6 +315,48 @@ interface TigerLocaleTaskBoard {
|
|
|
315
315
|
/** Aria label for the board root region */
|
|
316
316
|
boardAriaLabel?: string;
|
|
317
317
|
}
|
|
318
|
+
interface TigerLocaleChatWindow {
|
|
319
|
+
emptyText?: string;
|
|
320
|
+
sendText?: string;
|
|
321
|
+
placeholder?: string;
|
|
322
|
+
sendingText?: string;
|
|
323
|
+
sentText?: string;
|
|
324
|
+
failedText?: string;
|
|
325
|
+
}
|
|
326
|
+
interface TigerLocaleCode {
|
|
327
|
+
copyLabel?: string;
|
|
328
|
+
copiedLabel?: string;
|
|
329
|
+
copyFailedLabel?: string;
|
|
330
|
+
}
|
|
331
|
+
interface TigerLocaleCommentThread {
|
|
332
|
+
emptyText?: string;
|
|
333
|
+
replyPlaceholder?: string;
|
|
334
|
+
replyButtonText?: string;
|
|
335
|
+
cancelReplyText?: string;
|
|
336
|
+
likeText?: string;
|
|
337
|
+
likedText?: string;
|
|
338
|
+
replyText?: string;
|
|
339
|
+
moreText?: string;
|
|
340
|
+
loadMoreText?: string;
|
|
341
|
+
collapseRepliesText?: string;
|
|
342
|
+
/** Template: supports {count} */
|
|
343
|
+
expandRepliesText?: string;
|
|
344
|
+
}
|
|
345
|
+
interface TigerLocaleActivityFeed {
|
|
346
|
+
emptyText?: string;
|
|
347
|
+
loadingText?: string;
|
|
348
|
+
}
|
|
349
|
+
interface TigerLocaleNotificationCenter {
|
|
350
|
+
title?: string;
|
|
351
|
+
emptyText?: string;
|
|
352
|
+
loadingText?: string;
|
|
353
|
+
allLabel?: string;
|
|
354
|
+
unreadLabel?: string;
|
|
355
|
+
readLabel?: string;
|
|
356
|
+
markAllReadText?: string;
|
|
357
|
+
markReadText?: string;
|
|
358
|
+
markUnreadText?: string;
|
|
359
|
+
}
|
|
318
360
|
interface TigerLocaleSelect {
|
|
319
361
|
/** Mobile dropdown completion action text */
|
|
320
362
|
doneText?: string;
|
|
@@ -492,6 +534,11 @@ interface TigerLocale {
|
|
|
492
534
|
imageEditor?: TigerLocaleImageEditor;
|
|
493
535
|
status?: TigerLocaleStatus;
|
|
494
536
|
taskBoard?: TigerLocaleTaskBoard;
|
|
537
|
+
chatWindow?: TigerLocaleChatWindow;
|
|
538
|
+
code?: TigerLocaleCode;
|
|
539
|
+
commentThread?: TigerLocaleCommentThread;
|
|
540
|
+
activityFeed?: TigerLocaleActivityFeed;
|
|
541
|
+
notificationCenter?: TigerLocaleNotificationCenter;
|
|
495
542
|
select?: TigerLocaleSelect;
|
|
496
543
|
tabs?: TigerLocaleTabs;
|
|
497
544
|
rate?: TigerLocaleRate;
|
|
@@ -522,4 +569,4 @@ type TigerLocaleLazyModule = Partial<TigerLocale> | {
|
|
|
522
569
|
type TigerLocaleLoader = () => PromiseLike<TigerLocaleLazyModule>;
|
|
523
570
|
type TigerLocaleInput = Partial<TigerLocale> | PromiseLike<TigerLocaleLazyModule> | TigerLocaleLoader;
|
|
524
571
|
|
|
525
|
-
export type {
|
|
572
|
+
export type { TigerLocaleTagsInput as A, TigerLocaleTaskBoard as B, TimePickerLabels as C, TigerLocaleTour as D, TigerLocaleTransfer as E, TigerLocaleDirection as F, TigerLocaleLazyModule as G, TigerLocaleLoader as H, TigerText as I, TimeFormat as J, TigerLocaleDrawer as K, TigerLocaleModal as L, TigerLocaleCommon as M, TigerLocaleEmpty as N, TigerLocaleQRCode as O, TigerLocaleTimePicker as P, TigerLocaleTimeline as Q, TigerLocaleUpload as R, TimePickerModelValue as S, TigerLocale as T, TimePickerProps as U, TigerLocaleInput as a, TigerLocalePagination as b, TigerLocaleTable as c, TigerLocaleActivityFeed as d, TigerLocaleAvatarGroup as e, TigerLocaleCalendar as f, TigerLocaleCarousel as g, TigerLocaleChart as h, TigerLocaleChatWindow as i, TigerLocaleCode as j, TigerLocaleCommentThread as k, TigerLocaleCronEditor as l, TigerLocaleDataExport as m, TigerLocaleFileManager as n, TigerLocaleFormValidation as o, TigerLocaleFormWizard as p, TigerLocaleImageEditor as q, TigerLocaleImageViewer as r, TigerLocaleInputOTP as s, TigerLocaleMarkdownEditor as t, TigerLocaleNotificationCenter as u, TigerLocaleRate as v, TigerLocaleRichTextEditor as w, TigerLocaleSelect as x, TigerLocaleStatus as y, TigerLocaleTabs as z };
|
package/dist/locales/ar-SA.d.ts
CHANGED
package/dist/locales/ar-SA.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
|
@@ -442,6 +483,47 @@ var arSA = defineLocale({
|
|
|
442
483
|
dragHintText: "\u0627\u0633\u062D\u0628 \u0644\u0644\u0646\u0642\u0644",
|
|
443
484
|
boardAriaLabel: "\u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0647\u0627\u0645"
|
|
444
485
|
},
|
|
486
|
+
chatWindow: {
|
|
487
|
+
emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0631\u0633\u0627\u0626\u0644",
|
|
488
|
+
sendText: "\u0625\u0631\u0633\u0627\u0644",
|
|
489
|
+
placeholder: "\u0627\u0643\u062A\u0628 \u0631\u0633\u0627\u0644\u0629",
|
|
490
|
+
sendingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u0625\u0631\u0633\u0627\u0644",
|
|
491
|
+
sentText: "\u062A\u0645 \u0627\u0644\u062A\u0633\u0644\u064A\u0645",
|
|
492
|
+
failedText: "\u0641\u0634\u0644 \u0627\u0644\u0625\u0631\u0633\u0627\u0644"
|
|
493
|
+
},
|
|
494
|
+
code: {
|
|
495
|
+
copyLabel: "\u0646\u0633\u062E",
|
|
496
|
+
copiedLabel: "\u062A\u0645 \u0627\u0644\u0646\u0633\u062E",
|
|
497
|
+
copyFailedLabel: "\u0641\u0634\u0644 \u0627\u0644\u0646\u0633\u062E"
|
|
498
|
+
},
|
|
499
|
+
commentThread: {
|
|
500
|
+
emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u062A\u0639\u0644\u064A\u0642\u0627\u062A",
|
|
501
|
+
replyPlaceholder: "\u0627\u0643\u062A\u0628 \u0631\u062F\u064B\u0627...",
|
|
502
|
+
replyButtonText: "\u0631\u062F",
|
|
503
|
+
cancelReplyText: "\u0625\u0644\u063A\u0627\u0621",
|
|
504
|
+
likeText: "\u0625\u0639\u062C\u0627\u0628",
|
|
505
|
+
likedText: "\u062A\u0645 \u0627\u0644\u0625\u0639\u062C\u0627\u0628",
|
|
506
|
+
replyText: "\u0631\u062F",
|
|
507
|
+
moreText: "\u0627\u0644\u0645\u0632\u064A\u062F",
|
|
508
|
+
loadMoreText: "\u062A\u062D\u0645\u064A\u0644 \u0627\u0644\u0645\u0632\u064A\u062F",
|
|
509
|
+
collapseRepliesText: "\u25BE \u0637\u064A \u0627\u0644\u0631\u062F\u0648\u062F",
|
|
510
|
+
expandRepliesText: "\u25B8 \u062A\u0648\u0633\u064A\u0639 {count} \u0645\u0646 \u0627\u0644\u0631\u062F\u0648\u062F"
|
|
511
|
+
},
|
|
512
|
+
activityFeed: {
|
|
513
|
+
emptyText: "\u0644\u0627 \u064A\u0648\u062C\u062F \u0646\u0634\u0627\u0637",
|
|
514
|
+
loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644..."
|
|
515
|
+
},
|
|
516
|
+
notificationCenter: {
|
|
517
|
+
title: "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062A",
|
|
518
|
+
emptyText: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0625\u0634\u0639\u0627\u0631\u0627\u062A",
|
|
519
|
+
loadingText: "\u062C\u0627\u0631\u064D \u0627\u0644\u062A\u062D\u0645\u064A\u0644...",
|
|
520
|
+
allLabel: "\u0627\u0644\u0643\u0644",
|
|
521
|
+
unreadLabel: "\u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621",
|
|
522
|
+
readLabel: "\u0645\u0642\u0631\u0648\u0621",
|
|
523
|
+
markAllReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621 \u0639\u0644\u0649 \u0627\u0644\u0643\u0644",
|
|
524
|
+
markReadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u0645\u0642\u0631\u0648\u0621",
|
|
525
|
+
markUnreadText: "\u0648\u0636\u0639 \u0639\u0644\u0627\u0645\u0629 \u063A\u064A\u0631 \u0645\u0642\u0631\u0648\u0621"
|
|
526
|
+
},
|
|
445
527
|
select: {
|
|
446
528
|
doneText: "\u0625\u0646\u0647\u0627\u0621"
|
|
447
529
|
},
|
package/dist/locales/de-DE.d.ts
CHANGED
package/dist/locales/de-DE.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
|
@@ -442,6 +483,47 @@ var deDE = defineLocale({
|
|
|
442
483
|
dragHintText: "Zum Verschieben ziehen",
|
|
443
484
|
boardAriaLabel: "Aufgabenboard"
|
|
444
485
|
},
|
|
486
|
+
chatWindow: {
|
|
487
|
+
emptyText: "Keine Nachrichten",
|
|
488
|
+
sendText: "Senden",
|
|
489
|
+
placeholder: "Nachricht eingeben",
|
|
490
|
+
sendingText: "Senden...",
|
|
491
|
+
sentText: "Zugestellt",
|
|
492
|
+
failedText: "Senden fehlgeschlagen"
|
|
493
|
+
},
|
|
494
|
+
code: {
|
|
495
|
+
copyLabel: "Kopieren",
|
|
496
|
+
copiedLabel: "Kopiert",
|
|
497
|
+
copyFailedLabel: "Kopieren fehlgeschlagen"
|
|
498
|
+
},
|
|
499
|
+
commentThread: {
|
|
500
|
+
emptyText: "Keine Kommentare",
|
|
501
|
+
replyPlaceholder: "Antwort schreiben...",
|
|
502
|
+
replyButtonText: "Antworten",
|
|
503
|
+
cancelReplyText: "Abbrechen",
|
|
504
|
+
likeText: "Gef\xE4llt mir",
|
|
505
|
+
likedText: "Gef\xE4llt dir",
|
|
506
|
+
replyText: "Antworten",
|
|
507
|
+
moreText: "Mehr",
|
|
508
|
+
loadMoreText: "Mehr laden",
|
|
509
|
+
collapseRepliesText: "\u25BE Antworten ausblenden",
|
|
510
|
+
expandRepliesText: "\u25B8 {count} Antworten anzeigen"
|
|
511
|
+
},
|
|
512
|
+
activityFeed: {
|
|
513
|
+
emptyText: "Keine Aktivit\xE4t",
|
|
514
|
+
loadingText: "Wird geladen..."
|
|
515
|
+
},
|
|
516
|
+
notificationCenter: {
|
|
517
|
+
title: "Benachrichtigungen",
|
|
518
|
+
emptyText: "Keine Benachrichtigungen",
|
|
519
|
+
loadingText: "Wird geladen...",
|
|
520
|
+
allLabel: "Alle",
|
|
521
|
+
unreadLabel: "Ungelesen",
|
|
522
|
+
readLabel: "Gelesen",
|
|
523
|
+
markAllReadText: "Alle als gelesen markieren",
|
|
524
|
+
markReadText: "Als gelesen markieren",
|
|
525
|
+
markUnreadText: "Als ungelesen markieren"
|
|
526
|
+
},
|
|
445
527
|
select: {
|
|
446
528
|
doneText: "Fertigstellen"
|
|
447
529
|
},
|
package/dist/locales/en-US.d.ts
CHANGED
package/dist/locales/en-US.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
package/dist/locales/es-ES.d.ts
CHANGED
package/dist/locales/es-ES.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
|
@@ -442,6 +483,47 @@ var esES = defineLocale({
|
|
|
442
483
|
dragHintText: "Arrastra para mover",
|
|
443
484
|
boardAriaLabel: "Tablero de tareas"
|
|
444
485
|
},
|
|
486
|
+
chatWindow: {
|
|
487
|
+
emptyText: "No hay mensajes",
|
|
488
|
+
sendText: "Enviar",
|
|
489
|
+
placeholder: "Escribe un mensaje",
|
|
490
|
+
sendingText: "Enviando",
|
|
491
|
+
sentText: "Entregado",
|
|
492
|
+
failedText: "Error al enviar"
|
|
493
|
+
},
|
|
494
|
+
code: {
|
|
495
|
+
copyLabel: "Copiar",
|
|
496
|
+
copiedLabel: "Copiado",
|
|
497
|
+
copyFailedLabel: "Error al copiar"
|
|
498
|
+
},
|
|
499
|
+
commentThread: {
|
|
500
|
+
emptyText: "No hay comentarios",
|
|
501
|
+
replyPlaceholder: "Escribe una respuesta...",
|
|
502
|
+
replyButtonText: "Responder",
|
|
503
|
+
cancelReplyText: "Cancelar",
|
|
504
|
+
likeText: "Me gusta",
|
|
505
|
+
likedText: "Te gusta",
|
|
506
|
+
replyText: "Responder",
|
|
507
|
+
moreText: "M\xE1s",
|
|
508
|
+
loadMoreText: "Cargar m\xE1s",
|
|
509
|
+
collapseRepliesText: "\u25BE Ocultar respuestas",
|
|
510
|
+
expandRepliesText: "\u25B8 Mostrar {count} respuestas"
|
|
511
|
+
},
|
|
512
|
+
activityFeed: {
|
|
513
|
+
emptyText: "No hay actividad",
|
|
514
|
+
loadingText: "Cargando..."
|
|
515
|
+
},
|
|
516
|
+
notificationCenter: {
|
|
517
|
+
title: "Notificaciones",
|
|
518
|
+
emptyText: "No hay notificaciones",
|
|
519
|
+
loadingText: "Cargando...",
|
|
520
|
+
allLabel: "Todas",
|
|
521
|
+
unreadLabel: "No le\xEDdas",
|
|
522
|
+
readLabel: "Le\xEDdas",
|
|
523
|
+
markAllReadText: "Marcar todas como le\xEDdas",
|
|
524
|
+
markReadText: "Marcar como le\xEDda",
|
|
525
|
+
markUnreadText: "Marcar como no le\xEDda"
|
|
526
|
+
},
|
|
445
527
|
select: {
|
|
446
528
|
doneText: "Finalizar"
|
|
447
529
|
},
|
package/dist/locales/fr-FR.d.ts
CHANGED
package/dist/locales/fr-FR.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
|
@@ -442,6 +483,47 @@ var frFR = defineLocale({
|
|
|
442
483
|
dragHintText: "Glisser pour d\xE9placer",
|
|
443
484
|
boardAriaLabel: "Tableau des t\xE2ches"
|
|
444
485
|
},
|
|
486
|
+
chatWindow: {
|
|
487
|
+
emptyText: "Aucun message",
|
|
488
|
+
sendText: "Envoyer",
|
|
489
|
+
placeholder: "Saisir un message",
|
|
490
|
+
sendingText: "Envoi...",
|
|
491
|
+
sentText: "Distribu\xE9",
|
|
492
|
+
failedText: "\xC9chec de l'envoi"
|
|
493
|
+
},
|
|
494
|
+
code: {
|
|
495
|
+
copyLabel: "Copier",
|
|
496
|
+
copiedLabel: "Copi\xE9",
|
|
497
|
+
copyFailedLabel: "\xC9chec de la copie"
|
|
498
|
+
},
|
|
499
|
+
commentThread: {
|
|
500
|
+
emptyText: "Aucun commentaire",
|
|
501
|
+
replyPlaceholder: "\xC9crire une r\xE9ponse...",
|
|
502
|
+
replyButtonText: "R\xE9pondre",
|
|
503
|
+
cancelReplyText: "Annuler",
|
|
504
|
+
likeText: "J'aime",
|
|
505
|
+
likedText: "Aim\xE9",
|
|
506
|
+
replyText: "R\xE9pondre",
|
|
507
|
+
moreText: "Plus",
|
|
508
|
+
loadMoreText: "Charger plus",
|
|
509
|
+
collapseRepliesText: "\u25BE R\xE9duire les r\xE9ponses",
|
|
510
|
+
expandRepliesText: "\u25B8 Afficher {count} r\xE9ponses"
|
|
511
|
+
},
|
|
512
|
+
activityFeed: {
|
|
513
|
+
emptyText: "Aucune activit\xE9",
|
|
514
|
+
loadingText: "Chargement..."
|
|
515
|
+
},
|
|
516
|
+
notificationCenter: {
|
|
517
|
+
title: "Notifications",
|
|
518
|
+
emptyText: "Aucune notification",
|
|
519
|
+
loadingText: "Chargement...",
|
|
520
|
+
allLabel: "Toutes",
|
|
521
|
+
unreadLabel: "Non lues",
|
|
522
|
+
readLabel: "Lues",
|
|
523
|
+
markAllReadText: "Tout marquer comme lu",
|
|
524
|
+
markReadText: "Marquer comme lu",
|
|
525
|
+
markUnreadText: "Marquer comme non lu"
|
|
526
|
+
},
|
|
445
527
|
select: {
|
|
446
528
|
doneText: "Terminer"
|
|
447
529
|
},
|
package/dist/locales/id-ID.d.ts
CHANGED
package/dist/locales/id-ID.js
CHANGED
|
@@ -203,6 +203,47 @@ var enUS = {
|
|
|
203
203
|
dragHintText: "Drag to move",
|
|
204
204
|
boardAriaLabel: "Task Board"
|
|
205
205
|
},
|
|
206
|
+
chatWindow: {
|
|
207
|
+
emptyText: "No messages",
|
|
208
|
+
sendText: "Send",
|
|
209
|
+
placeholder: "Type a message",
|
|
210
|
+
sendingText: "Sending",
|
|
211
|
+
sentText: "Delivered",
|
|
212
|
+
failedText: "Failed to send"
|
|
213
|
+
},
|
|
214
|
+
code: {
|
|
215
|
+
copyLabel: "Copy",
|
|
216
|
+
copiedLabel: "Copied",
|
|
217
|
+
copyFailedLabel: "Copy failed"
|
|
218
|
+
},
|
|
219
|
+
commentThread: {
|
|
220
|
+
emptyText: "No comments",
|
|
221
|
+
replyPlaceholder: "Write a reply...",
|
|
222
|
+
replyButtonText: "Reply",
|
|
223
|
+
cancelReplyText: "Cancel",
|
|
224
|
+
likeText: "Like",
|
|
225
|
+
likedText: "Liked",
|
|
226
|
+
replyText: "Reply",
|
|
227
|
+
moreText: "More",
|
|
228
|
+
loadMoreText: "Load more",
|
|
229
|
+
collapseRepliesText: "\u25BE Collapse replies",
|
|
230
|
+
expandRepliesText: "\u25B8 Expand {count} replies"
|
|
231
|
+
},
|
|
232
|
+
activityFeed: {
|
|
233
|
+
emptyText: "No activity",
|
|
234
|
+
loadingText: "Loading..."
|
|
235
|
+
},
|
|
236
|
+
notificationCenter: {
|
|
237
|
+
title: "Notifications",
|
|
238
|
+
emptyText: "No notifications",
|
|
239
|
+
loadingText: "Loading...",
|
|
240
|
+
allLabel: "All",
|
|
241
|
+
unreadLabel: "Unread",
|
|
242
|
+
readLabel: "Read",
|
|
243
|
+
markAllReadText: "Mark all as read",
|
|
244
|
+
markReadText: "Mark as read",
|
|
245
|
+
markUnreadText: "Mark as unread"
|
|
246
|
+
},
|
|
206
247
|
select: {
|
|
207
248
|
doneText: "Done"
|
|
208
249
|
},
|
|
@@ -427,6 +468,47 @@ var idID = defineLocale({
|
|
|
427
468
|
dragHintText: "Seret untuk memindahkan",
|
|
428
469
|
boardAriaLabel: "Papan Tugas"
|
|
429
470
|
},
|
|
471
|
+
chatWindow: {
|
|
472
|
+
emptyText: "Tidak ada pesan",
|
|
473
|
+
sendText: "Kirim",
|
|
474
|
+
placeholder: "Tulis pesan",
|
|
475
|
+
sendingText: "Mengirim",
|
|
476
|
+
sentText: "Terkirim",
|
|
477
|
+
failedText: "Gagal mengirim"
|
|
478
|
+
},
|
|
479
|
+
code: {
|
|
480
|
+
copyLabel: "Salin",
|
|
481
|
+
copiedLabel: "Disalin",
|
|
482
|
+
copyFailedLabel: "Gagal menyalin"
|
|
483
|
+
},
|
|
484
|
+
commentThread: {
|
|
485
|
+
emptyText: "Tidak ada komentar",
|
|
486
|
+
replyPlaceholder: "Tulis balasan...",
|
|
487
|
+
replyButtonText: "Balas",
|
|
488
|
+
cancelReplyText: "Batal",
|
|
489
|
+
likeText: "Suka",
|
|
490
|
+
likedText: "Disukai",
|
|
491
|
+
replyText: "Balas",
|
|
492
|
+
moreText: "Lainnya",
|
|
493
|
+
loadMoreText: "Muat lebih banyak",
|
|
494
|
+
collapseRepliesText: "\u25BE Ciutkan balasan",
|
|
495
|
+
expandRepliesText: "\u25B8 Perluas {count} balasan"
|
|
496
|
+
},
|
|
497
|
+
activityFeed: {
|
|
498
|
+
emptyText: "Tidak ada aktivitas",
|
|
499
|
+
loadingText: "Memuat..."
|
|
500
|
+
},
|
|
501
|
+
notificationCenter: {
|
|
502
|
+
title: "Notifikasi",
|
|
503
|
+
emptyText: "Tidak ada notifikasi",
|
|
504
|
+
loadingText: "Memuat...",
|
|
505
|
+
allLabel: "Semua",
|
|
506
|
+
unreadLabel: "Belum dibaca",
|
|
507
|
+
readLabel: "Sudah dibaca",
|
|
508
|
+
markAllReadText: "Tandai semua sudah dibaca",
|
|
509
|
+
markReadText: "Tandai sudah dibaca",
|
|
510
|
+
markUnreadText: "Tandai belum dibaca"
|
|
511
|
+
},
|
|
430
512
|
select: {
|
|
431
513
|
doneText: "Selesai"
|
|
432
514
|
},
|
package/dist/locales/ja-JP.d.ts
CHANGED