@topconsultnpm/sdkui-react 6.20.0-dev1.7 → 6.20.0-dev1.70
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/lib/components/NewComponents/ContextMenu/TMContextMenu.js +258 -17
- package/lib/components/NewComponents/ContextMenu/hooks.d.ts +2 -0
- package/lib/components/NewComponents/ContextMenu/hooks.js +17 -4
- package/lib/components/NewComponents/ContextMenu/index.d.ts +3 -0
- package/lib/components/NewComponents/ContextMenu/index.js +2 -0
- package/lib/components/NewComponents/ContextMenu/styles.d.ts +5 -1
- package/lib/components/NewComponents/ContextMenu/styles.js +59 -31
- package/lib/components/NewComponents/ContextMenu/types.d.ts +13 -0
- package/lib/components/NewComponents/ContextMenu/useLongPress.d.ts +21 -0
- package/lib/components/NewComponents/ContextMenu/useLongPress.js +112 -0
- package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.js +517 -100
- package/lib/components/NewComponents/FloatingMenuBar/styles.d.ts +19 -5
- package/lib/components/NewComponents/FloatingMenuBar/styles.js +206 -54
- package/lib/components/NewComponents/FloatingMenuBar/types.d.ts +1 -2
- package/lib/components/base/TMAccordionNew.js +35 -14
- package/lib/components/base/TMCustomButton.js +61 -17
- package/lib/components/base/TMDataGrid.d.ts +7 -4
- package/lib/components/base/TMDataGrid.js +142 -11
- package/lib/components/base/TMDropDownMenu.js +19 -18
- package/lib/components/base/TMPanel.js +1 -1
- package/lib/components/choosers/TMInvoiceRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMMetadataChooser.js +8 -1
- package/lib/components/choosers/TMOrderRetrieveFormats.js +1 -1
- package/lib/components/choosers/TMUserChooser.d.ts +0 -5
- package/lib/components/choosers/TMUserChooser.js +25 -45
- package/lib/components/editors/TMMetadataValues.js +23 -5
- package/lib/components/editors/TMTextBox.js +6 -3
- package/lib/components/features/documents/TMDcmtForm.d.ts +13 -1
- package/lib/components/features/documents/TMDcmtForm.js +386 -194
- package/lib/components/features/documents/TMDcmtPreview.js +41 -105
- package/lib/components/features/documents/TMMasterDetailDcmts.js +37 -52
- package/lib/components/features/documents/TMRelationViewer.d.ts +1 -1
- package/lib/components/features/documents/TMRelationViewer.js +2 -2
- package/lib/components/features/search/TMDcmtCheckoutInfoForm.d.ts +8 -0
- package/lib/components/features/search/{TMSearchResultCheckoutInfoForm.js → TMDcmtCheckoutInfoForm.js} +5 -10
- package/lib/components/features/search/TMSavedQuerySelector.js +72 -67
- package/lib/components/features/search/TMSearch.js +41 -9
- package/lib/components/features/search/TMSearchQueryPanel.d.ts +1 -0
- package/lib/components/features/search/TMSearchQueryPanel.js +19 -18
- package/lib/components/features/search/TMSearchResult.js +118 -242
- package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +3 -3
- package/lib/components/features/search/TMSearchResultsMenuItems.js +205 -169
- package/lib/components/features/search/TMSignSettingsForm.js +1 -1
- package/lib/components/features/search/TMSignatureInfoContent.d.ts +6 -0
- package/lib/components/features/search/TMSignatureInfoContent.js +140 -0
- package/lib/components/features/search/TMViewHistoryDcmt.js +1 -1
- package/lib/components/features/tasks/TMTaskForm.js +20 -1
- package/lib/components/features/tasks/TMTasksUtils.d.ts +2 -2
- package/lib/components/features/tasks/TMTasksUtils.js +62 -52
- package/lib/components/features/tasks/TMTasksView.js +6 -6
- package/lib/components/features/workflow/TMWorkflowPopup.d.ts +33 -2
- package/lib/components/features/workflow/TMWorkflowPopup.js +134 -24
- package/lib/components/features/workflow/diagram/DiagramItemComponent.d.ts +1 -0
- package/lib/components/features/workflow/diagram/DiagramItemComponent.js +2 -3
- package/lib/components/features/workflow/diagram/RecipientList.js +3 -2
- package/lib/components/features/workflow/diagram/WFDiagram.d.ts +2 -0
- package/lib/components/features/workflow/diagram/WFDiagram.js +21 -4
- package/lib/components/forms/Login/LoginValidatorService.d.ts +2 -0
- package/lib/components/forms/Login/LoginValidatorService.js +7 -2
- package/lib/components/forms/Login/TMLoginForm.js +34 -6
- package/lib/components/forms/TMChooserForm.js +1 -1
- package/lib/components/grids/TMBlogsPost.js +55 -30
- package/lib/components/grids/TMRecentsManager.js +20 -10
- package/lib/components/index.d.ts +4 -0
- package/lib/components/index.js +4 -0
- package/lib/components/settings/SettingsAppearance.js +92 -29
- package/lib/components/viewers/TMDataListItemViewer.d.ts +2 -1
- package/lib/components/viewers/TMDataListItemViewer.js +35 -71
- package/lib/components/viewers/TMDataUserIdItemViewer.d.ts +8 -0
- package/lib/components/viewers/TMDataUserIdItemViewer.js +39 -0
- package/lib/css/tm-sdkui.css +1 -1
- package/lib/helper/SDKUI_Globals.d.ts +19 -0
- package/lib/helper/SDKUI_Globals.js +11 -0
- package/lib/helper/SDKUI_Localizator.d.ts +15 -1
- package/lib/helper/SDKUI_Localizator.js +147 -1
- package/lib/helper/TMIcons.d.ts +2 -0
- package/lib/helper/TMIcons.js +6 -0
- package/lib/helper/TMPdfViewer.d.ts +8 -0
- package/lib/helper/TMPdfViewer.js +373 -0
- package/lib/helper/checkinCheckoutManager.d.ts +32 -2
- package/lib/helper/checkinCheckoutManager.js +115 -38
- package/lib/helper/devextremeCustomMessages.d.ts +30 -0
- package/lib/helper/devextremeCustomMessages.js +30 -0
- package/lib/helper/helpers.d.ts +2 -1
- package/lib/helper/helpers.js +14 -3
- package/lib/helper/index.d.ts +1 -0
- package/lib/helper/index.js +1 -0
- package/lib/helper/queryHelper.d.ts +1 -1
- package/lib/helper/queryHelper.js +33 -3
- package/lib/hooks/useCheckInOutOperations.d.ts +28 -0
- package/lib/hooks/useCheckInOutOperations.js +223 -0
- package/lib/hooks/useDataListItem.d.ts +12 -0
- package/lib/hooks/useDataListItem.js +131 -0
- package/lib/hooks/useDataUserIdItem.d.ts +10 -0
- package/lib/hooks/useDataUserIdItem.js +96 -0
- package/lib/hooks/useSettingsFeedback.d.ts +11 -0
- package/lib/hooks/useSettingsFeedback.js +38 -0
- package/lib/hooks/useWorkflowApprove.d.ts +4 -0
- package/lib/hooks/useWorkflowApprove.js +14 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/ts/types.d.ts +58 -1
- package/lib/utils/theme.d.ts +1 -1
- package/lib/utils/theme.js +1 -1
- package/package.json +5 -2
- package/lib/components/NewComponents/Notification/Notification.d.ts +0 -4
- package/lib/components/NewComponents/Notification/Notification.js +0 -60
- package/lib/components/NewComponents/Notification/NotificationContainer.d.ts +0 -8
- package/lib/components/NewComponents/Notification/NotificationContainer.js +0 -33
- package/lib/components/NewComponents/Notification/index.d.ts +0 -2
- package/lib/components/NewComponents/Notification/index.js +0 -2
- package/lib/components/NewComponents/Notification/styles.d.ts +0 -21
- package/lib/components/NewComponents/Notification/styles.js +0 -180
- package/lib/components/NewComponents/Notification/types.d.ts +0 -18
- package/lib/components/NewComponents/Notification/types.js +0 -1
- package/lib/components/features/search/TMSearchResultCheckoutInfoForm.d.ts +0 -8
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useEffect, useState } from 'react';
|
|
3
|
+
import { IconWarning, SDKUI_Localizator } from '../../helper';
|
|
4
|
+
import TMTooltip from '../base/TMTooltip';
|
|
5
|
+
import { TMExceptionBoxManager } from '../base/TMPopUp';
|
|
6
|
+
import { useDataUserIdItem } from '../../hooks/useDataUserIdItem';
|
|
7
|
+
import { TMColors } from '../../utils/theme';
|
|
8
|
+
const TMDataUserIdItemViewer = ({ userId, showIcon = false }) => {
|
|
9
|
+
const { loadUsersAsync, getUserItem, renderUserIdViewer } = useDataUserIdItem();
|
|
10
|
+
const [userItem, setUserItem] = useState(undefined);
|
|
11
|
+
useEffect(() => {
|
|
12
|
+
const loadData = async () => {
|
|
13
|
+
if (userId && userId > 0) {
|
|
14
|
+
try {
|
|
15
|
+
await loadUsersAsync(new Set([userId]));
|
|
16
|
+
const item = getUserItem(userId);
|
|
17
|
+
setUserItem(item);
|
|
18
|
+
}
|
|
19
|
+
catch (err) {
|
|
20
|
+
TMExceptionBoxManager.show({ exception: err });
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
setUserItem(undefined);
|
|
25
|
+
}
|
|
26
|
+
};
|
|
27
|
+
loadData();
|
|
28
|
+
}, [userId, loadUsersAsync, getUserItem]);
|
|
29
|
+
if (!userId || userId <= 0) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
const content = renderUserIdViewer(userId, showIcon);
|
|
33
|
+
return userItem ? content :
|
|
34
|
+
_jsx(TMTooltip, { content: SDKUI_Localizator.ValueNotPresent, children: _jsx(IconWarning, { color: TMColors.warning }) });
|
|
35
|
+
};
|
|
36
|
+
export default TMDataUserIdItemViewer;
|
|
37
|
+
export const cellRenderUserIdItem = (data, showIcon) => {
|
|
38
|
+
return (_jsx(TMDataUserIdItemViewer, { userId: data.value, showIcon: showIcon }));
|
|
39
|
+
};
|
package/lib/css/tm-sdkui.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap";@import"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap";*{margin:0;padding:0;box-sizing:border-box;font-family:"Open Sans",sans-serif}.tm-tooltip-container-base,.tm-tooltip-container-base-right,.tm-tooltip-container-base-bottom,.tm-tooltip-container-base-left,.tm-tooltip-container-base-top{position:absolute;width:max-content;height:max-content;border-radius:5px;user-select:none;z-index:20000070}.tm-tooltip-container-base-top{top:-0.8rem;left:0;transform:translateY(-100%)}.tm-tooltip-container-base-left{left:-0.8rem;top:0;transform:translateX(-100%)}.tm-tooltip-container-base-bottom{bottom:-0.8rem;left:0;transform:translateY(100%)}.tm-tooltip-container-base-right{right:-0.8rem;top:0;transform:translateX(100%)}.tm-tooltip-arrow,.tm-tooltip-arrow-right,.tm-tooltip-arrow-left,.tm-tooltip-arrow-top,.tm-tooltip-arrow-bottom{position:absolute;width:0;height:0;z-index:50000}.tm-tooltip-arrow-bottom{top:-8px;left:8px;border-bottom:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-top{bottom:-8px;left:8px;border-top:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-left{top:8px;right:-8px;border-left:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-right{top:8px;left:-8px;border-right:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}#user-credentials-popup .dx-accordion-item-title::before{content:none !important}*{margin:0;padding:0;box-sizing:border-box;font-family:"Open Sans",sans-serif}.tm-tooltip-container-base,.tm-tooltip-container-base-top,.tm-tooltip-container-base-left,.tm-tooltip-container-base-bottom,.tm-tooltip-container-base-right{position:absolute;width:max-content;height:max-content;border-radius:5px;user-select:none;z-index:20000070}.tm-tooltip-container-base-top{top:-0.8rem;left:0;transform:translateY(-100%)}.tm-tooltip-container-base-left{left:-0.8rem;top:0;transform:translateX(-100%)}.tm-tooltip-container-base-bottom{bottom:-0.8rem;left:0;transform:translateY(100%)}.tm-tooltip-container-base-right{right:-0.8rem;top:0;transform:translateX(100%)}.tm-tooltip-arrow,.tm-tooltip-arrow-bottom,.tm-tooltip-arrow-top,.tm-tooltip-arrow-left,.tm-tooltip-arrow-right{position:absolute;width:0;height:0;z-index:50000}.tm-tooltip-arrow-bottom{top:-8px;left:8px;border-bottom:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-top{bottom:-8px;left:8px;border-top:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-left{top:8px;right:-8px;border-left:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-right{top:8px;left:-8px;border-right:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}#user-credentials-popup .dx-accordion-item-title::before{content:none !important}@keyframes show-error{0%{display:none;opacity:0;z-index:20000999}5%{display:block;opacity:1;z-index:20000999}95%{display:block;opacity:1;z-index:20000999}100%{opacity:0;display:none;z-index:20000999}}.tm-alert-animation-style{animation:show-error both;animation-timing-function:linear;animation-iteration-count:none;z-index:20000999}.tm-alert-container{position:absolute;width:100%;height:100%;z-index:20000999}@keyframes loading{from{width:0}to{width:100%}}.tm-alert-loading{width:100%;height:5px;position:absolute;bottom:0;left:0;animation:loading;animation-duration:5000ms}.tm-alert-icon{position:absolute;width:22px;height:22px;background-color:#fff;top:"20px";left:"20px";border-radius:50%;display:flex;align-items:center;justify-content:center}.dx-context-menu.dx-overlay-content{height:auto !important;max-height:none !important}.dx-context-menu .dx-menu-items-container{max-height:none !important}.custom-mentions-wrapper span.dx-mention span[contenteditable=false]>span:first-child{font-size:0;width:0;display:inline-block;overflow:hidden}.custom-mentions-wrapper span.dx-mention{color:#2559a5;font-weight:bold;background-color:rgba(0,0,0,0)}
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap";@import"https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap";*{margin:0;padding:0;box-sizing:border-box;font-family:"Open Sans",sans-serif}.tm-tooltip-container-base,.tm-tooltip-container-base-right,.tm-tooltip-container-base-bottom,.tm-tooltip-container-base-left,.tm-tooltip-container-base-top{position:absolute;width:max-content;height:max-content;border-radius:5px;user-select:none;z-index:20000070}.tm-tooltip-container-base-top{top:-0.8rem;left:0;transform:translateY(-100%)}.tm-tooltip-container-base-left{left:-0.8rem;top:0;transform:translateX(-100%)}.tm-tooltip-container-base-bottom{bottom:-0.8rem;left:0;transform:translateY(100%)}.tm-tooltip-container-base-right{right:-0.8rem;top:0;transform:translateX(100%)}.tm-tooltip-arrow,.tm-tooltip-arrow-right,.tm-tooltip-arrow-left,.tm-tooltip-arrow-top,.tm-tooltip-arrow-bottom{position:absolute;width:0;height:0;z-index:50000}.tm-tooltip-arrow-bottom{top:-8px;left:8px;border-bottom:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-top{bottom:-8px;left:8px;border-top:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-left{top:8px;right:-8px;border-left:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-right{top:8px;left:-8px;border-right:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}#user-credentials-popup .dx-accordion-item-title::before{content:none !important}*{margin:0;padding:0;box-sizing:border-box;font-family:"Open Sans",sans-serif}.tm-tooltip-container-base,.tm-tooltip-container-base-top,.tm-tooltip-container-base-left,.tm-tooltip-container-base-bottom,.tm-tooltip-container-base-right{position:absolute;width:max-content;height:max-content;border-radius:5px;user-select:none;z-index:20000070}.tm-tooltip-container-base-top{top:-0.8rem;left:0;transform:translateY(-100%)}.tm-tooltip-container-base-left{left:-0.8rem;top:0;transform:translateX(-100%)}.tm-tooltip-container-base-bottom{bottom:-0.8rem;left:0;transform:translateY(100%)}.tm-tooltip-container-base-right{right:-0.8rem;top:0;transform:translateX(100%)}.tm-tooltip-arrow,.tm-tooltip-arrow-bottom,.tm-tooltip-arrow-top,.tm-tooltip-arrow-left,.tm-tooltip-arrow-right{position:absolute;width:0;height:0;z-index:50000}.tm-tooltip-arrow-bottom{top:-8px;left:8px;border-bottom:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-top{bottom:-8px;left:8px;border-top:9px solid #fff;border-left:9px solid rgba(0,0,0,0);border-right:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-left{top:8px;right:-8px;border-left:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}.tm-tooltip-arrow-right{top:8px;left:-8px;border-right:9px solid #fff;border-top:9px solid rgba(0,0,0,0);border-bottom:9px solid rgba(0,0,0,0)}#user-credentials-popup .dx-accordion-item-title::before{content:none !important}@keyframes show-error{0%{display:none;opacity:0;z-index:20000999}5%{display:block;opacity:1;z-index:20000999}95%{display:block;opacity:1;z-index:20000999}100%{opacity:0;display:none;z-index:20000999}}.tm-alert-animation-style{animation:show-error both;animation-timing-function:linear;animation-iteration-count:none;z-index:20000999}.tm-alert-container{position:absolute;width:100%;height:100%;z-index:20000999}@keyframes loading{from{width:0}to{width:100%}}.tm-alert-loading{width:100%;height:5px;position:absolute;bottom:0;left:0;animation:loading;animation-duration:5000ms}.tm-alert-icon{position:absolute;width:22px;height:22px;background-color:#fff;top:"20px";left:"20px";border-radius:50%;display:flex;align-items:center;justify-content:center}.dx-context-menu.dx-overlay-content{height:auto !important;max-height:none !important}.dx-context-menu .dx-menu-items-container{max-height:none !important}.custom-mentions-wrapper span.dx-mention span[contenteditable=false]>span:first-child{font-size:0;width:0;display:inline-block;overflow:hidden}.custom-mentions-wrapper span.dx-mention{color:#2559a5;font-weight:bold;background-color:rgba(0,0,0,0)}.dx-treeview-node.dx-treeview-item-with-checkbox.dx-state-selected.dx-treeview-root-node.dx-treeview-node-is-leaf[aria-disabled=true]{display:none !important}
|
|
@@ -54,6 +54,25 @@ export declare class SearchSettings {
|
|
|
54
54
|
mruTIDs: number[];
|
|
55
55
|
defaultTree: number;
|
|
56
56
|
previewThreshold: number;
|
|
57
|
+
pageSize: number;
|
|
58
|
+
maxDcmtsToBeReturned: number;
|
|
59
|
+
floatingMenuBar: FloatingMenuBarSettings;
|
|
60
|
+
panelLayout: {
|
|
61
|
+
[id: string]: {
|
|
62
|
+
visible: boolean;
|
|
63
|
+
width: string;
|
|
64
|
+
height: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
export declare class FloatingMenuBarSettings {
|
|
69
|
+
orientation: 'horizontal' | 'vertical';
|
|
70
|
+
itemIds: string[];
|
|
71
|
+
position: {
|
|
72
|
+
x: number;
|
|
73
|
+
y: number;
|
|
74
|
+
};
|
|
75
|
+
positionFormat?: 'pixels' | 'percentage';
|
|
57
76
|
}
|
|
58
77
|
export declare class ArchivingSettings {
|
|
59
78
|
mruTIDs: number[];
|
|
@@ -98,6 +98,17 @@ export class SearchSettings {
|
|
|
98
98
|
this.mruTIDs = [];
|
|
99
99
|
this.defaultTree = -1;
|
|
100
100
|
this.previewThreshold = 500; // KB
|
|
101
|
+
this.pageSize = 100;
|
|
102
|
+
this.maxDcmtsToBeReturned = 200;
|
|
103
|
+
this.floatingMenuBar = new FloatingMenuBarSettings();
|
|
104
|
+
this.panelLayout = {};
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
export class FloatingMenuBarSettings {
|
|
108
|
+
constructor() {
|
|
109
|
+
this.orientation = 'horizontal';
|
|
110
|
+
this.itemIds = ['rel-det', 'rel-mst', 'dl'];
|
|
111
|
+
this.position = { x: 1, y: 90 };
|
|
101
112
|
}
|
|
102
113
|
}
|
|
103
114
|
export class ArchivingSettings {
|
|
@@ -24,6 +24,7 @@ export declare class SDKUI_Localizator {
|
|
|
24
24
|
static get AddTo(): string;
|
|
25
25
|
static get AddToHomePage(): "Zur Startseite hinzufügen" | "Add to Home Page" | "Añadir a la página inicial" | "Ajoute à Home Page" | "Adicionar a Home Page" | "Aggiungi alla Home Page";
|
|
26
26
|
static get Advanced(): "Erweitert" | "Advanced" | "Avanzado" | "Avancé" | "Avançado" | "Avanzate";
|
|
27
|
+
static get AggregateSearch(): "Aggregierte Suche" | "Aggregate search" | "Búsqueda agregada" | "Recherche agrégée" | "Pesquisa agregada" | "Ricerca aggregata";
|
|
27
28
|
static get All(): "Alle" | "All" | "Todos" | "Tous" | "Tutti";
|
|
28
29
|
static get AllFemale(): "Alle" | "All" | "Todas" | "Toutes" | "Tutte";
|
|
29
30
|
static get AllDcmts(): "Alle Dokumente" | "All documents" | "Todos los documentos" | "Tous les documents" | "Todos os documentos" | "Tutti i documenti";
|
|
@@ -83,6 +84,7 @@ export declare class SDKUI_Localizator {
|
|
|
83
84
|
static get CancelCheckOut(): string;
|
|
84
85
|
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";
|
|
85
86
|
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";
|
|
87
|
+
static get CassettoDoganaleExportEUR1(): "EUR1-Erholung für den Export" | "EUR1 recovery for export" | "Recuperación EUR1 para exportación" | "Récupération EUR1 pour l'export" | "Recuperação EUR1 para exportação" | "Recupero EUR1 per Export";
|
|
86
88
|
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";
|
|
87
89
|
static get CassettoDoganalePlus_UserName(): "STD-Benutzer des ADM-Portals" | "STD User of the ADM Portal" | "Usuario STD del Portal ADM" | "Utilisateur STD du portail ADM" | "Utilizador DST do Portal ADM" | "Utente STD del Portale ADM";
|
|
88
90
|
static get Cancel(): "Abbrechen" | "Cancel" | "Anular" | "Annuler" | "Cancelar" | "Annulla";
|
|
@@ -204,7 +206,7 @@ export declare class SDKUI_Localizator {
|
|
|
204
206
|
static get DownloadXMLAttachments(): string;
|
|
205
207
|
static get Draft(): string;
|
|
206
208
|
static get Drafts(): string;
|
|
207
|
-
static get DropFileHere(): "Ziehen Sie Ihre Datei hierher" | "Drop your file here" | "Suelta tu archivo aquí" | "Déposez votre fichier ici" | "Solte seu arquivo aqui";
|
|
209
|
+
static get DropFileHere(): "Ziehen Sie Ihre Datei hierher" | "Drop your file here" | "Suelta tu archivo aquí" | "Déposez votre fichier ici" | "Solte seu arquivo aqui" | "Trascina qui il tuo file";
|
|
208
210
|
static get DropFileToShare(): string;
|
|
209
211
|
static get Duplicate(): "Duplikat" | "Duplicate" | "Duplicar" | "Dupliquer" | "Duplicado" | "Duplica";
|
|
210
212
|
static get Duplicate_ConfirmFor1(): "Möchten Sie '{{0}}' duplizieren?" | "Are you sure you want to duplicate '{{0}}'?" | "¿Estás seguro de que deseas duplicar '{{0}}'?" | "Êtes-vous sûr de vouloir dupliquer '{{0}}'?" | "Você tem certeza que deseja duplicar '{{0}}'?" | "Sei sicuro di voler duplicare '{{0}}'?";
|
|
@@ -245,6 +247,8 @@ export declare class SDKUI_Localizator {
|
|
|
245
247
|
static get ExpertMode(): "Expertenmodus" | "Expert mode" | "Modo experto" | "Mode expert" | "Modo especialista" | "Modalità esperto";
|
|
246
248
|
static get Expiring(): "Ablaufend" | "Expiring" | "Por vencer" | "Expirant" | "Vencendo" | "In scadenza";
|
|
247
249
|
static get Export(): "Exportieren" | "Export" | "Exportar" | "Exporter" | "Esporta";
|
|
250
|
+
static get ExportEUR1(): "Exportieren EUR1" | "Export EUR1" | "Exportar EUR1" | "Exporter EUR1" | "Export - EUR1";
|
|
251
|
+
static get ExportEUR1OutputFile(): "Dateipfad für den Export (EUR1)" | "File Path for Export (EUR1)" | "Ruta de archivo para exportación (EUR1)" | "Chemin du fichier à exporter (EUR1)" | "Caminho do arquivo para exportação (EUR1)" | "Percorso del File per Export (EUR1)";
|
|
248
252
|
static get ExportTo(): string;
|
|
249
253
|
static get ExportMRN(): "Exportieren MRN" | "Export MRN" | "Exportar MRN" | "Exporter MRN";
|
|
250
254
|
static get ExportMRNDayBack(): "Anzahl der Tage für die Exportdatenwiederherstellung (MRN)" | "Number of days for export data recovery (MRN)" | "Número de días para la recuperación de datos de exportación (MRN)" | "Nombre de jours pour la récupération des données d'exportation (MRN)" | "Número de dias para recuperação de dados de exportação (MRN)" | "Numero di giorni per il recupero dei dati di Export (MRN)";
|
|
@@ -347,6 +351,7 @@ export declare class SDKUI_Localizator {
|
|
|
347
351
|
static get Login(): string;
|
|
348
352
|
static get LogDelete(): "Löschen der Logik" | "Logical delete" | "Cancelación lógica" | "Suppression logique" | "Lógica de cancelamento" | "Cancellazione logica";
|
|
349
353
|
static get Logout(): "Abmelden" | "Logout" | "Cerrar sesión" | "Déconnexion" | "Sair" | "Esci";
|
|
354
|
+
static get LogScreenFolder(): "Ordner für Screenshot-Protokolle" | "Log screenshot folder" | "Carpeta de registro de capturas de pantalla" | "Dossier de journal des captures d'écran" | "Pasta de log de capturas de tela" | "Cartella di log screenshot";
|
|
350
355
|
static get Low(): "Niedrig" | "Low" | "Baja" | "Faible" | "Baixa" | "Bassa";
|
|
351
356
|
static get MakeEditable(): "Bearbeitbar machen" | "Make editable" | "Hacer editable" | "Rendre modifiable" | "Faça editável" | "Rendi editabile";
|
|
352
357
|
static get Mark(): "Markierung" | "Mark" | "Marca" | "Marque" | "Segno";
|
|
@@ -430,6 +435,7 @@ export declare class SDKUI_Localizator {
|
|
|
430
435
|
static get NoSource(): "Keine Quelle" | "No Source" | "Ninguna fuente" | "Aucune source" | "Nenhuma fonte" | "Nessun Origine";
|
|
431
436
|
static get NoneSelection(): "Keine Auswahl" | "No selection" | "Ninguna selección" | "Pas de sélections" | "Nenhuma seleção" | "Nessuna selezione";
|
|
432
437
|
static get NotAvailable(): string;
|
|
438
|
+
static get MaximumNumberOfResults(): string;
|
|
433
439
|
static get OfSystem(): "Des Systems" | "Of system" | "Del sistema" | "Du système" | "Do sistema" | "Di sistema";
|
|
434
440
|
static get OldPassword(): "Altes Kennwort" | "Old password" | "Contraseña anterior" | "Ancien mot de passe" | "Senha Antiga" | "Password vecchia";
|
|
435
441
|
static get OpenedDocument(): "Dokument geöffnet" | "Document opened" | "Documento abierto" | "Document ouvert" | "Documento aberto" | "Documento aperto";
|
|
@@ -491,6 +497,8 @@ export declare class SDKUI_Localizator {
|
|
|
491
497
|
static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
|
|
492
498
|
static get PhysicalHistoryDeletion(): string;
|
|
493
499
|
static get Postponed(): "Verschoben" | "Postponed" | "Aplazada" | "Reportée" | "Adiadas" | "Rinviata";
|
|
500
|
+
static get PotentiallyUnsafeContent(): "Potenziell unsichere Inhalte" | "Potentially Unsafe Content" | "Contenido potencialmente no seguro" | "Contenu potentiellement non sécurisé" | "Conteúdo potencialmente não seguro" | "Contenuti potenzialmente non sicuri";
|
|
501
|
+
static get PotentiallyUnsafeCodePatternsDetected(): "{{0}} potenziell unsicheres Code-Muster in diesem Dokument erkannt." | "{{0}} potentially unsafe code pattern detected in this document." | "Se han detectado {{0}} patrones de código potencialmente no seguro en este documento." | "{{0}} motifs de code potentiellement non sécurisé détectés dans ce document." | "{{0}} padrões de código potencialmente não seguro detectados neste documento." | "Sono stati rilevati {{0}} pattern di codice potenzialmente non sicuro in questo documento.";
|
|
494
502
|
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...";
|
|
495
503
|
static get Preview(): "Vorschau" | "Preview" | "Vista previa" | "Aperçu" | "Pré-visualização" | "Anteprima";
|
|
496
504
|
static get PreviewDocument(): "Vorschau-Dokument" | "Preview document" | "Documento de vista previa" | "Document d'aperçu" | "Documento de pré-visualização" | "Anteprima documento";
|
|
@@ -530,6 +538,7 @@ export declare class SDKUI_Localizator {
|
|
|
530
538
|
static get ReplaceDocument(): "Dokument ersetzen" | "Replace Document" | "Reemplazar Documento" | "Remplacer le Document" | "Substituir Documento" | "Sostituisci Documento";
|
|
531
539
|
static get Request(): string;
|
|
532
540
|
static get RequestTo(): string;
|
|
541
|
+
static get SearchType(): "Suchtyp" | "Search type" | "Tipo de búsqueda" | "Type de recherche" | "Tipo de pesquisa" | "Tipo di ricerca";
|
|
533
542
|
static get Required(): "Obligatorisch" | "Required" | "Obligatorio" | "Obbligatoire" | "Obrigatório" | "Obbligatorio";
|
|
534
543
|
static get RequiredField(): "Erforderliches Feld" | "Required field" | "Campo obligatorio" | "Champ obligatoire" | "Campo obrigatório" | "Campo Obbligatorio";
|
|
535
544
|
static get RequiredNOT(): "Nicht obligatorisch" | "Not mandatory" | "No obligatorio" | "Pas obligatoire" | "Não é obrigatório" | "Non obbligatorio";
|
|
@@ -546,6 +555,7 @@ export declare class SDKUI_Localizator {
|
|
|
546
555
|
static get Restore(): "Wiederherstellen" | "Restore" | "Restablecer" | "Restaure" | "Restauração" | "Ripristina";
|
|
547
556
|
static get RestoreComment(): "Kommentar wiederherstellen?" | "Restore the comment?" | "¿Restaurar el comentario?" | "Restaurer le commentaire ?" | "Restaurar o comentário?" | "Ripristinare il commento?";
|
|
548
557
|
static get ResultDetails(): string;
|
|
558
|
+
static get ResultsPerPage(): string;
|
|
549
559
|
static get RetrieveFile(): "Dateiwiederherstellung" | "Retrieve file" | "Recuperación archivos" | "Récupération fichier" | "Arquivos de recuperação" | "Recupero file";
|
|
550
560
|
static get Rows(): "Linien" | "rows" | "líneas" | "lignes" | "linhas" | "righe";
|
|
551
561
|
static get Save(): "Speichern" | "Save" | "Guardar" | "Enregistre" | "Salvar" | "Salva";
|
|
@@ -582,6 +592,7 @@ export declare class SDKUI_Localizator {
|
|
|
582
592
|
static get SetAsFavorite(): "Als Favorit festlegen" | "Set as favorite" | "Establecer como favorito" | "Définir comme favori" | "Definir como favorito" | "Imposta come preferito";
|
|
583
593
|
static get SetNamedCredentialsAsPreferred(): "Möchten Sie die Anmeldedaten '{{0}}' als bevorzugt festlegen?" | "Do you want to set the '{{0}}' credentials as preferred?" | "¿Quieres configurar las credenciales '{{0}}' como preferidas?" | "Voulez-vous définir les identifiants '{{0}}' comme préférés ?" | "Deseja definir as credenciais '{{0}}' como preferidas?" | "Vuoi impostare le credenziali '{{0}}' come preferite?";
|
|
584
594
|
static get Settings(): "Einstellungen" | "Settings" | "Ajustes" | "Réglages" | "Definições" | "Impostazioni";
|
|
595
|
+
static get SettingSavedSuccessfully(): string;
|
|
585
596
|
static get Severity(): "Schweregrad" | "Severity" | "Gravedad" | "Gravité" | "Gravidade" | "Gravità";
|
|
586
597
|
static get Share(): string;
|
|
587
598
|
static get ShareNew(): string;
|
|
@@ -592,6 +603,7 @@ export declare class SDKUI_Localizator {
|
|
|
592
603
|
static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
|
|
593
604
|
static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
|
|
594
605
|
static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
|
|
606
|
+
static get ShowColumnSelection(): string;
|
|
595
607
|
static get ShowFloatingBar(): string;
|
|
596
608
|
static get ShowLess(): "Weniger anzeigen" | "Show less" | "Mostrar menos" | "Afficher moins" | "Mostra meno";
|
|
597
609
|
static get Show_CompleteName(): "Vollständigen Namen anzeigen" | "View full name" | "Mostrar nombre completo" | "Afficher le nom complet" | "Mostrar nome completo" | "Visualizza nome completo";
|
|
@@ -625,8 +637,10 @@ export declare class SDKUI_Localizator {
|
|
|
625
637
|
static get Statistics(): "Statistiken" | "Statistics" | "Estadística" | "Statistiques" | "Estatísticas" | "Statistiche";
|
|
626
638
|
static get Status(): "Status" | "Estado" | "Statut" | "Stato";
|
|
627
639
|
static get Subject(): "Betreff" | "Subject" | "Asunto" | "Objet" | "Assunto" | "Oggetto";
|
|
640
|
+
static get SubjectType(): "Betreff-Typ" | "Subject type" | "Tipo de asunto" | "Type de sujet" | "Tipo de assunto" | "Tipo soggetto";
|
|
628
641
|
static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
|
|
629
642
|
static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
|
|
643
|
+
static get TargetedSearch(): "Gezielte Suche" | "Targeted search" | "Búsqueda dirigida" | "Recherche ciblée" | "Pesquisa direcionada" | "Ricerca puntuale";
|
|
630
644
|
static get TaskAssignedMessage(): "Die Aufgabe wurde von Benutzer '{{0}}' zugewiesen. Nur die Felder 'Status' und 'Erinnerung' können bearbeitet werden, da sie für die Person, die mit der Arbeit fortfährt, relevant sind" | "The task was assigned by user '{{0}}'. Only the 'Status' and 'Reminder' fields can be edited, as they are relevant for the person who will continue with the work" | "La tarea fue asignada por el usuario '{{0}}'. Solo se pueden editar los campos 'Estado' y 'Recordatorio', ya que son relevantes para la persona que continuará con el trabajo" | "La tâche a été assignée par l'utilisateur '{{0}}'. Seuls les champs 'Statut' et 'Rappel' peuvent être modifiés, car ils sont pertinents pour la personne qui poursuivra le travail" | "A tarefa foi atribuída pelo usuário '{{0}}'. Apenas os campos 'Status' e 'Lembrete' podem ser editados, pois são relevantes para quem continuará com o trabalho" | "Attività assegnata dall'utente '{{0}}'. Solo i campi 'Stato' e 'Promemoria' possono essere modificati, in quanto sono rilevanti per chi dovrà proseguire con il lavoro";
|
|
631
645
|
static get TaskAssignedToUserMessage(): "Aufgabe zugewiesen an den Benutzer '{{0}}'" | "Task assigned to user '{{0}}'" | "Tarea asignada al usuario '{{0}}'" | "Tâche assignée à l'utilisateur '{{0}}'" | "Tarefa atribuída ao usuário '{{0}}'" | "Attività assegnata all'utente '{{0}}'";
|
|
632
646
|
static get TaskConsideredExpiring(): "Die Aufgabe wird als ablaufend betrachtet, wenn" | "The task is considered expiring if" | "La tarea se considera por vencer si" | "La tâche est considérée comme expirante si" | "A tarefa é considerada vencendo se" | "L'attività è considerata in scadenza se";
|
|
@@ -188,6 +188,16 @@ export class SDKUI_Localizator {
|
|
|
188
188
|
default: return "Avanzate";
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
+
static get AggregateSearch() {
|
|
192
|
+
switch (this._cultureID) {
|
|
193
|
+
case CultureIDs.De_DE: return "Aggregierte Suche";
|
|
194
|
+
case CultureIDs.En_US: return "Aggregate search";
|
|
195
|
+
case CultureIDs.Es_ES: return "Búsqueda agregada";
|
|
196
|
+
case CultureIDs.Fr_FR: return "Recherche agrégée";
|
|
197
|
+
case CultureIDs.Pt_PT: return "Pesquisa agregada";
|
|
198
|
+
default: return "Ricerca aggregata";
|
|
199
|
+
}
|
|
200
|
+
}
|
|
191
201
|
static get All() {
|
|
192
202
|
switch (this._cultureID) {
|
|
193
203
|
case CultureIDs.De_DE: return "Alle";
|
|
@@ -785,6 +795,16 @@ export class SDKUI_Localizator {
|
|
|
785
795
|
default: return "Recupero Visto Uscire per Export";
|
|
786
796
|
}
|
|
787
797
|
}
|
|
798
|
+
static get CassettoDoganaleExportEUR1() {
|
|
799
|
+
switch (this._cultureID) {
|
|
800
|
+
case CultureIDs.De_DE: return "EUR1-Erholung für den Export";
|
|
801
|
+
case CultureIDs.En_US: return "EUR1 recovery for export";
|
|
802
|
+
case CultureIDs.Es_ES: return "Recuperación EUR1 para exportación";
|
|
803
|
+
case CultureIDs.Fr_FR: return "Récupération EUR1 pour l'export";
|
|
804
|
+
case CultureIDs.Pt_PT: return "Recuperação EUR1 para exportação";
|
|
805
|
+
default: return "Recupero EUR1 per Export";
|
|
806
|
+
}
|
|
807
|
+
}
|
|
788
808
|
static get CassettoDoganaleImportMRN() {
|
|
789
809
|
switch (this._cultureID) {
|
|
790
810
|
case CultureIDs.De_DE: return "MRN-Erholung für den Import";
|
|
@@ -1996,7 +2016,7 @@ export class SDKUI_Localizator {
|
|
|
1996
2016
|
case CultureIDs.Es_ES: return "Suelta tu archivo aquí";
|
|
1997
2017
|
case CultureIDs.Fr_FR: return "Déposez votre fichier ici";
|
|
1998
2018
|
case CultureIDs.Pt_PT: return "Solte seu arquivo aqui";
|
|
1999
|
-
default: return "
|
|
2019
|
+
default: return "Trascina qui il tuo file";
|
|
2000
2020
|
}
|
|
2001
2021
|
}
|
|
2002
2022
|
static get DropFileToShare() {
|
|
@@ -2417,6 +2437,26 @@ export class SDKUI_Localizator {
|
|
|
2417
2437
|
default: return "Esporta";
|
|
2418
2438
|
}
|
|
2419
2439
|
}
|
|
2440
|
+
static get ExportEUR1() {
|
|
2441
|
+
switch (this._cultureID) {
|
|
2442
|
+
case CultureIDs.De_DE: return "Exportieren EUR1";
|
|
2443
|
+
case CultureIDs.En_US: return "Export EUR1";
|
|
2444
|
+
case CultureIDs.Es_ES: return "Exportar EUR1";
|
|
2445
|
+
case CultureIDs.Fr_FR: return "Exporter EUR1";
|
|
2446
|
+
case CultureIDs.Pt_PT: return "Exportar EUR1";
|
|
2447
|
+
default: return "Export - EUR1";
|
|
2448
|
+
}
|
|
2449
|
+
}
|
|
2450
|
+
static get ExportEUR1OutputFile() {
|
|
2451
|
+
switch (this._cultureID) {
|
|
2452
|
+
case CultureIDs.De_DE: return "Dateipfad für den Export (EUR1)";
|
|
2453
|
+
case CultureIDs.En_US: return "File Path for Export (EUR1)";
|
|
2454
|
+
case CultureIDs.Es_ES: return "Ruta de archivo para exportación (EUR1)";
|
|
2455
|
+
case CultureIDs.Fr_FR: return "Chemin du fichier à exporter (EUR1)";
|
|
2456
|
+
case CultureIDs.Pt_PT: return "Caminho do arquivo para exportação (EUR1)";
|
|
2457
|
+
default: return "Percorso del File per Export (EUR1)";
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2420
2460
|
static get ExportTo() {
|
|
2421
2461
|
switch (this._cultureID) {
|
|
2422
2462
|
case CultureIDs.De_DE: return "Exportieren nach...";
|
|
@@ -3436,6 +3476,16 @@ export class SDKUI_Localizator {
|
|
|
3436
3476
|
default: return "Esci";
|
|
3437
3477
|
}
|
|
3438
3478
|
}
|
|
3479
|
+
static get LogScreenFolder() {
|
|
3480
|
+
switch (this._cultureID) {
|
|
3481
|
+
case CultureIDs.De_DE: return "Ordner für Screenshot-Protokolle";
|
|
3482
|
+
case CultureIDs.En_US: return "Log screenshot folder";
|
|
3483
|
+
case CultureIDs.Es_ES: return "Carpeta de registro de capturas de pantalla";
|
|
3484
|
+
case CultureIDs.Fr_FR: return "Dossier de journal des captures d'écran";
|
|
3485
|
+
case CultureIDs.Pt_PT: return "Pasta de log de capturas de tela";
|
|
3486
|
+
default: return "Cartella di log screenshot";
|
|
3487
|
+
}
|
|
3488
|
+
}
|
|
3439
3489
|
static get Low() {
|
|
3440
3490
|
switch (this._cultureID) {
|
|
3441
3491
|
case CultureIDs.De_DE: return "Niedrig";
|
|
@@ -4258,6 +4308,16 @@ export class SDKUI_Localizator {
|
|
|
4258
4308
|
default: return "Non disponibile";
|
|
4259
4309
|
}
|
|
4260
4310
|
}
|
|
4311
|
+
static get MaximumNumberOfResults() {
|
|
4312
|
+
switch (this._cultureID) {
|
|
4313
|
+
case CultureIDs.De_DE: return "Maximale Anzahl von Ergebnissen";
|
|
4314
|
+
case CultureIDs.En_US: return "Maximum number of results";
|
|
4315
|
+
case CultureIDs.Es_ES: return "Número máximo de resultados";
|
|
4316
|
+
case CultureIDs.Fr_FR: return "Nombre maximum de résultats";
|
|
4317
|
+
case CultureIDs.Pt_PT: return "Número máximo de resultados";
|
|
4318
|
+
default: return "Numero massimo di risultati";
|
|
4319
|
+
}
|
|
4320
|
+
}
|
|
4261
4321
|
static get OfSystem() {
|
|
4262
4322
|
switch (this._cultureID) {
|
|
4263
4323
|
case CultureIDs.De_DE: return "Des Systems";
|
|
@@ -4868,6 +4928,32 @@ export class SDKUI_Localizator {
|
|
|
4868
4928
|
default: return "Rinviata";
|
|
4869
4929
|
}
|
|
4870
4930
|
}
|
|
4931
|
+
static get PotentiallyUnsafeContent() {
|
|
4932
|
+
switch (this._cultureID) {
|
|
4933
|
+
case CultureIDs.De_DE: return "Potenziell unsichere Inhalte";
|
|
4934
|
+
case CultureIDs.En_US: return "Potentially Unsafe Content";
|
|
4935
|
+
case CultureIDs.Es_ES: return "Contenido potencialmente no seguro";
|
|
4936
|
+
case CultureIDs.Fr_FR: return "Contenu potentiellement non sécurisé";
|
|
4937
|
+
case CultureIDs.Pt_PT: return "Conteúdo potencialmente não seguro";
|
|
4938
|
+
default: return "Contenuti potenzialmente non sicuri";
|
|
4939
|
+
}
|
|
4940
|
+
}
|
|
4941
|
+
static get PotentiallyUnsafeCodePatternsDetected() {
|
|
4942
|
+
switch (this._cultureID) {
|
|
4943
|
+
case CultureIDs.De_DE:
|
|
4944
|
+
return "{{0}} potenziell unsicheres Code-Muster in diesem Dokument erkannt.";
|
|
4945
|
+
case CultureIDs.En_US:
|
|
4946
|
+
return "{{0}} potentially unsafe code pattern detected in this document.";
|
|
4947
|
+
case CultureIDs.Es_ES:
|
|
4948
|
+
return "Se han detectado {{0}} patrones de código potencialmente no seguro en este documento.";
|
|
4949
|
+
case CultureIDs.Fr_FR:
|
|
4950
|
+
return "{{0}} motifs de code potentiellement non sécurisé détectés dans ce document.";
|
|
4951
|
+
case CultureIDs.Pt_PT:
|
|
4952
|
+
return "{{0}} padrões de código potencialmente não seguro detectados neste documento.";
|
|
4953
|
+
default:
|
|
4954
|
+
return "Sono stati rilevati {{0}} pattern di codice potenzialmente non sicuro in questo documento.";
|
|
4955
|
+
}
|
|
4956
|
+
}
|
|
4871
4957
|
static get PreparingFileForArchive() {
|
|
4872
4958
|
switch (this._cultureID) {
|
|
4873
4959
|
case CultureIDs.De_DE: return "Datei für Archivierung vorbereiten...";
|
|
@@ -5265,6 +5351,16 @@ export class SDKUI_Localizator {
|
|
|
5265
5351
|
default: return "Richiedi a";
|
|
5266
5352
|
}
|
|
5267
5353
|
}
|
|
5354
|
+
static get SearchType() {
|
|
5355
|
+
switch (this._cultureID) {
|
|
5356
|
+
case CultureIDs.De_DE: return "Suchtyp";
|
|
5357
|
+
case CultureIDs.En_US: return "Search type";
|
|
5358
|
+
case CultureIDs.Es_ES: return "Tipo de búsqueda";
|
|
5359
|
+
case CultureIDs.Fr_FR: return "Type de recherche";
|
|
5360
|
+
case CultureIDs.Pt_PT: return "Tipo de pesquisa";
|
|
5361
|
+
default: return "Tipo di ricerca";
|
|
5362
|
+
}
|
|
5363
|
+
}
|
|
5268
5364
|
static get Required() {
|
|
5269
5365
|
switch (this._cultureID) {
|
|
5270
5366
|
case CultureIDs.De_DE: return "Obligatorisch";
|
|
@@ -5425,6 +5521,16 @@ export class SDKUI_Localizator {
|
|
|
5425
5521
|
default: return "Dettagli del risultato";
|
|
5426
5522
|
}
|
|
5427
5523
|
}
|
|
5524
|
+
static get ResultsPerPage() {
|
|
5525
|
+
switch (this._cultureID) {
|
|
5526
|
+
case CultureIDs.De_DE: return "Ergebnisse pro Seite";
|
|
5527
|
+
case CultureIDs.En_US: return "Results per page";
|
|
5528
|
+
case CultureIDs.Es_ES: return "Resultados por página";
|
|
5529
|
+
case CultureIDs.Fr_FR: return "Résultats par page";
|
|
5530
|
+
case CultureIDs.Pt_PT: return "Resultados por página";
|
|
5531
|
+
default: return "Risultati per pagina";
|
|
5532
|
+
}
|
|
5533
|
+
}
|
|
5428
5534
|
static get RetrieveFile() {
|
|
5429
5535
|
switch (this._cultureID) {
|
|
5430
5536
|
case CultureIDs.De_DE: return "Dateiwiederherstellung";
|
|
@@ -5786,6 +5892,16 @@ export class SDKUI_Localizator {
|
|
|
5786
5892
|
default: return "Impostazioni";
|
|
5787
5893
|
}
|
|
5788
5894
|
}
|
|
5895
|
+
static get SettingSavedSuccessfully() {
|
|
5896
|
+
switch (this._cultureID) {
|
|
5897
|
+
case CultureIDs.De_DE: return "Einstellung erfolgreich gespeichert";
|
|
5898
|
+
case CultureIDs.En_US: return "Setting saved successfully";
|
|
5899
|
+
case CultureIDs.Es_ES: return "Configuración guardada con éxito";
|
|
5900
|
+
case CultureIDs.Fr_FR: return "Paramètre enregistré avec succès";
|
|
5901
|
+
case CultureIDs.Pt_PT: return "Configuração salva com sucesso";
|
|
5902
|
+
default: return "Impostazione salvata con successo";
|
|
5903
|
+
}
|
|
5904
|
+
}
|
|
5789
5905
|
static get Severity() {
|
|
5790
5906
|
switch (this._cultureID) {
|
|
5791
5907
|
case CultureIDs.De_DE: return "Schweregrad";
|
|
@@ -5886,6 +6002,16 @@ export class SDKUI_Localizator {
|
|
|
5886
6002
|
default: return "Mostra tutti";
|
|
5887
6003
|
}
|
|
5888
6004
|
}
|
|
6005
|
+
static get ShowColumnSelection() {
|
|
6006
|
+
switch (this._cultureID) {
|
|
6007
|
+
case CultureIDs.De_DE: return "Spaltenauswahl anzeigen";
|
|
6008
|
+
case CultureIDs.En_US: return "Show column selection";
|
|
6009
|
+
case CultureIDs.Es_ES: return "Mostrar selección de columnas";
|
|
6010
|
+
case CultureIDs.Fr_FR: return "Afficher la sélection de colonnes";
|
|
6011
|
+
case CultureIDs.Pt_PT: return "Mostrar seleção de colunas";
|
|
6012
|
+
default: return "Mostra selezione colonne";
|
|
6013
|
+
}
|
|
6014
|
+
}
|
|
5889
6015
|
static get ShowFloatingBar() {
|
|
5890
6016
|
switch (this._cultureID) {
|
|
5891
6017
|
case CultureIDs.De_DE: return "Floating-Leiste anzeigen";
|
|
@@ -6216,6 +6342,16 @@ export class SDKUI_Localizator {
|
|
|
6216
6342
|
default: return "Oggetto";
|
|
6217
6343
|
}
|
|
6218
6344
|
}
|
|
6345
|
+
static get SubjectType() {
|
|
6346
|
+
switch (this._cultureID) {
|
|
6347
|
+
case CultureIDs.De_DE: return "Betreff-Typ";
|
|
6348
|
+
case CultureIDs.En_US: return "Subject type";
|
|
6349
|
+
case CultureIDs.Es_ES: return "Tipo de asunto";
|
|
6350
|
+
case CultureIDs.Fr_FR: return "Type de sujet";
|
|
6351
|
+
case CultureIDs.Pt_PT: return "Tipo de assunto";
|
|
6352
|
+
default: return "Tipo soggetto";
|
|
6353
|
+
}
|
|
6354
|
+
}
|
|
6219
6355
|
static get Summary() {
|
|
6220
6356
|
switch (this._cultureID) {
|
|
6221
6357
|
case CultureIDs.De_DE: return "Zusammenfassung";
|
|
@@ -6236,6 +6372,16 @@ export class SDKUI_Localizator {
|
|
|
6236
6372
|
default: return "Cambia utente";
|
|
6237
6373
|
}
|
|
6238
6374
|
}
|
|
6375
|
+
static get TargetedSearch() {
|
|
6376
|
+
switch (this._cultureID) {
|
|
6377
|
+
case CultureIDs.De_DE: return "Gezielte Suche";
|
|
6378
|
+
case CultureIDs.En_US: return "Targeted search";
|
|
6379
|
+
case CultureIDs.Es_ES: return "Búsqueda dirigida";
|
|
6380
|
+
case CultureIDs.Fr_FR: return "Recherche ciblée";
|
|
6381
|
+
case CultureIDs.Pt_PT: return "Pesquisa direcionada";
|
|
6382
|
+
default: return "Ricerca puntuale";
|
|
6383
|
+
}
|
|
6384
|
+
}
|
|
6239
6385
|
static get TaskAssignedMessage() {
|
|
6240
6386
|
switch (this._cultureID) {
|
|
6241
6387
|
case CultureIDs.De_DE: return "Die Aufgabe wurde von Benutzer '{{0}}' zugewiesen. Nur die Felder 'Status' und 'Erinnerung' können bearbeitet werden, da sie für die Person, die mit der Arbeit fortfährt, relevant sind";
|
package/lib/helper/TMIcons.d.ts
CHANGED
|
@@ -275,4 +275,6 @@ export declare function IconUnpair(props: React.SVGProps<SVGSVGElement>): import
|
|
|
275
275
|
export declare function IconCtrlWorkflow(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
276
276
|
export declare function IconBackhandIndexPointingRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
|
|
277
277
|
export declare function IconMoveToFolder(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
278
|
+
export declare function IconCustom(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
279
|
+
export declare function IconSeparator(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
|
|
278
280
|
export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView, IconNewSignature };
|
package/lib/helper/TMIcons.js
CHANGED
|
@@ -687,4 +687,10 @@ export function IconBackhandIndexPointingRight(props) {
|
|
|
687
687
|
export function IconMoveToFolder(props) {
|
|
688
688
|
return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 28 28", width: "1em", height: "1em", ...props, children: _jsx("path", { d: "M21.5 15a5.5 5.5 0 1 1 0 11a5.5 5.5 0 0 1 0-11zM10.207 4c.46 0 .908.141 1.284.402l.156.12L14.022 6.5h9.728a2.25 2.25 0 0 1 2.229 1.938l.016.158l.005.154v7.06a6.518 6.518 0 0 0-1.499-1.077L24.5 8.75a.75.75 0 0 0-.648-.743L23.75 8h-9.729l-2.374 1.978a2.25 2.25 0 0 1-1.244.513l-.196.009l-6.707-.001V21.75c0 .38.282.693.648.743l.102.007h11.064a6.47 6.47 0 0 0 .709 1.501L4.25 24a2.25 2.25 0 0 1-2.245-2.096L2 21.75V6.25a2.25 2.25 0 0 1 2.096-2.245L4.25 4h5.957zm11.585 13.545l-.076.044l-.07.057l-.057.07a.5.5 0 0 0 0 .568l.057.07l1.646 1.645l-4.798.001l-.09.008a.5.5 0 0 0-.402.402l-.008.09l.008.09a.5.5 0 0 0 .402.402l.09.008l4.8-.001l-1.648 1.647l-.057.07a.5.5 0 0 0 .695.695l.07-.057l2.535-2.541l.031-.042l.042-.08l.026-.083l.01-.064l-.002-.11l-.008-.042l-.026-.083l-.042-.08l-.037-.05l-2.53-2.533l-.069-.057a.5.5 0 0 0-.492-.044zM10.207 5.5H4.25a.75.75 0 0 0-.743.648L3.5 6.25v2.749L10.207 9a.75.75 0 0 0 .395-.113l.085-.06l1.891-1.578l-1.89-1.575a.75.75 0 0 0-.377-.167l-.104-.007z", fill: "currentColor", fillRule: "nonzero" }) }));
|
|
689
689
|
}
|
|
690
|
+
export function IconCustom(props) {
|
|
691
|
+
return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", ...props, children: _jsx("path", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: "10", strokeWidth: "1.5", d: "M14 17h6m-3 3v-6M5.6 4h2.8A1.6 1.6 0 0 1 10 5.6v2.8A1.6 1.6 0 0 1 8.4 10H5.6A1.6 1.6 0 0 1 4 8.4V5.6A1.6 1.6 0 0 1 5.6 4m0 10h2.8a1.6 1.6 0 0 1 1.6 1.6v2.8A1.6 1.6 0 0 1 8.4 20H5.6A1.6 1.6 0 0 1 4 18.4v-2.8A1.6 1.6 0 0 1 5.6 14m10-10h2.8A1.6 1.6 0 0 1 20 5.6v2.8a1.6 1.6 0 0 1-1.6 1.6h-2.8A1.6 1.6 0 0 1 14 8.4V5.6A1.6 1.6 0 0 1 15.6 4" }) }));
|
|
692
|
+
}
|
|
693
|
+
export function IconSeparator(props) {
|
|
694
|
+
return (_jsx("svg", { fontSize: props.fontSize ?? FONTSIZE, xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", width: "1em", height: "1em", style: { transform: 'rotate(90deg)', ...props.style }, ...props, children: _jsxs("g", { fill: "currentColor", children: [_jsx("path", { d: "M16 5a1 1 0 1 0 0-2H8a1 1 0 1 0 0 2zm0 2a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm1 5a1 1 0 0 1-1 1H8a1 1 0 1 1 0-2h8a1 1 0 0 1 1 1m-1 9a1 1 0 1 0 0-2H8a1 1 0 1 0 0 2z", opacity: ".5" }), _jsx("path", { fillRule: "evenodd", d: "M21 16a1 1 0 0 1-1 1H4a1 1 0 1 1 0-2h16a1 1 0 0 1 1 1", clipRule: "evenodd" })] }) }));
|
|
695
|
+
}
|
|
690
696
|
export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView, IconNewSignature };
|