@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 = 모두 취소
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": "Avbryt alle",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Opplastingsfremdrift",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Prøv alle på nytt",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Opplasting kansellert",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Opplasting fullført",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Feil ved opplasting",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Venter på opplasting",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Feil} other{# Feil}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} av {totalCount} fullført",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Opplastinger kansellert",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Opplastinger fullført",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Dra og slipp filer",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Mislykkede opplastinger",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Opplasting",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Skjul opplastingspanel",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Utvid opplastingspanel",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Avbryt",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Avbryt opplasting for {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Åpne",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Åpne {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Fjern",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Fjern {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Prøv igjen",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Prøv å laste opp på nytt for {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Del",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Del {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Opplasting {name}, {progress}% fullført",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Avbrutt",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Fullført",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Fullført · Versjon {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Feil: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Opplasting · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versjon {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Opplastninger"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Avbryt alle
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Opplastingsfremdrift
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Prøv alle på nytt
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Opplasting kansellert
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Opplasting fullført
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Feil ved opplasting
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Venter på opplasting
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Feil} other{# Feil}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} av {totalCount} fullført
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Opplastinger kansellert
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Opplastinger fullført
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Dra og slipp filer
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Mislykkede opplastinger
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Opplasting
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Skjul opplastingspanel
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Utvid opplastingspanel
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Avbryt
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Avbryt opplasting for {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Åpne
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Åpne {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 igjen
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Prøv å laste opp på nytt for {name}
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 = Opplasting {name}, {progress}% fullført
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Avbrutt
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Fullført
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Fullført · Versjon {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Feil: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Opplasting · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versjon {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Opplastninger
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Alles annuleren",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Voortgang uploaden",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Alles opnieuw proberen",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Uploaden geannuleerd",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Uploaden voltooid",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Uploadfout",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "In afwachting van uploaden",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# fout} other{# fouten}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} van {totalCount} voltooid",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Uploads geannuleerd",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Uploads voltooid",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Bestanden slepen",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Uploads mislukt",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Wordt geüpload",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Uploadpaneel samenvouwen",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Uploadpaneel uitvouwen",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Annuleren",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Uploaden voor {name} annuleren",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Openen",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "{name} openen",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Verwijderen",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "{name} verwijderen",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Opnieuw proberen",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Uploaden voor {name} opnieuw proberen",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Delen",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "{name} delen",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "{name} wordt geüpload, {progress}% voltooid",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Geannuleerd",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Voltooid",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Voltooid · Versie {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Fout: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Wordt geüpload · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versie {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 = Alles annuleren
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Voortgang uploaden
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Alles opnieuw proberen
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Uploaden geannuleerd
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Uploaden voltooid
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Uploadfout
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = In afwachting van uploaden
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# fout} other{# fouten}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} van {totalCount} voltooid
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Uploads geannuleerd
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Uploads voltooid
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Bestanden slepen
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Uploads mislukt
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Wordt geüpload
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Uploadpaneel samenvouwen
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Uploadpaneel uitvouwen
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Annuleren
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Uploaden voor {name} annuleren
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Openen
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = {name} openen
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Verwijderen
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = {name} verwijderen
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Opnieuw proberen
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Uploaden voor {name} opnieuw proberen
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Delen
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = {name} delen
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = {name} wordt geüpload, {progress}% voltooid
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Geannuleerd
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Voltooid
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Voltooid · Versie {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Fout: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Wordt geüpload · {progress} %
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versie {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": "Anuluj wszystko",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Postęp przekazywania",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Spróbuj ponownie wszystko",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Anulowano przekazywanie",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Zakończono przekazywanie",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Błąd ładowania",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Oczekuje na przekazanie",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# błąd} other{# błędy} few{# błędy} many{# błędy}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "Zakończono {completedCount} z {totalCount}",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Anulowano przekazywanie",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Zakończono przekazywanie",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Przeciągnij i upuść pliki",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Przekazywanie nie powiodło się",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Przekazywanie",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Zwiń panel przekazywania",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Rozwiń panel przekazywania",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Anuluj",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Anuluj przekazywanie pliku {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Otwórz",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Otwórz plik {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Usuń",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Usuń plik {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Spróbuj ponownie",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Spróbuj ponownie przekazać plik {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Udostępnij",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Udostępnij plik {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Przekazywanie pliku {name} – ukończono {progress}%",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Anulowano",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Zakończono",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Zakończono · Wersja {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Błąd: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Trwa przekazywanie · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Wersja {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Przekazane"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Anuluj wszystko
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Postęp przekazywania
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Spróbuj ponownie wszystko
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Anulowano przekazywanie
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Zakończono przekazywanie
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Błąd ładowania
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Oczekuje na przekazanie
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# błąd} other{# błędy} few{# błędy} many{# błędy}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = Zakończono {completedCount} z {totalCount}
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Anulowano przekazywanie
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Zakończono przekazywanie
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Przeciągnij i upuść pliki
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Przekazywanie nie powiodło się
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Przekazywanie
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Zwiń panel przekazywania
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Rozwiń panel przekazywania
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Anuluj
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Anuluj przekazywanie pliku {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Otwórz
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Otwórz plik {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Usuń
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Usuń plik {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Spróbuj ponownie
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Spróbuj ponownie przekazać plik {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Udostępnij
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Udostępnij plik {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Przekazywanie pliku {name} – ukończono {progress}%
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Anulowano
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Zakończono
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Zakończono · Wersja {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Błąd: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Trwa przekazywanie · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Wersja {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Przekazane
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Cancelar tudo",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Progresso do carregamento",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Repetir tudo",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Carregamento cancelado",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Carregamento concluído",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Erro no carregamento",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Carregamento pendente",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Error} many{# Erros} other{# Erros}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} de {totalCount} concluído",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Carregamentos cancelados",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Carregamentos concluídos",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Arrastar e soltar arquivos",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Falha nos carregamentos",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Carregando",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Recolher painel de carregamentos",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Expandir painel de carregamentos",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Cancelar",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Cancelar carregamento para {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Abrir",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Abrir {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Remover",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Remover {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Tentar novamente",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Tentar carregar novamente para {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Compartilhar",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Compartilhar {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Carregando {name}, {progress}% concluído",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Cancelado",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Concluído",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Concluído · Versão {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Erro: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Carregando · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versão {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Carregadas"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Cancelar tudo
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Progresso do carregamento
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Repetir tudo
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Carregamento cancelado
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Carregamento concluído
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Erro no carregamento
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Carregamento pendente
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Error} many{# Erros} other{# Erros}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} de {totalCount} concluído
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Carregamentos cancelados
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Carregamentos concluídos
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Arrastar e soltar arquivos
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Falha nos carregamentos
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Carregando
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Recolher painel de carregamentos
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Expandir painel de carregamentos
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Cancelar
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Cancelar carregamento 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 = Remover
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Remover {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Tentar novamente
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Tentar carregar novamente para {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Compartilhar
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Compartilhar {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Carregando {name}, {progress}% concluído
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Cancelado
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Concluído
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Concluído · Versão {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Erro: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Carregando · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versão {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Carregadas
@@ -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{# ошибка} few{# ошибки} many{# ошибок} other{# ошибки}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} из {totalCount} завершены",
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{# ошибка} few{# ошибки} many{# ошибок} other{# ошибки}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} из {totalCount} завершены
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 = Загрузки