Skip to content

Add Srpski (Cyrillic) #3860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
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
5 changes: 4 additions & 1 deletion Flow.Launcher.Core/Resource/AvailableLanguages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
public static Language German = new Language("de", "Deutsch");
public static Language Korean = new Language("ko", "한국어");
public static Language Serbian = new Language("sr", "Srpski");
public static Language Serbian_Cyrillic = new Language("sr-Cyrl-RS", "Српска");
public static Language Portuguese_Portugal = new Language("pt-pt", "Português");
public static Language Portuguese_Brazil = new Language("pt-br", "Português (Brasil)");
public static Language Spanish = new Language("es", "Spanish");
public static Language Spanish_LatinAmerica = new Language("es-419", "Spanish (Latin America)");
public static Language Italian = new Language("it", "Italiano");
public static Language Norwegian_Bokmal = new Language("nb-NO", "Norsk Bokmål");
public static Language Slovak = new Language("sk", "Slovenčina");

Check warning on line 27 in Flow.Launcher.Core/Resource/AvailableLanguages.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`ina` is not a recognized word. (unrecognized-spelling)
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", "اللغة العربية");
Expand All @@ -47,6 +48,7 @@
German,
Korean,
Serbian,
Serbian_Cyrillic,
Portuguese_Portugal,
Portuguese_Brazil,
Spanish,
Expand Down Expand Up @@ -74,12 +76,13 @@
"ru" => "Система",
"fr" => "Système",
"ja" => "システム",
"nl" => "Systeem",

Check warning on line 79 in Flow.Launcher.Core/Resource/AvailableLanguages.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Systeem` is not a recognized word. (unrecognized-spelling)
"pl" => "System",
"da" => "System",
"de" => "System",
"ko" => "시스템",
"sr" => "Систем",
"sr" => "Sistem",

Check warning on line 84 in Flow.Launcher.Core/Resource/AvailableLanguages.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Sistem` is not a recognized word. (unrecognized-spelling)
"sr-Cyrl-RS" => "Систем",
"pt-pt" => "Sistema",
"pt-br" => "Sistema",
"es" => "Sistema",
Expand All @@ -87,7 +90,7 @@
"it" => "Sistema",
"nb-NO" => "System",
"sk" => "Systém",
"tr" => "Sistem",

Check warning on line 93 in Flow.Launcher.Core/Resource/AvailableLanguages.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Sistem` is not a recognized word. (unrecognized-spelling)

Check warning on line 93 in Flow.Launcher.Core/Resource/AvailableLanguages.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Sistem` is not a recognized word. (unrecognized-spelling)
"cs" => "Systém",
"ar" => "النظام",
"vi-vn" => "Hệ thống",
Expand Down
Loading