Merge pull request #2663 from onesounds/Vietnamese

Add Vietnamese Support
This commit is contained in:
Jeremy Wu 2024-04-24 12:59:45 +10:00 committed by GitHub
commit a288ee401c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -97,6 +97,7 @@ Português
Português (Brasil)
Italiano
Slovenský
Tiếng Việt
Droplex
Preinstalled
errormetadatafile

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace Flow.Launcher.Core.Resource
{
@ -27,6 +27,8 @@ namespace Flow.Launcher.Core.Resource
public static Language Turkish = new Language("tr", "Türkçe");
public static Language Czech = new Language("cs", "čeština");
public static Language Arabic = new Language("ar", "اللغة العربية");
public static Language Vietnamese = new Language("vi-vn", "Tiếng Việt");
public static List<Language> GetAvailableLanguages()
{
@ -54,7 +56,8 @@ namespace Flow.Launcher.Core.Resource
Slovak,
Turkish,
Czech,
Arabic
Arabic,
Vietnamese
};
return languages;
}