@box/uploads-manager 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/LICENSE +379 -0
  2. package/README.md +167 -0
  3. package/dist/chunks/uploads-header.js +149 -0
  4. package/dist/chunks/uploads-item-list.js +41 -0
  5. package/dist/chunks/uploads-item.module.js +10 -0
  6. package/dist/chunks/uploads-manager.js +52 -0
  7. package/dist/esm/index.js +5 -0
  8. package/dist/esm/lib/uploads-header/index.js +2 -0
  9. package/dist/esm/lib/uploads-header/uploads-header.js +2 -0
  10. package/dist/esm/lib/uploads-header/uploads-header.messages.js +68 -0
  11. package/dist/esm/lib/uploads-item/components/action-buttons.js +57 -0
  12. package/dist/esm/lib/uploads-item/components/index.js +4 -0
  13. package/dist/esm/lib/uploads-item/components/item-row-icon.js +24 -0
  14. package/dist/esm/lib/uploads-item/components/status-line.js +64 -0
  15. package/dist/esm/lib/uploads-item/index.js +2 -0
  16. package/dist/esm/lib/uploads-item/uploads-item.js +32 -0
  17. package/dist/esm/lib/uploads-item/uploads-item.messages.js +72 -0
  18. package/dist/esm/lib/uploads-item-list/index.js +2 -0
  19. package/dist/esm/lib/uploads-item-list/uploads-item-list.js +2 -0
  20. package/dist/esm/lib/uploads-item-list/uploads-item-list.messages.js +6 -0
  21. package/dist/esm/lib/uploads-manager.js +3 -0
  22. package/dist/esm/lib/utils/getProgress.js +9 -0
  23. package/dist/esm/lib/utils/getStatus.js +11 -0
  24. package/dist/i18n/bn-IN.js +36 -0
  25. package/dist/i18n/bn-IN.properties +68 -0
  26. package/dist/i18n/da-DK.js +36 -0
  27. package/dist/i18n/da-DK.properties +68 -0
  28. package/dist/i18n/de-DE.js +36 -0
  29. package/dist/i18n/de-DE.properties +68 -0
  30. package/dist/i18n/en-AU.js +36 -0
  31. package/dist/i18n/en-AU.properties +68 -0
  32. package/dist/i18n/en-CA.js +36 -0
  33. package/dist/i18n/en-CA.properties +68 -0
  34. package/dist/i18n/en-GB.js +36 -0
  35. package/dist/i18n/en-GB.properties +68 -0
  36. package/dist/i18n/en-US.js +36 -0
  37. package/dist/i18n/en-US.properties +68 -0
  38. package/dist/i18n/en-x-pseudo.js +36 -0
  39. package/dist/i18n/en-x-pseudo.properties +68 -0
  40. package/dist/i18n/es-419.js +36 -0
  41. package/dist/i18n/es-419.properties +68 -0
  42. package/dist/i18n/es-ES.js +36 -0
  43. package/dist/i18n/es-ES.properties +68 -0
  44. package/dist/i18n/fi-FI.js +36 -0
  45. package/dist/i18n/fi-FI.properties +68 -0
  46. package/dist/i18n/fr-CA.js +36 -0
  47. package/dist/i18n/fr-CA.properties +68 -0
  48. package/dist/i18n/fr-FR.js +36 -0
  49. package/dist/i18n/fr-FR.properties +68 -0
  50. package/dist/i18n/hi-IN.js +36 -0
  51. package/dist/i18n/hi-IN.properties +68 -0
  52. package/dist/i18n/it-IT.js +36 -0
  53. package/dist/i18n/it-IT.properties +68 -0
  54. package/dist/i18n/ja-JP.js +36 -0
  55. package/dist/i18n/ja-JP.properties +68 -0
  56. package/dist/i18n/json/src/lib/uploads-header/uploads-header.messages.json +1 -0
  57. package/dist/i18n/json/src/lib/uploads-item/uploads-item.messages.json +1 -0
  58. package/dist/i18n/json/src/lib/uploads-item-list/uploads-item-list.messages.json +1 -0
  59. package/dist/i18n/ko-KR.js +36 -0
  60. package/dist/i18n/ko-KR.properties +68 -0
  61. package/dist/i18n/nb-NO.js +36 -0
  62. package/dist/i18n/nb-NO.properties +68 -0
  63. package/dist/i18n/nl-NL.js +36 -0
  64. package/dist/i18n/nl-NL.properties +68 -0
  65. package/dist/i18n/pl-PL.js +36 -0
  66. package/dist/i18n/pl-PL.properties +68 -0
  67. package/dist/i18n/pt-BR.js +36 -0
  68. package/dist/i18n/pt-BR.properties +68 -0
  69. package/dist/i18n/ru-RU.js +36 -0
  70. package/dist/i18n/ru-RU.properties +68 -0
  71. package/dist/i18n/sv-SE.js +36 -0
  72. package/dist/i18n/sv-SE.properties +68 -0
  73. package/dist/i18n/tr-TR.js +36 -0
  74. package/dist/i18n/tr-TR.properties +68 -0
  75. package/dist/i18n/zh-CN.js +36 -0
  76. package/dist/i18n/zh-CN.properties +68 -0
  77. package/dist/i18n/zh-TW.js +36 -0
  78. package/dist/i18n/zh-TW.properties +68 -0
  79. package/dist/styles/uploads-header.css +1 -0
  80. package/dist/styles/uploads-item-list.css +1 -0
  81. package/dist/styles/uploads-item.css +1 -0
  82. package/dist/styles/uploads-manager.css +1 -0
  83. package/dist/types/index.d.ts +4 -0
  84. package/dist/types/lib/stories/decorators.d.ts +2 -0
  85. package/dist/types/lib/stories/mocks.d.ts +2 -0
  86. package/dist/types/lib/types.d.ts +141 -0
  87. package/dist/types/lib/uploads-header/index.d.ts +2 -0
  88. package/dist/types/lib/uploads-header/uploads-header.d.ts +19 -0
  89. package/dist/types/lib/uploads-header/uploads-header.messages.d.ts +83 -0
  90. package/dist/types/lib/uploads-item/components/action-buttons.d.ts +5 -0
  91. package/dist/types/lib/uploads-item/components/index.d.ts +3 -0
  92. package/dist/types/lib/uploads-item/components/item-row-icon.d.ts +4 -0
  93. package/dist/types/lib/uploads-item/components/status-line.d.ts +4 -0
  94. package/dist/types/lib/uploads-item/index.d.ts +1 -0
  95. package/dist/types/lib/uploads-item/uploads-item.d.ts +6 -0
  96. package/dist/types/lib/uploads-item/uploads-item.messages.d.ts +88 -0
  97. package/dist/types/lib/uploads-item-list/index.d.ts +1 -0
  98. package/dist/types/lib/uploads-item-list/uploads-item-list.d.ts +6 -0
  99. package/dist/types/lib/uploads-item-list/uploads-item-list.messages.d.ts +8 -0
  100. package/dist/types/lib/uploads-manager.d.ts +3 -0
  101. package/dist/types/lib/utils/getProgress.d.ts +2 -0
  102. package/dist/types/lib/utils/getStatus.d.ts +2 -0
  103. package/package.json +51 -0
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Tout annuler",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Progression du chargement",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Tout réessayer",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Chargement annulé",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Chargement complet",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Erreur de chargement",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Chargement en attente",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Erreur} many{# Erreurs} other{# Erreurs}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} de {totalCount} complet",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Chargements annulés",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Chargements terminés",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Glisser–déposer des fichiers",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Échec des chargements",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Chargement",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Réduire le panneau des téléchargements",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Développer le panneau des chargements",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Annuler",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Annuler le chargement pour {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Ouvrir",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Ouvrir {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Supprimer",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Supprimer {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Réessayer",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Réessayer de charger pour {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Partager",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Partager {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Chargement de {name}, {progress} % terminé",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Annulé",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Terminé",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Terminé · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Erreur : {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Chargement · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Chargements"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Tout annuler
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Progression du chargement
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Tout réessayer
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Chargement annulé
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Chargement complet
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Erreur de chargement
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Chargement en attente
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Erreur} many{# Erreurs} other{# Erreurs}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} de {totalCount} complet
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Chargements annulés
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Chargements terminés
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Glisser–déposer des fichiers
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Échec des chargements
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Chargement
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Réduire le panneau des téléchargements
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Développer le panneau des chargements
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Annuler
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Annuler le chargement pour {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Ouvrir
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Ouvrir {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Supprimer
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Supprimer {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Réessayer
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Réessayer de charger pour {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Partager
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Partager {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Chargement de {name}, {progress} % terminé
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Annulé
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Terminé
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Terminé · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Erreur : {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Chargement · {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 = Chargements
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Tout annuler",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Progression du chargement",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Tout réessayer",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Chargement annulé",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Chargement complet",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Erreur de chargement",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Chargement en attente",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# Erreur} many{# Erreurs} other{# Erreurs}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{completedCount} de {totalCount} complet",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Chargements annulés",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Chargements terminés",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Glisser–déposer des fichiers",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Échec des chargements",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Chargement",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Réduire le panneau des téléchargements",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Développer le panneau des chargements",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Annuler",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Annuler le chargement pour {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Ouvrir",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Ouvrir {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Supprimer",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Supprimer {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Réessayer",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Réessayer de charger pour {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Partager",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Partager {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Chargement de {name}, {progress} % terminé",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Annulé",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Terminé",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Terminé · Version {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Erreur : {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Chargement · {progress} %",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Version {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Chargements"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Tout annuler
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Progression du chargement
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Tout réessayer
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Chargement annulé
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Chargement complet
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Erreur de chargement
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Chargement en attente
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# Erreur} many{# Erreurs} other{# Erreurs}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {completedCount} de {totalCount} complet
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Chargements annulés
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Chargements terminés
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Glisser–déposer des fichiers
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Échec des chargements
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Chargement
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Réduire le panneau des téléchargements
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Développer le panneau des chargements
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Annuler
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Annuler le chargement pour {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Ouvrir
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Ouvrir {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Supprimer
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Supprimer {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Réessayer
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Réessayer de charger pour {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Partager
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Partager {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Chargement de {name}, {progress} % terminé
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Annulé
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Terminé
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Terminé · Version {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Erreur : {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Chargement · {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 = Chargements
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "सबको रद्द करें",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "अपलोड प्रगति",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "सबको फिर से करके देखें",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "अपलोड रद्द हो गया",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "अपलोड पूरा हो गया",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "अपलोड त्रुटि",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "अपलोड लंबित है",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# त्रुटि} other{# त्रुटियाँ}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{totalCount} में से {completedCount} पूरा हो गया",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "अपलोड्स रद्द हो गए",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "अपलोड्स पूरे हो गए",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "फ़ाइलों को ड्रैग ऐंड ड्रॉप करें",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "अपलोड्स विफल रहे",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "अपलोड हो रहा है",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "अपलोड्स पैनल को बंद करें",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "अपलोड्स पैनल का विस्तार करें",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "रद्द करें",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "{name} के लिए अपलोड रद्द करें",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "खोलें",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "{name} खोलें",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "हटाएं",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "{name} हटाएं",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "पुनः प्रयास करें",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "{name} के लिए अपलोड करने का फिर से प्रयास करें",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "शेयर करें",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "{name} शेयर करें",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "{name} अपलोड हो रहा है, {progress}% पूरा हो गया",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "रद्द हो गया",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "पूरा हो गया",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "पूरा हो गया · वर्ज़न {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "त्रुटि: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "अपलोड हो रहा है · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· वर्ज़न {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "अपलोड्स"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = सबको रद्द करें
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = अपलोड प्रगति
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = सबको फिर से करके देखें
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = अपलोड रद्द हो गया
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = अपलोड पूरा हो गया
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = अपलोड त्रुटि
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = अपलोड लंबित है
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# त्रुटि} other{# त्रुटियाँ}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = {totalCount} में से {completedCount} पूरा हो गया
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = अपलोड्स रद्द हो गए
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = अपलोड्स पूरे हो गए
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = फ़ाइलों को ड्रैग ऐंड ड्रॉप करें
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = अपलोड्स विफल रहे
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = अपलोड हो रहा है
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = अपलोड्स पैनल को बंद करें
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = अपलोड्स पैनल का विस्तार करें
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = रद्द करें
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = {name} के लिए अपलोड रद्द करें
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = खोलें
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = {name} खोलें
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = हटाएं
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = {name} हटाएं
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = पुनः प्रयास करें
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = {name} के लिए अपलोड करने का फिर से प्रयास करें
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = शेयर करें
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = {name} शेयर करें
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = {name} अपलोड हो रहा है, {progress}% पूरा हो गया
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = रद्द हो गया
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = पूरा हो गया
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = पूरा हो गया · वर्ज़न {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = त्रुटि: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = अपलोड हो रहा है · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · वर्ज़न {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = अपलोड्स
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "Annulla tutto",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "Avanzamento dell’upload",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "Riprova tutti",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "Upload annullato",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "Upload completato",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "Errore di upload",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "Upload in sospeso",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{# errore} many{# errori} other{# errori}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "Completati: {completedCount} di {totalCount}",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "Upload annullati",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "Upload completati",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "Trascina i file",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "Upload non riusciti",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "Upload in corso",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "Comprimi il pannello degli upload",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "Espandi il pannello degli upload",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "Annulla",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "Annulla l’upload di {name}",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "Apri",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "Apri {name}",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "Rimuovi",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "Rimuovi {name}",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "Riprova",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "Riprova a eseguire l’upload di {name}",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "Condividi",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "Condividi {name}",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "Upload di {name} in corso, {progress}% completato",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "Annullato",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "Completato",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "Completato · Versione {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "Errore: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "Upload in corso · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· Versione {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "Upload"
36
+ }
@@ -0,0 +1,68 @@
1
+ # Button label to cancel all pending and in-progress uploads
2
+ groupSharedFeatures.uploadsManager.header.cancelAll = Annulla tutto
3
+ # Accessible label for the progress bar
4
+ groupSharedFeatures.uploadsManager.header.progressAriaLabel = Avanzamento dell’upload
5
+ # Button label to retry all failed uploads
6
+ groupSharedFeatures.uploadsManager.header.retryAll = Riprova tutti
7
+ # Accessible label for the status icon in canceled state
8
+ groupSharedFeatures.uploadsManager.header.statusIconCanceled = Upload annullato
9
+ # Accessible label for the status icon in success state
10
+ groupSharedFeatures.uploadsManager.header.statusIconComplete = Upload completato
11
+ # Accessible label for the status icon in error state
12
+ groupSharedFeatures.uploadsManager.header.statusIconError = Errore di upload
13
+ # Accessible label for the status icon in pending/uploading states
14
+ groupSharedFeatures.uploadsManager.header.statusIconPending = Upload in sospeso
15
+ # Header subtitle showing the number of failed uploads (states 5a, 5b)
16
+ groupSharedFeatures.uploadsManager.header.subtitleErrors = {failedCount,plural,one{# errore} many{# errori} other{# errori}}
17
+ # Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)
18
+ groupSharedFeatures.uploadsManager.header.subtitleProgress = Completati: {completedCount} di {totalCount}
19
+ # Header title when uploads are canceled (state 6)
20
+ groupSharedFeatures.uploadsManager.header.titleCanceled = Upload annullati
21
+ # Header title when uploads have completed, with or without errors (states 4, 5a)
22
+ groupSharedFeatures.uploadsManager.header.titleComplete = Upload completati
23
+ # Header title when uploads manager is idle with no files (state 1)
24
+ groupSharedFeatures.uploadsManager.header.titleDragAndDrop = Trascina i file
25
+ # Header title when all uploads have failed with no completions (state 5b)
26
+ groupSharedFeatures.uploadsManager.header.titleErrorAllFailed = Upload non riusciti
27
+ # Header title while uploads are queued or in progress (states 2, 3)
28
+ groupSharedFeatures.uploadsManager.header.titleUploading = Upload in corso
29
+ # Aria label for chevron button when the panel is expanded
30
+ groupSharedFeatures.uploadsManager.header.toggleCollapse = Comprimi il pannello degli upload
31
+ # Aria label for chevron button when the panel is collapsed
32
+ groupSharedFeatures.uploadsManager.header.toggleExpand = Espandi il pannello degli upload
33
+ # Label for the cancel action button on an uploading item
34
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancel = Annulla
35
+ # Accessible label for the cancel icon button, includes the file name
36
+ groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel = Annulla l’upload di {name}
37
+ # Label for the open action button on a completed item
38
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpen = Apri
39
+ # Accessible label for the open icon button, includes the file name
40
+ groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel = Apri {name}
41
+ # Label for the remove action button on a completed/errored/canceled item
42
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemove = Rimuovi
43
+ # Accessible label for the remove icon button, includes the file name
44
+ groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel = Rimuovi {name}
45
+ # Label for the retry action button on a failed or canceled item
46
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetry = Riprova
47
+ # Accessible label for the retry icon button, includes the file name
48
+ groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel = Riprova a eseguire l’upload di {name}
49
+ # Label for the share action button on a completed item
50
+ groupSharedFeatures.uploadsManager.itemList.itemActionShare = Condividi
51
+ # Accessible label for the share icon button, includes the file name
52
+ groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel = Condividi {name}
53
+ # Accessible label for the circular progress indicator on each uploading row
54
+ groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel = Upload di {name} in corso, {progress}% completato
55
+ # Status text shown beneath file name when upload is canceled
56
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled = Annullato
57
+ # Status text shown beneath file name when upload completes
58
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted = Completato
59
+ # Status text shown when upload completes as a new file version
60
+ groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion = Completato · Versione {versionNumber}
61
+ # Status text shown beneath file name when upload fails
62
+ groupSharedFeatures.uploadsManager.itemList.itemStatusError = Errore: {errorMessage}
63
+ # Status text shown beneath file name during upload
64
+ groupSharedFeatures.uploadsManager.itemList.itemStatusUploading = Upload in corso · {progress}%
65
+ # Gray version suffix appended after the green "Completed" text
66
+ groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix = · Versione {versionNumber}
67
+ # Accessible label for the uploads item list
68
+ groupSharedFeatures.uploadsManager.itemList.listAriaLabel = Upload
@@ -0,0 +1,36 @@
1
+ export default {
2
+ "groupSharedFeatures.uploadsManager.header.cancelAll": "すべてキャンセル",
3
+ "groupSharedFeatures.uploadsManager.header.progressAriaLabel": "アップロードの進捗状況",
4
+ "groupSharedFeatures.uploadsManager.header.retryAll": "すべて再試行",
5
+ "groupSharedFeatures.uploadsManager.header.statusIconCanceled": "アップロードがキャンセルされました",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "アップロード完了",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "アップロードエラー",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "アップロードを保留中",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{#個のエラー} other{#個のエラー}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{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": "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 = すべてキャンセル
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 = {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 = 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 @@
1
+ [{"id":"groupSharedFeatures.uploadsManager.header.titleDragAndDrop","description":"Header title when uploads manager is idle with no files (state 1)","defaultMessage":"Drag and drop files"},{"id":"groupSharedFeatures.uploadsManager.header.titleUploading","description":"Header title while uploads are queued or in progress (states 2, 3)","defaultMessage":"Uploading"},{"id":"groupSharedFeatures.uploadsManager.header.titleComplete","description":"Header title when uploads have completed, with or without errors (states 4, 5a)","defaultMessage":"Uploads Complete"},{"id":"groupSharedFeatures.uploadsManager.header.titleCanceled","description":"Header title when uploads are canceled (state 6)","defaultMessage":"Uploads Canceled"},{"id":"groupSharedFeatures.uploadsManager.header.titleErrorAllFailed","description":"Header title when all uploads have failed with no completions (state 5b)","defaultMessage":"Uploads Failed"},{"id":"groupSharedFeatures.uploadsManager.header.subtitleProgress","description":"Header subtitle showing how many uploads have completed out of total (states 2, 3, 4)","defaultMessage":"{completedCount} of {totalCount} complete"},{"id":"groupSharedFeatures.uploadsManager.header.subtitleErrors","description":"Header subtitle showing the number of failed uploads (states 5a, 5b)","defaultMessage":"{failedCount, plural, one {# Error} other {# Errors}}"},{"id":"groupSharedFeatures.uploadsManager.header.cancelAll","description":"Button label to cancel all pending and in-progress uploads","defaultMessage":"Cancel All"},{"id":"groupSharedFeatures.uploadsManager.header.retryAll","description":"Button label to retry all failed uploads","defaultMessage":"Retry All"},{"id":"groupSharedFeatures.uploadsManager.header.toggleExpand","description":"Aria label for chevron button when the panel is collapsed","defaultMessage":"Expand uploads panel"},{"id":"groupSharedFeatures.uploadsManager.header.toggleCollapse","description":"Aria label for chevron button when the panel is expanded","defaultMessage":"Collapse uploads panel"},{"id":"groupSharedFeatures.uploadsManager.header.progressAriaLabel","description":"Accessible label for the progress bar","defaultMessage":"Upload progress"},{"id":"groupSharedFeatures.uploadsManager.header.statusIconPending","description":"Accessible label for the status icon in pending/uploading states","defaultMessage":"Pending upload"},{"id":"groupSharedFeatures.uploadsManager.header.statusIconComplete","description":"Accessible label for the status icon in success state","defaultMessage":"Upload complete"},{"id":"groupSharedFeatures.uploadsManager.header.statusIconError","description":"Accessible label for the status icon in error state","defaultMessage":"Upload error"},{"id":"groupSharedFeatures.uploadsManager.header.statusIconCanceled","description":"Accessible label for the status icon in canceled state","defaultMessage":"Upload canceled"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusUploading","description":"Status text shown beneath file name during upload","defaultMessage":"Uploading · {progress}%"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted","description":"Status text shown beneath file name when upload completes","defaultMessage":"Completed"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion","description":"Status text shown when upload completes as a new file version","defaultMessage":"Completed · Version {versionNumber}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix","description":"Gray version suffix appended after the green \"Completed\" text","defaultMessage":"· Version {versionNumber}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled","description":"Status text shown beneath file name when upload is canceled","defaultMessage":"Canceled"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemStatusError","description":"Status text shown beneath file name when upload fails","defaultMessage":"Error: {errorMessage}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel","description":"Accessible label for the circular progress indicator on each uploading row","defaultMessage":"Uploading {name}, {progress}% complete"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionCancel","description":"Label for the cancel action button on an uploading item","defaultMessage":"Cancel"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel","description":"Accessible label for the cancel icon button, includes the file name","defaultMessage":"Cancel upload for {name}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionRetry","description":"Label for the retry action button on a failed or canceled item","defaultMessage":"Retry"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel","description":"Accessible label for the retry icon button, includes the file name","defaultMessage":"Retry upload for {name}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionRemove","description":"Label for the remove action button on a completed/errored/canceled item","defaultMessage":"Remove"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel","description":"Accessible label for the remove icon button, includes the file name","defaultMessage":"Remove {name}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionOpen","description":"Label for the open action button on a completed item","defaultMessage":"Open"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel","description":"Accessible label for the open icon button, includes the file name","defaultMessage":"Open {name}"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionShare","description":"Label for the share action button on a completed item","defaultMessage":"Share"},{"id":"groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel","description":"Accessible label for the share icon button, includes the file name","defaultMessage":"Share {name}"}]
@@ -0,0 +1 @@
1
+ [{"id":"groupSharedFeatures.uploadsManager.itemList.listAriaLabel","description":"Accessible label for the uploads item list","defaultMessage":"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": "업로드 취소됨",
6
+ "groupSharedFeatures.uploadsManager.header.statusIconComplete": "업로드 완료",
7
+ "groupSharedFeatures.uploadsManager.header.statusIconError": "업로드 오류",
8
+ "groupSharedFeatures.uploadsManager.header.statusIconPending": "업로드 대기 중",
9
+ "groupSharedFeatures.uploadsManager.header.subtitleErrors": "{failedCount,plural,one{#개의 오류} other{#개의 오류}}",
10
+ "groupSharedFeatures.uploadsManager.header.subtitleProgress": "{totalCount}개 중 {completedCount}개 완료",
11
+ "groupSharedFeatures.uploadsManager.header.titleCanceled": "업로드 취소됨",
12
+ "groupSharedFeatures.uploadsManager.header.titleComplete": "업로드 완료",
13
+ "groupSharedFeatures.uploadsManager.header.titleDragAndDrop": "파일 끌어다 놓기",
14
+ "groupSharedFeatures.uploadsManager.header.titleErrorAllFailed": "업로드 실패",
15
+ "groupSharedFeatures.uploadsManager.header.titleUploading": "업로드 중",
16
+ "groupSharedFeatures.uploadsManager.header.toggleCollapse": "업로드 패널 접기",
17
+ "groupSharedFeatures.uploadsManager.header.toggleExpand": "업로드 패널 펼치기",
18
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancel": "취소",
19
+ "groupSharedFeatures.uploadsManager.itemList.itemActionCancelAriaLabel": "{name} 업로드 취소",
20
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpen": "열기",
21
+ "groupSharedFeatures.uploadsManager.itemList.itemActionOpenAriaLabel": "{name} 열기",
22
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemove": "제거",
23
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRemoveAriaLabel": "{name} 제거",
24
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetry": "다시 시도",
25
+ "groupSharedFeatures.uploadsManager.itemList.itemActionRetryAriaLabel": "{name} 업로드 다시 시도",
26
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShare": "공유",
27
+ "groupSharedFeatures.uploadsManager.itemList.itemActionShareAriaLabel": "{name} 공유",
28
+ "groupSharedFeatures.uploadsManager.itemList.itemProgressAriaLabel": "{name} 업로드 중, {progress}% 완료",
29
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCanceled": "취소됨",
30
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompleted": "완료됨",
31
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusCompletedWithVersion": "완료됨 · 버전 {versionNumber}",
32
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusError": "오류: {errorMessage}",
33
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusUploading": "업로드 중 · {progress}%",
34
+ "groupSharedFeatures.uploadsManager.itemList.itemStatusVersionSuffix": "· 버전 {versionNumber}",
35
+ "groupSharedFeatures.uploadsManager.itemList.listAriaLabel": "업로드"
36
+ }