@alfresco/aca-content 5.1.1 → 5.2.0
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.
- package/assets/app.extensions.json +9 -0
- package/assets/i18n/ar.json +600 -599
- package/assets/i18n/cs.json +600 -599
- package/assets/i18n/da.json +600 -599
- package/assets/i18n/de.json +600 -599
- package/assets/i18n/en.json +40 -1
- package/assets/i18n/es.json +600 -599
- package/assets/i18n/fi.json +600 -599
- package/assets/i18n/fr.json +600 -599
- package/assets/i18n/it.json +600 -599
- package/assets/i18n/ja.json +600 -599
- package/assets/i18n/nb.json +600 -599
- package/assets/i18n/nl.json +600 -599
- package/assets/i18n/pl.json +600 -599
- package/assets/i18n/pt-BR.json +600 -599
- package/assets/i18n/ru.json +600 -599
- package/assets/i18n/sv.json +600 -599
- package/assets/i18n/zh-CN.json +600 -599
- package/esm2022/about/about.component.mjs +70 -0
- package/esm2022/about/aca-about.module.mjs +47 -0
- package/esm2022/folder-rules/folder-rules.module.mjs +116 -0
- package/esm2022/folder-rules/manage-rules/manage-rules.smart-component.mjs +280 -0
- package/esm2022/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +117 -0
- package/esm2022/folder-rules/rule-details/actions/rule-action.ui-component.mjs +359 -0
- package/esm2022/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +171 -0
- package/esm2022/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +237 -0
- package/esm2022/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +80 -0
- package/esm2022/folder-rules/rule-details/options/rule-options.ui-component.mjs +129 -0
- package/esm2022/folder-rules/rule-details/rule-details.ui-component.mjs +192 -0
- package/esm2022/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +87 -0
- package/esm2022/folder-rules/rule-details/validators/rule-actions.validator.mjs +36 -0
- package/esm2022/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +166 -0
- package/esm2022/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +80 -0
- package/esm2022/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +59 -0
- package/esm2022/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +125 -0
- package/esm2022/folder-rules/services/actions.service.mjs +117 -0
- package/esm2022/folder-rules/services/folder-rule-sets.service.mjs +230 -0
- package/esm2022/folder-rules/services/folder-rules.service.mjs +195 -0
- package/esm2022/lib/aca-content.module.mjs +303 -0
- package/esm2022/lib/aca-content.routes.mjs +369 -0
- package/esm2022/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.mjs +82 -0
- package/{esm2020 → esm2022}/lib/components/common/language-picker/language-picker.component.mjs +9 -8
- package/esm2022/lib/components/common/location-link/location-link.component.mjs +182 -0
- package/{esm2020 → esm2022}/lib/components/common/logout/logout.component.mjs +8 -6
- package/esm2022/lib/components/common/toggle-shared/toggle-shared.component.mjs +81 -0
- package/esm2022/lib/components/common/user-info/user-info.component.mjs +46 -0
- package/esm2022/lib/components/context-menu/base-context-menu.directive.mjs +77 -0
- package/esm2022/lib/components/context-menu/context-menu-item.component.mjs +65 -0
- package/esm2022/lib/components/context-menu/context-menu-outside-event.directive.mjs +62 -0
- package/esm2022/lib/components/context-menu/context-menu-overlay.mjs +33 -0
- package/esm2022/lib/components/context-menu/context-menu.component.mjs +84 -0
- package/esm2022/lib/components/context-menu/context-menu.service.mjs +127 -0
- package/esm2022/lib/components/context-menu/custom-context-menu-actions.token.mjs +26 -0
- package/esm2022/lib/components/context-menu/custom-context-menu.component.mjs +79 -0
- package/esm2022/lib/components/details/details.component.mjs +154 -0
- package/esm2022/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.mjs +75 -0
- package/esm2022/lib/components/dl-custom-components/name-column/name-column.component.mjs +106 -0
- package/esm2022/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +52 -0
- package/esm2022/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +77 -0
- package/esm2022/lib/components/favorite-libraries/favorite-libraries.component.mjs +126 -0
- package/esm2022/lib/components/favorites/favorites.component.mjs +105 -0
- package/esm2022/lib/components/files/files.component.mjs +336 -0
- package/esm2022/lib/components/home/home.component.mjs +46 -0
- package/esm2022/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +62 -0
- package/esm2022/lib/components/info-drawer/info.drawer.module.mjs +74 -0
- package/esm2022/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +213 -0
- package/esm2022/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +47 -0
- package/esm2022/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +145 -0
- package/esm2022/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +107 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.mjs +135 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.mjs +181 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.mjs +77 -0
- package/esm2022/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.mjs +210 -0
- package/esm2022/lib/components/libraries/libraries.component.mjs +81 -0
- package/esm2022/lib/components/recent-files/recent-files.component.mjs +80 -0
- package/esm2022/lib/components/search/search-action-menu/search-action-menu.component.mjs +66 -0
- package/esm2022/lib/components/search/search-input/search-input.component.mjs +297 -0
- package/esm2022/lib/components/search/search-input-control/search-input-control.component.mjs +94 -0
- package/esm2022/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +93 -0
- package/esm2022/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +155 -0
- package/esm2022/lib/components/search/search-navigation.service.mjs +62 -0
- package/esm2022/lib/components/search/search-results/search-results.component.mjs +279 -0
- package/esm2022/lib/components/search/search-results-row/search-results-row.component.mjs +149 -0
- package/esm2022/lib/components/search/search-save/dialog/delete/saved-search-delete-dialog.component.mjs +82 -0
- package/esm2022/lib/components/search/search-save/dialog/edit/saved-search-edit-dialog.component.mjs +116 -0
- package/esm2022/lib/components/search/search-save/dialog/save-search-dialog.component.mjs +125 -0
- package/esm2022/lib/components/search/search-save/dialog/saved-search-form.interface.mjs +25 -0
- package/esm2022/lib/components/search/search-save/dialog/unique-search-name-validator.mjs +45 -0
- package/esm2022/lib/components/search/search-save/directive/save-search.directive.mjs +64 -0
- package/esm2022/lib/components/search/search-save/list/saved-searches-list-ui.service.mjs +51 -0
- package/esm2022/lib/components/search/search-save/list/smart-list/saved-searches-list-schema.mjs +44 -0
- package/esm2022/lib/components/search/search-save/list/smart-list/saved-searches-smart-list.component.mjs +50 -0
- package/esm2022/lib/components/search/search-save/list/ui-list/saved-searches-list.ui-component.mjs +153 -0
- package/esm2022/lib/components/search/search-save/sidenav/save-search-sidenav.component.mjs +94 -0
- package/esm2022/lib/components/shared-files/shared-files.component.mjs +85 -0
- package/esm2022/lib/components/shared-link-view/shared-link-view.component.mjs +89 -0
- package/esm2022/lib/components/sidenav/components/button-menu.component.mjs +66 -0
- package/esm2022/lib/components/sidenav/components/expand-menu.component.mjs +73 -0
- package/esm2022/lib/components/sidenav/components/sidenav-header.component.mjs +65 -0
- package/esm2022/lib/components/sidenav/directives/action.directive.mjs +86 -0
- package/esm2022/lib/components/sidenav/directives/active-link.directive.mjs +100 -0
- package/esm2022/lib/components/sidenav/directives/expansion-panel.directive.mjs +107 -0
- package/esm2022/lib/components/sidenav/directives/menu-panel.directive.mjs +103 -0
- package/esm2022/lib/components/sidenav/sidenav.component.mjs +101 -0
- package/esm2022/lib/components/sidenav/user-menu/user-menu.component.mjs +57 -0
- package/esm2022/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +143 -0
- package/esm2022/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +91 -0
- package/esm2022/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +112 -0
- package/esm2022/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +77 -0
- package/esm2022/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +107 -0
- package/{esm2020 → esm2022}/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +7 -6
- package/esm2022/lib/components/toolbar/view-node/view-node.component.mjs +128 -0
- package/esm2022/lib/components/trashcan/trashcan.component.mjs +66 -0
- package/esm2022/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +55 -0
- package/esm2022/lib/components/view-profile/view-profile.component.mjs +200 -0
- package/esm2022/lib/dialogs/node-template/create-from-template.dialog.mjs +127 -0
- package/esm2022/lib/directives/document-list.directive.mjs +207 -0
- package/esm2022/lib/extensions/core.extensions.module.mjs +56 -0
- package/esm2022/lib/services/content-management.service.mjs +892 -0
- package/esm2022/lib/services/content-url.service.mjs +74 -0
- package/esm2022/lib/services/modal-ai.service.mjs +65 -0
- package/esm2022/lib/services/node-actions.service.mjs +609 -0
- package/esm2022/lib/services/node-template.service.mjs +145 -0
- package/esm2022/lib/services/search-ai-navigation.service.mjs +63 -0
- package/esm2022/lib/store/app-store.module.mjs +101 -0
- package/esm2022/lib/store/effects/app.effects.mjs +46 -0
- package/esm2022/lib/store/effects/contextmenu.effects.mjs +65 -0
- package/esm2022/lib/store/effects/download.effects.mjs +153 -0
- package/esm2022/lib/store/effects/favorite.effects.mjs +72 -0
- package/esm2022/lib/store/effects/library.effects.mjs +108 -0
- package/esm2022/lib/store/effects/node.effects.mjs +318 -0
- package/esm2022/lib/store/effects/search-ai.effects.mjs +54 -0
- package/esm2022/lib/store/effects/search.effects.mjs +52 -0
- package/esm2022/lib/store/effects/template.effects.mjs +116 -0
- package/esm2022/lib/store/effects/upload.effects.mjs +166 -0
- package/esm2022/lib/store/effects/viewer.effects.mjs +169 -0
- package/esm2022/lib/utils/aca-search-utils.mjs +129 -0
- package/esm2022/ms-office/actions/aos.actions.mjs +32 -0
- package/esm2022/ms-office/aos-extension.module.mjs +53 -0
- package/esm2022/ms-office/aos-extension.service.mjs +136 -0
- package/esm2022/ms-office/effects/aos.effects.mjs +45 -0
- package/esm2022/public-api.mjs +33 -0
- package/esm2022/viewer/lib/components/preview/preview.component.mjs +246 -0
- package/esm2022/viewer/lib/components/viewer/viewer.component.mjs +261 -0
- package/esm2022/viewer/lib/services/viewer.service.mjs +229 -0
- package/esm2022/viewer/lib/viewer.module.mjs +53 -0
- package/{fesm2015 → fesm2022}/alfresco-aca-content-about.mjs +17 -19
- package/fesm2022/alfresco-aca-content-about.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-folder-rules.mjs +357 -316
- package/fesm2022/alfresco-aca-content-folder-rules.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-ms-office.mjs +28 -26
- package/fesm2022/alfresco-aca-content-ms-office.mjs.map +1 -0
- package/{fesm2020 → fesm2022}/alfresco-aca-content-viewer.mjs +95 -64
- package/fesm2022/alfresco-aca-content-viewer.mjs.map +1 -0
- package/fesm2022/alfresco-aca-content.mjs +11091 -0
- package/fesm2022/alfresco-aca-content.mjs.map +1 -0
- package/folder-rules/rule-details/actions/rule-action-list.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/actions/rule-action.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/options/rule-options.ui-component.d.ts +1 -1
- package/folder-rules/rule-details/rule-details.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list/rule-list.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.d.ts +1 -1
- package/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.d.ts +1 -1
- package/folder-rules/services/folder-rule-sets.service.d.ts +4 -4
- package/folder-rules/services/folder-rules.service.d.ts +1 -1
- package/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.d.ts +5 -10
- package/lib/components/common/location-link/location-link.component.d.ts +1 -1
- package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +1 -1
- package/lib/components/context-menu/base-context-menu.directive.d.ts +20 -0
- package/lib/components/context-menu/context-menu-item.component.d.ts +1 -1
- package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +1 -1
- package/lib/components/context-menu/context-menu.component.d.ts +4 -15
- package/lib/components/context-menu/context-menu.service.d.ts +4 -1
- package/lib/components/{knowledge-retrieval/search-ai/search-ai-utils.d.ts → context-menu/custom-context-menu-actions.token.d.ts} +2 -2
- package/lib/components/context-menu/custom-context-menu.component.d.ts +36 -0
- package/lib/components/details/details.component.d.ts +1 -1
- package/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.d.ts +1 -1
- package/lib/components/dl-custom-components/tags-column/tags-column.component.d.ts +1 -1
- package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +1 -1
- package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +1 -1
- package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +1 -1
- package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +1 -1
- package/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.d.ts +1 -2
- package/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.d.ts +4 -5
- package/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.d.ts +8 -8
- package/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.d.ts +2 -3
- package/lib/components/search/search-input/search-input.component.d.ts +12 -14
- package/lib/components/search/search-input-control/search-input-control.component.d.ts +1 -1
- package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +0 -1
- package/lib/components/search/search-results/search-results.component.d.ts +15 -9
- package/lib/components/search/search-results-row/search-results-row.component.d.ts +1 -1
- package/lib/components/search/search-save/dialog/delete/saved-search-delete-dialog.component.d.ts +16 -0
- package/lib/components/search/search-save/dialog/edit/saved-search-edit-dialog.component.d.ts +22 -0
- package/lib/components/search/search-save/dialog/save-search-dialog.component.d.ts +23 -0
- package/lib/components/search/search-save/dialog/saved-search-form.interface.d.ts +28 -0
- package/lib/components/search/search-save/dialog/unique-search-name-validator.d.ts +34 -0
- package/lib/components/search/search-save/directive/save-search.directive.d.ts +13 -0
- package/lib/components/search/search-save/list/saved-searches-list-ui.service.d.ts +9 -0
- package/lib/components/search/search-save/list/smart-list/saved-searches-list-schema.d.ts +33 -0
- package/lib/components/search/search-save/list/smart-list/saved-searches-smart-list.component.d.ts +13 -0
- package/lib/components/search/search-save/list/ui-list/saved-searches-list.ui-component.d.ts +66 -0
- package/lib/components/search/search-save/sidenav/save-search-sidenav.component.d.ts +44 -0
- package/lib/components/sidenav/components/button-menu.component.d.ts +1 -1
- package/lib/components/sidenav/components/expand-menu.component.d.ts +3 -2
- package/lib/components/sidenav/directives/action.directive.d.ts +28 -1
- package/lib/components/sidenav/directives/active-link.directive.d.ts +2 -2
- package/lib/components/sidenav/directives/expansion-panel.directive.d.ts +1 -1
- package/lib/components/sidenav/directives/menu-panel.directive.d.ts +1 -1
- package/lib/components/sidenav/sidenav.component.d.ts +4 -3
- package/lib/components/sidenav/user-menu/user-menu.component.d.ts +1 -1
- package/lib/components/toolbar/toggle-favorite/toggle-favorite.component.d.ts +1 -1
- package/lib/components/toolbar/view-node/view-node.component.d.ts +1 -1
- package/lib/services/search-ai-navigation.service.d.ts +4 -2
- package/lib/store/effects/app.effects.d.ts +2 -3
- package/lib/store/effects/contextmenu.effects.d.ts +3 -3
- package/lib/store/effects/download.effects.d.ts +0 -30
- package/lib/store/effects/favorite.effects.d.ts +0 -28
- package/lib/store/effects/library.effects.d.ts +2 -7
- package/lib/store/effects/node.effects.d.ts +7 -38
- package/lib/store/effects/search-ai.effects.d.ts +0 -4
- package/lib/store/effects/search.effects.d.ts +3 -30
- package/lib/store/effects/template.effects.d.ts +5 -7
- package/lib/store/effects/upload.effects.d.ts +8 -32
- package/lib/store/effects/viewer.effects.d.ts +0 -29
- package/lib/utils/aca-search-utils.d.ts +67 -0
- package/ms-office/effects/aos.effects.d.ts +0 -3
- package/package.json +21 -35
- package/public-api.d.ts +1 -0
- package/ui/overrides/adf-pagination.theme.scss +0 -4
- package/ui/theme.scss +9 -4
- package/assets/images/agent-avatar-blue.png +0 -0
- package/assets/images/agent-avatar-gold.png +0 -0
- package/assets/images/agent-avatar-pink.png +0 -0
- package/esm2020/about/about.component.mjs +0 -71
- package/esm2020/about/aca-about.module.mjs +0 -46
- package/esm2020/folder-rules/folder-rules.module.mjs +0 -115
- package/esm2020/folder-rules/manage-rules/manage-rules.smart-component.mjs +0 -261
- package/esm2020/folder-rules/rule-details/actions/rule-action-list.ui-component.mjs +0 -117
- package/esm2020/folder-rules/rule-details/actions/rule-action.ui-component.mjs +0 -351
- package/esm2020/folder-rules/rule-details/conditions/rule-composite-condition.ui-component.mjs +0 -172
- package/esm2020/folder-rules/rule-details/conditions/rule-simple-condition.ui-component.mjs +0 -234
- package/esm2020/folder-rules/rule-details/edit-rule-dialog.ui-component.mjs +0 -74
- package/esm2020/folder-rules/rule-details/options/rule-options.ui-component.mjs +0 -129
- package/esm2020/folder-rules/rule-details/rule-details.ui-component.mjs +0 -185
- package/esm2020/folder-rules/rule-details/triggers/rule-triggers.ui-component.mjs +0 -88
- package/esm2020/folder-rules/rule-details/validators/rule-actions.validator.mjs +0 -37
- package/esm2020/folder-rules/rule-list/rule-list/rule-list.ui-component.mjs +0 -164
- package/esm2020/folder-rules/rule-list/rule-list-grouping/rule-list-grouping.ui-component.mjs +0 -81
- package/esm2020/folder-rules/rule-list/rule-list-item/rule-list-item.ui-component.mjs +0 -58
- package/esm2020/folder-rules/rule-set-picker/rule-set-picker.smart-component.mjs +0 -120
- package/esm2020/folder-rules/services/actions.service.mjs +0 -114
- package/esm2020/folder-rules/services/folder-rule-sets.service.mjs +0 -225
- package/esm2020/folder-rules/services/folder-rules.service.mjs +0 -193
- package/esm2020/lib/aca-content.module.mjs +0 -299
- package/esm2020/lib/aca-content.routes.mjs +0 -359
- package/esm2020/lib/components/bulk-actions-dropdown/bulk-actions-dropdown.component.mjs +0 -83
- package/esm2020/lib/components/common/location-link/location-link.component.mjs +0 -180
- package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +0 -76
- package/esm2020/lib/components/common/user-info/user-info.component.mjs +0 -47
- package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +0 -62
- package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +0 -63
- package/esm2020/lib/components/context-menu/context-menu-overlay.mjs +0 -32
- package/esm2020/lib/components/context-menu/context-menu.component.mjs +0 -114
- package/esm2020/lib/components/context-menu/context-menu.service.mjs +0 -99
- package/esm2020/lib/components/details/details.component.mjs +0 -147
- package/esm2020/lib/components/dl-custom-components/datatable-cell-badges/datatable-cell-badges.component.mjs +0 -71
- package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +0 -101
- package/esm2020/lib/components/dl-custom-components/tags-column/tags-column.component.mjs +0 -48
- package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +0 -75
- package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +0 -120
- package/esm2020/lib/components/favorites/favorites.component.mjs +0 -103
- package/esm2020/lib/components/files/files.component.mjs +0 -330
- package/esm2020/lib/components/home/home.component.mjs +0 -47
- package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +0 -59
- package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +0 -73
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +0 -206
- package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +0 -45
- package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +0 -134
- package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +0 -95
- package/esm2020/lib/components/knowledge-retrieval/search-ai/agents-button/agents-button.component.mjs +0 -129
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-input/search-ai-input.component.mjs +0 -171
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-input-container/search-ai-input-container.component.mjs +0 -82
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-results/search-ai-results.component.mjs +0 -199
- package/esm2020/lib/components/knowledge-retrieval/search-ai/search-ai-utils.mjs +0 -33
- package/esm2020/lib/components/libraries/libraries.component.mjs +0 -79
- package/esm2020/lib/components/recent-files/recent-files.component.mjs +0 -82
- package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +0 -64
- package/esm2020/lib/components/search/search-input/search-input.component.mjs +0 -301
- package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +0 -94
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +0 -90
- package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +0 -153
- package/esm2020/lib/components/search/search-navigation.service.mjs +0 -60
- package/esm2020/lib/components/search/search-results/search-results.component.mjs +0 -255
- package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +0 -142
- package/esm2020/lib/components/shared-files/shared-files.component.mjs +0 -83
- package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +0 -82
- package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +0 -62
- package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +0 -67
- package/esm2020/lib/components/sidenav/components/sidenav-header.component.mjs +0 -66
- package/esm2020/lib/components/sidenav/directives/action.directive.mjs +0 -75
- package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +0 -93
- package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +0 -102
- package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +0 -99
- package/esm2020/lib/components/sidenav/sidenav.component.mjs +0 -89
- package/esm2020/lib/components/sidenav/user-menu/user-menu.component.mjs +0 -56
- package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +0 -137
- package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +0 -86
- package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +0 -107
- package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +0 -74
- package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +0 -105
- package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +0 -122
- package/esm2020/lib/components/trashcan/trashcan.component.mjs +0 -68
- package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +0 -52
- package/esm2020/lib/components/view-profile/view-profile.component.mjs +0 -193
- package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +0 -120
- package/esm2020/lib/directives/document-list.directive.mjs +0 -199
- package/esm2020/lib/extensions/core.extensions.module.mjs +0 -55
- package/esm2020/lib/services/content-management.service.mjs +0 -873
- package/esm2020/lib/services/content-url.service.mjs +0 -71
- package/esm2020/lib/services/modal-ai.service.mjs +0 -66
- package/esm2020/lib/services/node-actions.service.mjs +0 -600
- package/esm2020/lib/services/node-template.service.mjs +0 -144
- package/esm2020/lib/services/search-ai-navigation.service.mjs +0 -52
- package/esm2020/lib/store/app-store.module.mjs +0 -102
- package/esm2020/lib/store/effects/app.effects.mjs +0 -49
- package/esm2020/lib/store/effects/contextmenu.effects.mjs +0 -55
- package/esm2020/lib/store/effects/download.effects.mjs +0 -159
- package/esm2020/lib/store/effects/favorite.effects.mjs +0 -76
- package/esm2020/lib/store/effects/library.effects.mjs +0 -113
- package/esm2020/lib/store/effects/node.effects.mjs +0 -325
- package/esm2020/lib/store/effects/search-ai.effects.mjs +0 -57
- package/esm2020/lib/store/effects/search.effects.mjs +0 -60
- package/esm2020/lib/store/effects/template.effects.mjs +0 -121
- package/esm2020/lib/store/effects/upload.effects.mjs +0 -166
- package/esm2020/lib/store/effects/viewer.effects.mjs +0 -175
- package/esm2020/ms-office/actions/aos.actions.mjs +0 -31
- package/esm2020/ms-office/aos-extension.module.mjs +0 -52
- package/esm2020/ms-office/aos-extension.service.mjs +0 -132
- package/esm2020/ms-office/effects/aos.effects.mjs +0 -48
- package/esm2020/public-api.mjs +0 -32
- package/esm2020/viewer/lib/components/preview/preview.component.mjs +0 -236
- package/esm2020/viewer/lib/components/viewer/viewer.component.mjs +0 -240
- package/esm2020/viewer/lib/services/viewer.service.mjs +0 -226
- package/esm2020/viewer/lib/viewer.module.mjs +0 -52
- package/fesm2015/alfresco-aca-content-about.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-folder-rules.mjs +0 -2662
- package/fesm2015/alfresco-aca-content-folder-rules.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-ms-office.mjs +0 -256
- package/fesm2015/alfresco-aca-content-ms-office.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content-viewer.mjs +0 -700
- package/fesm2015/alfresco-aca-content-viewer.mjs.map +0 -1
- package/fesm2015/alfresco-aca-content.mjs +0 -9835
- package/fesm2015/alfresco-aca-content.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-about.mjs +0 -193
- package/fesm2020/alfresco-aca-content-about.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-folder-rules.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-ms-office.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content-viewer.mjs.map +0 -1
- package/fesm2020/alfresco-aca-content.mjs +0 -9934
- package/fesm2020/alfresco-aca-content.mjs.map +0 -1
- /package/{esm2020 → esm2022}/about/alfresco-aca-content-about.mjs +0 -0
- /package/{esm2020 → esm2022}/about/dev-mode.tokens.mjs +0 -0
- /package/{esm2020 → esm2022}/about/package-json.token.mjs +0 -0
- /package/{esm2020 → esm2022}/about/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/alfresco-aca-content.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/alfresco-aca-content-folder-rules.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/folder-rules.rules.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/action-parameter-constraint.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-action.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-composite-condition.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-grouping-item.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-set.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule-simple-condition.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/model/rule.model.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/conditions/rule-condition-comparators.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/conditions/rule-condition-fields.mjs +0 -0
- /package/{esm2020 → esm2022}/folder-rules/rule-details/validators/rule-composite-condition.validator.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/common/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/context-menu/direction.token.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/context-menu/interfaces.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/search/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/sidenav/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/toolbar/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/view-profile/view-profile.guard.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/effects.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/initial-state.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/store/reducers/app.reducer.mjs +0 -0
- /package/{esm2020 → esm2022}/ms-office/alfresco-aca-content-ms-office.mjs +0 -0
- /package/{esm2020 → esm2022}/ms-office/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/viewer/alfresco-aca-content-viewer.mjs +0 -0
- /package/{esm2020 → esm2022}/viewer/public-api.mjs +0 -0
package/assets/i18n/zh-CN.json
CHANGED
|
@@ -1,599 +1,600 @@
|
|
|
1
|
-
{
|
|
2
|
-
"APP": {
|
|
3
|
-
"COPYRIGHT": "© 2005-2024 Hyland Software, Inc. 及其附属公司。保留所有权利。",
|
|
4
|
-
"TITLE": "Workspace",
|
|
5
|
-
"ABOUT": {
|
|
6
|
-
"VERSION": "版本:",
|
|
7
|
-
"PLUGINS": {
|
|
8
|
-
"TITLE": "扩展",
|
|
9
|
-
"ID": "ID",
|
|
10
|
-
"NAME": "名称",
|
|
11
|
-
"VERSION": "版本",
|
|
12
|
-
"VENDOR": "供应商",
|
|
13
|
-
"LICENSE": "许可证",
|
|
14
|
-
"RUNTIME": "运行时",
|
|
15
|
-
"DESCRIPTION": "说明"
|
|
16
|
-
},
|
|
17
|
-
"LICENSE": {
|
|
18
|
-
"TITLE": "许可证",
|
|
19
|
-
"PROPERTY": "属性",
|
|
20
|
-
"VALUE": "值"
|
|
21
|
-
},
|
|
22
|
-
"STATUS": {
|
|
23
|
-
"TITLE": "状态",
|
|
24
|
-
"PROPERTY": "属性",
|
|
25
|
-
"VALUE": "值"
|
|
26
|
-
},
|
|
27
|
-
"MODULES": {
|
|
28
|
-
"TITLE": "Alfresco 平台模块",
|
|
29
|
-
"ID": "ID",
|
|
30
|
-
"NAME": "名称",
|
|
31
|
-
"VERSION": "版本"
|
|
32
|
-
},
|
|
33
|
-
"PACKAGES": {
|
|
34
|
-
"TITLE": "软件包",
|
|
35
|
-
"NAME": "名称",
|
|
36
|
-
"VERSION": "版本"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"LANGUAGE": "语言",
|
|
40
|
-
"SIGN_IN": "登录",
|
|
41
|
-
"SIGN_OUT": "退出",
|
|
42
|
-
"EDIT_PROFILE": {
|
|
43
|
-
"MY_PROFILE": "我的个人档案",
|
|
44
|
-
"GENERAL": "常规",
|
|
45
|
-
"EDIT": "编辑",
|
|
46
|
-
"CANCEL": "取消",
|
|
47
|
-
"SAVE": "保存",
|
|
48
|
-
"FIRST_NAME": "名字",
|
|
49
|
-
"LAST_NAME": "姓氏",
|
|
50
|
-
"JOB_TITLE": "职位",
|
|
51
|
-
"LOCATION": "位置",
|
|
52
|
-
"TELEPHONE": "电话",
|
|
53
|
-
"MOBILE": "移动电话",
|
|
54
|
-
"LOGIN": "登录",
|
|
55
|
-
"USERNAME": "用户名",
|
|
56
|
-
"EMAIL": "电子邮件",
|
|
57
|
-
"PASSWORD": "密码",
|
|
58
|
-
"OLD_PASSWORD": "旧密码",
|
|
59
|
-
"FORGOT_PASSWORD": "忘记密码",
|
|
60
|
-
"NEW_PASSWORD": "新密码",
|
|
61
|
-
"VERIFY_PASSWORD": "验证密码",
|
|
62
|
-
"COMPANY_DETAILS": "公司详细信息",
|
|
63
|
-
"NAME": "名称",
|
|
64
|
-
"ADDRESS": "地址",
|
|
65
|
-
"POSTCODE": "邮政编码",
|
|
66
|
-
"INVALID_INPUT": "无效输入"
|
|
67
|
-
},
|
|
68
|
-
"LOCKED_BY": "锁定者: ",
|
|
69
|
-
"PREVIEW": {
|
|
70
|
-
"TITLE": "预览"
|
|
71
|
-
},
|
|
72
|
-
"DETAILS": {
|
|
73
|
-
"TITLE": "详细信息"
|
|
74
|
-
},
|
|
75
|
-
"NEW_MENU": {
|
|
76
|
-
"MENU_ITEMS": {
|
|
77
|
-
"CREATE_FOLDER": "创建文件夹",
|
|
78
|
-
"UPLOAD_FILE": "上传文件",
|
|
79
|
-
"UPLOAD_FOLDER": "上传文件夹",
|
|
80
|
-
"CREATE_LIBRARY": "创建库",
|
|
81
|
-
"FILE_TEMPLATE": "从模板创建文件",
|
|
82
|
-
"FOLDER_TEMPLATE": "从模板创建文件夹"
|
|
83
|
-
},
|
|
84
|
-
"TOOLTIPS": {
|
|
85
|
-
"CREATE_FOLDER": "新建文件夹",
|
|
86
|
-
"CREATE_FOLDER_NOT_ALLOWED": "查看当前项目时无法创建文件夹",
|
|
87
|
-
"CREATE_FILE_NOT_ALLOWED": "查看当前项目时无法创建文件",
|
|
88
|
-
"UPLOAD_FILES": "选择要上传的文件",
|
|
89
|
-
"UPLOAD_FILES_NOT_ALLOWED": "查看当前项目时无法上传文件",
|
|
90
|
-
"UPLOAD_FOLDERS": "选择要上传的文件夹",
|
|
91
|
-
"UPLOAD_FOLDERS_NOT_ALLOWED": "查看当前项目时无法上传文件夹",
|
|
92
|
-
"CREATE_LIBRARY": "创建一个新的文件库"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"HEADER": {
|
|
96
|
-
"BUTTONS": {
|
|
97
|
-
"CREATE": "创建",
|
|
98
|
-
"CREATE_TOOLTIP": "创建内容",
|
|
99
|
-
"UPLOAD": "上传",
|
|
100
|
-
"UPLOAD_TOOLTIP": "上传内容"
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
|
|
125
|
-
"
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
"
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
"
|
|
148
|
-
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
"
|
|
157
|
-
|
|
158
|
-
"
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
"
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
"
|
|
179
|
-
|
|
180
|
-
"
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
"
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
"
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
|
|
225
|
-
"
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
"
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
"
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
"
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
"
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
"
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
"
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"
|
|
404
|
-
"
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
"
|
|
417
|
-
"
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
"
|
|
427
|
-
"
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
"
|
|
433
|
-
"
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
"
|
|
438
|
-
"
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
"
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
"
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
"
|
|
523
|
-
"
|
|
524
|
-
"
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
"
|
|
534
|
-
"
|
|
535
|
-
"
|
|
536
|
-
"
|
|
537
|
-
"
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
"
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
"
|
|
545
|
-
"
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
"
|
|
550
|
-
"
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
"
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
"
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
"
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
}
|
|
599
|
-
|
|
1
|
+
{
|
|
2
|
+
"APP": {
|
|
3
|
+
"COPYRIGHT": "© 2005-2024 Hyland Software, Inc. 及其附属公司。保留所有权利。",
|
|
4
|
+
"TITLE": "Workspace",
|
|
5
|
+
"ABOUT": {
|
|
6
|
+
"VERSION": "版本:",
|
|
7
|
+
"PLUGINS": {
|
|
8
|
+
"TITLE": "扩展",
|
|
9
|
+
"ID": "ID",
|
|
10
|
+
"NAME": "名称",
|
|
11
|
+
"VERSION": "版本",
|
|
12
|
+
"VENDOR": "供应商",
|
|
13
|
+
"LICENSE": "许可证",
|
|
14
|
+
"RUNTIME": "运行时",
|
|
15
|
+
"DESCRIPTION": "说明"
|
|
16
|
+
},
|
|
17
|
+
"LICENSE": {
|
|
18
|
+
"TITLE": "许可证",
|
|
19
|
+
"PROPERTY": "属性",
|
|
20
|
+
"VALUE": "值"
|
|
21
|
+
},
|
|
22
|
+
"STATUS": {
|
|
23
|
+
"TITLE": "状态",
|
|
24
|
+
"PROPERTY": "属性",
|
|
25
|
+
"VALUE": "值"
|
|
26
|
+
},
|
|
27
|
+
"MODULES": {
|
|
28
|
+
"TITLE": "Alfresco 平台模块",
|
|
29
|
+
"ID": "ID",
|
|
30
|
+
"NAME": "名称",
|
|
31
|
+
"VERSION": "版本"
|
|
32
|
+
},
|
|
33
|
+
"PACKAGES": {
|
|
34
|
+
"TITLE": "软件包",
|
|
35
|
+
"NAME": "名称",
|
|
36
|
+
"VERSION": "版本"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"LANGUAGE": "语言",
|
|
40
|
+
"SIGN_IN": "登录",
|
|
41
|
+
"SIGN_OUT": "退出",
|
|
42
|
+
"EDIT_PROFILE": {
|
|
43
|
+
"MY_PROFILE": "我的个人档案",
|
|
44
|
+
"GENERAL": "常规",
|
|
45
|
+
"EDIT": "编辑",
|
|
46
|
+
"CANCEL": "取消",
|
|
47
|
+
"SAVE": "保存",
|
|
48
|
+
"FIRST_NAME": "名字",
|
|
49
|
+
"LAST_NAME": "姓氏",
|
|
50
|
+
"JOB_TITLE": "职位",
|
|
51
|
+
"LOCATION": "位置",
|
|
52
|
+
"TELEPHONE": "电话",
|
|
53
|
+
"MOBILE": "移动电话",
|
|
54
|
+
"LOGIN": "登录",
|
|
55
|
+
"USERNAME": "用户名",
|
|
56
|
+
"EMAIL": "电子邮件",
|
|
57
|
+
"PASSWORD": "密码",
|
|
58
|
+
"OLD_PASSWORD": "旧密码",
|
|
59
|
+
"FORGOT_PASSWORD": "忘记密码",
|
|
60
|
+
"NEW_PASSWORD": "新密码",
|
|
61
|
+
"VERIFY_PASSWORD": "验证密码",
|
|
62
|
+
"COMPANY_DETAILS": "公司详细信息",
|
|
63
|
+
"NAME": "名称",
|
|
64
|
+
"ADDRESS": "地址",
|
|
65
|
+
"POSTCODE": "邮政编码",
|
|
66
|
+
"INVALID_INPUT": "无效输入"
|
|
67
|
+
},
|
|
68
|
+
"LOCKED_BY": "锁定者: ",
|
|
69
|
+
"PREVIEW": {
|
|
70
|
+
"TITLE": "预览"
|
|
71
|
+
},
|
|
72
|
+
"DETAILS": {
|
|
73
|
+
"TITLE": "详细信息"
|
|
74
|
+
},
|
|
75
|
+
"NEW_MENU": {
|
|
76
|
+
"MENU_ITEMS": {
|
|
77
|
+
"CREATE_FOLDER": "创建文件夹",
|
|
78
|
+
"UPLOAD_FILE": "上传文件",
|
|
79
|
+
"UPLOAD_FOLDER": "上传文件夹",
|
|
80
|
+
"CREATE_LIBRARY": "创建库",
|
|
81
|
+
"FILE_TEMPLATE": "从模板创建文件",
|
|
82
|
+
"FOLDER_TEMPLATE": "从模板创建文件夹"
|
|
83
|
+
},
|
|
84
|
+
"TOOLTIPS": {
|
|
85
|
+
"CREATE_FOLDER": "新建文件夹",
|
|
86
|
+
"CREATE_FOLDER_NOT_ALLOWED": "查看当前项目时无法创建文件夹",
|
|
87
|
+
"CREATE_FILE_NOT_ALLOWED": "查看当前项目时无法创建文件",
|
|
88
|
+
"UPLOAD_FILES": "选择要上传的文件",
|
|
89
|
+
"UPLOAD_FILES_NOT_ALLOWED": "查看当前项目时无法上传文件",
|
|
90
|
+
"UPLOAD_FOLDERS": "选择要上传的文件夹",
|
|
91
|
+
"UPLOAD_FOLDERS_NOT_ALLOWED": "查看当前项目时无法上传文件夹",
|
|
92
|
+
"CREATE_LIBRARY": "创建一个新的文件库"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"HEADER": {
|
|
96
|
+
"BUTTONS": {
|
|
97
|
+
"CREATE": "创建",
|
|
98
|
+
"CREATE_TOOLTIP": "创建内容",
|
|
99
|
+
"UPLOAD": "上传",
|
|
100
|
+
"UPLOAD_TOOLTIP": "上传内容"
|
|
101
|
+
},
|
|
102
|
+
"SELECTED": "已选择 ({{ count }})"
|
|
103
|
+
},
|
|
104
|
+
"BROWSE": {
|
|
105
|
+
"FILE": {
|
|
106
|
+
"SIDENAV_LINK": {
|
|
107
|
+
"LABEL": "文件",
|
|
108
|
+
"TOOLTIP": "文件"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"PERSONAL": {
|
|
112
|
+
"TITLE": "个人文件",
|
|
113
|
+
"SIDENAV_LINK": {
|
|
114
|
+
"LABEL": "个人文件",
|
|
115
|
+
"TOOLTIP": "查看您的个人文件"
|
|
116
|
+
},
|
|
117
|
+
"PERMISSIONS": {
|
|
118
|
+
"TITLE": "权限"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"LIBRARIES": {
|
|
122
|
+
"TITLE": "文件库",
|
|
123
|
+
"DESCRIPTION": "访问文件库",
|
|
124
|
+
"SIDENAV_LINK": {
|
|
125
|
+
"LABEL": "文件库",
|
|
126
|
+
"TOOLTIP": "文件库"
|
|
127
|
+
},
|
|
128
|
+
"EMPTY_STATE": {
|
|
129
|
+
"FILE_LIBRARIES": {
|
|
130
|
+
"TITLE": "您还不是任何文件库的成员",
|
|
131
|
+
"TEXT": "加入文件库以上传、查看和共享文件。"
|
|
132
|
+
},
|
|
133
|
+
"FAVORITE_LIBRARIES": {
|
|
134
|
+
"TITLE": "无收藏库",
|
|
135
|
+
"TEXT": "收藏您希望以后轻松查找的库"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"MENU": {
|
|
139
|
+
"MY_LIBRARIES": {
|
|
140
|
+
"TITLE": "我的库",
|
|
141
|
+
"SIDENAV_LINK": {
|
|
142
|
+
"LABEL": "我的库",
|
|
143
|
+
"TOOLTIP": "访问我的库"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"FAVORITE_LIBRARIES": {
|
|
147
|
+
"TITLE": "收藏库",
|
|
148
|
+
"SIDENAV_LINK": {
|
|
149
|
+
"LABEL": "收藏库",
|
|
150
|
+
"TOOLTIP": "访问我的收藏库"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"SHARED": {
|
|
156
|
+
"TITLE": "共享文件",
|
|
157
|
+
"SIDENAV_LINK": {
|
|
158
|
+
"LABEL": "已共享",
|
|
159
|
+
"TOOLTIP": "查看已共享的文件"
|
|
160
|
+
},
|
|
161
|
+
"EMPTY_STATE": {
|
|
162
|
+
"TITLE": "无共享文件或文件夹",
|
|
163
|
+
"TEXT": "此处显示了您使用“共享”选项所共享的项目。"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"RECENT": {
|
|
167
|
+
"TITLE": "最近的文件",
|
|
168
|
+
"SIDENAV_LINK": {
|
|
169
|
+
"LABEL": "最近的文件",
|
|
170
|
+
"TOOLTIP": "查看最近编辑的文件"
|
|
171
|
+
},
|
|
172
|
+
"EMPTY_STATE": {
|
|
173
|
+
"TITLE": "无最近的文件",
|
|
174
|
+
"TEXT": "此处显示了您过去 30 天上传或编辑的项目。"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"FAVORITES": {
|
|
178
|
+
"TITLE": "收藏夹",
|
|
179
|
+
"SIDENAV_LINK": {
|
|
180
|
+
"LABEL": "收藏夹",
|
|
181
|
+
"TOOLTIP": "查看您收藏的文件和文件夹"
|
|
182
|
+
},
|
|
183
|
+
"EMPTY_STATE": {
|
|
184
|
+
"TITLE": "无收藏夹文件或文件夹",
|
|
185
|
+
"TEXT": "您想要在以后轻松查找的收藏夹项目。"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"TRASHCAN": {
|
|
189
|
+
"TITLE": "回收站",
|
|
190
|
+
"SIDENAV_LINK": {
|
|
191
|
+
"LABEL": "回收站",
|
|
192
|
+
"TOOLTIP": "查看回收站中的已删除文件"
|
|
193
|
+
},
|
|
194
|
+
"EMPTY_STATE": {
|
|
195
|
+
"TITLE": "回收站为空",
|
|
196
|
+
"FIRST_TEXT": "您删除的项目已移至回收站。",
|
|
197
|
+
"SECOND_TEXT": "清空回收站以永久删除项目。"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"ABOUT": {
|
|
201
|
+
"TITLE": "关于"
|
|
202
|
+
},
|
|
203
|
+
"SEARCH": {
|
|
204
|
+
"DEFAULT_SEARCH": "默认",
|
|
205
|
+
"DUBLIN_CORE": "都柏林核心",
|
|
206
|
+
"EFFECTIVITY": "有效性",
|
|
207
|
+
"TITLE": "搜索结果",
|
|
208
|
+
"FILTER_SET": "筛选器集:",
|
|
209
|
+
"ADVANCED_FILTERS": "高级筛选器:",
|
|
210
|
+
"RESET": "重置",
|
|
211
|
+
"RESET_ACTION": "重置搜索筛选器",
|
|
212
|
+
"FOUND_RESULTS": "找到 {{ number }} 个结果",
|
|
213
|
+
"FOUND_ONE_RESULT": "找到 {{ number }} 个结果",
|
|
214
|
+
"CUSTOM_ROW": {
|
|
215
|
+
"MODIFIED": "已修改",
|
|
216
|
+
"BY_USER": "由 {{ user }}",
|
|
217
|
+
"LOCATION": "位置",
|
|
218
|
+
"SIZE": "大小"
|
|
219
|
+
},
|
|
220
|
+
"UNKNOWN_LOCATION": "未知",
|
|
221
|
+
"NO_RESULTS": "您的搜索返回了 0 个结果",
|
|
222
|
+
"EMPTY_SEARCH": "需要搜索词",
|
|
223
|
+
"NO_FILTER_RESULTS": "您的筛选返回了 0 个结果",
|
|
224
|
+
"ERRORS": {
|
|
225
|
+
"500": "处理搜索查询时发生错误 [500]",
|
|
226
|
+
"GENERIC": "处理搜索查询时发生错误"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"SEARCH_LIBRARIES": {
|
|
230
|
+
"FOUND_RESULTS": "{{ number }} 个结果",
|
|
231
|
+
"FOUND_ONE_RESULT": "{{ number }} 个结果"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"ACTIONS": {
|
|
235
|
+
"VIEW": "查看",
|
|
236
|
+
"EDIT": "编辑",
|
|
237
|
+
"DOWNLOAD": "下载",
|
|
238
|
+
"COPY": "复制",
|
|
239
|
+
"MOVE": "移动",
|
|
240
|
+
"DELETE": "删除",
|
|
241
|
+
"DELETE_PERMANENT": "永久删除",
|
|
242
|
+
"MORE": "更多操作",
|
|
243
|
+
"UNDO": "撤消",
|
|
244
|
+
"PERMISSIONS": "权限",
|
|
245
|
+
"RESTORE": "恢复",
|
|
246
|
+
"FAVORITE": "收藏",
|
|
247
|
+
"ADD_FAVORITE": "添加收藏",
|
|
248
|
+
"REMOVE_FAVORITE": "删除收藏",
|
|
249
|
+
"UNSHARE": "取消共享",
|
|
250
|
+
"DETAILS": "查看详细信息",
|
|
251
|
+
"VERSIONS": "管理版本",
|
|
252
|
+
"UPLOAD_VERSION": "上传新版本",
|
|
253
|
+
"TOGGLE-SIDENAV": "切换侧导航栏",
|
|
254
|
+
"SHARE": "共享",
|
|
255
|
+
"SHARE_EDIT": "已共享链接的设置",
|
|
256
|
+
"PRINT": "打印",
|
|
257
|
+
"FULLSCREEN": "激活全屏模式",
|
|
258
|
+
"JOIN": "加入",
|
|
259
|
+
"CANCEL_JOIN": "取消加入请求",
|
|
260
|
+
"LEAVE": "离开库",
|
|
261
|
+
"EDIT_OFFLINE": "离线编辑",
|
|
262
|
+
"EDIT_OFFLINE_CANCEL": "取消编辑",
|
|
263
|
+
"CHANGE_ASPECT": "编辑纵横比"
|
|
264
|
+
},
|
|
265
|
+
"DIALOGS": {
|
|
266
|
+
"CONFIRM_PURGE": {
|
|
267
|
+
"TITLE": "要从回收站删除吗?",
|
|
268
|
+
"MESSAGE": "所选定的项将会被永久删除。",
|
|
269
|
+
"YES_LABEL": "删除",
|
|
270
|
+
"NO_LABEL": "保留"
|
|
271
|
+
},
|
|
272
|
+
"CONFIRM_LEAVE": {
|
|
273
|
+
"TITLE": "要离开该库吗?",
|
|
274
|
+
"MESSAGE": "离开将会删除您的访问权。",
|
|
275
|
+
"YES_LABEL": "确定",
|
|
276
|
+
"NO_LABEL": "取消"
|
|
277
|
+
},
|
|
278
|
+
"MOBILE_APP": {
|
|
279
|
+
"MOBILE_APP_BUTTON_LABEL": "在 App 中打开",
|
|
280
|
+
"DOWNLOAD_APP_BUTTON_LABEL": "没有这个 App? 现在就下载。",
|
|
281
|
+
"OPEN_ALFRESCO_MOBILE_APP": "使用 Alfresco 移动应用程序打开?"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"DOCUMENT_LIST": {
|
|
285
|
+
"COLUMNS": {
|
|
286
|
+
"ID": "ID",
|
|
287
|
+
"NAME": "名称",
|
|
288
|
+
"DESCRIPTION": "说明",
|
|
289
|
+
"SIZE": "大小",
|
|
290
|
+
"MODIFIED_ON": "已修改",
|
|
291
|
+
"MODIFIED_BY": "修改人",
|
|
292
|
+
"VISIBILITY": "可见性",
|
|
293
|
+
"TITLE": "标题",
|
|
294
|
+
"LOCATION": "位置",
|
|
295
|
+
"SHARED_BY": "分享人",
|
|
296
|
+
"DELETED_ON": "已删除",
|
|
297
|
+
"DELETED_BY": "删除人",
|
|
298
|
+
"ROLE": "我的角色",
|
|
299
|
+
"TAGS": "标记"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"MESSAGES": {
|
|
303
|
+
"ERRORS": {
|
|
304
|
+
"CANNOT_NAVIGATE_LOCATION": "无法打开此位置",
|
|
305
|
+
"MISSING_CONTENT": "此项目不再存在,或者您无权对其进行查看。",
|
|
306
|
+
"GENERIC": "此操作未成功,请重试或联系您的 IT 团队。",
|
|
307
|
+
"CONFLICT": "此名称已使用,请尝试其他名称。",
|
|
308
|
+
"NODE_MOVE": "未成功移动,存在有相同名称的文件。",
|
|
309
|
+
"EXISTENT_FOLDER": "存在使用此名称的文件夹。请尝试使用其他名称。",
|
|
310
|
+
"NODE_DELETION": "{{ name }} 无法删除",
|
|
311
|
+
"NODE_DELETION_PLURAL": "{{ number }} 个项目无法删除",
|
|
312
|
+
"NODE_RESTORE": "{{ name }} 无法恢复",
|
|
313
|
+
"NODE_RESTORE_PLURAL": "{{ number }} 个项目无法恢复",
|
|
314
|
+
"PERMISSION": "您没有执行此操作的访问权",
|
|
315
|
+
"LOCK_NODE": "锁定 {{ fileName }} 文件时出现问题",
|
|
316
|
+
"UNLOCK_NODE": "解锁 {{ fileName }} 文件时出现问题",
|
|
317
|
+
"TRASH": {
|
|
318
|
+
"NODES_PURGE": {
|
|
319
|
+
"PLURAL": "{{ number }} 个项目无法删除",
|
|
320
|
+
"SINGULAR": "{{ name }} 无法删除"
|
|
321
|
+
},
|
|
322
|
+
"NODES_RESTORE": {
|
|
323
|
+
"PARTIAL_PLURAL": "{{ number }} 个项目无法恢复,因为恢复位置存在问题",
|
|
324
|
+
"NODE_EXISTS": "无法恢复,{{ name }} 已存在",
|
|
325
|
+
"LOCATION_MISSING": "无法恢复 {{ name }},原位置不复存在",
|
|
326
|
+
"GENERIC": "恢复 {{ name }} 时出现问题"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"DELETE_LIBRARY_FAILED": "无法删除库",
|
|
330
|
+
"LEAVE_LIBRARY_FAILED": "无法离开该库"
|
|
331
|
+
},
|
|
332
|
+
"UPLOAD": {
|
|
333
|
+
"ERROR": {
|
|
334
|
+
"GENERIC": "上传不成功。如果此问题仍然存在,请联系 IT 人员",
|
|
335
|
+
"CONFLICT": "未上传新版本,已存在另一个同名文件",
|
|
336
|
+
"500": "内部服务器错误,请重试或联系 IT 支持人员 [500]",
|
|
337
|
+
"504": "服务器超时,请重试或联系 IT 支持人员 [504]",
|
|
338
|
+
"403": "权限不足,无法在此位置中进行上传 [403]",
|
|
339
|
+
"404": "上传位置不再存在 [404]"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"INFO": {
|
|
343
|
+
"TRASH": {
|
|
344
|
+
"NODES_PURGE": {
|
|
345
|
+
"PLURAL": "{{ number }} 个项目已删除",
|
|
346
|
+
"SINGULAR": "{{ name }} 已删除",
|
|
347
|
+
"PARTIAL_SINGULAR": "{{ name }} 已删除,{{ failed }} 无法删除",
|
|
348
|
+
"PARTIAL_PLURAL": "{{ number }} 个项目已删除,{{ failed }} 无法删除"
|
|
349
|
+
},
|
|
350
|
+
"NODES_RESTORE": {
|
|
351
|
+
"PLURAL": "成功恢复",
|
|
352
|
+
"SINGULAR": "{{ name }} 已恢复"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"NODE_DELETION": {
|
|
356
|
+
"SINGULAR": "{{ name }} 已删除",
|
|
357
|
+
"PLURAL": "已删除 {{ number }} 个项目",
|
|
358
|
+
"PARTIAL_SINGULAR": "已删除 {{ success }} 项目,{{ failed }} 无法删除",
|
|
359
|
+
"PARTIAL_PLURAL": "已删除 {{ success }} 项目,{{ failed }} 无法删除"
|
|
360
|
+
},
|
|
361
|
+
"NODE_COPY": {
|
|
362
|
+
"SINGULAR": "已复制 {{ success }} 项目",
|
|
363
|
+
"PLURAL": "已复制 {{ success }} 项目",
|
|
364
|
+
"PARTIAL_SINGULAR": "已复制 {{ success }} 项目,{{ failed }} 无法复制。",
|
|
365
|
+
"PARTIAL_PLURAL": "已复制 {{ success }} 项目,{{ failed }} 无法复制。",
|
|
366
|
+
"FAIL_SINGULAR": "{{ failed }} 项目无法复制。",
|
|
367
|
+
"FAIL_PLURAL": "{{ failed }} 项目无法复制。"
|
|
368
|
+
},
|
|
369
|
+
"NODE_MOVE": {
|
|
370
|
+
"SINGULAR": "已移动 {{ success }} 项目。",
|
|
371
|
+
"PLURAL": "已移动 {{ success }} 项目。",
|
|
372
|
+
"PARTIAL": {
|
|
373
|
+
"SINGULAR": "部分移动 {{ partially }} 项目。",
|
|
374
|
+
"PLURAL": "部分移动 {{ partially }} 项目。",
|
|
375
|
+
"FAIL": "{{ failed }} 无法移动。"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"LIBRARY_DELETED": "库已删除",
|
|
379
|
+
"LEFT_LIBRARY": "您已离开该库"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"CONTENT_METADATA": {
|
|
383
|
+
"EXIF_GROUP_TITLE": "图像EXIF",
|
|
384
|
+
"GROUP_IPTC_CORE_CONTACT_INFO": "IPTC 联系人",
|
|
385
|
+
"GROUP_IPTC_CORE_IMAGE_INFO": "IPTC 图像",
|
|
386
|
+
"GROUP_IPTC_CORE_CONTENT_INFO": "IPTC 内容",
|
|
387
|
+
"GROUP_IPTC_CORE_STATUS_INFO": "IPTC 状态",
|
|
388
|
+
"GROUP_IPTC_EXT_DESCRIPTION": "IPTC 图像描述",
|
|
389
|
+
"GROUP_IPTC_EXT_AO_DETAIL": "IPTC 艺术品或物体细节",
|
|
390
|
+
"GROUP_IPTC_EXT_MODEL_INFO": "IPTC 模型信息",
|
|
391
|
+
"GROUP_IPTC_EXT_ADMIN_INFO": "IPTC 管理信息",
|
|
392
|
+
"GROUP_IPTC_EXT_RIGHTS_INFO": "IPTC 权利信息",
|
|
393
|
+
"GROUP_IPTC_EXT_OTHER": "IPTC 其他",
|
|
394
|
+
"EFFECTIVITY_GROUP_TITLE": "有效性"
|
|
395
|
+
},
|
|
396
|
+
"INFO_DRAWER": {
|
|
397
|
+
"TITLE": "详细信息",
|
|
398
|
+
"DATA_LOADING": "数据正在加载",
|
|
399
|
+
"TABS": {
|
|
400
|
+
"PROPERTIES": "属性",
|
|
401
|
+
"LIBRARY_PROPERTIES": "关于",
|
|
402
|
+
"VERSIONS": "版本",
|
|
403
|
+
"COMMENTS": "注释",
|
|
404
|
+
"PERMISSIONS": "权限",
|
|
405
|
+
"EXPAND": "展开"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"TOOLTIPS": {
|
|
409
|
+
"COLLAPSE_NAVIGATION": "折叠导航菜单",
|
|
410
|
+
"OPTIONS_SETTINGS": "选项和设置",
|
|
411
|
+
"MY_PROFILE": "我的个人档案",
|
|
412
|
+
"EXPAND_NAVIGATION": "展开导航菜单"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"NODE_SELECTOR": {
|
|
416
|
+
"COPY_ITEM": "将 '{{ name }}' 复制到...",
|
|
417
|
+
"COPY_ITEMS": "将 {{ number }} 个项目复制到...",
|
|
418
|
+
"MOVE_ITEM": "将 '{{ name }}' 移动到...",
|
|
419
|
+
"MOVE_ITEMS": "将 {{ number }} 个项目移动到...",
|
|
420
|
+
"SEARCH": "搜索",
|
|
421
|
+
"NEXT": "下一个",
|
|
422
|
+
"SELECT_FILE_TEMPLATE_TITLE": "选择一个文档模板",
|
|
423
|
+
"SELECT_FOLDER_TEMPLATE_TITLE": "选择一个文件夹模板"
|
|
424
|
+
},
|
|
425
|
+
"NODE_FROM_TEMPLATE": {
|
|
426
|
+
"CANCEL": "取消",
|
|
427
|
+
"CREATE": "创建",
|
|
428
|
+
"FOLDER_DIALOG_TITLE": "从 <span class=\"bold\">'{{ template }}'</span> 创建新文件夹",
|
|
429
|
+
"FILE_DIALOG_TITLE": "从 <span class=\"bold\">'{{ template }}'</span> 创建新文档",
|
|
430
|
+
"FORM": {
|
|
431
|
+
"PLACEHOLDER": {
|
|
432
|
+
"NAME": "名称",
|
|
433
|
+
"TITLE": "标题",
|
|
434
|
+
"DESCRIPTION": "说明"
|
|
435
|
+
},
|
|
436
|
+
"ERRORS": {
|
|
437
|
+
"DESCRIPTION_TOO_LONG": "对描述使用 512 个字符或更少字符",
|
|
438
|
+
"TITLE_TOO_LONG": "对标题使用 256 个字符或更少字符",
|
|
439
|
+
"REQUIRED": "需要名称",
|
|
440
|
+
"SPECIAL_CHARACTERS": "名称不能包含字符 * \" < > \\ / ? : |",
|
|
441
|
+
"ENDING_DOT": "名称不能以句号 。 结尾",
|
|
442
|
+
"ONLY_SPACES": "名称不能仅包含空格"
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"SHARED_LINK": {
|
|
447
|
+
"UNSHARE_PERMISSION_ERROR": "您没有权限取消这个文件的共享"
|
|
448
|
+
},
|
|
449
|
+
"VERSION": {
|
|
450
|
+
"DIALOG": {
|
|
451
|
+
"TITLE": "上传新版本",
|
|
452
|
+
"CANCEL": "取消",
|
|
453
|
+
"UPLOAD": "上传"
|
|
454
|
+
},
|
|
455
|
+
"SELECTION": {
|
|
456
|
+
"EMPTY": "请选定一个文件去看它的版本。",
|
|
457
|
+
"NO_PERMISSION": "您没有权限管理此内容的版本。"
|
|
458
|
+
},
|
|
459
|
+
"ERROR": {
|
|
460
|
+
"GENERIC": "对文件进行版本控制时发生错误"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"LIBRARY": {
|
|
464
|
+
"DIALOG": {
|
|
465
|
+
"CREATE_TITLE": "创建库",
|
|
466
|
+
"CREATE": "创建",
|
|
467
|
+
"UPDATE": "更新",
|
|
468
|
+
"EDIT": "编辑",
|
|
469
|
+
"CANCEL": "取消",
|
|
470
|
+
"FORM": {
|
|
471
|
+
"DESCRIPTION": "说明",
|
|
472
|
+
"SITE_ID": "库 ID",
|
|
473
|
+
"NAME": "名称",
|
|
474
|
+
"VISIBILITY": "可见性"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"VISIBILITY": {
|
|
478
|
+
"PRIVATE": "私有",
|
|
479
|
+
"PUBLIC": "公共",
|
|
480
|
+
"MODERATED": "适中"
|
|
481
|
+
},
|
|
482
|
+
"HINTS": {
|
|
483
|
+
"SITE_TITLE_EXISTS": "库名已在使用中"
|
|
484
|
+
},
|
|
485
|
+
"ERRORS": {
|
|
486
|
+
"GENERIC": "我们遇到一个问题",
|
|
487
|
+
"EXISTENT_SITE": "此库 ID 不可用。请尝试使用其他库 ID。",
|
|
488
|
+
"CONFLICT": "此库 ID 已被使用。请检查垃圾桶。",
|
|
489
|
+
"ID_TOO_LONG": "对 URL 名称使用 72 个字符或更少字符",
|
|
490
|
+
"DESCRIPTION_TOO_LONG": "对描述使用 512 个字符或更少字符",
|
|
491
|
+
"TITLE_TOO_LONG": "对标题使用 256 个字符或更少字符",
|
|
492
|
+
"ILLEGAL_CHARACTERS": "仅使用数字和字母",
|
|
493
|
+
"ONLY_SPACES": "文档库名称不能只包含空格",
|
|
494
|
+
"LIBRARY_UPDATE_ERROR": "更新库属性时发生错误"
|
|
495
|
+
},
|
|
496
|
+
"SUCCESS": {
|
|
497
|
+
"LIBRARY_UPDATED": "已更新库属性"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"SEARCH": {
|
|
501
|
+
"INPUT": {
|
|
502
|
+
"PLACEHOLDER": "搜索",
|
|
503
|
+
"FILES": "文件",
|
|
504
|
+
"FOLDERS": "文件夹",
|
|
505
|
+
"LIBRARIES": "库",
|
|
506
|
+
"HINT": "搜索输入必须至少具有 2 个字母数字字符。"
|
|
507
|
+
},
|
|
508
|
+
"SORT": {
|
|
509
|
+
"SORTING_OPTION": "排序方式",
|
|
510
|
+
"ASCENDING": "升序",
|
|
511
|
+
"DESCENDING": "降序",
|
|
512
|
+
"RELEVANCE": "相关性",
|
|
513
|
+
"FILENAME": "文件名",
|
|
514
|
+
"TITLE": "标题",
|
|
515
|
+
"MODIFIED_DATE": "修改日期",
|
|
516
|
+
"SIZE": "大小",
|
|
517
|
+
"TYPE": "类型",
|
|
518
|
+
"MODIFIER": "修改者",
|
|
519
|
+
"CREATE_DATE": "创建日期"
|
|
520
|
+
},
|
|
521
|
+
"FACET_FIELDS": {
|
|
522
|
+
"CREATOR": "创建者",
|
|
523
|
+
"MODIFIER": "修改者",
|
|
524
|
+
"LOCATION": "位置",
|
|
525
|
+
"CATEGORIES": "类别"
|
|
526
|
+
},
|
|
527
|
+
"CATEGORIES": {
|
|
528
|
+
"EFFECTIVITY_FROM": "有效开始",
|
|
529
|
+
"EFFECTIVITY_TO": "有效结束",
|
|
530
|
+
"LOGIC": "登录"
|
|
531
|
+
},
|
|
532
|
+
"SEARCH_HEADER": {
|
|
533
|
+
"TITLE": "筛选",
|
|
534
|
+
"TYPE": "类型",
|
|
535
|
+
"FILTER_BY": "根据 {{ category }} 筛选",
|
|
536
|
+
"CLEAR": "清除",
|
|
537
|
+
"APPLY": "应用",
|
|
538
|
+
"FILTERS": {
|
|
539
|
+
"NAME": {
|
|
540
|
+
"TITLE": "名称",
|
|
541
|
+
"PLACEHOLDER": "输入名称"
|
|
542
|
+
},
|
|
543
|
+
"TYPE": {
|
|
544
|
+
"TITLE": "勾选类型",
|
|
545
|
+
"FOLDER": "文件夹",
|
|
546
|
+
"DOCUMENT": "文档"
|
|
547
|
+
},
|
|
548
|
+
"SIZE": {
|
|
549
|
+
"TITLE": "内容大小(范围)",
|
|
550
|
+
"SMALL": "小",
|
|
551
|
+
"MEDIUM": "中",
|
|
552
|
+
"LARGE": "大",
|
|
553
|
+
"HUGE": "特大"
|
|
554
|
+
},
|
|
555
|
+
"DATE": {
|
|
556
|
+
"TITLE": "创建日期(范围)"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"CORE": {
|
|
562
|
+
"METADATA": {
|
|
563
|
+
"ACTIONS": {
|
|
564
|
+
"SAVE": "保存更改",
|
|
565
|
+
"CANCEL": "放弃更改"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"ADF_VIEWER": {
|
|
570
|
+
"ACTIONS": {
|
|
571
|
+
"INFO": "查看详细信息",
|
|
572
|
+
"PREVIEW": "显示预览"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"FILE_UPLOAD": {
|
|
576
|
+
"ERRORS": {
|
|
577
|
+
"409": "此名称已使用,请尝试其他名称 [409]"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"ADF_VERSION_LIST": {
|
|
581
|
+
"ACTIONS": {
|
|
582
|
+
"UPLOAD": {
|
|
583
|
+
"TOOLTIP": "上传新版本"
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"CUSTOM_NAME_COLUMN": {
|
|
588
|
+
"ACCESSIBILITY": {
|
|
589
|
+
"FILE_LINK_ARIA_LABEL": "查看 {{ name }}",
|
|
590
|
+
"FOLDER_LINK_ARIA_LABEL": "打开 {{ name }} 文件夹"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"ADF-DATATABLE": {
|
|
594
|
+
"FILE_TYPE": {
|
|
595
|
+
"BOOKS-24PX": "文件库",
|
|
596
|
+
"BASELINE-LOCK-24PX": "锁定的文件"
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|