@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,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": "⟦萬萬 Ċäņçёĺ Àľļ 國國⟧",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "⟦萬萬萬萬 ŬΡļόăď Ρŗöğŕėѕş 國國國國⟧",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "⟦萬萬 Яέŧřγ Āļĺ 國國⟧",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "⟦萬萬萬萬 ÙΡļõåď ĉâʼnсеļєď 國國國國⟧",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "⟦萬萬萬萬 ŲΡĺøâď сόmΡĺèţê 國國國國⟧",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "⟦萬萬萬 ŲΡĺõāď éґŗöŗ 國國國⟧",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "⟦萬萬萬萬 Pêŋďĩпğ ůΡľòâď 國國國國⟧",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "⟦萬萬萬萬萬萬萬萬 {failedCount, plural, one {# Èŗŗöř} other {# Ěŗгóяş}} 國國國國國國國國⟧",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "⟦萬萬萬萬萬萬 {completedCount} óƒ {totalCount} čømΡļéŧё 國國國國國國⟧",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "⟦萬萬萬萬 ŪΡľóäďş Čäʼnĉēĺėď 國國國國⟧",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "⟦萬萬萬萬 ŰΡĺōāďŝ ĊömΡļêťє 國國國國⟧",
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": "⟦萬 Ŕëmöνę 國⟧",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "⟦萬萬萬 Ґēmоνё {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}% çōmΡľеťè 國國國國國國國國國⟧",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "⟦萬萬 Çäπċèĺеď 國國⟧",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "⟦萬萬 ĆŏmΡĺёţéď 國國⟧",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "⟦萬萬萬萬萬萬萬 ĈómΡļěŧęď · Vεŗśĩőл {versionNumber} 國國國國國國國⟧",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "⟦萬萬萬 Ēгяόŗ: {errorMessage} 國國國⟧",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "⟦萬萬萬萬萬 ŰΡĺóäďīņğ · {progress}% 國國國國國⟧",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "⟦萬萬萬萬 · Vєŕşіõŋ {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 = ⟦萬萬萬萬 ÙΡļõåď ĉâʼnсеļєď 國國國國⟧
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = ⟦萬萬萬萬 ŲΡĺøâď сόmΡĺèţê 國國國國⟧
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 = ⟦萬萬萬萬 Pêŋďĩпğ ůΡľòâď 國國國國⟧
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 = ⟦萬萬萬萬萬萬 {completedCount} óƒ {totalCount} čømΡļéŧё 國國國國國國⟧
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = ⟦萬萬萬萬 ŪΡľóäďş Čäʼnĉēĺėď 國國國國⟧
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = ⟦萬萬萬萬 ŰΡĺōāďŝ ĊömΡļêťє 國國國國⟧
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 = ⟦萬 Ŕëmöνę 國⟧
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = ⟦萬萬萬 Ґēmоνё {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}% çōmΡľеťè 國國國國國國國國國⟧
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 = ⟦萬萬 ĆŏmΡĺёţéď 國國⟧
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = ⟦萬萬萬萬萬萬萬 ĈómΡļěŧęď · Vεŗśĩőл {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 = ⟦萬萬萬萬 · Vєŕşіõŋ {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": "Cancelar todo",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Progreso de la carga",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Reintentar todo",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Carga cancelada",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Carga completada",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Error de carga",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Carga pendiente",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# error} many{# errores} other{# errores}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} de {totalCount} completada(s)",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Cargas canceladas",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Cargas completadas",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Arrastrar y soltar archivos",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Error en las cargas",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Cargando",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Contraer panel de cargas",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Ampliar panel de cargas",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Anular",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Anular la carga para {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Abrir",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Abrir {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Eliminar",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Eliminar {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Reintentar",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Reintentar la carga para {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Compartir",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Compartir {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Cargando {name}, {progress} % completado",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Cancelada",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completada",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completada · Versión {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Error: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Cargando · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versión {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Cargas"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Cancelar todo
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Progreso de la carga
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Reintentar todo
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Carga cancelada
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Carga completada
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Error de carga
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Carga pendiente
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# error} many{# errores} other{# errores}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} de {totalCount} completada(s)
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Cargas canceladas
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Cargas completadas
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Arrastrar y soltar archivos
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Error en las cargas
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Cargando
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Contraer panel de cargas
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Ampliar panel de cargas
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Anular
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Anular la carga para {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Abrir
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Abrir {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Eliminar
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Eliminar {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Reintentar
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Reintentar la carga para {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Compartir
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Compartir {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Cargando {name}, {progress} % completado
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Cancelada
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Completada
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Completada · Versión {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 = Cargando · {progress} %
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versión {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Cargas
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Cancelar todo",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Progreso de la carga",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Reintentar todo",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Carga cancelada",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Carga completada",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Error de carga",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Carga pendiente",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# error} many{# errores} other{# errores}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} de {totalCount} completada(s)",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Cargas canceladas",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Cargas completadas",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Arrastrar y soltar archivos",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Error en las cargas",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Cargando",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Contraer panel de cargas",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Ampliar panel de cargas",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Anular",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Anular la carga para {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Abrir",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Abrir {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Eliminar",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Eliminar {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Reintentar",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Reintentar la carga para {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Compartir",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Compartir {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Cargando {name}, {progress} % completado",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Cancelada",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completada",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completada · Versión {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Error: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Cargando · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versión {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Cargas"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Cancelar todo
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Progreso de la carga
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Reintentar todo
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Carga cancelada
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Carga completada
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Error de carga
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Carga pendiente
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# error} many{# errores} other{# errores}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} de {totalCount} completada(s)
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Cargas canceladas
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Cargas completadas
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Arrastrar y soltar archivos
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Error en las cargas
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Cargando
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Contraer panel de cargas
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Ampliar panel de cargas
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Anular
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Anular la carga para {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Abrir
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Abrir {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Eliminar
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Eliminar {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Reintentar
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Reintentar la carga para {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Compartir
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Compartir {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Cargando {name}, {progress} % completado
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Cancelada
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Completada
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Completada · Versión {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 = Cargando · {progress} %
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versión {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Cargas
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Peruuta kaikki",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Latauksen edistyminen",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Yritä kaikkia uudelleen",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Lataus peruutettu",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Lataus valmis",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Latausvirhe",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Odottaa latausta",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Virhe} other{# Virhettä}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} / {totalCount} valmiina",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Lataukset peruutettu",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Lataukset valmiit",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Vedä ja pudota tiedostot",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Lataukset epäonnistuivat",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Ladataan",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Kutista latauspaneeli",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Laajenna latauspaneeli",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Peruuta",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Peruuta {name} lataus",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Avaa",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Avaa {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Poista",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Poista {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Yritä uudelleen",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Yritä ladata {name} uudelleen",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Jaa",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Jaa {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Ladataan {name}, {progress}% valmis",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Peruutettu",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Valmis",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Valmis · Versio {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Virhe: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Ladataan · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versio {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Lataukset"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Peruuta kaikki
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Latauksen edistyminen
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Yritä kaikkia uudelleen
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Lataus peruutettu
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Lataus valmis
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Latausvirhe
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Odottaa latausta
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Virhe} other{# Virhettä}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} / {totalCount} valmiina
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Lataukset peruutettu
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Lataukset valmiit
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Vedä ja pudota tiedostot
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Lataukset epäonnistuivat
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Ladataan
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Kutista latauspaneeli
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Laajenna latauspaneeli
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Peruuta
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Peruuta {name} lataus
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Avaa
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Avaa {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Poista
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Poista {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Yritä uudelleen
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Yritä ladata {name} uudelleen
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Jaa
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Jaa {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Ladataan {name}, {progress}% valmis
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Peruutettu
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Valmis
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Valmis · Versio {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Virhe: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Ladataan · {progress} %
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versio {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Lataukset