Skip to content

Commit a288ee4

Browse files
authored
Merge pull request #2663 from onesounds/Vietnamese
Add Vietnamese Support
2 parents 6072db5 + ee17888 commit a288ee4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/actions/spelling/expect.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ Português
9797
Português (Brasil)
9898
Italiano
9999
Slovenský
100+
Tiếng Việt
100101
Droplex
101102
Preinstalled
102103
errormetadatafile

Flow.Launcher.Core/Resource/AvailableLanguages.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
22

33
namespace Flow.Launcher.Core.Resource
44
{
@@ -27,6 +27,8 @@ internal static class AvailableLanguages
2727
public static Language Turkish = new Language("tr", "Türkçe");
2828
public static Language Czech = new Language("cs", "čeština");
2929
public static Language Arabic = new Language("ar", "اللغة العربية");
30+
public static Language Vietnamese = new Language("vi-vn", "Tiếng Việt");
31+
3032

3133
public static List<Language> GetAvailableLanguages()
3234
{
@@ -54,7 +56,8 @@ public static List<Language> GetAvailableLanguages()
5456
Slovak,
5557
Turkish,
5658
Czech,
57-
Arabic
59+
Arabic,
60+
Vietnamese
5861
};
5962
return languages;
6063
}

0 commit comments

Comments
 (0)