Update langs.js

add : add Vietnamese option for Vietnamese users!!
This commit is contained in:
vuong2023
2023-12-05 21:04:17 +07:00
committed by GitHub
parent d4317a0a62
commit 0986791fb3

View File

@@ -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;
}
}