mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
fix(install): update steps translation when language changes
This commit is contained in:
parent
5f0e59d095
commit
22e8446030
1 changed files with 12 additions and 10 deletions
|
@ -54,16 +54,18 @@ const canProceed = computed(() => {
|
|||
return !installTimeout.value && !hasError.value
|
||||
})
|
||||
|
||||
const steps = [
|
||||
{
|
||||
title: $gettext('System Check'),
|
||||
description: $gettext('Verify system requirements'),
|
||||
},
|
||||
{
|
||||
title: $gettext('Installation'),
|
||||
description: $gettext('Setup your Nginx UI'),
|
||||
},
|
||||
]
|
||||
const steps = computed(() => {
|
||||
return [
|
||||
{
|
||||
title: $gettext('System Check'),
|
||||
description: $gettext('Verify system requirements'),
|
||||
},
|
||||
{
|
||||
title: $gettext('Installation'),
|
||||
description: $gettext('Setup your Nginx UI'),
|
||||
},
|
||||
]
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue