@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/ja.json
CHANGED
|
@@ -1,599 +1,600 @@
|
|
|
1
|
-
{
|
|
2
|
-
"APP": {
|
|
3
|
-
"COPYRIGHT": "© 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.",
|
|
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": "E メール",
|
|
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. and its affiliates. All rights reserved.",
|
|
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": "E メール",
|
|
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": "Share オプションを使って共有しているアイテムがここに表示されます。"
|
|
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": "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": "OK",
|
|
276
|
+
"NO_LABEL": "キャンセル"
|
|
277
|
+
},
|
|
278
|
+
"MOBILE_APP": {
|
|
279
|
+
"MOBILE_APP_BUTTON_LABEL": "アプリで開く",
|
|
280
|
+
"DOWNLOAD_APP_BUTTON_LABEL": "アプリがない場合は、今すぐダウンロードしてください。",
|
|
281
|
+
"OPEN_ALFRESCO_MOBILE_APP": "Alfresco Mobileアプリケーションを使用して開きますか?"
|
|
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
|
+
|