@topconsultnpm/sdkui-react 6.19.0-dev2.3 → 6.19.0-dev2.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/lib/components/base/TMCustomButton.js +79 -26
  2. package/lib/components/base/TMDataGridExportForm.d.ts +1 -1
  3. package/lib/components/base/TMDataGridExportForm.js +9 -3
  4. package/lib/components/base/TMFileManager.js +12 -3
  5. package/lib/components/base/TMFileManagerDataGridView.d.ts +2 -0
  6. package/lib/components/base/TMFileManagerDataGridView.js +11 -2
  7. package/lib/components/base/TMFileManagerThumbnailItems.d.ts +2 -0
  8. package/lib/components/base/TMFileManagerThumbnailItems.js +12 -2
  9. package/lib/components/base/TMFileManagerThumbnailsView.d.ts +2 -0
  10. package/lib/components/base/TMFileManagerThumbnailsView.js +2 -2
  11. package/lib/components/base/TMTooltip.d.ts +1 -1
  12. package/lib/components/base/TMTooltip.js +1 -1
  13. package/lib/components/choosers/TMDcmtTypeChooser.js +2 -2
  14. package/lib/components/choosers/TMMetadataChooser.d.ts +4 -1
  15. package/lib/components/choosers/TMMetadataChooser.js +28 -7
  16. package/lib/components/editors/TMDateBox.d.ts +1 -1
  17. package/lib/components/features/documents/TMDcmtForm.js +312 -56
  18. package/lib/components/features/documents/TMRelationViewer.js +56 -23
  19. package/lib/components/features/search/TMSavedQuerySelector.js +1 -1
  20. package/lib/components/features/search/TMSearch.js +2 -2
  21. package/lib/components/features/search/TMSearchQueryEditor.js +1 -1
  22. package/lib/components/features/search/TMSearchQueryPanel.js +8 -25
  23. package/lib/components/features/search/TMSearchResult.js +91 -10
  24. package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +2 -1
  25. package/lib/components/features/search/TMSearchResultsMenuItems.js +97 -51
  26. package/lib/components/features/tasks/TMTaskForm.js +10 -4
  27. package/lib/components/features/tasks/TMTasksAgenda.js +4 -4
  28. package/lib/components/features/tasks/TMTasksCalendar.js +2 -2
  29. package/lib/components/features/tasks/TMTasksHeader.js +1 -1
  30. package/lib/components/features/tasks/TMTasksUtils.d.ts +2 -1
  31. package/lib/components/features/tasks/TMTasksUtils.js +18 -3
  32. package/lib/components/features/tasks/TMTasksUtilsView.js +26 -4
  33. package/lib/components/features/tasks/TMTasksView.js +12 -6
  34. package/lib/components/features/workflow/TMWorkflowPopup.js +3 -3
  35. package/lib/components/features/workflow/diagram/DiagramItemForm.js +11 -6
  36. package/lib/components/features/workflow/diagram/RecipientList.js +1 -1
  37. package/lib/components/forms/TMResultDialog.js +8 -2
  38. package/lib/components/grids/TMBlogsPost.d.ts +1 -0
  39. package/lib/components/grids/TMBlogsPost.js +19 -4
  40. package/lib/components/grids/TMBlogsPostUtils.js +5 -3
  41. package/lib/components/grids/TMRecentsManager.js +1 -1
  42. package/lib/components/layout/panelManager/TMPanelManagerContainer.d.ts +1 -0
  43. package/lib/components/layout/panelManager/TMPanelManagerContainer.js +2 -2
  44. package/lib/components/layout/panelManager/TMPanelManagerContext.js +0 -1
  45. package/lib/components/layout/panelManager/TMPanelManagerToolbar.js +2 -1
  46. package/lib/components/layout/panelManager/types.d.ts +1 -0
  47. package/lib/components/pages/TMPage.js +1 -1
  48. package/lib/components/query/TMQuerySummary.d.ts +1 -0
  49. package/lib/components/query/TMQuerySummary.js +3 -3
  50. package/lib/components/settings/SettingsAppearance.js +5 -5
  51. package/lib/components/viewers/TMDataListItemViewer.d.ts +1 -1
  52. package/lib/components/viewers/TMMidViewer.d.ts +1 -1
  53. package/lib/components/viewers/TMTidViewer.d.ts +1 -1
  54. package/lib/helper/GlobalStyles.d.ts +2 -0
  55. package/lib/helper/GlobalStyles.js +10 -0
  56. package/lib/helper/Globalization.d.ts +1 -0
  57. package/lib/helper/Globalization.js +30 -0
  58. package/lib/helper/SDKUI_Localizator.d.ts +34 -2
  59. package/lib/helper/SDKUI_Localizator.js +342 -22
  60. package/lib/helper/TMCustomSearchBar.js +1 -1
  61. package/lib/helper/TMIcons.d.ts +2 -1
  62. package/lib/helper/TMIcons.js +4 -1
  63. package/lib/helper/TMUtils.d.ts +1 -4
  64. package/lib/helper/TMUtils.js +18 -23
  65. package/lib/helper/dcmtsHelper.d.ts +2 -1
  66. package/lib/helper/dcmtsHelper.js +19 -13
  67. package/lib/helper/helpers.js +2 -1
  68. package/lib/helper/index.d.ts +1 -0
  69. package/lib/helper/index.js +1 -0
  70. package/lib/hooks/useRelatedDocuments.js +35 -26
  71. package/lib/ts/types.d.ts +1 -1
  72. package/package.json +8 -8
@@ -4,6 +4,7 @@ interface TMPanelManagerContainerProps {
4
4
  showToolbar: boolean;
5
5
  direction: TMPanelDirection;
6
6
  parentId?: string;
7
+ minPanelSizePx?: number;
7
8
  }
8
9
  declare const TMPanelManagerContainer: (props: TMPanelManagerContainerProps) => import("react/jsx-runtime").JSX.Element | null;
9
10
  export default TMPanelManagerContainer;
@@ -24,7 +24,7 @@ const StyledResizerGutter = styled.div `
24
24
  z-index: 10;
25
25
  `;
26
26
  const TMPanelManagerContainer = (props) => {
27
- const { panels, showToolbar, direction, parentId } = props;
27
+ const { panels, showToolbar, direction, parentId, minPanelSizePx = 150 } = props;
28
28
  const { panelVisibility, setPanelDimensionsById, hasVisiblePanels, maximizedPanels, updateIsResizingActive } = useTMPanelManagerContext();
29
29
  // Get the current device type (e.g., mobile, tablet, desktop) using a custom hook
30
30
  const deviceType = useDeviceType();
@@ -73,7 +73,7 @@ const TMPanelManagerContainer = (props) => {
73
73
  let newCurrent = initialCurrent + deltaPercent;
74
74
  let newNext = initialNext - deltaPercent;
75
75
  // Set a minimum size threshold (to prevent panels from collapsing)
76
- const minPercent = (150 / containerSize) * 100;
76
+ const minPercent = (minPanelSizePx / containerSize) * 100;
77
77
  // Correct sizes if they go below the minimum
78
78
  if (newCurrent < minPercent) {
79
79
  newCurrent = minPercent;
@@ -118,7 +118,6 @@ export const TMPanelManagerProvider = (props) => {
118
118
  const maximizePanel = useCallback((id) => {
119
119
  // Get all parent panel IDs recursively for the given panel ID
120
120
  const parents = showParentRecursively(id, hierarchyMap).map(([pid]) => pid);
121
- 4;
122
121
  // Combine parents and the current panel ID into one array to maximize
123
122
  const toMaximize = [...parents, id];
124
123
  // Update state to track which panels are maximized
@@ -76,7 +76,8 @@ const TMPanelManagerToolbar = (props) => {
76
76
  const isActive = panelVisibility[visibleLeafPanel.id];
77
77
  const isDisabled = toolbarButtonsDisabled[visibleLeafPanel.id];
78
78
  const count = visibleLeafPanel.toolbarOptions?.count ?? 0;
79
- return _jsx(TMTooltip, { content: visibleLeafPanel.name + (count > 0 ? ": " + count : ''), position: isMobile ? 'top' : 'left', children: _jsxs(StyledToolbarButton, { disabled: isDisabled, "$isDisabled": isDisabled, onClick: () => onClickCallback(visibleLeafPanel.id, isActive), "$isActive": isActive || visibleLeafPanel.toolbarOptions?.alwaysActiveColor, children: [typeof visibleLeafPanel.toolbarOptions?.icon === 'string' ? (_jsx("i", { className: `dx-icon dx-icon-${visibleLeafPanel.toolbarOptions?.icon}` })) : (visibleLeafPanel.toolbarOptions?.icon), (!isActive && count > 0) && _jsxs(Badge, { "$background": visibleLeafPanel.toolbarOptions?.countBackgroundColor, children: [" ", formatCount(count), " "] })] }, visibleLeafPanel.id) }, visibleLeafPanel.id);
79
+ const tooltip = visibleLeafPanel.toolbarOptions?.tooltip ?? '';
80
+ return _jsx(TMTooltip, { content: tooltip || (visibleLeafPanel.name + (count > 0 ? ": " + count : '')), position: isMobile ? 'top' : 'left', children: _jsxs(StyledToolbarButton, { disabled: isDisabled, "$isDisabled": isDisabled, onClick: () => onClickCallback(visibleLeafPanel.id, isActive), "$isActive": isActive || visibleLeafPanel.toolbarOptions?.alwaysActiveColor, children: [typeof visibleLeafPanel.toolbarOptions?.icon === 'string' ? (_jsx("i", { className: `dx-icon dx-icon-${visibleLeafPanel.toolbarOptions?.icon}` })) : (visibleLeafPanel.toolbarOptions?.icon), (!isActive && count > 0) && _jsxs(Badge, { "$background": visibleLeafPanel.toolbarOptions?.countBackgroundColor, children: [" ", formatCount(count), " "] })] }, visibleLeafPanel.id) }, visibleLeafPanel.id);
80
81
  }) }));
81
82
  };
82
83
  export default TMPanelManagerToolbar;
@@ -22,6 +22,7 @@ export interface TMPanelDefinition {
22
22
  beginGroup?: boolean;
23
23
  alwaysActiveColor?: boolean;
24
24
  count?: number;
25
+ tooltip?: ReactNode | string;
25
26
  countBackgroundColor?: string;
26
27
  };
27
28
  }
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import React, { useState, useEffect } from "react";
3
3
  import { SDK_Globals, ObjectClasses, ResultTypes } from "@topconsultnpm/sdk-ts";
4
- import DataGrid, { Column, GroupPanel, Grouping, HeaderFilter, LoadPanel, Pager, Paging, Scrolling, SearchPanel, Selection } from "devextreme-react/cjs/data-grid";
4
+ import DataGrid, { Column, GroupPanel, Grouping, HeaderFilter, LoadPanel, Pager, Paging, Scrolling, SearchPanel, Selection } from "devextreme-react/data-grid";
5
5
  import { PlatformObjectService } from "../../services/platform_services";
6
6
  import { FormModes } from "../../ts";
7
7
  import { Globalization, IconAdd, IconColumns, IconCopy, IconDelete, IconDuplicate, IconHide, IconMail, IconMenuVertical, IconOpenInNew, IconRefresh, IconShow, SDKUI_Globals, SDKUI_Localizator, calcSaveFormTitle, canNext, canPrev, dialogConfirmOperation, getExceptionMessage, getNext, getPrev } from "../../helper";
@@ -7,6 +7,7 @@ interface ITMQuerySummary {
7
7
  raiseWarningForOnlyMetadataDcmtTypes?: boolean;
8
8
  validateSelect?: boolean;
9
9
  validateOrderBy?: boolean;
10
+ showDistinct?: boolean;
10
11
  onValueChanged?: (value: QueryDescriptor | undefined) => void;
11
12
  onEditClick?: () => void;
12
13
  onClose?: () => void;
@@ -24,12 +24,12 @@ const StyledQueryToolbar = styled.div `
24
24
  width: max-content;
25
25
  gap: 8px;
26
26
  `;
27
- const TMQuerySummary = ({ children, qd, validateSelect = true, validateOrderBy = true, raiseWarningForOnlyMetadataDcmtTypes = false, validationItems = [], onValueChanged, onEditClick, onClose }) => {
27
+ const TMQuerySummary = ({ children, qd, validateSelect = true, validateOrderBy = true, raiseWarningForOnlyMetadataDcmtTypes = false, showDistinct = false, validationItems = [], onValueChanged, onEditClick, onClose }) => {
28
28
  const [showEditor, setShowEditor] = useState(false);
29
29
  const validationItemsQd = validationItems.filter(o => o.PropertyScopes.includes(TMScopeNames.qd) || o.PropertyName == TMScopeNames.qd);
30
30
  const useInternalEditor = onEditClick === undefined;
31
31
  return (_jsxs(StyledWrapper, { children: [_jsxs(StyledQueryToolbar, { children: [_jsx(TMButton, { caption: SDKUI_Localizator.QueryDefine, icon: _jsx(IconPencil, { fontSize: 16 }), btnStyle: 'toolbar', onClick: () => onEditClick ? onEditClick() : setShowEditor(true) }), _jsx(TMButton, { caption: SDKUI_Localizator.QueryCount, icon: _jsx(IconCount, { fontSize: 16 }), disabled: validationItemsQd.filter(o => o.ResultType == ResultTypes.ERROR).length > 0, btnStyle: 'toolbar', onClick: () => getQueryCountAsync(qd, true) }), _jsx(TMButton, { caption: SDKUI_Localizator.QueryClear, icon: _jsx(IconEraser, { fontSize: 16 }), btnStyle: 'toolbar', onClick: () => onValueChanged?.(new QueryDescriptor()) }), children] }), _jsxs("div", { style: { display: 'flex', flexDirection: 'column', width: '100%', overflowX: 'auto' }, children: [qd && qd.from &&
32
- _jsx(TMQueryEditor, { formMode: FormModes.ReadOnly, inputData: qd, isModal: false, showToolbar: false, validateSelect: validateSelect, validateOrderBy: validateOrderBy, raiseWarningForOnlyMetadataDcmtTypes: raiseWarningForOnlyMetadataDcmtTypes }), _jsx("div", { style: { padding: '0px 5px' }, children: _jsx(TMVilViewer, { vil: validationItemsQd }) })] }), useInternalEditor && showEditor &&
33
- _jsx(TMModal, { title: SDKUI_Localizator.QueryDefine, children: _jsx(TMQueryEditor, { formMode: FormModes.Update, inputData: qd, isModal: true, raiseWarningForOnlyMetadataDcmtTypes: raiseWarningForOnlyMetadataDcmtTypes, validateSelect: validateSelect, validateOrderBy: validateOrderBy, onApplied: (newValue) => onValueChanged?.(newValue), onClose: () => { setShowEditor(false); } }) })] }));
32
+ _jsx(TMQueryEditor, { formMode: FormModes.ReadOnly, inputData: qd, showDistinct: showDistinct, isModal: false, showToolbar: false, validateSelect: validateSelect, validateOrderBy: validateOrderBy, raiseWarningForOnlyMetadataDcmtTypes: raiseWarningForOnlyMetadataDcmtTypes }), _jsx("div", { style: { padding: '0px 5px' }, children: _jsx(TMVilViewer, { vil: validationItemsQd }) })] }), useInternalEditor && showEditor &&
33
+ _jsx(TMModal, { title: SDKUI_Localizator.QueryDefine, children: _jsx(TMQueryEditor, { formMode: FormModes.Update, inputData: qd, isModal: true, showDistinct: showDistinct, raiseWarningForOnlyMetadataDcmtTypes: raiseWarningForOnlyMetadataDcmtTypes, validateSelect: validateSelect, validateOrderBy: validateOrderBy, onApplied: (newValue) => onValueChanged?.(newValue), onClose: () => { setShowEditor(false); } }) })] }));
34
34
  };
35
35
  export default TMQuerySummary;
@@ -47,14 +47,14 @@ const SettingsAppearance = ({ landingPagesOptions, permissions = { canArchive: t
47
47
  return (_jsxs(TMLayoutContainer, { children: [landingPagesOptions && _jsx("p", { style: { fontSize: '1.h1rem', fontWeight: 'bold', marginBottom: '5px' }, children: SDKUI_Localizator.LandingPage }), landingPagesOptions && _jsx(TMDropDown, { dataSource: filteredLandingPageOptopns, value: SDKUI_Globals.userSettings.landingPage, width: '230px', onValueChanged: (e) => {
48
48
  SDKUI_Globals.userSettings.landingPage = e.target.value;
49
49
  triggerUIUpdate();
50
- } }), _jsx("p", { style: { fontSize: '1.h1rem', fontWeight: 'bold', marginTop: '10px' }, children: 'Font' }), _jsx(TMDropDown, { label: SDKUI_Localizator.Size, dataSource: fontSizes, width: '230px', value: SDKUI_Globals.userSettings.themeSettings.fontSize, onValueChanged: (e) => {
51
- let newpx = e.target.value;
52
- SDKUI_Globals.userSettings.themeSettings.fontSize = newpx;
53
- triggerUIUpdate();
54
- } }), _jsx(TMDropDown, { label: 'Family', dataSource: fontFamilies, width: '230px', value: SDKUI_Globals.userSettings.themeSettings.fontFamily, onValueChanged: (e) => {
50
+ } }), _jsx("p", { style: { fontSize: '1.h1rem', fontWeight: 'bold', marginTop: '10px' }, children: 'Font' }), _jsx(TMDropDown, { label: SDKUI_Localizator.Name, dataSource: fontFamilies, width: '230px', value: SDKUI_Globals.userSettings.themeSettings.fontFamily, onValueChanged: (e) => {
55
51
  let newFamily = e.target.value;
56
52
  SDKUI_Globals.userSettings.themeSettings.fontFamily = newFamily;
57
53
  triggerUIUpdate();
54
+ } }), _jsx(TMDropDown, { label: SDKUI_Localizator.Size, dataSource: fontSizes, width: '230px', value: SDKUI_Globals.userSettings.themeSettings.fontSize, onValueChanged: (e) => {
55
+ let newpx = e.target.value;
56
+ SDKUI_Globals.userSettings.themeSettings.fontSize = newpx;
57
+ triggerUIUpdate();
58
58
  } }), _jsx("p", { style: { fontSize: '1rem', fontWeight: 'bold', marginTop: '10px', marginBottom: '5px' }, children: SDKUI_Localizator.Grids }), _jsx(TMCheckBox, { label: SDKUI_Localizator.ShowRowSeparatingLines, value: SDKUI_Globals.userSettings.themeSettings.gridSettings.showRowLines, onValueChanged: (newValue) => {
59
59
  SDKUI_Globals.userSettings.themeSettings.gridSettings.showRowLines = newValue;
60
60
  triggerUIUpdate();
@@ -1,5 +1,5 @@
1
1
  import { DataListViewModes } from '@topconsultnpm/sdk-ts';
2
- import { DataGridTypes } from 'devextreme-react/cjs/data-grid';
2
+ import { DataGridTypes } from 'devextreme-react/data-grid';
3
3
  interface ITMDataListItemViewerProps {
4
4
  dataListId?: number;
5
5
  value?: string | Date | number;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { ITopMediaSession, LayoutModes, MetadataDescriptor } from '@topconsultnpm/sdk-ts';
3
3
  import { TID_MID } from '../../ts';
4
- import { DataGridTypes } from 'devextreme-react/cjs/data-grid';
4
+ import { DataGridTypes } from 'devextreme-react/data-grid';
5
5
  export interface ITMMidViewerProps {
6
6
  tmSession?: ITopMediaSession;
7
7
  tid_mid: TID_MID | undefined;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { DcmtTypeDescriptor, ITopMediaSession } from '@topconsultnpm/sdk-ts';
3
- import { DataGridTypes } from 'devextreme-react/cjs/data-grid';
3
+ import { DataGridTypes } from 'devextreme-react/data-grid';
4
4
  export declare enum ImageIDList {
5
5
  arrow_001 = "arrow_001",
6
6
  arrow_002 = "arrow_002",
@@ -0,0 +1,2 @@
1
+ declare const GlobalStyle: import("react").NamedExoticComponent<import("styled-components").ExecutionProps & object>;
2
+ export default GlobalStyle;
@@ -0,0 +1,10 @@
1
+ import { createGlobalStyle } from 'styled-components';
2
+ const GlobalStyle = createGlobalStyle `
3
+ html,
4
+ body,
5
+ #root,
6
+ * {
7
+ font-family: var(--base-font-family, "Inter"), sans-serif;
8
+ }
9
+ `;
10
+ export default GlobalStyle;
@@ -6,6 +6,7 @@ export declare enum DateDisplayTypes {
6
6
  }
7
7
  export declare class Globalization {
8
8
  static getDateTimeDisplayValue(value: Date | string | undefined, displayType?: DateDisplayTypes, metadataFormat?: MetadataFormats): string;
9
+ static getDateTimeDisplayValueCompact(value: Date | string | undefined, displayType?: DateDisplayTypes, metadataFormat?: MetadataFormats): string;
9
10
  static getDateDisplayFormat(displayType?: DateDisplayTypes): string;
10
11
  static getNumberDisplayValue(value: Number, withThousandsSeparator?: boolean, numberDisplayFormat?: string): string;
11
12
  static metadataFormatToDateDisplayFormat(format: MetadataFormats): "" | "MM/dd/yyyy" | "dd/MM/yyyy" | "EEEE dd MMMM yyyy" | "HH:mm" | "HH:mm:ss" | "MM/dd/yyyy HH:mm:ss" | "dd/MM/yyyy HH:mm:ss" | "MM/dd/yyyy HH:mm" | "dd/MM/yyyy HH:mm" | "EEEE dd MMMM yyyy HH:mm" | "EEEE dd MMMM yyyy HH:mm:ss";
@@ -29,6 +29,36 @@ export class Globalization {
29
29
  dateTime = dateTime.replace("ss", dt.getSeconds().toString().padStart(2, '0'));
30
30
  return dateTime;
31
31
  }
32
+ static getDateTimeDisplayValueCompact(value, displayType, metadataFormat) {
33
+ if (!value)
34
+ return "";
35
+ let dt = typeof value === "string" ? new Date(value) : value;
36
+ let dateDisplayFormat = metadataFormat ? this.metadataFormatToDateDisplayFormat(metadataFormat) : this.getDateDisplayFormat(displayType);
37
+ let dateTime = dateDisplayFormat;
38
+ dateTime = dateTime.replace("EEEE", dt.toLocaleString(navigator.language, { weekday: "long" }));
39
+ dateTime = dateTime.replace("dd", dt.toLocaleString(navigator.language, { day: "2-digit" }));
40
+ dateTime = dateTime.replace("MMMM", dt.toLocaleString(navigator.language, { month: "long" }));
41
+ dateTime = dateTime.replace("MM", dt.toLocaleString(navigator.language, { month: "2-digit" }));
42
+ dateTime = dateTime.replace("yyyy", dt.toLocaleString(navigator.language, { year: "numeric" }));
43
+ // gestione ore, minuti e secondi
44
+ const hh = dt.getHours().toString().padStart(2, '0');
45
+ const mm = dt.getMinutes().toString().padStart(2, '0');
46
+ const ss = dt.getSeconds().toString().padStart(2, '0');
47
+ if (hh === '00' && mm === '00' && ss === '00') {
48
+ // nessun tempo
49
+ dateTime = dateTime.replace(/HH:mm:ss/, '').trim();
50
+ }
51
+ else if (ss === '00') {
52
+ // togli solo i secondi
53
+ dateTime = dateTime.replace(/ss/, '').replace(/:$/, '');
54
+ dateTime = dateTime.replace("HH", hh).replace("mm", mm);
55
+ }
56
+ else {
57
+ // mantieni tutto
58
+ dateTime = dateTime.replace("HH", hh).replace("mm", mm).replace("ss", ss);
59
+ }
60
+ return dateTime;
61
+ }
32
62
  static getDateDisplayFormat(displayType = DateDisplayTypes.DateTime) {
33
63
  let timeFormat = "HH:mm:ss";
34
64
  if (displayType == DateDisplayTypes.Time)
@@ -48,10 +48,13 @@ export declare class SDKUI_Localizator {
48
48
  static get ArchiveConstraints_OnlyMetadata(): "Nur Methadatenarchivierung erlauben" | "Allow metadata only archiving" | "Permitir solo almacenamiento de metadatos" | "Autorise uniquement l'archivage de métadonnées" | "Permitir somente os metadados de arquivamento" | "Consenti solo archiviazioni di metadati";
49
49
  static get ArchivedDocuments(): string;
50
50
  static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
51
+ static get ArchiveDetailDocument(): "Detaildokument archivieren" | "Archive detail document" | "Archivar documento de detalle" | "Archiver le document détail" | "Arquivar documento de detalhe" | "Archivia documento dettaglio";
52
+ static get ArchiveMasterDocument(): "Master-Dokument archivieren" | "Archive master document" | "Archivar documento maestro" | "Archiver le document maître" | "Arquivar documento mestre" | "Archivia documento master";
51
53
  static get Arguments(): "Themen" | "Arguments" | "Argumentos" | "Sujets" | "Tópicos" | "Argomenti";
52
54
  static get AssignedBy(): "Zugewiesen von" | "Assigned by" | "Asignado por" | "Assigné par" | "Atribuído por" | "Assegnata da";
53
55
  static get AssignedByMe(): "Von mir zugewiesene" | "Assigned by me" | "Por mí" | "Que j'ai assignées" | "Atribuídas por mim" | "Assegnate da me";
54
56
  static get AssignedTo(): string;
57
+ static get AssignedTo_Female(): string;
55
58
  static get AssignedToMe(): "Mir zugewiesene" | "Assigned to me" | "Asignadas a mí" | "Qui me sont assignées" | "Atribuídas a mim" | "Assegnate a me";
56
59
  static get AttachDocument(): "Dokument anhängen" | "Attach Document" | "Adjuntar documento" | "Joindre un document" | "Anexar documento" | "Allega documento";
57
60
  static get AttachingDocuments(): "Dokumente werden angehängt..." | "Attaching documents..." | "Adjuntando documentos..." | "Pièces jointes en cours..." | "Anexando documentos..." | "Allegando documenti...";
@@ -74,6 +77,7 @@ export declare class SDKUI_Localizator {
74
77
  static get BrowseAreaFolder(): "Ordner in den Supportbereichen durchsuchen" | "Browse folders on support areas" | "Explorar las carpetas en las áreas de apoyo" | "Parcourir les dossiers dans les zones de support" | "Percorra as pastas nas áreas de apoio" | "Sfoglia le cartelle nelle aree di appoggio";
75
78
  static get ByDate(): string;
76
79
  static get Calendar(): "Kalender" | "Calendar" | "Calendario" | "Calendrier" | "Calendário";
80
+ static get CancelCheckOut(): string;
77
81
  static get CassettoDoganaleExportMRN(): "MRN-Erholung für den Export" | "MRN recovery for export" | "Recuperación MRN para exportación" | "Récupération MRN pour l'export" | "Recuperação MRN para exportação" | "Recupero MRN per Export";
78
82
  static get CassettoDoganaleExportVU(): "Wiederherstellung des Ausreisevisums" | "Exit Visa Recovery" | "Recuperación de Visa de Salida" | "Sortie Récupération Visa" | "Recuperação de Visto de Saída" | "Recupero Visto Uscire per Export";
79
83
  static get CassettoDoganaleImportMRN(): "MRN-Erholung für den Import" | "MRN recovery for import" | "Recuperación MRN para importación" | "Récupération MRN à l'import" | "Recuperação MRN para importação" | "Recupero MRN per Import";
@@ -96,6 +100,7 @@ export declare class SDKUI_Localizator {
96
100
  static get CommentAndComplete(): string;
97
101
  static get CommentDoesNotMeetRequirements(): "Der Kommentar erfüllt nicht die erforderlichen Anforderungen" | "The comment does not meet the required criteria" | "El comentario no cumple con los requisitos requeridos" | "Le commentaire ne répond pas aux exigences requises" | "O comentário não atende aos requisitos exigidos" | "Il commento non rispetta i requisiti richiesti";
98
102
  static get CommentText(): string;
103
+ static get CompactView(): string;
99
104
  static get Completed(): "Abgeschlossen" | "Completed" | "Completadas" | "Complètes" | "Completata";
100
105
  static get CompleteError(): "Kompletter Fehler" | "Complete error" | "Error completo" | "Erreur complète" | "Erro completo" | "Errore completo";
101
106
  static get Configure(): "Konfigurieren" | "Configure" | "Configurar" | "Configura";
@@ -181,6 +186,8 @@ export declare class SDKUI_Localizator {
181
186
  static get Documents(): string;
182
187
  static get DocumentOperations(): string;
183
188
  static get Domain(): "Domäne" | "Domain" | "Dominio" | "Domaine";
189
+ static get Dossier(): "Übung" | "Dossier" | "Expediente" | "Pratique" | "Prática" | "Pratica";
190
+ static get Dossiers(): "Akten" | "Dossiers" | "Expedientes" | "Pratiques" | "Práticas" | "Pratiche";
184
191
  static get DownloadFile(): string;
185
192
  static get Download_in_Process(): "Download läuft" | "Download in progress" | "Descarga en curso" | "Téléchargement en cours" | "Download em progresso" | "Download in corso";
186
193
  static get DownloadXMLAttachments(): string;
@@ -211,6 +218,8 @@ export declare class SDKUI_Localizator {
211
218
  static get ErrorParsingFileContent(): "Fehler beim Parsen des Dateiinhalts. Stellen Sie sicher, dass die Datei im richtigen Format vorliegt." | "Error parsing the file content. Ensure the file is in the correct format." | "Error al analizar el contenido del archivo. Asegúrese de que el archivo esté en el formato correcto." | "Erreur lors de l'analyse du contenu du fichier. Assurez-vous que le fichier est dans le bon format." | "Erro ao analisar o conteúdo do arquivo. Certifique-se de que o arquivo está no formato correto." | "Errore durante l'analisi del contenuto del file. Assicurati che il file sia nel formato corretto.";
212
219
  static get ErrorEndRemDate(): "Fehler bei den Daten (2)" | "Error in the dates (2)" | "Error en las fechas (2)" | "Erreur dans les dates (2)" | "Erro nas datas (2)" | "Errore nelle date (2)";
213
220
  static get ErrorStartEndDate(): "Fehler bei den Daten (1)" | "Error in the dates (1)" | "Error en las fechas (1)" | "Erreur dans les dates (1)" | "Erro nas datas (1)" | "Errore nelle date (1)";
221
+ static get ExecuteCancelCheckOutQuestion(): string;
222
+ static get ExecuteCheckOutQuestion(): string;
214
223
  static get ExportDataListsDescriptionField(): "Exportiere die \"Beschreibung\"-Felder der Datenlisten" | "Export the \"description\" fields of data lists" | "Exportar los campos \"descripción\" de las listas de datos" | "Exporter les champs \"description\" des listes de données" | "Exportar os campos \"descrição\" das listas de dados" | "Esporta la \"Descrizione\" delle liste dati";
215
224
  static get ExportOnlySelectedDocuments(): "Nur ausgewählte Dokumente exportieren" | "Export only selected documents" | "Exportar solo los documentos seleccionados" | "Exporter uniquement les documents sélectionnés" | "Exportar apenas os documentos selecionados" | "Esporta solo i documenti selezionati";
216
225
  static get ExportSelectedColumnsAndFormatLabel(): string;
@@ -321,6 +330,8 @@ export declare class SDKUI_Localizator {
321
330
  static get Low(): "Niedrig" | "Low" | "Baja" | "Faible" | "Baixa" | "Bassa";
322
331
  static get MakeEditable(): "Bearbeitbar machen" | "Make editable" | "Hacer editable" | "Rendre modifiable" | "Faça editável" | "Rendi editabile";
323
332
  static get MarkAs(): "Als markieren" | "Mark as" | "Marcar como" | "Marquer comme" | "Segna come";
333
+ static get Match(): "Übereinstimmen" | "Match" | "Emparejar" | "Associer" | "Corresponder" | "Abbina";
334
+ static get MatchManyDocumentsManyToMany(): "Mehrere Dokumente mehrfach zuordnen" | "Match many documents many to many" | "Emparejar muchos documentos de muchos a muchos" | "Associer plusieurs documents plusieurs à plusieurs" | "Corresponder muitos documentos de muitos para muitos" | "Abbina documenti molti a molti";
324
335
  static get Max_Value(): "Der Maximalwert ist {{0}}" | "The maximum value is {{0}}" | "El valor máximo es {{0}}" | "La valeur maximale est {{0}}" | "O valor máximo é {{0}}" | "Il valore massimo è {{0}}";
325
336
  static get MaxDcmtsToBeReturned(): "Maximale Anzahl von Dokumenten" | "Max number of documents" | "Número máximo de documentos" | "Nombre maximum de documents" | "O número máximo de documentos" | "Numero massimo di documenti";
326
337
  static get Maximize(): "Maximieren" | "Maximize" | "Maximizar" | "Maximiser" | "Massimizza";
@@ -377,6 +388,20 @@ export declare class SDKUI_Localizator {
377
388
  static get NoDataToDisplay(): "Keine Daten zum Anzeigen" | "No data to display" | "No hay datos para mostrar" | "Aucune donnée à afficher" | "Sem dados para exibir" | "Nessun dato da visualizzare";
378
389
  static get NoDcmtFound(): "Kein Dokument gefunden" | "No documents found" | "Ningún documento encontrado" | "Pas de documents trouvés" | "Nenhum documento encontrado" | "Nessun documento trovato";
379
390
  static get NoDcmtSelected(): string;
391
+ static get NoDetailDocumentFoundForArchiving(): "Kein Detaildokument zur Archivierung gefunden." | "No detail document found for archiving." | "No se encontró ningún documento de detalle para archivar." | "Aucun document détail trouvé pour l'archivage." | "Nenhum documento de detalhe encontrado para arquivamento." | "Nessun documento di dettaglio trovato per l'archiviazione.";
392
+ static get NoDocumentMatchFound(): "Kein zugeordnetes Dokument gefunden." | "No document match found." | "No se encontró ningún documento emparejado." | "Aucun document associé trouvé." | "Nenhum documento correspondente encontrado." | "Nessun documento abbinato trovato.";
393
+ static get NoDocumentSelectedForManyToManyMatching(): "Kein Dokument für die Mehrfach-Zuordnung ausgewählt." | "No document selected for many-to-many matching." | "Ningún documento seleccionado para el emparejamiento de muchos a muchos." | "Aucun document sélectionné pour l'association plusieurs à plusieurs." | "Nenhum documento selecionado para correspondência de muitos para muitos." | "Nessun documento selezionato per l'abbinamento molti a molti.";
394
+ static get NoDocumentSelectedForManyToManyUnmatching(): "Kein Dokument für die Aufhebung der Mehrfach-Zuordnung ausgewählt." | "No document selected for many-to-many unmatching." | "Ningún documento seleccionado para el desemparejamiento de muchos a muchos." | "Aucun document sélectionné pour la dissociation plusieurs à plusieurs." | "Nenhum documento selecionado para descorrespondência de muitos para muitos." | "Nessun documento selezionato per il disabbinamento molti a molti.";
395
+ static get NoDocumentToMatch(): "Kein Dokument zuzuordnen. Alle resultierenden Dokumente sind bereits zugeordnet." | "No document to match. All resulting documents are already matched." | "Ningún documento para emparejar. Todos los documentos resultantes ya están emparejados." | "Aucun document à associer. Tous les documents résultants sont déjà associés." | "Nenhum documento para corresponder. Todos os documentos resultantes já estão correspondidos." | "Nessun documento da abbinare. Tutti i documenti risultanti sono già abbinati.";
396
+ static get NoManyToManyMatchingRelationshipAssociatedWithRetrievalQuery(): "Keine Mehrfach-Zuordnungsbeziehung mit Abrufabfrage verknüpft." | "No many-to-many matching relationship associated with retrieval query." | "Ninguna relación de emparejamiento de muchos a muchos asociada con la consulta de recuperación." | "Aucune relation d'association plusieurs à plusieurs associée à la requête de récupération." | "Nenhuma relação de correspondência de muitos para muitos associada à consulta de recuperação." | "Nessuna query di recupero associata alla relazione di abbinamento molti a molti.";
397
+ static get NoManyToManyMatchingRelationshipDefined(): "Keine Mehrfach-Zuordnungsbeziehung im System definiert." | "No many-to-many matching relationship defined in the system." | "Ninguna relación de emparejamiento de muchos a muchos definida en el sistema." | "Aucune relation d'association plusieurs à plusieurs définie dans le système." | "Nenhuma relação de correspondência de muitos para muitos definida no sistema." | "Nessuna relazione di abbinamento molti a molti definita nel sistema.";
398
+ static get NoManyToManyMatchingRelationshipDefinedForSelectedDocumentType(): "Keine Mehrfach-Zuordnungsbeziehung für den ausgewählten Dokumenttyp definiert." | "No many-to-many matching relationship defined for selected document type." | "Ninguna relación de emparejamiento de muchos a muchos definida para el tipo de documento seleccionado." | "Aucune relation d'association plusieurs à plusieurs définie pour le type de document sélectionné." | "Nenhuma relação de correspondência de muitos para muitos definida para o tipo de documento selecionado." | "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
399
+ static get NoManyToManyUnmatchingRelationshipAssociatedWithRetrievalQuery(): "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung mit Abrufabfrage verknüpft." | "No many-to-many unmatching relationship associated with retrieval query." | "Ninguna relación de desemparejamiento de muchos a muchos asociada con la consulta de recuperación." | "Aucune relation de dissociation plusieurs à plusieurs associée à la requête de récupération." | "Nenhuma relação de descorrespondência de muitos para muitos associada à consulta de recuperação." | "Nessuna query di recupero associata alla relazione di disabbinamento molti a molti.";
400
+ static get NoManyToManyUnmatchingRelationshipDefined(): "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung im System definiert." | "No many-to-many unmatching relationship defined in the system." | "Ninguna relación de desemparejamiento de muchos a muchos definida en el sistema." | "Aucune relation de dissociation plusieurs à plusieurs définie dans le système." | "Nenhuma relação de descorrespondência de muitos para muitos definida no sistema." | "Nessuna relazione di disabbinamento molti a molti definita nel sistema.";
401
+ static get NoManyToManyUnmatchingRelationshipDefinedForSelectedDocumentType(): "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato." | "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung für den ausgewählten Dokumenttyp definiert." | "No many-to-many unmatching relationship defined for selected document type." | "Ninguna relación de desemparejamiento de muchos a muchos definida para el tipo de documento seleccionado." | "Aucune relation de dissociation plusieurs à plusieurs définie pour le type de document sélectionné." | "Nenhuma relação de descorrespondência de muitos para muitos definida para o tipo de documento selecionado.";
402
+ static get NoMasterDocumentFoundForArchiving(): "Kein Master-Dokument zur Archivierung gefunden." | "No master document found for archiving." | "No se encontró ningún documento maestro para archivar." | "Aucun document maître trouvé pour l'archivage." | "Nenhum documento mestre encontrado para arquivamento." | "Nessun documento di master trovato per l'archiviazione";
403
+ static get NoMatchFoundForDetailDocuments(): "Keine Zuordnung für Detaildokumente gefunden." | "No match found for detail documents." | "No se encontró ninguna correspondencia para los documentos de detalle." | "Aucune correspondance trouvée pour les documents détail." | "Nenhuma correspondência encontrada para documentos de detalhe." | "Nessuna associazione trovata per i documenti di dettaglio";
404
+ static get NoMatchFoundForMasterDocuments(): "Keine Zuordnung für Master-Dokumente gefunden." | "No match found for master documents." | "No se encontró ninguna correspondencia para los documentos maestros." | "Aucune correspondance trouvée pour les documents maîtres." | "Nenhuma correspondência encontrada para documentos mestres." | "Nessuna associazione trovata per i documenti di master";
380
405
  static get NoMessages(): string;
381
406
  static get NoMessagesFound(): string;
382
407
  static get NoPanelSelected(): string;
@@ -445,13 +470,11 @@ export declare class SDKUI_Localizator {
445
470
  static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
446
471
  static get PhysicalHistoryDeletion(): string;
447
472
  static get Postponed(): "Verschoben" | "Postponed" | "Aplazada" | "Reportée" | "Adiadas" | "Rinviata";
448
- static get Practice(): "Praxis" | "Practice" | "Práctica" | "Pratique" | "Prática" | "Pratica";
449
473
  static get PreparingFileForArchive(): "Datei für Archivierung vorbereiten..." | "Preparing file for archive..." | "Preparando archivo para archivar..." | "Préparation du fichier pour l'archive..." | "Preparando arquivo para arquivar..." | "Preparazione del file per l'archivio...";
450
474
  static get Preview(): "Vorschau" | "Preview" | "Vista previa" | "Aperçu" | "Pré-visualização" | "Anteprima";
451
475
  static get PreviewDocument(): "Vorschau-Dokument" | "Preview document" | "Documento de vista previa" | "Document d'aperçu" | "Documento de pré-visualização" | "Anteprima documento";
452
476
  static get PreviewNotAvailable(): "Vorschau ist nicht verfügbar." | "Preview is not available." | "La vista previa no está disponible." | "L'aperçu n'est pas disponible." | "A pré-visualização não está disponível." | "Anteprima non disponibile.";
453
477
  static get PreviewNotAvailableOnDevice(): string;
454
- static get PreviewView(): string;
455
478
  static get Previous(): "Vorherige" | "Previous" | "Anterior" | "Précédent" | "Precedente";
456
479
  static get Priority(): string;
457
480
  static get PriorityLegend(): "Legende der Prioritäten" | "Priority Legend" | "Leyenda de prioridades" | "Légende des priorités" | "Lenda das prioridades" | "Legenda delle priorità";
@@ -542,6 +565,8 @@ export declare class SDKUI_Localizator {
542
565
  static get SharingModes_Private(): "Privat" | "Private" | "Privada" | "Privé" | "Privado" | "Privata";
543
566
  static get SharingModes_Public(): "Öffentlich" | "Public" | "Pública" | "Público" | "Pubblica";
544
567
  static get SharingModes_Shared(): "Geteilt" | "Shared" | "Compartida" | "Partagé" | "Partilhada" | "Condivisa";
568
+ static get SharedArchiving(): "Gemeinsame Archivierung" | "Shared archiving" | "Archivo compartido" | "Archivage partagé" | "Arquivamento compartilhado" | "Archiviazione condivisa";
569
+ static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
545
570
  static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
546
571
  static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
547
572
  static get ShowFloatingBar(): string;
@@ -553,6 +578,7 @@ export declare class SDKUI_Localizator {
553
578
  static get ShowHideMetadataSystemDesc(): "Anzeigen oder Verbergen von Methadaten des Dokumententypsystems" | "Shows/hides system metadata of selected document type" | "Ver u ocultar los metadatos de sistema del tipo de documento" | "Visualise ou cache les métadonnées de système du type de document" | "Mostra ou oculta o tipo de documento de metadados do sistema" | "Visualizza o nasconde i metadati di sistema del tipo documento";
554
579
  static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
555
580
  static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
581
+ static get ShowSharedDocuments(): "Gemeinsame Dokumente anzeigen" | "Show shared documents" | "Mostrar documentos compartidos" | "Afficher les documents partagés" | "Mostrar documentos compartilhados" | "Mostra documenti condivisi";
556
582
  static get ShowColumnSeparatingLines(): string;
557
583
  static get ShowRowSeparatingLines(): string;
558
584
  static get ShowFullScreen(): "Vollbild anzeigen" | "Show full screen" | "Mostrar pantalla completa" | "Afficher en plein écran" | "Mostrar em tela cheia" | "Mostra a schermo intero";
@@ -605,6 +631,8 @@ export declare class SDKUI_Localizator {
605
631
  static get UnableToGetUpdatedDocumentContent(): "Aktualisierter Dokumentinhalt kann nicht abgerufen werden" | "Unable to get updated document content" | "No se puede obtener el contenido actualizado del documento" | "Impossible d'obtenir le contenu mis à jour du document" | "Não é possível obter o conteúdo atualizado do documento" | "Impossibile ottenere il contenuto aggiornato del documento";
606
632
  static get Undo(): "Änderungen rückgängig machen" | "Undo" | "Anular modificaciones" | "Annule les modifications" | "Anular alterações" | "Annulla modifiche";
607
633
  static get Unfollow(): "Nicht mehr folgen" | "Unfollow" | "Dejar de seguir" | "Ne plus suivre" | "Deixar de seguir" | "Non seguire più";
634
+ static get Unmatch(): "Zuordnung aufheben" | "Unmatch" | "Desemparejar" | "Dissocier" | "Descorresponder" | "Disabbina";
635
+ static get UnmatchManyDocumentsManyToMany(): "Mehrfache Zuordnung von vielen Dokumenten aufheben" | "Unmatch many documents many to many" | "Desemparejar muchos documentos de muchos a muchos" | "Dissocier plusieurs documents plusieurs à plusieurs" | "Descorresponder muitos documentos de muitos para muitos" | "Disabbina documenti molti a molti";
608
636
  static get UnfollowSelectedItem(): string;
609
637
  static get Update(): "Bearbeiten" | "Update" | "Modificar" | "Modifie" | "Modificação" | "Modifica";
610
638
  static get UpdateCompletedSuccessfully(): "Aktualisierung erfolgreich abgeschlossen" | "Update completed successfully" | "Actualización completada con éxito" | "Mise à jour terminée avec succès" | "Atualização concluída com sucesso" | "Aggiornamento completato con successo";
@@ -648,6 +676,8 @@ export declare class SDKUI_Localizator {
648
676
  static get Workflow(): "Arbeitsablauf" | "Workflow" | "Flujo de trabajo" | "Flux de travail" | "Fluxo de trabalho" | "Flusso di lavoro";
649
677
  static get WorkflowAddDcmtToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppendokumenten" | "Add the document to the workgroup documents" | "Añadir el documento a los documentos del grupo de trabajo" | "Ajouter le document aux documents du groupe de travail" | "Adicione o documento aos documentos do grupo de trabalho" | "Aggiungere il documento ai documenti del gruppo di lavoro";
650
678
  static get WorkflowAddDraftToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppenentwürfen" | "Add the document to the workgroup drafts" | "Añadir el documento a los borradores del grupo de trabajo" | "Ajouter le document au brouillon du groupe de travail" | "Adicione o documento ao rascunho do grupo de trabalho" | "Aggiungere il documento alle bozze del gruppo di lavoro";
679
+ static get WorkflowAddDcmtAsAttachment(): "Dokument als Anhang zur Praxis hinzufügen" | "Add the document as an attachment to the case" | "Agregar el documento como adjunto al expediente" | "Ajouter le document en tant que pièce jointe au dossier" | "Adicionar o documento como anexo ao processo" | "Aggiungere il documento come allegato della pratica";
680
+ static get WorkflowAddDcmtToDossier(): "Dokument zur Praxis hinzufügen" | "Add the document to the case" | "Agregar el documento al expediente" | "Ajouter le document au dossier" | "Adicionar o documento ao processo" | "Aggiungere il documento alla pratica";
651
681
  static get WorkflowAllowZeroTos(): "0 Empfänger zulassen" | "Allow 0 recipients" | "Permitir 0 destinatarios" | "Autoriser 0 destinataires" | "Permitir 0 destinatários" | "Consenti 0 destinatari";
652
682
  static get WorkflowApproval(): "Workflow-Genehmigung" | "Workflow approval" | "Aprobación de flujo de trabajo" | "Approbation de workflow" | "Aprovação de fluxo de trabalho" | "Approvazione workflow";
653
683
  static get WorkflowAppName(): "Name der Anwendung" | "Application name" | "Nombre de aplicación" | "Nom de l'application" | "Nome da aplicação" | "Nome applicazione";
@@ -701,6 +731,8 @@ export declare class SDKUI_Localizator {
701
731
  static get WorkitemReassign(): string;
702
732
  static get WorkitemsToApproveNone(): "Kein Workitem für dieses Dokument zur Genehmigung vorhanden" | "No workitems to approve for this document" | "No hay workitems para aprobar para este documento" | "Aucun workitem à approuver pour ce document" | "Nenhum workitem para aprovar para este documento" | "Nessun workitem da approvare per questo documento";
703
733
  static get WrittenOn(): "Geschrieben am" | "Written on" | "Escrito el" | "Écrit le" | "Escrito em" | "Scritto il";
734
+ static get YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType(): "Sie haben keine Berechtigung, Detaildokumente dieses Typs zu archivieren." | "You do not have permissions to archive detail documents of this type." | "No tienes permisos para archivar documentos de detalle de este tipo." | "Vous n'avez pas les permissions pour archiver les documents détail de ce type." | "Você não tem permissões para arquivar documentos de detalhe deste tipo." | "Non hai i permessi per archiviare documenti di dettaglio di questo tipo.";
735
+ static get YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType(): "Sie haben keine Berechtigung, Master-Dokumente dieses Typs zu archivieren." | "You do not have permissions to archive master documents of this type." | "No tienes permisos para archivar documentos maestros de este tipo." | "Vous n'avez pas les permissions pour archiver les documents maîtres de ce type." | "Você não tem permissões para arquivar documentos mestres deste tipo." | "Non hai i permessi per archiviare documenti master di questo tipo.";
704
736
  static get Yes(): "Ja" | "Yes" | "Sí" | "Oui" | "Sim" | "Sì";
705
737
  static get ZoomIn(): "Vergrößern" | "Zoom in" | "Acercar" | "Zoom avant" | "Aumentar zoom" | "Ingrandisci";
706
738
  static get ZoomOut(): "Verkleinern" | "Zoom out" | "Alejar" | "Zoom arrière" | "Diminuir zoom" | "Riduci";