Skip to content

Commit

Permalink
Added Filipino language option
Browse files Browse the repository at this point in the history
  • Loading branch information
jobtalle committed Jan 16, 2022
1 parent a4ee0ee commit 2f8ad57
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion KoiTranslations
Submodule KoiTranslations updated 1 files
+37 −0 filipino.json
3 changes: 2 additions & 1 deletion js/koi/gui/menu/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ Menu.prototype.LANGUAGES = [
["ru", "Руccкий (Russian)"],
["fy", "Frysk (Frisian)"],
["uk", "Українська (Ukrainian)"],
["it", "Italiano (Italian)"]
["it", "Italiano (Italian)"],
["fil", "Filipino"]
];

/**
Expand Down
4 changes: 4 additions & 0 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ const makeLanguage = locale => {
chosenLocale = "it";

return new Language("KoiTranslations/italian.json");
case "fil":
chosenLocale = "fil";

return new Language("KoiTranslations/filipino.json");
}
};

Expand Down

0 comments on commit 2f8ad57

Please sign in to comment.