@micha.bigler/ui-core-micha 1.4.16 → 1.4.17
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.
|
@@ -82,6 +82,6 @@ const SupportRecoveryRequestsTab = () => {
|
|
|
82
82
|
mb: 2,
|
|
83
83
|
whiteSpace: 'pre-wrap',
|
|
84
84
|
fontSize: '0.875rem',
|
|
85
|
-
}, children: selectedRequest.message || t('Support.RECOVERY_NO_MESSAGE', 'No message provided.') })] })), _jsx(TextField, { label: t('Support.RECOVERY_NOTE_LABEL', 'Reason for your decision'), helperText: t('Support.RECOVERY_NOTE_HELP', 'Explain briefly why you approve or reject this request.'), multiline: true, minRows: 3, fullWidth: true, value: dialogNote, onChange: (e) => setDialogNote(e.target.value) })] }), _jsxs(DialogActions, { children: [_jsx(Button, { onClick: closeDialog, children: t('
|
|
85
|
+
}, children: selectedRequest.message || t('Support.RECOVERY_NO_MESSAGE', 'No message provided.') })] })), _jsx(TextField, { label: t('Support.RECOVERY_NOTE_LABEL', 'Reason for your decision'), helperText: t('Support.RECOVERY_NOTE_HELP', 'Explain briefly why you approve or reject this request.'), multiline: true, minRows: 3, fullWidth: true, value: dialogNote, onChange: (e) => setDialogNote(e.target.value) })] }), _jsxs(DialogActions, { children: [_jsx(Button, { onClick: closeDialog, children: t('Support.CANCEL', 'Cancel') }), _jsx(Button, { onClick: handleReject, color: "error", disabled: !dialogNote.trim(), children: t('Support.RECOVERY_REJECT_SUBMIT', 'Reject request') }), _jsx(Button, { onClick: handleApprove, variant: "contained", disabled: !dialogNote.trim(), children: t('Support.RECOVERY_APPROVE_SUBMIT', 'Approve and send link') })] })] })] }));
|
|
86
86
|
};
|
|
87
87
|
export default SupportRecoveryRequestsTab;
|
|
@@ -821,6 +821,11 @@ export const authTranslations = {
|
|
|
821
821
|
"fr": "Refuser la demande",
|
|
822
822
|
"en": "Reject request"
|
|
823
823
|
},
|
|
824
|
+
"Support.CANCEL": {
|
|
825
|
+
"de": "Abbrechen",
|
|
826
|
+
"fr": "Annuler",
|
|
827
|
+
"en": "Cancel"
|
|
828
|
+
},
|
|
824
829
|
"Support.RECOVERY_REQUESTS_TITLE": {
|
|
825
830
|
"de": "Anfragen zur Kontowiederherstellung",
|
|
826
831
|
"fr": "Demandes de récupération de compte",
|
package/package.json
CHANGED
|
@@ -867,6 +867,11 @@ export const authTranslations = {
|
|
|
867
867
|
"fr": "Refuser la demande",
|
|
868
868
|
"en": "Reject request"
|
|
869
869
|
},
|
|
870
|
+
"Support.CANCEL": {
|
|
871
|
+
"de": "Abbrechen",
|
|
872
|
+
"fr": "Annuler",
|
|
873
|
+
"en": "Cancel"
|
|
874
|
+
},
|
|
870
875
|
"Support.RECOVERY_REQUESTS_TITLE": {
|
|
871
876
|
"de": "Anfragen zur Kontowiederherstellung",
|
|
872
877
|
"fr": "Demandes de récupération de compte",
|