35 lines
1000 B
TypeScript
35 lines
1000 B
TypeScript
|
|
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"
|
|
}; |