Extracted strings.

This commit is contained in:
Skorpios
2025-03-23 21:13:49 -07:00
parent 7badb3c642
commit 980f055d5c
2 changed files with 4 additions and 2 deletions

View File

@@ -49,11 +49,11 @@ const NotificationIntegrationModal = ({
// Helper to get the field state key with error handling
const getFieldKey = (typeId, fieldId) => {
if (typeof typeId !== 'string' || typeId === '') {
throw new Error('Invalid typeId provided to getFieldKey');
throw new Error(t('errorInvalidTypeId'));
}
if (typeof fieldId !== 'string' || fieldId === '') {
throw new Error('Invalid fieldId provided to getFieldKey');
throw new Error(t('errorInvalidFieldId'));
}
return `${typeId}${fieldId.charAt(0).toUpperCase() + fieldId.slice(1)}`;

View File

@@ -184,6 +184,8 @@
"unsupportedType": "Unsupported notification type",
"networkError": "Network error occurred"
},
"errorInvalidTypeId": "Invalid notification type provided",
"errorInvalidFieldId": "Invalid field ID provided",
"testLocale": "testLocale",
"add": "Add",
"monitors": "monitors",