feat: Improve Español language (#10400)

This commit is contained in:
2025-09-17 22:29:59 +08:00 committed by GitHub
parent 41c49ca95f
commit 37ef2059f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 3796 additions and 3784 deletions

View file

@ -16,7 +16,7 @@ import ptBR from 'element-plus/es/locale/lang/pt-br';
import ru from 'element-plus/es/locale/lang/ru';
import ko from 'element-plus/es/locale/lang/ko';
import tr from 'element-plus/es/locale/lang/tr';
import esES from 'element-plus/es/locale/lang/es-es';
import esES from 'element-plus/es/locale/lang/es';
import { useTheme } from '@/global/use-theme';
useTheme();

View file

@ -383,6 +383,7 @@ const message = {
tamper: 'Tamper-proof',
app: 'Application',
msgCenter: 'Task Center',
disk: 'Disk',
},
home: {
recommend: 'recommend',
@ -1626,6 +1627,8 @@ const message = {
sessionTimeoutHelper:
'The panel will automatically be logged out if there is no operation for more than {0} second(s).',
systemIP: 'System address',
systemIPHelper:
'The address will be used for application redirection, container access, and other functions. Each node can be configured with a different address.',
proxy: 'Server proxy',
proxyHelper: 'It will be effective in the following scenarios after you set up the proxy server:',
proxyHelper1:

File diff suppressed because it is too large Load diff

View file

@ -372,6 +372,7 @@ const message = {
tamper: '改ざん防止',
app: 'アプリケーション',
msgCenter: 'タスクセンター',
disk: 'ディスク',
},
home: {
recommend: 'おすすめ',

View file

@ -374,6 +374,7 @@ const message = {
tamper: '변조 방지',
app: '애플리케이션',
msgCenter: '작업 센터',
disk: '디스크',
},
home: {
recommend: '추천',

View file

@ -380,6 +380,7 @@ const message = {
tamper: 'Bukti Pengubahsuaian',
app: 'Aplikasi',
msgCenter: 'Pusat Tugas',
disk: 'Disk',
},
home: {
recommend: 'cadangan',

View file

@ -378,6 +378,7 @@ const message = {
tamper: 'À prova de violação',
app: 'Aplicativo',
msgCenter: 'Central de Tarefas',
disk: 'Disco',
},
home: {
recommend: 'recomendar',

View file

@ -375,6 +375,7 @@ const message = {
tamper: 'Защита от несанкционированного доступа',
app: 'Приложение',
msgCenter: 'Центр задач',
disk: 'Диск',
},
home: {
recommend: 'рекомендовать',

View file

@ -1643,6 +1643,8 @@ const message = {
sessionTimeoutError: 'Minimum oturum zaman ımı 300 saniyedir',
sessionTimeoutHelper: 'Panel, {0} saniye boyunca işlem yapılmazsa otomatik olarak oturumu kapatır.',
systemIP: 'Sistem adresi',
systemIPHelper:
'Adres, uygulama yönlendirmesi, konteyner erişimi ve diğer işlevler için kullanılacaktır. Her düğüm farklı bir adresle yapılandırılabilir.',
proxy: 'Sunucu vekili',
proxyHelper: 'Vekil sunucuyu ayarladıktan sonra aşağıdaki senaryolarda etkili olacaktır:',
proxyHelper1: 'Uygulama mağazasından kurulum paketi indirme ve senkronizasyon (Yalnızca Profesyonel sürüm)',

View file

@ -373,6 +373,7 @@ const message = {
tamper: '防篡改',
app: '應用',
msgCenter: '任務中心',
disk: '磁碟',
},
home: {
recommend: '推薦',

View file

@ -297,6 +297,8 @@ function handleCommand(command: string) {
dropdownText.value = 'Bahasa Melayu';
} else if (command === 'tr') {
dropdownText.value = 'Turkish';
} else if (command === 'es-ES') {
dropdownText.value = 'España - Español';
}
}

View file

@ -323,6 +323,7 @@ const languageOptions = ref([
{ value: 'ru', label: 'Русский' },
{ value: 'ms', label: 'Bahasa Melayu' },
{ value: 'tr', label: 'Turkish' },
{ value: 'es-ES', label: 'España - Español' },
]);
if (globalStore.isIntl) {