From 0986791fb34e0e144e0258567a41fcdcc29eb95e Mon Sep 17 00:00:00 2001 From: vuong2023 <124447749+vuong2023@users.noreply.github.com> Date: Tue, 5 Dec 2023 21:04:17 +0700 Subject: [PATCH] Update langs.js add : add Vietnamese option for Vietnamese users!! --- web/assets/js/langs.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/assets/js/langs.js b/web/assets/js/langs.js index 73adb284..af9eadb1 100644 --- a/web/assets/js/langs.js +++ b/web/assets/js/langs.js @@ -19,6 +19,11 @@ const supportLangs = [ value: 'ru-RU', icon: '🇷🇺', }, + { + name: 'Tiếng Việt', + value: 'vi-VN', + icon: '🇻🇳', + }, ]; function getLang() { @@ -60,4 +65,4 @@ function isSupportLang(lang) { } return false; -} \ No newline at end of file +}