@pristy/pristy-libvue 2.7.0 → 2.8.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/dist/assets/{upload.worker-DYhWdEjp.js.map → upload.worker-BYbd1-Px.js.map} +1 -1
- package/dist/pristy-libvue.css +1 -1
- package/dist/pristy-libvue.es.js +9262 -8999
- package/dist/pristy-libvue.es.js.map +1 -1
- package/dist/pristy-libvue.umd.js +15 -15
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/src/components/classification/AdminClassificationPage.vue.d.ts +2 -0
- package/dist/src/components/classification/FieldForm.vue.d.ts +2 -0
- package/dist/src/components/classification/FieldForm.vue.d.ts.map +1 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts +29 -1
- package/dist/src/components/classification/MetadataFormFields.vue.d.ts.map +1 -1
- package/dist/src/components/classification/NatureSelector.vue.d.ts +29 -1
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts +4 -0
- package/dist/src/components/classification/UploadPlanPopup.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/ContentCompactTableView.vue.d.ts +2 -1
- package/dist/src/components/navigation/ContentCompactTableView.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/ContentGridView.vue.d.ts +2 -1
- package/dist/src/components/navigation/ContentGridView.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/ContentListView.vue.d.ts +2 -1
- package/dist/src/components/navigation/ContentListView.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/ContentTableView.vue.d.ts +2 -1
- package/dist/src/components/navigation/ContentTableView.vue.d.ts.map +1 -1
- package/dist/src/components/navigation/DynamicContentView.vue.d.ts +7 -3
- package/dist/src/components/navigation/DynamicContentView.vue.d.ts.map +1 -1
- package/dist/src/components/search/AdvancedSearchPanel.vue.d.ts.map +1 -1
- package/dist/src/components/search/ExactSearch.vue.d.ts.map +1 -1
- package/dist/src/components/users/MemberList.vue.d.ts.map +1 -1
- package/dist/src/composables/useColumnFilter.d.ts +2 -1
- package/dist/src/composables/useColumnFilter.d.ts.map +1 -1
- package/dist/src/i18n/index.d.ts +28 -0
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/services/AlfrescoNodeService.d.ts.map +1 -1
- package/dist/src/services/WorkspaceService.d.ts +6 -1
- package/dist/src/services/WorkspaceService.d.ts.map +1 -1
- package/dist/src/stores/filingPlan.d.ts.map +1 -1
- package/dist/src/stores/search.d.ts.map +1 -1
- package/dist/src/stores/upload.d.ts.map +1 -1
- package/dist/src/utils/classificationPlanUtils.d.ts +30 -0
- package/dist/src/utils/classificationPlanUtils.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -39,6 +39,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
39
39
|
taskNotification: {
|
|
40
40
|
pendingTasks: string;
|
|
41
41
|
};
|
|
42
|
+
restrictedPermissions: string;
|
|
42
43
|
nothingTitle: string;
|
|
43
44
|
nothingText: string;
|
|
44
45
|
goHome: string;
|
|
@@ -237,12 +238,17 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
237
238
|
successRestorePermissions: string;
|
|
238
239
|
fromGroup: string;
|
|
239
240
|
viewUserProfile: string;
|
|
241
|
+
permissions: string;
|
|
240
242
|
};
|
|
241
243
|
groups: string;
|
|
242
244
|
role: {
|
|
243
245
|
SiteManager: string;
|
|
244
246
|
SiteCollaborator: string;
|
|
245
247
|
SiteConsumer: string;
|
|
248
|
+
Manager: string;
|
|
249
|
+
Collaborator: string;
|
|
250
|
+
Consumer: string;
|
|
251
|
+
Contributor: string;
|
|
246
252
|
};
|
|
247
253
|
success: string;
|
|
248
254
|
close: string;
|
|
@@ -1075,6 +1081,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1075
1081
|
nameAndDescriptionRequired: string;
|
|
1076
1082
|
fieldNameExists: string;
|
|
1077
1083
|
};
|
|
1084
|
+
parentConfig: {
|
|
1085
|
+
title: string;
|
|
1086
|
+
metadata: {
|
|
1087
|
+
label: string;
|
|
1088
|
+
help: string;
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1078
1091
|
};
|
|
1079
1092
|
classificationPlan: {
|
|
1080
1093
|
category: string;
|
|
@@ -1122,6 +1135,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1122
1135
|
na: string;
|
|
1123
1136
|
constraint: string;
|
|
1124
1137
|
defaultValue: string;
|
|
1138
|
+
parentFieldNotFound: string;
|
|
1125
1139
|
validationRegexError: string;
|
|
1126
1140
|
summary: {
|
|
1127
1141
|
verifyBeforeImport: string;
|
|
@@ -1273,6 +1287,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1273
1287
|
taskNotification: {
|
|
1274
1288
|
pendingTasks: string;
|
|
1275
1289
|
};
|
|
1290
|
+
restrictedPermissions: string;
|
|
1276
1291
|
nothingTitle: string;
|
|
1277
1292
|
nothingText: string;
|
|
1278
1293
|
goHome: string;
|
|
@@ -1471,12 +1486,17 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1471
1486
|
successRestorePermissions: string;
|
|
1472
1487
|
fromGroup: string;
|
|
1473
1488
|
viewUserProfile: string;
|
|
1489
|
+
permissions: string;
|
|
1474
1490
|
};
|
|
1475
1491
|
groups: string;
|
|
1476
1492
|
role: {
|
|
1477
1493
|
SiteManager: string;
|
|
1478
1494
|
SiteCollaborator: string;
|
|
1479
1495
|
SiteConsumer: string;
|
|
1496
|
+
Manager: string;
|
|
1497
|
+
Collaborator: string;
|
|
1498
|
+
Consumer: string;
|
|
1499
|
+
Contributor: string;
|
|
1480
1500
|
};
|
|
1481
1501
|
success: string;
|
|
1482
1502
|
close: string;
|
|
@@ -2307,6 +2327,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2307
2327
|
nameAndDescriptionRequired: string;
|
|
2308
2328
|
fieldNameExists: string;
|
|
2309
2329
|
};
|
|
2330
|
+
parentConfig: {
|
|
2331
|
+
title: string;
|
|
2332
|
+
metadata: {
|
|
2333
|
+
label: string;
|
|
2334
|
+
help: string;
|
|
2335
|
+
};
|
|
2336
|
+
};
|
|
2310
2337
|
};
|
|
2311
2338
|
classificationPlan: {
|
|
2312
2339
|
category: string;
|
|
@@ -2354,6 +2381,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2354
2381
|
na: string;
|
|
2355
2382
|
constraint: string;
|
|
2356
2383
|
defaultValue: string;
|
|
2384
|
+
parentFieldNotFound: string;
|
|
2357
2385
|
validationRegexError: string;
|
|
2358
2386
|
summary: {
|
|
2359
2387
|
verifyBeforeImport: string;
|
|
@@ -2500,7 +2528,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2500
2528
|
};
|
|
2501
2529
|
}, "fr" | "en", RemoveIndexSignature<{
|
|
2502
2530
|
[x: string]: LocaleMessageValue<VueMessageType>;
|
|
2503
|
-
}>, never, "facets.categories.modified_date" | "delete" | "filter" | "search" | "pdf" | "reload" | "cancel" | "error" | "dossier" | "pagination" | "taskNotification" | "nothingTitle" | "nothingText" | "goHome" | "fichier" | "save" | "next" | "previous" | "selectFolder" | "dropFolder" | "uploadUnknownError" | "alfrescoError" | "fichier_image" | "fichier_video" | "fichier_pdf" | "fichier_eml" | "fichier_texte" | "fichier_tableur" | "fichier_dessin" | "fichier_presentation" | "fichier_markdown" | "fichier_json" | "fichier_xml" | "fichier_html" | "fichier_css" | "fichier_csv" | "fichier_javascript" | "fichier_sql" | "fichier_shell" | "fichier_yaml" | "fichier_python" | "fichier_typescript" | "fichier_php" | "fichier_java" | "fichier_code" | "fichier_config" | "fichier_log" | "espace" | "menu" | "tasks" | "sharelink" | "cannotCopyHere" | "cannotMoveHere" | "spaces" | "userHomes" | "yes" | "no" | "howMuchResult" | "howMuchSelected" | "selectAllElement" | "selectAllElementMoreThan" | "deleteSelection" | "dropFileFolders" | "currentFolder" | "canceledImport" | "lock" | "membersPopup" | "members" | "groups" | "role" | "success" | "close" | "config" | "vuesFavorites" | "vuesUtilisateurs" | "rechercheAvancee" | "pdfTools" | "editor" | "collab" | "diffViewer" | "sendingMail" | "column" | "facets" | "adminViewList" | "adminClassificationLauncher" | "adminClassificationPage" | "natureForm" | "emplacementForm" | "fieldForm" | "classificationPlan" | "chat" | "workflow" | "fileList" | "previewPanel" | "selectAll" | "deselectAll" | "layoutSelector" | "layoutList" | "layoutGrid" | "layoutTable" | "edit" | "open" | "download" | "restore" | "publish" | "back" | "minimize" | "duplicate" | "moveUp" | "moveDown" | "sortAscending" | "sortDescending" | "moreActions" | "add/removeFavorite" | "modify" | "home" | "selection" | "sidebarMenu" | "filter.clear" | "filter.search" | "filter.toggle" | "filter.all" | "filter.apply" | "filter.noOptions" | "filter.contains" | "filter.notContains" | "filter.equals" | "filter.clearAll" | "pdf.changePage" | "pdf.rotation" | "pdf.saveForm" | "pdf.previousPage" | "pdf.nextPage" | "pdf.cancelForm" | "pdf.on" | "pdf.and" | "pdf.scrolling" | "pdf.pageToPage" | "pdf.rotationRigth" | "pdf.rotationLeft" | "pdf.zoom" | "pdf.dezoom" | "pdf.adaptToPage" | "pdf.adaptToWidth" | "pdf.changeFile" | "pdf.currentPagination" | "pdf.showAllPages" | "pdf.showPageByPage" | "pdf.formFieldsInfo" | "pdf.formFieldsInfoTitle" | "pdf.formFieldName" | "pdf.formFieldType" | "pdf.formFieldValue" | "pagination.rowsPerPage" | "taskNotification.pendingTasks" | "menu.espaces" | "menu.favoris" | "menu.recherche" | "menu.vues" | "menu.userHome" | "menu.configuration" | "tasks.error.createProcess" | "tasks.error.getProcesses" | "tasks.error.getProcess" | "tasks.error.getFinishedProcess" | "tasks.error.addProcessItems" | "tasks.error.getProcessItems" | "tasks.error.getProcessVariables" | "tasks.error.getProcessDefinition" | "tasks.error.cancelWorkflow" | "tasks.error.openProcessDiagram" | "tasks.error.getProcessHistoryTasks" | "tasks.error.listTasks" | "tasks.error.listFinishedTasks" | "tasks.error.getTask" | "tasks.error.endTask" | "tasks.error.getTaskVariables" | "tasks.error.postTaskVariables" | "tasks.error.updateTaskVariables" | "tasks.error.getTaskItem" | "tasks.priority.priority" | "tasks.priority.low" | "tasks.priority.medium" | "tasks.priority.high" | "tasks.priority.notFound" | "tasks.statusLabel.completed" | "tasks.statusLabel.notYetStarted" | "tasks.statusLabel.inProgress" | "tasks.statusLabel.onHold" | "tasks.statusLabel.cancelled" | "tasks.error" | "tasks.none" | "tasks.priority" | "tasks.approved" | "tasks.rejected" | "tasks.reviewTask" | "tasks.adhocTask" | "tasks.verifyTaskDone" | "tasks.unknownTask" | "tasks.statusLabel" | "sharelink.shareLinkOf" | "sharelink.linkToShare" | "sharelink.shareLinkSettings" | "sharelink.createLinkTooltip" | "sharelink.copyLinkTooltip" | "sharelink.deleteLinkTooltip" | "sharelink.addExpirationDateLinkTooltip" | "sharelink.deleteExpirationDateLinkTooltip" | "sharelink.createLinkToastSummary" | "sharelink.createLinkToastDetail" | "sharelink.createLinkErrorSummary" | "sharelink.deleteLinkToastSummary" | "sharelink.deleteLinkToastDetail" | "sharelink.deleteLinkErrorSummary" | "sharelink.copyLinkToastSummary" | "sharelink.copyLinkErrorSummary" | "sharelink.copyLinkToastDetail" | "sharelink.copyLinkErrorDetail" | "sharelink.updateLinkDateSummary" | "sharelink.updateLinkDateDetail" | "sharelink.updateLinkDateErrorSummary" | "sharelink.expirationDate" | "sharelink.placeholder" | "lock.nodeLock" | "lock.readOnlyLock" | "lock.writeLock" | "membersPopup.goToSiteMemberPage" | "members.add" | "members.search" | "members.members" | "members.role" | "members.management" | "members.youAre" | "members.ofThisWorkspace" | "members.select" | "members.errorAdd" | "members.successAdd" | "members.successDelete" | "members.successChangeRole" | "members.nbAccess" | "members.restrictPermissions" | "members.restorePermissions" | "members.successRestrictPermissions" | "members.successRestorePermissions" | "members.fromGroup" | "members.viewUserProfile" | "role.SiteConsumer" | "role.SiteCollaborator" | "role.SiteManager" | "config.groups.search" | "config.groups.pagination" | "config.groups.display" | "config.groups.matomo" | "config.groups.sentry" | "config.groups.metadata" | "config.groups.security" | "config.groups.other" | "config.tabs.structuredEdit" | "config.tabs.rawEdit" | "config.tabs.versions" | "config.table.keyHeader" | "config.table.valueHeader" | "config.table.typeHeader" | "config.buttons.add" | "config.buttons.cancel" | "config.buttons.refresh" | "config.buttons.addNew" | "config.buttons.saveChanges" | "config.buttons.define" | "config.buttons.undefine" | "config.buttons.expand" | "config.buttons.collapse" | "config.splitView.filterPlaceholder" | "config.splitView.selectConfig" | "config.splitView.noResults" | "config.splitView.defaultValue" | "config.dialog.addTitle" | "config.dialog.keyLabel" | "config.dialog.valueLabel" | "config.dialog.typeLabel" | "config.raw.uploadDescription" | "config.raw.uploadButton" | "config.raw.uploadWarning" | "config.toasts.saveSuccess" | "config.toasts.fetchError" | "config.toasts.saveError" | "config.toasts.errorDetail" | "config.errors.keyRequired" | "config.errors.keyDuplicate" | "config.errors.invalidNumber" | "config.errors.invalidBoolean" | "config.errors.invalidJson" | "config.errors.typeMismatch" | "config.errors.invalidJsonFile" | "config.versionViewer.error" | "config.versionViewer.success" | "config.versionViewer.listTitle" | "config.versionViewer.title" | "config.versionViewer.selectPrompt" | "config.versionViewer.loadError" | "config.versionViewer.genericError" | "config.versionViewer.cannotRevertLatest" | "config.versionViewer.restoredVersionComment" | "config.arrayEditor.addItem" | "config.arrayEditor.reorder" | "config.types.string" | "config.types.number" | "config.types.boolean" | "config.types.object" | "config.types.array" | "config.groups" | "config.pageTitle" | "config.pageDescription" | "config.tabs" | "config.table" | "config.buttons" | "config.notDefined" | "config.splitView" | "config.dialog" | "config.raw" | "config.toasts" | "config.errors" | "config.versionViewer" | "config.arrayEditor" | "config.types" | "vuesFavorites.title" | "vuesFavorites.loadedViewMessage" | "vuesFavorites.noSavedViews" | "vuesFavorites.personalViews" | "vuesFavorites.selectPersonalView" | "vuesFavorites.globalViews" | "vuesFavorites.selectGlobalView" | "vuesFavorites.filterSavedViews" | "vuesUtilisateurs.saveViewPopup.title" | "vuesUtilisateurs.saveViewPopup.nameLabel" | "vuesUtilisateurs.saveViewPopup.nameRequired" | "vuesUtilisateurs.saveViewPopup.descriptionLabel" | "vuesUtilisateurs.saveViewPopup.detailsLabel" | "vuesUtilisateurs.saveViewPopup.scopeLabel" | "vuesUtilisateurs.saveViewPopup.scopeDescription" | "vuesUtilisateurs.saveViewPopup.scopeUser" | "vuesUtilisateurs.saveViewPopup.scopeGlobal" | "vuesUtilisateurs.saveViewPopup.fileIdLabel" | "vuesUtilisateurs.saveViewPopup.fileIdDescription" | "vuesUtilisateurs.saveViewPopup.fileIdPlaceholder" | "vuesUtilisateurs.saveViewPopup.personalDescription" | "vuesUtilisateurs.modifyViewPopup.title" | "vuesUtilisateurs.saveView" | "vuesUtilisateurs.modifyView" | "vuesUtilisateurs.cancelButton" | "vuesUtilisateurs.saveViewPopup" | "vuesUtilisateurs.modifyViewPopup" | "rechercheAvancee.savedViewError.idAlreadyExists" | "rechercheAvancee.savedViewError.nameAlreadyExists" | "rechercheAvancee.savedViewError.globalNotFound" | "rechercheAvancee.savedViewError.personnalNotFound" | "rechercheAvancee.savedViewError.userNotFound" | "rechercheAvancee.savedViewError.userNotFoundForUpdate" | "rechercheAvancee.savedViewError.userNotFoundForDelete" | "rechercheAvancee.savedViewError.configFolderNotFound" | "rechercheAvancee.savedViewError.configFileNotFound" | "rechercheAvancee.contains" | "rechercheAvancee.noResults" | "rechercheAvancee.valueLabel" | "rechercheAvancee.loadedViewMessage" | "rechercheAvancee.noSavedViews" | "rechercheAvancee.filterSavedViews" | "rechercheAvancee.cancelButton" | "rechercheAvancee.sitePlaceholder" | "rechercheAvancee.folderPlaceholder" | "rechercheAvancee.advancedSearch" | "rechercheAvancee.queryBuilder" | "rechercheAvancee.addCriterionPopupTitle" | "rechercheAvancee.propertyLabel" | "rechercheAvancee.propertyPlaceholder" | "rechercheAvancee.searchProperty" | "rechercheAvancee.propertyName" | "rechercheAvancee.propertyId" | "rechercheAvancee.propertyDescription" | "rechercheAvancee.propertyAspect" | "rechercheAvancee.conditionLabel" | "rechercheAvancee.operatorLabel" | "rechercheAvancee.operatorPlaceholder" | "rechercheAvancee.addButton" | "rechercheAvancee.mustContain" | "rechercheAvancee.mustNotContain" | "rechercheAvancee.exact" | "rechercheAvancee.isDate" | "rechercheAvancee.isDateRange" | "rechercheAvancee.isNumber" | "rechercheAvancee.isNumberRange" | "rechercheAvancee.is" | "rechercheAvancee.locationLabel" | "rechercheAvancee.locationSite" | "rechercheAvancee.locationPath" | "rechercheAvancee.locationNone" | "rechercheAvancee.locationValuePlaceholder" | "rechercheAvancee.criteriaTitle" | "rechercheAvancee.noCriteria" | "rechercheAvancee.addCriterionButton" | "rechercheAvancee.advancedSearchActive" | "rechercheAvancee.savedViews" | "rechercheAvancee.addsSavedViewSuccess" | "rechercheAvancee.modifySavedViewSuccess" | "rechercheAvancee.updateSavedView" | "rechercheAvancee.savedViewError" | "rechercheAvancee.noFilterResults" | "rechercheAvancee.selectPersonalSearch" | "rechercheAvancee.selectGlobalSearch" | "rechercheAvancee.favorite" | "rechercheAvancee.closeView" | "rechercheAvancee.activeView" | "rechercheAvancee.locationsTitle" | "rechercheAvancee.locationsHint" | "rechercheAvancee.noLocations" | "rechercheAvancee.addLocationButton" | "rechercheAvancee.addLocationTitle" | "rechercheAvancee.addLocationConfirm" | "rechercheAvancee.removeLocation" | "rechercheAvancee.includePrefix" | "rechercheAvancee.excludePrefix" | "rechercheAvancee.locationTypeLabel" | "rechercheAvancee.saveViewAsNew" | "rechercheAvancee.saveViewModifications" | "rechercheAvancee.deleteView" | "rechercheAvancee.deleteViewSuccess" | "rechercheAvancee.confirmDeleteTitle" | "rechercheAvancee.confirmDelete" | "rechercheAvancee.showMore" | "rechercheAvancee.addAsIncludeLocation" | "rechercheAvancee.addAsExcludeLocation" | "rechercheAvancee.addAsIncludeFolder" | "rechercheAvancee.addAsExcludeFolder" | "rechercheAvancee.addAsIncludeSite" | "rechercheAvancee.addAsExcludeSite" | "rechercheAvancee.editCriterionPopupTitle" | "rechercheAvancee.updateButton" | "rechercheAvancee.addGroupButton" | "rechercheAvancee.addOrGroup" | "rechercheAvancee.removeGroup" | "rechercheAvancee.operatorAnd" | "rechercheAvancee.operatorOr" | "rechercheAvancee.emptyGroup" | "pdfTools.common.clear" | "pdfTools.common.cancel" | "pdfTools.common.error" | "pdfTools.common.save" | "pdfTools.common.success" | "pdfTools.common.close" | "pdfTools.common.warning" | "pdfTools.common.apply" | "pdfTools.common.select" | "pdfTools.common.deleted" | "pdfTools.common.use" | "pdfTools.common.insert" | "pdfTools.sidebar.actions" | "pdfTools.sidebar.saveAs" | "pdfTools.sidebar.saveNewVersion" | "pdfTools.sidebar.extractPages" | "pdfTools.sidebar.extractAndSave" | "pdfTools.sidebar.deletePages" | "pdfTools.sidebar.deleteSelectedPages" | "pdfTools.sidebar.insertPdf" | "pdfTools.sidebar.fromComputer" | "pdfTools.sidebar.fromPristy" | "pdfTools.sidebar.addWatermark" | "pdfTools.sidebar.watermarkTextPlaceholder" | "pdfTools.sidebar.angle" | "pdfTools.sidebar.repetitions" | "pdfTools.sidebar.addWatermarkButton" | "pdfTools.pagePreview.title" | "pdfTools.pagePreview.openPagePreview" | "pdfTools.pageEditor.tools.actions" | "pdfTools.pageEditor.tools.size" | "pdfTools.pageEditor.tools.highlight" | "pdfTools.pageEditor.tools.text" | "pdfTools.pageEditor.tools.select" | "pdfTools.pageEditor.tools.redact" | "pdfTools.pageEditor.tools.comment" | "pdfTools.pageEditor.tools.image" | "pdfTools.pageEditor.tools.signature" | "pdfTools.pageEditor.tools.font" | "pdfTools.pageEditor.tools.color" | "pdfTools.pageEditor.cancel" | "pdfTools.pageEditor.close" | "pdfTools.pageEditor.apply" | "pdfTools.pageEditor.title" | "pdfTools.pageEditor.fit" | "pdfTools.pageEditor.tools" | "pdfTools.pageEditor.commentPrompt" | "pdfTools.pageEditor.addTextPrompt" | "pdfTools.pageEditor.footerHint" | "pdfTools.signaturePad.clear" | "pdfTools.signaturePad.title" | "pdfTools.signaturePad.use" | "pdfTools.saveAs.title" | "pdfTools.saveAs.filenameLabel" | "pdfTools.saveAs.defaultFilename" | "pdfTools.saveAs.folderLabel" | "pdfTools.saveAs.browse" | "pdfTools.saveAs.conflictError" | "pdfTools.insertFromAlfresco.search" | "pdfTools.insertFromAlfresco.cancel" | "pdfTools.insertFromAlfresco.path" | "pdfTools.insertFromAlfresco.loading" | "pdfTools.insertFromAlfresco.select" | "pdfTools.insertFromAlfresco.title" | "pdfTools.insertFromAlfresco.insert" | "pdfTools.insertFromAlfresco.browse" | "pdfTools.insertFromAlfresco.searchPlaceholder" | "pdfTools.insertFromAlfresco.searching" | "pdfTools.insertFromAlfresco.noPdfFound" | "pdfTools.insertFromAlfresco.favorites" | "pdfTools.insertFromAlfresco.noPdfFavorite" | "pdfTools.insertFromAlfresco.selectPdfToPreview" | "pdfTools.insertFromAlfresco.loadingPreview" | "pdfTools.insertFromAlfresco.linkOrId" | "pdfTools.insertFromAlfresco.alfrescoIdUrl" | "pdfTools.insertFromAlfresco.alfrescoIdUrlHint" | "pdfTools.insertFromAlfresco.selected" | "pdfTools.insertFromAlfresco.invalidInput" | "pdfTools.insertFromAlfresco.folderSelectError" | "pdfTools.insertFromAlfresco.fileTypeNotAllowedError" | "pdfTools.loading" | "pdfTools.common" | "pdfTools.saveSuccess" | "pdfTools.saveError" | "pdfTools.title" | "pdfTools.loadError" | "pdfTools.reorderError" | "pdfTools.rotateError" | "pdfTools.deleteAllPagesWarning" | "pdfTools.pagesDeletedSuccess" | "pdfTools.deletePagesError" | "pdfTools.insertFromFileSuccess" | "pdfTools.insertFromPristySuccess" | "pdfTools.insertError" | "pdfTools.insertFromPristyError" | "pdfTools.invalidNodeForInsert" | "pdfTools.watermarkError" | "pdfTools.saveAsError" | "pdfTools.noContentToSave" | "pdfTools.fileCreatedSuccess" | "pdfTools.redactWarning" | "pdfTools.redactFlattenConfirm" | "pdfTools.imagePreviewUnavailable" | "pdfTools.pdfRenderCanvasNotFound" | "pdfTools.sidebar" | "pdfTools.pagePreview" | "pdfTools.pageEditor" | "pdfTools.signaturePad" | "pdfTools.saveAs" | "pdfTools.insertFromAlfresco" | "editor.viewMode.split" | "editor.viewMode.editorOnly" | "editor.viewMode.previewOnly" | "editor.edit" | "editor.saveSuccess" | "editor.loadError" | "editor.cancelEdit" | "editor.closeEdit" | "editor.alreadyUpToDate" | "editor.refreshError" | "editor.unsavedChanges" | "editor.confirmationHeader" | "editor.lineWrap" | "editor.viewMode" | "collab.enable" | "collab.disable" | "collab.connected" | "collab.disconnected" | "collab.reconnecting" | "collab.peers" | "collab.initError" | "collab.sessionFull" | "collab.locked" | "collab.offline" | "collab.participantsTooltip" | "collab.editorsTooltip" | "collab.observersTooltip" | "diffViewer.errors.loadError" | "diffViewer.revertVersion.error" | "diffViewer.revertVersion.success" | "diffViewer.revertVersion.successDetail" | "diffViewer.errors" | "diffViewer.restoredVersionComment" | "diffViewer.compareTitle" | "diffViewer.version" | "diffViewer.currentVersion" | "diffViewer.selectVersionA" | "diffViewer.selectVersionB" | "diffViewer.revertToThisVersion" | "diffViewer.revertVersion" | "sendingMail.errors.errorEmptyEmail" | "sendingMail.errors.errorValidEmail" | "sendingMail.errors.errorEmptySubject" | "sendingMail.errors.errorSubjectTooShort" | "sendingMail.errors.errorEmptyMessage" | "sendingMail.errors.errorSendMail" | "sendingMail.popup.defaultSubject" | "sendingMail.popup.defaultMessage" | "sendingMail.errors" | "sendingMail.addCc" | "sendingMail.addCci" | "sendingMail.popup" | "column.actions" | "column.size" | "column.type" | "column.name" | "column.toggle" | "column.createdAt" | "column.createdBy" | "column.mimeType" | "column.modifiedAt" | "column.modifiedBy" | "column.thumbnail" | "column.customize" | "facets.categories" | "adminViewList.deleteView.toast.error.summary" | "adminViewList.deleteView.toast.error.detail" | "adminViewList.deleteView.toast.success.summary" | "adminViewList.deleteView.toast.success.detail" | "adminViewList.deleteView.toast.successMultiple.detail" | "adminViewList.deleteView.toast.errorMultiple.detail" | "adminViewList.deleteView.toast.error" | "adminViewList.deleteView.toast.success" | "adminViewList.deleteView.toast.successMultiple" | "adminViewList.deleteView.toast.errorMultiple" | "adminViewList.deleteView.button" | "adminViewList.deleteView.toast" | "adminViewList.deleteView.confirmHeader" | "adminViewList.deleteView.confirmMessage" | "adminViewList.deleteView.confirmMessageMultiple" | "adminViewList.existingViews.download" | "adminViewList.existingViews.loading" | "adminViewList.existingViews.title" | "adminViewList.existingViews.noViewsFound" | "adminViewList.importView.toast.error.summary" | "adminViewList.importView.toast.error.detail" | "adminViewList.importView.toast.success.summary" | "adminViewList.importView.toast.success.detail" | "adminViewList.importView.toast.error" | "adminViewList.importView.toast.success" | "adminViewList.importView.toast.noJsonFiles.summary" | "adminViewList.importView.toast.noJsonFiles.detail" | "adminViewList.importView.toast.noJsonFiles" | "adminViewList.importView.button" | "adminViewList.importView.toast" | "adminViewList.exportAll.toast.error.summary" | "adminViewList.exportAll.toast.error.detail" | "adminViewList.exportAll.toast.success.summary" | "adminViewList.exportAll.toast.success.detail" | "adminViewList.exportAll.toast.error" | "adminViewList.exportAll.toast.success" | "adminViewList.exportAll.button" | "adminViewList.exportAll.toast" | "adminViewList.dropZone.text" | "adminViewList.dropZone.hint" | "adminViewList.selectionBar.selectAll" | "adminViewList.selectionBar.selected" | "adminViewList.selectionBar.clearSelection" | "adminViewList.selectionBar.downloadAll" | "adminViewList.editView.toast.error.summary" | "adminViewList.editView.toast.error.detail" | "adminViewList.editView.toast.success.summary" | "adminViewList.editView.toast.success.detail" | "adminViewList.editView.toast.error" | "adminViewList.editView.toast.success" | "adminViewList.editView.button" | "adminViewList.editView.description" | "adminViewList.editView.name" | "adminViewList.editView.cancel" | "adminViewList.editView.save" | "adminViewList.editView.title" | "adminViewList.editView.toast" | "adminViewList.editView.namePlaceholder" | "adminViewList.editView.descriptionPlaceholder" | "adminViewList.toast.downloadError.summary" | "adminViewList.toast.downloadError.detail" | "adminViewList.toast.downloadError" | "adminViewList.deleteView" | "adminViewList.existingViews" | "adminViewList.importView" | "adminViewList.exportAll" | "adminViewList.dropZone" | "adminViewList.selectionBar" | "adminViewList.editView" | "adminViewList.toast" | "adminClassificationLauncher.selectionBar.selectAll" | "adminClassificationLauncher.selectionBar.selected" | "adminClassificationLauncher.selectionBar.clearSelection" | "adminClassificationLauncher.selectionBar.downloadAll" | "adminClassificationLauncher.selectionBar.openAll" | "adminClassificationLauncher.toast.listError.summary" | "adminClassificationLauncher.toast.listError.detail" | "adminClassificationLauncher.toast.invalidName.summary" | "adminClassificationLauncher.toast.invalidName.detail" | "adminClassificationLauncher.toast.listError" | "adminClassificationLauncher.toast.invalidName" | "adminClassificationLauncher.existingPlans.download" | "adminClassificationLauncher.existingPlans.loading" | "adminClassificationLauncher.existingPlans.title" | "adminClassificationLauncher.existingPlans.noPlansFound" | "adminClassificationLauncher.createPlan.button" | "adminClassificationLauncher.createPlan.description" | "adminClassificationLauncher.createPlan.cancel" | "adminClassificationLauncher.createPlan.placeholder" | "adminClassificationLauncher.createPlan.title" | "adminClassificationLauncher.deletePlan.toast.error.summary" | "adminClassificationLauncher.deletePlan.toast.error.detail" | "adminClassificationLauncher.deletePlan.toast.success.summary" | "adminClassificationLauncher.deletePlan.toast.success.detail" | "adminClassificationLauncher.deletePlan.toast.successMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.errorMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.error" | "adminClassificationLauncher.deletePlan.toast.success" | "adminClassificationLauncher.deletePlan.toast.successMultiple" | "adminClassificationLauncher.deletePlan.toast.errorMultiple" | "adminClassificationLauncher.deletePlan.button" | "adminClassificationLauncher.deletePlan.toast" | "adminClassificationLauncher.deletePlan.confirmHeader" | "adminClassificationLauncher.deletePlan.confirmMessage" | "adminClassificationLauncher.deletePlan.confirmMessageMultiple" | "adminClassificationLauncher.importPlan.toast.success.summary" | "adminClassificationLauncher.importPlan.toast.success.detail" | "adminClassificationLauncher.importPlan.toast.success" | "adminClassificationLauncher.importPlan.toast.saveError.summary" | "adminClassificationLauncher.importPlan.toast.saveError.detail" | "adminClassificationLauncher.importPlan.toast.parseError.summary" | "adminClassificationLauncher.importPlan.toast.parseError.detail" | "adminClassificationLauncher.importPlan.toast.saveError" | "adminClassificationLauncher.importPlan.toast.parseError" | "adminClassificationLauncher.importPlan.button" | "adminClassificationLauncher.importPlan.toast" | "adminClassificationLauncher.importPlan.invalidStructure" | "adminClassificationLauncher.title" | "adminClassificationLauncher.selectionBar" | "adminClassificationLauncher.toast" | "adminClassificationLauncher.existingPlans" | "adminClassificationLauncher.createPlan" | "adminClassificationLauncher.deletePlan" | "adminClassificationLauncher.importPlan" | "adminClassificationPage.buttons.cancel" | "adminClassificationPage.toast.saveError" | "adminClassificationPage.tabs.categories" | "adminClassificationPage.tabs.natures" | "adminClassificationPage.tabs.fields" | "adminClassificationPage.tabs.emplacements" | "adminClassificationPage.buttons.reload" | "adminClassificationPage.buttons.save" | "adminClassificationPage.buttons.newNature" | "adminClassificationPage.buttons.newField" | "adminClassificationPage.buttons.newEmplacement" | "adminClassificationPage.buttons.newCategory" | "adminClassificationPage.buttons.export" | "adminClassificationPage.buttons.import" | "adminClassificationPage.buttons.createFile" | "adminClassificationPage.buttons.saveFile" | "adminClassificationPage.dialog.createNature" | "adminClassificationPage.dialog.editNature" | "adminClassificationPage.dialog.duplicateNature" | "adminClassificationPage.dialog.createField" | "adminClassificationPage.dialog.editField" | "adminClassificationPage.dialog.duplicateField" | "adminClassificationPage.dialog.createEmplacement" | "adminClassificationPage.dialog.editEmplacement" | "adminClassificationPage.dialog.createCategory" | "adminClassificationPage.dialog.editCategory" | "adminClassificationPage.toast.saveSuccess" | "adminClassificationPage.toast.loadError" | "adminClassificationPage.toast.newPlan" | "adminClassificationPage.toast.fileNotExist" | "adminClassificationPage.toast.loadErrorDetail" | "adminClassificationPage.toast.exportSuccess" | "adminClassificationPage.toast.exportSuccessDetail" | "adminClassificationPage.toast.importSuccess" | "adminClassificationPage.toast.importSuccessDetail" | "adminClassificationPage.toast.importError" | "adminClassificationPage.toast.importErrorDetail" | "adminClassificationPage.toast.invalidFileStructure" | "adminClassificationPage.toast.fieldCreated" | "adminClassificationPage.toast.fieldAutoCreated" | "adminClassificationPage.toast.autoCreatedForNature" | "adminClassificationPage.toast.autoCreatedForEmplacement" | "adminClassificationPage.toast.deleteImpossible" | "adminClassificationPage.toast.fieldUsed" | "adminClassificationPage.toast.emplacementUsed" | "adminClassificationPage.toast.confirmed" | "adminClassificationPage.toast.itemDeleted" | "adminClassificationPage.toast.invalidFilename" | "adminClassificationPage.toast.filenameMustStartWithPlan" | "adminClassificationPage.columns.id" | "adminClassificationPage.columns.actions" | "adminClassificationPage.columns.label" | "adminClassificationPage.columns.icon" | "adminClassificationPage.columns.description" | "adminClassificationPage.columns.type" | "adminClassificationPage.columns.name" | "adminClassificationPage.columns.display" | "adminClassificationPage.columns.title" | "adminClassificationPage.columns.categories" | "adminClassificationPage.columns.emplacement" | "adminClassificationPage.columns.code" | "adminClassificationPage.columns.views" | "adminClassificationPage.columns.optional" | "adminClassificationPage.columns.status" | "adminClassificationPage.confirm.field" | "adminClassificationPage.confirm.emplacement" | "adminClassificationPage.confirm.deleteMessage" | "adminClassificationPage.confirm.deleteHeader" | "adminClassificationPage.confirm.nature" | "adminClassificationPage.confirm.category" | "adminClassificationPage.viewSelector.search" | "adminClassificationPage.viewSelector.noResults" | "adminClassificationPage.viewSelector.title" | "adminClassificationPage.viewSelector.selected" | "adminClassificationPage.viewSelector.available" | "adminClassificationPage.viewSelector.searchResults" | "adminClassificationPage.viewSelector.noViews" | "adminClassificationPage.viewSelector.nViews" | "adminClassificationPage.viewSelector.validate" | "adminClassificationPage.loading" | "adminClassificationPage.tabs" | "adminClassificationPage.buttons" | "adminClassificationPage.dialog" | "adminClassificationPage.toast" | "adminClassificationPage.titleNew" | "adminClassificationPage.titleAdmin" | "adminClassificationPage.file" | "adminClassificationPage.columns" | "adminClassificationPage.confirm" | "adminClassificationPage.viewSelector" | "natureForm.validation.nameAndCodeRequired" | "natureForm.validation.codeAlreadyExists" | "natureForm.value" | "natureForm.icon" | "natureForm.required" | "natureForm.name" | "natureForm.metadata" | "natureForm.categories" | "natureForm.emplacement" | "natureForm.code" | "natureForm.documentType" | "natureForm.aspects" | "natureForm.selectAspects" | "natureForm.chooseIcon" | "natureForm.selectPath" | "natureForm.calculatedPath" | "natureForm.noMetadata" | "natureForm.key" | "natureForm.mappingType" | "natureForm.valueOrFieldName" | "natureForm.selectCategories" | "natureForm.validation" | "natureForm.optionalFieldTooltip" | "emplacementForm.validation.codeRequired" | "emplacementForm.value" | "emplacementForm.type" | "emplacementForm.required" | "emplacementForm.metadata" | "emplacementForm.code" | "emplacementForm.aspects" | "emplacementForm.selectAspects" | "emplacementForm.noMetadata" | "emplacementForm.key" | "emplacementForm.mappingType" | "emplacementForm.valueOrFieldName" | "emplacementForm.validation" | "emplacementForm.optionalFieldTooltip" | "emplacementForm.codeHelp" | "emplacementForm.typeHelp" | "emplacementForm.editType" | "fieldForm.search.query.label" | "fieldForm.search.lang.label" | "fieldForm.search.valueField.label" | "fieldForm.search.testButton.label" | "fieldForm.search.testResults.title" | "fieldForm.search.testError.fetchError" | "fieldForm.search.testError.emptyQuery" | "fieldForm.search.testError.noResult" | "fieldForm.search.query" | "fieldForm.search.title" | "fieldForm.search.lang" | "fieldForm.search.valueField" | "fieldForm.search.testButton" | "fieldForm.search.testResults" | "fieldForm.search.testError" | "fieldForm.description.label" | "fieldForm.description.help" | "fieldForm.name.label" | "fieldForm.name.help" | "fieldForm.errors.nameAndDescriptionRequired" | "fieldForm.errors.fieldNameExists" | "fieldForm.defaultValue.label" | "fieldForm.defaultValue.help" | "fieldForm.optional.label" | "fieldForm.optional.help" | "fieldForm.dataType.label" | "fieldForm.dataType.placeholder" | "fieldForm.dataType.help" | "fieldForm.inputType.label" | "fieldForm.inputType.placeholder" | "fieldForm.inputType.help" | "fieldForm.stringConstraints.regex.label" | "fieldForm.stringConstraints.regex.help" | "fieldForm.stringConstraints.regexTester.label" | "fieldForm.stringConstraints.regexTester.placeholder" | "fieldForm.stringConstraints.title" | "fieldForm.stringConstraints.regex" | "fieldForm.stringConstraints.regexTester" | "fieldForm.numberConstraints.default.label" | "fieldForm.numberConstraints.min.label" | "fieldForm.numberConstraints.max.label" | "fieldForm.numberConstraints.default" | "fieldForm.numberConstraints.title" | "fieldForm.numberConstraints.min" | "fieldForm.numberConstraints.max" | "fieldForm.optionalSettings.title" | "fieldForm.prefix.label" | "fieldForm.prefix.help" | "fieldForm.suffix.label" | "fieldForm.suffix.help" | "fieldForm.search" | "fieldForm.description" | "fieldForm.name" | "fieldForm.errors" | "fieldForm.defaultValue" | "fieldForm.optional" | "fieldForm.dataType" | "fieldForm.inputType" | "fieldForm.stringConstraints" | "fieldForm.numberConstraints" | "fieldForm.optionalSettings" | "fieldForm.prefix" | "fieldForm.suffix" | "classificationPlan.buttons.cancel" | "classificationPlan.upload.headerCreate" | "classificationPlan.upload.headerImport" | "classificationPlan.buttons.next" | "classificationPlan.buttons.previous" | "classificationPlan.buttons.requalify" | "classificationPlan.buttons.viewSummary" | "classificationPlan.buttons.acceptAndCreate" | "classificationPlan.buttons.acceptAndImport" | "classificationPlan.buttons.depositing" | "classificationPlan.buttons.deposit" | "classificationPlan.toast.searchError" | "classificationPlan.toast.searchFieldFailed" | "classificationPlan.toast.loadPlansError" | "classificationPlan.toast.loadPlanContentError" | "classificationPlan.toast.workspaceError" | "classificationPlan.toast.requalifySuccess" | "classificationPlan.toast.requalifyError" | "classificationPlan.toast.depositSuccess" | "classificationPlan.toast.depositError" | "classificationPlan.toast.createSuccess" | "classificationPlan.toast.createError" | "classificationPlan.summary.document" | "classificationPlan.summary.metadata" | "classificationPlan.summary.verifyBeforeImport" | "classificationPlan.summary.verifyBeforeRequalify" | "classificationPlan.summary.verifyBeforeDeposit" | "classificationPlan.summary.generalInfo" | "classificationPlan.summary.metadataToSend" | "classificationPlan.summary.fileClassification" | "classificationPlan.summary.destinationFolder" | "classificationPlan.summary.movement" | "classificationPlan.steps.summary" | "classificationPlan.steps.step" | "classificationPlan.steps.selectPlan" | "classificationPlan.steps.selectNature" | "classificationPlan.steps.fillMetadata" | "classificationPlan.steps.fillMetadataAndFiles" | "classificationPlan.steps.selectFiles" | "classificationPlan.stepper.files" | "classificationPlan.stepper.metadata" | "classificationPlan.stepper.summary" | "classificationPlan.stepper.nature" | "classificationPlan.stepper.plan" | "classificationPlan.multiFile.status" | "classificationPlan.multiFile.category" | "classificationPlan.multiFile.allCategories" | "classificationPlan.multiFile.selectNature" | "classificationPlan.multiFile.noFiles" | "classificationPlan.multiFile.fileName" | "classificationPlan.multiFile.metadataBtn" | "classificationPlan.multiFile.complete" | "classificationPlan.multiFile.incomplete" | "classificationPlan.multiFile.selectCategory" | "classificationPlan.multiFile.selectCategoryFirst" | "classificationPlan.multiFile.searchNature" | "classificationPlan.multiFile.removeFile" | "classificationPlan.multiFile.metadataTitle" | "classificationPlan.multiFile.configSingle" | "classificationPlan.multiFile.configMultiple" | "classificationPlan.multiFile.summaryBefore" | "classificationPlan.multiFile.selectedCount" | "classificationPlan.multiFile.unassigned" | "classificationPlan.multiFile.filterAll" | "classificationPlan.multiFile.filterIncomplete" | "classificationPlan.multiFile.filterComplete" | "classificationPlan.multiFile.progressLabel" | "classificationPlan.multiFile.modeMultiCategory" | "classificationPlan.multiFile.modeMonoCategory" | "classificationPlan.multiFile.bulkSelectNature" | "classificationPlan.multiFile.layoutRow" | "classificationPlan.multiFile.layoutCol" | "classificationPlan.multiFile.metadataFilled" | "classificationPlan.requalify.title" | "classificationPlan.requalify.summaryFrom" | "classificationPlan.requalify.summaryTo" | "classificationPlan.files" | "classificationPlan.upload" | "classificationPlan.buttons" | "classificationPlan.defaultValue" | "classificationPlan.searchPlaceholder" | "classificationPlan.toast" | "classificationPlan.summary" | "classificationPlan.code" | "classificationPlan.nature" | "classificationPlan.category" | "classificationPlan.min" | "classificationPlan.max" | "classificationPlan.allCategories" | "classificationPlan.noCategory" | "classificationPlan.filterByCategory" | "classificationPlan.steps" | "classificationPlan.stepper" | "classificationPlan.plan" | "classificationPlan.natureColumn" | "classificationPlan.choosePlan" | "classificationPlan.planAriaLabel" | "classificationPlan.noPlanFound" | "classificationPlan.searchNaturePlaceholder" | "classificationPlan.noNature" | "classificationPlan.destinationCurrent" | "classificationPlan.destinationLabel" | "classificationPlan.chooseFiles" | "classificationPlan.fileToCreate" | "classificationPlan.filesToImport" | "classificationPlan.na" | "classificationPlan.constraint" | "classificationPlan.validationRegexError" | "classificationPlan.multiFile" | "classificationPlan.requalify" | "chat.title" | "chat.reconnecting" | "chat.connecting" | "chat.connectionError" | "chat.notConfigured" | "chat.configureInProfile" | "chat.retry" | "chat.searchRooms" | "chat.noRooms" | "chat.noMessages" | "chat.loadMore" | "chat.typeMessage" | "chat.send" | "chat.attachFile" | "chat.attachment" | "chat.unknownUser" | "chat.userTyping" | "chat.usersTyping" | "chat.multipleUsersTyping" | "chat.sendError" | "chat.uploadError" | "chat.openChat" | "chat.closeChat" | "chat.newMessages" | "workflow.selectedDocuments" | "selection.clear" | "selection.selectAll" | "selection.clearSelection" | "selection.count" | "selection.mobileCount" | "selection.selectAllShort" | "sidebarMenu.profile" | "sidebarMenu.portal" | "sidebarMenu.logout" | "tasks.approve" | "tasks.reject" | "rechercheAvancee.addFavorite" | "rechercheAvancee.removeFavorite", "facets.categories.modified_date" | "delete" | "filter" | "search" | "pdf" | "reload" | "cancel" | "error" | "dossier" | "pagination" | "taskNotification" | "nothingTitle" | "nothingText" | "goHome" | "fichier" | "save" | "next" | "previous" | "selectFolder" | "dropFolder" | "uploadUnknownError" | "alfrescoError" | "fichier_image" | "fichier_video" | "fichier_pdf" | "fichier_eml" | "fichier_texte" | "fichier_tableur" | "fichier_dessin" | "fichier_presentation" | "fichier_markdown" | "fichier_json" | "fichier_xml" | "fichier_html" | "fichier_css" | "fichier_csv" | "fichier_javascript" | "fichier_sql" | "fichier_shell" | "fichier_yaml" | "fichier_python" | "fichier_typescript" | "fichier_php" | "fichier_java" | "fichier_code" | "fichier_config" | "fichier_log" | "espace" | "menu" | "tasks" | "sharelink" | "cannotCopyHere" | "cannotMoveHere" | "spaces" | "userHomes" | "yes" | "no" | "howMuchResult" | "howMuchSelected" | "selectAllElement" | "selectAllElementMoreThan" | "deleteSelection" | "dropFileFolders" | "currentFolder" | "canceledImport" | "lock" | "membersPopup" | "members" | "groups" | "role" | "success" | "close" | "config" | "vuesFavorites" | "vuesUtilisateurs" | "rechercheAvancee" | "pdfTools" | "editor" | "collab" | "diffViewer" | "sendingMail" | "column" | "facets" | "adminViewList" | "adminClassificationLauncher" | "adminClassificationPage" | "natureForm" | "emplacementForm" | "fieldForm" | "classificationPlan" | "chat" | "workflow" | "fileList" | "previewPanel" | "selectAll" | "deselectAll" | "layoutSelector" | "layoutList" | "layoutGrid" | "layoutTable" | "edit" | "open" | "download" | "restore" | "publish" | "back" | "minimize" | "duplicate" | "moveUp" | "moveDown" | "sortAscending" | "sortDescending" | "moreActions" | "add/removeFavorite" | "modify" | "home" | "selection" | "sidebarMenu" | "filter.clear" | "filter.search" | "filter.toggle" | "filter.all" | "filter.apply" | "filter.noOptions" | "filter.contains" | "filter.notContains" | "filter.equals" | "filter.clearAll" | "pdf.changePage" | "pdf.rotation" | "pdf.saveForm" | "pdf.previousPage" | "pdf.nextPage" | "pdf.cancelForm" | "pdf.on" | "pdf.and" | "pdf.scrolling" | "pdf.pageToPage" | "pdf.rotationRigth" | "pdf.rotationLeft" | "pdf.zoom" | "pdf.dezoom" | "pdf.adaptToPage" | "pdf.adaptToWidth" | "pdf.changeFile" | "pdf.currentPagination" | "pdf.showAllPages" | "pdf.showPageByPage" | "pdf.formFieldsInfo" | "pdf.formFieldsInfoTitle" | "pdf.formFieldName" | "pdf.formFieldType" | "pdf.formFieldValue" | "pagination.rowsPerPage" | "taskNotification.pendingTasks" | "menu.espaces" | "menu.favoris" | "menu.recherche" | "menu.vues" | "menu.userHome" | "menu.configuration" | "tasks.error.createProcess" | "tasks.error.getProcesses" | "tasks.error.getProcess" | "tasks.error.getFinishedProcess" | "tasks.error.addProcessItems" | "tasks.error.getProcessItems" | "tasks.error.getProcessVariables" | "tasks.error.getProcessDefinition" | "tasks.error.cancelWorkflow" | "tasks.error.openProcessDiagram" | "tasks.error.getProcessHistoryTasks" | "tasks.error.listTasks" | "tasks.error.listFinishedTasks" | "tasks.error.getTask" | "tasks.error.endTask" | "tasks.error.getTaskVariables" | "tasks.error.postTaskVariables" | "tasks.error.updateTaskVariables" | "tasks.error.getTaskItem" | "tasks.priority.priority" | "tasks.priority.low" | "tasks.priority.medium" | "tasks.priority.high" | "tasks.priority.notFound" | "tasks.statusLabel.completed" | "tasks.statusLabel.notYetStarted" | "tasks.statusLabel.inProgress" | "tasks.statusLabel.onHold" | "tasks.statusLabel.cancelled" | "tasks.error" | "tasks.none" | "tasks.priority" | "tasks.approved" | "tasks.rejected" | "tasks.reviewTask" | "tasks.adhocTask" | "tasks.verifyTaskDone" | "tasks.unknownTask" | "tasks.statusLabel" | "sharelink.shareLinkOf" | "sharelink.linkToShare" | "sharelink.shareLinkSettings" | "sharelink.createLinkTooltip" | "sharelink.copyLinkTooltip" | "sharelink.deleteLinkTooltip" | "sharelink.addExpirationDateLinkTooltip" | "sharelink.deleteExpirationDateLinkTooltip" | "sharelink.createLinkToastSummary" | "sharelink.createLinkToastDetail" | "sharelink.createLinkErrorSummary" | "sharelink.deleteLinkToastSummary" | "sharelink.deleteLinkToastDetail" | "sharelink.deleteLinkErrorSummary" | "sharelink.copyLinkToastSummary" | "sharelink.copyLinkErrorSummary" | "sharelink.copyLinkToastDetail" | "sharelink.copyLinkErrorDetail" | "sharelink.updateLinkDateSummary" | "sharelink.updateLinkDateDetail" | "sharelink.updateLinkDateErrorSummary" | "sharelink.expirationDate" | "sharelink.placeholder" | "lock.nodeLock" | "lock.readOnlyLock" | "lock.writeLock" | "membersPopup.goToSiteMemberPage" | "members.add" | "members.search" | "members.members" | "members.role" | "members.management" | "members.youAre" | "members.ofThisWorkspace" | "members.select" | "members.errorAdd" | "members.successAdd" | "members.successDelete" | "members.successChangeRole" | "members.nbAccess" | "members.restrictPermissions" | "members.restorePermissions" | "members.successRestrictPermissions" | "members.successRestorePermissions" | "members.fromGroup" | "members.viewUserProfile" | "role.SiteConsumer" | "role.SiteCollaborator" | "role.SiteManager" | "config.groups.search" | "config.groups.pagination" | "config.groups.display" | "config.groups.matomo" | "config.groups.sentry" | "config.groups.metadata" | "config.groups.security" | "config.groups.other" | "config.tabs.structuredEdit" | "config.tabs.rawEdit" | "config.tabs.versions" | "config.table.keyHeader" | "config.table.valueHeader" | "config.table.typeHeader" | "config.buttons.add" | "config.buttons.cancel" | "config.buttons.refresh" | "config.buttons.addNew" | "config.buttons.saveChanges" | "config.buttons.define" | "config.buttons.undefine" | "config.buttons.expand" | "config.buttons.collapse" | "config.splitView.filterPlaceholder" | "config.splitView.selectConfig" | "config.splitView.noResults" | "config.splitView.defaultValue" | "config.dialog.addTitle" | "config.dialog.keyLabel" | "config.dialog.valueLabel" | "config.dialog.typeLabel" | "config.raw.uploadDescription" | "config.raw.uploadButton" | "config.raw.uploadWarning" | "config.toasts.saveSuccess" | "config.toasts.fetchError" | "config.toasts.saveError" | "config.toasts.errorDetail" | "config.errors.keyRequired" | "config.errors.keyDuplicate" | "config.errors.invalidNumber" | "config.errors.invalidBoolean" | "config.errors.invalidJson" | "config.errors.typeMismatch" | "config.errors.invalidJsonFile" | "config.versionViewer.error" | "config.versionViewer.success" | "config.versionViewer.listTitle" | "config.versionViewer.title" | "config.versionViewer.selectPrompt" | "config.versionViewer.loadError" | "config.versionViewer.genericError" | "config.versionViewer.cannotRevertLatest" | "config.versionViewer.restoredVersionComment" | "config.arrayEditor.addItem" | "config.arrayEditor.reorder" | "config.types.string" | "config.types.number" | "config.types.boolean" | "config.types.object" | "config.types.array" | "config.groups" | "config.pageTitle" | "config.pageDescription" | "config.tabs" | "config.table" | "config.buttons" | "config.notDefined" | "config.splitView" | "config.dialog" | "config.raw" | "config.toasts" | "config.errors" | "config.versionViewer" | "config.arrayEditor" | "config.types" | "vuesFavorites.title" | "vuesFavorites.loadedViewMessage" | "vuesFavorites.noSavedViews" | "vuesFavorites.personalViews" | "vuesFavorites.selectPersonalView" | "vuesFavorites.globalViews" | "vuesFavorites.selectGlobalView" | "vuesFavorites.filterSavedViews" | "vuesUtilisateurs.saveViewPopup.title" | "vuesUtilisateurs.saveViewPopup.nameLabel" | "vuesUtilisateurs.saveViewPopup.nameRequired" | "vuesUtilisateurs.saveViewPopup.descriptionLabel" | "vuesUtilisateurs.saveViewPopup.detailsLabel" | "vuesUtilisateurs.saveViewPopup.scopeLabel" | "vuesUtilisateurs.saveViewPopup.scopeDescription" | "vuesUtilisateurs.saveViewPopup.scopeUser" | "vuesUtilisateurs.saveViewPopup.scopeGlobal" | "vuesUtilisateurs.saveViewPopup.fileIdLabel" | "vuesUtilisateurs.saveViewPopup.fileIdDescription" | "vuesUtilisateurs.saveViewPopup.fileIdPlaceholder" | "vuesUtilisateurs.saveViewPopup.personalDescription" | "vuesUtilisateurs.modifyViewPopup.title" | "vuesUtilisateurs.saveView" | "vuesUtilisateurs.modifyView" | "vuesUtilisateurs.cancelButton" | "vuesUtilisateurs.saveViewPopup" | "vuesUtilisateurs.modifyViewPopup" | "rechercheAvancee.savedViewError.idAlreadyExists" | "rechercheAvancee.savedViewError.nameAlreadyExists" | "rechercheAvancee.savedViewError.globalNotFound" | "rechercheAvancee.savedViewError.personnalNotFound" | "rechercheAvancee.savedViewError.userNotFound" | "rechercheAvancee.savedViewError.userNotFoundForUpdate" | "rechercheAvancee.savedViewError.userNotFoundForDelete" | "rechercheAvancee.savedViewError.configFolderNotFound" | "rechercheAvancee.savedViewError.configFileNotFound" | "rechercheAvancee.contains" | "rechercheAvancee.noResults" | "rechercheAvancee.valueLabel" | "rechercheAvancee.loadedViewMessage" | "rechercheAvancee.noSavedViews" | "rechercheAvancee.filterSavedViews" | "rechercheAvancee.cancelButton" | "rechercheAvancee.sitePlaceholder" | "rechercheAvancee.folderPlaceholder" | "rechercheAvancee.advancedSearch" | "rechercheAvancee.queryBuilder" | "rechercheAvancee.addCriterionPopupTitle" | "rechercheAvancee.propertyLabel" | "rechercheAvancee.propertyPlaceholder" | "rechercheAvancee.searchProperty" | "rechercheAvancee.propertyName" | "rechercheAvancee.propertyId" | "rechercheAvancee.propertyDescription" | "rechercheAvancee.propertyAspect" | "rechercheAvancee.conditionLabel" | "rechercheAvancee.operatorLabel" | "rechercheAvancee.operatorPlaceholder" | "rechercheAvancee.addButton" | "rechercheAvancee.mustContain" | "rechercheAvancee.mustNotContain" | "rechercheAvancee.exact" | "rechercheAvancee.isDate" | "rechercheAvancee.isDateRange" | "rechercheAvancee.isNumber" | "rechercheAvancee.isNumberRange" | "rechercheAvancee.is" | "rechercheAvancee.locationLabel" | "rechercheAvancee.locationSite" | "rechercheAvancee.locationPath" | "rechercheAvancee.locationNone" | "rechercheAvancee.locationValuePlaceholder" | "rechercheAvancee.criteriaTitle" | "rechercheAvancee.noCriteria" | "rechercheAvancee.addCriterionButton" | "rechercheAvancee.advancedSearchActive" | "rechercheAvancee.savedViews" | "rechercheAvancee.addsSavedViewSuccess" | "rechercheAvancee.modifySavedViewSuccess" | "rechercheAvancee.updateSavedView" | "rechercheAvancee.savedViewError" | "rechercheAvancee.noFilterResults" | "rechercheAvancee.selectPersonalSearch" | "rechercheAvancee.selectGlobalSearch" | "rechercheAvancee.favorite" | "rechercheAvancee.closeView" | "rechercheAvancee.activeView" | "rechercheAvancee.locationsTitle" | "rechercheAvancee.locationsHint" | "rechercheAvancee.noLocations" | "rechercheAvancee.addLocationButton" | "rechercheAvancee.addLocationTitle" | "rechercheAvancee.addLocationConfirm" | "rechercheAvancee.removeLocation" | "rechercheAvancee.includePrefix" | "rechercheAvancee.excludePrefix" | "rechercheAvancee.locationTypeLabel" | "rechercheAvancee.saveViewAsNew" | "rechercheAvancee.saveViewModifications" | "rechercheAvancee.deleteView" | "rechercheAvancee.deleteViewSuccess" | "rechercheAvancee.confirmDeleteTitle" | "rechercheAvancee.confirmDelete" | "rechercheAvancee.showMore" | "rechercheAvancee.addAsIncludeLocation" | "rechercheAvancee.addAsExcludeLocation" | "rechercheAvancee.addAsIncludeFolder" | "rechercheAvancee.addAsExcludeFolder" | "rechercheAvancee.addAsIncludeSite" | "rechercheAvancee.addAsExcludeSite" | "rechercheAvancee.editCriterionPopupTitle" | "rechercheAvancee.updateButton" | "rechercheAvancee.addGroupButton" | "rechercheAvancee.addOrGroup" | "rechercheAvancee.removeGroup" | "rechercheAvancee.operatorAnd" | "rechercheAvancee.operatorOr" | "rechercheAvancee.emptyGroup" | "pdfTools.common.clear" | "pdfTools.common.cancel" | "pdfTools.common.error" | "pdfTools.common.save" | "pdfTools.common.success" | "pdfTools.common.close" | "pdfTools.common.warning" | "pdfTools.common.apply" | "pdfTools.common.select" | "pdfTools.common.deleted" | "pdfTools.common.use" | "pdfTools.common.insert" | "pdfTools.sidebar.actions" | "pdfTools.sidebar.saveAs" | "pdfTools.sidebar.saveNewVersion" | "pdfTools.sidebar.extractPages" | "pdfTools.sidebar.extractAndSave" | "pdfTools.sidebar.deletePages" | "pdfTools.sidebar.deleteSelectedPages" | "pdfTools.sidebar.insertPdf" | "pdfTools.sidebar.fromComputer" | "pdfTools.sidebar.fromPristy" | "pdfTools.sidebar.addWatermark" | "pdfTools.sidebar.watermarkTextPlaceholder" | "pdfTools.sidebar.angle" | "pdfTools.sidebar.repetitions" | "pdfTools.sidebar.addWatermarkButton" | "pdfTools.pagePreview.title" | "pdfTools.pagePreview.openPagePreview" | "pdfTools.pageEditor.tools.actions" | "pdfTools.pageEditor.tools.size" | "pdfTools.pageEditor.tools.highlight" | "pdfTools.pageEditor.tools.text" | "pdfTools.pageEditor.tools.select" | "pdfTools.pageEditor.tools.redact" | "pdfTools.pageEditor.tools.comment" | "pdfTools.pageEditor.tools.image" | "pdfTools.pageEditor.tools.signature" | "pdfTools.pageEditor.tools.font" | "pdfTools.pageEditor.tools.color" | "pdfTools.pageEditor.cancel" | "pdfTools.pageEditor.close" | "pdfTools.pageEditor.apply" | "pdfTools.pageEditor.title" | "pdfTools.pageEditor.fit" | "pdfTools.pageEditor.tools" | "pdfTools.pageEditor.commentPrompt" | "pdfTools.pageEditor.addTextPrompt" | "pdfTools.pageEditor.footerHint" | "pdfTools.signaturePad.clear" | "pdfTools.signaturePad.title" | "pdfTools.signaturePad.use" | "pdfTools.saveAs.title" | "pdfTools.saveAs.filenameLabel" | "pdfTools.saveAs.defaultFilename" | "pdfTools.saveAs.folderLabel" | "pdfTools.saveAs.browse" | "pdfTools.saveAs.conflictError" | "pdfTools.insertFromAlfresco.search" | "pdfTools.insertFromAlfresco.cancel" | "pdfTools.insertFromAlfresco.path" | "pdfTools.insertFromAlfresco.loading" | "pdfTools.insertFromAlfresco.select" | "pdfTools.insertFromAlfresco.title" | "pdfTools.insertFromAlfresco.insert" | "pdfTools.insertFromAlfresco.browse" | "pdfTools.insertFromAlfresco.searchPlaceholder" | "pdfTools.insertFromAlfresco.searching" | "pdfTools.insertFromAlfresco.noPdfFound" | "pdfTools.insertFromAlfresco.favorites" | "pdfTools.insertFromAlfresco.noPdfFavorite" | "pdfTools.insertFromAlfresco.selectPdfToPreview" | "pdfTools.insertFromAlfresco.loadingPreview" | "pdfTools.insertFromAlfresco.linkOrId" | "pdfTools.insertFromAlfresco.alfrescoIdUrl" | "pdfTools.insertFromAlfresco.alfrescoIdUrlHint" | "pdfTools.insertFromAlfresco.selected" | "pdfTools.insertFromAlfresco.invalidInput" | "pdfTools.insertFromAlfresco.folderSelectError" | "pdfTools.insertFromAlfresco.fileTypeNotAllowedError" | "pdfTools.loading" | "pdfTools.common" | "pdfTools.saveSuccess" | "pdfTools.saveError" | "pdfTools.title" | "pdfTools.loadError" | "pdfTools.reorderError" | "pdfTools.rotateError" | "pdfTools.deleteAllPagesWarning" | "pdfTools.pagesDeletedSuccess" | "pdfTools.deletePagesError" | "pdfTools.insertFromFileSuccess" | "pdfTools.insertFromPristySuccess" | "pdfTools.insertError" | "pdfTools.insertFromPristyError" | "pdfTools.invalidNodeForInsert" | "pdfTools.watermarkError" | "pdfTools.saveAsError" | "pdfTools.noContentToSave" | "pdfTools.fileCreatedSuccess" | "pdfTools.redactWarning" | "pdfTools.redactFlattenConfirm" | "pdfTools.imagePreviewUnavailable" | "pdfTools.pdfRenderCanvasNotFound" | "pdfTools.sidebar" | "pdfTools.pagePreview" | "pdfTools.pageEditor" | "pdfTools.signaturePad" | "pdfTools.saveAs" | "pdfTools.insertFromAlfresco" | "editor.viewMode.split" | "editor.viewMode.editorOnly" | "editor.viewMode.previewOnly" | "editor.edit" | "editor.saveSuccess" | "editor.loadError" | "editor.cancelEdit" | "editor.closeEdit" | "editor.alreadyUpToDate" | "editor.refreshError" | "editor.unsavedChanges" | "editor.confirmationHeader" | "editor.lineWrap" | "editor.viewMode" | "collab.enable" | "collab.disable" | "collab.connected" | "collab.disconnected" | "collab.reconnecting" | "collab.peers" | "collab.initError" | "collab.sessionFull" | "collab.locked" | "collab.offline" | "collab.participantsTooltip" | "collab.editorsTooltip" | "collab.observersTooltip" | "diffViewer.errors.loadError" | "diffViewer.revertVersion.error" | "diffViewer.revertVersion.success" | "diffViewer.revertVersion.successDetail" | "diffViewer.errors" | "diffViewer.restoredVersionComment" | "diffViewer.compareTitle" | "diffViewer.version" | "diffViewer.currentVersion" | "diffViewer.selectVersionA" | "diffViewer.selectVersionB" | "diffViewer.revertToThisVersion" | "diffViewer.revertVersion" | "sendingMail.errors.errorEmptyEmail" | "sendingMail.errors.errorValidEmail" | "sendingMail.errors.errorEmptySubject" | "sendingMail.errors.errorSubjectTooShort" | "sendingMail.errors.errorEmptyMessage" | "sendingMail.errors.errorSendMail" | "sendingMail.popup.defaultSubject" | "sendingMail.popup.defaultMessage" | "sendingMail.errors" | "sendingMail.addCc" | "sendingMail.addCci" | "sendingMail.popup" | "column.actions" | "column.size" | "column.type" | "column.name" | "column.toggle" | "column.createdAt" | "column.createdBy" | "column.mimeType" | "column.modifiedAt" | "column.modifiedBy" | "column.thumbnail" | "column.customize" | "facets.categories" | "adminViewList.deleteView.toast.error.summary" | "adminViewList.deleteView.toast.error.detail" | "adminViewList.deleteView.toast.success.summary" | "adminViewList.deleteView.toast.success.detail" | "adminViewList.deleteView.toast.successMultiple.detail" | "adminViewList.deleteView.toast.errorMultiple.detail" | "adminViewList.deleteView.toast.error" | "adminViewList.deleteView.toast.success" | "adminViewList.deleteView.toast.successMultiple" | "adminViewList.deleteView.toast.errorMultiple" | "adminViewList.deleteView.button" | "adminViewList.deleteView.toast" | "adminViewList.deleteView.confirmHeader" | "adminViewList.deleteView.confirmMessage" | "adminViewList.deleteView.confirmMessageMultiple" | "adminViewList.existingViews.download" | "adminViewList.existingViews.loading" | "adminViewList.existingViews.title" | "adminViewList.existingViews.noViewsFound" | "adminViewList.importView.toast.error.summary" | "adminViewList.importView.toast.error.detail" | "adminViewList.importView.toast.success.summary" | "adminViewList.importView.toast.success.detail" | "adminViewList.importView.toast.error" | "adminViewList.importView.toast.success" | "adminViewList.importView.toast.noJsonFiles.summary" | "adminViewList.importView.toast.noJsonFiles.detail" | "adminViewList.importView.toast.noJsonFiles" | "adminViewList.importView.button" | "adminViewList.importView.toast" | "adminViewList.exportAll.toast.error.summary" | "adminViewList.exportAll.toast.error.detail" | "adminViewList.exportAll.toast.success.summary" | "adminViewList.exportAll.toast.success.detail" | "adminViewList.exportAll.toast.error" | "adminViewList.exportAll.toast.success" | "adminViewList.exportAll.button" | "adminViewList.exportAll.toast" | "adminViewList.dropZone.text" | "adminViewList.dropZone.hint" | "adminViewList.selectionBar.selectAll" | "adminViewList.selectionBar.selected" | "adminViewList.selectionBar.clearSelection" | "adminViewList.selectionBar.downloadAll" | "adminViewList.editView.toast.error.summary" | "adminViewList.editView.toast.error.detail" | "adminViewList.editView.toast.success.summary" | "adminViewList.editView.toast.success.detail" | "adminViewList.editView.toast.error" | "adminViewList.editView.toast.success" | "adminViewList.editView.button" | "adminViewList.editView.description" | "adminViewList.editView.name" | "adminViewList.editView.cancel" | "adminViewList.editView.save" | "adminViewList.editView.title" | "adminViewList.editView.toast" | "adminViewList.editView.namePlaceholder" | "adminViewList.editView.descriptionPlaceholder" | "adminViewList.toast.downloadError.summary" | "adminViewList.toast.downloadError.detail" | "adminViewList.toast.downloadError" | "adminViewList.deleteView" | "adminViewList.existingViews" | "adminViewList.importView" | "adminViewList.exportAll" | "adminViewList.dropZone" | "adminViewList.selectionBar" | "adminViewList.editView" | "adminViewList.toast" | "adminClassificationLauncher.selectionBar.selectAll" | "adminClassificationLauncher.selectionBar.selected" | "adminClassificationLauncher.selectionBar.clearSelection" | "adminClassificationLauncher.selectionBar.downloadAll" | "adminClassificationLauncher.selectionBar.openAll" | "adminClassificationLauncher.toast.listError.summary" | "adminClassificationLauncher.toast.listError.detail" | "adminClassificationLauncher.toast.invalidName.summary" | "adminClassificationLauncher.toast.invalidName.detail" | "adminClassificationLauncher.toast.listError" | "adminClassificationLauncher.toast.invalidName" | "adminClassificationLauncher.existingPlans.download" | "adminClassificationLauncher.existingPlans.loading" | "adminClassificationLauncher.existingPlans.title" | "adminClassificationLauncher.existingPlans.noPlansFound" | "adminClassificationLauncher.createPlan.button" | "adminClassificationLauncher.createPlan.description" | "adminClassificationLauncher.createPlan.cancel" | "adminClassificationLauncher.createPlan.placeholder" | "adminClassificationLauncher.createPlan.title" | "adminClassificationLauncher.deletePlan.toast.error.summary" | "adminClassificationLauncher.deletePlan.toast.error.detail" | "adminClassificationLauncher.deletePlan.toast.success.summary" | "adminClassificationLauncher.deletePlan.toast.success.detail" | "adminClassificationLauncher.deletePlan.toast.successMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.errorMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.error" | "adminClassificationLauncher.deletePlan.toast.success" | "adminClassificationLauncher.deletePlan.toast.successMultiple" | "adminClassificationLauncher.deletePlan.toast.errorMultiple" | "adminClassificationLauncher.deletePlan.button" | "adminClassificationLauncher.deletePlan.toast" | "adminClassificationLauncher.deletePlan.confirmHeader" | "adminClassificationLauncher.deletePlan.confirmMessage" | "adminClassificationLauncher.deletePlan.confirmMessageMultiple" | "adminClassificationLauncher.importPlan.toast.success.summary" | "adminClassificationLauncher.importPlan.toast.success.detail" | "adminClassificationLauncher.importPlan.toast.success" | "adminClassificationLauncher.importPlan.toast.saveError.summary" | "adminClassificationLauncher.importPlan.toast.saveError.detail" | "adminClassificationLauncher.importPlan.toast.parseError.summary" | "adminClassificationLauncher.importPlan.toast.parseError.detail" | "adminClassificationLauncher.importPlan.toast.saveError" | "adminClassificationLauncher.importPlan.toast.parseError" | "adminClassificationLauncher.importPlan.button" | "adminClassificationLauncher.importPlan.toast" | "adminClassificationLauncher.importPlan.invalidStructure" | "adminClassificationLauncher.title" | "adminClassificationLauncher.selectionBar" | "adminClassificationLauncher.toast" | "adminClassificationLauncher.existingPlans" | "adminClassificationLauncher.createPlan" | "adminClassificationLauncher.deletePlan" | "adminClassificationLauncher.importPlan" | "adminClassificationPage.buttons.cancel" | "adminClassificationPage.toast.saveError" | "adminClassificationPage.tabs.categories" | "adminClassificationPage.tabs.natures" | "adminClassificationPage.tabs.fields" | "adminClassificationPage.tabs.emplacements" | "adminClassificationPage.buttons.reload" | "adminClassificationPage.buttons.save" | "adminClassificationPage.buttons.newNature" | "adminClassificationPage.buttons.newField" | "adminClassificationPage.buttons.newEmplacement" | "adminClassificationPage.buttons.newCategory" | "adminClassificationPage.buttons.export" | "adminClassificationPage.buttons.import" | "adminClassificationPage.buttons.createFile" | "adminClassificationPage.buttons.saveFile" | "adminClassificationPage.dialog.createNature" | "adminClassificationPage.dialog.editNature" | "adminClassificationPage.dialog.duplicateNature" | "adminClassificationPage.dialog.createField" | "adminClassificationPage.dialog.editField" | "adminClassificationPage.dialog.duplicateField" | "adminClassificationPage.dialog.createEmplacement" | "adminClassificationPage.dialog.editEmplacement" | "adminClassificationPage.dialog.createCategory" | "adminClassificationPage.dialog.editCategory" | "adminClassificationPage.toast.saveSuccess" | "adminClassificationPage.toast.loadError" | "adminClassificationPage.toast.newPlan" | "adminClassificationPage.toast.fileNotExist" | "adminClassificationPage.toast.loadErrorDetail" | "adminClassificationPage.toast.exportSuccess" | "adminClassificationPage.toast.exportSuccessDetail" | "adminClassificationPage.toast.importSuccess" | "adminClassificationPage.toast.importSuccessDetail" | "adminClassificationPage.toast.importError" | "adminClassificationPage.toast.importErrorDetail" | "adminClassificationPage.toast.invalidFileStructure" | "adminClassificationPage.toast.fieldCreated" | "adminClassificationPage.toast.fieldAutoCreated" | "adminClassificationPage.toast.autoCreatedForNature" | "adminClassificationPage.toast.autoCreatedForEmplacement" | "adminClassificationPage.toast.deleteImpossible" | "adminClassificationPage.toast.fieldUsed" | "adminClassificationPage.toast.emplacementUsed" | "adminClassificationPage.toast.confirmed" | "adminClassificationPage.toast.itemDeleted" | "adminClassificationPage.toast.invalidFilename" | "adminClassificationPage.toast.filenameMustStartWithPlan" | "adminClassificationPage.columns.id" | "adminClassificationPage.columns.actions" | "adminClassificationPage.columns.label" | "adminClassificationPage.columns.icon" | "adminClassificationPage.columns.description" | "adminClassificationPage.columns.type" | "adminClassificationPage.columns.name" | "adminClassificationPage.columns.display" | "adminClassificationPage.columns.title" | "adminClassificationPage.columns.categories" | "adminClassificationPage.columns.emplacement" | "adminClassificationPage.columns.code" | "adminClassificationPage.columns.views" | "adminClassificationPage.columns.optional" | "adminClassificationPage.columns.status" | "adminClassificationPage.confirm.field" | "adminClassificationPage.confirm.emplacement" | "adminClassificationPage.confirm.deleteMessage" | "adminClassificationPage.confirm.deleteHeader" | "adminClassificationPage.confirm.nature" | "adminClassificationPage.confirm.category" | "adminClassificationPage.viewSelector.search" | "adminClassificationPage.viewSelector.noResults" | "adminClassificationPage.viewSelector.title" | "adminClassificationPage.viewSelector.selected" | "adminClassificationPage.viewSelector.available" | "adminClassificationPage.viewSelector.searchResults" | "adminClassificationPage.viewSelector.noViews" | "adminClassificationPage.viewSelector.nViews" | "adminClassificationPage.viewSelector.validate" | "adminClassificationPage.loading" | "adminClassificationPage.tabs" | "adminClassificationPage.buttons" | "adminClassificationPage.dialog" | "adminClassificationPage.toast" | "adminClassificationPage.titleNew" | "adminClassificationPage.titleAdmin" | "adminClassificationPage.file" | "adminClassificationPage.columns" | "adminClassificationPage.confirm" | "adminClassificationPage.viewSelector" | "natureForm.validation.nameAndCodeRequired" | "natureForm.validation.codeAlreadyExists" | "natureForm.value" | "natureForm.icon" | "natureForm.required" | "natureForm.name" | "natureForm.metadata" | "natureForm.categories" | "natureForm.emplacement" | "natureForm.code" | "natureForm.documentType" | "natureForm.aspects" | "natureForm.selectAspects" | "natureForm.chooseIcon" | "natureForm.selectPath" | "natureForm.calculatedPath" | "natureForm.noMetadata" | "natureForm.key" | "natureForm.mappingType" | "natureForm.valueOrFieldName" | "natureForm.selectCategories" | "natureForm.validation" | "natureForm.optionalFieldTooltip" | "emplacementForm.validation.codeRequired" | "emplacementForm.value" | "emplacementForm.type" | "emplacementForm.required" | "emplacementForm.metadata" | "emplacementForm.code" | "emplacementForm.aspects" | "emplacementForm.selectAspects" | "emplacementForm.noMetadata" | "emplacementForm.key" | "emplacementForm.mappingType" | "emplacementForm.valueOrFieldName" | "emplacementForm.validation" | "emplacementForm.optionalFieldTooltip" | "emplacementForm.codeHelp" | "emplacementForm.typeHelp" | "emplacementForm.editType" | "fieldForm.search.query.label" | "fieldForm.search.lang.label" | "fieldForm.search.valueField.label" | "fieldForm.search.testButton.label" | "fieldForm.search.testResults.title" | "fieldForm.search.testError.fetchError" | "fieldForm.search.testError.emptyQuery" | "fieldForm.search.testError.noResult" | "fieldForm.search.query" | "fieldForm.search.title" | "fieldForm.search.lang" | "fieldForm.search.valueField" | "fieldForm.search.testButton" | "fieldForm.search.testResults" | "fieldForm.search.testError" | "fieldForm.description.label" | "fieldForm.description.help" | "fieldForm.name.label" | "fieldForm.name.help" | "fieldForm.errors.nameAndDescriptionRequired" | "fieldForm.errors.fieldNameExists" | "fieldForm.defaultValue.label" | "fieldForm.defaultValue.help" | "fieldForm.optional.label" | "fieldForm.optional.help" | "fieldForm.dataType.label" | "fieldForm.dataType.placeholder" | "fieldForm.dataType.help" | "fieldForm.inputType.label" | "fieldForm.inputType.placeholder" | "fieldForm.inputType.help" | "fieldForm.stringConstraints.regex.label" | "fieldForm.stringConstraints.regex.help" | "fieldForm.stringConstraints.regexTester.label" | "fieldForm.stringConstraints.regexTester.placeholder" | "fieldForm.stringConstraints.title" | "fieldForm.stringConstraints.regex" | "fieldForm.stringConstraints.regexTester" | "fieldForm.numberConstraints.default.label" | "fieldForm.numberConstraints.min.label" | "fieldForm.numberConstraints.max.label" | "fieldForm.numberConstraints.default" | "fieldForm.numberConstraints.title" | "fieldForm.numberConstraints.min" | "fieldForm.numberConstraints.max" | "fieldForm.optionalSettings.title" | "fieldForm.prefix.label" | "fieldForm.prefix.help" | "fieldForm.suffix.label" | "fieldForm.suffix.help" | "fieldForm.search" | "fieldForm.description" | "fieldForm.name" | "fieldForm.errors" | "fieldForm.defaultValue" | "fieldForm.optional" | "fieldForm.dataType" | "fieldForm.inputType" | "fieldForm.stringConstraints" | "fieldForm.numberConstraints" | "fieldForm.optionalSettings" | "fieldForm.prefix" | "fieldForm.suffix" | "classificationPlan.buttons.cancel" | "classificationPlan.upload.headerCreate" | "classificationPlan.upload.headerImport" | "classificationPlan.buttons.next" | "classificationPlan.buttons.previous" | "classificationPlan.buttons.requalify" | "classificationPlan.buttons.viewSummary" | "classificationPlan.buttons.acceptAndCreate" | "classificationPlan.buttons.acceptAndImport" | "classificationPlan.buttons.depositing" | "classificationPlan.buttons.deposit" | "classificationPlan.toast.searchError" | "classificationPlan.toast.searchFieldFailed" | "classificationPlan.toast.loadPlansError" | "classificationPlan.toast.loadPlanContentError" | "classificationPlan.toast.workspaceError" | "classificationPlan.toast.requalifySuccess" | "classificationPlan.toast.requalifyError" | "classificationPlan.toast.depositSuccess" | "classificationPlan.toast.depositError" | "classificationPlan.toast.createSuccess" | "classificationPlan.toast.createError" | "classificationPlan.summary.document" | "classificationPlan.summary.metadata" | "classificationPlan.summary.verifyBeforeImport" | "classificationPlan.summary.verifyBeforeRequalify" | "classificationPlan.summary.verifyBeforeDeposit" | "classificationPlan.summary.generalInfo" | "classificationPlan.summary.metadataToSend" | "classificationPlan.summary.fileClassification" | "classificationPlan.summary.destinationFolder" | "classificationPlan.summary.movement" | "classificationPlan.steps.summary" | "classificationPlan.steps.step" | "classificationPlan.steps.selectPlan" | "classificationPlan.steps.selectNature" | "classificationPlan.steps.fillMetadata" | "classificationPlan.steps.fillMetadataAndFiles" | "classificationPlan.steps.selectFiles" | "classificationPlan.stepper.files" | "classificationPlan.stepper.metadata" | "classificationPlan.stepper.summary" | "classificationPlan.stepper.nature" | "classificationPlan.stepper.plan" | "classificationPlan.multiFile.status" | "classificationPlan.multiFile.category" | "classificationPlan.multiFile.allCategories" | "classificationPlan.multiFile.selectNature" | "classificationPlan.multiFile.noFiles" | "classificationPlan.multiFile.fileName" | "classificationPlan.multiFile.metadataBtn" | "classificationPlan.multiFile.complete" | "classificationPlan.multiFile.incomplete" | "classificationPlan.multiFile.selectCategory" | "classificationPlan.multiFile.selectCategoryFirst" | "classificationPlan.multiFile.searchNature" | "classificationPlan.multiFile.removeFile" | "classificationPlan.multiFile.metadataTitle" | "classificationPlan.multiFile.configSingle" | "classificationPlan.multiFile.configMultiple" | "classificationPlan.multiFile.summaryBefore" | "classificationPlan.multiFile.selectedCount" | "classificationPlan.multiFile.unassigned" | "classificationPlan.multiFile.filterAll" | "classificationPlan.multiFile.filterIncomplete" | "classificationPlan.multiFile.filterComplete" | "classificationPlan.multiFile.progressLabel" | "classificationPlan.multiFile.modeMultiCategory" | "classificationPlan.multiFile.modeMonoCategory" | "classificationPlan.multiFile.bulkSelectNature" | "classificationPlan.multiFile.layoutRow" | "classificationPlan.multiFile.layoutCol" | "classificationPlan.multiFile.metadataFilled" | "classificationPlan.requalify.title" | "classificationPlan.requalify.summaryFrom" | "classificationPlan.requalify.summaryTo" | "classificationPlan.files" | "classificationPlan.upload" | "classificationPlan.buttons" | "classificationPlan.defaultValue" | "classificationPlan.searchPlaceholder" | "classificationPlan.toast" | "classificationPlan.summary" | "classificationPlan.code" | "classificationPlan.nature" | "classificationPlan.category" | "classificationPlan.min" | "classificationPlan.max" | "classificationPlan.allCategories" | "classificationPlan.noCategory" | "classificationPlan.filterByCategory" | "classificationPlan.steps" | "classificationPlan.stepper" | "classificationPlan.plan" | "classificationPlan.natureColumn" | "classificationPlan.choosePlan" | "classificationPlan.planAriaLabel" | "classificationPlan.noPlanFound" | "classificationPlan.searchNaturePlaceholder" | "classificationPlan.noNature" | "classificationPlan.destinationCurrent" | "classificationPlan.destinationLabel" | "classificationPlan.chooseFiles" | "classificationPlan.fileToCreate" | "classificationPlan.filesToImport" | "classificationPlan.na" | "classificationPlan.constraint" | "classificationPlan.validationRegexError" | "classificationPlan.multiFile" | "classificationPlan.requalify" | "chat.title" | "chat.reconnecting" | "chat.connecting" | "chat.connectionError" | "chat.notConfigured" | "chat.configureInProfile" | "chat.retry" | "chat.searchRooms" | "chat.noRooms" | "chat.noMessages" | "chat.loadMore" | "chat.typeMessage" | "chat.send" | "chat.attachFile" | "chat.attachment" | "chat.unknownUser" | "chat.userTyping" | "chat.usersTyping" | "chat.multipleUsersTyping" | "chat.sendError" | "chat.uploadError" | "chat.openChat" | "chat.closeChat" | "chat.newMessages" | "workflow.selectedDocuments" | "selection.clear" | "selection.selectAll" | "selection.clearSelection" | "selection.count" | "selection.mobileCount" | "selection.selectAllShort" | "sidebarMenu.profile" | "sidebarMenu.portal" | "sidebarMenu.logout" | "tasks.approve" | "tasks.reject" | "rechercheAvancee.addFavorite" | "rechercheAvancee.removeFavorite">;
|
|
2531
|
+
}>, never, "facets.categories.modified_date" | "delete" | "filter" | "search" | "pdf" | "reload" | "cancel" | "error" | "dossier" | "pagination" | "taskNotification" | "restrictedPermissions" | "nothingTitle" | "nothingText" | "goHome" | "fichier" | "save" | "next" | "previous" | "selectFolder" | "dropFolder" | "uploadUnknownError" | "alfrescoError" | "fichier_image" | "fichier_video" | "fichier_pdf" | "fichier_eml" | "fichier_texte" | "fichier_tableur" | "fichier_dessin" | "fichier_presentation" | "fichier_markdown" | "fichier_json" | "fichier_xml" | "fichier_html" | "fichier_css" | "fichier_csv" | "fichier_javascript" | "fichier_sql" | "fichier_shell" | "fichier_yaml" | "fichier_python" | "fichier_typescript" | "fichier_php" | "fichier_java" | "fichier_code" | "fichier_config" | "fichier_log" | "espace" | "menu" | "tasks" | "sharelink" | "cannotCopyHere" | "cannotMoveHere" | "spaces" | "userHomes" | "yes" | "no" | "howMuchResult" | "howMuchSelected" | "selectAllElement" | "selectAllElementMoreThan" | "deleteSelection" | "dropFileFolders" | "currentFolder" | "canceledImport" | "lock" | "membersPopup" | "members" | "groups" | "role" | "success" | "close" | "config" | "vuesFavorites" | "vuesUtilisateurs" | "rechercheAvancee" | "pdfTools" | "editor" | "collab" | "diffViewer" | "sendingMail" | "column" | "facets" | "adminViewList" | "adminClassificationLauncher" | "adminClassificationPage" | "natureForm" | "emplacementForm" | "fieldForm" | "classificationPlan" | "chat" | "workflow" | "fileList" | "previewPanel" | "selectAll" | "deselectAll" | "layoutSelector" | "layoutList" | "layoutGrid" | "layoutTable" | "edit" | "open" | "download" | "restore" | "publish" | "back" | "minimize" | "duplicate" | "moveUp" | "moveDown" | "sortAscending" | "sortDescending" | "moreActions" | "add/removeFavorite" | "modify" | "home" | "selection" | "sidebarMenu" | "filter.clear" | "filter.search" | "filter.toggle" | "filter.all" | "filter.apply" | "filter.noOptions" | "filter.contains" | "filter.notContains" | "filter.equals" | "filter.clearAll" | "pdf.changePage" | "pdf.rotation" | "pdf.saveForm" | "pdf.previousPage" | "pdf.nextPage" | "pdf.cancelForm" | "pdf.on" | "pdf.and" | "pdf.scrolling" | "pdf.pageToPage" | "pdf.rotationRigth" | "pdf.rotationLeft" | "pdf.zoom" | "pdf.dezoom" | "pdf.adaptToPage" | "pdf.adaptToWidth" | "pdf.changeFile" | "pdf.currentPagination" | "pdf.showAllPages" | "pdf.showPageByPage" | "pdf.formFieldsInfo" | "pdf.formFieldsInfoTitle" | "pdf.formFieldName" | "pdf.formFieldType" | "pdf.formFieldValue" | "pagination.rowsPerPage" | "taskNotification.pendingTasks" | "menu.espaces" | "menu.favoris" | "menu.recherche" | "menu.vues" | "menu.userHome" | "menu.configuration" | "tasks.error.createProcess" | "tasks.error.getProcesses" | "tasks.error.getProcess" | "tasks.error.getFinishedProcess" | "tasks.error.addProcessItems" | "tasks.error.getProcessItems" | "tasks.error.getProcessVariables" | "tasks.error.getProcessDefinition" | "tasks.error.cancelWorkflow" | "tasks.error.openProcessDiagram" | "tasks.error.getProcessHistoryTasks" | "tasks.error.listTasks" | "tasks.error.listFinishedTasks" | "tasks.error.getTask" | "tasks.error.endTask" | "tasks.error.getTaskVariables" | "tasks.error.postTaskVariables" | "tasks.error.updateTaskVariables" | "tasks.error.getTaskItem" | "tasks.priority.priority" | "tasks.priority.low" | "tasks.priority.medium" | "tasks.priority.high" | "tasks.priority.notFound" | "tasks.statusLabel.completed" | "tasks.statusLabel.notYetStarted" | "tasks.statusLabel.inProgress" | "tasks.statusLabel.onHold" | "tasks.statusLabel.cancelled" | "tasks.error" | "tasks.none" | "tasks.priority" | "tasks.approved" | "tasks.rejected" | "tasks.reviewTask" | "tasks.adhocTask" | "tasks.verifyTaskDone" | "tasks.unknownTask" | "tasks.statusLabel" | "sharelink.shareLinkOf" | "sharelink.linkToShare" | "sharelink.shareLinkSettings" | "sharelink.createLinkTooltip" | "sharelink.copyLinkTooltip" | "sharelink.deleteLinkTooltip" | "sharelink.addExpirationDateLinkTooltip" | "sharelink.deleteExpirationDateLinkTooltip" | "sharelink.createLinkToastSummary" | "sharelink.createLinkToastDetail" | "sharelink.createLinkErrorSummary" | "sharelink.deleteLinkToastSummary" | "sharelink.deleteLinkToastDetail" | "sharelink.deleteLinkErrorSummary" | "sharelink.copyLinkToastSummary" | "sharelink.copyLinkErrorSummary" | "sharelink.copyLinkToastDetail" | "sharelink.copyLinkErrorDetail" | "sharelink.updateLinkDateSummary" | "sharelink.updateLinkDateDetail" | "sharelink.updateLinkDateErrorSummary" | "sharelink.expirationDate" | "sharelink.placeholder" | "lock.nodeLock" | "lock.readOnlyLock" | "lock.writeLock" | "membersPopup.goToSiteMemberPage" | "members.add" | "members.search" | "members.members" | "members.role" | "members.permissions" | "members.management" | "members.youAre" | "members.ofThisWorkspace" | "members.select" | "members.errorAdd" | "members.successAdd" | "members.successDelete" | "members.successChangeRole" | "members.nbAccess" | "members.restrictPermissions" | "members.restorePermissions" | "members.successRestrictPermissions" | "members.successRestorePermissions" | "members.fromGroup" | "members.viewUserProfile" | "role.Manager" | "role.Collaborator" | "role.Consumer" | "role.Contributor" | "role.SiteConsumer" | "role.SiteCollaborator" | "role.SiteManager" | "config.groups.search" | "config.groups.pagination" | "config.groups.display" | "config.groups.matomo" | "config.groups.sentry" | "config.groups.metadata" | "config.groups.security" | "config.groups.other" | "config.tabs.structuredEdit" | "config.tabs.rawEdit" | "config.tabs.versions" | "config.table.keyHeader" | "config.table.valueHeader" | "config.table.typeHeader" | "config.buttons.add" | "config.buttons.cancel" | "config.buttons.refresh" | "config.buttons.addNew" | "config.buttons.saveChanges" | "config.buttons.define" | "config.buttons.undefine" | "config.buttons.expand" | "config.buttons.collapse" | "config.splitView.filterPlaceholder" | "config.splitView.selectConfig" | "config.splitView.noResults" | "config.splitView.defaultValue" | "config.dialog.addTitle" | "config.dialog.keyLabel" | "config.dialog.valueLabel" | "config.dialog.typeLabel" | "config.raw.uploadDescription" | "config.raw.uploadButton" | "config.raw.uploadWarning" | "config.toasts.saveSuccess" | "config.toasts.fetchError" | "config.toasts.saveError" | "config.toasts.errorDetail" | "config.errors.keyRequired" | "config.errors.keyDuplicate" | "config.errors.invalidNumber" | "config.errors.invalidBoolean" | "config.errors.invalidJson" | "config.errors.typeMismatch" | "config.errors.invalidJsonFile" | "config.versionViewer.error" | "config.versionViewer.success" | "config.versionViewer.listTitle" | "config.versionViewer.title" | "config.versionViewer.selectPrompt" | "config.versionViewer.loadError" | "config.versionViewer.genericError" | "config.versionViewer.cannotRevertLatest" | "config.versionViewer.restoredVersionComment" | "config.arrayEditor.addItem" | "config.arrayEditor.reorder" | "config.types.string" | "config.types.number" | "config.types.boolean" | "config.types.object" | "config.types.array" | "config.groups" | "config.pageTitle" | "config.pageDescription" | "config.tabs" | "config.table" | "config.buttons" | "config.notDefined" | "config.splitView" | "config.dialog" | "config.raw" | "config.toasts" | "config.errors" | "config.versionViewer" | "config.arrayEditor" | "config.types" | "vuesFavorites.title" | "vuesFavorites.loadedViewMessage" | "vuesFavorites.noSavedViews" | "vuesFavorites.personalViews" | "vuesFavorites.selectPersonalView" | "vuesFavorites.globalViews" | "vuesFavorites.selectGlobalView" | "vuesFavorites.filterSavedViews" | "vuesUtilisateurs.saveViewPopup.title" | "vuesUtilisateurs.saveViewPopup.nameLabel" | "vuesUtilisateurs.saveViewPopup.nameRequired" | "vuesUtilisateurs.saveViewPopup.descriptionLabel" | "vuesUtilisateurs.saveViewPopup.detailsLabel" | "vuesUtilisateurs.saveViewPopup.scopeLabel" | "vuesUtilisateurs.saveViewPopup.scopeDescription" | "vuesUtilisateurs.saveViewPopup.scopeUser" | "vuesUtilisateurs.saveViewPopup.scopeGlobal" | "vuesUtilisateurs.saveViewPopup.fileIdLabel" | "vuesUtilisateurs.saveViewPopup.fileIdDescription" | "vuesUtilisateurs.saveViewPopup.fileIdPlaceholder" | "vuesUtilisateurs.saveViewPopup.personalDescription" | "vuesUtilisateurs.modifyViewPopup.title" | "vuesUtilisateurs.saveView" | "vuesUtilisateurs.modifyView" | "vuesUtilisateurs.cancelButton" | "vuesUtilisateurs.saveViewPopup" | "vuesUtilisateurs.modifyViewPopup" | "rechercheAvancee.savedViewError.idAlreadyExists" | "rechercheAvancee.savedViewError.nameAlreadyExists" | "rechercheAvancee.savedViewError.globalNotFound" | "rechercheAvancee.savedViewError.personnalNotFound" | "rechercheAvancee.savedViewError.userNotFound" | "rechercheAvancee.savedViewError.userNotFoundForUpdate" | "rechercheAvancee.savedViewError.userNotFoundForDelete" | "rechercheAvancee.savedViewError.configFolderNotFound" | "rechercheAvancee.savedViewError.configFileNotFound" | "rechercheAvancee.contains" | "rechercheAvancee.noResults" | "rechercheAvancee.valueLabel" | "rechercheAvancee.loadedViewMessage" | "rechercheAvancee.noSavedViews" | "rechercheAvancee.filterSavedViews" | "rechercheAvancee.cancelButton" | "rechercheAvancee.sitePlaceholder" | "rechercheAvancee.folderPlaceholder" | "rechercheAvancee.advancedSearch" | "rechercheAvancee.queryBuilder" | "rechercheAvancee.addCriterionPopupTitle" | "rechercheAvancee.propertyLabel" | "rechercheAvancee.propertyPlaceholder" | "rechercheAvancee.searchProperty" | "rechercheAvancee.propertyName" | "rechercheAvancee.propertyId" | "rechercheAvancee.propertyDescription" | "rechercheAvancee.propertyAspect" | "rechercheAvancee.conditionLabel" | "rechercheAvancee.operatorLabel" | "rechercheAvancee.operatorPlaceholder" | "rechercheAvancee.addButton" | "rechercheAvancee.mustContain" | "rechercheAvancee.mustNotContain" | "rechercheAvancee.exact" | "rechercheAvancee.isDate" | "rechercheAvancee.isDateRange" | "rechercheAvancee.isNumber" | "rechercheAvancee.isNumberRange" | "rechercheAvancee.is" | "rechercheAvancee.locationLabel" | "rechercheAvancee.locationSite" | "rechercheAvancee.locationPath" | "rechercheAvancee.locationNone" | "rechercheAvancee.locationValuePlaceholder" | "rechercheAvancee.criteriaTitle" | "rechercheAvancee.noCriteria" | "rechercheAvancee.addCriterionButton" | "rechercheAvancee.advancedSearchActive" | "rechercheAvancee.savedViews" | "rechercheAvancee.addsSavedViewSuccess" | "rechercheAvancee.modifySavedViewSuccess" | "rechercheAvancee.updateSavedView" | "rechercheAvancee.savedViewError" | "rechercheAvancee.noFilterResults" | "rechercheAvancee.selectPersonalSearch" | "rechercheAvancee.selectGlobalSearch" | "rechercheAvancee.favorite" | "rechercheAvancee.closeView" | "rechercheAvancee.activeView" | "rechercheAvancee.locationsTitle" | "rechercheAvancee.locationsHint" | "rechercheAvancee.noLocations" | "rechercheAvancee.addLocationButton" | "rechercheAvancee.addLocationTitle" | "rechercheAvancee.addLocationConfirm" | "rechercheAvancee.removeLocation" | "rechercheAvancee.includePrefix" | "rechercheAvancee.excludePrefix" | "rechercheAvancee.locationTypeLabel" | "rechercheAvancee.saveViewAsNew" | "rechercheAvancee.saveViewModifications" | "rechercheAvancee.deleteView" | "rechercheAvancee.deleteViewSuccess" | "rechercheAvancee.confirmDeleteTitle" | "rechercheAvancee.confirmDelete" | "rechercheAvancee.showMore" | "rechercheAvancee.addAsIncludeLocation" | "rechercheAvancee.addAsExcludeLocation" | "rechercheAvancee.addAsIncludeFolder" | "rechercheAvancee.addAsExcludeFolder" | "rechercheAvancee.addAsIncludeSite" | "rechercheAvancee.addAsExcludeSite" | "rechercheAvancee.editCriterionPopupTitle" | "rechercheAvancee.updateButton" | "rechercheAvancee.addGroupButton" | "rechercheAvancee.addOrGroup" | "rechercheAvancee.removeGroup" | "rechercheAvancee.operatorAnd" | "rechercheAvancee.operatorOr" | "rechercheAvancee.emptyGroup" | "pdfTools.common.clear" | "pdfTools.common.cancel" | "pdfTools.common.error" | "pdfTools.common.save" | "pdfTools.common.success" | "pdfTools.common.close" | "pdfTools.common.warning" | "pdfTools.common.apply" | "pdfTools.common.select" | "pdfTools.common.deleted" | "pdfTools.common.use" | "pdfTools.common.insert" | "pdfTools.sidebar.actions" | "pdfTools.sidebar.saveAs" | "pdfTools.sidebar.saveNewVersion" | "pdfTools.sidebar.extractPages" | "pdfTools.sidebar.extractAndSave" | "pdfTools.sidebar.deletePages" | "pdfTools.sidebar.deleteSelectedPages" | "pdfTools.sidebar.insertPdf" | "pdfTools.sidebar.fromComputer" | "pdfTools.sidebar.fromPristy" | "pdfTools.sidebar.addWatermark" | "pdfTools.sidebar.watermarkTextPlaceholder" | "pdfTools.sidebar.angle" | "pdfTools.sidebar.repetitions" | "pdfTools.sidebar.addWatermarkButton" | "pdfTools.pagePreview.title" | "pdfTools.pagePreview.openPagePreview" | "pdfTools.pageEditor.tools.actions" | "pdfTools.pageEditor.tools.size" | "pdfTools.pageEditor.tools.highlight" | "pdfTools.pageEditor.tools.text" | "pdfTools.pageEditor.tools.select" | "pdfTools.pageEditor.tools.redact" | "pdfTools.pageEditor.tools.comment" | "pdfTools.pageEditor.tools.image" | "pdfTools.pageEditor.tools.signature" | "pdfTools.pageEditor.tools.font" | "pdfTools.pageEditor.tools.color" | "pdfTools.pageEditor.cancel" | "pdfTools.pageEditor.close" | "pdfTools.pageEditor.apply" | "pdfTools.pageEditor.title" | "pdfTools.pageEditor.fit" | "pdfTools.pageEditor.tools" | "pdfTools.pageEditor.commentPrompt" | "pdfTools.pageEditor.addTextPrompt" | "pdfTools.pageEditor.footerHint" | "pdfTools.signaturePad.clear" | "pdfTools.signaturePad.title" | "pdfTools.signaturePad.use" | "pdfTools.saveAs.title" | "pdfTools.saveAs.filenameLabel" | "pdfTools.saveAs.defaultFilename" | "pdfTools.saveAs.folderLabel" | "pdfTools.saveAs.browse" | "pdfTools.saveAs.conflictError" | "pdfTools.insertFromAlfresco.search" | "pdfTools.insertFromAlfresco.cancel" | "pdfTools.insertFromAlfresco.path" | "pdfTools.insertFromAlfresco.loading" | "pdfTools.insertFromAlfresco.select" | "pdfTools.insertFromAlfresco.title" | "pdfTools.insertFromAlfresco.insert" | "pdfTools.insertFromAlfresco.browse" | "pdfTools.insertFromAlfresco.searchPlaceholder" | "pdfTools.insertFromAlfresco.searching" | "pdfTools.insertFromAlfresco.noPdfFound" | "pdfTools.insertFromAlfresco.favorites" | "pdfTools.insertFromAlfresco.noPdfFavorite" | "pdfTools.insertFromAlfresco.selectPdfToPreview" | "pdfTools.insertFromAlfresco.loadingPreview" | "pdfTools.insertFromAlfresco.linkOrId" | "pdfTools.insertFromAlfresco.alfrescoIdUrl" | "pdfTools.insertFromAlfresco.alfrescoIdUrlHint" | "pdfTools.insertFromAlfresco.selected" | "pdfTools.insertFromAlfresco.invalidInput" | "pdfTools.insertFromAlfresco.folderSelectError" | "pdfTools.insertFromAlfresco.fileTypeNotAllowedError" | "pdfTools.loading" | "pdfTools.common" | "pdfTools.saveSuccess" | "pdfTools.saveError" | "pdfTools.title" | "pdfTools.loadError" | "pdfTools.reorderError" | "pdfTools.rotateError" | "pdfTools.deleteAllPagesWarning" | "pdfTools.pagesDeletedSuccess" | "pdfTools.deletePagesError" | "pdfTools.insertFromFileSuccess" | "pdfTools.insertFromPristySuccess" | "pdfTools.insertError" | "pdfTools.insertFromPristyError" | "pdfTools.invalidNodeForInsert" | "pdfTools.watermarkError" | "pdfTools.saveAsError" | "pdfTools.noContentToSave" | "pdfTools.fileCreatedSuccess" | "pdfTools.redactWarning" | "pdfTools.redactFlattenConfirm" | "pdfTools.imagePreviewUnavailable" | "pdfTools.pdfRenderCanvasNotFound" | "pdfTools.sidebar" | "pdfTools.pagePreview" | "pdfTools.pageEditor" | "pdfTools.signaturePad" | "pdfTools.saveAs" | "pdfTools.insertFromAlfresco" | "editor.viewMode.split" | "editor.viewMode.editorOnly" | "editor.viewMode.previewOnly" | "editor.edit" | "editor.saveSuccess" | "editor.loadError" | "editor.cancelEdit" | "editor.closeEdit" | "editor.alreadyUpToDate" | "editor.refreshError" | "editor.unsavedChanges" | "editor.confirmationHeader" | "editor.lineWrap" | "editor.viewMode" | "collab.enable" | "collab.disable" | "collab.connected" | "collab.disconnected" | "collab.reconnecting" | "collab.peers" | "collab.initError" | "collab.sessionFull" | "collab.locked" | "collab.offline" | "collab.participantsTooltip" | "collab.editorsTooltip" | "collab.observersTooltip" | "diffViewer.errors.loadError" | "diffViewer.revertVersion.error" | "diffViewer.revertVersion.success" | "diffViewer.revertVersion.successDetail" | "diffViewer.errors" | "diffViewer.restoredVersionComment" | "diffViewer.compareTitle" | "diffViewer.version" | "diffViewer.currentVersion" | "diffViewer.selectVersionA" | "diffViewer.selectVersionB" | "diffViewer.revertToThisVersion" | "diffViewer.revertVersion" | "sendingMail.errors.errorEmptyEmail" | "sendingMail.errors.errorValidEmail" | "sendingMail.errors.errorEmptySubject" | "sendingMail.errors.errorSubjectTooShort" | "sendingMail.errors.errorEmptyMessage" | "sendingMail.errors.errorSendMail" | "sendingMail.popup.defaultSubject" | "sendingMail.popup.defaultMessage" | "sendingMail.errors" | "sendingMail.addCc" | "sendingMail.addCci" | "sendingMail.popup" | "column.actions" | "column.size" | "column.type" | "column.name" | "column.toggle" | "column.createdAt" | "column.createdBy" | "column.mimeType" | "column.modifiedAt" | "column.modifiedBy" | "column.thumbnail" | "column.customize" | "facets.categories" | "adminViewList.deleteView.toast.error.summary" | "adminViewList.deleteView.toast.error.detail" | "adminViewList.deleteView.toast.success.summary" | "adminViewList.deleteView.toast.success.detail" | "adminViewList.deleteView.toast.successMultiple.detail" | "adminViewList.deleteView.toast.errorMultiple.detail" | "adminViewList.deleteView.toast.error" | "adminViewList.deleteView.toast.success" | "adminViewList.deleteView.toast.successMultiple" | "adminViewList.deleteView.toast.errorMultiple" | "adminViewList.deleteView.button" | "adminViewList.deleteView.toast" | "adminViewList.deleteView.confirmHeader" | "adminViewList.deleteView.confirmMessage" | "adminViewList.deleteView.confirmMessageMultiple" | "adminViewList.existingViews.download" | "adminViewList.existingViews.loading" | "adminViewList.existingViews.title" | "adminViewList.existingViews.noViewsFound" | "adminViewList.importView.toast.error.summary" | "adminViewList.importView.toast.error.detail" | "adminViewList.importView.toast.success.summary" | "adminViewList.importView.toast.success.detail" | "adminViewList.importView.toast.error" | "adminViewList.importView.toast.success" | "adminViewList.importView.toast.noJsonFiles.summary" | "adminViewList.importView.toast.noJsonFiles.detail" | "adminViewList.importView.toast.noJsonFiles" | "adminViewList.importView.button" | "adminViewList.importView.toast" | "adminViewList.exportAll.toast.error.summary" | "adminViewList.exportAll.toast.error.detail" | "adminViewList.exportAll.toast.success.summary" | "adminViewList.exportAll.toast.success.detail" | "adminViewList.exportAll.toast.error" | "adminViewList.exportAll.toast.success" | "adminViewList.exportAll.button" | "adminViewList.exportAll.toast" | "adminViewList.dropZone.text" | "adminViewList.dropZone.hint" | "adminViewList.selectionBar.selectAll" | "adminViewList.selectionBar.selected" | "adminViewList.selectionBar.clearSelection" | "adminViewList.selectionBar.downloadAll" | "adminViewList.editView.toast.error.summary" | "adminViewList.editView.toast.error.detail" | "adminViewList.editView.toast.success.summary" | "adminViewList.editView.toast.success.detail" | "adminViewList.editView.toast.error" | "adminViewList.editView.toast.success" | "adminViewList.editView.button" | "adminViewList.editView.description" | "adminViewList.editView.name" | "adminViewList.editView.cancel" | "adminViewList.editView.save" | "adminViewList.editView.title" | "adminViewList.editView.toast" | "adminViewList.editView.namePlaceholder" | "adminViewList.editView.descriptionPlaceholder" | "adminViewList.toast.downloadError.summary" | "adminViewList.toast.downloadError.detail" | "adminViewList.toast.downloadError" | "adminViewList.deleteView" | "adminViewList.existingViews" | "adminViewList.importView" | "adminViewList.exportAll" | "adminViewList.dropZone" | "adminViewList.selectionBar" | "adminViewList.editView" | "adminViewList.toast" | "adminClassificationLauncher.selectionBar.selectAll" | "adminClassificationLauncher.selectionBar.selected" | "adminClassificationLauncher.selectionBar.clearSelection" | "adminClassificationLauncher.selectionBar.downloadAll" | "adminClassificationLauncher.selectionBar.openAll" | "adminClassificationLauncher.toast.listError.summary" | "adminClassificationLauncher.toast.listError.detail" | "adminClassificationLauncher.toast.invalidName.summary" | "adminClassificationLauncher.toast.invalidName.detail" | "adminClassificationLauncher.toast.listError" | "adminClassificationLauncher.toast.invalidName" | "adminClassificationLauncher.existingPlans.download" | "adminClassificationLauncher.existingPlans.loading" | "adminClassificationLauncher.existingPlans.title" | "adminClassificationLauncher.existingPlans.noPlansFound" | "adminClassificationLauncher.createPlan.button" | "adminClassificationLauncher.createPlan.description" | "adminClassificationLauncher.createPlan.cancel" | "adminClassificationLauncher.createPlan.placeholder" | "adminClassificationLauncher.createPlan.title" | "adminClassificationLauncher.deletePlan.toast.error.summary" | "adminClassificationLauncher.deletePlan.toast.error.detail" | "adminClassificationLauncher.deletePlan.toast.success.summary" | "adminClassificationLauncher.deletePlan.toast.success.detail" | "adminClassificationLauncher.deletePlan.toast.successMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.errorMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.error" | "adminClassificationLauncher.deletePlan.toast.success" | "adminClassificationLauncher.deletePlan.toast.successMultiple" | "adminClassificationLauncher.deletePlan.toast.errorMultiple" | "adminClassificationLauncher.deletePlan.button" | "adminClassificationLauncher.deletePlan.toast" | "adminClassificationLauncher.deletePlan.confirmHeader" | "adminClassificationLauncher.deletePlan.confirmMessage" | "adminClassificationLauncher.deletePlan.confirmMessageMultiple" | "adminClassificationLauncher.importPlan.toast.success.summary" | "adminClassificationLauncher.importPlan.toast.success.detail" | "adminClassificationLauncher.importPlan.toast.success" | "adminClassificationLauncher.importPlan.toast.saveError.summary" | "adminClassificationLauncher.importPlan.toast.saveError.detail" | "adminClassificationLauncher.importPlan.toast.parseError.summary" | "adminClassificationLauncher.importPlan.toast.parseError.detail" | "adminClassificationLauncher.importPlan.toast.saveError" | "adminClassificationLauncher.importPlan.toast.parseError" | "adminClassificationLauncher.importPlan.button" | "adminClassificationLauncher.importPlan.toast" | "adminClassificationLauncher.importPlan.invalidStructure" | "adminClassificationLauncher.title" | "adminClassificationLauncher.selectionBar" | "adminClassificationLauncher.toast" | "adminClassificationLauncher.existingPlans" | "adminClassificationLauncher.createPlan" | "adminClassificationLauncher.deletePlan" | "adminClassificationLauncher.importPlan" | "adminClassificationPage.buttons.cancel" | "adminClassificationPage.toast.saveError" | "adminClassificationPage.tabs.categories" | "adminClassificationPage.tabs.natures" | "adminClassificationPage.tabs.fields" | "adminClassificationPage.tabs.emplacements" | "adminClassificationPage.buttons.reload" | "adminClassificationPage.buttons.save" | "adminClassificationPage.buttons.newNature" | "adminClassificationPage.buttons.newField" | "adminClassificationPage.buttons.newEmplacement" | "adminClassificationPage.buttons.newCategory" | "adminClassificationPage.buttons.export" | "adminClassificationPage.buttons.import" | "adminClassificationPage.buttons.createFile" | "adminClassificationPage.buttons.saveFile" | "adminClassificationPage.dialog.createNature" | "adminClassificationPage.dialog.editNature" | "adminClassificationPage.dialog.duplicateNature" | "adminClassificationPage.dialog.createField" | "adminClassificationPage.dialog.editField" | "adminClassificationPage.dialog.duplicateField" | "adminClassificationPage.dialog.createEmplacement" | "adminClassificationPage.dialog.editEmplacement" | "adminClassificationPage.dialog.createCategory" | "adminClassificationPage.dialog.editCategory" | "adminClassificationPage.toast.saveSuccess" | "adminClassificationPage.toast.loadError" | "adminClassificationPage.toast.newPlan" | "adminClassificationPage.toast.fileNotExist" | "adminClassificationPage.toast.loadErrorDetail" | "adminClassificationPage.toast.exportSuccess" | "adminClassificationPage.toast.exportSuccessDetail" | "adminClassificationPage.toast.importSuccess" | "adminClassificationPage.toast.importSuccessDetail" | "adminClassificationPage.toast.importError" | "adminClassificationPage.toast.importErrorDetail" | "adminClassificationPage.toast.invalidFileStructure" | "adminClassificationPage.toast.fieldCreated" | "adminClassificationPage.toast.fieldAutoCreated" | "adminClassificationPage.toast.autoCreatedForNature" | "adminClassificationPage.toast.autoCreatedForEmplacement" | "adminClassificationPage.toast.deleteImpossible" | "adminClassificationPage.toast.fieldUsed" | "adminClassificationPage.toast.emplacementUsed" | "adminClassificationPage.toast.confirmed" | "adminClassificationPage.toast.itemDeleted" | "adminClassificationPage.toast.invalidFilename" | "adminClassificationPage.toast.filenameMustStartWithPlan" | "adminClassificationPage.columns.id" | "adminClassificationPage.columns.actions" | "adminClassificationPage.columns.label" | "adminClassificationPage.columns.icon" | "adminClassificationPage.columns.description" | "adminClassificationPage.columns.type" | "adminClassificationPage.columns.name" | "adminClassificationPage.columns.display" | "adminClassificationPage.columns.title" | "adminClassificationPage.columns.categories" | "adminClassificationPage.columns.emplacement" | "adminClassificationPage.columns.code" | "adminClassificationPage.columns.views" | "adminClassificationPage.columns.optional" | "adminClassificationPage.columns.status" | "adminClassificationPage.confirm.field" | "adminClassificationPage.confirm.emplacement" | "adminClassificationPage.confirm.deleteMessage" | "adminClassificationPage.confirm.deleteHeader" | "adminClassificationPage.confirm.nature" | "adminClassificationPage.confirm.category" | "adminClassificationPage.viewSelector.search" | "adminClassificationPage.viewSelector.noResults" | "adminClassificationPage.viewSelector.title" | "adminClassificationPage.viewSelector.selected" | "adminClassificationPage.viewSelector.available" | "adminClassificationPage.viewSelector.searchResults" | "adminClassificationPage.viewSelector.noViews" | "adminClassificationPage.viewSelector.nViews" | "adminClassificationPage.viewSelector.validate" | "adminClassificationPage.loading" | "adminClassificationPage.tabs" | "adminClassificationPage.buttons" | "adminClassificationPage.dialog" | "adminClassificationPage.toast" | "adminClassificationPage.titleNew" | "adminClassificationPage.titleAdmin" | "adminClassificationPage.file" | "adminClassificationPage.columns" | "adminClassificationPage.confirm" | "adminClassificationPage.viewSelector" | "natureForm.validation.nameAndCodeRequired" | "natureForm.validation.codeAlreadyExists" | "natureForm.value" | "natureForm.icon" | "natureForm.required" | "natureForm.name" | "natureForm.metadata" | "natureForm.categories" | "natureForm.emplacement" | "natureForm.code" | "natureForm.documentType" | "natureForm.aspects" | "natureForm.selectAspects" | "natureForm.chooseIcon" | "natureForm.selectPath" | "natureForm.calculatedPath" | "natureForm.noMetadata" | "natureForm.key" | "natureForm.mappingType" | "natureForm.valueOrFieldName" | "natureForm.selectCategories" | "natureForm.validation" | "natureForm.optionalFieldTooltip" | "emplacementForm.validation.codeRequired" | "emplacementForm.value" | "emplacementForm.type" | "emplacementForm.required" | "emplacementForm.metadata" | "emplacementForm.code" | "emplacementForm.aspects" | "emplacementForm.selectAspects" | "emplacementForm.noMetadata" | "emplacementForm.key" | "emplacementForm.mappingType" | "emplacementForm.valueOrFieldName" | "emplacementForm.validation" | "emplacementForm.optionalFieldTooltip" | "emplacementForm.codeHelp" | "emplacementForm.typeHelp" | "emplacementForm.editType" | "fieldForm.search.query.label" | "fieldForm.search.lang.label" | "fieldForm.search.valueField.label" | "fieldForm.search.testButton.label" | "fieldForm.search.testResults.title" | "fieldForm.search.testError.fetchError" | "fieldForm.search.testError.emptyQuery" | "fieldForm.search.testError.noResult" | "fieldForm.search.query" | "fieldForm.search.title" | "fieldForm.search.lang" | "fieldForm.search.valueField" | "fieldForm.search.testButton" | "fieldForm.search.testResults" | "fieldForm.search.testError" | "fieldForm.description.label" | "fieldForm.description.help" | "fieldForm.name.label" | "fieldForm.name.help" | "fieldForm.errors.nameAndDescriptionRequired" | "fieldForm.errors.fieldNameExists" | "fieldForm.defaultValue.label" | "fieldForm.defaultValue.help" | "fieldForm.optional.label" | "fieldForm.optional.help" | "fieldForm.dataType.label" | "fieldForm.dataType.placeholder" | "fieldForm.dataType.help" | "fieldForm.inputType.label" | "fieldForm.inputType.placeholder" | "fieldForm.inputType.help" | "fieldForm.stringConstraints.regex.label" | "fieldForm.stringConstraints.regex.help" | "fieldForm.stringConstraints.regexTester.label" | "fieldForm.stringConstraints.regexTester.placeholder" | "fieldForm.stringConstraints.title" | "fieldForm.stringConstraints.regex" | "fieldForm.stringConstraints.regexTester" | "fieldForm.numberConstraints.default.label" | "fieldForm.numberConstraints.min.label" | "fieldForm.numberConstraints.max.label" | "fieldForm.numberConstraints.default" | "fieldForm.numberConstraints.title" | "fieldForm.numberConstraints.min" | "fieldForm.numberConstraints.max" | "fieldForm.optionalSettings.title" | "fieldForm.prefix.label" | "fieldForm.prefix.help" | "fieldForm.suffix.label" | "fieldForm.suffix.help" | "fieldForm.parentConfig.metadata.label" | "fieldForm.parentConfig.metadata.help" | "fieldForm.parentConfig.metadata" | "fieldForm.parentConfig.title" | "fieldForm.search" | "fieldForm.description" | "fieldForm.name" | "fieldForm.errors" | "fieldForm.defaultValue" | "fieldForm.optional" | "fieldForm.dataType" | "fieldForm.inputType" | "fieldForm.stringConstraints" | "fieldForm.numberConstraints" | "fieldForm.optionalSettings" | "fieldForm.prefix" | "fieldForm.suffix" | "fieldForm.parentConfig" | "classificationPlan.buttons.cancel" | "classificationPlan.upload.headerCreate" | "classificationPlan.upload.headerImport" | "classificationPlan.buttons.next" | "classificationPlan.buttons.previous" | "classificationPlan.buttons.requalify" | "classificationPlan.buttons.viewSummary" | "classificationPlan.buttons.acceptAndCreate" | "classificationPlan.buttons.acceptAndImport" | "classificationPlan.buttons.depositing" | "classificationPlan.buttons.deposit" | "classificationPlan.toast.searchError" | "classificationPlan.toast.searchFieldFailed" | "classificationPlan.toast.loadPlansError" | "classificationPlan.toast.loadPlanContentError" | "classificationPlan.toast.workspaceError" | "classificationPlan.toast.requalifySuccess" | "classificationPlan.toast.requalifyError" | "classificationPlan.toast.depositSuccess" | "classificationPlan.toast.depositError" | "classificationPlan.toast.createSuccess" | "classificationPlan.toast.createError" | "classificationPlan.summary.document" | "classificationPlan.summary.metadata" | "classificationPlan.summary.verifyBeforeImport" | "classificationPlan.summary.verifyBeforeRequalify" | "classificationPlan.summary.verifyBeforeDeposit" | "classificationPlan.summary.generalInfo" | "classificationPlan.summary.metadataToSend" | "classificationPlan.summary.fileClassification" | "classificationPlan.summary.destinationFolder" | "classificationPlan.summary.movement" | "classificationPlan.steps.summary" | "classificationPlan.steps.step" | "classificationPlan.steps.selectPlan" | "classificationPlan.steps.selectNature" | "classificationPlan.steps.fillMetadata" | "classificationPlan.steps.fillMetadataAndFiles" | "classificationPlan.steps.selectFiles" | "classificationPlan.stepper.files" | "classificationPlan.stepper.metadata" | "classificationPlan.stepper.summary" | "classificationPlan.stepper.nature" | "classificationPlan.stepper.plan" | "classificationPlan.multiFile.status" | "classificationPlan.multiFile.category" | "classificationPlan.multiFile.allCategories" | "classificationPlan.multiFile.selectNature" | "classificationPlan.multiFile.noFiles" | "classificationPlan.multiFile.fileName" | "classificationPlan.multiFile.metadataBtn" | "classificationPlan.multiFile.complete" | "classificationPlan.multiFile.incomplete" | "classificationPlan.multiFile.selectCategory" | "classificationPlan.multiFile.selectCategoryFirst" | "classificationPlan.multiFile.searchNature" | "classificationPlan.multiFile.removeFile" | "classificationPlan.multiFile.metadataTitle" | "classificationPlan.multiFile.configSingle" | "classificationPlan.multiFile.configMultiple" | "classificationPlan.multiFile.summaryBefore" | "classificationPlan.multiFile.selectedCount" | "classificationPlan.multiFile.unassigned" | "classificationPlan.multiFile.filterAll" | "classificationPlan.multiFile.filterIncomplete" | "classificationPlan.multiFile.filterComplete" | "classificationPlan.multiFile.progressLabel" | "classificationPlan.multiFile.modeMultiCategory" | "classificationPlan.multiFile.modeMonoCategory" | "classificationPlan.multiFile.bulkSelectNature" | "classificationPlan.multiFile.layoutRow" | "classificationPlan.multiFile.layoutCol" | "classificationPlan.multiFile.metadataFilled" | "classificationPlan.requalify.title" | "classificationPlan.requalify.summaryFrom" | "classificationPlan.requalify.summaryTo" | "classificationPlan.files" | "classificationPlan.upload" | "classificationPlan.buttons" | "classificationPlan.defaultValue" | "classificationPlan.searchPlaceholder" | "classificationPlan.toast" | "classificationPlan.summary" | "classificationPlan.code" | "classificationPlan.nature" | "classificationPlan.category" | "classificationPlan.min" | "classificationPlan.max" | "classificationPlan.allCategories" | "classificationPlan.noCategory" | "classificationPlan.filterByCategory" | "classificationPlan.steps" | "classificationPlan.stepper" | "classificationPlan.plan" | "classificationPlan.natureColumn" | "classificationPlan.choosePlan" | "classificationPlan.planAriaLabel" | "classificationPlan.noPlanFound" | "classificationPlan.searchNaturePlaceholder" | "classificationPlan.noNature" | "classificationPlan.destinationCurrent" | "classificationPlan.destinationLabel" | "classificationPlan.chooseFiles" | "classificationPlan.fileToCreate" | "classificationPlan.filesToImport" | "classificationPlan.na" | "classificationPlan.constraint" | "classificationPlan.parentFieldNotFound" | "classificationPlan.validationRegexError" | "classificationPlan.multiFile" | "classificationPlan.requalify" | "chat.title" | "chat.reconnecting" | "chat.connecting" | "chat.connectionError" | "chat.notConfigured" | "chat.configureInProfile" | "chat.retry" | "chat.searchRooms" | "chat.noRooms" | "chat.noMessages" | "chat.loadMore" | "chat.typeMessage" | "chat.send" | "chat.attachFile" | "chat.attachment" | "chat.unknownUser" | "chat.userTyping" | "chat.usersTyping" | "chat.multipleUsersTyping" | "chat.sendError" | "chat.uploadError" | "chat.openChat" | "chat.closeChat" | "chat.newMessages" | "workflow.selectedDocuments" | "selection.clear" | "selection.selectAll" | "selection.clearSelection" | "selection.count" | "selection.mobileCount" | "selection.selectAllShort" | "sidebarMenu.profile" | "sidebarMenu.portal" | "sidebarMenu.logout" | "tasks.approve" | "tasks.reject" | "rechercheAvancee.addFavorite" | "rechercheAvancee.removeFavorite", "facets.categories.modified_date" | "delete" | "filter" | "search" | "pdf" | "reload" | "cancel" | "error" | "dossier" | "pagination" | "taskNotification" | "restrictedPermissions" | "nothingTitle" | "nothingText" | "goHome" | "fichier" | "save" | "next" | "previous" | "selectFolder" | "dropFolder" | "uploadUnknownError" | "alfrescoError" | "fichier_image" | "fichier_video" | "fichier_pdf" | "fichier_eml" | "fichier_texte" | "fichier_tableur" | "fichier_dessin" | "fichier_presentation" | "fichier_markdown" | "fichier_json" | "fichier_xml" | "fichier_html" | "fichier_css" | "fichier_csv" | "fichier_javascript" | "fichier_sql" | "fichier_shell" | "fichier_yaml" | "fichier_python" | "fichier_typescript" | "fichier_php" | "fichier_java" | "fichier_code" | "fichier_config" | "fichier_log" | "espace" | "menu" | "tasks" | "sharelink" | "cannotCopyHere" | "cannotMoveHere" | "spaces" | "userHomes" | "yes" | "no" | "howMuchResult" | "howMuchSelected" | "selectAllElement" | "selectAllElementMoreThan" | "deleteSelection" | "dropFileFolders" | "currentFolder" | "canceledImport" | "lock" | "membersPopup" | "members" | "groups" | "role" | "success" | "close" | "config" | "vuesFavorites" | "vuesUtilisateurs" | "rechercheAvancee" | "pdfTools" | "editor" | "collab" | "diffViewer" | "sendingMail" | "column" | "facets" | "adminViewList" | "adminClassificationLauncher" | "adminClassificationPage" | "natureForm" | "emplacementForm" | "fieldForm" | "classificationPlan" | "chat" | "workflow" | "fileList" | "previewPanel" | "selectAll" | "deselectAll" | "layoutSelector" | "layoutList" | "layoutGrid" | "layoutTable" | "edit" | "open" | "download" | "restore" | "publish" | "back" | "minimize" | "duplicate" | "moveUp" | "moveDown" | "sortAscending" | "sortDescending" | "moreActions" | "add/removeFavorite" | "modify" | "home" | "selection" | "sidebarMenu" | "filter.clear" | "filter.search" | "filter.toggle" | "filter.all" | "filter.apply" | "filter.noOptions" | "filter.contains" | "filter.notContains" | "filter.equals" | "filter.clearAll" | "pdf.changePage" | "pdf.rotation" | "pdf.saveForm" | "pdf.previousPage" | "pdf.nextPage" | "pdf.cancelForm" | "pdf.on" | "pdf.and" | "pdf.scrolling" | "pdf.pageToPage" | "pdf.rotationRigth" | "pdf.rotationLeft" | "pdf.zoom" | "pdf.dezoom" | "pdf.adaptToPage" | "pdf.adaptToWidth" | "pdf.changeFile" | "pdf.currentPagination" | "pdf.showAllPages" | "pdf.showPageByPage" | "pdf.formFieldsInfo" | "pdf.formFieldsInfoTitle" | "pdf.formFieldName" | "pdf.formFieldType" | "pdf.formFieldValue" | "pagination.rowsPerPage" | "taskNotification.pendingTasks" | "menu.espaces" | "menu.favoris" | "menu.recherche" | "menu.vues" | "menu.userHome" | "menu.configuration" | "tasks.error.createProcess" | "tasks.error.getProcesses" | "tasks.error.getProcess" | "tasks.error.getFinishedProcess" | "tasks.error.addProcessItems" | "tasks.error.getProcessItems" | "tasks.error.getProcessVariables" | "tasks.error.getProcessDefinition" | "tasks.error.cancelWorkflow" | "tasks.error.openProcessDiagram" | "tasks.error.getProcessHistoryTasks" | "tasks.error.listTasks" | "tasks.error.listFinishedTasks" | "tasks.error.getTask" | "tasks.error.endTask" | "tasks.error.getTaskVariables" | "tasks.error.postTaskVariables" | "tasks.error.updateTaskVariables" | "tasks.error.getTaskItem" | "tasks.priority.priority" | "tasks.priority.low" | "tasks.priority.medium" | "tasks.priority.high" | "tasks.priority.notFound" | "tasks.statusLabel.completed" | "tasks.statusLabel.notYetStarted" | "tasks.statusLabel.inProgress" | "tasks.statusLabel.onHold" | "tasks.statusLabel.cancelled" | "tasks.error" | "tasks.none" | "tasks.priority" | "tasks.approved" | "tasks.rejected" | "tasks.reviewTask" | "tasks.adhocTask" | "tasks.verifyTaskDone" | "tasks.unknownTask" | "tasks.statusLabel" | "sharelink.shareLinkOf" | "sharelink.linkToShare" | "sharelink.shareLinkSettings" | "sharelink.createLinkTooltip" | "sharelink.copyLinkTooltip" | "sharelink.deleteLinkTooltip" | "sharelink.addExpirationDateLinkTooltip" | "sharelink.deleteExpirationDateLinkTooltip" | "sharelink.createLinkToastSummary" | "sharelink.createLinkToastDetail" | "sharelink.createLinkErrorSummary" | "sharelink.deleteLinkToastSummary" | "sharelink.deleteLinkToastDetail" | "sharelink.deleteLinkErrorSummary" | "sharelink.copyLinkToastSummary" | "sharelink.copyLinkErrorSummary" | "sharelink.copyLinkToastDetail" | "sharelink.copyLinkErrorDetail" | "sharelink.updateLinkDateSummary" | "sharelink.updateLinkDateDetail" | "sharelink.updateLinkDateErrorSummary" | "sharelink.expirationDate" | "sharelink.placeholder" | "lock.nodeLock" | "lock.readOnlyLock" | "lock.writeLock" | "membersPopup.goToSiteMemberPage" | "members.add" | "members.search" | "members.members" | "members.role" | "members.permissions" | "members.management" | "members.youAre" | "members.ofThisWorkspace" | "members.select" | "members.errorAdd" | "members.successAdd" | "members.successDelete" | "members.successChangeRole" | "members.nbAccess" | "members.restrictPermissions" | "members.restorePermissions" | "members.successRestrictPermissions" | "members.successRestorePermissions" | "members.fromGroup" | "members.viewUserProfile" | "role.Manager" | "role.Collaborator" | "role.Consumer" | "role.Contributor" | "role.SiteConsumer" | "role.SiteCollaborator" | "role.SiteManager" | "config.groups.search" | "config.groups.pagination" | "config.groups.display" | "config.groups.matomo" | "config.groups.sentry" | "config.groups.metadata" | "config.groups.security" | "config.groups.other" | "config.tabs.structuredEdit" | "config.tabs.rawEdit" | "config.tabs.versions" | "config.table.keyHeader" | "config.table.valueHeader" | "config.table.typeHeader" | "config.buttons.add" | "config.buttons.cancel" | "config.buttons.refresh" | "config.buttons.addNew" | "config.buttons.saveChanges" | "config.buttons.define" | "config.buttons.undefine" | "config.buttons.expand" | "config.buttons.collapse" | "config.splitView.filterPlaceholder" | "config.splitView.selectConfig" | "config.splitView.noResults" | "config.splitView.defaultValue" | "config.dialog.addTitle" | "config.dialog.keyLabel" | "config.dialog.valueLabel" | "config.dialog.typeLabel" | "config.raw.uploadDescription" | "config.raw.uploadButton" | "config.raw.uploadWarning" | "config.toasts.saveSuccess" | "config.toasts.fetchError" | "config.toasts.saveError" | "config.toasts.errorDetail" | "config.errors.keyRequired" | "config.errors.keyDuplicate" | "config.errors.invalidNumber" | "config.errors.invalidBoolean" | "config.errors.invalidJson" | "config.errors.typeMismatch" | "config.errors.invalidJsonFile" | "config.versionViewer.error" | "config.versionViewer.success" | "config.versionViewer.listTitle" | "config.versionViewer.title" | "config.versionViewer.selectPrompt" | "config.versionViewer.loadError" | "config.versionViewer.genericError" | "config.versionViewer.cannotRevertLatest" | "config.versionViewer.restoredVersionComment" | "config.arrayEditor.addItem" | "config.arrayEditor.reorder" | "config.types.string" | "config.types.number" | "config.types.boolean" | "config.types.object" | "config.types.array" | "config.groups" | "config.pageTitle" | "config.pageDescription" | "config.tabs" | "config.table" | "config.buttons" | "config.notDefined" | "config.splitView" | "config.dialog" | "config.raw" | "config.toasts" | "config.errors" | "config.versionViewer" | "config.arrayEditor" | "config.types" | "vuesFavorites.title" | "vuesFavorites.loadedViewMessage" | "vuesFavorites.noSavedViews" | "vuesFavorites.personalViews" | "vuesFavorites.selectPersonalView" | "vuesFavorites.globalViews" | "vuesFavorites.selectGlobalView" | "vuesFavorites.filterSavedViews" | "vuesUtilisateurs.saveViewPopup.title" | "vuesUtilisateurs.saveViewPopup.nameLabel" | "vuesUtilisateurs.saveViewPopup.nameRequired" | "vuesUtilisateurs.saveViewPopup.descriptionLabel" | "vuesUtilisateurs.saveViewPopup.detailsLabel" | "vuesUtilisateurs.saveViewPopup.scopeLabel" | "vuesUtilisateurs.saveViewPopup.scopeDescription" | "vuesUtilisateurs.saveViewPopup.scopeUser" | "vuesUtilisateurs.saveViewPopup.scopeGlobal" | "vuesUtilisateurs.saveViewPopup.fileIdLabel" | "vuesUtilisateurs.saveViewPopup.fileIdDescription" | "vuesUtilisateurs.saveViewPopup.fileIdPlaceholder" | "vuesUtilisateurs.saveViewPopup.personalDescription" | "vuesUtilisateurs.modifyViewPopup.title" | "vuesUtilisateurs.saveView" | "vuesUtilisateurs.modifyView" | "vuesUtilisateurs.cancelButton" | "vuesUtilisateurs.saveViewPopup" | "vuesUtilisateurs.modifyViewPopup" | "rechercheAvancee.savedViewError.idAlreadyExists" | "rechercheAvancee.savedViewError.nameAlreadyExists" | "rechercheAvancee.savedViewError.globalNotFound" | "rechercheAvancee.savedViewError.personnalNotFound" | "rechercheAvancee.savedViewError.userNotFound" | "rechercheAvancee.savedViewError.userNotFoundForUpdate" | "rechercheAvancee.savedViewError.userNotFoundForDelete" | "rechercheAvancee.savedViewError.configFolderNotFound" | "rechercheAvancee.savedViewError.configFileNotFound" | "rechercheAvancee.contains" | "rechercheAvancee.noResults" | "rechercheAvancee.valueLabel" | "rechercheAvancee.loadedViewMessage" | "rechercheAvancee.noSavedViews" | "rechercheAvancee.filterSavedViews" | "rechercheAvancee.cancelButton" | "rechercheAvancee.sitePlaceholder" | "rechercheAvancee.folderPlaceholder" | "rechercheAvancee.advancedSearch" | "rechercheAvancee.queryBuilder" | "rechercheAvancee.addCriterionPopupTitle" | "rechercheAvancee.propertyLabel" | "rechercheAvancee.propertyPlaceholder" | "rechercheAvancee.searchProperty" | "rechercheAvancee.propertyName" | "rechercheAvancee.propertyId" | "rechercheAvancee.propertyDescription" | "rechercheAvancee.propertyAspect" | "rechercheAvancee.conditionLabel" | "rechercheAvancee.operatorLabel" | "rechercheAvancee.operatorPlaceholder" | "rechercheAvancee.addButton" | "rechercheAvancee.mustContain" | "rechercheAvancee.mustNotContain" | "rechercheAvancee.exact" | "rechercheAvancee.isDate" | "rechercheAvancee.isDateRange" | "rechercheAvancee.isNumber" | "rechercheAvancee.isNumberRange" | "rechercheAvancee.is" | "rechercheAvancee.locationLabel" | "rechercheAvancee.locationSite" | "rechercheAvancee.locationPath" | "rechercheAvancee.locationNone" | "rechercheAvancee.locationValuePlaceholder" | "rechercheAvancee.criteriaTitle" | "rechercheAvancee.noCriteria" | "rechercheAvancee.addCriterionButton" | "rechercheAvancee.advancedSearchActive" | "rechercheAvancee.savedViews" | "rechercheAvancee.addsSavedViewSuccess" | "rechercheAvancee.modifySavedViewSuccess" | "rechercheAvancee.updateSavedView" | "rechercheAvancee.savedViewError" | "rechercheAvancee.noFilterResults" | "rechercheAvancee.selectPersonalSearch" | "rechercheAvancee.selectGlobalSearch" | "rechercheAvancee.favorite" | "rechercheAvancee.closeView" | "rechercheAvancee.activeView" | "rechercheAvancee.locationsTitle" | "rechercheAvancee.locationsHint" | "rechercheAvancee.noLocations" | "rechercheAvancee.addLocationButton" | "rechercheAvancee.addLocationTitle" | "rechercheAvancee.addLocationConfirm" | "rechercheAvancee.removeLocation" | "rechercheAvancee.includePrefix" | "rechercheAvancee.excludePrefix" | "rechercheAvancee.locationTypeLabel" | "rechercheAvancee.saveViewAsNew" | "rechercheAvancee.saveViewModifications" | "rechercheAvancee.deleteView" | "rechercheAvancee.deleteViewSuccess" | "rechercheAvancee.confirmDeleteTitle" | "rechercheAvancee.confirmDelete" | "rechercheAvancee.showMore" | "rechercheAvancee.addAsIncludeLocation" | "rechercheAvancee.addAsExcludeLocation" | "rechercheAvancee.addAsIncludeFolder" | "rechercheAvancee.addAsExcludeFolder" | "rechercheAvancee.addAsIncludeSite" | "rechercheAvancee.addAsExcludeSite" | "rechercheAvancee.editCriterionPopupTitle" | "rechercheAvancee.updateButton" | "rechercheAvancee.addGroupButton" | "rechercheAvancee.addOrGroup" | "rechercheAvancee.removeGroup" | "rechercheAvancee.operatorAnd" | "rechercheAvancee.operatorOr" | "rechercheAvancee.emptyGroup" | "pdfTools.common.clear" | "pdfTools.common.cancel" | "pdfTools.common.error" | "pdfTools.common.save" | "pdfTools.common.success" | "pdfTools.common.close" | "pdfTools.common.warning" | "pdfTools.common.apply" | "pdfTools.common.select" | "pdfTools.common.deleted" | "pdfTools.common.use" | "pdfTools.common.insert" | "pdfTools.sidebar.actions" | "pdfTools.sidebar.saveAs" | "pdfTools.sidebar.saveNewVersion" | "pdfTools.sidebar.extractPages" | "pdfTools.sidebar.extractAndSave" | "pdfTools.sidebar.deletePages" | "pdfTools.sidebar.deleteSelectedPages" | "pdfTools.sidebar.insertPdf" | "pdfTools.sidebar.fromComputer" | "pdfTools.sidebar.fromPristy" | "pdfTools.sidebar.addWatermark" | "pdfTools.sidebar.watermarkTextPlaceholder" | "pdfTools.sidebar.angle" | "pdfTools.sidebar.repetitions" | "pdfTools.sidebar.addWatermarkButton" | "pdfTools.pagePreview.title" | "pdfTools.pagePreview.openPagePreview" | "pdfTools.pageEditor.tools.actions" | "pdfTools.pageEditor.tools.size" | "pdfTools.pageEditor.tools.highlight" | "pdfTools.pageEditor.tools.text" | "pdfTools.pageEditor.tools.select" | "pdfTools.pageEditor.tools.redact" | "pdfTools.pageEditor.tools.comment" | "pdfTools.pageEditor.tools.image" | "pdfTools.pageEditor.tools.signature" | "pdfTools.pageEditor.tools.font" | "pdfTools.pageEditor.tools.color" | "pdfTools.pageEditor.cancel" | "pdfTools.pageEditor.close" | "pdfTools.pageEditor.apply" | "pdfTools.pageEditor.title" | "pdfTools.pageEditor.fit" | "pdfTools.pageEditor.tools" | "pdfTools.pageEditor.commentPrompt" | "pdfTools.pageEditor.addTextPrompt" | "pdfTools.pageEditor.footerHint" | "pdfTools.signaturePad.clear" | "pdfTools.signaturePad.title" | "pdfTools.signaturePad.use" | "pdfTools.saveAs.title" | "pdfTools.saveAs.filenameLabel" | "pdfTools.saveAs.defaultFilename" | "pdfTools.saveAs.folderLabel" | "pdfTools.saveAs.browse" | "pdfTools.saveAs.conflictError" | "pdfTools.insertFromAlfresco.search" | "pdfTools.insertFromAlfresco.cancel" | "pdfTools.insertFromAlfresco.path" | "pdfTools.insertFromAlfresco.loading" | "pdfTools.insertFromAlfresco.select" | "pdfTools.insertFromAlfresco.title" | "pdfTools.insertFromAlfresco.insert" | "pdfTools.insertFromAlfresco.browse" | "pdfTools.insertFromAlfresco.searchPlaceholder" | "pdfTools.insertFromAlfresco.searching" | "pdfTools.insertFromAlfresco.noPdfFound" | "pdfTools.insertFromAlfresco.favorites" | "pdfTools.insertFromAlfresco.noPdfFavorite" | "pdfTools.insertFromAlfresco.selectPdfToPreview" | "pdfTools.insertFromAlfresco.loadingPreview" | "pdfTools.insertFromAlfresco.linkOrId" | "pdfTools.insertFromAlfresco.alfrescoIdUrl" | "pdfTools.insertFromAlfresco.alfrescoIdUrlHint" | "pdfTools.insertFromAlfresco.selected" | "pdfTools.insertFromAlfresco.invalidInput" | "pdfTools.insertFromAlfresco.folderSelectError" | "pdfTools.insertFromAlfresco.fileTypeNotAllowedError" | "pdfTools.loading" | "pdfTools.common" | "pdfTools.saveSuccess" | "pdfTools.saveError" | "pdfTools.title" | "pdfTools.loadError" | "pdfTools.reorderError" | "pdfTools.rotateError" | "pdfTools.deleteAllPagesWarning" | "pdfTools.pagesDeletedSuccess" | "pdfTools.deletePagesError" | "pdfTools.insertFromFileSuccess" | "pdfTools.insertFromPristySuccess" | "pdfTools.insertError" | "pdfTools.insertFromPristyError" | "pdfTools.invalidNodeForInsert" | "pdfTools.watermarkError" | "pdfTools.saveAsError" | "pdfTools.noContentToSave" | "pdfTools.fileCreatedSuccess" | "pdfTools.redactWarning" | "pdfTools.redactFlattenConfirm" | "pdfTools.imagePreviewUnavailable" | "pdfTools.pdfRenderCanvasNotFound" | "pdfTools.sidebar" | "pdfTools.pagePreview" | "pdfTools.pageEditor" | "pdfTools.signaturePad" | "pdfTools.saveAs" | "pdfTools.insertFromAlfresco" | "editor.viewMode.split" | "editor.viewMode.editorOnly" | "editor.viewMode.previewOnly" | "editor.edit" | "editor.saveSuccess" | "editor.loadError" | "editor.cancelEdit" | "editor.closeEdit" | "editor.alreadyUpToDate" | "editor.refreshError" | "editor.unsavedChanges" | "editor.confirmationHeader" | "editor.lineWrap" | "editor.viewMode" | "collab.enable" | "collab.disable" | "collab.connected" | "collab.disconnected" | "collab.reconnecting" | "collab.peers" | "collab.initError" | "collab.sessionFull" | "collab.locked" | "collab.offline" | "collab.participantsTooltip" | "collab.editorsTooltip" | "collab.observersTooltip" | "diffViewer.errors.loadError" | "diffViewer.revertVersion.error" | "diffViewer.revertVersion.success" | "diffViewer.revertVersion.successDetail" | "diffViewer.errors" | "diffViewer.restoredVersionComment" | "diffViewer.compareTitle" | "diffViewer.version" | "diffViewer.currentVersion" | "diffViewer.selectVersionA" | "diffViewer.selectVersionB" | "diffViewer.revertToThisVersion" | "diffViewer.revertVersion" | "sendingMail.errors.errorEmptyEmail" | "sendingMail.errors.errorValidEmail" | "sendingMail.errors.errorEmptySubject" | "sendingMail.errors.errorSubjectTooShort" | "sendingMail.errors.errorEmptyMessage" | "sendingMail.errors.errorSendMail" | "sendingMail.popup.defaultSubject" | "sendingMail.popup.defaultMessage" | "sendingMail.errors" | "sendingMail.addCc" | "sendingMail.addCci" | "sendingMail.popup" | "column.actions" | "column.size" | "column.type" | "column.name" | "column.toggle" | "column.createdAt" | "column.createdBy" | "column.mimeType" | "column.modifiedAt" | "column.modifiedBy" | "column.thumbnail" | "column.customize" | "facets.categories" | "adminViewList.deleteView.toast.error.summary" | "adminViewList.deleteView.toast.error.detail" | "adminViewList.deleteView.toast.success.summary" | "adminViewList.deleteView.toast.success.detail" | "adminViewList.deleteView.toast.successMultiple.detail" | "adminViewList.deleteView.toast.errorMultiple.detail" | "adminViewList.deleteView.toast.error" | "adminViewList.deleteView.toast.success" | "adminViewList.deleteView.toast.successMultiple" | "adminViewList.deleteView.toast.errorMultiple" | "adminViewList.deleteView.button" | "adminViewList.deleteView.toast" | "adminViewList.deleteView.confirmHeader" | "adminViewList.deleteView.confirmMessage" | "adminViewList.deleteView.confirmMessageMultiple" | "adminViewList.existingViews.download" | "adminViewList.existingViews.loading" | "adminViewList.existingViews.title" | "adminViewList.existingViews.noViewsFound" | "adminViewList.importView.toast.error.summary" | "adminViewList.importView.toast.error.detail" | "adminViewList.importView.toast.success.summary" | "adminViewList.importView.toast.success.detail" | "adminViewList.importView.toast.error" | "adminViewList.importView.toast.success" | "adminViewList.importView.toast.noJsonFiles.summary" | "adminViewList.importView.toast.noJsonFiles.detail" | "adminViewList.importView.toast.noJsonFiles" | "adminViewList.importView.button" | "adminViewList.importView.toast" | "adminViewList.exportAll.toast.error.summary" | "adminViewList.exportAll.toast.error.detail" | "adminViewList.exportAll.toast.success.summary" | "adminViewList.exportAll.toast.success.detail" | "adminViewList.exportAll.toast.error" | "adminViewList.exportAll.toast.success" | "adminViewList.exportAll.button" | "adminViewList.exportAll.toast" | "adminViewList.dropZone.text" | "adminViewList.dropZone.hint" | "adminViewList.selectionBar.selectAll" | "adminViewList.selectionBar.selected" | "adminViewList.selectionBar.clearSelection" | "adminViewList.selectionBar.downloadAll" | "adminViewList.editView.toast.error.summary" | "adminViewList.editView.toast.error.detail" | "adminViewList.editView.toast.success.summary" | "adminViewList.editView.toast.success.detail" | "adminViewList.editView.toast.error" | "adminViewList.editView.toast.success" | "adminViewList.editView.button" | "adminViewList.editView.description" | "adminViewList.editView.name" | "adminViewList.editView.cancel" | "adminViewList.editView.save" | "adminViewList.editView.title" | "adminViewList.editView.toast" | "adminViewList.editView.namePlaceholder" | "adminViewList.editView.descriptionPlaceholder" | "adminViewList.toast.downloadError.summary" | "adminViewList.toast.downloadError.detail" | "adminViewList.toast.downloadError" | "adminViewList.deleteView" | "adminViewList.existingViews" | "adminViewList.importView" | "adminViewList.exportAll" | "adminViewList.dropZone" | "adminViewList.selectionBar" | "adminViewList.editView" | "adminViewList.toast" | "adminClassificationLauncher.selectionBar.selectAll" | "adminClassificationLauncher.selectionBar.selected" | "adminClassificationLauncher.selectionBar.clearSelection" | "adminClassificationLauncher.selectionBar.downloadAll" | "adminClassificationLauncher.selectionBar.openAll" | "adminClassificationLauncher.toast.listError.summary" | "adminClassificationLauncher.toast.listError.detail" | "adminClassificationLauncher.toast.invalidName.summary" | "adminClassificationLauncher.toast.invalidName.detail" | "adminClassificationLauncher.toast.listError" | "adminClassificationLauncher.toast.invalidName" | "adminClassificationLauncher.existingPlans.download" | "adminClassificationLauncher.existingPlans.loading" | "adminClassificationLauncher.existingPlans.title" | "adminClassificationLauncher.existingPlans.noPlansFound" | "adminClassificationLauncher.createPlan.button" | "adminClassificationLauncher.createPlan.description" | "adminClassificationLauncher.createPlan.cancel" | "adminClassificationLauncher.createPlan.placeholder" | "adminClassificationLauncher.createPlan.title" | "adminClassificationLauncher.deletePlan.toast.error.summary" | "adminClassificationLauncher.deletePlan.toast.error.detail" | "adminClassificationLauncher.deletePlan.toast.success.summary" | "adminClassificationLauncher.deletePlan.toast.success.detail" | "adminClassificationLauncher.deletePlan.toast.successMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.errorMultiple.detail" | "adminClassificationLauncher.deletePlan.toast.error" | "adminClassificationLauncher.deletePlan.toast.success" | "adminClassificationLauncher.deletePlan.toast.successMultiple" | "adminClassificationLauncher.deletePlan.toast.errorMultiple" | "adminClassificationLauncher.deletePlan.button" | "adminClassificationLauncher.deletePlan.toast" | "adminClassificationLauncher.deletePlan.confirmHeader" | "adminClassificationLauncher.deletePlan.confirmMessage" | "adminClassificationLauncher.deletePlan.confirmMessageMultiple" | "adminClassificationLauncher.importPlan.toast.success.summary" | "adminClassificationLauncher.importPlan.toast.success.detail" | "adminClassificationLauncher.importPlan.toast.success" | "adminClassificationLauncher.importPlan.toast.saveError.summary" | "adminClassificationLauncher.importPlan.toast.saveError.detail" | "adminClassificationLauncher.importPlan.toast.parseError.summary" | "adminClassificationLauncher.importPlan.toast.parseError.detail" | "adminClassificationLauncher.importPlan.toast.saveError" | "adminClassificationLauncher.importPlan.toast.parseError" | "adminClassificationLauncher.importPlan.button" | "adminClassificationLauncher.importPlan.toast" | "adminClassificationLauncher.importPlan.invalidStructure" | "adminClassificationLauncher.title" | "adminClassificationLauncher.selectionBar" | "adminClassificationLauncher.toast" | "adminClassificationLauncher.existingPlans" | "adminClassificationLauncher.createPlan" | "adminClassificationLauncher.deletePlan" | "adminClassificationLauncher.importPlan" | "adminClassificationPage.buttons.cancel" | "adminClassificationPage.toast.saveError" | "adminClassificationPage.tabs.categories" | "adminClassificationPage.tabs.natures" | "adminClassificationPage.tabs.fields" | "adminClassificationPage.tabs.emplacements" | "adminClassificationPage.buttons.reload" | "adminClassificationPage.buttons.save" | "adminClassificationPage.buttons.newNature" | "adminClassificationPage.buttons.newField" | "adminClassificationPage.buttons.newEmplacement" | "adminClassificationPage.buttons.newCategory" | "adminClassificationPage.buttons.export" | "adminClassificationPage.buttons.import" | "adminClassificationPage.buttons.createFile" | "adminClassificationPage.buttons.saveFile" | "adminClassificationPage.dialog.createNature" | "adminClassificationPage.dialog.editNature" | "adminClassificationPage.dialog.duplicateNature" | "adminClassificationPage.dialog.createField" | "adminClassificationPage.dialog.editField" | "adminClassificationPage.dialog.duplicateField" | "adminClassificationPage.dialog.createEmplacement" | "adminClassificationPage.dialog.editEmplacement" | "adminClassificationPage.dialog.createCategory" | "adminClassificationPage.dialog.editCategory" | "adminClassificationPage.toast.saveSuccess" | "adminClassificationPage.toast.loadError" | "adminClassificationPage.toast.newPlan" | "adminClassificationPage.toast.fileNotExist" | "adminClassificationPage.toast.loadErrorDetail" | "adminClassificationPage.toast.exportSuccess" | "adminClassificationPage.toast.exportSuccessDetail" | "adminClassificationPage.toast.importSuccess" | "adminClassificationPage.toast.importSuccessDetail" | "adminClassificationPage.toast.importError" | "adminClassificationPage.toast.importErrorDetail" | "adminClassificationPage.toast.invalidFileStructure" | "adminClassificationPage.toast.fieldCreated" | "adminClassificationPage.toast.fieldAutoCreated" | "adminClassificationPage.toast.autoCreatedForNature" | "adminClassificationPage.toast.autoCreatedForEmplacement" | "adminClassificationPage.toast.deleteImpossible" | "adminClassificationPage.toast.fieldUsed" | "adminClassificationPage.toast.emplacementUsed" | "adminClassificationPage.toast.confirmed" | "adminClassificationPage.toast.itemDeleted" | "adminClassificationPage.toast.invalidFilename" | "adminClassificationPage.toast.filenameMustStartWithPlan" | "adminClassificationPage.columns.id" | "adminClassificationPage.columns.actions" | "adminClassificationPage.columns.label" | "adminClassificationPage.columns.icon" | "adminClassificationPage.columns.description" | "adminClassificationPage.columns.type" | "adminClassificationPage.columns.name" | "adminClassificationPage.columns.display" | "adminClassificationPage.columns.title" | "adminClassificationPage.columns.categories" | "adminClassificationPage.columns.emplacement" | "adminClassificationPage.columns.code" | "adminClassificationPage.columns.views" | "adminClassificationPage.columns.optional" | "adminClassificationPage.columns.status" | "adminClassificationPage.confirm.field" | "adminClassificationPage.confirm.emplacement" | "adminClassificationPage.confirm.deleteMessage" | "adminClassificationPage.confirm.deleteHeader" | "adminClassificationPage.confirm.nature" | "adminClassificationPage.confirm.category" | "adminClassificationPage.viewSelector.search" | "adminClassificationPage.viewSelector.noResults" | "adminClassificationPage.viewSelector.title" | "adminClassificationPage.viewSelector.selected" | "adminClassificationPage.viewSelector.available" | "adminClassificationPage.viewSelector.searchResults" | "adminClassificationPage.viewSelector.noViews" | "adminClassificationPage.viewSelector.nViews" | "adminClassificationPage.viewSelector.validate" | "adminClassificationPage.loading" | "adminClassificationPage.tabs" | "adminClassificationPage.buttons" | "adminClassificationPage.dialog" | "adminClassificationPage.toast" | "adminClassificationPage.titleNew" | "adminClassificationPage.titleAdmin" | "adminClassificationPage.file" | "adminClassificationPage.columns" | "adminClassificationPage.confirm" | "adminClassificationPage.viewSelector" | "natureForm.validation.nameAndCodeRequired" | "natureForm.validation.codeAlreadyExists" | "natureForm.value" | "natureForm.icon" | "natureForm.required" | "natureForm.name" | "natureForm.metadata" | "natureForm.categories" | "natureForm.emplacement" | "natureForm.code" | "natureForm.documentType" | "natureForm.aspects" | "natureForm.selectAspects" | "natureForm.chooseIcon" | "natureForm.selectPath" | "natureForm.calculatedPath" | "natureForm.noMetadata" | "natureForm.key" | "natureForm.mappingType" | "natureForm.valueOrFieldName" | "natureForm.selectCategories" | "natureForm.validation" | "natureForm.optionalFieldTooltip" | "emplacementForm.validation.codeRequired" | "emplacementForm.value" | "emplacementForm.type" | "emplacementForm.required" | "emplacementForm.metadata" | "emplacementForm.code" | "emplacementForm.aspects" | "emplacementForm.selectAspects" | "emplacementForm.noMetadata" | "emplacementForm.key" | "emplacementForm.mappingType" | "emplacementForm.valueOrFieldName" | "emplacementForm.validation" | "emplacementForm.optionalFieldTooltip" | "emplacementForm.codeHelp" | "emplacementForm.typeHelp" | "emplacementForm.editType" | "fieldForm.search.query.label" | "fieldForm.search.lang.label" | "fieldForm.search.valueField.label" | "fieldForm.search.testButton.label" | "fieldForm.search.testResults.title" | "fieldForm.search.testError.fetchError" | "fieldForm.search.testError.emptyQuery" | "fieldForm.search.testError.noResult" | "fieldForm.search.query" | "fieldForm.search.title" | "fieldForm.search.lang" | "fieldForm.search.valueField" | "fieldForm.search.testButton" | "fieldForm.search.testResults" | "fieldForm.search.testError" | "fieldForm.description.label" | "fieldForm.description.help" | "fieldForm.name.label" | "fieldForm.name.help" | "fieldForm.errors.nameAndDescriptionRequired" | "fieldForm.errors.fieldNameExists" | "fieldForm.defaultValue.label" | "fieldForm.defaultValue.help" | "fieldForm.optional.label" | "fieldForm.optional.help" | "fieldForm.dataType.label" | "fieldForm.dataType.placeholder" | "fieldForm.dataType.help" | "fieldForm.inputType.label" | "fieldForm.inputType.placeholder" | "fieldForm.inputType.help" | "fieldForm.stringConstraints.regex.label" | "fieldForm.stringConstraints.regex.help" | "fieldForm.stringConstraints.regexTester.label" | "fieldForm.stringConstraints.regexTester.placeholder" | "fieldForm.stringConstraints.title" | "fieldForm.stringConstraints.regex" | "fieldForm.stringConstraints.regexTester" | "fieldForm.numberConstraints.default.label" | "fieldForm.numberConstraints.min.label" | "fieldForm.numberConstraints.max.label" | "fieldForm.numberConstraints.default" | "fieldForm.numberConstraints.title" | "fieldForm.numberConstraints.min" | "fieldForm.numberConstraints.max" | "fieldForm.optionalSettings.title" | "fieldForm.prefix.label" | "fieldForm.prefix.help" | "fieldForm.suffix.label" | "fieldForm.suffix.help" | "fieldForm.parentConfig.metadata.label" | "fieldForm.parentConfig.metadata.help" | "fieldForm.parentConfig.metadata" | "fieldForm.parentConfig.title" | "fieldForm.search" | "fieldForm.description" | "fieldForm.name" | "fieldForm.errors" | "fieldForm.defaultValue" | "fieldForm.optional" | "fieldForm.dataType" | "fieldForm.inputType" | "fieldForm.stringConstraints" | "fieldForm.numberConstraints" | "fieldForm.optionalSettings" | "fieldForm.prefix" | "fieldForm.suffix" | "fieldForm.parentConfig" | "classificationPlan.buttons.cancel" | "classificationPlan.upload.headerCreate" | "classificationPlan.upload.headerImport" | "classificationPlan.buttons.next" | "classificationPlan.buttons.previous" | "classificationPlan.buttons.requalify" | "classificationPlan.buttons.viewSummary" | "classificationPlan.buttons.acceptAndCreate" | "classificationPlan.buttons.acceptAndImport" | "classificationPlan.buttons.depositing" | "classificationPlan.buttons.deposit" | "classificationPlan.toast.searchError" | "classificationPlan.toast.searchFieldFailed" | "classificationPlan.toast.loadPlansError" | "classificationPlan.toast.loadPlanContentError" | "classificationPlan.toast.workspaceError" | "classificationPlan.toast.requalifySuccess" | "classificationPlan.toast.requalifyError" | "classificationPlan.toast.depositSuccess" | "classificationPlan.toast.depositError" | "classificationPlan.toast.createSuccess" | "classificationPlan.toast.createError" | "classificationPlan.summary.document" | "classificationPlan.summary.metadata" | "classificationPlan.summary.verifyBeforeImport" | "classificationPlan.summary.verifyBeforeRequalify" | "classificationPlan.summary.verifyBeforeDeposit" | "classificationPlan.summary.generalInfo" | "classificationPlan.summary.metadataToSend" | "classificationPlan.summary.fileClassification" | "classificationPlan.summary.destinationFolder" | "classificationPlan.summary.movement" | "classificationPlan.steps.summary" | "classificationPlan.steps.step" | "classificationPlan.steps.selectPlan" | "classificationPlan.steps.selectNature" | "classificationPlan.steps.fillMetadata" | "classificationPlan.steps.fillMetadataAndFiles" | "classificationPlan.steps.selectFiles" | "classificationPlan.stepper.files" | "classificationPlan.stepper.metadata" | "classificationPlan.stepper.summary" | "classificationPlan.stepper.nature" | "classificationPlan.stepper.plan" | "classificationPlan.multiFile.status" | "classificationPlan.multiFile.category" | "classificationPlan.multiFile.allCategories" | "classificationPlan.multiFile.selectNature" | "classificationPlan.multiFile.noFiles" | "classificationPlan.multiFile.fileName" | "classificationPlan.multiFile.metadataBtn" | "classificationPlan.multiFile.complete" | "classificationPlan.multiFile.incomplete" | "classificationPlan.multiFile.selectCategory" | "classificationPlan.multiFile.selectCategoryFirst" | "classificationPlan.multiFile.searchNature" | "classificationPlan.multiFile.removeFile" | "classificationPlan.multiFile.metadataTitle" | "classificationPlan.multiFile.configSingle" | "classificationPlan.multiFile.configMultiple" | "classificationPlan.multiFile.summaryBefore" | "classificationPlan.multiFile.selectedCount" | "classificationPlan.multiFile.unassigned" | "classificationPlan.multiFile.filterAll" | "classificationPlan.multiFile.filterIncomplete" | "classificationPlan.multiFile.filterComplete" | "classificationPlan.multiFile.progressLabel" | "classificationPlan.multiFile.modeMultiCategory" | "classificationPlan.multiFile.modeMonoCategory" | "classificationPlan.multiFile.bulkSelectNature" | "classificationPlan.multiFile.layoutRow" | "classificationPlan.multiFile.layoutCol" | "classificationPlan.multiFile.metadataFilled" | "classificationPlan.requalify.title" | "classificationPlan.requalify.summaryFrom" | "classificationPlan.requalify.summaryTo" | "classificationPlan.files" | "classificationPlan.upload" | "classificationPlan.buttons" | "classificationPlan.defaultValue" | "classificationPlan.searchPlaceholder" | "classificationPlan.toast" | "classificationPlan.summary" | "classificationPlan.code" | "classificationPlan.nature" | "classificationPlan.category" | "classificationPlan.min" | "classificationPlan.max" | "classificationPlan.allCategories" | "classificationPlan.noCategory" | "classificationPlan.filterByCategory" | "classificationPlan.steps" | "classificationPlan.stepper" | "classificationPlan.plan" | "classificationPlan.natureColumn" | "classificationPlan.choosePlan" | "classificationPlan.planAriaLabel" | "classificationPlan.noPlanFound" | "classificationPlan.searchNaturePlaceholder" | "classificationPlan.noNature" | "classificationPlan.destinationCurrent" | "classificationPlan.destinationLabel" | "classificationPlan.chooseFiles" | "classificationPlan.fileToCreate" | "classificationPlan.filesToImport" | "classificationPlan.na" | "classificationPlan.constraint" | "classificationPlan.parentFieldNotFound" | "classificationPlan.validationRegexError" | "classificationPlan.multiFile" | "classificationPlan.requalify" | "chat.title" | "chat.reconnecting" | "chat.connecting" | "chat.connectionError" | "chat.notConfigured" | "chat.configureInProfile" | "chat.retry" | "chat.searchRooms" | "chat.noRooms" | "chat.noMessages" | "chat.loadMore" | "chat.typeMessage" | "chat.send" | "chat.attachFile" | "chat.attachment" | "chat.unknownUser" | "chat.userTyping" | "chat.usersTyping" | "chat.multipleUsersTyping" | "chat.sendError" | "chat.uploadError" | "chat.openChat" | "chat.closeChat" | "chat.newMessages" | "workflow.selectedDocuments" | "selection.clear" | "selection.selectAll" | "selection.clearSelection" | "selection.count" | "selection.mobileCount" | "selection.selectAllShort" | "sidebarMenu.profile" | "sidebarMenu.portal" | "sidebarMenu.logout" | "tasks.approve" | "tasks.reject" | "rechercheAvancee.addFavorite" | "rechercheAvancee.removeFavorite">;
|
|
2504
2532
|
natureSearch: Ref<string, string>;
|
|
2505
2533
|
selectedObject: Ref<any, any>;
|
|
2506
2534
|
selectedCategory: Ref<string, string>;
|
|
@@ -2,20 +2,24 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
2
2
|
declare const _default: DefineComponent<{}, {
|
|
3
3
|
$emit: (event: "update:visible" | "close" | "file-created" | "upload-complete", ...args: any[]) => void;
|
|
4
4
|
visible: boolean;
|
|
5
|
+
inline: boolean;
|
|
5
6
|
filesToUpload: unknown[];
|
|
6
7
|
forceSingleCategory: boolean;
|
|
7
8
|
currentNode?: Record<string, any>;
|
|
8
9
|
forcedPlanName?: string;
|
|
9
10
|
defaultDestinationNodeId?: string;
|
|
10
11
|
createFileMode?: Record<string, any>;
|
|
12
|
+
duplicateNameStrategy?: string;
|
|
11
13
|
$props: {
|
|
12
14
|
readonly visible?: boolean;
|
|
15
|
+
readonly inline?: boolean;
|
|
13
16
|
readonly filesToUpload?: unknown[];
|
|
14
17
|
readonly forceSingleCategory?: boolean;
|
|
15
18
|
readonly currentNode?: Record<string, any>;
|
|
16
19
|
readonly forcedPlanName?: string;
|
|
17
20
|
readonly defaultDestinationNodeId?: string;
|
|
18
21
|
readonly createFileMode?: Record<string, any>;
|
|
22
|
+
readonly duplicateNameStrategy?: string;
|
|
19
23
|
};
|
|
20
24
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
21
25
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UploadPlanPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/UploadPlanPopup.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"UploadPlanPopup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/classification/UploadPlanPopup.vue"],"names":[],"mappings":";AAuzBA;"}
|
|
@@ -135,7 +135,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
135
135
|
formatDate(value: any): string;
|
|
136
136
|
toBoolean(value: any): string;
|
|
137
137
|
toggleFileActionMenu(event: any, node: any): void;
|
|
138
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:selectedNodes" | "click-icon" | "toggle-file-action-menu" | "navigate-to" | "sort-change" | "update:datatableColumnConfig" | "filter-change" | "clear-all-filters")[], "update:selectedNodes" | "click-icon" | "toggle-file-action-menu" | "navigate-to" | "sort-change" | "update:datatableColumnConfig" | "filter-change" | "clear-all-filters", PublicProps, Readonly< ExtractPropTypes<{
|
|
138
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:selectedNodes" | "click-icon" | "toggle-file-action-menu" | "navigate-to" | "sort-change" | "update:datatableColumnConfig" | "filter-change" | "clear-all-filters" | "open-members")[], "update:selectedNodes" | "click-icon" | "toggle-file-action-menu" | "navigate-to" | "sort-change" | "update:datatableColumnConfig" | "filter-change" | "clear-all-filters" | "open-members", PublicProps, Readonly< ExtractPropTypes<{
|
|
139
139
|
files: {
|
|
140
140
|
type: ArrayConstructor;
|
|
141
141
|
default: () => any[];
|
|
@@ -197,6 +197,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
197
197
|
"onUpdate:datatableColumnConfig"?: (...args: any[]) => any;
|
|
198
198
|
"onFilter-change"?: (...args: any[]) => any;
|
|
199
199
|
"onClear-all-filters"?: (...args: any[]) => any;
|
|
200
|
+
"onOpen-members"?: (...args: any[]) => any;
|
|
200
201
|
}>, {
|
|
201
202
|
filters: Record<string, any>;
|
|
202
203
|
files: unknown[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentCompactTableView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentCompactTableView.vue"],"names":[],"mappings":";;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"ContentCompactTableView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentCompactTableView.vue"],"names":[],"mappings":";;;;;;;;;;;;;AA4QA;"}
|
|
@@ -89,7 +89,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
89
89
|
toggleFileActionMenu(event: any, node: any): void;
|
|
90
90
|
openInNewTab(node: any): void;
|
|
91
91
|
nodeClicked(node: any): void;
|
|
92
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("reload" | "update:selectedNodes" | "click-icon" | "open-preview-panel" | "toggle-file-action-menu" | "open-sharelink" | "toggle-favorite" | "open-in-new-tab" | "node-clicked")[], "reload" | "update:selectedNodes" | "click-icon" | "open-preview-panel" | "toggle-file-action-menu" | "open-sharelink" | "toggle-favorite" | "open-in-new-tab" | "node-clicked", PublicProps, Readonly< ExtractPropTypes<{
|
|
92
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("reload" | "update:selectedNodes" | "click-icon" | "open-preview-panel" | "toggle-file-action-menu" | "open-members" | "open-sharelink" | "toggle-favorite" | "open-in-new-tab" | "node-clicked")[], "reload" | "update:selectedNodes" | "click-icon" | "open-preview-panel" | "toggle-file-action-menu" | "open-members" | "open-sharelink" | "toggle-favorite" | "open-in-new-tab" | "node-clicked", PublicProps, Readonly< ExtractPropTypes<{
|
|
93
93
|
slotProps: {
|
|
94
94
|
type: ObjectConstructor;
|
|
95
95
|
default: () => {};
|
|
@@ -116,6 +116,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
116
116
|
"onClick-icon"?: (...args: any[]) => any;
|
|
117
117
|
"onOpen-preview-panel"?: (...args: any[]) => any;
|
|
118
118
|
"onToggle-file-action-menu"?: (...args: any[]) => any;
|
|
119
|
+
"onOpen-members"?: (...args: any[]) => any;
|
|
119
120
|
"onOpen-sharelink"?: (...args: any[]) => any;
|
|
120
121
|
"onToggle-favorite"?: (...args: any[]) => any;
|
|
121
122
|
"onOpen-in-new-tab"?: (...args: any[]) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContentGridView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentGridView.vue"],"names":[],"mappings":";;;;;;;
|
|
1
|
+
{"version":3,"file":"ContentGridView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentGridView.vue"],"names":[],"mappings":";;;;;;;AAkKA;"}
|