chore: update translations

This commit is contained in:
0xJacky 2023-11-29 22:28:39 +08:00
parent 9524e89c17
commit 4e85d72e96
No known key found for this signature in database
GPG key ID: B6E4A6E4A561BAF0
13 changed files with 2746 additions and 2688 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -27,7 +27,6 @@ const enabled = computed({
emit('update:enabled', value)
},
})
</script>
<template>

View file

@ -34,11 +34,11 @@ const data = inject('data') as DnsChallenge
<template #description>
<p>
{{ $gettext('The server_name'
+ 'in the current configuration must be the domain name you need to get the certificate, support'
+ ' in the current configuration must be the domain name you need to get the certificate, support'
+ 'multiple domains.') }}
</p>
<p>
{{ $gettext('The certificate for the domain will be checked 5 minutes,'
{{ $gettext('The certificate for the domain will be checked 5 minutes, '
+ 'and will be renewed if it has been more than 1 week since it was last issued.') }}
</p>
<p v-if="data.challenge_method === 'http01'">

View file

@ -210,7 +210,9 @@ function toggle(status: boolean) {
cancelText: $gettext('Cancel'),
mask: false,
centered: true,
onOk: () => onchange(false),
onOk() {
onchange(false)
},
})
}
else {

View file

@ -23,7 +23,7 @@ const props = defineProps<{
}
}>()
const emit = defineEmits(['callback', 'update:auto_cert'])
const emit = defineEmits(['callback', 'update:autoCert'])
const { $gettext } = useGettext()
@ -170,7 +170,7 @@ const autoCertRef = computed({
return props.autoCert
},
set(value) {
emit('update:auto_cert', value)
emit('update:autoCert', value)
},
})