52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
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",
|
|
smtpPassword: "SMTP Password",
|
|
smtpAuthMethod: "Authentication Method",
|
|
enableTLS: "Enable TLS",
|
|
localName: "Local Name",
|
|
|
|
// Test Email
|
|
testEmail: "Test Email",
|
|
sendTestEmail: "Send test email",
|
|
emailTemplate: "Email template",
|
|
verification: "Verification",
|
|
passwordReset: "Password reset",
|
|
confirmEmailChange: "Confirm email change",
|
|
otp: "OTP",
|
|
loginAlert: "Login alert",
|
|
authCollection: "Auth collection",
|
|
selectCollection: "Select collection",
|
|
toEmailAddress: "To email address",
|
|
enterEmailAddress: "Enter email address",
|
|
sending: "Sending...",
|
|
|
|
// Actions and status
|
|
save: "Save Changes",
|
|
saving: "Saving...",
|
|
settingsUpdated: "Settings updated successfully",
|
|
errorSavingSettings: "Error saving settings",
|
|
errorFetchingSettings: "Error loading settings",
|
|
testConnection: "Test Connection",
|
|
testingConnection: "Testing Connection...",
|
|
connectionSuccess: "Connection successful",
|
|
connectionFailed: "Connection failed"
|
|
}; |