Updated language for Settings Features and User Management
This commit is contained in:
@@ -8,6 +8,7 @@ import { servicesTranslations } from './services';
|
||||
import { maintenanceTranslations } from './maintenance';
|
||||
import { incidentTranslations } from './incident';
|
||||
import { sslTranslations } from './ssl';
|
||||
import { settingsTranslations } from './settings';
|
||||
|
||||
const enTranslations: Translations = {
|
||||
common: commonTranslations,
|
||||
@@ -17,7 +18,8 @@ const enTranslations: Translations = {
|
||||
services: servicesTranslations,
|
||||
maintenance: maintenanceTranslations,
|
||||
incident: incidentTranslations,
|
||||
ssl: sslTranslations
|
||||
ssl: sslTranslations,
|
||||
settings: settingsTranslations
|
||||
};
|
||||
|
||||
export default enTranslations;
|
||||
export default enTranslations;
|
||||
@@ -0,0 +1,35 @@
|
||||
|
||||
import { SettingsTranslations } from '../types/settings';
|
||||
|
||||
export const settingsTranslations: SettingsTranslations = {
|
||||
// Tabs
|
||||
systemSettings: "System Settings",
|
||||
mailSettings: "Mail Settings",
|
||||
|
||||
// System Settings
|
||||
appName: "Application Name",
|
||||
appURL: "Application URL",
|
||||
senderName: "Sender Name",
|
||||
senderEmail: "Sender Email Address",
|
||||
hideControls: "Hide Controls",
|
||||
|
||||
// Mail Settings
|
||||
smtpSettings: "SMTP Configuration",
|
||||
smtpEnabled: "Enable SMTP",
|
||||
smtpHost: "SMTP Host",
|
||||
smtpPort: "SMTP Port",
|
||||
smtpUsername: "SMTP Username",
|
||||
smtpAuthMethod: "Authentication Method",
|
||||
enableTLS: "Enable TLS",
|
||||
localName: "Local Name",
|
||||
|
||||
// Actions and status
|
||||
save: "Save Changes",
|
||||
saving: "Saving...",
|
||||
settingsUpdated: "Settings updated successfully",
|
||||
errorSavingSettings: "Error saving settings",
|
||||
testConnection: "Test Connection",
|
||||
testingConnection: "Testing Connection...",
|
||||
connectionSuccess: "Connection successful",
|
||||
connectionFailed: "Connection failed"
|
||||
};
|
||||
Reference in New Issue
Block a user