box-ui-elements 23.4.0-beta.35 → 23.4.0-beta.36

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 (62) hide show
  1. package/dist/explorer.css +1 -1
  2. package/dist/explorer.js +1 -1
  3. package/dist/openwith.js +1 -1
  4. package/dist/picker.css +1 -1
  5. package/dist/picker.js +1 -1
  6. package/dist/preview.js +1 -1
  7. package/dist/sharing.js +1 -1
  8. package/dist/sidebar.js +1 -1
  9. package/dist/uploader.js +1 -1
  10. package/es/api/APIFactory.js +4 -2
  11. package/es/api/APIFactory.js.flow +4 -2
  12. package/es/api/APIFactory.js.map +1 -1
  13. package/es/elements/common/messages.js +8 -0
  14. package/es/elements/common/messages.js.flow +16 -0
  15. package/es/elements/common/messages.js.map +1 -1
  16. package/es/elements/common/sub-header/SubHeader.js +14 -1
  17. package/es/elements/common/sub-header/SubHeader.js.map +1 -1
  18. package/es/elements/common/sub-header/SubHeaderLeftV2.js +63 -0
  19. package/es/elements/common/sub-header/SubHeaderLeftV2.js.map +1 -0
  20. package/es/elements/common/sub-header/SubHeaderLeftV2.scss +3 -0
  21. package/es/elements/content-explorer/ContentExplorer.js +60 -3
  22. package/es/elements/content-explorer/ContentExplorer.js.map +1 -1
  23. package/es/src/elements/common/sub-header/SubHeader.d.ts +5 -1
  24. package/es/src/elements/common/sub-header/SubHeaderLeftV2.d.ts +13 -0
  25. package/es/src/elements/common/sub-header/__tests__/SubHeaderLeftV2.test.d.ts +1 -0
  26. package/es/src/elements/content-explorer/ContentExplorer.d.ts +12 -0
  27. package/i18n/bn-IN.js +2 -0
  28. package/i18n/da-DK.js +2 -0
  29. package/i18n/de-DE.js +2 -0
  30. package/i18n/en-AU.js +2 -0
  31. package/i18n/en-CA.js +2 -0
  32. package/i18n/en-GB.js +2 -0
  33. package/i18n/en-US.js +2 -0
  34. package/i18n/en-US.properties +4 -0
  35. package/i18n/en-x-pseudo.js +2 -0
  36. package/i18n/es-419.js +2 -0
  37. package/i18n/es-ES.js +2 -0
  38. package/i18n/fi-FI.js +2 -0
  39. package/i18n/fr-CA.js +2 -0
  40. package/i18n/fr-FR.js +2 -0
  41. package/i18n/hi-IN.js +2 -0
  42. package/i18n/it-IT.js +2 -0
  43. package/i18n/ja-JP.js +6 -4
  44. package/i18n/ja-JP.properties +4 -4
  45. package/i18n/ko-KR.js +2 -0
  46. package/i18n/nb-NO.js +2 -0
  47. package/i18n/nl-NL.js +2 -0
  48. package/i18n/pl-PL.js +2 -0
  49. package/i18n/pt-BR.js +2 -0
  50. package/i18n/ru-RU.js +2 -0
  51. package/i18n/sv-SE.js +2 -0
  52. package/i18n/tr-TR.js +2 -0
  53. package/i18n/zh-CN.js +2 -0
  54. package/i18n/zh-TW.js +2 -0
  55. package/package.json +1 -1
  56. package/src/api/APIFactory.js +4 -2
  57. package/src/elements/common/messages.js +16 -0
  58. package/src/elements/common/sub-header/SubHeader.tsx +24 -1
  59. package/src/elements/common/sub-header/SubHeaderLeftV2.scss +3 -0
  60. package/src/elements/common/sub-header/SubHeaderLeftV2.tsx +73 -0
  61. package/src/elements/common/sub-header/__tests__/SubHeaderLeftV2.test.tsx +109 -0
  62. package/src/elements/content-explorer/ContentExplorer.tsx +57 -2
@@ -405,8 +405,10 @@ class APIFactory {
405
405
  *
406
406
  * @return {FolderAPI} FolderAPI instance
407
407
  */
408
- getFolderAPI() {
409
- this.destroy();
408
+ getFolderAPI(shouldDestroy = true) {
409
+ if (shouldDestroy) {
410
+ this.destroy();
411
+ }
410
412
  this.folderAPI = new FolderAPI(this.options);
411
413
  return this.folderAPI;
412
414
  }
@@ -470,8 +470,10 @@ class APIFactory {
470
470
  *
471
471
  * @return {FolderAPI} FolderAPI instance
472
472
  */
473
- getFolderAPI(): FolderAPI {
474
- this.destroy();
473
+ getFolderAPI(shouldDestroy: boolean = true): FolderAPI {
474
+ if (shouldDestroy) {
475
+ this.destroy();
476
+ }
475
477
  this.folderAPI = new FolderAPI(this.options);
476
478
  return this.folderAPI;
477
479
  }
@@ -1 +1 @@
1
- {"version":3,"file":"APIFactory.js","names":["Cache","ChunkedUploadAPI","PlainUploadAPI","FolderAPI","FileAPI","WebLinkAPI","SearchAPI","RecentsAPI","VersionsAPI","CommentsAPI","TasksNewAPI","TaskCollaboratorsAPI","TaskLinksAPI","ThreadedCommentsAPI","FileAccessStatsAPI","FileActivitiesAPI","MarkerBasedGroupsAPI","MarkerBasedUsersAPI","GroupsAPI","UsersAPI","MetadataAPI","FileCollaboratorsAPI","FileCollaborationsAPI","FolderCollaborationsAPI","CollaborationsAPI","FeedAPI","AppIntegrationsAPI","AnnotationsAPI","OpenWithAPI","MetadataQueryAPI","BoxEditAPI","IntelligenceAPI","DEFAULT_HOSTNAME_API","DEFAULT_HOSTNAME_UPLOAD","TYPE_FOLDER","TYPE_FILE","TYPE_WEBLINK","APIFactory","constructor","options","_objectSpread","apiHost","uploadHost","cache","language","destroy","destroyCache","fileAPI","weblinkAPI","plainUploadAPI","chunkedUploadAPI","folderAPI","searchAPI","recentsAPI","versionsAPI","fileAccessStatsAPI","fileActivitiesAPI","tasksNewAPI","taskCollaboratorsAPI","taskLinksAPI","commentsAPI","threadedCommentsAPI","markerBasedGroupsAPI","markerBasedUsersAPI","groupsAPI","usersAPI","metadataAPI","fileCollaboratorsAPI","fileCollaborationsAPI","folderCollaborationsAPI","collaborationsAPI","appIntegrationsAPI","metadataQueryAPI","openWithAPI","annotationsAPI","intelligenceAPI","getCache","getAPI","type","api","getFolderAPI","getFileAPI","getWebLinkAPI","Error","shouldDestroy","getPlainUploadAPI","getChunkedUploadAPI","getSearchAPI","getRecentsAPI","getMetadataAPI","getVersionsAPI","getCommentsAPI","getThreadedCommentsAPI","getTasksNewAPI","getTaskCollaboratorsAPI","getTaskLinksAPI","getFileAccessStatsAPI","getFileActivitiesAPI","getFileCollaboratorsAPI","getFileCollaborationsAPI","getFolderCollaborationsAPI","getCollaborationsAPI","getMarkerBasedGroupsAPI","getMarkerBasedUsersAPI","getGroupsAPI","getUsersAPI","getFeedAPI","feedItemsAPI","getOpenWithAPI","getAppIntegrationsAPI","getMetadataQueryAPI","getBoxEditAPI","boxEditAPI","getAnnotationsAPI","getIntelligenceAPI"],"sources":["../../src/api/APIFactory.js"],"sourcesContent":["/**\n * @flow\n * @file Main entry point for the box api\n * @author Box\n */\n\nimport Cache from '../utils/Cache';\nimport ChunkedUploadAPI from './uploads/MultiputUpload';\nimport PlainUploadAPI from './uploads/PlainUpload';\nimport FolderAPI from './Folder';\nimport FileAPI from './File';\nimport WebLinkAPI from './WebLink';\nimport SearchAPI from './Search';\nimport RecentsAPI from './Recents';\nimport VersionsAPI from './Versions';\nimport CommentsAPI from './Comments';\nimport TasksNewAPI from './tasks/TasksNew';\nimport TaskCollaboratorsAPI from './tasks/TaskCollaborators';\nimport TaskLinksAPI from './tasks/TaskLinks';\nimport ThreadedCommentsAPI from './ThreadedComments';\nimport FileAccessStatsAPI from './FileAccessStats';\nimport FileActivitiesAPI from './FileActivities';\nimport MarkerBasedGroupsAPI from './MarkerBasedGroups';\nimport MarkerBasedUsersAPI from './MarkerBasedUsers';\nimport GroupsAPI from './Groups';\nimport UsersAPI from './Users';\nimport MetadataAPI from './Metadata';\nimport FileCollaboratorsAPI from './FileCollaborators';\nimport FileCollaborationsAPI from './FileCollaborations';\nimport FolderCollaborationsAPI from './FolderCollaborations';\nimport CollaborationsAPI from './Collaborations';\nimport FeedAPI from './Feed';\nimport AppIntegrationsAPI from './AppIntegrations';\nimport AnnotationsAPI from './Annotations';\nimport OpenWithAPI from './OpenWith';\nimport MetadataQueryAPI from './MetadataQuery';\nimport BoxEditAPI from './box-edit';\nimport IntelligenceAPI from './Intelligence';\nimport { DEFAULT_HOSTNAME_API, DEFAULT_HOSTNAME_UPLOAD, TYPE_FOLDER, TYPE_FILE, TYPE_WEBLINK } from '../constants';\nimport type { ItemType } from '../common/types/core';\nimport type { APIOptions } from '../common/types/api';\nimport type APICache from '../utils/Cache';\n\ntype ItemAPI = FolderAPI | FileAPI | WebLinkAPI;\n\nclass APIFactory {\n /**\n * @property {*}\n */\n options: APIOptions;\n\n /**\n * @property {FileAPI}\n */\n fileAPI: FileAPI;\n\n /**\n * @property {WebLink}\n */\n weblinkAPI: WebLinkAPI;\n\n /**\n * @property {FolderAPI}\n */\n folderAPI: FolderAPI;\n\n /**\n * @property {PlainUploadAPI}\n */\n plainUploadAPI: PlainUploadAPI;\n\n /**\n * @property {ChunkedUploadAPI}\n */\n chunkedUploadAPI: ChunkedUploadAPI;\n\n /**\n * @property {SearchAPI}\n */\n searchAPI: SearchAPI;\n\n /**\n * @property {RecentsAPI}\n */\n recentsAPI: RecentsAPI;\n\n /**\n * @property {VersionsAPI}\n */\n versionsAPI: VersionsAPI;\n\n /**\n * @property {CommentsAPI}\n */\n commentsAPI: CommentsAPI;\n\n /**\n * @property {ThreadedCommentsAPI}\n */\n threadedCommentsAPI: ThreadedCommentsAPI;\n\n /**\n * @property {TasksNewAPI}\n */\n tasksNewAPI: TasksNewAPI;\n\n /**\n * @property {TaskCollaboratorsAPI}\n */\n taskCollaboratorsAPI: TaskCollaboratorsAPI;\n\n /**\n * @property {TaskLinksAPI}\n */\n taskLinksAPI: TaskLinksAPI;\n\n /*\n * @property {FileAccessStatsAPI}\n */\n fileAccessStatsAPI: FileAccessStatsAPI;\n\n /*\n * @property {FileActivitiesAPI}\n */\n fileActivitiesAPI: FileActivitiesAPI;\n\n /*\n * @property {MarkerBasedGroupsAPI}\n */\n markerBasedGroupsAPI: MarkerBasedGroupsAPI;\n\n /*\n * @property {MarkerBasedUsersAPI}\n */\n markerBasedUsersAPI: MarkerBasedUsersAPI;\n\n /**\n * @property {GroupsAPI}\n */\n groupsAPI: GroupsAPI;\n\n /*\n * @property {UsersAPI}\n */\n usersAPI: UsersAPI;\n\n /*\n * @property {MetadataAPI}\n */\n metadataAPI: MetadataAPI;\n\n /**\n * @property {FileCollaboratorsAPI}\n */\n fileCollaboratorsAPI: FileCollaboratorsAPI;\n\n /**\n * @property {FileCollaborationsAPI}\n */\n fileCollaborationsAPI: FileCollaborationsAPI;\n\n /**\n * @property {FolderCollaborationsAPI}\n */\n folderCollaborationsAPI: FolderCollaborationsAPI;\n\n /**\n * @property {CollaborationsAPI}\n */\n collaborationsAPI: CollaborationsAPI;\n\n /**\n * @property {FeedAPI}\n */\n feedItemsAPI: FeedAPI;\n\n /**\n * @property {OpenWithAPI}\n */\n openWithAPI: OpenWithAPI;\n\n /**\n * @property {AppIntegrationsAPI}\n */\n appIntegrationsAPI: AppIntegrationsAPI;\n\n /**\n * @property {MetadataQueryAPI}\n */\n metadataQueryAPI: MetadataQueryAPI;\n\n /** @property {BoxEditAPI}\n *\n */\n boxEditAPI: BoxEditAPI;\n\n /**\n * @property {AnnotationsAPI}\n */\n annotationsAPI: AnnotationsAPI;\n\n /**\n * @property {IntelligenceAPI}\n */\n intelligenceAPI: IntelligenceAPI;\n\n /**\n * [constructor]\n *\n * @param {Object} options\n * @param {string} options.id - item id\n * @param {string|function} options.token - Auth token\n * @param {string} [options.sharedLink] - Shared link\n * @param {string} [options.sharedLinkPassword] - Shared link password\n * @param {string} [options.apiHost] - Api host\n * @param {string} [options.uploadHost] - Upload host name\n * @return {API} Api instance\n */\n constructor(options: APIOptions) {\n this.options = {\n ...options,\n apiHost: options.apiHost || DEFAULT_HOSTNAME_API,\n uploadHost: options.uploadHost || DEFAULT_HOSTNAME_UPLOAD,\n cache: options.cache || new Cache(),\n language: options.language,\n };\n }\n\n /**\n * [destructor]\n *\n * @param {boolean} destroyCache - true to destroy cache\n * @return {void}\n */\n destroy(destroyCache: boolean = false) {\n if (this.fileAPI) {\n this.fileAPI.destroy();\n delete this.fileAPI;\n }\n\n if (this.weblinkAPI) {\n this.weblinkAPI.destroy();\n delete this.weblinkAPI;\n }\n\n if (this.plainUploadAPI) {\n this.plainUploadAPI.destroy();\n delete this.plainUploadAPI;\n }\n\n if (this.chunkedUploadAPI) {\n this.chunkedUploadAPI.destroy();\n delete this.chunkedUploadAPI;\n }\n\n if (this.folderAPI) {\n this.folderAPI.destroy();\n delete this.folderAPI;\n }\n\n if (this.searchAPI) {\n this.searchAPI.destroy();\n delete this.searchAPI;\n }\n\n if (this.recentsAPI) {\n this.recentsAPI.destroy();\n delete this.recentsAPI;\n }\n\n if (this.versionsAPI) {\n this.versionsAPI.destroy();\n delete this.versionsAPI;\n }\n\n if (this.fileAccessStatsAPI) {\n this.fileAccessStatsAPI.destroy();\n delete this.fileAccessStatsAPI;\n }\n\n if (this.fileActivitiesAPI) {\n this.fileActivitiesAPI.destroy();\n delete this.fileActivitiesAPI;\n }\n\n if (this.tasksNewAPI) {\n this.tasksNewAPI.destroy();\n delete this.tasksNewAPI;\n }\n\n if (this.taskCollaboratorsAPI) {\n this.taskCollaboratorsAPI.destroy();\n delete this.taskCollaboratorsAPI;\n }\n\n if (this.taskLinksAPI) {\n this.taskLinksAPI.destroy();\n delete this.taskLinksAPI;\n }\n\n if (this.commentsAPI) {\n this.commentsAPI.destroy();\n delete this.commentsAPI;\n }\n\n if (this.threadedCommentsAPI) {\n this.threadedCommentsAPI.destroy();\n delete this.threadedCommentsAPI;\n }\n\n if (this.markerBasedGroupsAPI) {\n this.markerBasedGroupsAPI.destroy();\n delete this.markerBasedGroupsAPI;\n }\n\n if (this.markerBasedUsersAPI) {\n this.markerBasedUsersAPI.destroy();\n delete this.markerBasedUsersAPI;\n }\n\n if (this.groupsAPI) {\n this.groupsAPI.destroy();\n delete this.groupsAPI;\n }\n\n if (this.usersAPI) {\n this.usersAPI.destroy();\n delete this.usersAPI;\n }\n\n if (this.metadataAPI) {\n this.metadataAPI.destroy();\n delete this.metadataAPI;\n }\n\n if (this.fileCollaboratorsAPI) {\n this.fileCollaboratorsAPI.destroy();\n delete this.fileCollaboratorsAPI;\n }\n\n if (this.fileCollaborationsAPI) {\n this.fileCollaborationsAPI.destroy();\n delete this.fileCollaborationsAPI;\n }\n\n if (this.folderCollaborationsAPI) {\n this.folderCollaborationsAPI.destroy();\n delete this.folderCollaborationsAPI;\n }\n\n if (this.collaborationsAPI) {\n this.collaborationsAPI.destroy();\n delete this.collaborationsAPI;\n }\n\n if (this.appIntegrationsAPI) {\n this.appIntegrationsAPI.destroy();\n delete this.appIntegrationsAPI;\n }\n\n if (this.metadataQueryAPI) {\n this.metadataQueryAPI.destroy();\n delete this.metadataQueryAPI;\n }\n\n if (this.openWithAPI) {\n this.openWithAPI.destroy();\n delete this.openWithAPI;\n }\n\n if (this.annotationsAPI) {\n this.annotationsAPI.destroy();\n delete this.annotationsAPI;\n }\n\n if (this.intelligenceAPI) {\n this.intelligenceAPI.destroy();\n delete this.intelligenceAPI;\n }\n\n if (destroyCache) {\n this.options.cache = new Cache();\n }\n }\n\n /**\n * Gets the cache instance\n *\n * @return {Cache} cache instance\n */\n getCache(): APICache {\n return ((this.options.cache: any): APICache);\n }\n\n /**\n * Returns the API based on type of item\n *\n * @private\n * @param {String} type - item type\n * @return {ItemAPI} api\n */\n getAPI(type: ItemType): ItemAPI {\n let api: ItemAPI;\n\n switch (type) {\n case TYPE_FOLDER:\n api = this.getFolderAPI();\n break;\n case TYPE_FILE:\n api = this.getFileAPI();\n break;\n case TYPE_WEBLINK:\n api = this.getWebLinkAPI();\n break;\n default:\n throw new Error('Unknown Type!');\n }\n\n return api;\n }\n\n /**\n * API for file\n *\n * @return {FileAPI} FileAPI instance\n */\n getFileAPI(shouldDestroy: boolean = true): FileAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n this.fileAPI = new FileAPI(this.options);\n return this.fileAPI;\n }\n\n /**\n * API for web links\n *\n * @return {WebLinkAPI} WebLinkAPI instance\n */\n getWebLinkAPI(): WebLinkAPI {\n this.destroy();\n this.weblinkAPI = new WebLinkAPI(this.options);\n return this.weblinkAPI;\n }\n\n /**\n * API for plain uploads\n *\n * @return {UploadAPI} UploadAPI instance\n */\n getPlainUploadAPI(): PlainUploadAPI {\n this.destroy();\n this.plainUploadAPI = new PlainUploadAPI(this.options);\n return this.plainUploadAPI;\n }\n\n /**\n * API for chunked uploads\n *\n * @return {UploadAPI} UploadAPI instance\n */\n getChunkedUploadAPI(): ChunkedUploadAPI {\n this.destroy();\n this.chunkedUploadAPI = new ChunkedUploadAPI(this.options);\n return this.chunkedUploadAPI;\n }\n\n /**\n * API for folder\n *\n * @return {FolderAPI} FolderAPI instance\n */\n getFolderAPI(): FolderAPI {\n this.destroy();\n this.folderAPI = new FolderAPI(this.options);\n return this.folderAPI;\n }\n\n /**\n * API for search\n *\n * @return {SearchAPI} SearchAPI instance\n */\n getSearchAPI(): SearchAPI {\n this.destroy();\n this.searchAPI = new SearchAPI(this.options);\n return this.searchAPI;\n }\n\n /**\n * API for recents\n *\n * @return {RecentsAPI} RecentsAPI instance\n */\n getRecentsAPI(): RecentsAPI {\n this.destroy();\n this.recentsAPI = new RecentsAPI(this.options);\n return this.recentsAPI;\n }\n\n /**\n * API for metadata\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MetadataAPI} MetadataAPI instance\n */\n getMetadataAPI(shouldDestroy: boolean): MetadataAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.metadataAPI = new MetadataAPI(this.options);\n return this.metadataAPI;\n }\n\n /**\n * API for versions\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {VersionsAPI} VersionsAPI instance\n */\n getVersionsAPI(shouldDestroy: boolean): VersionsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.versionsAPI = new VersionsAPI(this.options);\n return this.versionsAPI;\n }\n\n /**\n * API for comments\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {CommentsAPI} CommentsAPI instance\n */\n getCommentsAPI(shouldDestroy: boolean): CommentsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.commentsAPI = new CommentsAPI(this.options);\n return this.commentsAPI;\n }\n\n /**\n * API for threaded comments\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {ThreadedCommentsAPI} ThreadedCommentsAPI instance\n */\n getThreadedCommentsAPI(shouldDestroy: boolean): ThreadedCommentsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.threadedCommentsAPI = new ThreadedCommentsAPI(this.options);\n return this.threadedCommentsAPI;\n }\n\n /**\n * API for tasks\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TasksAPI} TaskAssignmentsAPI instance\n */\n getTasksNewAPI(shouldDestroy: boolean): TasksNewAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.tasksNewAPI = new TasksNewAPI(this.options);\n return this.tasksNewAPI;\n }\n\n /**\n * API for taskCollaborators\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TaskCollaboratorsAPI} TaskCollaboratorsAPI instance\n */\n getTaskCollaboratorsAPI(shouldDestroy: boolean): TaskCollaboratorsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.taskCollaboratorsAPI = new TaskCollaboratorsAPI(this.options);\n return this.taskCollaboratorsAPI;\n }\n\n /**\n * API for taskLinks\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TasksAPI} TaskLinksAPI instance\n */\n getTaskLinksAPI(shouldDestroy: boolean): TaskLinksAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.taskLinksAPI = new TaskLinksAPI(this.options);\n return this.taskLinksAPI;\n }\n\n /**\n * API for file access stats\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileAccessStatsAPI} FileAccessStatsAPI instance\n */\n getFileAccessStatsAPI(shouldDestroy: boolean): FileAccessStatsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileAccessStatsAPI = new FileAccessStatsAPI(this.options);\n return this.fileAccessStatsAPI;\n }\n\n /**\n * API for file access stats\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileActivitiesAPI} FileActivitiesAPI instance\n */\n getFileActivitiesAPI(shouldDestroy: boolean): FileActivitiesAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileActivitiesAPI = new FileActivitiesAPI(this.options);\n return this.fileActivitiesAPI;\n }\n\n /**\n * API for file collaborators\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileCollaboratorsAPI} FileCollaboratorsAPI instance\n */\n getFileCollaboratorsAPI(shouldDestroy: boolean): FileCollaboratorsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileCollaboratorsAPI = new FileCollaboratorsAPI(this.options);\n return this.fileCollaboratorsAPI;\n }\n\n /**\n * API for file collaborations\n *\n * This is different from the FileCollaboratorsAPI! See ./FileCollaborations for more information.\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileCollaborationsAPI} FileCollaborationsAPI instance\n */\n getFileCollaborationsAPI(shouldDestroy: boolean): FileCollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileCollaborationsAPI = new FileCollaborationsAPI(this.options);\n return this.fileCollaborationsAPI;\n }\n\n /**\n * API for folder collaborations\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FolderCollaborationsAPI} FolderCollaborationsAPI instance\n */\n getFolderCollaborationsAPI(shouldDestroy: boolean): FolderCollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.folderCollaborationsAPI = new FolderCollaborationsAPI(this.options);\n return this.folderCollaborationsAPI;\n }\n\n /**\n * API for collaborations\n *\n * This is different from the other collaboration/collaborator APIs!\n * See ./Collaborations for more information.\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {CollaborationsAPI} CollaborationsAPI instance\n */\n getCollaborationsAPI(shouldDestroy: boolean): CollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.collaborationsAPI = new CollaborationsAPI(this.options);\n return this.collaborationsAPI;\n }\n\n /**\n * API for Groups (marker-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MarkerBasedGroupsAPI} MarkerBasedGroupsAPI instance\n */\n getMarkerBasedGroupsAPI(shouldDestroy: boolean): MarkerBasedGroupsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.markerBasedGroupsAPI = new MarkerBasedGroupsAPI(this.options);\n return this.markerBasedGroupsAPI;\n }\n\n /**\n * API for Users (marker-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MarkerBasedUsersAPI} MarkerBasedUsersAPI instance\n */\n getMarkerBasedUsersAPI(shouldDestroy: boolean): MarkerBasedUsersAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.markerBasedUsersAPI = new MarkerBasedUsersAPI(this.options);\n return this.markerBasedUsersAPI;\n }\n\n /**\n * API for Groups (offset-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {GroupsAPI} GroupsAPI instance\n */\n getGroupsAPI(shouldDestroy: boolean): GroupsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.groupsAPI = new GroupsAPI(this.options);\n return this.groupsAPI;\n }\n\n /**\n * API for Users (offset-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {UsersAPI} UsersAPI instance\n */\n getUsersAPI(shouldDestroy: boolean): UsersAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.usersAPI = new UsersAPI(this.options);\n return this.usersAPI;\n }\n\n /**\n * API for Feed Items\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FeedAPI} FeedAPI instance\n */\n getFeedAPI(shouldDestroy: boolean): FeedAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.feedItemsAPI = new FeedAPI(this.options);\n return this.feedItemsAPI;\n }\n\n /**\n * API for Open With\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {OpenWithAPI} OpenWithAPI instance\n */\n getOpenWithAPI(shouldDestroy: boolean): OpenWithAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.openWithAPI = new OpenWithAPI(this.options);\n return this.openWithAPI;\n }\n\n /**\n * API for the App Integrations endpoint\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {AppIntegrationsAPI} AppIntegrationsAPI instance\n */\n getAppIntegrationsAPI(shouldDestroy: boolean): AppIntegrationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.appIntegrationsAPI = new AppIntegrationsAPI(this.options);\n return this.appIntegrationsAPI;\n }\n\n /**\n * API for Metadata Query\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MetadataQuery} MetadataQuery instance\n */\n getMetadataQueryAPI(shouldDestroy: boolean = false): MetadataQueryAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.metadataQueryAPI = new MetadataQueryAPI(this.options);\n return this.metadataQueryAPI;\n }\n\n /**\n * API for Box Edit\n *\n * @return {BoxEditAPI} BoxEditAPI instance\n */\n getBoxEditAPI(): BoxEditAPI {\n this.boxEditAPI = new BoxEditAPI();\n return this.boxEditAPI;\n }\n\n /**\n * API for Annotations\n *\n * @return {AnnotationsAPI} AnnotationsAPI instance\n */\n getAnnotationsAPI(shouldDestroy: boolean): AnnotationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.annotationsAPI = new AnnotationsAPI(this.options);\n return this.annotationsAPI;\n }\n\n /**\n * API for Intelligence\n *\n * @return {IntelligenceAPI} IntelligenceAPI instance\n */\n getIntelligenceAPI(shouldDestroy: boolean): IntelligenceAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.intelligenceAPI = new IntelligenceAPI(this.options);\n return this.intelligenceAPI;\n }\n}\n\nexport default APIFactory;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"APIFactory.js","names":["Cache","ChunkedUploadAPI","PlainUploadAPI","FolderAPI","FileAPI","WebLinkAPI","SearchAPI","RecentsAPI","VersionsAPI","CommentsAPI","TasksNewAPI","TaskCollaboratorsAPI","TaskLinksAPI","ThreadedCommentsAPI","FileAccessStatsAPI","FileActivitiesAPI","MarkerBasedGroupsAPI","MarkerBasedUsersAPI","GroupsAPI","UsersAPI","MetadataAPI","FileCollaboratorsAPI","FileCollaborationsAPI","FolderCollaborationsAPI","CollaborationsAPI","FeedAPI","AppIntegrationsAPI","AnnotationsAPI","OpenWithAPI","MetadataQueryAPI","BoxEditAPI","IntelligenceAPI","DEFAULT_HOSTNAME_API","DEFAULT_HOSTNAME_UPLOAD","TYPE_FOLDER","TYPE_FILE","TYPE_WEBLINK","APIFactory","constructor","options","_objectSpread","apiHost","uploadHost","cache","language","destroy","destroyCache","fileAPI","weblinkAPI","plainUploadAPI","chunkedUploadAPI","folderAPI","searchAPI","recentsAPI","versionsAPI","fileAccessStatsAPI","fileActivitiesAPI","tasksNewAPI","taskCollaboratorsAPI","taskLinksAPI","commentsAPI","threadedCommentsAPI","markerBasedGroupsAPI","markerBasedUsersAPI","groupsAPI","usersAPI","metadataAPI","fileCollaboratorsAPI","fileCollaborationsAPI","folderCollaborationsAPI","collaborationsAPI","appIntegrationsAPI","metadataQueryAPI","openWithAPI","annotationsAPI","intelligenceAPI","getCache","getAPI","type","api","getFolderAPI","getFileAPI","getWebLinkAPI","Error","shouldDestroy","getPlainUploadAPI","getChunkedUploadAPI","getSearchAPI","getRecentsAPI","getMetadataAPI","getVersionsAPI","getCommentsAPI","getThreadedCommentsAPI","getTasksNewAPI","getTaskCollaboratorsAPI","getTaskLinksAPI","getFileAccessStatsAPI","getFileActivitiesAPI","getFileCollaboratorsAPI","getFileCollaborationsAPI","getFolderCollaborationsAPI","getCollaborationsAPI","getMarkerBasedGroupsAPI","getMarkerBasedUsersAPI","getGroupsAPI","getUsersAPI","getFeedAPI","feedItemsAPI","getOpenWithAPI","getAppIntegrationsAPI","getMetadataQueryAPI","getBoxEditAPI","boxEditAPI","getAnnotationsAPI","getIntelligenceAPI"],"sources":["../../src/api/APIFactory.js"],"sourcesContent":["/**\n * @flow\n * @file Main entry point for the box api\n * @author Box\n */\n\nimport Cache from '../utils/Cache';\nimport ChunkedUploadAPI from './uploads/MultiputUpload';\nimport PlainUploadAPI from './uploads/PlainUpload';\nimport FolderAPI from './Folder';\nimport FileAPI from './File';\nimport WebLinkAPI from './WebLink';\nimport SearchAPI from './Search';\nimport RecentsAPI from './Recents';\nimport VersionsAPI from './Versions';\nimport CommentsAPI from './Comments';\nimport TasksNewAPI from './tasks/TasksNew';\nimport TaskCollaboratorsAPI from './tasks/TaskCollaborators';\nimport TaskLinksAPI from './tasks/TaskLinks';\nimport ThreadedCommentsAPI from './ThreadedComments';\nimport FileAccessStatsAPI from './FileAccessStats';\nimport FileActivitiesAPI from './FileActivities';\nimport MarkerBasedGroupsAPI from './MarkerBasedGroups';\nimport MarkerBasedUsersAPI from './MarkerBasedUsers';\nimport GroupsAPI from './Groups';\nimport UsersAPI from './Users';\nimport MetadataAPI from './Metadata';\nimport FileCollaboratorsAPI from './FileCollaborators';\nimport FileCollaborationsAPI from './FileCollaborations';\nimport FolderCollaborationsAPI from './FolderCollaborations';\nimport CollaborationsAPI from './Collaborations';\nimport FeedAPI from './Feed';\nimport AppIntegrationsAPI from './AppIntegrations';\nimport AnnotationsAPI from './Annotations';\nimport OpenWithAPI from './OpenWith';\nimport MetadataQueryAPI from './MetadataQuery';\nimport BoxEditAPI from './box-edit';\nimport IntelligenceAPI from './Intelligence';\nimport { DEFAULT_HOSTNAME_API, DEFAULT_HOSTNAME_UPLOAD, TYPE_FOLDER, TYPE_FILE, TYPE_WEBLINK } from '../constants';\nimport type { ItemType } from '../common/types/core';\nimport type { APIOptions } from '../common/types/api';\nimport type APICache from '../utils/Cache';\n\ntype ItemAPI = FolderAPI | FileAPI | WebLinkAPI;\n\nclass APIFactory {\n /**\n * @property {*}\n */\n options: APIOptions;\n\n /**\n * @property {FileAPI}\n */\n fileAPI: FileAPI;\n\n /**\n * @property {WebLink}\n */\n weblinkAPI: WebLinkAPI;\n\n /**\n * @property {FolderAPI}\n */\n folderAPI: FolderAPI;\n\n /**\n * @property {PlainUploadAPI}\n */\n plainUploadAPI: PlainUploadAPI;\n\n /**\n * @property {ChunkedUploadAPI}\n */\n chunkedUploadAPI: ChunkedUploadAPI;\n\n /**\n * @property {SearchAPI}\n */\n searchAPI: SearchAPI;\n\n /**\n * @property {RecentsAPI}\n */\n recentsAPI: RecentsAPI;\n\n /**\n * @property {VersionsAPI}\n */\n versionsAPI: VersionsAPI;\n\n /**\n * @property {CommentsAPI}\n */\n commentsAPI: CommentsAPI;\n\n /**\n * @property {ThreadedCommentsAPI}\n */\n threadedCommentsAPI: ThreadedCommentsAPI;\n\n /**\n * @property {TasksNewAPI}\n */\n tasksNewAPI: TasksNewAPI;\n\n /**\n * @property {TaskCollaboratorsAPI}\n */\n taskCollaboratorsAPI: TaskCollaboratorsAPI;\n\n /**\n * @property {TaskLinksAPI}\n */\n taskLinksAPI: TaskLinksAPI;\n\n /*\n * @property {FileAccessStatsAPI}\n */\n fileAccessStatsAPI: FileAccessStatsAPI;\n\n /*\n * @property {FileActivitiesAPI}\n */\n fileActivitiesAPI: FileActivitiesAPI;\n\n /*\n * @property {MarkerBasedGroupsAPI}\n */\n markerBasedGroupsAPI: MarkerBasedGroupsAPI;\n\n /*\n * @property {MarkerBasedUsersAPI}\n */\n markerBasedUsersAPI: MarkerBasedUsersAPI;\n\n /**\n * @property {GroupsAPI}\n */\n groupsAPI: GroupsAPI;\n\n /*\n * @property {UsersAPI}\n */\n usersAPI: UsersAPI;\n\n /*\n * @property {MetadataAPI}\n */\n metadataAPI: MetadataAPI;\n\n /**\n * @property {FileCollaboratorsAPI}\n */\n fileCollaboratorsAPI: FileCollaboratorsAPI;\n\n /**\n * @property {FileCollaborationsAPI}\n */\n fileCollaborationsAPI: FileCollaborationsAPI;\n\n /**\n * @property {FolderCollaborationsAPI}\n */\n folderCollaborationsAPI: FolderCollaborationsAPI;\n\n /**\n * @property {CollaborationsAPI}\n */\n collaborationsAPI: CollaborationsAPI;\n\n /**\n * @property {FeedAPI}\n */\n feedItemsAPI: FeedAPI;\n\n /**\n * @property {OpenWithAPI}\n */\n openWithAPI: OpenWithAPI;\n\n /**\n * @property {AppIntegrationsAPI}\n */\n appIntegrationsAPI: AppIntegrationsAPI;\n\n /**\n * @property {MetadataQueryAPI}\n */\n metadataQueryAPI: MetadataQueryAPI;\n\n /** @property {BoxEditAPI}\n *\n */\n boxEditAPI: BoxEditAPI;\n\n /**\n * @property {AnnotationsAPI}\n */\n annotationsAPI: AnnotationsAPI;\n\n /**\n * @property {IntelligenceAPI}\n */\n intelligenceAPI: IntelligenceAPI;\n\n /**\n * [constructor]\n *\n * @param {Object} options\n * @param {string} options.id - item id\n * @param {string|function} options.token - Auth token\n * @param {string} [options.sharedLink] - Shared link\n * @param {string} [options.sharedLinkPassword] - Shared link password\n * @param {string} [options.apiHost] - Api host\n * @param {string} [options.uploadHost] - Upload host name\n * @return {API} Api instance\n */\n constructor(options: APIOptions) {\n this.options = {\n ...options,\n apiHost: options.apiHost || DEFAULT_HOSTNAME_API,\n uploadHost: options.uploadHost || DEFAULT_HOSTNAME_UPLOAD,\n cache: options.cache || new Cache(),\n language: options.language,\n };\n }\n\n /**\n * [destructor]\n *\n * @param {boolean} destroyCache - true to destroy cache\n * @return {void}\n */\n destroy(destroyCache: boolean = false) {\n if (this.fileAPI) {\n this.fileAPI.destroy();\n delete this.fileAPI;\n }\n\n if (this.weblinkAPI) {\n this.weblinkAPI.destroy();\n delete this.weblinkAPI;\n }\n\n if (this.plainUploadAPI) {\n this.plainUploadAPI.destroy();\n delete this.plainUploadAPI;\n }\n\n if (this.chunkedUploadAPI) {\n this.chunkedUploadAPI.destroy();\n delete this.chunkedUploadAPI;\n }\n\n if (this.folderAPI) {\n this.folderAPI.destroy();\n delete this.folderAPI;\n }\n\n if (this.searchAPI) {\n this.searchAPI.destroy();\n delete this.searchAPI;\n }\n\n if (this.recentsAPI) {\n this.recentsAPI.destroy();\n delete this.recentsAPI;\n }\n\n if (this.versionsAPI) {\n this.versionsAPI.destroy();\n delete this.versionsAPI;\n }\n\n if (this.fileAccessStatsAPI) {\n this.fileAccessStatsAPI.destroy();\n delete this.fileAccessStatsAPI;\n }\n\n if (this.fileActivitiesAPI) {\n this.fileActivitiesAPI.destroy();\n delete this.fileActivitiesAPI;\n }\n\n if (this.tasksNewAPI) {\n this.tasksNewAPI.destroy();\n delete this.tasksNewAPI;\n }\n\n if (this.taskCollaboratorsAPI) {\n this.taskCollaboratorsAPI.destroy();\n delete this.taskCollaboratorsAPI;\n }\n\n if (this.taskLinksAPI) {\n this.taskLinksAPI.destroy();\n delete this.taskLinksAPI;\n }\n\n if (this.commentsAPI) {\n this.commentsAPI.destroy();\n delete this.commentsAPI;\n }\n\n if (this.threadedCommentsAPI) {\n this.threadedCommentsAPI.destroy();\n delete this.threadedCommentsAPI;\n }\n\n if (this.markerBasedGroupsAPI) {\n this.markerBasedGroupsAPI.destroy();\n delete this.markerBasedGroupsAPI;\n }\n\n if (this.markerBasedUsersAPI) {\n this.markerBasedUsersAPI.destroy();\n delete this.markerBasedUsersAPI;\n }\n\n if (this.groupsAPI) {\n this.groupsAPI.destroy();\n delete this.groupsAPI;\n }\n\n if (this.usersAPI) {\n this.usersAPI.destroy();\n delete this.usersAPI;\n }\n\n if (this.metadataAPI) {\n this.metadataAPI.destroy();\n delete this.metadataAPI;\n }\n\n if (this.fileCollaboratorsAPI) {\n this.fileCollaboratorsAPI.destroy();\n delete this.fileCollaboratorsAPI;\n }\n\n if (this.fileCollaborationsAPI) {\n this.fileCollaborationsAPI.destroy();\n delete this.fileCollaborationsAPI;\n }\n\n if (this.folderCollaborationsAPI) {\n this.folderCollaborationsAPI.destroy();\n delete this.folderCollaborationsAPI;\n }\n\n if (this.collaborationsAPI) {\n this.collaborationsAPI.destroy();\n delete this.collaborationsAPI;\n }\n\n if (this.appIntegrationsAPI) {\n this.appIntegrationsAPI.destroy();\n delete this.appIntegrationsAPI;\n }\n\n if (this.metadataQueryAPI) {\n this.metadataQueryAPI.destroy();\n delete this.metadataQueryAPI;\n }\n\n if (this.openWithAPI) {\n this.openWithAPI.destroy();\n delete this.openWithAPI;\n }\n\n if (this.annotationsAPI) {\n this.annotationsAPI.destroy();\n delete this.annotationsAPI;\n }\n\n if (this.intelligenceAPI) {\n this.intelligenceAPI.destroy();\n delete this.intelligenceAPI;\n }\n\n if (destroyCache) {\n this.options.cache = new Cache();\n }\n }\n\n /**\n * Gets the cache instance\n *\n * @return {Cache} cache instance\n */\n getCache(): APICache {\n return ((this.options.cache: any): APICache);\n }\n\n /**\n * Returns the API based on type of item\n *\n * @private\n * @param {String} type - item type\n * @return {ItemAPI} api\n */\n getAPI(type: ItemType): ItemAPI {\n let api: ItemAPI;\n\n switch (type) {\n case TYPE_FOLDER:\n api = this.getFolderAPI();\n break;\n case TYPE_FILE:\n api = this.getFileAPI();\n break;\n case TYPE_WEBLINK:\n api = this.getWebLinkAPI();\n break;\n default:\n throw new Error('Unknown Type!');\n }\n\n return api;\n }\n\n /**\n * API for file\n *\n * @return {FileAPI} FileAPI instance\n */\n getFileAPI(shouldDestroy: boolean = true): FileAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n this.fileAPI = new FileAPI(this.options);\n return this.fileAPI;\n }\n\n /**\n * API for web links\n *\n * @return {WebLinkAPI} WebLinkAPI instance\n */\n getWebLinkAPI(): WebLinkAPI {\n this.destroy();\n this.weblinkAPI = new WebLinkAPI(this.options);\n return this.weblinkAPI;\n }\n\n /**\n * API for plain uploads\n *\n * @return {UploadAPI} UploadAPI instance\n */\n getPlainUploadAPI(): PlainUploadAPI {\n this.destroy();\n this.plainUploadAPI = new PlainUploadAPI(this.options);\n return this.plainUploadAPI;\n }\n\n /**\n * API for chunked uploads\n *\n * @return {UploadAPI} UploadAPI instance\n */\n getChunkedUploadAPI(): ChunkedUploadAPI {\n this.destroy();\n this.chunkedUploadAPI = new ChunkedUploadAPI(this.options);\n return this.chunkedUploadAPI;\n }\n\n /**\n * API for folder\n *\n * @return {FolderAPI} FolderAPI instance\n */\n getFolderAPI(shouldDestroy: boolean = true): FolderAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n this.folderAPI = new FolderAPI(this.options);\n return this.folderAPI;\n }\n\n /**\n * API for search\n *\n * @return {SearchAPI} SearchAPI instance\n */\n getSearchAPI(): SearchAPI {\n this.destroy();\n this.searchAPI = new SearchAPI(this.options);\n return this.searchAPI;\n }\n\n /**\n * API for recents\n *\n * @return {RecentsAPI} RecentsAPI instance\n */\n getRecentsAPI(): RecentsAPI {\n this.destroy();\n this.recentsAPI = new RecentsAPI(this.options);\n return this.recentsAPI;\n }\n\n /**\n * API for metadata\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MetadataAPI} MetadataAPI instance\n */\n getMetadataAPI(shouldDestroy: boolean): MetadataAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.metadataAPI = new MetadataAPI(this.options);\n return this.metadataAPI;\n }\n\n /**\n * API for versions\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {VersionsAPI} VersionsAPI instance\n */\n getVersionsAPI(shouldDestroy: boolean): VersionsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.versionsAPI = new VersionsAPI(this.options);\n return this.versionsAPI;\n }\n\n /**\n * API for comments\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {CommentsAPI} CommentsAPI instance\n */\n getCommentsAPI(shouldDestroy: boolean): CommentsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.commentsAPI = new CommentsAPI(this.options);\n return this.commentsAPI;\n }\n\n /**\n * API for threaded comments\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {ThreadedCommentsAPI} ThreadedCommentsAPI instance\n */\n getThreadedCommentsAPI(shouldDestroy: boolean): ThreadedCommentsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.threadedCommentsAPI = new ThreadedCommentsAPI(this.options);\n return this.threadedCommentsAPI;\n }\n\n /**\n * API for tasks\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TasksAPI} TaskAssignmentsAPI instance\n */\n getTasksNewAPI(shouldDestroy: boolean): TasksNewAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.tasksNewAPI = new TasksNewAPI(this.options);\n return this.tasksNewAPI;\n }\n\n /**\n * API for taskCollaborators\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TaskCollaboratorsAPI} TaskCollaboratorsAPI instance\n */\n getTaskCollaboratorsAPI(shouldDestroy: boolean): TaskCollaboratorsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.taskCollaboratorsAPI = new TaskCollaboratorsAPI(this.options);\n return this.taskCollaboratorsAPI;\n }\n\n /**\n * API for taskLinks\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {TasksAPI} TaskLinksAPI instance\n */\n getTaskLinksAPI(shouldDestroy: boolean): TaskLinksAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.taskLinksAPI = new TaskLinksAPI(this.options);\n return this.taskLinksAPI;\n }\n\n /**\n * API for file access stats\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileAccessStatsAPI} FileAccessStatsAPI instance\n */\n getFileAccessStatsAPI(shouldDestroy: boolean): FileAccessStatsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileAccessStatsAPI = new FileAccessStatsAPI(this.options);\n return this.fileAccessStatsAPI;\n }\n\n /**\n * API for file access stats\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileActivitiesAPI} FileActivitiesAPI instance\n */\n getFileActivitiesAPI(shouldDestroy: boolean): FileActivitiesAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileActivitiesAPI = new FileActivitiesAPI(this.options);\n return this.fileActivitiesAPI;\n }\n\n /**\n * API for file collaborators\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileCollaboratorsAPI} FileCollaboratorsAPI instance\n */\n getFileCollaboratorsAPI(shouldDestroy: boolean): FileCollaboratorsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileCollaboratorsAPI = new FileCollaboratorsAPI(this.options);\n return this.fileCollaboratorsAPI;\n }\n\n /**\n * API for file collaborations\n *\n * This is different from the FileCollaboratorsAPI! See ./FileCollaborations for more information.\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FileCollaborationsAPI} FileCollaborationsAPI instance\n */\n getFileCollaborationsAPI(shouldDestroy: boolean): FileCollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.fileCollaborationsAPI = new FileCollaborationsAPI(this.options);\n return this.fileCollaborationsAPI;\n }\n\n /**\n * API for folder collaborations\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FolderCollaborationsAPI} FolderCollaborationsAPI instance\n */\n getFolderCollaborationsAPI(shouldDestroy: boolean): FolderCollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.folderCollaborationsAPI = new FolderCollaborationsAPI(this.options);\n return this.folderCollaborationsAPI;\n }\n\n /**\n * API for collaborations\n *\n * This is different from the other collaboration/collaborator APIs!\n * See ./Collaborations for more information.\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {CollaborationsAPI} CollaborationsAPI instance\n */\n getCollaborationsAPI(shouldDestroy: boolean): CollaborationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.collaborationsAPI = new CollaborationsAPI(this.options);\n return this.collaborationsAPI;\n }\n\n /**\n * API for Groups (marker-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MarkerBasedGroupsAPI} MarkerBasedGroupsAPI instance\n */\n getMarkerBasedGroupsAPI(shouldDestroy: boolean): MarkerBasedGroupsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.markerBasedGroupsAPI = new MarkerBasedGroupsAPI(this.options);\n return this.markerBasedGroupsAPI;\n }\n\n /**\n * API for Users (marker-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MarkerBasedUsersAPI} MarkerBasedUsersAPI instance\n */\n getMarkerBasedUsersAPI(shouldDestroy: boolean): MarkerBasedUsersAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.markerBasedUsersAPI = new MarkerBasedUsersAPI(this.options);\n return this.markerBasedUsersAPI;\n }\n\n /**\n * API for Groups (offset-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {GroupsAPI} GroupsAPI instance\n */\n getGroupsAPI(shouldDestroy: boolean): GroupsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.groupsAPI = new GroupsAPI(this.options);\n return this.groupsAPI;\n }\n\n /**\n * API for Users (offset-based paging)\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {UsersAPI} UsersAPI instance\n */\n getUsersAPI(shouldDestroy: boolean): UsersAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.usersAPI = new UsersAPI(this.options);\n return this.usersAPI;\n }\n\n /**\n * API for Feed Items\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {FeedAPI} FeedAPI instance\n */\n getFeedAPI(shouldDestroy: boolean): FeedAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.feedItemsAPI = new FeedAPI(this.options);\n return this.feedItemsAPI;\n }\n\n /**\n * API for Open With\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {OpenWithAPI} OpenWithAPI instance\n */\n getOpenWithAPI(shouldDestroy: boolean): OpenWithAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.openWithAPI = new OpenWithAPI(this.options);\n return this.openWithAPI;\n }\n\n /**\n * API for the App Integrations endpoint\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {AppIntegrationsAPI} AppIntegrationsAPI instance\n */\n getAppIntegrationsAPI(shouldDestroy: boolean): AppIntegrationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.appIntegrationsAPI = new AppIntegrationsAPI(this.options);\n return this.appIntegrationsAPI;\n }\n\n /**\n * API for Metadata Query\n *\n * @param {boolean} shouldDestroy - true if the factory should destroy before returning the call\n * @return {MetadataQuery} MetadataQuery instance\n */\n getMetadataQueryAPI(shouldDestroy: boolean = false): MetadataQueryAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.metadataQueryAPI = new MetadataQueryAPI(this.options);\n return this.metadataQueryAPI;\n }\n\n /**\n * API for Box Edit\n *\n * @return {BoxEditAPI} BoxEditAPI instance\n */\n getBoxEditAPI(): BoxEditAPI {\n this.boxEditAPI = new BoxEditAPI();\n return this.boxEditAPI;\n }\n\n /**\n * API for Annotations\n *\n * @return {AnnotationsAPI} AnnotationsAPI instance\n */\n getAnnotationsAPI(shouldDestroy: boolean): AnnotationsAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.annotationsAPI = new AnnotationsAPI(this.options);\n return this.annotationsAPI;\n }\n\n /**\n * API for Intelligence\n *\n * @return {IntelligenceAPI} IntelligenceAPI instance\n */\n getIntelligenceAPI(shouldDestroy: boolean): IntelligenceAPI {\n if (shouldDestroy) {\n this.destroy();\n }\n\n this.intelligenceAPI = new IntelligenceAPI(this.options);\n return this.intelligenceAPI;\n }\n}\n\nexport default APIFactory;\n"],"mappings":"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","ignoreList":[]}
@@ -310,6 +310,10 @@ const messages = defineMessages({
310
310
  "id": "be.searchClear",
311
311
  "defaultMessage": "Clear search"
312
312
  },
313
+ clearSelection: {
314
+ "id": "be.clearSelection",
315
+ "defaultMessage": "Clear selection"
316
+ },
313
317
  searchPlaceholder: {
314
318
  "id": "be.searchPlaceholder",
315
319
  "defaultMessage": "Search files and folders"
@@ -861,6 +865,10 @@ const messages = defineMessages({
861
865
  personalFolder: {
862
866
  "id": "be.personalFolder",
863
867
  "defaultMessage": "Personal Folder"
868
+ },
869
+ numFilesSelected: {
870
+ "id": "be.numFilesSelected",
871
+ "defaultMessage": "\n {numSelected, plural,\n =0 {0 files selected}\n one {1 file selected}\n other {# files selected}\n }\n "
864
872
  }
865
873
  });
866
874
  export default messages;
@@ -387,6 +387,11 @@ const messages = defineMessages({
387
387
  description: 'Aria label for the clear button in the search box.',
388
388
  defaultMessage: 'Clear search',
389
389
  },
390
+ clearSelection: {
391
+ id: 'be.clearSelection',
392
+ description: 'Aria label for the clear selection button.',
393
+ defaultMessage: 'Clear selection',
394
+ },
390
395
  searchPlaceholder: {
391
396
  id: 'be.searchPlaceholder',
392
397
  description: 'Shown as a placeholder in the search box.',
@@ -1089,6 +1094,17 @@ const messages = defineMessages({
1089
1094
  description: 'Icon title for a Box item of type folder that is private and has no collaborators',
1090
1095
  defaultMessage: 'Personal Folder',
1091
1096
  },
1097
+ numFilesSelected: {
1098
+ id: 'be.numFilesSelected',
1099
+ description: 'Text shown to indicate the number of files selected',
1100
+ defaultMessage: `
1101
+ {numSelected, plural,
1102
+ =0 {0 files selected}
1103
+ one {1 file selected}
1104
+ other {# files selected}
1105
+ }
1106
+ `,
1107
+ },
1092
1108
  });
1093
1109
 
1094
1110
  export default messages;
@@ -1 +1 @@
1
- {"version":3,"file":"messages.js","names":["defineMessages","messages","today","yesterday","logo","error","preview","previewError","previewErrorBlockedByPolicy","boxEditErrorBlockedByPolicy","previewUpdate","complete","loading","reload","open","close","copy","delete","rename","remove","resume","resumeAll","retry","share","download","save","cancel","create","choose","upload","uploadEmptyState","uploadErrorState","uploadSuccessState","add","gridView","gridViewIncreaseColumnSize","gridViewDecreaseColumnSize","gridViewSliderLabel","listView","sort","newFolder","in","print","selected","max","nameDate","modified","modifiedDateBy","modifiedDate","created","owner","uploader","interacted","interactedDate","name","size","deleteDialogLabel","deleteDialogFileText","deleteDialogFolderText","renameDialogLabel","renameDialogText","renameDialogErrorInvalid","renameDialogErrorInUse","renameDialogErrorTooLong","createDialogLabel","createDialogText","createDialogErrorInvalid","createDialogErrorTooLong","createDialogErrorInUse","shareDialogLabel","shareDialogText","shareDialogNone","shareAccessOpen","shareAccessCollab","shareAccessCompany","shareAccessNone","shareAccessRemove","searchClear","searchPlaceholder","sidebarAccessStats","sidebarContentInsights","sidebarShow","sidebarHide","description","descriptionPlaceholder","sidebarDetailsTitle","sidebarSkillsTitle","sidebarSkillsErrorTitle","sidebarSkillsErrorContent","sidebarBoxAITitle","sidebarBoxAIContent","sidebarBoxAISwitchToModalView","sidebarActivityTitle","sidebarDocGenTitle","sidebarDocGenTooltip","sidebarMetadataTitle","sidebarMetadataEditingErrorContent","sidebarMetadataFetchingErrorContent","sidebarFileFetchingErrorContent","sidebarProperties","sidebarNavLabel","defaultSkill","statusSkill","topicsSkill","keywordSkill","faceSkill","transcriptSkill","skillPendingStatus","skillInvokedStatus","skillUnknownError","skillInvalidFileSizeError","skillInvalidFileExtensionError","skillNoInfoFoundError","skillFileProcessingError","uploadErrorTooManyFiles","uploadError","uploadEmptyWithFolderUploadEnabled","uploadEmptyWithFolderUploadDisabled","uploadEmptyFileInput","uploadEmptyFolderInput","uploadNoDragDrop","uploadInProgress","uploadSuccess","uploadSuccessFileInput","uploadSuccessFolderInput","uploadOptions","nameASC","nameDESC","dateASC","dateDESC","sizeASC","sizeDESC","breadcrumbLabel","errorBreadcrumb","rootBreadcrumb","searchBreadcrumb","recentsBreadcrumb","selectedBreadcrumb","uploadsManagerUploadInProgress","uploadsManagerUploadPrompt","uploadsManagerUploadComplete","uploadsManagerUploadFailed","uploadsCancelButtonTooltip","uploadsRetryButtonTooltip","uploadsFileSizeLimitExceededErrorMessage","uploadsFileSizeLimitExceededErrorMessageForUpgradeCta","uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta","uploadsStorageLimitErrorMessage","uploadsPendingFolderSizeLimitErrorMessage","uploadsItemNameInUseErrorMessage","uploadsProvidedFolderNameInvalidMessage","uploadsOneOrMoreChildFoldersFailedToUploadMessage","uploadsPackageUploadErrorMessage","uploadsDefaultErrorMessage","errorOccured","editLabel","getVersionInfo","keywordsApplied","keywordsList","noActivity","noActivityAnnotationPrompt","noActivityCommentPrompt","versionDeleted","versionPromoted","versionRestored","versionMultipleUsersUploaded","versionMultipleUsersRestored","versionMultipleUsersTrashed","versionUploadCollapsed","versionRestoreCollapsed","versionTrashCollapsed","versionUploaded","fileRequestDisplayName","defaultInlineErrorContentMessage","fileDescriptionInlineErrorTitleMessage","defaultErrorMaskHeaderMessage","defaultErrorMaskSubHeaderMessage","fileAccessStatsErrorHeaderMessage","fileAccessStatsPermissionsError","fileClassificationErrorHeaderMessage","currentUserErrorHeaderMessage","activityFeedItemApiError","nextFile","nextPage","nextPageButton","pageStatus","pageEntryStatus","previousFile","previousPage","previousPageButton","previousSegment","nextSegment","transcriptEdit","emptyOpenWithDescription","errorOpenWithDescription","defaultOpenWithDescription","executeIntegrationOpenWithErrorHeader","executeIntegrationOpenWithErrorSubHeader","boxToolsInstallMessage","boxToolsBlacklistedError","drawAnnotation","pointAnnotation","expand","collapse","back","priorCollaborator","moreOptions","bookmark","archive","archivedFolder","collaboratedFolder","externalFolder","file","iconFile","folder","personalFolder"],"sources":["../../../src/elements/common/messages.js"],"sourcesContent":["/**\n * @flow\n * @file i18n messages\n * @author Box\n */\n\nimport { defineMessages } from 'react-intl';\n\nconst messages = defineMessages({\n today: {\n id: 'be.today',\n description: 'Shown instead of todays date.',\n defaultMessage: 'today',\n },\n yesterday: {\n id: 'be.yesterday',\n description: 'Shown instead of yesterdays date.',\n defaultMessage: 'yesterday',\n },\n logo: {\n id: 'be.logo',\n description: 'Placeholder for a logo.',\n defaultMessage: 'Logo',\n },\n error: {\n id: 'be.error',\n description: 'Generic error label.',\n defaultMessage: 'Error',\n },\n preview: {\n id: 'be.preview',\n description: 'Label for preview action.',\n defaultMessage: 'Preview',\n },\n previewError: {\n id: 'be.previewError',\n description: 'Error message when Preview fails due to the files call.',\n defaultMessage: 'This preview didn’t load. Please try to open or download the file to view.',\n },\n previewErrorBlockedByPolicy: {\n id: 'be.previewErrorBlockedByPolicy',\n description: 'Error message when Preview fails due to the files call which is blocked by an access policy.',\n defaultMessage: 'Your access to this content is restricted due to a security policy.',\n },\n boxEditErrorBlockedByPolicy: {\n id: 'be.boxEditErrorBlockedByPolicy',\n defaultMessage: 'Local editing of this content has been disabled based on an access policy',\n description: 'Shown in the open with dropdown when an application is blocked by shield access policy.',\n },\n previewUpdate: {\n id: 'be.previewUpdate',\n description: 'Message when new preview is available.',\n defaultMessage: 'A new version of this file is available.',\n },\n complete: {\n id: 'be.complete',\n description: 'Label for complete state.',\n defaultMessage: 'Complete',\n },\n loading: {\n id: 'be.loading',\n description: 'Label for loading state.',\n defaultMessage: 'Loading',\n },\n reload: {\n id: 'be.reload',\n description: 'Label for reload button.',\n defaultMessage: 'Reload',\n },\n open: {\n id: 'be.open',\n description: 'Label for open action.',\n defaultMessage: 'Open',\n },\n close: {\n id: 'be.close',\n description: 'Label for close action.',\n defaultMessage: 'Close',\n },\n copy: {\n id: 'be.copy',\n description: 'Label for copy action.',\n defaultMessage: 'Copy',\n },\n delete: {\n id: 'be.delete',\n description: 'Label for delete action.',\n defaultMessage: 'Delete',\n },\n rename: {\n id: 'be.rename',\n description: 'Label for rename action.',\n defaultMessage: 'Rename',\n },\n remove: {\n id: 'be.remove',\n description: 'Label for remove action.',\n defaultMessage: 'Remove',\n },\n resume: {\n id: 'be.resume',\n description: 'Label for resume action for a single file.',\n defaultMessage: 'Resume',\n },\n resumeAll: {\n id: 'be.resumeAll',\n description: 'Label for resume action for multiple files.',\n defaultMessage: 'Resume All',\n },\n retry: {\n id: 'be.retry',\n description: 'Label for retry action.',\n defaultMessage: 'Retry',\n },\n share: {\n id: 'be.share',\n description: 'Label for share action.',\n defaultMessage: 'Share',\n },\n download: {\n id: 'be.download',\n description: 'Label for download action.',\n defaultMessage: 'Download',\n },\n save: {\n id: 'be.save',\n description: 'Label for save action.',\n defaultMessage: 'Save',\n },\n cancel: {\n id: 'be.cancel',\n description: 'Label for cancel action.',\n defaultMessage: 'Cancel',\n },\n create: {\n id: 'be.create',\n description: 'Label for create action.',\n defaultMessage: 'Create',\n },\n choose: {\n id: 'be.choose',\n description: 'Label for choose action.',\n defaultMessage: 'Choose',\n },\n upload: {\n id: 'be.upload',\n description: 'Label for upload action.',\n defaultMessage: 'Upload',\n },\n uploadEmptyState: {\n id: 'be.uploadEmptyState',\n description: 'Label for upload empty state.',\n defaultMessage: 'Empty state',\n },\n uploadErrorState: {\n id: 'be.uploadErrorState',\n description: 'Label for upload error state.',\n defaultMessage: 'Error state',\n },\n uploadSuccessState: {\n id: 'be.uploadSuccessState',\n description: 'Label for upload success state.',\n defaultMessage: 'Success state',\n },\n add: {\n id: 'be.add',\n description: 'Label for add action',\n defaultMessage: 'Add',\n },\n gridView: {\n id: 'be.gridView',\n description: 'Label for switching to grid view',\n defaultMessage: 'Switch to Grid View',\n },\n gridViewIncreaseColumnSize: {\n id: 'be.gridView.increaseColumnSize',\n description: 'Label for increasing the size of columns in grid view',\n defaultMessage: 'Increase column size',\n },\n gridViewDecreaseColumnSize: {\n id: 'be.gridView.decreaseColumnSize',\n description: 'Label for decreasing the size of columns in grid view',\n defaultMessage: 'Decrease column size',\n },\n gridViewSliderLabel: {\n id: 'be.gridView.sliderLabel',\n description: 'Label for the grid view size slider',\n defaultMessage: 'Grid view size',\n },\n listView: {\n id: 'be.listView',\n description: 'Label for switching to list view',\n defaultMessage: 'Switch to List View',\n },\n sort: {\n id: 'be.sort',\n description: 'Label for sort action',\n defaultMessage: 'Sort',\n },\n newFolder: {\n id: 'be.newFolder',\n description: 'Label for create new folder action.',\n defaultMessage: 'New Folder',\n },\n in: {\n id: 'be.in',\n description: 'Label for in action.',\n defaultMessage: 'In',\n },\n print: {\n id: 'be.print',\n description: 'Label for print action',\n defaultMessage: 'Print',\n },\n selected: {\n id: 'be.selected',\n description: 'Default label for selected items list in the footer.',\n defaultMessage: '{count} Selected',\n },\n max: {\n id: 'be.max',\n description: 'Indicator on the footer that max items have been selected.',\n defaultMessage: 'max',\n },\n nameDate: {\n id: 'be.nameDate',\n description: 'Text for modified or interacted date with user.',\n defaultMessage: '{date} by {name}',\n },\n modified: {\n id: 'be.itemModified',\n description: 'Label for item modified date.',\n defaultMessage: 'Modified',\n },\n modifiedDateBy: {\n id: 'be.modifiedDateBy',\n description: 'Text for modified date with user with modified prefix.',\n defaultMessage: 'Modified {date} by {name}',\n },\n modifiedDate: {\n id: 'be.modifiedDate',\n description: 'Text for modified date with modified prefix.',\n defaultMessage: 'Modified {date}',\n },\n created: {\n id: 'be.itemCreated',\n description: 'Label for item created date.',\n defaultMessage: 'Created',\n },\n owner: {\n id: 'be.itemOwner',\n description: 'Label for item owner.',\n defaultMessage: 'Owner',\n },\n uploader: {\n id: 'be.itemUploader',\n description: 'label for item uploader.',\n defaultMessage: 'Uploader',\n },\n interacted: {\n id: 'be.itemInteracted',\n description: 'Label for item last accessed date.',\n defaultMessage: 'Last Accessed',\n },\n interactedDate: {\n id: 'be.interactedDate',\n description: 'Text for last accessed date with last access prefix.',\n defaultMessage: 'Last accessed on {date}',\n },\n name: {\n id: 'be.itemName',\n description: 'Label for item name attribute.',\n defaultMessage: 'Name',\n },\n size: {\n id: 'be.itemSize',\n description: 'Label for item size attribute.',\n defaultMessage: 'Size',\n },\n deleteDialogLabel: {\n id: 'be.deleteDialogLabel',\n description: 'Label for delete confirmation dialog',\n defaultMessage: 'Confirm Delete',\n },\n deleteDialogFileText: {\n id: 'be.deleteDialogFileText',\n description: 'Text for delete confirmation dialog for files',\n defaultMessage: 'Are you sure you want to delete {name}?',\n },\n deleteDialogFolderText: {\n id: 'be.deleteDialogFolderText',\n description: 'Text for delete confirmation dialog for folders',\n defaultMessage: 'Are you sure you want to delete {name} and all its contents?',\n },\n renameDialogLabel: {\n id: 'be.renameDialogLabel',\n description: 'Label for rename dialog',\n defaultMessage: 'Rename',\n },\n renameDialogText: {\n id: 'be.renameDialogText',\n description: 'Text for rename dialog',\n defaultMessage: 'Please enter a new name for {name}:',\n },\n renameDialogErrorInvalid: {\n id: 'be.renameDialogErrorInvalid',\n description: 'Error text for rename dialog when name is invalid',\n defaultMessage: 'This name is invalid.',\n },\n renameDialogErrorInUse: {\n id: 'be.renameDialogErrorInUse',\n description: 'Error text for rename dialog when name is already in use',\n defaultMessage: 'An item with the same name already exists.',\n },\n renameDialogErrorTooLong: {\n id: 'be.renameDialogErrorTooLong',\n description: 'Error text for rename dialog when name is too long',\n defaultMessage: 'This name is too long.',\n },\n createDialogLabel: {\n id: 'be.createDialogLabel',\n description: 'Label for create folder dialog',\n defaultMessage: 'New Folder',\n },\n createDialogText: {\n id: 'be.createDialogText',\n description: 'Text for create folder dialog',\n defaultMessage: 'Please enter a name.',\n },\n createDialogErrorInvalid: {\n id: 'be.createDialogErrorInvalid',\n description: 'Error text for create folder dialog when name is invalid',\n defaultMessage: 'This is an invalid folder name.',\n },\n createDialogErrorTooLong: {\n id: 'be.createDialogErrorTooLong',\n description: 'Error text for create folder dialog when name is too long',\n defaultMessage: 'This folder name is too long.',\n },\n createDialogErrorInUse: {\n id: 'be.createDialogErrorInUse',\n description: 'Error text for create folder dialog when name is already in use',\n defaultMessage: 'A folder with the same name already exists.',\n },\n shareDialogLabel: {\n id: 'be.shareDialogLabel',\n description: 'Label for shared link dialog',\n defaultMessage: 'Share',\n },\n shareDialogText: {\n id: 'be.shareDialogText',\n description: 'Text for share link dialog',\n defaultMessage: 'Shared Link:',\n },\n shareDialogNone: {\n id: 'be.shareDialogNone',\n description: 'Text for no shared link',\n defaultMessage: 'None',\n },\n shareAccessOpen: {\n id: 'be.shareAccessOpen',\n description: 'Dropdown select option for open share access.',\n defaultMessage: 'Access: People with the link',\n },\n shareAccessCollab: {\n id: 'be.shareAccessCollab',\n description: 'Dropdown select option for collaborator share access.',\n defaultMessage: 'Access: People in this folder',\n },\n shareAccessCompany: {\n id: 'be.shareAccessCompany',\n description: 'Dropdown select option for enterprise share access.',\n defaultMessage: 'People in this company',\n },\n shareAccessNone: {\n id: 'be.shareAccessNone',\n description: 'Dropdown select option for no access.',\n defaultMessage: 'No shared link',\n },\n shareAccessRemove: {\n id: 'be.shareAccessRemove',\n description: 'Dropdown select option to remove access.',\n defaultMessage: 'Remove shared link',\n },\n searchClear: {\n id: 'be.searchClear',\n description: 'Aria label for the clear button in the search box.',\n defaultMessage: 'Clear search',\n },\n searchPlaceholder: {\n id: 'be.searchPlaceholder',\n description: 'Shown as a placeholder in the search box.',\n defaultMessage: 'Search files and folders',\n },\n sidebarAccessStats: {\n id: 'be.sidebarAccessStats',\n description: 'Title for the sidebar access stats.',\n defaultMessage: 'Access Stats',\n },\n sidebarContentInsights: {\n id: 'be.sidebarContentInsights',\n description: 'Title for the sidebar content insights.',\n defaultMessage: 'Content Insights',\n },\n sidebarShow: {\n id: 'be.sidebarShow',\n description: 'Label for the show sidebar button.',\n defaultMessage: 'Show Sidebar',\n },\n sidebarHide: {\n id: 'be.sidebarHide',\n description: 'Label for the hide sidebar button.',\n defaultMessage: 'Hide Sidebar',\n },\n description: {\n id: 'be.description',\n description: 'Label for the description field in the preview sidebar.',\n defaultMessage: 'Description',\n },\n descriptionPlaceholder: {\n id: 'be.descriptionPlaceholder',\n description: 'Placeholder for file description in preview sidebar.',\n defaultMessage: 'Enter a description',\n },\n sidebarDetailsTitle: {\n id: 'be.sidebarDetailsTitle',\n description: 'Title for the preview details sidebar.',\n defaultMessage: 'Details',\n },\n sidebarSkillsTitle: {\n id: 'be.sidebarSkillsTitle',\n description: 'Title for the preview details skills.',\n defaultMessage: 'Skills',\n },\n sidebarSkillsErrorTitle: {\n id: 'be.sidebarSkillsErrorTitle',\n description: 'Generic error title for skills editing.',\n defaultMessage: 'Skills Error',\n },\n sidebarSkillsErrorContent: {\n id: 'be.sidebarSkillsErrorContent',\n description: 'Generic error content for skills editing.',\n defaultMessage: 'An error has occurred while updating skills. Please refresh the page and try again.',\n },\n sidebarBoxAITitle: {\n id: 'be.sidebarBoxAITitle',\n description: 'Title for the preview Box AI feed.',\n defaultMessage: 'Box AI',\n },\n sidebarBoxAIContent: {\n id: 'be.sidebarBoxAIContent',\n description: 'Generic Box AI content type opened used in welcome message and placeholder',\n defaultMessage: 'content',\n },\n sidebarBoxAISwitchToModalView: {\n id: 'be.sidebarBoxAISwitchToModalView',\n description: 'Label for button that triggers switch to Box AI Modal',\n defaultMessage: 'Switch to modal view',\n },\n sidebarActivityTitle: {\n id: 'be.sidebarActivityTitle',\n description: 'Title for the preview activity feed.',\n defaultMessage: 'Activity',\n },\n sidebarDocGenTitle: {\n id: 'be.sidebarDocGenTitle',\n description: 'Title for the DocGen sidebar tab.',\n defaultMessage: 'Doc Gen Tags',\n },\n sidebarDocGenTooltip: {\n id: 'be.sidebarDocGenTooltip',\n defaultMessage: 'Box Doc Gen',\n description: 'Icon title for a Box file of type DocGen template',\n },\n sidebarMetadataTitle: {\n id: 'be.sidebarMetadataTitle',\n description: 'Title for the preview metadata.',\n defaultMessage: 'Metadata',\n },\n sidebarMetadataEditingErrorContent: {\n id: 'be.sidebarMetadataEditingErrorContent',\n description: 'Generic error content for metadata editing.',\n defaultMessage: 'An error has occurred while updating metadata. Please refresh the page and try again.',\n },\n sidebarMetadataFetchingErrorContent: {\n id: 'be.sidebarMetadataFetchingErrorContent',\n description: 'Generic error content for metadata fetching.',\n defaultMessage: 'An error has occurred while fetching metadata. Please refresh the page and try again.',\n },\n sidebarFileFetchingErrorContent: {\n id: 'be.sidebarFileFetchingErrorContent',\n description: 'Generic error content for file fetching.',\n defaultMessage: 'An error has occurred while fetching your Box file. Please refresh the page and try again.',\n },\n sidebarProperties: {\n id: 'be.sidebarProperties',\n description: 'Label for file properties section in the preview sidebar',\n defaultMessage: 'File Properties',\n },\n sidebarNavLabel: {\n id: 'be.sidebarNavLabel',\n description: 'Label for the sidebar tabs list',\n defaultMessage: 'Sidebar',\n },\n defaultSkill: {\n id: 'be.defaultSkill',\n description: 'Label for default skill section in the preview sidebar',\n defaultMessage: 'Skill Card',\n },\n statusSkill: {\n id: 'be.statusSkill',\n description: 'Label for status skill card in the preview sidebar',\n defaultMessage: 'Status',\n },\n topicsSkill: {\n id: 'be.topicsSkill',\n description: 'Label for keywords/topics skill section in the preview sidebar',\n defaultMessage: 'Topics',\n },\n keywordSkill: {\n id: 'be.keywordSkill',\n description: 'Label for keywords/topics skill section in the preview sidebar',\n defaultMessage: 'Topics',\n },\n faceSkill: {\n id: 'be.faceSkill',\n description: 'Label for face skill section in the preview sidebar',\n defaultMessage: 'Faces',\n },\n transcriptSkill: {\n id: 'be.transcriptSkill',\n description: 'Label for transcript skill section in the preview sidebar',\n defaultMessage: 'Transcript',\n },\n skillPendingStatus: {\n id: 'be.skillPendingStatus',\n description: 'Default message when skills are still running',\n defaultMessage: 'We’re working on processing your file - please hold!',\n },\n skillInvokedStatus: {\n id: 'be.skillInvokedStatus',\n description: 'Default message when skills are waiting to run',\n defaultMessage: 'We’re preparing to process your file - please hold!',\n },\n skillUnknownError: {\n id: 'be.skillUnknownError',\n description: 'Default error message when skills fail to run',\n defaultMessage: 'Something went wrong with running this skill or fetching its data.',\n },\n skillInvalidFileSizeError: {\n id: 'be.skillInvalidFileSizeError',\n description: 'Error message when skill fails due to file size',\n defaultMessage: 'We’re sorry, no skills information was found. This file size is currently not supported.',\n },\n skillInvalidFileExtensionError: {\n id: 'be.skillInvalidFileExtensionError',\n description: 'Error message when skill fails due to file extension',\n defaultMessage: 'We’re sorry, no skills information was found. This file extension is currently not supported.',\n },\n skillNoInfoFoundError: {\n id: 'be.skillNoInfoFoundError',\n description: 'Error message when a skill has no data',\n defaultMessage: 'We’re sorry, no skills information was found.',\n },\n skillFileProcessingError: {\n id: 'be.skillFileProcessingError',\n description: 'Error message when a skill processing failed',\n defaultMessage: 'We’re sorry, something went wrong with processing the file.',\n },\n uploadErrorTooManyFiles: {\n id: 'be.uploadErrorTooManyFiles',\n description: 'Message shown when too many files are uploaded at once',\n defaultMessage: 'You can only upload up to {fileLimit} file(s) at a time.',\n },\n uploadError: {\n id: 'be.uploadError',\n description: 'Message shown when there is a network error when uploading',\n defaultMessage: 'A network error has occurred while trying to upload.',\n },\n uploadEmptyWithFolderUploadEnabled: {\n id: 'be.uploadEmptyWithFolderUploadEnabled',\n description: 'Message shown when there are no items to upload and folder upload is enabled',\n defaultMessage: 'Drag and drop files and folders',\n },\n uploadEmptyWithFolderUploadDisabled: {\n id: 'be.uploadEmptyWithFolderUploadDisabled',\n description: 'Message shown when there are no items to upload and folder upload is disabled',\n defaultMessage: 'Drag and drop files',\n },\n uploadEmptyFileInput: {\n id: 'be.uploadEmptyFileInput',\n description: 'Message shown for upload link for uploading more files when there are no items to upload',\n defaultMessage: 'Browse your device',\n },\n uploadEmptyFolderInput: {\n id: 'be.uploadEmptyFolderInput',\n description: 'Message shown for upload link for uploading more folders when there are no items to upload',\n defaultMessage: 'Select Folders',\n },\n uploadNoDragDrop: {\n id: 'be.uploadNoDragDrop',\n description: 'Message shown on a device with no drag and drop support when there are no items to upload',\n defaultMessage: 'Select files from your device',\n },\n uploadInProgress: {\n id: 'be.uploadInProgress',\n description: 'Message shown when user drag and drops files onto uploads in progress',\n defaultMessage: 'Drag and drop to add additional files',\n },\n uploadSuccess: {\n id: 'be.uploadSuccess',\n description: 'Message shown when all files have been successfully uploaded',\n defaultMessage: 'Success! Your files have been uploaded.',\n },\n uploadSuccessFileInput: {\n id: 'be.uploadSuccessFileInput',\n description: 'Message shown for upload link for uploading more files after a successful upload',\n defaultMessage: 'Select More Files',\n },\n uploadSuccessFolderInput: {\n id: 'be.uploadSuccessFolderInput',\n description: 'Message shown for upload link for uploading more folders after a successful upload',\n defaultMessage: 'Select More Folders',\n },\n uploadOptions: {\n id: 'be.uploadOptions',\n description: 'Message shown for letting user choose between {option1} and {option2}',\n defaultMessage: '{option1} or {option2}',\n },\n nameASC: {\n id: 'be.nameASC',\n description: 'Name ascending option shown in the share access drop down select.',\n defaultMessage: 'Name: A → Z',\n },\n nameDESC: {\n id: 'be.nameDESC',\n description: 'Name descending option shown in the share access drop down select.',\n defaultMessage: 'Name: Z → A',\n },\n dateASC: {\n id: 'be.dateASC',\n description: 'Date ascending option shown in the share access drop down select.',\n defaultMessage: 'Date: Oldest → Newest',\n },\n dateDESC: {\n id: 'be.dateDESC',\n description: 'Date descending option shown in the share access drop down select.',\n defaultMessage: 'Date: Newest → Oldest',\n },\n sizeASC: {\n id: 'be.sizeASC',\n description: 'Size ascending option shown in the share access drop down select.',\n defaultMessage: 'Size: Smallest → Largest',\n },\n sizeDESC: {\n id: 'be.sizeDESC',\n description: 'Size descending option shown in the share access drop down select.',\n defaultMessage: 'Size: Largest → Smallest',\n },\n breadcrumbLabel: {\n id: 'be.breadcrumb.breadcrumbLabel',\n description: 'Aria label for describing \"breadcrumb\"',\n defaultMessage: 'Breadcrumb',\n },\n errorBreadcrumb: {\n id: 'be.errorBreadcrumb',\n description: 'Default label for signifying error in the sub header.',\n defaultMessage: 'Error',\n },\n rootBreadcrumb: {\n id: 'be.rootBreadcrumb',\n description: 'Default label for root folder.',\n defaultMessage: 'All Files',\n },\n searchBreadcrumb: {\n id: 'be.searchBreadcrumb',\n description: 'Shown as the title in the sub header while searching.',\n defaultMessage: 'Search Results',\n },\n recentsBreadcrumb: {\n id: 'be.recentsBreadcrumb',\n description: 'Shown as the title in the sub header when showing recents.',\n defaultMessage: 'Recents',\n },\n selectedBreadcrumb: {\n id: 'be.selectedBreadcrumb',\n description: 'Shown as the title in the sub header while showing selected items.',\n defaultMessage: 'Selected Items',\n },\n uploadsManagerUploadInProgress: {\n id: 'be.uploadsManagerUploadInProgress',\n description: 'Text shown when uploads are in progress',\n defaultMessage: 'Uploading',\n },\n uploadsManagerUploadPrompt: {\n id: 'be.uploadsManagerUploadPrompt',\n description: 'Text shown to guide the user to drag drop file to upload',\n defaultMessage: 'Drop files on this page to upload them into this folder.',\n },\n uploadsManagerUploadComplete: {\n id: 'be.uploadsManagerUploadComplete',\n description: 'Text shown when uploads are completed',\n defaultMessage: 'Completed',\n },\n uploadsManagerUploadFailed: {\n id: 'be.uploadsManagerUploadFailed',\n description: 'Text shown when uploads failed',\n defaultMessage: 'Some Uploads Failed',\n },\n uploadsCancelButtonTooltip: {\n id: 'be.uploadsCancelButtonTooltip',\n description: 'Cancel upload button tooltip',\n defaultMessage: 'Cancel this upload',\n },\n uploadsRetryButtonTooltip: {\n id: 'be.uploadsRetryButtonTooltip',\n description: 'Retry upload button tooltip',\n defaultMessage: 'Retry upload',\n },\n uploadsFileSizeLimitExceededErrorMessage: {\n id: 'be.uploadsFileSizeLimitExceededErrorMessage',\n description: 'Error message shown when file size exceeds the limit',\n defaultMessage: 'File size exceeds the folder owner’s file size limit',\n },\n uploadsFileSizeLimitExceededErrorMessageForUpgradeCta: {\n id: 'be.uploadsFileSizeLimitExceededErrorMessageForUpgradeCta',\n description: 'Error message shown when file size exceeds the limit',\n defaultMessage: 'This file exceeds your plan’s upload limit. Upgrade now to store larger files.',\n },\n uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta: {\n id: 'be.uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta',\n description: 'Upgrade message shown when file size exceeds the limit',\n defaultMessage: 'Upgrade',\n },\n uploadsStorageLimitErrorMessage: {\n id: 'be.uploadsStorageLimitErrorMessage',\n description: 'Error message shown when account storage limit has been reached',\n defaultMessage: 'Account storage limit reached',\n },\n uploadsPendingFolderSizeLimitErrorMessage: {\n id: 'be.uploadsPendingFolderSizeLimitErrorMessage',\n description: 'Error message shown when pending app folder size exceeds the limit',\n defaultMessage: 'Pending app folder size limit exceeded',\n },\n uploadsItemNameInUseErrorMessage: {\n id: 'be.uploadsItemNameInUseErrorMessage',\n description: 'Error message shown when attempting to upload a file which name already exists',\n defaultMessage: 'A file with this name already exists.',\n },\n uploadsProvidedFolderNameInvalidMessage: {\n id: 'be.uploadsProvidedFolderNameInvalidMessage',\n description: 'Error message shown when pending folder upload contains invalid characters',\n defaultMessage: 'Provided folder name, {name}, could not be used to create a folder.',\n },\n uploadsOneOrMoreChildFoldersFailedToUploadMessage: {\n id: 'be.uploadsOneOrMoreChildFoldersFailedToUploadMessage',\n description: 'Error message shown when one or more child folders failed to upload',\n defaultMessage: 'One or more child folders failed to upload.',\n },\n uploadsPackageUploadErrorMessage: {\n id: 'be.uploadsPackageUploadErrorMessage',\n description: 'Error message to display when a macOS package failed to upload',\n defaultMessage: 'Failed to upload package file. Please retry by saving as a single file.',\n },\n uploadsDefaultErrorMessage: {\n id: 'be.uploadsDefaultErrorMessage',\n description: 'Default error message shown when upload fails',\n defaultMessage: 'Something went wrong with the upload. Please try again.',\n },\n errorOccured: {\n id: 'be.errorOccured',\n defaultMessage: 'An error occurred',\n description: 'Title when an error occurs',\n },\n editLabel: {\n id: 'be.editLabel',\n defaultMessage: 'Edit',\n description: 'Label for an edit action',\n },\n getVersionInfo: {\n id: 'be.getVersionInfo',\n defaultMessage: 'Get version information',\n description: 'Aria label for button to get information about a file’s versions',\n },\n keywordsApplied: {\n id: 'be.keywordsAppliedList',\n defaultMessage: 'Keywords were applied',\n description: 'Message displayed in the activity feed for when image keyword search applies keywords',\n },\n keywordsList: {\n id: 'be.keywordsList',\n defaultMessage: 'Keywords: {words}',\n description: 'Label for a list of keywords. {words} are the list of keywords.',\n },\n noActivity: {\n id: 'be.noActivity',\n defaultMessage: 'No activity to show',\n description: 'Message displayed in an empty activity feed',\n },\n noActivityAnnotationPrompt: {\n id: 'be.noActivityAnnotationPrompt',\n defaultMessage: 'Hover over the preview and use the controls at the bottom to annotate the file.',\n description: 'Message shown alongside empty activity feed when user can annotate',\n },\n noActivityCommentPrompt: {\n id: 'be.noActivityCommentPrompt',\n defaultMessage: 'Comment and @mention people to notify them.',\n description: 'Message shown in ',\n },\n versionDeleted: {\n id: 'be.versionDeleted',\n defaultMessage: '{name} deleted v{version_number}',\n description:\n 'Message displayed in the activity feed for a deleted version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n versionPromoted: {\n id: 'be.versionPromoted',\n defaultMessage: '{name} promoted v{version_promoted} to v{version_number}',\n description:\n 'Message displayed in the activity feed for a promoted version. {name} is the user who performed the action. {version_promoted} is the originating file version string. {version_number} is the file version string.',\n },\n versionRestored: {\n id: 'be.versionRestored',\n defaultMessage: '{name} restored v{version_number}',\n description:\n 'Message displayed in the activity feed for a restored version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n versionMultipleUsersUploaded: {\n id: 'be.versionMultipleUsersUploaded',\n defaultMessage: '{numberOfCollaborators} collaborators uploaded v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions uploaded by multiple users. {numberOfCollaborators} is a number and {versions} is a range of versions.',\n },\n versionMultipleUsersRestored: {\n id: 'be.versionMultipleUsersRestored',\n defaultMessage: '{numberOfCollaborators} collaborators restored v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions restored by multiple users. {numberOfCollaborators} is a number. {versions} is a range of versions.',\n },\n versionMultipleUsersTrashed: {\n id: 'be.versionMultipleUsersTrashed',\n defaultMessage: '{numberOfCollaborators} collaborators deleted v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions trashed by multiple users. {numberOfCollaborators} is a number. {versions} is a range of versions.',\n },\n versionUploadCollapsed: {\n id: 'be.versionUploadCollapsed',\n defaultMessage: '{name} uploaded v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions uploaded by a single user. {name} is the user who uploaded. {versions} is a range of versions.',\n },\n versionRestoreCollapsed: {\n id: 'be.versionRestoreCollapsed',\n defaultMessage: '{name} restored v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions restored by a single user. {name} is the user who restored. {versions} is a range of versions.',\n },\n versionTrashCollapsed: {\n id: 'be.versionTrashCollapsed',\n defaultMessage: '{name} deleted v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions deleted by a single user. {name} is the user who deleted. {versions} is a range of versions.',\n },\n versionUploaded: {\n id: 'be.versionUploaded',\n defaultMessage: '{name} uploaded v{version_number}',\n description:\n 'Message displayed in the activity feed for a newly uploaded version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n fileRequestDisplayName: {\n defaultMessage: 'File Request',\n description:\n 'name of the File Request feature used to translate when a File Request is uploaded by the service',\n id: 'be.fileRequestDisplayName',\n },\n defaultInlineErrorContentMessage: {\n id: 'be.defaultInlineErrorContentMessage',\n description: 'Default bottom inline error message',\n defaultMessage: 'Please try again later.',\n },\n fileDescriptionInlineErrorTitleMessage: {\n id: 'be.fileDescriptionInlineErrorTitleMessage',\n description: 'Inline error title message for file description',\n defaultMessage: 'Something went wrong when saving the description.',\n },\n defaultErrorMaskHeaderMessage: {\n id: 'be.defaultErrorMaskHeaderMessage',\n description: 'Default error mask top message',\n defaultMessage: 'We’re sorry, something went wrong.',\n },\n defaultErrorMaskSubHeaderMessage: {\n id: 'be.defaultErrorMaskSubHeaderMessage',\n description: 'Default error mask bottom message',\n defaultMessage: 'Please refresh the page or try again later.',\n },\n fileAccessStatsErrorHeaderMessage: {\n id: 'be.fileAccessStatsErrorHeaderMessage',\n description: 'File access stats error message',\n defaultMessage: 'Something went wrong when fetching the access stats.',\n },\n fileAccessStatsPermissionsError: {\n id: 'be.accessStatsPermissionsError',\n description: 'The text for when the user does not have permissions to see access stats.',\n defaultMessage: 'Sorry, you do not have permission to see the access stats for this file.',\n },\n fileClassificationErrorHeaderMessage: {\n id: 'be.fileClassificationErrorHeaderMessage',\n description: 'File classification error message',\n defaultMessage: 'Something went wrong when fetching classification.',\n },\n currentUserErrorHeaderMessage: {\n id: 'be.currentUserErrorHeaderMessage',\n description: 'Current user error message',\n defaultMessage: 'Something went wrong when fetching the current user.',\n },\n activityFeedItemApiError: {\n id: 'be.activityFeedItemApiError',\n description: 'Error message for feed item API errors',\n defaultMessage: 'There was a problem loading the activity feed. Please refresh the page or try again later.',\n },\n nextFile: {\n defaultMessage: 'Next File',\n description: 'Next file button title',\n id: 'be.nextFile',\n },\n nextPage: {\n defaultMessage: 'Next Page',\n description: 'Next page button tooltip',\n id: 'be.pagination.nextPage',\n },\n nextPageButton: {\n defaultMessage: 'Next',\n description: 'Next page button',\n id: 'be.pagination.nextPageButton',\n },\n pageStatus: {\n defaultMessage: '{pageNumber} of {pageCount}',\n description: 'Pagination menu button with current page number out of total number of pages',\n id: 'be.pagination.pageStatus',\n },\n pageEntryStatus: {\n defaultMessage: 'Showing {startEntryIndex} to {endEntryIndex} of {totalCount} entries',\n description: 'Pagination menu status with the range of entries shown',\n id: 'be.pagination.pageEntryStatus',\n },\n previousFile: {\n defaultMessage: 'Previous File',\n description: 'Previous file button title',\n id: 'be.previousFile',\n },\n previousPage: {\n defaultMessage: 'Previous Page',\n description: 'Previous page button tooltip',\n id: 'be.pagination.previousPage',\n },\n previousPageButton: {\n defaultMessage: 'Previous',\n description: 'Previous page button',\n id: 'be.pagination.previousPageButton',\n },\n previousSegment: {\n id: 'be.previousSegment',\n description: 'Title for previous segment on skill timeline',\n defaultMessage: 'Previous Segment',\n },\n nextSegment: {\n id: 'be.nextSegment',\n description: 'Title for next segment on skill timeline',\n defaultMessage: 'Next Segment',\n },\n transcriptEdit: {\n id: 'be.transcriptEdit',\n description: 'Message to the user for editing the transcript in the sidebar',\n defaultMessage: 'Click any section to edit.',\n },\n emptyOpenWithDescription: {\n id: 'be.emptyOpenWithDescription',\n description: 'Message to the user when there are no Open With integrations',\n defaultMessage: 'No integrations are available for this file',\n },\n errorOpenWithDescription: {\n id: 'be.errorOpenWithDescription',\n description: 'Message to the user when the open with element errors',\n defaultMessage: 'Opening this file with other services is currently unavailable',\n },\n defaultOpenWithDescription: {\n id: 'be.defaultOpenWithDescription',\n description: 'Message to the user when there is at least one Open With integration available',\n defaultMessage: 'Open this file with a partner service',\n },\n executeIntegrationOpenWithErrorHeader: {\n id: 'be.executeIntegrationOpenWithErrorHeader',\n description: 'Header message to the user when an Open With integration fails to execute',\n defaultMessage: 'We’re sorry, this integration is currently unavailable.',\n },\n executeIntegrationOpenWithErrorSubHeader: {\n id: 'be.executeIntegrationOpenWithErrorSubHeader',\n description: 'Sub header message to the user when an Open With integration fails to execute',\n defaultMessage: 'Please try again later.',\n },\n boxToolsInstallMessage: {\n id: 'be.boxToolsInstallMessage',\n description: 'Message shown telling user how to install Box Tools',\n defaultMessage: 'Install {boxTools} to open this file on your desktop',\n },\n boxToolsBlacklistedError: {\n id: 'be.boxEditBlacklistedError',\n description: 'Message when Box Tools cannot open a particular file type',\n defaultMessage: 'This file cannot be opened locally',\n },\n drawAnnotation: {\n id: 'be.drawAnnotation',\n description: 'Message to the user to enter into drawing annotation mode',\n defaultMessage: 'Drawing annotation mode',\n },\n pointAnnotation: {\n id: 'be.pointAnnotation',\n description: 'Message to the user to enter into point annotation mode',\n defaultMessage: 'Point annotation mode',\n },\n expand: {\n id: 'be.expand',\n description: 'Message to the user to expand the Transcript entries',\n defaultMessage: 'Expand',\n },\n collapse: {\n id: 'be.collapse',\n description: 'Message to the user to collapse the Transcript entries',\n defaultMessage: 'Collapse',\n },\n back: {\n id: 'be.back',\n description: 'Label for back button',\n defaultMessage: 'Back',\n },\n priorCollaborator: {\n id: 'be.priorCollaborator',\n description:\n 'If a user has been deleted, we call the user \"a prior collaborator\" - meaning someone who used to be able to collaborate on the content.',\n defaultMessage: 'A Prior Collaborator',\n },\n moreOptions: {\n id: 'be.moreOptions',\n description: 'Label for a button that displays more options',\n defaultMessage: 'More options',\n },\n bookmark: {\n id: 'be.bookmark',\n description: 'Icon title for a Box item of type bookmark or web-link',\n defaultMessage: 'Bookmark',\n },\n archive: {\n id: 'be.archive',\n description: 'Icon title for a Box item of type folder is an archive',\n defaultMessage: 'Archive',\n },\n archivedFolder: {\n id: 'be.archivedFolder',\n description: 'Icon title for a Box item of type folder is in archive',\n defaultMessage: 'Archived Folder',\n },\n collaboratedFolder: {\n id: 'be.collaboratedFolder',\n description: 'Icon title for a Box item of type folder that has collaborators',\n defaultMessage: 'Collaborated Folder',\n },\n externalFolder: {\n id: 'be.externalFolder',\n description: \"Icon title for a Box item of type folder that has collaborators outside of the user's enterprise\",\n defaultMessage: 'External Folder',\n },\n file: {\n id: 'be.file',\n description: 'Icon title for a Box item of type file',\n defaultMessage: 'File',\n },\n iconFile: {\n id: 'be.iconFile',\n description: 'Aria label for file icon',\n defaultMessage: '{extension} File',\n },\n folder: {\n id: 'be.folder',\n description: 'Icon title for a Box item of type folder',\n defaultMessage: 'Folder',\n },\n personalFolder: {\n id: 'be.personalFolder',\n description: 'Icon title for a Box item of type folder that is private and has no collaborators',\n defaultMessage: 'Personal Folder',\n },\n});\n\nexport default messages;\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"messages.js","names":["defineMessages","messages","today","yesterday","logo","error","preview","previewError","previewErrorBlockedByPolicy","boxEditErrorBlockedByPolicy","previewUpdate","complete","loading","reload","open","close","copy","delete","rename","remove","resume","resumeAll","retry","share","download","save","cancel","create","choose","upload","uploadEmptyState","uploadErrorState","uploadSuccessState","add","gridView","gridViewIncreaseColumnSize","gridViewDecreaseColumnSize","gridViewSliderLabel","listView","sort","newFolder","in","print","selected","max","nameDate","modified","modifiedDateBy","modifiedDate","created","owner","uploader","interacted","interactedDate","name","size","deleteDialogLabel","deleteDialogFileText","deleteDialogFolderText","renameDialogLabel","renameDialogText","renameDialogErrorInvalid","renameDialogErrorInUse","renameDialogErrorTooLong","createDialogLabel","createDialogText","createDialogErrorInvalid","createDialogErrorTooLong","createDialogErrorInUse","shareDialogLabel","shareDialogText","shareDialogNone","shareAccessOpen","shareAccessCollab","shareAccessCompany","shareAccessNone","shareAccessRemove","searchClear","clearSelection","searchPlaceholder","sidebarAccessStats","sidebarContentInsights","sidebarShow","sidebarHide","description","descriptionPlaceholder","sidebarDetailsTitle","sidebarSkillsTitle","sidebarSkillsErrorTitle","sidebarSkillsErrorContent","sidebarBoxAITitle","sidebarBoxAIContent","sidebarBoxAISwitchToModalView","sidebarActivityTitle","sidebarDocGenTitle","sidebarDocGenTooltip","sidebarMetadataTitle","sidebarMetadataEditingErrorContent","sidebarMetadataFetchingErrorContent","sidebarFileFetchingErrorContent","sidebarProperties","sidebarNavLabel","defaultSkill","statusSkill","topicsSkill","keywordSkill","faceSkill","transcriptSkill","skillPendingStatus","skillInvokedStatus","skillUnknownError","skillInvalidFileSizeError","skillInvalidFileExtensionError","skillNoInfoFoundError","skillFileProcessingError","uploadErrorTooManyFiles","uploadError","uploadEmptyWithFolderUploadEnabled","uploadEmptyWithFolderUploadDisabled","uploadEmptyFileInput","uploadEmptyFolderInput","uploadNoDragDrop","uploadInProgress","uploadSuccess","uploadSuccessFileInput","uploadSuccessFolderInput","uploadOptions","nameASC","nameDESC","dateASC","dateDESC","sizeASC","sizeDESC","breadcrumbLabel","errorBreadcrumb","rootBreadcrumb","searchBreadcrumb","recentsBreadcrumb","selectedBreadcrumb","uploadsManagerUploadInProgress","uploadsManagerUploadPrompt","uploadsManagerUploadComplete","uploadsManagerUploadFailed","uploadsCancelButtonTooltip","uploadsRetryButtonTooltip","uploadsFileSizeLimitExceededErrorMessage","uploadsFileSizeLimitExceededErrorMessageForUpgradeCta","uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta","uploadsStorageLimitErrorMessage","uploadsPendingFolderSizeLimitErrorMessage","uploadsItemNameInUseErrorMessage","uploadsProvidedFolderNameInvalidMessage","uploadsOneOrMoreChildFoldersFailedToUploadMessage","uploadsPackageUploadErrorMessage","uploadsDefaultErrorMessage","errorOccured","editLabel","getVersionInfo","keywordsApplied","keywordsList","noActivity","noActivityAnnotationPrompt","noActivityCommentPrompt","versionDeleted","versionPromoted","versionRestored","versionMultipleUsersUploaded","versionMultipleUsersRestored","versionMultipleUsersTrashed","versionUploadCollapsed","versionRestoreCollapsed","versionTrashCollapsed","versionUploaded","fileRequestDisplayName","defaultInlineErrorContentMessage","fileDescriptionInlineErrorTitleMessage","defaultErrorMaskHeaderMessage","defaultErrorMaskSubHeaderMessage","fileAccessStatsErrorHeaderMessage","fileAccessStatsPermissionsError","fileClassificationErrorHeaderMessage","currentUserErrorHeaderMessage","activityFeedItemApiError","nextFile","nextPage","nextPageButton","pageStatus","pageEntryStatus","previousFile","previousPage","previousPageButton","previousSegment","nextSegment","transcriptEdit","emptyOpenWithDescription","errorOpenWithDescription","defaultOpenWithDescription","executeIntegrationOpenWithErrorHeader","executeIntegrationOpenWithErrorSubHeader","boxToolsInstallMessage","boxToolsBlacklistedError","drawAnnotation","pointAnnotation","expand","collapse","back","priorCollaborator","moreOptions","bookmark","archive","archivedFolder","collaboratedFolder","externalFolder","file","iconFile","folder","personalFolder","numFilesSelected"],"sources":["../../../src/elements/common/messages.js"],"sourcesContent":["/**\n * @flow\n * @file i18n messages\n * @author Box\n */\n\nimport { defineMessages } from 'react-intl';\n\nconst messages = defineMessages({\n today: {\n id: 'be.today',\n description: 'Shown instead of todays date.',\n defaultMessage: 'today',\n },\n yesterday: {\n id: 'be.yesterday',\n description: 'Shown instead of yesterdays date.',\n defaultMessage: 'yesterday',\n },\n logo: {\n id: 'be.logo',\n description: 'Placeholder for a logo.',\n defaultMessage: 'Logo',\n },\n error: {\n id: 'be.error',\n description: 'Generic error label.',\n defaultMessage: 'Error',\n },\n preview: {\n id: 'be.preview',\n description: 'Label for preview action.',\n defaultMessage: 'Preview',\n },\n previewError: {\n id: 'be.previewError',\n description: 'Error message when Preview fails due to the files call.',\n defaultMessage: 'This preview didn’t load. Please try to open or download the file to view.',\n },\n previewErrorBlockedByPolicy: {\n id: 'be.previewErrorBlockedByPolicy',\n description: 'Error message when Preview fails due to the files call which is blocked by an access policy.',\n defaultMessage: 'Your access to this content is restricted due to a security policy.',\n },\n boxEditErrorBlockedByPolicy: {\n id: 'be.boxEditErrorBlockedByPolicy',\n defaultMessage: 'Local editing of this content has been disabled based on an access policy',\n description: 'Shown in the open with dropdown when an application is blocked by shield access policy.',\n },\n previewUpdate: {\n id: 'be.previewUpdate',\n description: 'Message when new preview is available.',\n defaultMessage: 'A new version of this file is available.',\n },\n complete: {\n id: 'be.complete',\n description: 'Label for complete state.',\n defaultMessage: 'Complete',\n },\n loading: {\n id: 'be.loading',\n description: 'Label for loading state.',\n defaultMessage: 'Loading',\n },\n reload: {\n id: 'be.reload',\n description: 'Label for reload button.',\n defaultMessage: 'Reload',\n },\n open: {\n id: 'be.open',\n description: 'Label for open action.',\n defaultMessage: 'Open',\n },\n close: {\n id: 'be.close',\n description: 'Label for close action.',\n defaultMessage: 'Close',\n },\n copy: {\n id: 'be.copy',\n description: 'Label for copy action.',\n defaultMessage: 'Copy',\n },\n delete: {\n id: 'be.delete',\n description: 'Label for delete action.',\n defaultMessage: 'Delete',\n },\n rename: {\n id: 'be.rename',\n description: 'Label for rename action.',\n defaultMessage: 'Rename',\n },\n remove: {\n id: 'be.remove',\n description: 'Label for remove action.',\n defaultMessage: 'Remove',\n },\n resume: {\n id: 'be.resume',\n description: 'Label for resume action for a single file.',\n defaultMessage: 'Resume',\n },\n resumeAll: {\n id: 'be.resumeAll',\n description: 'Label for resume action for multiple files.',\n defaultMessage: 'Resume All',\n },\n retry: {\n id: 'be.retry',\n description: 'Label for retry action.',\n defaultMessage: 'Retry',\n },\n share: {\n id: 'be.share',\n description: 'Label for share action.',\n defaultMessage: 'Share',\n },\n download: {\n id: 'be.download',\n description: 'Label for download action.',\n defaultMessage: 'Download',\n },\n save: {\n id: 'be.save',\n description: 'Label for save action.',\n defaultMessage: 'Save',\n },\n cancel: {\n id: 'be.cancel',\n description: 'Label for cancel action.',\n defaultMessage: 'Cancel',\n },\n create: {\n id: 'be.create',\n description: 'Label for create action.',\n defaultMessage: 'Create',\n },\n choose: {\n id: 'be.choose',\n description: 'Label for choose action.',\n defaultMessage: 'Choose',\n },\n upload: {\n id: 'be.upload',\n description: 'Label for upload action.',\n defaultMessage: 'Upload',\n },\n uploadEmptyState: {\n id: 'be.uploadEmptyState',\n description: 'Label for upload empty state.',\n defaultMessage: 'Empty state',\n },\n uploadErrorState: {\n id: 'be.uploadErrorState',\n description: 'Label for upload error state.',\n defaultMessage: 'Error state',\n },\n uploadSuccessState: {\n id: 'be.uploadSuccessState',\n description: 'Label for upload success state.',\n defaultMessage: 'Success state',\n },\n add: {\n id: 'be.add',\n description: 'Label for add action',\n defaultMessage: 'Add',\n },\n gridView: {\n id: 'be.gridView',\n description: 'Label for switching to grid view',\n defaultMessage: 'Switch to Grid View',\n },\n gridViewIncreaseColumnSize: {\n id: 'be.gridView.increaseColumnSize',\n description: 'Label for increasing the size of columns in grid view',\n defaultMessage: 'Increase column size',\n },\n gridViewDecreaseColumnSize: {\n id: 'be.gridView.decreaseColumnSize',\n description: 'Label for decreasing the size of columns in grid view',\n defaultMessage: 'Decrease column size',\n },\n gridViewSliderLabel: {\n id: 'be.gridView.sliderLabel',\n description: 'Label for the grid view size slider',\n defaultMessage: 'Grid view size',\n },\n listView: {\n id: 'be.listView',\n description: 'Label for switching to list view',\n defaultMessage: 'Switch to List View',\n },\n sort: {\n id: 'be.sort',\n description: 'Label for sort action',\n defaultMessage: 'Sort',\n },\n newFolder: {\n id: 'be.newFolder',\n description: 'Label for create new folder action.',\n defaultMessage: 'New Folder',\n },\n in: {\n id: 'be.in',\n description: 'Label for in action.',\n defaultMessage: 'In',\n },\n print: {\n id: 'be.print',\n description: 'Label for print action',\n defaultMessage: 'Print',\n },\n selected: {\n id: 'be.selected',\n description: 'Default label for selected items list in the footer.',\n defaultMessage: '{count} Selected',\n },\n max: {\n id: 'be.max',\n description: 'Indicator on the footer that max items have been selected.',\n defaultMessage: 'max',\n },\n nameDate: {\n id: 'be.nameDate',\n description: 'Text for modified or interacted date with user.',\n defaultMessage: '{date} by {name}',\n },\n modified: {\n id: 'be.itemModified',\n description: 'Label for item modified date.',\n defaultMessage: 'Modified',\n },\n modifiedDateBy: {\n id: 'be.modifiedDateBy',\n description: 'Text for modified date with user with modified prefix.',\n defaultMessage: 'Modified {date} by {name}',\n },\n modifiedDate: {\n id: 'be.modifiedDate',\n description: 'Text for modified date with modified prefix.',\n defaultMessage: 'Modified {date}',\n },\n created: {\n id: 'be.itemCreated',\n description: 'Label for item created date.',\n defaultMessage: 'Created',\n },\n owner: {\n id: 'be.itemOwner',\n description: 'Label for item owner.',\n defaultMessage: 'Owner',\n },\n uploader: {\n id: 'be.itemUploader',\n description: 'label for item uploader.',\n defaultMessage: 'Uploader',\n },\n interacted: {\n id: 'be.itemInteracted',\n description: 'Label for item last accessed date.',\n defaultMessage: 'Last Accessed',\n },\n interactedDate: {\n id: 'be.interactedDate',\n description: 'Text for last accessed date with last access prefix.',\n defaultMessage: 'Last accessed on {date}',\n },\n name: {\n id: 'be.itemName',\n description: 'Label for item name attribute.',\n defaultMessage: 'Name',\n },\n size: {\n id: 'be.itemSize',\n description: 'Label for item size attribute.',\n defaultMessage: 'Size',\n },\n deleteDialogLabel: {\n id: 'be.deleteDialogLabel',\n description: 'Label for delete confirmation dialog',\n defaultMessage: 'Confirm Delete',\n },\n deleteDialogFileText: {\n id: 'be.deleteDialogFileText',\n description: 'Text for delete confirmation dialog for files',\n defaultMessage: 'Are you sure you want to delete {name}?',\n },\n deleteDialogFolderText: {\n id: 'be.deleteDialogFolderText',\n description: 'Text for delete confirmation dialog for folders',\n defaultMessage: 'Are you sure you want to delete {name} and all its contents?',\n },\n renameDialogLabel: {\n id: 'be.renameDialogLabel',\n description: 'Label for rename dialog',\n defaultMessage: 'Rename',\n },\n renameDialogText: {\n id: 'be.renameDialogText',\n description: 'Text for rename dialog',\n defaultMessage: 'Please enter a new name for {name}:',\n },\n renameDialogErrorInvalid: {\n id: 'be.renameDialogErrorInvalid',\n description: 'Error text for rename dialog when name is invalid',\n defaultMessage: 'This name is invalid.',\n },\n renameDialogErrorInUse: {\n id: 'be.renameDialogErrorInUse',\n description: 'Error text for rename dialog when name is already in use',\n defaultMessage: 'An item with the same name already exists.',\n },\n renameDialogErrorTooLong: {\n id: 'be.renameDialogErrorTooLong',\n description: 'Error text for rename dialog when name is too long',\n defaultMessage: 'This name is too long.',\n },\n createDialogLabel: {\n id: 'be.createDialogLabel',\n description: 'Label for create folder dialog',\n defaultMessage: 'New Folder',\n },\n createDialogText: {\n id: 'be.createDialogText',\n description: 'Text for create folder dialog',\n defaultMessage: 'Please enter a name.',\n },\n createDialogErrorInvalid: {\n id: 'be.createDialogErrorInvalid',\n description: 'Error text for create folder dialog when name is invalid',\n defaultMessage: 'This is an invalid folder name.',\n },\n createDialogErrorTooLong: {\n id: 'be.createDialogErrorTooLong',\n description: 'Error text for create folder dialog when name is too long',\n defaultMessage: 'This folder name is too long.',\n },\n createDialogErrorInUse: {\n id: 'be.createDialogErrorInUse',\n description: 'Error text for create folder dialog when name is already in use',\n defaultMessage: 'A folder with the same name already exists.',\n },\n shareDialogLabel: {\n id: 'be.shareDialogLabel',\n description: 'Label for shared link dialog',\n defaultMessage: 'Share',\n },\n shareDialogText: {\n id: 'be.shareDialogText',\n description: 'Text for share link dialog',\n defaultMessage: 'Shared Link:',\n },\n shareDialogNone: {\n id: 'be.shareDialogNone',\n description: 'Text for no shared link',\n defaultMessage: 'None',\n },\n shareAccessOpen: {\n id: 'be.shareAccessOpen',\n description: 'Dropdown select option for open share access.',\n defaultMessage: 'Access: People with the link',\n },\n shareAccessCollab: {\n id: 'be.shareAccessCollab',\n description: 'Dropdown select option for collaborator share access.',\n defaultMessage: 'Access: People in this folder',\n },\n shareAccessCompany: {\n id: 'be.shareAccessCompany',\n description: 'Dropdown select option for enterprise share access.',\n defaultMessage: 'People in this company',\n },\n shareAccessNone: {\n id: 'be.shareAccessNone',\n description: 'Dropdown select option for no access.',\n defaultMessage: 'No shared link',\n },\n shareAccessRemove: {\n id: 'be.shareAccessRemove',\n description: 'Dropdown select option to remove access.',\n defaultMessage: 'Remove shared link',\n },\n searchClear: {\n id: 'be.searchClear',\n description: 'Aria label for the clear button in the search box.',\n defaultMessage: 'Clear search',\n },\n clearSelection: {\n id: 'be.clearSelection',\n description: 'Aria label for the clear selection button.',\n defaultMessage: 'Clear selection',\n },\n searchPlaceholder: {\n id: 'be.searchPlaceholder',\n description: 'Shown as a placeholder in the search box.',\n defaultMessage: 'Search files and folders',\n },\n sidebarAccessStats: {\n id: 'be.sidebarAccessStats',\n description: 'Title for the sidebar access stats.',\n defaultMessage: 'Access Stats',\n },\n sidebarContentInsights: {\n id: 'be.sidebarContentInsights',\n description: 'Title for the sidebar content insights.',\n defaultMessage: 'Content Insights',\n },\n sidebarShow: {\n id: 'be.sidebarShow',\n description: 'Label for the show sidebar button.',\n defaultMessage: 'Show Sidebar',\n },\n sidebarHide: {\n id: 'be.sidebarHide',\n description: 'Label for the hide sidebar button.',\n defaultMessage: 'Hide Sidebar',\n },\n description: {\n id: 'be.description',\n description: 'Label for the description field in the preview sidebar.',\n defaultMessage: 'Description',\n },\n descriptionPlaceholder: {\n id: 'be.descriptionPlaceholder',\n description: 'Placeholder for file description in preview sidebar.',\n defaultMessage: 'Enter a description',\n },\n sidebarDetailsTitle: {\n id: 'be.sidebarDetailsTitle',\n description: 'Title for the preview details sidebar.',\n defaultMessage: 'Details',\n },\n sidebarSkillsTitle: {\n id: 'be.sidebarSkillsTitle',\n description: 'Title for the preview details skills.',\n defaultMessage: 'Skills',\n },\n sidebarSkillsErrorTitle: {\n id: 'be.sidebarSkillsErrorTitle',\n description: 'Generic error title for skills editing.',\n defaultMessage: 'Skills Error',\n },\n sidebarSkillsErrorContent: {\n id: 'be.sidebarSkillsErrorContent',\n description: 'Generic error content for skills editing.',\n defaultMessage: 'An error has occurred while updating skills. Please refresh the page and try again.',\n },\n sidebarBoxAITitle: {\n id: 'be.sidebarBoxAITitle',\n description: 'Title for the preview Box AI feed.',\n defaultMessage: 'Box AI',\n },\n sidebarBoxAIContent: {\n id: 'be.sidebarBoxAIContent',\n description: 'Generic Box AI content type opened used in welcome message and placeholder',\n defaultMessage: 'content',\n },\n sidebarBoxAISwitchToModalView: {\n id: 'be.sidebarBoxAISwitchToModalView',\n description: 'Label for button that triggers switch to Box AI Modal',\n defaultMessage: 'Switch to modal view',\n },\n sidebarActivityTitle: {\n id: 'be.sidebarActivityTitle',\n description: 'Title for the preview activity feed.',\n defaultMessage: 'Activity',\n },\n sidebarDocGenTitle: {\n id: 'be.sidebarDocGenTitle',\n description: 'Title for the DocGen sidebar tab.',\n defaultMessage: 'Doc Gen Tags',\n },\n sidebarDocGenTooltip: {\n id: 'be.sidebarDocGenTooltip',\n defaultMessage: 'Box Doc Gen',\n description: 'Icon title for a Box file of type DocGen template',\n },\n sidebarMetadataTitle: {\n id: 'be.sidebarMetadataTitle',\n description: 'Title for the preview metadata.',\n defaultMessage: 'Metadata',\n },\n sidebarMetadataEditingErrorContent: {\n id: 'be.sidebarMetadataEditingErrorContent',\n description: 'Generic error content for metadata editing.',\n defaultMessage: 'An error has occurred while updating metadata. Please refresh the page and try again.',\n },\n sidebarMetadataFetchingErrorContent: {\n id: 'be.sidebarMetadataFetchingErrorContent',\n description: 'Generic error content for metadata fetching.',\n defaultMessage: 'An error has occurred while fetching metadata. Please refresh the page and try again.',\n },\n sidebarFileFetchingErrorContent: {\n id: 'be.sidebarFileFetchingErrorContent',\n description: 'Generic error content for file fetching.',\n defaultMessage: 'An error has occurred while fetching your Box file. Please refresh the page and try again.',\n },\n sidebarProperties: {\n id: 'be.sidebarProperties',\n description: 'Label for file properties section in the preview sidebar',\n defaultMessage: 'File Properties',\n },\n sidebarNavLabel: {\n id: 'be.sidebarNavLabel',\n description: 'Label for the sidebar tabs list',\n defaultMessage: 'Sidebar',\n },\n defaultSkill: {\n id: 'be.defaultSkill',\n description: 'Label for default skill section in the preview sidebar',\n defaultMessage: 'Skill Card',\n },\n statusSkill: {\n id: 'be.statusSkill',\n description: 'Label for status skill card in the preview sidebar',\n defaultMessage: 'Status',\n },\n topicsSkill: {\n id: 'be.topicsSkill',\n description: 'Label for keywords/topics skill section in the preview sidebar',\n defaultMessage: 'Topics',\n },\n keywordSkill: {\n id: 'be.keywordSkill',\n description: 'Label for keywords/topics skill section in the preview sidebar',\n defaultMessage: 'Topics',\n },\n faceSkill: {\n id: 'be.faceSkill',\n description: 'Label for face skill section in the preview sidebar',\n defaultMessage: 'Faces',\n },\n transcriptSkill: {\n id: 'be.transcriptSkill',\n description: 'Label for transcript skill section in the preview sidebar',\n defaultMessage: 'Transcript',\n },\n skillPendingStatus: {\n id: 'be.skillPendingStatus',\n description: 'Default message when skills are still running',\n defaultMessage: 'We’re working on processing your file - please hold!',\n },\n skillInvokedStatus: {\n id: 'be.skillInvokedStatus',\n description: 'Default message when skills are waiting to run',\n defaultMessage: 'We’re preparing to process your file - please hold!',\n },\n skillUnknownError: {\n id: 'be.skillUnknownError',\n description: 'Default error message when skills fail to run',\n defaultMessage: 'Something went wrong with running this skill or fetching its data.',\n },\n skillInvalidFileSizeError: {\n id: 'be.skillInvalidFileSizeError',\n description: 'Error message when skill fails due to file size',\n defaultMessage: 'We’re sorry, no skills information was found. This file size is currently not supported.',\n },\n skillInvalidFileExtensionError: {\n id: 'be.skillInvalidFileExtensionError',\n description: 'Error message when skill fails due to file extension',\n defaultMessage: 'We’re sorry, no skills information was found. This file extension is currently not supported.',\n },\n skillNoInfoFoundError: {\n id: 'be.skillNoInfoFoundError',\n description: 'Error message when a skill has no data',\n defaultMessage: 'We’re sorry, no skills information was found.',\n },\n skillFileProcessingError: {\n id: 'be.skillFileProcessingError',\n description: 'Error message when a skill processing failed',\n defaultMessage: 'We’re sorry, something went wrong with processing the file.',\n },\n uploadErrorTooManyFiles: {\n id: 'be.uploadErrorTooManyFiles',\n description: 'Message shown when too many files are uploaded at once',\n defaultMessage: 'You can only upload up to {fileLimit} file(s) at a time.',\n },\n uploadError: {\n id: 'be.uploadError',\n description: 'Message shown when there is a network error when uploading',\n defaultMessage: 'A network error has occurred while trying to upload.',\n },\n uploadEmptyWithFolderUploadEnabled: {\n id: 'be.uploadEmptyWithFolderUploadEnabled',\n description: 'Message shown when there are no items to upload and folder upload is enabled',\n defaultMessage: 'Drag and drop files and folders',\n },\n uploadEmptyWithFolderUploadDisabled: {\n id: 'be.uploadEmptyWithFolderUploadDisabled',\n description: 'Message shown when there are no items to upload and folder upload is disabled',\n defaultMessage: 'Drag and drop files',\n },\n uploadEmptyFileInput: {\n id: 'be.uploadEmptyFileInput',\n description: 'Message shown for upload link for uploading more files when there are no items to upload',\n defaultMessage: 'Browse your device',\n },\n uploadEmptyFolderInput: {\n id: 'be.uploadEmptyFolderInput',\n description: 'Message shown for upload link for uploading more folders when there are no items to upload',\n defaultMessage: 'Select Folders',\n },\n uploadNoDragDrop: {\n id: 'be.uploadNoDragDrop',\n description: 'Message shown on a device with no drag and drop support when there are no items to upload',\n defaultMessage: 'Select files from your device',\n },\n uploadInProgress: {\n id: 'be.uploadInProgress',\n description: 'Message shown when user drag and drops files onto uploads in progress',\n defaultMessage: 'Drag and drop to add additional files',\n },\n uploadSuccess: {\n id: 'be.uploadSuccess',\n description: 'Message shown when all files have been successfully uploaded',\n defaultMessage: 'Success! Your files have been uploaded.',\n },\n uploadSuccessFileInput: {\n id: 'be.uploadSuccessFileInput',\n description: 'Message shown for upload link for uploading more files after a successful upload',\n defaultMessage: 'Select More Files',\n },\n uploadSuccessFolderInput: {\n id: 'be.uploadSuccessFolderInput',\n description: 'Message shown for upload link for uploading more folders after a successful upload',\n defaultMessage: 'Select More Folders',\n },\n uploadOptions: {\n id: 'be.uploadOptions',\n description: 'Message shown for letting user choose between {option1} and {option2}',\n defaultMessage: '{option1} or {option2}',\n },\n nameASC: {\n id: 'be.nameASC',\n description: 'Name ascending option shown in the share access drop down select.',\n defaultMessage: 'Name: A → Z',\n },\n nameDESC: {\n id: 'be.nameDESC',\n description: 'Name descending option shown in the share access drop down select.',\n defaultMessage: 'Name: Z → A',\n },\n dateASC: {\n id: 'be.dateASC',\n description: 'Date ascending option shown in the share access drop down select.',\n defaultMessage: 'Date: Oldest → Newest',\n },\n dateDESC: {\n id: 'be.dateDESC',\n description: 'Date descending option shown in the share access drop down select.',\n defaultMessage: 'Date: Newest → Oldest',\n },\n sizeASC: {\n id: 'be.sizeASC',\n description: 'Size ascending option shown in the share access drop down select.',\n defaultMessage: 'Size: Smallest → Largest',\n },\n sizeDESC: {\n id: 'be.sizeDESC',\n description: 'Size descending option shown in the share access drop down select.',\n defaultMessage: 'Size: Largest → Smallest',\n },\n breadcrumbLabel: {\n id: 'be.breadcrumb.breadcrumbLabel',\n description: 'Aria label for describing \"breadcrumb\"',\n defaultMessage: 'Breadcrumb',\n },\n errorBreadcrumb: {\n id: 'be.errorBreadcrumb',\n description: 'Default label for signifying error in the sub header.',\n defaultMessage: 'Error',\n },\n rootBreadcrumb: {\n id: 'be.rootBreadcrumb',\n description: 'Default label for root folder.',\n defaultMessage: 'All Files',\n },\n searchBreadcrumb: {\n id: 'be.searchBreadcrumb',\n description: 'Shown as the title in the sub header while searching.',\n defaultMessage: 'Search Results',\n },\n recentsBreadcrumb: {\n id: 'be.recentsBreadcrumb',\n description: 'Shown as the title in the sub header when showing recents.',\n defaultMessage: 'Recents',\n },\n selectedBreadcrumb: {\n id: 'be.selectedBreadcrumb',\n description: 'Shown as the title in the sub header while showing selected items.',\n defaultMessage: 'Selected Items',\n },\n uploadsManagerUploadInProgress: {\n id: 'be.uploadsManagerUploadInProgress',\n description: 'Text shown when uploads are in progress',\n defaultMessage: 'Uploading',\n },\n uploadsManagerUploadPrompt: {\n id: 'be.uploadsManagerUploadPrompt',\n description: 'Text shown to guide the user to drag drop file to upload',\n defaultMessage: 'Drop files on this page to upload them into this folder.',\n },\n uploadsManagerUploadComplete: {\n id: 'be.uploadsManagerUploadComplete',\n description: 'Text shown when uploads are completed',\n defaultMessage: 'Completed',\n },\n uploadsManagerUploadFailed: {\n id: 'be.uploadsManagerUploadFailed',\n description: 'Text shown when uploads failed',\n defaultMessage: 'Some Uploads Failed',\n },\n uploadsCancelButtonTooltip: {\n id: 'be.uploadsCancelButtonTooltip',\n description: 'Cancel upload button tooltip',\n defaultMessage: 'Cancel this upload',\n },\n uploadsRetryButtonTooltip: {\n id: 'be.uploadsRetryButtonTooltip',\n description: 'Retry upload button tooltip',\n defaultMessage: 'Retry upload',\n },\n uploadsFileSizeLimitExceededErrorMessage: {\n id: 'be.uploadsFileSizeLimitExceededErrorMessage',\n description: 'Error message shown when file size exceeds the limit',\n defaultMessage: 'File size exceeds the folder owner’s file size limit',\n },\n uploadsFileSizeLimitExceededErrorMessageForUpgradeCta: {\n id: 'be.uploadsFileSizeLimitExceededErrorMessageForUpgradeCta',\n description: 'Error message shown when file size exceeds the limit',\n defaultMessage: 'This file exceeds your plan’s upload limit. Upgrade now to store larger files.',\n },\n uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta: {\n id: 'be.uploadsFileSizeLimitExceededUpgradeMessageForUpgradeCta',\n description: 'Upgrade message shown when file size exceeds the limit',\n defaultMessage: 'Upgrade',\n },\n uploadsStorageLimitErrorMessage: {\n id: 'be.uploadsStorageLimitErrorMessage',\n description: 'Error message shown when account storage limit has been reached',\n defaultMessage: 'Account storage limit reached',\n },\n uploadsPendingFolderSizeLimitErrorMessage: {\n id: 'be.uploadsPendingFolderSizeLimitErrorMessage',\n description: 'Error message shown when pending app folder size exceeds the limit',\n defaultMessage: 'Pending app folder size limit exceeded',\n },\n uploadsItemNameInUseErrorMessage: {\n id: 'be.uploadsItemNameInUseErrorMessage',\n description: 'Error message shown when attempting to upload a file which name already exists',\n defaultMessage: 'A file with this name already exists.',\n },\n uploadsProvidedFolderNameInvalidMessage: {\n id: 'be.uploadsProvidedFolderNameInvalidMessage',\n description: 'Error message shown when pending folder upload contains invalid characters',\n defaultMessage: 'Provided folder name, {name}, could not be used to create a folder.',\n },\n uploadsOneOrMoreChildFoldersFailedToUploadMessage: {\n id: 'be.uploadsOneOrMoreChildFoldersFailedToUploadMessage',\n description: 'Error message shown when one or more child folders failed to upload',\n defaultMessage: 'One or more child folders failed to upload.',\n },\n uploadsPackageUploadErrorMessage: {\n id: 'be.uploadsPackageUploadErrorMessage',\n description: 'Error message to display when a macOS package failed to upload',\n defaultMessage: 'Failed to upload package file. Please retry by saving as a single file.',\n },\n uploadsDefaultErrorMessage: {\n id: 'be.uploadsDefaultErrorMessage',\n description: 'Default error message shown when upload fails',\n defaultMessage: 'Something went wrong with the upload. Please try again.',\n },\n errorOccured: {\n id: 'be.errorOccured',\n defaultMessage: 'An error occurred',\n description: 'Title when an error occurs',\n },\n editLabel: {\n id: 'be.editLabel',\n defaultMessage: 'Edit',\n description: 'Label for an edit action',\n },\n getVersionInfo: {\n id: 'be.getVersionInfo',\n defaultMessage: 'Get version information',\n description: 'Aria label for button to get information about a file’s versions',\n },\n keywordsApplied: {\n id: 'be.keywordsAppliedList',\n defaultMessage: 'Keywords were applied',\n description: 'Message displayed in the activity feed for when image keyword search applies keywords',\n },\n keywordsList: {\n id: 'be.keywordsList',\n defaultMessage: 'Keywords: {words}',\n description: 'Label for a list of keywords. {words} are the list of keywords.',\n },\n noActivity: {\n id: 'be.noActivity',\n defaultMessage: 'No activity to show',\n description: 'Message displayed in an empty activity feed',\n },\n noActivityAnnotationPrompt: {\n id: 'be.noActivityAnnotationPrompt',\n defaultMessage: 'Hover over the preview and use the controls at the bottom to annotate the file.',\n description: 'Message shown alongside empty activity feed when user can annotate',\n },\n noActivityCommentPrompt: {\n id: 'be.noActivityCommentPrompt',\n defaultMessage: 'Comment and @mention people to notify them.',\n description: 'Message shown in ',\n },\n versionDeleted: {\n id: 'be.versionDeleted',\n defaultMessage: '{name} deleted v{version_number}',\n description:\n 'Message displayed in the activity feed for a deleted version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n versionPromoted: {\n id: 'be.versionPromoted',\n defaultMessage: '{name} promoted v{version_promoted} to v{version_number}',\n description:\n 'Message displayed in the activity feed for a promoted version. {name} is the user who performed the action. {version_promoted} is the originating file version string. {version_number} is the file version string.',\n },\n versionRestored: {\n id: 'be.versionRestored',\n defaultMessage: '{name} restored v{version_number}',\n description:\n 'Message displayed in the activity feed for a restored version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n versionMultipleUsersUploaded: {\n id: 'be.versionMultipleUsersUploaded',\n defaultMessage: '{numberOfCollaborators} collaborators uploaded v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions uploaded by multiple users. {numberOfCollaborators} is a number and {versions} is a range of versions.',\n },\n versionMultipleUsersRestored: {\n id: 'be.versionMultipleUsersRestored',\n defaultMessage: '{numberOfCollaborators} collaborators restored v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions restored by multiple users. {numberOfCollaborators} is a number. {versions} is a range of versions.',\n },\n versionMultipleUsersTrashed: {\n id: 'be.versionMultipleUsersTrashed',\n defaultMessage: '{numberOfCollaborators} collaborators deleted v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions trashed by multiple users. {numberOfCollaborators} is a number. {versions} is a range of versions.',\n },\n versionUploadCollapsed: {\n id: 'be.versionUploadCollapsed',\n defaultMessage: '{name} uploaded v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions uploaded by a single user. {name} is the user who uploaded. {versions} is a range of versions.',\n },\n versionRestoreCollapsed: {\n id: 'be.versionRestoreCollapsed',\n defaultMessage: '{name} restored v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions restored by a single user. {name} is the user who restored. {versions} is a range of versions.',\n },\n versionTrashCollapsed: {\n id: 'be.versionTrashCollapsed',\n defaultMessage: '{name} deleted v{versions}',\n description:\n 'Message displayed in the activity feed to represent the range of versions deleted by a single user. {name} is the user who deleted. {versions} is a range of versions.',\n },\n versionUploaded: {\n id: 'be.versionUploaded',\n defaultMessage: '{name} uploaded v{version_number}',\n description:\n 'Message displayed in the activity feed for a newly uploaded version. {name} is the user who performed the action. {version_number} is the file version string.',\n },\n fileRequestDisplayName: {\n defaultMessage: 'File Request',\n description:\n 'name of the File Request feature used to translate when a File Request is uploaded by the service',\n id: 'be.fileRequestDisplayName',\n },\n defaultInlineErrorContentMessage: {\n id: 'be.defaultInlineErrorContentMessage',\n description: 'Default bottom inline error message',\n defaultMessage: 'Please try again later.',\n },\n fileDescriptionInlineErrorTitleMessage: {\n id: 'be.fileDescriptionInlineErrorTitleMessage',\n description: 'Inline error title message for file description',\n defaultMessage: 'Something went wrong when saving the description.',\n },\n defaultErrorMaskHeaderMessage: {\n id: 'be.defaultErrorMaskHeaderMessage',\n description: 'Default error mask top message',\n defaultMessage: 'We’re sorry, something went wrong.',\n },\n defaultErrorMaskSubHeaderMessage: {\n id: 'be.defaultErrorMaskSubHeaderMessage',\n description: 'Default error mask bottom message',\n defaultMessage: 'Please refresh the page or try again later.',\n },\n fileAccessStatsErrorHeaderMessage: {\n id: 'be.fileAccessStatsErrorHeaderMessage',\n description: 'File access stats error message',\n defaultMessage: 'Something went wrong when fetching the access stats.',\n },\n fileAccessStatsPermissionsError: {\n id: 'be.accessStatsPermissionsError',\n description: 'The text for when the user does not have permissions to see access stats.',\n defaultMessage: 'Sorry, you do not have permission to see the access stats for this file.',\n },\n fileClassificationErrorHeaderMessage: {\n id: 'be.fileClassificationErrorHeaderMessage',\n description: 'File classification error message',\n defaultMessage: 'Something went wrong when fetching classification.',\n },\n currentUserErrorHeaderMessage: {\n id: 'be.currentUserErrorHeaderMessage',\n description: 'Current user error message',\n defaultMessage: 'Something went wrong when fetching the current user.',\n },\n activityFeedItemApiError: {\n id: 'be.activityFeedItemApiError',\n description: 'Error message for feed item API errors',\n defaultMessage: 'There was a problem loading the activity feed. Please refresh the page or try again later.',\n },\n nextFile: {\n defaultMessage: 'Next File',\n description: 'Next file button title',\n id: 'be.nextFile',\n },\n nextPage: {\n defaultMessage: 'Next Page',\n description: 'Next page button tooltip',\n id: 'be.pagination.nextPage',\n },\n nextPageButton: {\n defaultMessage: 'Next',\n description: 'Next page button',\n id: 'be.pagination.nextPageButton',\n },\n pageStatus: {\n defaultMessage: '{pageNumber} of {pageCount}',\n description: 'Pagination menu button with current page number out of total number of pages',\n id: 'be.pagination.pageStatus',\n },\n pageEntryStatus: {\n defaultMessage: 'Showing {startEntryIndex} to {endEntryIndex} of {totalCount} entries',\n description: 'Pagination menu status with the range of entries shown',\n id: 'be.pagination.pageEntryStatus',\n },\n previousFile: {\n defaultMessage: 'Previous File',\n description: 'Previous file button title',\n id: 'be.previousFile',\n },\n previousPage: {\n defaultMessage: 'Previous Page',\n description: 'Previous page button tooltip',\n id: 'be.pagination.previousPage',\n },\n previousPageButton: {\n defaultMessage: 'Previous',\n description: 'Previous page button',\n id: 'be.pagination.previousPageButton',\n },\n previousSegment: {\n id: 'be.previousSegment',\n description: 'Title for previous segment on skill timeline',\n defaultMessage: 'Previous Segment',\n },\n nextSegment: {\n id: 'be.nextSegment',\n description: 'Title for next segment on skill timeline',\n defaultMessage: 'Next Segment',\n },\n transcriptEdit: {\n id: 'be.transcriptEdit',\n description: 'Message to the user for editing the transcript in the sidebar',\n defaultMessage: 'Click any section to edit.',\n },\n emptyOpenWithDescription: {\n id: 'be.emptyOpenWithDescription',\n description: 'Message to the user when there are no Open With integrations',\n defaultMessage: 'No integrations are available for this file',\n },\n errorOpenWithDescription: {\n id: 'be.errorOpenWithDescription',\n description: 'Message to the user when the open with element errors',\n defaultMessage: 'Opening this file with other services is currently unavailable',\n },\n defaultOpenWithDescription: {\n id: 'be.defaultOpenWithDescription',\n description: 'Message to the user when there is at least one Open With integration available',\n defaultMessage: 'Open this file with a partner service',\n },\n executeIntegrationOpenWithErrorHeader: {\n id: 'be.executeIntegrationOpenWithErrorHeader',\n description: 'Header message to the user when an Open With integration fails to execute',\n defaultMessage: 'We’re sorry, this integration is currently unavailable.',\n },\n executeIntegrationOpenWithErrorSubHeader: {\n id: 'be.executeIntegrationOpenWithErrorSubHeader',\n description: 'Sub header message to the user when an Open With integration fails to execute',\n defaultMessage: 'Please try again later.',\n },\n boxToolsInstallMessage: {\n id: 'be.boxToolsInstallMessage',\n description: 'Message shown telling user how to install Box Tools',\n defaultMessage: 'Install {boxTools} to open this file on your desktop',\n },\n boxToolsBlacklistedError: {\n id: 'be.boxEditBlacklistedError',\n description: 'Message when Box Tools cannot open a particular file type',\n defaultMessage: 'This file cannot be opened locally',\n },\n drawAnnotation: {\n id: 'be.drawAnnotation',\n description: 'Message to the user to enter into drawing annotation mode',\n defaultMessage: 'Drawing annotation mode',\n },\n pointAnnotation: {\n id: 'be.pointAnnotation',\n description: 'Message to the user to enter into point annotation mode',\n defaultMessage: 'Point annotation mode',\n },\n expand: {\n id: 'be.expand',\n description: 'Message to the user to expand the Transcript entries',\n defaultMessage: 'Expand',\n },\n collapse: {\n id: 'be.collapse',\n description: 'Message to the user to collapse the Transcript entries',\n defaultMessage: 'Collapse',\n },\n back: {\n id: 'be.back',\n description: 'Label for back button',\n defaultMessage: 'Back',\n },\n priorCollaborator: {\n id: 'be.priorCollaborator',\n description:\n 'If a user has been deleted, we call the user \"a prior collaborator\" - meaning someone who used to be able to collaborate on the content.',\n defaultMessage: 'A Prior Collaborator',\n },\n moreOptions: {\n id: 'be.moreOptions',\n description: 'Label for a button that displays more options',\n defaultMessage: 'More options',\n },\n bookmark: {\n id: 'be.bookmark',\n description: 'Icon title for a Box item of type bookmark or web-link',\n defaultMessage: 'Bookmark',\n },\n archive: {\n id: 'be.archive',\n description: 'Icon title for a Box item of type folder is an archive',\n defaultMessage: 'Archive',\n },\n archivedFolder: {\n id: 'be.archivedFolder',\n description: 'Icon title for a Box item of type folder is in archive',\n defaultMessage: 'Archived Folder',\n },\n collaboratedFolder: {\n id: 'be.collaboratedFolder',\n description: 'Icon title for a Box item of type folder that has collaborators',\n defaultMessage: 'Collaborated Folder',\n },\n externalFolder: {\n id: 'be.externalFolder',\n description: \"Icon title for a Box item of type folder that has collaborators outside of the user's enterprise\",\n defaultMessage: 'External Folder',\n },\n file: {\n id: 'be.file',\n description: 'Icon title for a Box item of type file',\n defaultMessage: 'File',\n },\n iconFile: {\n id: 'be.iconFile',\n description: 'Aria label for file icon',\n defaultMessage: '{extension} File',\n },\n folder: {\n id: 'be.folder',\n description: 'Icon title for a Box item of type folder',\n defaultMessage: 'Folder',\n },\n personalFolder: {\n id: 'be.personalFolder',\n description: 'Icon title for a Box item of type folder that is private and has no collaborators',\n defaultMessage: 'Personal Folder',\n },\n numFilesSelected: {\n id: 'be.numFilesSelected',\n description: 'Text shown to indicate the number of files selected',\n defaultMessage: `\n {numSelected, plural,\n =0 {0 files selected}\n one {1 file selected}\n other {# files selected}\n }\n `,\n },\n});\n\nexport default messages;\n"],"mappings":"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","ignoreList":[]}