@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/pt-BR.json
CHANGED
|
@@ -1,599 +1,600 @@
|
|
|
1
|
-
{
|
|
2
|
-
"APP": {
|
|
3
|
-
"COPYRIGHT": "© 2005-2024 Hyland Software, Inc. e seus afiliados. Todos os direitos reservados.",
|
|
4
|
-
"TITLE": "Workspace",
|
|
5
|
-
"ABOUT": {
|
|
6
|
-
"VERSION": "Versão:",
|
|
7
|
-
"PLUGINS": {
|
|
8
|
-
"TITLE": "Extensões",
|
|
9
|
-
"ID": "ID",
|
|
10
|
-
"NAME": "Nome",
|
|
11
|
-
"VERSION": "Versão",
|
|
12
|
-
"VENDOR": "Fornecedor",
|
|
13
|
-
"LICENSE": "Licença",
|
|
14
|
-
"RUNTIME": "Tempo de execução",
|
|
15
|
-
"DESCRIPTION": "Descrição"
|
|
16
|
-
},
|
|
17
|
-
"LICENSE": {
|
|
18
|
-
"TITLE": "Licença",
|
|
19
|
-
"PROPERTY": "Propriedade",
|
|
20
|
-
"VALUE": "Valor"
|
|
21
|
-
},
|
|
22
|
-
"STATUS": {
|
|
23
|
-
"TITLE": "Status",
|
|
24
|
-
"PROPERTY": "Propriedade",
|
|
25
|
-
"VALUE": "Valor"
|
|
26
|
-
},
|
|
27
|
-
"MODULES": {
|
|
28
|
-
"TITLE": "Módulos da plataforma Alfresco",
|
|
29
|
-
"ID": "ID",
|
|
30
|
-
"NAME": "Nome",
|
|
31
|
-
"VERSION": "Versão"
|
|
32
|
-
},
|
|
33
|
-
"PACKAGES": {
|
|
34
|
-
"TITLE": "Pacotes",
|
|
35
|
-
"NAME": "Nome",
|
|
36
|
-
"VERSION": "Versão"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"LANGUAGE": "Idioma",
|
|
40
|
-
"SIGN_IN": "Entrar",
|
|
41
|
-
"SIGN_OUT": "Sair",
|
|
42
|
-
"EDIT_PROFILE": {
|
|
43
|
-
"MY_PROFILE": "Meu perfil",
|
|
44
|
-
"GENERAL": "Geral",
|
|
45
|
-
"EDIT": "Editar",
|
|
46
|
-
"CANCEL": "Cancelar",
|
|
47
|
-
"SAVE": "Salvar",
|
|
48
|
-
"FIRST_NAME": "Nome",
|
|
49
|
-
"LAST_NAME": "Sobrenome",
|
|
50
|
-
"JOB_TITLE": "Cargo",
|
|
51
|
-
"LOCATION": "Localização",
|
|
52
|
-
"TELEPHONE": "Telefone",
|
|
53
|
-
"MOBILE": "Celular",
|
|
54
|
-
"LOGIN": "Login",
|
|
55
|
-
"USERNAME": "Nome de usuário",
|
|
56
|
-
"EMAIL": "E-mail",
|
|
57
|
-
"PASSWORD": "Senha",
|
|
58
|
-
"OLD_PASSWORD": "Senha antiga",
|
|
59
|
-
"FORGOT_PASSWORD": "Esqueci a senha",
|
|
60
|
-
"NEW_PASSWORD": "Nova senha",
|
|
61
|
-
"VERIFY_PASSWORD": "Verificar senha",
|
|
62
|
-
"COMPANY_DETAILS": "Detalhes da empresa",
|
|
63
|
-
"NAME": "Nome",
|
|
64
|
-
"ADDRESS": "Endereço",
|
|
65
|
-
"POSTCODE": "Código postal",
|
|
66
|
-
"INVALID_INPUT": "Entrada inválida"
|
|
67
|
-
},
|
|
68
|
-
"LOCKED_BY": "Bloqueado por: ",
|
|
69
|
-
"PREVIEW": {
|
|
70
|
-
"TITLE": "Visualizar"
|
|
71
|
-
},
|
|
72
|
-
"DETAILS": {
|
|
73
|
-
"TITLE": "Detalhes"
|
|
74
|
-
},
|
|
75
|
-
"NEW_MENU": {
|
|
76
|
-
"MENU_ITEMS": {
|
|
77
|
-
"CREATE_FOLDER": "Criar pasta",
|
|
78
|
-
"UPLOAD_FILE": "Carregar arquivo",
|
|
79
|
-
"UPLOAD_FOLDER": "Carregar pasta",
|
|
80
|
-
"CREATE_LIBRARY": "Criar biblioteca",
|
|
81
|
-
"FILE_TEMPLATE": "Criar arquivo a partir do modelo",
|
|
82
|
-
"FOLDER_TEMPLATE": "Criar pasta a partir do modelo"
|
|
83
|
-
},
|
|
84
|
-
"TOOLTIPS": {
|
|
85
|
-
"CREATE_FOLDER": "Criar nova pasta",
|
|
86
|
-
"CREATE_FOLDER_NOT_ALLOWED": "Não é possível criar pastas durante a visualização dos itens atuais",
|
|
87
|
-
"CREATE_FILE_NOT_ALLOWED": "Os arquivos não podem ser criados enquanto os itens atuais estiverem sendo visualizados",
|
|
88
|
-
"UPLOAD_FILES": "Selecionar arquivos para carregar",
|
|
89
|
-
"UPLOAD_FILES_NOT_ALLOWED": "Não é possível carregar arquivos durante a visualização dos itens atuais",
|
|
90
|
-
"UPLOAD_FOLDERS": "Selecionar pastas para carregar",
|
|
91
|
-
"UPLOAD_FOLDERS_NOT_ALLOWED": "Não é possível carregar pastas durante a visualização dos itens atuais",
|
|
92
|
-
"CREATE_LIBRARY": "Criar uma nova biblioteca de arquivos"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"HEADER": {
|
|
96
|
-
"BUTTONS": {
|
|
97
|
-
"CREATE": "Criar",
|
|
98
|
-
"CREATE_TOOLTIP": "Criar conteúdo",
|
|
99
|
-
"UPLOAD": "Carregar",
|
|
100
|
-
"UPLOAD_TOOLTIP": "Carregar conteúdo"
|
|
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. e seus afiliados. Todos os direitos reservados.",
|
|
4
|
+
"TITLE": "Workspace",
|
|
5
|
+
"ABOUT": {
|
|
6
|
+
"VERSION": "Versão:",
|
|
7
|
+
"PLUGINS": {
|
|
8
|
+
"TITLE": "Extensões",
|
|
9
|
+
"ID": "ID",
|
|
10
|
+
"NAME": "Nome",
|
|
11
|
+
"VERSION": "Versão",
|
|
12
|
+
"VENDOR": "Fornecedor",
|
|
13
|
+
"LICENSE": "Licença",
|
|
14
|
+
"RUNTIME": "Tempo de execução",
|
|
15
|
+
"DESCRIPTION": "Descrição"
|
|
16
|
+
},
|
|
17
|
+
"LICENSE": {
|
|
18
|
+
"TITLE": "Licença",
|
|
19
|
+
"PROPERTY": "Propriedade",
|
|
20
|
+
"VALUE": "Valor"
|
|
21
|
+
},
|
|
22
|
+
"STATUS": {
|
|
23
|
+
"TITLE": "Status",
|
|
24
|
+
"PROPERTY": "Propriedade",
|
|
25
|
+
"VALUE": "Valor"
|
|
26
|
+
},
|
|
27
|
+
"MODULES": {
|
|
28
|
+
"TITLE": "Módulos da plataforma Alfresco",
|
|
29
|
+
"ID": "ID",
|
|
30
|
+
"NAME": "Nome",
|
|
31
|
+
"VERSION": "Versão"
|
|
32
|
+
},
|
|
33
|
+
"PACKAGES": {
|
|
34
|
+
"TITLE": "Pacotes",
|
|
35
|
+
"NAME": "Nome",
|
|
36
|
+
"VERSION": "Versão"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"LANGUAGE": "Idioma",
|
|
40
|
+
"SIGN_IN": "Entrar",
|
|
41
|
+
"SIGN_OUT": "Sair",
|
|
42
|
+
"EDIT_PROFILE": {
|
|
43
|
+
"MY_PROFILE": "Meu perfil",
|
|
44
|
+
"GENERAL": "Geral",
|
|
45
|
+
"EDIT": "Editar",
|
|
46
|
+
"CANCEL": "Cancelar",
|
|
47
|
+
"SAVE": "Salvar",
|
|
48
|
+
"FIRST_NAME": "Nome",
|
|
49
|
+
"LAST_NAME": "Sobrenome",
|
|
50
|
+
"JOB_TITLE": "Cargo",
|
|
51
|
+
"LOCATION": "Localização",
|
|
52
|
+
"TELEPHONE": "Telefone",
|
|
53
|
+
"MOBILE": "Celular",
|
|
54
|
+
"LOGIN": "Login",
|
|
55
|
+
"USERNAME": "Nome de usuário",
|
|
56
|
+
"EMAIL": "E-mail",
|
|
57
|
+
"PASSWORD": "Senha",
|
|
58
|
+
"OLD_PASSWORD": "Senha antiga",
|
|
59
|
+
"FORGOT_PASSWORD": "Esqueci a senha",
|
|
60
|
+
"NEW_PASSWORD": "Nova senha",
|
|
61
|
+
"VERIFY_PASSWORD": "Verificar senha",
|
|
62
|
+
"COMPANY_DETAILS": "Detalhes da empresa",
|
|
63
|
+
"NAME": "Nome",
|
|
64
|
+
"ADDRESS": "Endereço",
|
|
65
|
+
"POSTCODE": "Código postal",
|
|
66
|
+
"INVALID_INPUT": "Entrada inválida"
|
|
67
|
+
},
|
|
68
|
+
"LOCKED_BY": "Bloqueado por: ",
|
|
69
|
+
"PREVIEW": {
|
|
70
|
+
"TITLE": "Visualizar"
|
|
71
|
+
},
|
|
72
|
+
"DETAILS": {
|
|
73
|
+
"TITLE": "Detalhes"
|
|
74
|
+
},
|
|
75
|
+
"NEW_MENU": {
|
|
76
|
+
"MENU_ITEMS": {
|
|
77
|
+
"CREATE_FOLDER": "Criar pasta",
|
|
78
|
+
"UPLOAD_FILE": "Carregar arquivo",
|
|
79
|
+
"UPLOAD_FOLDER": "Carregar pasta",
|
|
80
|
+
"CREATE_LIBRARY": "Criar biblioteca",
|
|
81
|
+
"FILE_TEMPLATE": "Criar arquivo a partir do modelo",
|
|
82
|
+
"FOLDER_TEMPLATE": "Criar pasta a partir do modelo"
|
|
83
|
+
},
|
|
84
|
+
"TOOLTIPS": {
|
|
85
|
+
"CREATE_FOLDER": "Criar nova pasta",
|
|
86
|
+
"CREATE_FOLDER_NOT_ALLOWED": "Não é possível criar pastas durante a visualização dos itens atuais",
|
|
87
|
+
"CREATE_FILE_NOT_ALLOWED": "Os arquivos não podem ser criados enquanto os itens atuais estiverem sendo visualizados",
|
|
88
|
+
"UPLOAD_FILES": "Selecionar arquivos para carregar",
|
|
89
|
+
"UPLOAD_FILES_NOT_ALLOWED": "Não é possível carregar arquivos durante a visualização dos itens atuais",
|
|
90
|
+
"UPLOAD_FOLDERS": "Selecionar pastas para carregar",
|
|
91
|
+
"UPLOAD_FOLDERS_NOT_ALLOWED": "Não é possível carregar pastas durante a visualização dos itens atuais",
|
|
92
|
+
"CREATE_LIBRARY": "Criar uma nova biblioteca de arquivos"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"HEADER": {
|
|
96
|
+
"BUTTONS": {
|
|
97
|
+
"CREATE": "Criar",
|
|
98
|
+
"CREATE_TOOLTIP": "Criar conteúdo",
|
|
99
|
+
"UPLOAD": "Carregar",
|
|
100
|
+
"UPLOAD_TOOLTIP": "Carregar conteúdo"
|
|
101
|
+
},
|
|
102
|
+
"SELECTED": "Selecionado ({{ count }})"
|
|
103
|
+
},
|
|
104
|
+
"BROWSE": {
|
|
105
|
+
"FILE": {
|
|
106
|
+
"SIDENAV_LINK": {
|
|
107
|
+
"LABEL": "Arquivos",
|
|
108
|
+
"TOOLTIP": "Arquivos"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"PERSONAL": {
|
|
112
|
+
"TITLE": "Arquivos pessoais",
|
|
113
|
+
"SIDENAV_LINK": {
|
|
114
|
+
"LABEL": "Arquivos pessoais",
|
|
115
|
+
"TOOLTIP": "Visualizar seus arquivos pessoais"
|
|
116
|
+
},
|
|
117
|
+
"PERMISSIONS": {
|
|
118
|
+
"TITLE": "Permissões"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"LIBRARIES": {
|
|
122
|
+
"TITLE": "Bibliotecas de arquivos",
|
|
123
|
+
"DESCRIPTION": "Acessar bibliotecas de arquivos",
|
|
124
|
+
"SIDENAV_LINK": {
|
|
125
|
+
"LABEL": "Bibliotecas de arquivos",
|
|
126
|
+
"TOOLTIP": "Bibliotecas de arquivos"
|
|
127
|
+
},
|
|
128
|
+
"EMPTY_STATE": {
|
|
129
|
+
"FILE_LIBRARIES": {
|
|
130
|
+
"TITLE": "Você ainda não é membro de nenhuma biblioteca de arquivos",
|
|
131
|
+
"TEXT": "Acesse as bibliotecas para carregar, visualizar e compartilhar arquivos."
|
|
132
|
+
},
|
|
133
|
+
"FAVORITE_LIBRARIES": {
|
|
134
|
+
"TITLE": "Nenhuma biblioteca favorita",
|
|
135
|
+
"TEXT": "Adicione uma biblioteca como favorita para facilitar o acesso a ela."
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"MENU": {
|
|
139
|
+
"MY_LIBRARIES": {
|
|
140
|
+
"TITLE": "Minhas bibliotecas",
|
|
141
|
+
"SIDENAV_LINK": {
|
|
142
|
+
"LABEL": "Minhas bibliotecas",
|
|
143
|
+
"TOOLTIP": "Acessar minhas bibliotecas"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"FAVORITE_LIBRARIES": {
|
|
147
|
+
"TITLE": "Bibliotecas favoritas",
|
|
148
|
+
"SIDENAV_LINK": {
|
|
149
|
+
"LABEL": "Bibliotecas favoritas",
|
|
150
|
+
"TOOLTIP": "Acessar minhas bibliotecas favoritas"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"SHARED": {
|
|
156
|
+
"TITLE": "Arquivos compartilhados",
|
|
157
|
+
"SIDENAV_LINK": {
|
|
158
|
+
"LABEL": "Compartilhado",
|
|
159
|
+
"TOOLTIP": "Visualize arquivos que foram compartilhados"
|
|
160
|
+
},
|
|
161
|
+
"EMPTY_STATE": {
|
|
162
|
+
"TITLE": "Não há nenhum arquivo ou pasta compartilhados",
|
|
163
|
+
"TEXT": "Os itens que você compartilhar usando a opção Compartilhar são exibidos aqui."
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"RECENT": {
|
|
167
|
+
"TITLE": "Arquivos recentes",
|
|
168
|
+
"SIDENAV_LINK": {
|
|
169
|
+
"LABEL": "Arquivos recentes",
|
|
170
|
+
"TOOLTIP": "Visualize arquivos que você editou recentemente"
|
|
171
|
+
},
|
|
172
|
+
"EMPTY_STATE": {
|
|
173
|
+
"TITLE": "Não há nenhum arquivo recente",
|
|
174
|
+
"TEXT": "Os itens que você carregou ou editou nos últimos 30 dias são exibidos aqui."
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"FAVORITES": {
|
|
178
|
+
"TITLE": "Favoritos",
|
|
179
|
+
"SIDENAV_LINK": {
|
|
180
|
+
"LABEL": "Favoritos",
|
|
181
|
+
"TOOLTIP": "Visualize seus arquivos e pastas favoritos"
|
|
182
|
+
},
|
|
183
|
+
"EMPTY_STATE": {
|
|
184
|
+
"TITLE": "Não há nenhum arquivo ou pasta favoritos",
|
|
185
|
+
"TEXT": "Itens favoritos que você queira encontrar facilmente depois."
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"TRASHCAN": {
|
|
189
|
+
"TITLE": "Lixeira",
|
|
190
|
+
"SIDENAV_LINK": {
|
|
191
|
+
"LABEL": "Lixeira",
|
|
192
|
+
"TOOLTIP": "Visualize arquivos excluídos na lixeira"
|
|
193
|
+
},
|
|
194
|
+
"EMPTY_STATE": {
|
|
195
|
+
"TITLE": "A lixeira está vazia",
|
|
196
|
+
"FIRST_TEXT": "Itens apagados são movidos para a Lixeira.",
|
|
197
|
+
"SECOND_TEXT": "Esvazie a Lixeira para apagar os itens permanentemente."
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"ABOUT": {
|
|
201
|
+
"TITLE": "Sobre"
|
|
202
|
+
},
|
|
203
|
+
"SEARCH": {
|
|
204
|
+
"DEFAULT_SEARCH": "Padrão",
|
|
205
|
+
"DUBLIN_CORE": "Dublin core",
|
|
206
|
+
"EFFECTIVITY": "Efetividade",
|
|
207
|
+
"TITLE": "Resultados da pesquisa",
|
|
208
|
+
"FILTER_SET": "Conjunto de filtros:",
|
|
209
|
+
"ADVANCED_FILTERS": "Filtros avançados:",
|
|
210
|
+
"RESET": "Redefinir",
|
|
211
|
+
"RESET_ACTION": "Redefinir filtros de pesquisa",
|
|
212
|
+
"FOUND_RESULTS": "{{ number }} resultados encontrados",
|
|
213
|
+
"FOUND_ONE_RESULT": "{{ number }} resultados encontrados",
|
|
214
|
+
"CUSTOM_ROW": {
|
|
215
|
+
"MODIFIED": "Modificado",
|
|
216
|
+
"BY_USER": "por {{ user }}",
|
|
217
|
+
"LOCATION": "Localização",
|
|
218
|
+
"SIZE": "Tamanho"
|
|
219
|
+
},
|
|
220
|
+
"UNKNOWN_LOCATION": "Desconhecido",
|
|
221
|
+
"NO_RESULTS": "Sua pesquisa retornou 0 resultados",
|
|
222
|
+
"EMPTY_SEARCH": "Termo de pesquisa necessário",
|
|
223
|
+
"NO_FILTER_RESULTS": "Seu filtro retornou 0 resultados",
|
|
224
|
+
"ERRORS": {
|
|
225
|
+
"500": "Houve um erro ao processar a consulta da pesquisa [500]",
|
|
226
|
+
"GENERIC": "Houve um erro ao processar a consulta da pesquisa"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"SEARCH_LIBRARIES": {
|
|
230
|
+
"FOUND_RESULTS": "{{ number }} resultados",
|
|
231
|
+
"FOUND_ONE_RESULT": "{{ number }} resultados"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"ACTIONS": {
|
|
235
|
+
"VIEW": "Visualizar",
|
|
236
|
+
"EDIT": "Editar",
|
|
237
|
+
"DOWNLOAD": "Baixar",
|
|
238
|
+
"COPY": "Copiar",
|
|
239
|
+
"MOVE": "Mover",
|
|
240
|
+
"DELETE": "Excluir",
|
|
241
|
+
"DELETE_PERMANENT": "Excluir permanentemente",
|
|
242
|
+
"MORE": "Mais ações",
|
|
243
|
+
"UNDO": "Desfazer",
|
|
244
|
+
"PERMISSIONS": "Permissões",
|
|
245
|
+
"RESTORE": "Restaurar",
|
|
246
|
+
"FAVORITE": "Favoritos",
|
|
247
|
+
"ADD_FAVORITE": "Adicionar favorito",
|
|
248
|
+
"REMOVE_FAVORITE": "Remover favorito",
|
|
249
|
+
"UNSHARE": "Descompartilhar",
|
|
250
|
+
"DETAILS": "Exibir detalhes",
|
|
251
|
+
"VERSIONS": "Gerenciar versões",
|
|
252
|
+
"UPLOAD_VERSION": "Carregar nova versão",
|
|
253
|
+
"TOGGLE-SIDENAV": "Alternar a barra de navegação lateral",
|
|
254
|
+
"SHARE": "Compartilhar",
|
|
255
|
+
"SHARE_EDIT": "Configurações de links compartilhados",
|
|
256
|
+
"PRINT": "Imprimir",
|
|
257
|
+
"FULLSCREEN": "Ativar modo de tela cheia",
|
|
258
|
+
"JOIN": "Ingressar",
|
|
259
|
+
"CANCEL_JOIN": "Cancelar solicitação de ingressar",
|
|
260
|
+
"LEAVE": "Sair da biblioteca",
|
|
261
|
+
"EDIT_OFFLINE": "Editar offline",
|
|
262
|
+
"EDIT_OFFLINE_CANCEL": "Cancelar a edição",
|
|
263
|
+
"CHANGE_ASPECT": "Editar aspectos"
|
|
264
|
+
},
|
|
265
|
+
"DIALOGS": {
|
|
266
|
+
"CONFIRM_PURGE": {
|
|
267
|
+
"TITLE": "Excluir da lixeira?",
|
|
268
|
+
"MESSAGE": "Essa ação excluirá permanentemente os itens selecionados.",
|
|
269
|
+
"YES_LABEL": "Excluir",
|
|
270
|
+
"NO_LABEL": "Manter"
|
|
271
|
+
},
|
|
272
|
+
"CONFIRM_LEAVE": {
|
|
273
|
+
"TITLE": "Sair desta biblioteca?",
|
|
274
|
+
"MESSAGE": "Sair removerá o seu acesso.",
|
|
275
|
+
"YES_LABEL": "OK",
|
|
276
|
+
"NO_LABEL": "Cancelar"
|
|
277
|
+
},
|
|
278
|
+
"MOBILE_APP": {
|
|
279
|
+
"MOBILE_APP_BUTTON_LABEL": "Abrir no aplicativo",
|
|
280
|
+
"DOWNLOAD_APP_BUTTON_LABEL": "Não tem o aplicativo? Baixe-o agora.",
|
|
281
|
+
"OPEN_ALFRESCO_MOBILE_APP": "Abrir usando o aplicativo móvel Alfresco?"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"DOCUMENT_LIST": {
|
|
285
|
+
"COLUMNS": {
|
|
286
|
+
"ID": "ID",
|
|
287
|
+
"NAME": "Nome",
|
|
288
|
+
"DESCRIPTION": "Descrição",
|
|
289
|
+
"SIZE": "Tamanho",
|
|
290
|
+
"MODIFIED_ON": "Modificado",
|
|
291
|
+
"MODIFIED_BY": "Modificado por",
|
|
292
|
+
"VISIBILITY": "Visibilidade",
|
|
293
|
+
"TITLE": "Título",
|
|
294
|
+
"LOCATION": "Localização",
|
|
295
|
+
"SHARED_BY": "Compartilhado por",
|
|
296
|
+
"DELETED_ON": "Excluído",
|
|
297
|
+
"DELETED_BY": "Excluído por",
|
|
298
|
+
"ROLE": "Meu papel",
|
|
299
|
+
"TAGS": "Marcas"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"MESSAGES": {
|
|
303
|
+
"ERRORS": {
|
|
304
|
+
"CANNOT_NAVIGATE_LOCATION": "Não foi possível abrir este local",
|
|
305
|
+
"MISSING_CONTENT": "Este item não existe, ou você não tem permissão de visualização.",
|
|
306
|
+
"GENERIC": "A ação não teve êxito. Tente novamente ou entre em contato com a Equipe de TI.",
|
|
307
|
+
"CONFLICT": "Este nome já está em uso, tente outro nome.",
|
|
308
|
+
"NODE_MOVE": "Falha ao mover, já existe um arquivo com o mesmo nome.",
|
|
309
|
+
"EXISTENT_FOLDER": "Já existe uma pasta com este nome. Tente outro nome.",
|
|
310
|
+
"NODE_DELETION": "Não foi possível excluir {{ name }}",
|
|
311
|
+
"NODE_DELETION_PLURAL": "Não foi possível excluir {{ number }} itens",
|
|
312
|
+
"NODE_RESTORE": "Não foi possível restaurar {{ name }}",
|
|
313
|
+
"NODE_RESTORE_PLURAL": "Não foi possível restaurar {{ number }} itens",
|
|
314
|
+
"PERMISSION": "Você não tem acesso para fazer isso",
|
|
315
|
+
"LOCK_NODE": "Houve um problema ao bloquear o arquivo {{ fileName }}",
|
|
316
|
+
"UNLOCK_NODE": "Houve um problema ao desbloquear o arquivo {{ fileName }}",
|
|
317
|
+
"TRASH": {
|
|
318
|
+
"NODES_PURGE": {
|
|
319
|
+
"PLURAL": "Não foi possível excluir {{ number }} itens",
|
|
320
|
+
"SINGULAR": "Não foi possível excluir {{ name }}"
|
|
321
|
+
},
|
|
322
|
+
"NODES_RESTORE": {
|
|
323
|
+
"PARTIAL_PLURAL": "{{ number }} itens não restaurados devido a problemas com o local da restauração",
|
|
324
|
+
"NODE_EXISTS": "Não foi possível restaurar, {{ name }} já existe",
|
|
325
|
+
"LOCATION_MISSING": "Não foi possível restaurar {{ name }}, o local original não existe mais",
|
|
326
|
+
"GENERIC": "Houve um problema ao restaurar {{ name }}"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"DELETE_LIBRARY_FAILED": "Não foi possível apagar a biblioteca",
|
|
330
|
+
"LEAVE_LIBRARY_FAILED": "Não foi possível sair desta biblioteca"
|
|
331
|
+
},
|
|
332
|
+
"UPLOAD": {
|
|
333
|
+
"ERROR": {
|
|
334
|
+
"GENERIC": "Não foi possível carregar. Se o problema persistir, entre em contato com a TI",
|
|
335
|
+
"CONFLICT": "Nova versão não carregada, já existe um arquivo com o mesmo nome",
|
|
336
|
+
"500": "Erro interno no servidor. Tente novamente ou entre em contato com a TI [500]",
|
|
337
|
+
"504": "Tempo expirado no servidor, tente novamente ou entre em contato com o suporte de TI [504]",
|
|
338
|
+
"403": "Permissões insuficientes para carregar neste local [403]",
|
|
339
|
+
"404": "O local para carregar não existe mais [404]"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
"INFO": {
|
|
343
|
+
"TRASH": {
|
|
344
|
+
"NODES_PURGE": {
|
|
345
|
+
"PLURAL": "{{ number }} itens excluídos",
|
|
346
|
+
"SINGULAR": "{{ name }} excluído",
|
|
347
|
+
"PARTIAL_SINGULAR": "{{ name }} excluído, não foi possível excluir {{ failed }}",
|
|
348
|
+
"PARTIAL_PLURAL": "{{ number }} itens excluídos, não foi possível excluir {{ failed }}"
|
|
349
|
+
},
|
|
350
|
+
"NODES_RESTORE": {
|
|
351
|
+
"PLURAL": "Restauração bem-sucedida",
|
|
352
|
+
"SINGULAR": "{{ name }} restaurado"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"NODE_DELETION": {
|
|
356
|
+
"SINGULAR": "{{ name }} excluído",
|
|
357
|
+
"PLURAL": "{{ number }} itens excluídos",
|
|
358
|
+
"PARTIAL_SINGULAR": "Item {{ success }} excluído, não foi possível excluir {{ failed }}",
|
|
359
|
+
"PARTIAL_PLURAL": "Itens {{ success }} excluídos, não foi possível excluir {{ failed }}"
|
|
360
|
+
},
|
|
361
|
+
"NODE_COPY": {
|
|
362
|
+
"SINGULAR": "Item {{ success }} copiado",
|
|
363
|
+
"PLURAL": "Itens {{ success }} copiados",
|
|
364
|
+
"PARTIAL_SINGULAR": "Item {{ success }} copiado, não foi possível copiar {{ failed }}.",
|
|
365
|
+
"PARTIAL_PLURAL": "Itens {{ success }} copiados, não foi possível copiar {{ failed }}.",
|
|
366
|
+
"FAIL_SINGULAR": "Não foi possível copiar o item {{ failed }}.",
|
|
367
|
+
"FAIL_PLURAL": "Não foi possível copiar os itens {{ failed }}."
|
|
368
|
+
},
|
|
369
|
+
"NODE_MOVE": {
|
|
370
|
+
"SINGULAR": "Item {{ success }} movido.",
|
|
371
|
+
"PLURAL": "Itens {{ success }} movidos.",
|
|
372
|
+
"PARTIAL": {
|
|
373
|
+
"SINGULAR": "Item {{ success }} parcialmente movido.",
|
|
374
|
+
"PLURAL": "Itens {{ success }} parcialmente movidos.",
|
|
375
|
+
"FAIL": "Não foi possível mover {{ failed }}."
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"LIBRARY_DELETED": "Biblioteca apagada",
|
|
379
|
+
"LEFT_LIBRARY": "Você saiu da biblioteca"
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"CONTENT_METADATA": {
|
|
383
|
+
"EXIF_GROUP_TITLE": "Imagem EXIF",
|
|
384
|
+
"GROUP_IPTC_CORE_CONTACT_INFO": "Contato IPTC",
|
|
385
|
+
"GROUP_IPTC_CORE_IMAGE_INFO": "Imagem IPTC",
|
|
386
|
+
"GROUP_IPTC_CORE_CONTENT_INFO": "Conteúdo IPTC",
|
|
387
|
+
"GROUP_IPTC_CORE_STATUS_INFO": "Status IPTC",
|
|
388
|
+
"GROUP_IPTC_EXT_DESCRIPTION": "Descrição da imagem IPTC",
|
|
389
|
+
"GROUP_IPTC_EXT_AO_DETAIL": "Arte IPTC ou detalhe do objeto",
|
|
390
|
+
"GROUP_IPTC_EXT_MODEL_INFO": "Informações do modelo IPTC",
|
|
391
|
+
"GROUP_IPTC_EXT_ADMIN_INFO": "Informações de administração IPTC",
|
|
392
|
+
"GROUP_IPTC_EXT_RIGHTS_INFO": "Informações de direitos IPTC",
|
|
393
|
+
"GROUP_IPTC_EXT_OTHER": "Outro IPTC",
|
|
394
|
+
"EFFECTIVITY_GROUP_TITLE": "Efetividade"
|
|
395
|
+
},
|
|
396
|
+
"INFO_DRAWER": {
|
|
397
|
+
"TITLE": "Detalhes",
|
|
398
|
+
"DATA_LOADING": "Os dados estão sendo carregados",
|
|
399
|
+
"TABS": {
|
|
400
|
+
"PROPERTIES": "Propriedades",
|
|
401
|
+
"LIBRARY_PROPERTIES": "Sobre",
|
|
402
|
+
"VERSIONS": "Versões",
|
|
403
|
+
"COMMENTS": "Comentários",
|
|
404
|
+
"PERMISSIONS": "Permissões",
|
|
405
|
+
"EXPAND": "Expandir"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"TOOLTIPS": {
|
|
409
|
+
"COLLAPSE_NAVIGATION": "Recolher menu de navegação",
|
|
410
|
+
"OPTIONS_SETTINGS": "Opções e configurações",
|
|
411
|
+
"MY_PROFILE": "Meu perfil",
|
|
412
|
+
"EXPAND_NAVIGATION": "Expandir menu de navegação"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"NODE_SELECTOR": {
|
|
416
|
+
"COPY_ITEM": "Copiar '{{ name }}' para...",
|
|
417
|
+
"COPY_ITEMS": "Copiar {{ number }} itens para...",
|
|
418
|
+
"MOVE_ITEM": "Mover '{{ name }}' para...",
|
|
419
|
+
"MOVE_ITEMS": "Mover {{ number }} itens para...",
|
|
420
|
+
"SEARCH": "Pesquisar",
|
|
421
|
+
"NEXT": "Próximo",
|
|
422
|
+
"SELECT_FILE_TEMPLATE_TITLE": "Selecionar um modelo de documento",
|
|
423
|
+
"SELECT_FOLDER_TEMPLATE_TITLE": "Selecionar um modelo de pasta"
|
|
424
|
+
},
|
|
425
|
+
"NODE_FROM_TEMPLATE": {
|
|
426
|
+
"CANCEL": "Cancelar",
|
|
427
|
+
"CREATE": "Criar",
|
|
428
|
+
"FOLDER_DIALOG_TITLE": "Criar nova pasta a partir de <span class=\"bold\">'{{ template }}'</span>",
|
|
429
|
+
"FILE_DIALOG_TITLE": "Criar novo documento a partir de <span class=\"bold\">'{{ template }}'</span>",
|
|
430
|
+
"FORM": {
|
|
431
|
+
"PLACEHOLDER": {
|
|
432
|
+
"NAME": "Nome",
|
|
433
|
+
"TITLE": "Título",
|
|
434
|
+
"DESCRIPTION": "Descrição"
|
|
435
|
+
},
|
|
436
|
+
"ERRORS": {
|
|
437
|
+
"DESCRIPTION_TOO_LONG": "Use 512 caracteres ou menos para a descrição",
|
|
438
|
+
"TITLE_TOO_LONG": "Use 256 caracteres ou menos para o título",
|
|
439
|
+
"REQUIRED": "Nome é obrigatório",
|
|
440
|
+
"SPECIAL_CHARACTERS": "O nome não pode ter estes caracteres * \" < > \\ / ? : |",
|
|
441
|
+
"ENDING_DOT": "O nome não pode terminar com um ponto final .",
|
|
442
|
+
"ONLY_SPACES": "O nome não pode ter apenas espaços"
|
|
443
|
+
}
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"SHARED_LINK": {
|
|
447
|
+
"UNSHARE_PERMISSION_ERROR": "Você não tem permissão para descompartilhar deste arquivo"
|
|
448
|
+
},
|
|
449
|
+
"VERSION": {
|
|
450
|
+
"DIALOG": {
|
|
451
|
+
"TITLE": "Carregar nova versão",
|
|
452
|
+
"CANCEL": "Cancelar",
|
|
453
|
+
"UPLOAD": "Carregar"
|
|
454
|
+
},
|
|
455
|
+
"SELECTION": {
|
|
456
|
+
"EMPTY": "Escolha um documento para ver suas versões.",
|
|
457
|
+
"NO_PERMISSION": "Você não tem permissão para gerenciar as versões deste conteúdo."
|
|
458
|
+
},
|
|
459
|
+
"ERROR": {
|
|
460
|
+
"GENERIC": "Houve um erro ao controlar a versão do arquivo"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"LIBRARY": {
|
|
464
|
+
"DIALOG": {
|
|
465
|
+
"CREATE_TITLE": "Criar biblioteca",
|
|
466
|
+
"CREATE": "Criar",
|
|
467
|
+
"UPDATE": "Atualizar",
|
|
468
|
+
"EDIT": "Editar",
|
|
469
|
+
"CANCEL": "Cancelar",
|
|
470
|
+
"FORM": {
|
|
471
|
+
"DESCRIPTION": "Descrição",
|
|
472
|
+
"SITE_ID": "ID de Biblioteca",
|
|
473
|
+
"NAME": "Nome",
|
|
474
|
+
"VISIBILITY": "Visibilidade"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"VISIBILITY": {
|
|
478
|
+
"PRIVATE": "Privado",
|
|
479
|
+
"PUBLIC": "Público",
|
|
480
|
+
"MODERATED": "Moderado"
|
|
481
|
+
},
|
|
482
|
+
"HINTS": {
|
|
483
|
+
"SITE_TITLE_EXISTS": "O nome da biblioteca já está em uso"
|
|
484
|
+
},
|
|
485
|
+
"ERRORS": {
|
|
486
|
+
"GENERIC": "Encontramos um problema",
|
|
487
|
+
"EXISTENT_SITE": "Este ID de biblioteca não está disponível. Tente um ID de biblioteca diferente.",
|
|
488
|
+
"CONFLICT": "Este ID de Biblioteca já foi usado. Verifique a lixeira.",
|
|
489
|
+
"ID_TOO_LONG": "Use 72 caracteres ou menos para o nome da URL",
|
|
490
|
+
"DESCRIPTION_TOO_LONG": "Use 512 caracteres ou menos para a descrição",
|
|
491
|
+
"TITLE_TOO_LONG": "Use 256 caracteres ou menos para o título",
|
|
492
|
+
"ILLEGAL_CHARACTERS": "Use somente números e letras",
|
|
493
|
+
"ONLY_SPACES": "O nome da biblioteca não pode conter somente espaços",
|
|
494
|
+
"LIBRARY_UPDATE_ERROR": "Houve um erro ao atualizar as propriedades da biblioteca"
|
|
495
|
+
},
|
|
496
|
+
"SUCCESS": {
|
|
497
|
+
"LIBRARY_UPDATED": "Propriedades da biblioteca atualizadas"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"SEARCH": {
|
|
501
|
+
"INPUT": {
|
|
502
|
+
"PLACEHOLDER": "Pesquisar",
|
|
503
|
+
"FILES": "Arquivos",
|
|
504
|
+
"FOLDERS": "Pastas",
|
|
505
|
+
"LIBRARIES": "Bibliotecas",
|
|
506
|
+
"HINT": "O termo da pesquisa deve ter no mínimo 2 caracteres alfanuméricos."
|
|
507
|
+
},
|
|
508
|
+
"SORT": {
|
|
509
|
+
"SORTING_OPTION": "Classificar por",
|
|
510
|
+
"ASCENDING": "Ascendente",
|
|
511
|
+
"DESCENDING": "Descendente",
|
|
512
|
+
"RELEVANCE": "Relevância",
|
|
513
|
+
"FILENAME": "Nome do arquivo",
|
|
514
|
+
"TITLE": "Título",
|
|
515
|
+
"MODIFIED_DATE": "Data de modificação",
|
|
516
|
+
"SIZE": "Tamanho",
|
|
517
|
+
"TYPE": "Tipo",
|
|
518
|
+
"MODIFIER": "Modificador",
|
|
519
|
+
"CREATE_DATE": "Data de criação"
|
|
520
|
+
},
|
|
521
|
+
"FACET_FIELDS": {
|
|
522
|
+
"CREATOR": "Criador",
|
|
523
|
+
"MODIFIER": "Modificador",
|
|
524
|
+
"LOCATION": "Localização",
|
|
525
|
+
"CATEGORIES": "Categorias"
|
|
526
|
+
},
|
|
527
|
+
"CATEGORIES": {
|
|
528
|
+
"EFFECTIVITY_FROM": "Eficácia de",
|
|
529
|
+
"EFFECTIVITY_TO": "Eficácia para",
|
|
530
|
+
"LOGIC": "Lógica"
|
|
531
|
+
},
|
|
532
|
+
"SEARCH_HEADER": {
|
|
533
|
+
"TITLE": "Filtro",
|
|
534
|
+
"TYPE": "Tipo",
|
|
535
|
+
"FILTER_BY": "Filtrar por {{ category }}",
|
|
536
|
+
"CLEAR": "Limpar",
|
|
537
|
+
"APPLY": "Aplicar",
|
|
538
|
+
"FILTERS": {
|
|
539
|
+
"NAME": {
|
|
540
|
+
"TITLE": "Nome",
|
|
541
|
+
"PLACEHOLDER": "Insira o nome"
|
|
542
|
+
},
|
|
543
|
+
"TYPE": {
|
|
544
|
+
"TITLE": "Marque o tipo",
|
|
545
|
+
"FOLDER": "Pasta",
|
|
546
|
+
"DOCUMENT": "Documento"
|
|
547
|
+
},
|
|
548
|
+
"SIZE": {
|
|
549
|
+
"TITLE": "Tamanho do conteúdo (intervalo)",
|
|
550
|
+
"SMALL": "Pequeno",
|
|
551
|
+
"MEDIUM": "Médio",
|
|
552
|
+
"LARGE": "Grande",
|
|
553
|
+
"HUGE": "Enorme"
|
|
554
|
+
},
|
|
555
|
+
"DATE": {
|
|
556
|
+
"TITLE": "Data de criação (intervalo)"
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"CORE": {
|
|
562
|
+
"METADATA": {
|
|
563
|
+
"ACTIONS": {
|
|
564
|
+
"SAVE": "Salvar alterações",
|
|
565
|
+
"CANCEL": "Descartar alterações"
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"ADF_VIEWER": {
|
|
570
|
+
"ACTIONS": {
|
|
571
|
+
"INFO": "Exibir detalhes",
|
|
572
|
+
"PREVIEW": "Mostrar visualização"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
"FILE_UPLOAD": {
|
|
576
|
+
"ERRORS": {
|
|
577
|
+
"409": "Este nome já está em uso, tente outro [409]"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"ADF_VERSION_LIST": {
|
|
581
|
+
"ACTIONS": {
|
|
582
|
+
"UPLOAD": {
|
|
583
|
+
"TOOLTIP": "Carregar nova versão"
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
"CUSTOM_NAME_COLUMN": {
|
|
588
|
+
"ACCESSIBILITY": {
|
|
589
|
+
"FILE_LINK_ARIA_LABEL": "Exibir {{ name }}",
|
|
590
|
+
"FOLDER_LINK_ARIA_LABEL": "Abrir pasta {{ name }}"
|
|
591
|
+
}
|
|
592
|
+
},
|
|
593
|
+
"ADF-DATATABLE": {
|
|
594
|
+
"FILE_TYPE": {
|
|
595
|
+
"BOOKS-24PX": "Biblioteca de arquivo",
|
|
596
|
+
"BASELINE-LOCK-24PX": "arquivo bloqueado"
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|