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