@topconsultnpm/sdkui-react-beta 6.14.126 → 6.14.127
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/base/TMAlert.d.ts +54 -1
- package/lib/components/base/TMAlert.js +6 -4
- package/lib/components/features/blog/TMBlogCommentForm.js +0 -1
- package/lib/components/features/documents/TMDcmtForm.js +2 -1
- package/lib/components/features/workflow/TMWorkflowPopup.js +47 -61
- package/lib/components/settings/SettingsAppearance.js +4 -4
- package/lib/helper/SDKUI_Localizator.d.ts +24 -0
- package/lib/helper/SDKUI_Localizator.js +240 -0
- package/package.json +1 -1
|
@@ -11,10 +11,63 @@ interface AlertModes {
|
|
|
11
11
|
success: AlertVariant;
|
|
12
12
|
info: AlertVariant;
|
|
13
13
|
}
|
|
14
|
-
declare const
|
|
14
|
+
declare const TMAlertPosition: {
|
|
15
|
+
readonly TOP_RIGHT: {
|
|
16
|
+
readonly top: "10px";
|
|
17
|
+
readonly right: "10px";
|
|
18
|
+
readonly position: "absolute";
|
|
19
|
+
};
|
|
20
|
+
readonly TOP_CENTER: {
|
|
21
|
+
readonly top: "10px";
|
|
22
|
+
readonly left: "50%";
|
|
23
|
+
readonly transform: "translateX(-50%)";
|
|
24
|
+
readonly position: "absolute";
|
|
25
|
+
};
|
|
26
|
+
readonly TOP_LEFT: {
|
|
27
|
+
readonly top: "10px";
|
|
28
|
+
readonly left: "10px";
|
|
29
|
+
readonly position: "absolute";
|
|
30
|
+
};
|
|
31
|
+
readonly BOTTOM_RIGHT: {
|
|
32
|
+
readonly bottom: "10px";
|
|
33
|
+
readonly right: "10px";
|
|
34
|
+
readonly position: "absolute";
|
|
35
|
+
};
|
|
36
|
+
readonly BOTTOM_LEFT: {
|
|
37
|
+
readonly bottom: "10px";
|
|
38
|
+
readonly left: "10px";
|
|
39
|
+
readonly position: "absolute";
|
|
40
|
+
};
|
|
41
|
+
readonly BOTTOM_CENTER: {
|
|
42
|
+
readonly bottom: "10px";
|
|
43
|
+
readonly left: "50%";
|
|
44
|
+
readonly transform: "translateX(-50%)";
|
|
45
|
+
readonly position: "absolute";
|
|
46
|
+
};
|
|
47
|
+
readonly CENTER_RIGHT: {
|
|
48
|
+
readonly top: "50%";
|
|
49
|
+
readonly right: "10px";
|
|
50
|
+
readonly transform: "translateY(-50%)";
|
|
51
|
+
readonly position: "absolute";
|
|
52
|
+
};
|
|
53
|
+
readonly CENTER_LEFT: {
|
|
54
|
+
readonly top: "50%";
|
|
55
|
+
readonly left: "10px";
|
|
56
|
+
readonly transform: "translateY(-50%)";
|
|
57
|
+
readonly position: "absolute";
|
|
58
|
+
};
|
|
59
|
+
readonly CENTER_CENTER: {
|
|
60
|
+
readonly top: "50%";
|
|
61
|
+
readonly left: "50%";
|
|
62
|
+
readonly transform: "translate(-50%, -50%)";
|
|
63
|
+
readonly position: "absolute";
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
declare const ShowAlert: ({ mode, message, duration, title, position }: {
|
|
15
67
|
mode: keyof AlertModes;
|
|
16
68
|
message: string;
|
|
17
69
|
duration?: number;
|
|
18
70
|
title?: string;
|
|
71
|
+
position?: keyof typeof TMAlertPosition;
|
|
19
72
|
}) => void;
|
|
20
73
|
export default ShowAlert;
|
|
@@ -44,7 +44,7 @@ const Mode = {
|
|
|
44
44
|
},
|
|
45
45
|
};
|
|
46
46
|
// const TMAlert = ({ mode, duration = 5000, message, position = 'BOTTOM_CENTER' }: { mode: keyof AlertModes, duration?: number, message: string, position?: keyof typeof TMAlertPosition }) => {
|
|
47
|
-
const TMAlert = ({ mode, duration = 1000, title, message }) => {
|
|
47
|
+
const TMAlert = ({ mode, duration = 1000, title, message, position = 'BOTTOM_RIGHT' }) => {
|
|
48
48
|
const [currentWidth, setCurrentWidth] = useState(window.innerWidth);
|
|
49
49
|
const [container] = useState(document.getElementsByClassName('tm-alert-temporary-container'));
|
|
50
50
|
useEffect(() => {
|
|
@@ -61,15 +61,17 @@ const TMAlert = ({ mode, duration = 1000, title, message }) => {
|
|
|
61
61
|
clearTimeout(tiemout);
|
|
62
62
|
};
|
|
63
63
|
}, [container]);
|
|
64
|
-
|
|
64
|
+
// Determine the style for the alert container based on the position prop
|
|
65
|
+
const alertContainerStyle = TMAlertPosition[position];
|
|
66
|
+
return (_jsx("div", { style: { width: '100%', paddingTop: '3px', ...alertContainerStyle }, children: _jsx("div", { className: 'tm-alert-animation-style', style: { animationDuration: `${duration}ms`, position: 'relative', float: 'right', zIndex: '20000999', width: '356px', height: '86px', borderRadius: '8px', overflow: 'hidden', border: '2px white solid', boxShadow: '0px 3px 6px #00000029' }, children: _jsx("div", { className: 'tm-alert-animation-style', style: { animationDuration: `${duration}ms` }, children: _jsxs("div", { className: 'tm-alert-container', style: { background: Mode[mode].color, animationDuration: `${duration}ms` }, children: [_jsxs("div", { className: "tm-alert-context", style: { position: 'relative' }, children: [_jsx("div", { className: 'tm-alert-icon', style: { position: 'absolute', top: '12px', left: '12px', paddingTop: '1px' }, children: Mode[mode].icon }), _jsx("div", { style: { color: Mode[mode].textColor, position: 'absolute', top: '15px', left: '45px', textAlign: 'left', fontSize: '1.1rem', fontWeight: 'bold', maxWidth: '280px' }, children: title }), _jsx("div", { style: { color: Mode[mode].textColor, position: 'absolute', top: '35px', left: '45px', textAlign: 'left', fontSize: '1rem', maxWidth: '280px' }, children: message })] }), _jsx("div", { className: 'tm-alert-loading', style: { backgroundImage: `linear-gradient(to right, ${Mode[mode].borderColor}, ${Mode[mode].textColor})`, animationDuration: `${duration}ms` } })] }) }) }) }));
|
|
65
67
|
};
|
|
66
|
-
const ShowAlert = ({ mode, message, duration, title }) => {
|
|
68
|
+
const ShowAlert = ({ mode, message, duration, title, position = 'BOTTOM_RIGHT' }) => {
|
|
67
69
|
let container = document.createElement('div');
|
|
68
70
|
container.setAttribute("class", 'tm-alert-temporary-container');
|
|
69
71
|
document.body.appendChild(container);
|
|
70
72
|
// container.style.position = 'relative'
|
|
71
73
|
container.style.display = 'flex';
|
|
72
74
|
const root = ReactDOM.createRoot(container);
|
|
73
|
-
root.render(_jsx(React.StrictMode, { children: _jsx(TMAlert, { message: message, mode: mode, duration: duration, title: title }) }));
|
|
75
|
+
root.render(_jsx(React.StrictMode, { children: _jsx(TMAlert, { message: message, mode: mode, duration: duration, title: title, position: position }) }));
|
|
74
76
|
};
|
|
75
77
|
export default ShowAlert;
|
|
@@ -94,7 +94,6 @@ const TMBlogCommentForm = (props) => {
|
|
|
94
94
|
}, [participants]);
|
|
95
95
|
const onSaveAsync = async () => {
|
|
96
96
|
try {
|
|
97
|
-
console.log('onSaveAsync', context);
|
|
98
97
|
// Show a loading spinner with a localized description
|
|
99
98
|
TMSpinner.show({ description: SDKUI_Localizator.Comment });
|
|
100
99
|
// Exit early if the engine or its required identifiers are undefined
|
|
@@ -603,6 +603,7 @@ const TMDcmtForm = ({ showHeader = true, onSaveRecents, layoutMode = LayoutModes
|
|
|
603
603
|
await SDK_Globals.tmSession?.NewTaskEngine().UpdateAsync(newTask);
|
|
604
604
|
onTaskCompleted?.(newTask);
|
|
605
605
|
onClose?.();
|
|
606
|
+
ShowAlert({ mode: 'success', title: SDKUI_Localizator.MoreInformation, message: SDKUI_Localizator.MoreInfoCompleted, duration: 3000 });
|
|
606
607
|
}
|
|
607
608
|
catch (e) {
|
|
608
609
|
TMSpinner.hide();
|
|
@@ -641,7 +642,7 @@ const TMDcmtForm = ({ showHeader = true, onSaveRecents, layoutMode = LayoutModes
|
|
|
641
642
|
} }), showApprovePopup && _jsx(WorkFlowApproveRejectPopUp, { deviceType: deviceType, onCompleted: handleWFOperationCompleted, TID: approvalVID, DID: DID, isReject: 0, onClose: () => setShowApprovePopup(false) }), showRejectPopup && _jsx(WorkFlowApproveRejectPopUp, { deviceType: deviceType, onCompleted: handleWFOperationCompleted, TID: approvalVID, DID: DID, isReject: 1, onClose: () => setShowRejectPopup(false) }), showReAssignPopup && _jsx(WorkFlowReAssignPopUp, { deviceType: deviceType, onCompleted: handleWFOperationCompleted, TID: approvalVID, DID: DID, onClose: () => setShowReAssignPopup(false) }), showMoreInfoPopup && _jsx(WorkFlowMoreInfoPopUp, { deviceType: deviceType, onCompleted: handleWFOperationCompleted, TID: approvalVID, DID: DID, onClose: () => setShowMoreInfoPopup(false) }), (isModal && onClose) && _jsx("div", { id: "TMDcmtFormShowConfirmForClose-" + id })] }), showToppyForApprove && (_jsx(ToppyHelpCenter, { deviceType: deviceType, usePortal: false, content: workItems.length === 1 ?
|
|
642
643
|
_jsx("div", { style: { display: 'flex', flexDirection: 'column', gap: '10px' }, children: _jsx(WorkFlowOperationButtons, { deviceType: deviceType, onApprove: () => setShowApprovePopup(true), onSignApprove: () => ShowAlert({ message: 'TODO', mode: 'info', title: SDKUI_Localizator.SignatureAndApprove, duration: 3000 }), onReject: () => setShowRejectPopup(true), onReAssign: () => setShowReAssignPopup(true), onMoreInfo: () => setShowMoreInfoPopup(true) }) })
|
|
643
644
|
:
|
|
644
|
-
_jsxs("div", { style: { padding: 10, color: 'white', maxWidth: '180px', borderRadius: 10, background: '#1B1464 0% 0% no-repeat padding-box', border: '1px solid #FFFFFF' }, children: [`Devi approvare ${workItems.length} workitem(s) per questo documento.`, `Vai alla sezione di approvazione.`] }) })), showToppyForCompleteMoreInfo && (_jsx(ToppyHelpCenter, { deviceType: deviceType, usePortal: false, content: _jsxs("div", { style: { paddingRight: 15, display: 'flex', flexDirection: 'column', gap: 10 }, children: [_jsx("div", { style: { padding: 10, color: 'white', maxWidth: '180px', borderRadius: 10, background: '#1B1464 0% 0% no-repeat padding-box', border: '1px solid #FFFFFF' }, children:
|
|
645
|
+
_jsxs("div", { style: { padding: 10, color: 'white', maxWidth: '180px', borderRadius: 10, background: '#1B1464 0% 0% no-repeat padding-box', border: '1px solid #FFFFFF' }, children: [`Devi approvare ${workItems.length} workitem(s) per questo documento.`, `Vai alla sezione di approvazione.`] }) })), showToppyForCompleteMoreInfo && (_jsx(ToppyHelpCenter, { deviceType: deviceType, usePortal: false, content: _jsxs("div", { style: { paddingRight: 15, display: 'flex', flexDirection: 'column', gap: 10 }, children: [_jsx("div", { style: { padding: 10, color: 'white', maxWidth: '180px', borderRadius: 10, background: '#1B1464 0% 0% no-repeat padding-box', border: '1px solid #FFFFFF' }, children: `${SDKUI_Localizator.MoreInfoCompleteRequestSentBy} ${taskMoreInfo?.fromName}!` }), _jsx(TMButton, { caption: SDKUI_Localizator.CommentAndComplete, color: 'success', showTooltip: false, onClick: () => {
|
|
645
646
|
setShowCommentForm(true);
|
|
646
647
|
} })] }) })), (showCommentForm && TID && DID) &&
|
|
647
648
|
_jsx(TMBlogCommentForm, { context: { engine: 'SearchEngine', object: { tid: TID, did: DID } }, onClose: () => setShowCommentForm(false), refreshCallback: completeMoreInfoCallback, participants: [], showAttachmentsSection: false }), isOpenDetails &&
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { useEffect, useState } from "react";
|
|
3
|
-
import { Priorities, ResultTypes, SDK_Globals, SDK_Localizator, TaskEngine, UserListCacheService, ValidationItem, WorkflowCacheService } from '@topconsultnpm/sdk-ts-beta';
|
|
3
|
+
import { Priorities, ResultTypes, SDK_Globals, SDK_Localizator, TaskEngine, TMPropertyNames, UserListCacheService, ValidationItem, WorkflowCacheService } from '@topconsultnpm/sdk-ts-beta';
|
|
4
4
|
import styled from "styled-components";
|
|
5
5
|
import { SDKUI_Localizator, IconApply, IconCloseOutline, IconUser, IconInfo, IconSignature, DateDisplayTypes, TASK_MORE_INFO_PREFIX_NAME } from "../../../helper";
|
|
6
6
|
import { TMColors } from "../../../utils/theme";
|
|
@@ -14,6 +14,7 @@ import TMTextBox from "../../editors/TMTextBox";
|
|
|
14
14
|
import TMTextArea from "../../editors/TMTextArea";
|
|
15
15
|
import TMDropDown from "../../editors/TMDropDown";
|
|
16
16
|
import TMDateBox from "../../editors/TMDateBox";
|
|
17
|
+
import ShowAlert from "../../base/TMAlert";
|
|
17
18
|
const StyledWorkFlowOperationButtonsContainer = styled.div `
|
|
18
19
|
display: flex;
|
|
19
20
|
align-items: center;
|
|
@@ -31,37 +32,31 @@ const StyledTextArea = styled.textarea `
|
|
|
31
32
|
border-bottom: 4px solid ${props => props.$isValid ? TMColors.primaryColor : TMColors.error};
|
|
32
33
|
}
|
|
33
34
|
`;
|
|
35
|
+
const StyledModalBodyWrapper = styled.div `
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
height: 100%;
|
|
39
|
+
`;
|
|
34
40
|
const StyledModalFooter = styled.div `
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
padding: 16px 0 12px 0;
|
|
40
|
-
display: flex;
|
|
41
|
-
justify-content: center;
|
|
42
|
-
background: transparent;
|
|
43
|
-
z-index: 2;
|
|
41
|
+
padding: 16px 0 12px 0;
|
|
42
|
+
height: 60px;
|
|
43
|
+
display: flex;
|
|
44
|
+
justify-content: center;
|
|
44
45
|
`;
|
|
45
46
|
const StyledModalContentContainer = styled.div `
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
47
|
+
width: 100%;
|
|
48
|
+
padding: 10px;
|
|
49
|
+
flex: 1; /* Questo fa sì che prenda tutto lo spazio verticale disponibile */
|
|
50
|
+
overflow-y: auto;
|
|
51
|
+
display: flex;
|
|
52
|
+
flex-direction: column;
|
|
53
|
+
gap: 5px;
|
|
53
54
|
`;
|
|
54
55
|
const StyledHorizontalContainer = styled.div `
|
|
55
56
|
display: flex;
|
|
56
57
|
gap: 10px;
|
|
57
58
|
/* align-items: flex-end; */
|
|
58
59
|
`;
|
|
59
|
-
const StyledNameInputContainer = styled.div `
|
|
60
|
-
display: flex;
|
|
61
|
-
align-items: center;
|
|
62
|
-
gap: 10px;
|
|
63
|
-
width: 100%;
|
|
64
|
-
`;
|
|
65
60
|
export const WorkFlowOperationButtons = ({ deviceType = DeviceType.DESKTOP, approveDisable = false, signApproveDisable = false, reassignDisable = false, rejectDisable = false, infoDisable = false, onApprove, onSignApprove, onReAssign, onReject, onMoreInfo }) => {
|
|
66
61
|
const isMobile = deviceType === DeviceType.MOBILE;
|
|
67
62
|
return (_jsxs(StyledWorkFlowOperationButtonsContainer, { "$isMobile": isMobile, children: [_jsx(TMButton, { btnStyle: isMobile ? 'toolbar' : 'advanced', showTooltip: isMobile, icon: _jsx(IconApply, {}), caption: SDKUI_Localizator.Approve, disabled: approveDisable, onClick: () => !approveDisable && onApprove?.(), advancedColor: TMColors.success, color: 'success' }), _jsx(TMButton, { btnStyle: isMobile ? 'toolbar' : 'advanced', showTooltip: isMobile, icon: _jsx(IconSignature, {}), caption: SDKUI_Localizator.SignatureAndApprove, width: '160px', disabled: approveDisable, onClick: () => !signApproveDisable && onSignApprove?.(), advancedColor: TMColors.success, color: 'success' }), _jsx(TMButton, { btnStyle: isMobile ? 'toolbar' : 'advanced', showTooltip: isMobile, icon: _jsx(IconCloseOutline, {}), caption: SDKUI_Localizator.Reject, disabled: rejectDisable, onClick: () => !rejectDisable && onReject?.(), advancedColor: TMColors.error, color: 'error' }), _jsx(TMButton, { btnStyle: isMobile ? 'toolbar' : 'advanced', showTooltip: isMobile, icon: _jsx(IconUser, { fontSize: 16 }), caption: SDKUI_Localizator.Reassign, disabled: reassignDisable, onClick: () => !reassignDisable && onReAssign?.(), advancedColor: TMColors.tertiary, color: 'tertiary' }), _jsx(TMButton, { btnStyle: isMobile ? 'toolbar' : 'advanced', showTooltip: isMobile, icon: _jsx(IconInfo, { fontSize: 16 }), caption: SDKUI_Localizator.MoreInformation, width: '180px', disabled: infoDisable, onClick: () => !infoDisable && onMoreInfo?.(), advancedColor: TMColors.info, color: 'info' })] }));
|
|
@@ -90,21 +85,22 @@ export const WorkFlowApproveRejectPopUp = ({ TID = 0, DID = 0, deviceType = Devi
|
|
|
90
85
|
onCompleted?.();
|
|
91
86
|
onClose?.();
|
|
92
87
|
TMSpinner.hide();
|
|
88
|
+
ShowAlert({ mode: 'success', position: 'TOP_RIGHT', title: isReject === 0 ? SDKUI_Localizator.WorkitemApprove : SDKUI_Localizator.WorkitemReject, message: SDKUI_Localizator.OperationSuccess, duration: 3000 });
|
|
93
89
|
}
|
|
94
90
|
};
|
|
95
|
-
const workflowAction = isReject === 0 ?
|
|
91
|
+
const workflowAction = isReject === 0 ? SDKUI_Localizator.Approve : SDKUI_Localizator.Reject;
|
|
96
92
|
const itemCount = selectedItems.length > 0 ? `(${count()})` : '';
|
|
97
|
-
const title = `${workflowAction}
|
|
98
|
-
return (
|
|
99
|
-
|
|
100
|
-
|
|
93
|
+
const title = `${workflowAction} workitem ${itemCount}`;
|
|
94
|
+
return (_jsx(TMModal, { title: title, onClose: onClose, width: deviceType === DeviceType.MOBILE ? '95%' : '60%', height: '60%', isModal: true, children: _jsxs(StyledModalBodyWrapper, { children: [_jsxs(StyledModalContentContainer, { children: [_jsxs("p", { style: { color: (isReject === 1 && disable) ? TMColors.error : 'black' }, children: ["Commento ", isReject === 1 && disable && _jsx("span", { children: ' (Campo obbligatorio)' }), " "] }), _jsx(StyledTextArea, { "$isValid": isReject === 0 ? true : !disable, value: commentValue, onChange: (e) => setCommentValue(e.target.value) })] }), _jsx(StyledModalFooter, { children: isReject === 0
|
|
95
|
+
? _jsx(TMButton, { btnStyle: 'advanced', showTooltip: false, icon: _jsx(IconApply, {}), caption: 'Approva', disabled: false, onClick: () => completeOrRejectAsync(isReject), advancedColor: TMColors.success })
|
|
96
|
+
: _jsx(TMButton, { btnStyle: 'advanced', showTooltip: false, icon: _jsx(IconCloseOutline, {}), caption: 'Rifiuta', disabled: disable, onClick: () => { !disable && completeOrRejectAsync(isReject); }, advancedColor: TMColors.error }) })] }) }));
|
|
101
97
|
};
|
|
102
98
|
export const WorkFlowReAssignPopUp = ({ DID = 0, TID = 0, deviceType = DeviceType.DESKTOP, onClose, selectedItems = [], onCompleted }) => {
|
|
103
99
|
const [commentValue, setCommentValue] = useState('');
|
|
104
100
|
const [selectedUserID, setSelectedUserID] = useState([]);
|
|
105
101
|
const [participants, setParticipants] = useState([]);
|
|
106
102
|
const disable = commentValue.length === 0 || !selectedUserID;
|
|
107
|
-
const count = () => { return selectedItems.length.toString() + '
|
|
103
|
+
const count = () => { return selectedItems.length.toString() + ' workitem'; };
|
|
108
104
|
const reAssignWorkFlowAsync = async () => {
|
|
109
105
|
try {
|
|
110
106
|
TMSpinner.show();
|
|
@@ -125,6 +121,7 @@ export const WorkFlowReAssignPopUp = ({ DID = 0, TID = 0, deviceType = DeviceTyp
|
|
|
125
121
|
onCompleted?.();
|
|
126
122
|
onClose?.();
|
|
127
123
|
TMSpinner.hide();
|
|
124
|
+
ShowAlert({ mode: 'success', position: 'TOP_RIGHT', title: SDKUI_Localizator.WorkitemReassign, message: SDKUI_Localizator.OperationSuccess, duration: 3000 });
|
|
128
125
|
}
|
|
129
126
|
};
|
|
130
127
|
// Determina il TID da usare
|
|
@@ -156,9 +153,9 @@ export const WorkFlowReAssignPopUp = ({ DID = 0, TID = 0, deviceType = DeviceTyp
|
|
|
156
153
|
fetchData();
|
|
157
154
|
return () => { isMounted = false; };
|
|
158
155
|
}, [tidToUse]);
|
|
159
|
-
return (
|
|
160
|
-
|
|
161
|
-
|
|
156
|
+
return (_jsx(TMModal, { onClose: onClose, width: deviceType === DeviceType.MOBILE ? '95%' : '60%', height: '60%', isModal: true, title: SDKUI_Localizator.WorkitemReassign + (selectedItems.length > 0 ? ' (' + count() + ')' : ''), children: _jsxs(StyledModalBodyWrapper, { children: [_jsxs(StyledModalContentContainer, { children: [_jsx(TMUserChooser, { dataSource: participants, values: selectedUserID, onValueChanged: (IDs) => {
|
|
157
|
+
setSelectedUserID(IDs ?? []);
|
|
158
|
+
} }), _jsxs("p", { style: { color: commentValue.length === 0 ? TMColors.error : 'black' }, children: ["Commento ", commentValue.length === 0 && _jsx("span", { children: ' (Campo obbligatorio)' }), " "] }), _jsx(StyledTextArea, { "$isValid": commentValue.length !== 0, value: commentValue, onChange: (e) => setCommentValue(e.target.value) })] }), _jsx(StyledModalFooter, { children: _jsx(TMButton, { btnStyle: 'advanced', showTooltip: false, icon: _jsx(IconUser, { fontSize: 16 }), caption: SDKUI_Localizator.Reassign, disabled: disable, onClick: () => !disable && reAssignWorkFlowAsync(), advancedColor: TMColors.tertiary }) })] }) }));
|
|
162
159
|
};
|
|
163
160
|
export const WorkFlowMoreInfoPopUp = ({ DID = 0, TID = 0, deviceType = DeviceType.DESKTOP, onClose, onCompleted }) => {
|
|
164
161
|
const [users, setUsers] = useState([]);
|
|
@@ -174,27 +171,15 @@ export const WorkFlowMoreInfoPopUp = ({ DID = 0, TID = 0, deviceType = DeviceTyp
|
|
|
174
171
|
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Name, `${SDK_Localizator.RequiredField}`));
|
|
175
172
|
// Validate name length (max 100)
|
|
176
173
|
if (taskDescriptor.name && taskDescriptor.name.length > 100) {
|
|
177
|
-
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Name,
|
|
174
|
+
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Name, SDKUI_Localizator.ValueTooLong));
|
|
178
175
|
}
|
|
179
176
|
// Validate description length (max 200)
|
|
180
177
|
if (taskDescriptor.description && taskDescriptor.description.length > 200) {
|
|
181
|
-
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Description,
|
|
178
|
+
vil.push(new ValidationItem(ResultTypes.ERROR, SDKUI_Localizator.Description, SDKUI_Localizator.ValueTooLong));
|
|
182
179
|
}
|
|
183
180
|
// Validate toID
|
|
184
181
|
if (!taskDescriptor.toID || taskDescriptor.toID <= 0)
|
|
185
|
-
vil.push(new ValidationItem(ResultTypes.ERROR,
|
|
186
|
-
// // Validate that startTime is less than or equal to endTime
|
|
187
|
-
// if (taskDescriptor.startTime && taskDescriptor.endTime) {
|
|
188
|
-
// if (taskDescriptor.startTime > taskDescriptor.endTime) {
|
|
189
|
-
// vil.push(new ValidationItem(ResultTypes.ERROR, SURFER_Localizator.ErrorStartEndDate, `${SURFER_Localizator.StartDateMustBeBeforeEndDate}`));
|
|
190
|
-
// }
|
|
191
|
-
// }
|
|
192
|
-
// // Validate that reminderTime is less than endTime
|
|
193
|
-
// if (taskDescriptor.remTime && taskDescriptor.endTime) {
|
|
194
|
-
// if (taskDescriptor.remTime >= taskDescriptor.endTime) {
|
|
195
|
-
// vil.push(new ValidationItem(ResultTypes.ERROR, SURFER_Localizator.ErrorEndRemDate, `${SURFER_Localizator.ReminderDateMustBeBeforeEndDate}`));
|
|
196
|
-
// }
|
|
197
|
-
// }
|
|
182
|
+
vil.push(new ValidationItem(ResultTypes.ERROR, TMPropertyNames.assignedTo, `${SDK_Localizator.RequiredField}`));
|
|
198
183
|
return vil;
|
|
199
184
|
};
|
|
200
185
|
const requestMoreInfoAsync = async () => {
|
|
@@ -214,6 +199,7 @@ export const WorkFlowMoreInfoPopUp = ({ DID = 0, TID = 0, deviceType = DeviceTyp
|
|
|
214
199
|
onCompleted?.();
|
|
215
200
|
onClose?.();
|
|
216
201
|
TMSpinner.hide();
|
|
202
|
+
ShowAlert({ mode: 'success', position: 'TOP_RIGHT', title: SDKUI_Localizator.MoreInformation, message: SDKUI_Localizator.MoreInfoSent, duration: 3000 });
|
|
217
203
|
}
|
|
218
204
|
};
|
|
219
205
|
useEffect(() => {
|
|
@@ -260,22 +246,22 @@ export const WorkFlowMoreInfoPopUp = ({ DID = 0, TID = 0, deviceType = DeviceTyp
|
|
|
260
246
|
return Object.values(filteredPriorities).map(priority => {
|
|
261
247
|
switch (priority) {
|
|
262
248
|
case Priorities.High:
|
|
263
|
-
return ({ value: priority, display:
|
|
249
|
+
return ({ value: priority, display: SDKUI_Localizator.PriorityHigh });
|
|
264
250
|
default:
|
|
265
|
-
return ({ value: priority, display:
|
|
251
|
+
return ({ value: priority, display: SDKUI_Localizator.PriorityLow });
|
|
266
252
|
}
|
|
267
253
|
});
|
|
268
254
|
};
|
|
269
|
-
return (
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
255
|
+
return (_jsx(TMModal, { title: SDKUI_Localizator.MoreInformation, onClose: onClose, width: deviceType === DeviceType.MOBILE ? '95%' : '640px', height: deviceType === DeviceType.MOBILE ? '60%' : '440px', isModal: true, children: _jsxs(StyledModalBodyWrapper, { children: [_jsxs(StyledModalContentContainer, { children: [_jsx(TMUserChooser, { width: "250px", label: SDKUI_Localizator.RequestTo, dataSource: users, values: task?.toID ? [task.toID] : [], validationItems: validationItems?.filter(o => o.PropertyName === TMPropertyNames.assignedTo), onValueChanged: (IDs) => {
|
|
256
|
+
if (IDs === undefined)
|
|
257
|
+
return;
|
|
258
|
+
setTask({ ...task ?? {}, toID: IDs?.[0] });
|
|
259
|
+
} }), _jsx(TMTextBox, { label: SDKUI_Localizator.Name, value: nameInput, isModifiedWhen: nameInput !== (taskOrig?.name?.startsWith(TASK_MORE_INFO_PREFIX_NAME) ? taskOrig.name.substring(TASK_MORE_INFO_PREFIX_NAME.length) : taskOrig?.name || ''), autoFocus: true, maxLength: 100 - TASK_MORE_INFO_PREFIX_NAME.length, onValueChanged: (e) => {
|
|
260
|
+
const newValue = e.target.value;
|
|
261
|
+
setNameInput(newValue);
|
|
262
|
+
// Update task.name with the prefix
|
|
263
|
+
setTask({ ...task ?? {}, name: `${TASK_MORE_INFO_PREFIX_NAME}${newValue}` });
|
|
264
|
+
}, validationItems: validationItems?.filter(o => o.PropertyName === SDKUI_Localizator.Name) }), _jsx("p", { style: { fontStyle: 'italic', fontSize: '0.9rem' }, children: `${TASK_MORE_INFO_PREFIX_NAME}${nameInput}` }), _jsx(TMTextArea, { label: SDKUI_Localizator.Description, value: task?.description ?? '', rows: 2, maxLength: 200, isModifiedWhen: task?.description !== task?.description, onValueChanged: (e) => { setTask({ ...task ?? {}, description: e.target.value }); },
|
|
265
|
+
// validationItems={validationItems?.filter(o => o.PropertyName === SDKUI_Localizator.Description)}
|
|
266
|
+
resize: false }), _jsxs(StyledHorizontalContainer, { children: [_jsx(TMDropDown, { label: SDKUI_Localizator.Priority, width: "250px", value: task?.priority, dataSource: getPriorityLocalizatorValues(), isModifiedWhen: task?.priority !== taskOrig?.priority, onValueChanged: (e) => setTask({ ...task ?? {}, priority: e?.target?.value }) }), _jsx(TMDateBox, { width: "250px", resetTimeToZeroOnKeyPress: false, padding: "10px 0px", label: SDKUI_Localizator.ByDate, dateDisplayType: DateDisplayTypes.DateTime, value: task?.endTime, isModifiedWhen: task?.endTime !== taskOrig?.endTime, onValueChange: (value) => { setTask({ ...task ?? {}, endTime: value }); }, showClearButton: true })] })] }), _jsx(StyledModalFooter, { children: _jsx(TMButton, { btnStyle: 'advanced', showTooltip: false, icon: _jsx(IconUser, { fontSize: 16 }), caption: SDKUI_Localizator.Request, disabled: disable, onClick: () => !disable && requestMoreInfoAsync(), advancedColor: TMColors.tertiary }) })] }) }));
|
|
281
267
|
};
|
|
@@ -40,20 +40,20 @@ const SettingsAppearance = ({ landingPagesOptions, permissions = { canArchive: t
|
|
|
40
40
|
}
|
|
41
41
|
return options;
|
|
42
42
|
}, [permissions?.canArchive, permissions?.canSearch, permissions?.wgGroupLicense, permissions?.dossiersLicense, permissions?.workFlowLicense, landingPagesOptions]);
|
|
43
|
-
return (_jsxs(TMLayoutContainer, { children: [landingPagesOptions && _jsx("p", { style: { fontSize: '1.h1rem', fontWeight: 'bold', marginBottom: '5px' }, children:
|
|
43
|
+
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) => {
|
|
44
44
|
SDKUI_Globals.userSettings.landingPage = e.target.value;
|
|
45
45
|
triggerUIUpdate();
|
|
46
46
|
} }), _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) => {
|
|
47
47
|
let newpx = e.target.value;
|
|
48
48
|
SDKUI_Globals.userSettings.themeSettings.fontSize = newpx;
|
|
49
49
|
triggerUIUpdate();
|
|
50
|
-
} }), _jsx("p", { style: { fontSize: '1rem', fontWeight: 'bold', marginTop: '10px', marginBottom: '5px' }, children:
|
|
50
|
+
} }), _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) => {
|
|
51
51
|
SDKUI_Globals.userSettings.themeSettings.gridSettings.showRowLines = newValue;
|
|
52
52
|
triggerUIUpdate();
|
|
53
|
-
} }), _jsx(TMCheckBox, { label:
|
|
53
|
+
} }), _jsx(TMCheckBox, { label: SDKUI_Localizator.ShowColumnSeparatingLines, value: SDKUI_Globals.userSettings.themeSettings.gridSettings.showColumnLines, onValueChanged: (newValue) => {
|
|
54
54
|
SDKUI_Globals.userSettings.themeSettings.gridSettings.showColumnLines = newValue;
|
|
55
55
|
triggerUIUpdate();
|
|
56
|
-
} }), _jsx(TMCheckBox, { label:
|
|
56
|
+
} }), _jsx(TMCheckBox, { label: SDKUI_Localizator.UseNativeScrollbar, value: SDKUI_Globals.userSettings.themeSettings.gridSettings.useNativeScrollbar, onValueChanged: (newValue) => {
|
|
57
57
|
SDKUI_Globals.userSettings.themeSettings.gridSettings.useNativeScrollbar = newValue;
|
|
58
58
|
triggerUIUpdate();
|
|
59
59
|
} }), _jsx(TMButton, { elementStyle: { marginTop: '10px' }, caption: SDKUI_Localizator.Restore, showTooltip: false, onClick: () => {
|
|
@@ -10,6 +10,7 @@ export declare class SDKUI_Localizator {
|
|
|
10
10
|
static get Abort(): "Stoppen" | "Abort" | "Detener" | "Arrêtez" | "Parar" | "Interrompi";
|
|
11
11
|
static get Abort_Confirm(): "Stoppen Sie die Verarbeitung?" | "Cancel processing?" | "¿Interrumpir la elaboración?" | "Voulez-vous interrompre l'operation?" | "Pare o processamento?" | "Interrompere l'elaborazione?";
|
|
12
12
|
static get About(): "Informationen" | "About" | "Información" | "Informations" | "Informações" | "Informazioni";
|
|
13
|
+
static get AccessToOtherApplications(): string;
|
|
13
14
|
static get Add(): "Hinzufügen" | "Add" | "Añadir" | "Ajoute" | "Adicionar" | "Aggiungi";
|
|
14
15
|
static get AddAbove(): "Oben hinzufügen" | "Add above" | "Añadir arriba" | "Ajouter ci-dessus" | "Adicionar acima" | "Aggiungi sopra";
|
|
15
16
|
static get AddBelow(): "Unten hinzufügen" | "Add below" | "Añadir abajo" | "Ajouter ci-dessous" | "Adicionar abaixo" | "Aggiungi sotto";
|
|
@@ -39,6 +40,7 @@ export declare class SDKUI_Localizator {
|
|
|
39
40
|
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";
|
|
40
41
|
static get ArchivedDocuments(): string;
|
|
41
42
|
static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
|
|
43
|
+
static get AssignedTo(): string;
|
|
42
44
|
static get Attachment(): string;
|
|
43
45
|
static get Attachments(): string;
|
|
44
46
|
static get Attention(): "Aufmerksamkeit" | "Attention" | "Atención" | "Atenção" | "Attenzione";
|
|
@@ -54,6 +56,7 @@ export declare class SDKUI_Localizator {
|
|
|
54
56
|
static get Browser(): "Browsertyp" | "Browser type" | "tipo de navegador" | "Type de navigateur" | "Tipo de navegador" | "Tipo di Browser";
|
|
55
57
|
static get BrowseAreaFile(): "Dateien in den Supportbereichen durchsuchen" | "Browse files on support areas" | "Explorar los archivos en las áreas de apoyo" | "Parcourir les fichiers dans les zones de support" | "Procurar os arquivos nas áreas de suporte" | "Sfoglia i file nelle aree di appoggio";
|
|
56
58
|
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";
|
|
59
|
+
static get ByDate(): string;
|
|
57
60
|
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";
|
|
58
61
|
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";
|
|
59
62
|
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";
|
|
@@ -71,11 +74,14 @@ export declare class SDKUI_Localizator {
|
|
|
71
74
|
static get Columns_All_Hide(): "Alle Spalten ausblenden" | "Hide all columns" | "Ocultar todas las columnas" | "Masquer toutes les colonnes" | "Ocultar todas as colunas" | "Nascondi tutte le colonne";
|
|
72
75
|
static get Columns_All_Show(): "Alle Spalten anzeigen" | "Show all columns" | "Mostrar todas las columnas" | "Afficher toutes les colonnes" | "Mostrar todas as colunas" | "Visualizza tutte le colonne";
|
|
73
76
|
static get Comment(): string;
|
|
77
|
+
static get CommentAndComplete(): string;
|
|
74
78
|
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";
|
|
75
79
|
static get CompleteError(): "Kompletter Fehler" | "Complete error" | "Error completo" | "Erreur complète" | "Erro completo" | "Errore completo";
|
|
76
80
|
static get Configure(): "Konfigurieren" | "Configure" | "Configurar" | "Configura";
|
|
81
|
+
static get Confirm(): string;
|
|
77
82
|
static get ConfirmPassword(): "Bestätige das Passwort" | "Confirm password" | "Confirmar Contraseña" | "Confirmez le mot de passe" | "Confirme sua senha" | "Conferma password";
|
|
78
83
|
static get ConfirmOnCancel(): "Wenn wir fortfahren, gehen die vorgenommenen Änderungen verloren. Fortfahren?" | "All modifications will be lost. Continue?" | "Si sigue adelante, se perderán las modificaciones aportadas. ¿Seguir?" | "Continuant, les changements seront perdus. Continuer?" | "Continuando as alterações feitas serão perdidas. Continuar?" | "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
|
84
|
+
static get Continue(): string;
|
|
79
85
|
static get ContinueOperation(): "Fortfahren?" | "Continue ?" | "¿Continuar?" | "Continuer?" | "Continuar?" | "Continuare?";
|
|
80
86
|
static get CopiedSuccessfully(): "In die Zwischenablage kopieren" | "Copied in clipboard successfully" | "Copiado en el portapapeles con éxito" | "Copié dans le presse-papiers avec succès" | "CCopiado na área de transferência com sucesso" | "Copiato negli appunti con successo";
|
|
81
87
|
static get Copy(): string;
|
|
@@ -112,6 +118,7 @@ export declare class SDKUI_Localizator {
|
|
|
112
118
|
static get Destination(): "Bestimmung" | "Destination" | "Destino" | "Destinazione";
|
|
113
119
|
static get DetailsView(): string;
|
|
114
120
|
static get Disabled(): "Deaktiviert" | "Disabled" | "Deshabilitado" | "Désactivé" | "Desabilitado" | "Disabilitato";
|
|
121
|
+
static get DisplayFormat(): string;
|
|
115
122
|
static get DistinctValues(): "Unterschiedliche Werte" | "Distinct values" | "Valores distintos" | "Valeurs distinctes" | "Valori distinti";
|
|
116
123
|
static get DocumentData(): string;
|
|
117
124
|
static get DocumentNotAvailable(): string;
|
|
@@ -192,6 +199,7 @@ export declare class SDKUI_Localizator {
|
|
|
192
199
|
static get GetFileDeletionErrorMessage(): "Fehler beim Löschen der Datei" | "Error deleting the file" | "Error al eliminar el archivo" | "Erreur lors de la suppression du fichier" | "Erro ao excluir o arquivo" | "Errore nell'eliminazione del file";
|
|
193
200
|
static get GetFileUploadErrorMessage(): "Fehler beim Hochladen" | "Error during upload" | "Error al subir el archivo" | "Erreur lors du téléchargement" | "Erro ao carregar o arquivo" | "Errore nel caricamento";
|
|
194
201
|
static get GetFolderDeletionErrorMessage(): "Fehler beim Löschen des Ordners" | "Error deleting the folder" | "Error al eliminar la carpeta" | "Erreur lors de la suppression du dossier" | "Erro ao excluir a pasta" | "Errore nell'eliminazione della cartella";
|
|
202
|
+
static get Grids(): string;
|
|
195
203
|
static get Hide_CompleteName(): "Vollständigen Namen ausblenden" | "Hide full name" | "Ocultar nombre completo" | "Masquer le nom complet" | "Ocultar nome completo" | "Nascondi nome completo";
|
|
196
204
|
static get HideFloatingBar(): string;
|
|
197
205
|
static get HideFilters(): string;
|
|
@@ -217,6 +225,7 @@ export declare class SDKUI_Localizator {
|
|
|
217
225
|
static get Interval(): "Intervall" | "Interval" | "Intervalo" | "Intervalle" | "Intervallo";
|
|
218
226
|
static get Invalid_File(): "Ungültige datei" | "Invalid file" | "Archivo inválido" | "Fichier non valide" | "Arquivo inválido" | "File non valido";
|
|
219
227
|
static get InvoiceRetrieveFormat(): "Exportieren Sie die Rechnung im folgenden Format" | "Export invoice in the following format" | "Exportar la factura en el siguiente formato" | "Exportez la facture au format suivant" | "Exporte a fatura no seguinte formato" | "Esporta la fattura nel seguente formato";
|
|
228
|
+
static get LandingPage(): string;
|
|
220
229
|
static get LastRead(): string;
|
|
221
230
|
static get LastUpdateTime(): "Letzte Änderung" | "Last update Time" | "Última modificación" | "Dernière modifie" | "Última modificação" | "Ultima modifica";
|
|
222
231
|
static get LastVersion(): string;
|
|
@@ -264,6 +273,9 @@ export declare class SDKUI_Localizator {
|
|
|
264
273
|
static get Minimize(): "Minimieren" | "Minimize" | "Minimizar" | "Minimiser" | "Minimizza";
|
|
265
274
|
static get More(): "andere" | "more" | "otros" | "autres" | "outros" | "altri";
|
|
266
275
|
static get MoreInformation(): "Mehr Informationen" | "More information" | "Más información" | "Plus d'informations" | "Mais informações" | "Maggiori informazioni";
|
|
276
|
+
static get MoreInfoCompleteRequestSentBy(): string;
|
|
277
|
+
static get MoreInfoCompleted(): string;
|
|
278
|
+
static get MoreInfoSent(): string;
|
|
267
279
|
static get Move(): string;
|
|
268
280
|
static get Name(): "Name" | "Nombre" | "Nom" | "Nome";
|
|
269
281
|
static get NameForAccess(): "Name für den Zugang" | "Access name" | "Nombre para el acceso" | "Nom pour l'accès" | "Nome para o acesso" | "Nome per l'accesso";
|
|
@@ -337,6 +349,9 @@ export declare class SDKUI_Localizator {
|
|
|
337
349
|
static get PreviewNotAvailableOnDevice(): string;
|
|
338
350
|
static get PreviewView(): string;
|
|
339
351
|
static get Previous(): "Vorherige" | "Previous" | "Anterior" | "Précédent" | "Precedente";
|
|
352
|
+
static get Priority(): string;
|
|
353
|
+
static get PriorityHigh(): string;
|
|
354
|
+
static get PriorityLow(): string;
|
|
340
355
|
static get ProcessedItems(): "Durchdachte Elemente" | "Processed items" | "Elementos elaborados" | "Items traités" | "Itens processados" | "Elementi elaborati";
|
|
341
356
|
static get Properties(): "Eigenschaften" | "Properties" | "Propiedades" | "Propriétés" | "Propriedades" | "Proprietà";
|
|
342
357
|
static get QueryClear(): "Query bereinigen" | "Clear query" | "Limpiar consulta" | "Efface query" | "Limpar query" | "Pulisci query";
|
|
@@ -356,6 +371,8 @@ export declare class SDKUI_Localizator {
|
|
|
356
371
|
static get RemoveFromWorkgroup(): string;
|
|
357
372
|
static get RemoveNamedPreferredCredentials(): "Möchten Sie die Anmeldedaten '{{0}}' entfernen, die als bevorzugt festgelegt wurden?" | "Do you want to remove the '{{0}}' credentials set as preferred?" | "¿Quieres eliminar las credenciales '{{0}}' configuradas como preferidas?" | "Voulez-vous supprimer les identifiants '{{0}}' définis comme préférés ?" | "Deseja remover as credenciais '{{0}}' definidas como preferidas?" | "Vuoi rimuovere le credenziali '{{0}}' impostate come preferite?";
|
|
358
373
|
static get RememberCredentials(): "Anmeldedaten merken" | "Remember credentials" | "Recordar credenciales" | "Se souvenir des identifiants" | "Lembrar credenciais" | "Ricorda credenziali";
|
|
374
|
+
static get Request(): string;
|
|
375
|
+
static get RequestTo(): string;
|
|
359
376
|
static get Required(): "Obligatorisch" | "Required" | "Obligatorio" | "Obbligatoire" | "Obrigatório" | "Obbligatorio";
|
|
360
377
|
static get RequiredField(): "Erforderliches Feld" | "Required field" | "Campo obligatorio" | "Champ obligatoire" | "Campo obrigatório" | "Campo Obbligatorio";
|
|
361
378
|
static get RequiredNOT(): "Nicht obligatorisch" | "Not mandatory" | "No obligatorio" | "Pas obligatoire" | "Não é obrigatório" | "Non obbligatorio";
|
|
@@ -412,6 +429,8 @@ export declare class SDKUI_Localizator {
|
|
|
412
429
|
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";
|
|
413
430
|
static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
|
|
414
431
|
static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
|
|
432
|
+
static get ShowColumnSeparatingLines(): string;
|
|
433
|
+
static get ShowRowSeparatingLines(): string;
|
|
415
434
|
static get Signature(): string;
|
|
416
435
|
static get SignatureAndApprove(): string;
|
|
417
436
|
static get SignatureAndTimestamp(): string;
|
|
@@ -457,12 +476,14 @@ export declare class SDKUI_Localizator {
|
|
|
457
476
|
static get UserLevelAdminAutonom(): "Autonomer Administrator" | "Autonomous administrator" | "Administrador autónomo" | "Administrateur autonome" | "Administrador independente" | "Amministratore autonomo";
|
|
458
477
|
static get UserLevelAdminSys(): "Systemadministrator" | "System administrator" | "Administrador de sistema" | "Administrateur de système" | "Administrador do sistema" | "Amministratore di sistema";
|
|
459
478
|
static get UserLevelMember(): "Mitglied" | "Member" | "Miembro" | "Membre" | "Membro";
|
|
479
|
+
static get UseNativeScrollbar(): string;
|
|
460
480
|
static get Valid(): "Gültig" | "Valid" | "Válido" | "Valide" | "Valido";
|
|
461
481
|
static get Validate(): "Bestätigung" | "Validation" | "Validación" | "Validação" | "Validazione";
|
|
462
482
|
static get Value(): "Wert" | "Value" | "Valor" | "Valeur" | "Valore";
|
|
463
483
|
static get ValueAscending(): "Aufsteigend Wert" | "Value ascending" | "Value ascendente" | "Valeur croissant" | "Valor crescente" | "Valore crescente";
|
|
464
484
|
static get ValueDescending(): "Absteigend Wert" | "Value descending" | "Value descendente" | "Valeur décroissant" | "Valor decrescente" | "Valore decrescente";
|
|
465
485
|
static get ValueNotPresent(): "Wert NICHT vorhanden" | "Value NOT present" | "Valor NO presente" | "Valeur NON présente" | "Valor NÃO presente" | "Valore NON presente";
|
|
486
|
+
static get ValueTooLong(): string;
|
|
466
487
|
static get VariablesSystem(): "Systemvariablen" | "System variables" | "Variables del sistema" | "Variables de système" | "Variáveis do sistema" | "Variabili di sistema";
|
|
467
488
|
static get VerifySignature(): string;
|
|
468
489
|
static get Version(): string;
|
|
@@ -479,6 +500,9 @@ export declare class SDKUI_Localizator {
|
|
|
479
500
|
static get WorkgroupDrafts(): string;
|
|
480
501
|
static get WorkItemData(): string;
|
|
481
502
|
static get WorkItemTechnicalData(): string;
|
|
503
|
+
static get WorkitemApprove(): string;
|
|
504
|
+
static get WorkitemReject(): string;
|
|
505
|
+
static get WorkitemReassign(): string;
|
|
482
506
|
static get WrittenOn(): "Geschrieben am" | "Written on" | "Escrito el" | "Écrit le" | "Escrito em" | "Scritto il";
|
|
483
507
|
static get Yes(): "Ja" | "Yes" | "Sí" | "Oui" | "Sim" | "Sì";
|
|
484
508
|
}
|
|
@@ -48,6 +48,16 @@ export class SDKUI_Localizator {
|
|
|
48
48
|
default: return "Informazioni";
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
|
+
static get AccessToOtherApplications() {
|
|
52
|
+
switch (this._cultureID) {
|
|
53
|
+
case CultureIDs.De_DE: return "Zugriff auf andere Anwendungen";
|
|
54
|
+
case CultureIDs.En_US: return "Access to other applications";
|
|
55
|
+
case CultureIDs.Es_ES: return "Acceso a otras aplicaciones";
|
|
56
|
+
case CultureIDs.Fr_FR: return "Accès à d'autres applications";
|
|
57
|
+
case CultureIDs.Pt_PT: return "Acesso a outros aplicativos";
|
|
58
|
+
default: return "Accessi ad altre applicazioni";
|
|
59
|
+
}
|
|
60
|
+
}
|
|
51
61
|
static get Add() {
|
|
52
62
|
switch (this._cultureID) {
|
|
53
63
|
case CultureIDs.De_DE: return "Hinzufügen";
|
|
@@ -338,6 +348,16 @@ export class SDKUI_Localizator {
|
|
|
338
348
|
default: return "Archivio documentale";
|
|
339
349
|
}
|
|
340
350
|
}
|
|
351
|
+
static get AssignedTo() {
|
|
352
|
+
switch (this._cultureID) {
|
|
353
|
+
case CultureIDs.De_DE: return "Zugewiesen an";
|
|
354
|
+
case CultureIDs.En_US: return "Assigned to";
|
|
355
|
+
case CultureIDs.Es_ES: return "Asignado a";
|
|
356
|
+
case CultureIDs.Fr_FR: return "Attribué à";
|
|
357
|
+
case CultureIDs.Pt_PT: return "Atribuído a";
|
|
358
|
+
default: return "Assegnato a";
|
|
359
|
+
}
|
|
360
|
+
}
|
|
341
361
|
static get Attachment() {
|
|
342
362
|
switch (this._cultureID) {
|
|
343
363
|
case CultureIDs.De_DE: return "Anhang";
|
|
@@ -489,6 +509,16 @@ export class SDKUI_Localizator {
|
|
|
489
509
|
default: return "Sfoglia le cartelle nelle aree di appoggio";
|
|
490
510
|
}
|
|
491
511
|
}
|
|
512
|
+
static get ByDate() {
|
|
513
|
+
switch (this._cultureID) {
|
|
514
|
+
case CultureIDs.De_DE: return "Bis zum";
|
|
515
|
+
case CultureIDs.En_US: return "By";
|
|
516
|
+
case CultureIDs.Es_ES: return "Para el";
|
|
517
|
+
case CultureIDs.Fr_FR: return "Avant le";
|
|
518
|
+
case CultureIDs.Pt_PT: return "Até";
|
|
519
|
+
default: return "Entro il";
|
|
520
|
+
}
|
|
521
|
+
}
|
|
492
522
|
static get CassettoDoganaleExportMRN() {
|
|
493
523
|
switch (this._cultureID) {
|
|
494
524
|
case CultureIDs.De_DE: return "MRN-Erholung für den Export";
|
|
@@ -659,6 +689,16 @@ export class SDKUI_Localizator {
|
|
|
659
689
|
default: return "Commenta";
|
|
660
690
|
}
|
|
661
691
|
}
|
|
692
|
+
static get CommentAndComplete() {
|
|
693
|
+
switch (this._cultureID) {
|
|
694
|
+
case CultureIDs.De_DE: return "Kommentieren und abschließen";
|
|
695
|
+
case CultureIDs.En_US: return "Comment and complete";
|
|
696
|
+
case CultureIDs.Es_ES: return "Comentar y completar";
|
|
697
|
+
case CultureIDs.Fr_FR: return "Commenter et compléter";
|
|
698
|
+
case CultureIDs.Pt_PT: return "Comentar e concluir";
|
|
699
|
+
default: return "Commenta e completa";
|
|
700
|
+
}
|
|
701
|
+
}
|
|
662
702
|
static get CommentDoesNotMeetRequirements() {
|
|
663
703
|
switch (this._cultureID) {
|
|
664
704
|
case CultureIDs.De_DE: return "Der Kommentar erfüllt nicht die erforderlichen Anforderungen";
|
|
@@ -689,6 +729,16 @@ export class SDKUI_Localizator {
|
|
|
689
729
|
default: return "Configura";
|
|
690
730
|
}
|
|
691
731
|
}
|
|
732
|
+
static get Confirm() {
|
|
733
|
+
switch (this._cultureID) {
|
|
734
|
+
case CultureIDs.De_DE: return "Bestätigen";
|
|
735
|
+
case CultureIDs.En_US: return "Confirm";
|
|
736
|
+
case CultureIDs.Es_ES: return "Confirmar";
|
|
737
|
+
case CultureIDs.Fr_FR: return "Confirmer";
|
|
738
|
+
case CultureIDs.Pt_PT: return "Confirmar";
|
|
739
|
+
default: return "Conferma";
|
|
740
|
+
}
|
|
741
|
+
}
|
|
692
742
|
static get ConfirmPassword() {
|
|
693
743
|
switch (this._cultureID) {
|
|
694
744
|
case CultureIDs.De_DE: return "Bestätige das Passwort";
|
|
@@ -709,6 +759,16 @@ export class SDKUI_Localizator {
|
|
|
709
759
|
default: return "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
|
710
760
|
}
|
|
711
761
|
}
|
|
762
|
+
static get Continue() {
|
|
763
|
+
switch (this._cultureID) {
|
|
764
|
+
case CultureIDs.De_DE: return "Fortfahren";
|
|
765
|
+
case CultureIDs.En_US: return "Continue";
|
|
766
|
+
case CultureIDs.Es_ES: return "Continuar";
|
|
767
|
+
case CultureIDs.Fr_FR: return "Continuer";
|
|
768
|
+
case CultureIDs.Pt_PT: return "Continuar";
|
|
769
|
+
default: return "Continua";
|
|
770
|
+
}
|
|
771
|
+
}
|
|
712
772
|
static get ContinueOperation() {
|
|
713
773
|
switch (this._cultureID) {
|
|
714
774
|
case CultureIDs.De_DE: return "Fortfahren?";
|
|
@@ -1069,6 +1129,16 @@ export class SDKUI_Localizator {
|
|
|
1069
1129
|
default: return "Disabilitato";
|
|
1070
1130
|
}
|
|
1071
1131
|
}
|
|
1132
|
+
static get DisplayFormat() {
|
|
1133
|
+
switch (this._cultureID) {
|
|
1134
|
+
case CultureIDs.De_DE: return "Anzeigeformat";
|
|
1135
|
+
case CultureIDs.En_US: return "Display Format";
|
|
1136
|
+
case CultureIDs.Es_ES: return "Formato de visualización";
|
|
1137
|
+
case CultureIDs.Fr_FR: return "Format d'affichage";
|
|
1138
|
+
case CultureIDs.Pt_PT: return "Formato de exibição";
|
|
1139
|
+
default: return "Formato di visualizzazione";
|
|
1140
|
+
}
|
|
1141
|
+
}
|
|
1072
1142
|
static get DistinctValues() {
|
|
1073
1143
|
switch (this._cultureID) {
|
|
1074
1144
|
case CultureIDs.De_DE: return "Unterschiedliche Werte";
|
|
@@ -1880,6 +1950,16 @@ export class SDKUI_Localizator {
|
|
|
1880
1950
|
default: return "Errore nell'eliminazione della cartella";
|
|
1881
1951
|
}
|
|
1882
1952
|
}
|
|
1953
|
+
static get Grids() {
|
|
1954
|
+
switch (this._cultureID) {
|
|
1955
|
+
case CultureIDs.De_DE: return "Raster";
|
|
1956
|
+
case CultureIDs.En_US: return "Grids";
|
|
1957
|
+
case CultureIDs.Es_ES: return "Cuadrículas";
|
|
1958
|
+
case CultureIDs.Fr_FR: return "Grilles";
|
|
1959
|
+
case CultureIDs.Pt_PT: return "Grades";
|
|
1960
|
+
default: return "Griglie";
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1883
1963
|
static get Hide_CompleteName() {
|
|
1884
1964
|
switch (this._cultureID) {
|
|
1885
1965
|
case CultureIDs.De_DE: return "Vollständigen Namen ausblenden";
|
|
@@ -2130,6 +2210,16 @@ export class SDKUI_Localizator {
|
|
|
2130
2210
|
default: return "Esporta la fattura nel seguente formato";
|
|
2131
2211
|
}
|
|
2132
2212
|
}
|
|
2213
|
+
static get LandingPage() {
|
|
2214
|
+
switch (this._cultureID) {
|
|
2215
|
+
case CultureIDs.De_DE: return "Landingpage";
|
|
2216
|
+
case CultureIDs.En_US: return "Landing Page";
|
|
2217
|
+
case CultureIDs.Es_ES: return "Página de destino";
|
|
2218
|
+
case CultureIDs.Fr_FR: return "Page de destination";
|
|
2219
|
+
case CultureIDs.Pt_PT: return "Página de destino";
|
|
2220
|
+
default: return "Pagina iniziale";
|
|
2221
|
+
}
|
|
2222
|
+
}
|
|
2133
2223
|
static get LastRead() {
|
|
2134
2224
|
switch (this._cultureID) {
|
|
2135
2225
|
case CultureIDs.De_DE: return "Letzte Lesung";
|
|
@@ -2591,6 +2681,36 @@ export class SDKUI_Localizator {
|
|
|
2591
2681
|
default: return "Maggiori informazioni";
|
|
2592
2682
|
}
|
|
2593
2683
|
}
|
|
2684
|
+
static get MoreInfoCompleteRequestSentBy() {
|
|
2685
|
+
switch (this._cultureID) {
|
|
2686
|
+
case CultureIDs.De_DE: return "Vervollständigen Sie die von [nome] gesendete Anfrage für weitere Informationen"; // Potrebbe servire una variabile per il nome
|
|
2687
|
+
case CultureIDs.En_US: return "Complete the request for more information sent by";
|
|
2688
|
+
case CultureIDs.Es_ES: return "Completa la solicitud de más información enviada por";
|
|
2689
|
+
case CultureIDs.Fr_FR: return "Complétez la demande d'informations complémentaires envoyée par";
|
|
2690
|
+
case CultureIDs.Pt_PT: return "Conclua a solicitação de mais informações enviada por";
|
|
2691
|
+
default: return "Completa la richiesta di maggiori informazioni inviata da";
|
|
2692
|
+
}
|
|
2693
|
+
}
|
|
2694
|
+
static get MoreInfoCompleted() {
|
|
2695
|
+
switch (this._cultureID) {
|
|
2696
|
+
case CultureIDs.De_DE: return "Die Anfrage für weitere Informationen wurde abgeschlossen";
|
|
2697
|
+
case CultureIDs.En_US: return "The request for more information has been completed";
|
|
2698
|
+
case CultureIDs.Es_ES: return "La solicitud de más información ha sido completada";
|
|
2699
|
+
case CultureIDs.Fr_FR: return "La demande de plus d'informations a été complétée";
|
|
2700
|
+
case CultureIDs.Pt_PT: return "A solicitação de mais informações foi concluída";
|
|
2701
|
+
default: return "La richiesta maggiori informazioni è stata completata";
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
static get MoreInfoSent() {
|
|
2705
|
+
switch (this._cultureID) {
|
|
2706
|
+
case CultureIDs.De_DE: return "Die Anfrage für weitere Informationen wurde gesendet";
|
|
2707
|
+
case CultureIDs.En_US: return "The request for more information has been sent";
|
|
2708
|
+
case CultureIDs.Es_ES: return "La solicitud de más información ha sido enviada";
|
|
2709
|
+
case CultureIDs.Fr_FR: return "La demande de plus d'informations a été envoyée";
|
|
2710
|
+
case CultureIDs.Pt_PT: return "A solicitação de mais informações foi enviada";
|
|
2711
|
+
default: return "La richiesta maggiori informazioni è stata inviata";
|
|
2712
|
+
}
|
|
2713
|
+
}
|
|
2594
2714
|
static get Move() {
|
|
2595
2715
|
switch (this._cultureID) {
|
|
2596
2716
|
case CultureIDs.De_DE: return "Verschieben";
|
|
@@ -3321,6 +3441,36 @@ export class SDKUI_Localizator {
|
|
|
3321
3441
|
default: return "Precedente";
|
|
3322
3442
|
}
|
|
3323
3443
|
}
|
|
3444
|
+
static get Priority() {
|
|
3445
|
+
switch (this._cultureID) {
|
|
3446
|
+
case CultureIDs.De_DE: return "Priorität";
|
|
3447
|
+
case CultureIDs.En_US: return "Priority";
|
|
3448
|
+
case CultureIDs.Es_ES: return "Prioridad";
|
|
3449
|
+
case CultureIDs.Fr_FR: return "Priorité";
|
|
3450
|
+
case CultureIDs.Pt_PT: return "Prioridade";
|
|
3451
|
+
default: return "Priorità";
|
|
3452
|
+
}
|
|
3453
|
+
}
|
|
3454
|
+
static get PriorityHigh() {
|
|
3455
|
+
switch (this._cultureID) {
|
|
3456
|
+
case CultureIDs.De_DE: return "Hoch";
|
|
3457
|
+
case CultureIDs.En_US: return "High";
|
|
3458
|
+
case CultureIDs.Es_ES: return "Alta";
|
|
3459
|
+
case CultureIDs.Fr_FR: return "Élevée";
|
|
3460
|
+
case CultureIDs.Pt_PT: return "Alta";
|
|
3461
|
+
default: return "Alta";
|
|
3462
|
+
}
|
|
3463
|
+
}
|
|
3464
|
+
static get PriorityLow() {
|
|
3465
|
+
switch (this._cultureID) {
|
|
3466
|
+
case CultureIDs.De_DE: return "Niedrig";
|
|
3467
|
+
case CultureIDs.En_US: return "Low";
|
|
3468
|
+
case CultureIDs.Es_ES: return "Baja";
|
|
3469
|
+
case CultureIDs.Fr_FR: return "Basse";
|
|
3470
|
+
case CultureIDs.Pt_PT: return "Baixa";
|
|
3471
|
+
default: return "Bassa";
|
|
3472
|
+
}
|
|
3473
|
+
}
|
|
3324
3474
|
static get ProcessedItems() {
|
|
3325
3475
|
switch (this._cultureID) {
|
|
3326
3476
|
case CultureIDs.De_DE: return "Durchdachte Elemente";
|
|
@@ -3518,6 +3668,26 @@ export class SDKUI_Localizator {
|
|
|
3518
3668
|
default: return "Ricorda credenziali";
|
|
3519
3669
|
}
|
|
3520
3670
|
}
|
|
3671
|
+
static get Request() {
|
|
3672
|
+
switch (this._cultureID) {
|
|
3673
|
+
case CultureIDs.De_DE: return "Anfordern";
|
|
3674
|
+
case CultureIDs.En_US: return "Request";
|
|
3675
|
+
case CultureIDs.Es_ES: return "Solicitar";
|
|
3676
|
+
case CultureIDs.Fr_FR: return "Demander";
|
|
3677
|
+
case CultureIDs.Pt_PT: return "Requisitar";
|
|
3678
|
+
default: return "Richiedi";
|
|
3679
|
+
}
|
|
3680
|
+
}
|
|
3681
|
+
static get RequestTo() {
|
|
3682
|
+
switch (this._cultureID) {
|
|
3683
|
+
case CultureIDs.De_DE: return "Anfordern an";
|
|
3684
|
+
case CultureIDs.En_US: return "Request to";
|
|
3685
|
+
case CultureIDs.Es_ES: return "Solicitar a";
|
|
3686
|
+
case CultureIDs.Fr_FR: return "Demander à";
|
|
3687
|
+
case CultureIDs.Pt_PT: return "Requisitar a";
|
|
3688
|
+
default: return "Richiedi a";
|
|
3689
|
+
}
|
|
3690
|
+
}
|
|
3521
3691
|
static get Required() {
|
|
3522
3692
|
switch (this._cultureID) {
|
|
3523
3693
|
case CultureIDs.De_DE: return "Obligatorisch";
|
|
@@ -4079,6 +4249,26 @@ export class SDKUI_Localizator {
|
|
|
4079
4249
|
default: return "Mostra ricerca";
|
|
4080
4250
|
}
|
|
4081
4251
|
}
|
|
4252
|
+
static get ShowColumnSeparatingLines() {
|
|
4253
|
+
switch (this._cultureID) {
|
|
4254
|
+
case CultureIDs.De_DE: return "Spalten-Trennungslinien anzeigen";
|
|
4255
|
+
case CultureIDs.En_US: return "Show column separating lines";
|
|
4256
|
+
case CultureIDs.Es_ES: return "Mostrar líneas de separación de columnas";
|
|
4257
|
+
case CultureIDs.Fr_FR: return "Afficher les lignes de séparation des colonnes";
|
|
4258
|
+
case CultureIDs.Pt_PT: return "Mostrar linhas de separação de colunas";
|
|
4259
|
+
default: return "Mostra le linee che separano le colonne";
|
|
4260
|
+
}
|
|
4261
|
+
}
|
|
4262
|
+
static get ShowRowSeparatingLines() {
|
|
4263
|
+
switch (this._cultureID) {
|
|
4264
|
+
case CultureIDs.De_DE: return "Zeilen-Trennungslinien anzeigen";
|
|
4265
|
+
case CultureIDs.En_US: return "Show row separating lines";
|
|
4266
|
+
case CultureIDs.Es_ES: return "Mostrar líneas de separación de filas";
|
|
4267
|
+
case CultureIDs.Fr_FR: return "Afficher les lignes de séparation des rangées";
|
|
4268
|
+
case CultureIDs.Pt_PT: return "Mostrar linhas de separação de linhas";
|
|
4269
|
+
default: return "Mostra le linee che separano le righe";
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4082
4272
|
static get Signature() {
|
|
4083
4273
|
switch (this._cultureID) {
|
|
4084
4274
|
case CultureIDs.De_DE: return "Unterschrift";
|
|
@@ -4529,6 +4719,16 @@ export class SDKUI_Localizator {
|
|
|
4529
4719
|
default: return "Membro";
|
|
4530
4720
|
}
|
|
4531
4721
|
}
|
|
4722
|
+
static get UseNativeScrollbar() {
|
|
4723
|
+
switch (this._cultureID) {
|
|
4724
|
+
case CultureIDs.De_DE: return "Native Scrollbar verwenden";
|
|
4725
|
+
case CultureIDs.En_US: return "Use native scrollbar";
|
|
4726
|
+
case CultureIDs.Es_ES: return "Usar barra de desplazamiento nativa";
|
|
4727
|
+
case CultureIDs.Fr_FR: return "Utiliser la barre de défilement native";
|
|
4728
|
+
case CultureIDs.Pt_PT: return "Usar barra de rolagem nativa";
|
|
4729
|
+
default: return "Usa la scrollbar nativa";
|
|
4730
|
+
}
|
|
4731
|
+
}
|
|
4532
4732
|
static get Valid() {
|
|
4533
4733
|
switch (this._cultureID) {
|
|
4534
4734
|
case CultureIDs.De_DE: return "Gültig";
|
|
@@ -4589,6 +4789,16 @@ export class SDKUI_Localizator {
|
|
|
4589
4789
|
default: return "Valore NON presente";
|
|
4590
4790
|
}
|
|
4591
4791
|
}
|
|
4792
|
+
static get ValueTooLong() {
|
|
4793
|
+
switch (this._cultureID) {
|
|
4794
|
+
case CultureIDs.De_DE: return "Wert zu lang";
|
|
4795
|
+
case CultureIDs.En_US: return "Value too long";
|
|
4796
|
+
case CultureIDs.Es_ES: return "Valor demasiado largo";
|
|
4797
|
+
case CultureIDs.Fr_FR: return "Valeur trop longue";
|
|
4798
|
+
case CultureIDs.Pt_PT: return "Valor muito longo";
|
|
4799
|
+
default: return "Valore troppo lungo";
|
|
4800
|
+
}
|
|
4801
|
+
}
|
|
4592
4802
|
static get VariablesSystem() {
|
|
4593
4803
|
switch (this._cultureID) {
|
|
4594
4804
|
case CultureIDs.De_DE: return "Systemvariablen";
|
|
@@ -4749,6 +4959,36 @@ export class SDKUI_Localizator {
|
|
|
4749
4959
|
default: return "Dati tecnici del WorkItem"; // Italian (default)
|
|
4750
4960
|
}
|
|
4751
4961
|
}
|
|
4962
|
+
static get WorkitemApprove() {
|
|
4963
|
+
switch (this._cultureID) {
|
|
4964
|
+
case CultureIDs.De_DE: return "Arbeitselement genehmigen";
|
|
4965
|
+
case CultureIDs.En_US: return "Approve workitem";
|
|
4966
|
+
case CultureIDs.Es_ES: return "Aprobar elemento de trabajo";
|
|
4967
|
+
case CultureIDs.Fr_FR: return "Approuver l'élément de travail";
|
|
4968
|
+
case CultureIDs.Pt_PT: return "Aprovar item de trabalho";
|
|
4969
|
+
default: return "Approva workitem";
|
|
4970
|
+
}
|
|
4971
|
+
}
|
|
4972
|
+
static get WorkitemReject() {
|
|
4973
|
+
switch (this._cultureID) {
|
|
4974
|
+
case CultureIDs.De_DE: return "Arbeitselement ablehnen";
|
|
4975
|
+
case CultureIDs.En_US: return "Reject workitem";
|
|
4976
|
+
case CultureIDs.Es_ES: return "Rechazar elemento de trabajo";
|
|
4977
|
+
case CultureIDs.Fr_FR: return "Refuser l'élément de travail";
|
|
4978
|
+
case CultureIDs.Pt_PT: return "Rejeitar item de trabalho";
|
|
4979
|
+
default: return "Rifiuta workitem";
|
|
4980
|
+
}
|
|
4981
|
+
}
|
|
4982
|
+
static get WorkitemReassign() {
|
|
4983
|
+
switch (this._cultureID) {
|
|
4984
|
+
case CultureIDs.De_DE: return "Arbeitselement neu zuweisen";
|
|
4985
|
+
case CultureIDs.En_US: return "Reassign workitem";
|
|
4986
|
+
case CultureIDs.Es_ES: return "Reasignar elemento de trabajo";
|
|
4987
|
+
case CultureIDs.Fr_FR: return "Réaffecter l'élément de travail";
|
|
4988
|
+
case CultureIDs.Pt_PT: return "Reatribuir item de trabalho";
|
|
4989
|
+
default: return "Riassegna workitem";
|
|
4990
|
+
}
|
|
4991
|
+
}
|
|
4752
4992
|
static get WrittenOn() {
|
|
4753
4993
|
switch (this._cultureID) {
|
|
4754
4994
|
case CultureIDs.De_DE: return "Geschrieben am";
|