Update Lang

This commit is contained in:
Thien Pham Van
2026-01-27 15:19:21 +07:00
parent 7ba73f92e4
commit 576a50c113
5 changed files with 252 additions and 139 deletions

View File

@@ -6,7 +6,7 @@
<div class="hero-body px-2 py-5">
<article class="message is-primary">
<div class="message-body has-text-black fs-16 py-3">
If you forgot your password, please contact your manager for assistance with password recovery.
{{ isVietnamese ? 'Trường hợp quên mật khẩu, vui lòng liên hệ với quản lý để được hỗ trợ khôi phục mật khẩu.' : 'If you have forgotten your password, please contact your manager for assistance with resetting your password.' }}
</div>
</article>
</div>
@@ -15,5 +15,11 @@
</div>
</template>
<script>
export default {}
export default {
computed: {
isVietnamese() {
return navigator.language.toLowerCase().startsWith('vi');
},
}
}
</script>