Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ Português
Português (Brasil)
Italiano
Slovenský
Tiếng Việt
Droplex
Preinstalled
errormetadatafile
Expand Down
7 changes: 5 additions & 2 deletions Flow.Launcher.Core/Resource/AvailableLanguages.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;

namespace Flow.Launcher.Core.Resource
{
Expand Down Expand Up @@ -27,6 +27,8 @@ internal static class AvailableLanguages
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()
{
Expand Down Expand Up @@ -54,7 +56,8 @@ public static List<Language> GetAvailableLanguages()
Slovak,
Turkish,
Czech,
Arabic
Arabic,
Vietnamese
};
return languages;
}
Expand Down