Updated translation for SMTP password field in Mail Settings

This commit is contained in:
Tola Leng
2025-06-05 18:33:13 +08:00
parent bd17ef7140
commit 0739d6b0ce
4 changed files with 31 additions and 24 deletions
@@ -18,6 +18,7 @@ export const settingsTranslations: SettingsTranslations = {
smtpHost: "SMTP-Host",
smtpPort: "SMTP-Port",
smtpUsername: "SMTP-Benutzername",
smtpPassword: "SMTP Password",
smtpAuthMethod: "Authentifizierungsmethode",
enableTLS: "TLS aktivieren",
localName: "Lokaler Name",
@@ -19,6 +19,7 @@ export const settingsTranslations: SettingsTranslations = {
smtpHost: "SMTP Host",
smtpPort: "SMTP Port",
smtpUsername: "SMTP Username",
smtpPassword: "SMTP Password",
smtpAuthMethod: "Authentication Method",
enableTLS: "Enable TLS",
localName: "Local Name",
@@ -28,6 +29,7 @@ export const settingsTranslations: SettingsTranslations = {
saving: "Saving...",
settingsUpdated: "Settings updated successfully",
errorSavingSettings: "Error saving settings",
errorFetchingSettings: "Error loading settings",
testConnection: "Test Connection",
testingConnection: "Testing Connection...",
connectionSuccess: "Connection successful",
+25 -23
View File
@@ -3,33 +3,35 @@ import { SettingsTranslations } from '../types/settings';
export const settingsTranslations: SettingsTranslations = {
// Tabs
systemSettings: "System Settings",
mailSettings: "Mail Settings",
systemSettings: "ការកំណត់ប្រព័ន្ធ",
mailSettings: "ការកំណត់សំបុត្រ",
// System Settings
appName: "Application Name",
appURL: "Application URL",
senderName: "Sender Name",
senderEmail: "Sender Email Address",
hideControls: "Hide Controls",
appName: "ឈ្មោះកម្មវិធី",
appURL: "URL កម្មវិធី",
senderName: "ឈ្មោះអ្នកផ្ញើ",
senderEmail: "អាសយដ្ឋានអ៊ីមែលអ្នកផ្ញើ",
hideControls: "លាក់ការគ្រប់គ្រង",
// 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",
smtpSettings: "ការកំណត់រចនាសម្ព័ន្ធ SMTP",
smtpEnabled: "បើក SMTP",
smtpHost: "ម៉ាស៊ីន SMTP",
smtpPort: "ច្រក SMTP",
smtpUsername: "ឈ្មោះអ្នកប្រើ SMTP",
smtpPassword: "ពាក្យសម្ងាត់ SMTP",
smtpAuthMethod: "វិធីសាស្ត្រផ្ទៀងផ្ទាត់",
enableTLS: "បើក TLS",
localName: "ឈ្មោះមូលដ្ឋាន",
// 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"
save: "រក្សាទុកការផ្លាស់ប្ដូរ",
saving: "កំពុងរក្សាទុក...",
settingsUpdated: "បានធ្វើបច្ចុប្បន្នភាពការកំណត់ដោយជោគជ័យ",
errorSavingSettings: "មានបញ្ហាក្នុងការរក្សាទុកការកំណត់",
errorFetchingSettings: "មានបញ្ហាក្នុងការទាញយកការកំណត់",
testConnection: "សាកល្បងការតភ្ជាប់",
testingConnection: "កំពុងសាកល្បងការតភ្ជាប់...",
connectionSuccess: "ការតភ្ជាប់ជោគជ័យ",
connectionFailed: "ការតភ្ជាប់បរាជ័យ"
};
@@ -12,11 +12,12 @@ export interface SettingsTranslations {
hideControls: string;
// Mail Settings
smtpSettings: string;
smtpSettings?: string;
smtpEnabled: string;
smtpHost: string;
smtpPort: string;
smtpUsername: string;
smtpPassword: string;
smtpAuthMethod: string;
enableTLS: string;
localName: string;
@@ -26,6 +27,7 @@ export interface SettingsTranslations {
saving: string;
settingsUpdated: string;
errorSavingSettings: string;
errorFetchingSettings: string;
testConnection: string;
testingConnection: string;
connectionSuccess: string;