mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-18 21:38:57 +08:00
feat: Improve Español language (#10400)
This commit is contained in:
parent
41c49ca95f
commit
37ef2059f1
12 changed files with 3796 additions and 3784 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
|
@ -372,6 +372,7 @@ const message = {
|
|||
tamper: '改ざん防止',
|
||||
app: 'アプリケーション',
|
||||
msgCenter: 'タスクセンター',
|
||||
disk: 'ディスク',
|
||||
},
|
||||
home: {
|
||||
recommend: 'おすすめ',
|
||||
|
|
|
|||
|
|
@ -374,6 +374,7 @@ const message = {
|
|||
tamper: '변조 방지',
|
||||
app: '애플리케이션',
|
||||
msgCenter: '작업 센터',
|
||||
disk: '디스크',
|
||||
},
|
||||
home: {
|
||||
recommend: '추천',
|
||||
|
|
|
|||
|
|
@ -380,6 +380,7 @@ const message = {
|
|||
tamper: 'Bukti Pengubahsuaian',
|
||||
app: 'Aplikasi',
|
||||
msgCenter: 'Pusat Tugas',
|
||||
disk: 'Disk',
|
||||
},
|
||||
home: {
|
||||
recommend: 'cadangan',
|
||||
|
|
|
|||
|
|
@ -378,6 +378,7 @@ const message = {
|
|||
tamper: 'À prova de violação',
|
||||
app: 'Aplicativo',
|
||||
msgCenter: 'Central de Tarefas',
|
||||
disk: 'Disco',
|
||||
},
|
||||
home: {
|
||||
recommend: 'recomendar',
|
||||
|
|
|
|||
|
|
@ -375,6 +375,7 @@ const message = {
|
|||
tamper: 'Защита от несанкционированного доступа',
|
||||
app: 'Приложение',
|
||||
msgCenter: 'Центр задач',
|
||||
disk: 'Диск',
|
||||
},
|
||||
home: {
|
||||
recommend: 'рекомендовать',
|
||||
|
|
|
|||
|
|
@ -1643,6 +1643,8 @@ const message = {
|
|||
sessionTimeoutError: 'Minimum oturum zaman aşı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)',
|
||||
|
|
|
|||
|
|
@ -373,6 +373,7 @@ const message = {
|
|||
tamper: '防篡改',
|
||||
app: '應用',
|
||||
msgCenter: '任務中心',
|
||||
disk: '磁碟',
|
||||
},
|
||||
home: {
|
||||
recommend: '推薦',
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue