translations #106

This commit is contained in:
Alireza Ahmadi
2024-05-15 00:08:50 +02:00
parent b4fcec9477
commit 7d39252fec
44 changed files with 1254 additions and 323 deletions
+3 -3
View File
@@ -44,7 +44,7 @@
</v-col>
</v-row>
<v-row>
<v-col>{{ $t('in.tls') }}</v-col>
<v-col>{{ $t('objects.tls') }}</v-col>
<v-col dir="ltr">
{{ Object.hasOwn(item,'tls') ? $t(item.tls?.enabled ? 'enable' : 'disable') : '-' }}
</v-col>
@@ -118,11 +118,11 @@ const inbounds = computed((): Inbound[] => {
})
const inTags = computed((): string[] => {
return appConfig.value.inbounds.map(i => i.tag)
return inbounds.value.map(i => i.tag)
})
const outTags = computed((): string[] => {
return appConfig.value.outbounds.map(i => i.tag)
return appConfig.value.outbounds?.map(i => i.tag)
})
const clients = computed((): Client[] => {