@box/uploads-manager 1.13.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.
Files changed (103) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +167 -0
  3. package/dist/chunks/uploads-header.js +149 -0
  4. package/dist/chunks/uploads-item-list.js +41 -0
  5. package/dist/chunks/uploads-item.module.js +10 -0
  6. package/dist/chunks/uploads-manager.js +52 -0
  7. package/dist/esm/index.js +5 -0
  8. package/dist/esm/lib/uploads-header/index.js +2 -0
  9. package/dist/esm/lib/uploads-header/uploads-header.js +2 -0
  10. package/dist/esm/lib/uploads-header/uploads-header.messages.js +68 -0
  11. package/dist/esm/lib/uploads-item/components/action-buttons.js +57 -0
  12. package/dist/esm/lib/uploads-item/components/index.js +4 -0
  13. package/dist/esm/lib/uploads-item/components/item-row-icon.js +24 -0
  14. package/dist/esm/lib/uploads-item/components/status-line.js +64 -0
  15. package/dist/esm/lib/uploads-item/index.js +2 -0
  16. package/dist/esm/lib/uploads-item/uploads-item.js +32 -0
  17. package/dist/esm/lib/uploads-item/uploads-item.messages.js +72 -0
  18. package/dist/esm/lib/uploads-item-list/index.js +2 -0
  19. package/dist/esm/lib/uploads-item-list/uploads-item-list.js +2 -0
  20. package/dist/esm/lib/uploads-item-list/uploads-item-list.messages.js +6 -0
  21. package/dist/esm/lib/uploads-manager.js +3 -0
  22. package/dist/esm/lib/utils/getProgress.js +9 -0
  23. package/dist/esm/lib/utils/getStatus.js +11 -0
  24. package/dist/i18n/bn-IN.js +36 -0
  25. package/dist/i18n/bn-IN.properties +68 -0
  26. package/dist/i18n/da-DK.js +36 -0
  27. package/dist/i18n/da-DK.properties +68 -0
  28. package/dist/i18n/de-DE.js +36 -0
  29. package/dist/i18n/de-DE.properties +68 -0
  30. package/dist/i18n/en-AU.js +36 -0
  31. package/dist/i18n/en-AU.properties +68 -0
  32. package/dist/i18n/en-CA.js +36 -0
  33. package/dist/i18n/en-CA.properties +68 -0
  34. package/dist/i18n/en-GB.js +36 -0
  35. package/dist/i18n/en-GB.properties +68 -0
  36. package/dist/i18n/en-US.js +36 -0
  37. package/dist/i18n/en-US.properties +68 -0
  38. package/dist/i18n/en-x-pseudo.js +36 -0
  39. package/dist/i18n/en-x-pseudo.properties +68 -0
  40. package/dist/i18n/es-419.js +36 -0
  41. package/dist/i18n/es-419.properties +68 -0
  42. package/dist/i18n/es-ES.js +36 -0
  43. package/dist/i18n/es-ES.properties +68 -0
  44. package/dist/i18n/fi-FI.js +36 -0
  45. package/dist/i18n/fi-FI.properties +68 -0
  46. package/dist/i18n/fr-CA.js +36 -0
  47. package/dist/i18n/fr-CA.properties +68 -0
  48. package/dist/i18n/fr-FR.js +36 -0
  49. package/dist/i18n/fr-FR.properties +68 -0
  50. package/dist/i18n/hi-IN.js +36 -0
  51. package/dist/i18n/hi-IN.properties +68 -0
  52. package/dist/i18n/it-IT.js +36 -0
  53. package/dist/i18n/it-IT.properties +68 -0
  54. package/dist/i18n/ja-JP.js +36 -0
  55. package/dist/i18n/ja-JP.properties +68 -0
  56. package/dist/i18n/json/src/lib/uploads-header/uploads-header.messages.json +1 -0
  57. package/dist/i18n/json/src/lib/uploads-item/uploads-item.messages.json +1 -0
  58. package/dist/i18n/json/src/lib/uploads-item-list/uploads-item-list.messages.json +1 -0
  59. package/dist/i18n/ko-KR.js +36 -0
  60. package/dist/i18n/ko-KR.properties +68 -0
  61. package/dist/i18n/nb-NO.js +36 -0
  62. package/dist/i18n/nb-NO.properties +68 -0
  63. package/dist/i18n/nl-NL.js +36 -0
  64. package/dist/i18n/nl-NL.properties +68 -0
  65. package/dist/i18n/pl-PL.js +36 -0
  66. package/dist/i18n/pl-PL.properties +68 -0
  67. package/dist/i18n/pt-BR.js +36 -0
  68. package/dist/i18n/pt-BR.properties +68 -0
  69. package/dist/i18n/ru-RU.js +36 -0
  70. package/dist/i18n/ru-RU.properties +68 -0
  71. package/dist/i18n/sv-SE.js +36 -0
  72. package/dist/i18n/sv-SE.properties +68 -0
  73. package/dist/i18n/tr-TR.js +36 -0
  74. package/dist/i18n/tr-TR.properties +68 -0
  75. package/dist/i18n/zh-CN.js +36 -0
  76. package/dist/i18n/zh-CN.properties +68 -0
  77. package/dist/i18n/zh-TW.js +36 -0
  78. package/dist/i18n/zh-TW.properties +68 -0
  79. package/dist/styles/uploads-header.css +1 -0
  80. package/dist/styles/uploads-item-list.css +1 -0
  81. package/dist/styles/uploads-item.css +1 -0
  82. package/dist/styles/uploads-manager.css +1 -0
  83. package/dist/types/index.d.ts +4 -0
  84. package/dist/types/lib/stories/decorators.d.ts +2 -0
  85. package/dist/types/lib/stories/mocks.d.ts +2 -0
  86. package/dist/types/lib/types.d.ts +141 -0
  87. package/dist/types/lib/uploads-header/index.d.ts +2 -0
  88. package/dist/types/lib/uploads-header/uploads-header.d.ts +19 -0
  89. package/dist/types/lib/uploads-header/uploads-header.messages.d.ts +83 -0
  90. package/dist/types/lib/uploads-item/components/action-buttons.d.ts +5 -0
  91. package/dist/types/lib/uploads-item/components/index.d.ts +3 -0
  92. package/dist/types/lib/uploads-item/components/item-row-icon.d.ts +4 -0
  93. package/dist/types/lib/uploads-item/components/status-line.d.ts +4 -0
  94. package/dist/types/lib/uploads-item/index.d.ts +1 -0
  95. package/dist/types/lib/uploads-item/uploads-item.d.ts +6 -0
  96. package/dist/types/lib/uploads-item/uploads-item.messages.d.ts +88 -0
  97. package/dist/types/lib/uploads-item-list/index.d.ts +1 -0
  98. package/dist/types/lib/uploads-item-list/uploads-item-list.d.ts +6 -0
  99. package/dist/types/lib/uploads-item-list/uploads-item-list.messages.d.ts +8 -0
  100. package/dist/types/lib/uploads-manager.d.ts +3 -0
  101. package/dist/types/lib/utils/getProgress.d.ts +2 -0
  102. package/dist/types/lib/utils/getStatus.d.ts +2 -0
  103. package/package.json +51 -0
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "সমস্ত বাতিল করুন",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "অগ্রগতি আপলোড করুন",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "সমস্ত পুনঃচেষ্টা করুন",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "আপলোড বাতিল করা হয়েছে",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "আপলোড সম্পূর্ণ করুন",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "আপলোডের ত্রুটি",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "আপলোড পেন্ডিং রয়েছে",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{#টি ত্রুটি} other{#টি ত্রুটি}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{totalCount}টির মধ্যে {completedCount}টি সম্পূর্ণ",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "আপলোড বাতিল করা হয়েছে",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "আপলোড সম্পূর্ণ হয়েছে",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "ফাইল টেনে এনে ড্রপ করুন",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "আপলোড ব্যর্থ হয়েছে",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "আপলোড করা হচ্ছে",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "আপলোড প্যানেল সংকুচিত করুন",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "আপলোড প্যানেল প্রসারিত করুন",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "বাতিল করুন",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "{name}-এর জন্য আপলোড বাতিল করুন",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "খুলুন",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "{name} খুলুন",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "অপসারণ করুন",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "{name} অপসারণ করুন",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "আবার চেষ্টা করুন",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "{name}-এর জন্য পুনরায় আপলোড করার চেষ্টা করুন",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "শেয়ার করুন",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "{name} শেয়ার করুন",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "{name}, {progress}% সম্পূর্ণ আপলোড করা হচ্ছে",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "বাতিল হয়েছে",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "সম্পূর্ণ হয়েছে",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "সম্পূর্ণ হয়েছে · ভার্সন {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "ত্রুটি: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "আপলোড করা হচ্ছে · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· ভার্সন {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "আপলোড"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = সমস্ত বাতিল করুন
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = অগ্রগতি আপলোড করুন
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = সমস্ত পুনঃচেষ্টা করুন
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = আপলোড বাতিল করা হয়েছে
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = আপলোড সম্পূর্ণ করুন
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = আপলোডের ত্রুটি
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = আপলোড পেন্ডিং রয়েছে
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{#টি ত্রুটি} other{#টি ত্রুটি}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {totalCount}টির মধ্যে {completedCount}টি সম্পূর্ণ
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = আপলোড বাতিল করা হয়েছে
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = আপলোড সম্পূর্ণ হয়েছে
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = ফাইল টেনে এনে ড্রপ করুন
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = আপলোড ব্যর্থ হয়েছে
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = আপলোড করা হচ্ছে
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = আপলোড প্যানেল সংকুচিত করুন
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = আপলোড প্যানেল প্রসারিত করুন
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = বাতিল করুন
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = {name}-এর জন্য আপলোড বাতিল করুন
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = খুলুন
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = {name} খুলুন
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = অপসারণ করুন
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = {name} অপসারণ করুন
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = আবার চেষ্টা করুন
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = {name}-এর জন্য পুনরায় আপলোড করার চেষ্টা করুন
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = শেয়ার করুন
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = {name} শেয়ার করুন
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = {name}, {progress}% সম্পূর্ণ আপলোড করা হচ্ছে
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = বাতিল হয়েছে
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = সম্পূর্ণ হয়েছে
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = সম্পূর্ণ হয়েছে · ভার্সন {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = ত্রুটি: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = আপলোড করা হচ্ছে · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · ভার্সন {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = আপলোড
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Annuller alle",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Upload-forløb",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Prøv alle igen",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload annulleret",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload fuldført",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Fejl ved upload",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Afventer upload",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Fejl} other{# Fejl}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} af {totalCount} fuldført",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads annulleret",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads fuldført",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Træk og slip filer",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads mislykkedes",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Upload",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Skjul upload-panel",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Udvid uploadpanel",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Annuller",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Annuller upload af {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Åbn",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Åbn {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Fjern",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Fjern {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Prøv igen",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Prøv upload af {name} igen",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Del",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Del {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Uploader {name}, {progress} % fuldført",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Annulleret",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Fuldført",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Fuldført · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Fejl: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Uploader · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Uploader"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Annuller alle
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Upload-forløb
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Prøv alle igen
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Upload annulleret
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Upload fuldført
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Fejl ved upload
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Afventer upload
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Fejl} other{# Fejl}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} af {totalCount} fuldført
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Uploads annulleret
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Uploads fuldført
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Træk og slip filer
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Uploads mislykkedes
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Upload
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Skjul upload-panel
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Udvid uploadpanel
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Annuller
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Annuller upload af {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Åbn
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Åbn {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Fjern
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Fjern {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Prøv igen
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Prøv upload af {name} igen
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Del
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Del {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Uploader {name}, {progress} % fuldført
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Annulleret
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Fuldført
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Fuldført · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Fejl: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Uploader · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Version {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Uploader
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Alle abbrechen",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Upload-Fortschritt",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Alle erneut versuchen",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload abgebrochen",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload abgeschlossen",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Uploadfehler",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Upload ausstehend",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Fehler} other{# Fehler}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} von {totalCount} abgeschlossen",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads abgebrochen",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads abgeschlossen",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Dateien per Drag-and-Drop verschieben",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads fehlgeschlagen",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Wird hochgeladen",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Upload-Bereich einklappen",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Upload-Bereich ausklappen",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Abbrechen",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Upload für {name} abbrechen",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Öffnen",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "{name} öffnen",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Entfernen",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "{name} entfernen",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Erneut versuchen",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Upload für {name} erneut versuchen",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Freigeben",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "{name} freigeben",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "{name} wird hochgeladen, {progress}% abgeschlossen",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Abgebrochen",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Abgeschlossen",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Abgeschlossen · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Fehler: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Wird hochgeladen · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Uploads"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Alle abbrechen
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Upload-Fortschritt
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Alle erneut versuchen
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Upload abgebrochen
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Upload abgeschlossen
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Uploadfehler
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Upload ausstehend
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Fehler} other{# Fehler}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} von {totalCount} abgeschlossen
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Uploads abgebrochen
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Uploads abgeschlossen
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Dateien per Drag-and-Drop verschieben
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Uploads fehlgeschlagen
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Wird hochgeladen
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Upload-Bereich einklappen
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Upload-Bereich ausklappen
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Abbrechen
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Upload für {name} abbrechen
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Öffnen
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = {name} öffnen
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Entfernen
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = {name} entfernen
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Erneut versuchen
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Upload für {name} erneut versuchen
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Freigeben
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = {name} freigeben
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = {name} wird hochgeladen, {progress}% abgeschlossen
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Abgebrochen
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Abgeschlossen
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Abgeschlossen · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Fehler: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Wird hochgeladen · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Version {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Uploads
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Cancel All",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Upload progress",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Retry All",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload cancelled",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload completed",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Upload error",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Pending upload",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Error} other{# Errors}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} of {totalCount} complete",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads Cancelled",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads Completed",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Drag and drop files",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads Failed",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Uploading",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Collapse uploads panel",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Expand uploads panel",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Cancel",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Cancel upload for {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Open",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Open {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Remove",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Remove {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Retry",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Retry upload for {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Share",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Share {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Uploading {name}, {progress}% complete",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Cancelled",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completed",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completed · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Error: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Uploading · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Uploads"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Cancel All
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Upload progress
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Retry All
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Upload cancelled
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Upload completed
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Upload error
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Pending upload
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Error} other{# Errors}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} of {totalCount} complete
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Uploads Cancelled
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Uploads Completed
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Drag and drop files
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Uploads Failed
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Uploading
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Collapse uploads panel
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Expand uploads panel
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Cancel
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Cancel upload for {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Open
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Open {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Remove
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Remove {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Retry
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Retry upload for {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Share
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Share {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Uploading {name}, {progress}% complete
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Cancelled
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Completed
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Completed · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Error: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Uploading · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Version {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Uploads
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Cancel All",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Upload progress",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Retry All",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload canceled",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload complete",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Upload error",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Pending upload",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount, plural, one {# Error} other {# Errors}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} of {totalCount} complete",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads Canceled",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads Complete",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Drag and drop files",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads Failed",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Uploading",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Collapse uploads panel",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Expand uploads panel",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Cancel",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Cancel upload for {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Open",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Open {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Remove",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Remove {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Retry",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Retry upload for {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Share",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Share {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Uploading {name}, {progress}% complete",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Canceled",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completed",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completed · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Error: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Uploading · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Uploads"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Cancel All
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Upload progress
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Retry All
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Upload canceled
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Upload complete
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Upload error
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Pending upload
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount, plural, one {# Error} other {# Errors}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} of {totalCount} complete
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Uploads Canceled
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Uploads Complete
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Drag and drop files
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Uploads Failed
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Uploading
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Collapse uploads panel
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Expand uploads panel
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Cancel
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Cancel upload for {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Open
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Open {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Remove
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Remove {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Retry
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Retry upload for {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Share
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Share {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Uploading {name}, {progress}% complete
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Canceled
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Completed
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Completed · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Error: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Uploading · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Version {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Uploads
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Cancel All",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Upload progress",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Retry All",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload cancelled",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload completed",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Upload error",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Pending upload",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Error} other{# Errors}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} of {totalCount} complete",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads Cancelled",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads Completed",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Drag and drop files",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads Failed",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Uploading",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Collapse uploads panel",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Expand uploads panel",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Cancel",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Cancel upload for {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Open",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Open {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Remove",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Remove {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Retry",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Retry upload for {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Share",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Share {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Uploading {name}, {progress}% complete",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Cancelled",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completed",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completed · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Error: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Uploading · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Uploads"
36
+ }