Add Finnish Locale (#2075)

* Add Finnish Locale
* Update readme
This commit is contained in:
kermieisinthehouse 2021-11-28 19:43:18 -08:00 committed by GitHub
parent 9ebf8331ac
commit 7953fa356f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 2 deletions

View file

@ -43,9 +43,9 @@ The simplest way to tag a large number of files is by using the [Tagger](https:/
# Translation # Translation
[![Translate](https://translate.stashapp.cc/widgets/stash/-/stash-desktop-client/svg-badge.svg)](https://translate.stashapp.cc/engage/stash/) [![Translate](https://translate.stashapp.cc/widgets/stash/-/stash-desktop-client/svg-badge.svg)](https://translate.stashapp.cc/engage/stash/)
🇧🇷 🇨🇳 🇬🇧 🇫🇷 🇩🇪 🇮🇹 🇪🇸 🇸🇪 🇹🇼 🇧🇷 🇨🇳 🇬🇧 🇫🇮 🇫🇷 🇩🇪 🇮🇹 🇪🇸 🇸🇪 🇹🇼
Stash is available in 9 languages (so far!) and it could be in your language too. If you want to help us translate Stash into your language, you can make an account at [translate.stashapp.cc](https://translate.stashapp.cc/projects/stash/stash-desktop-client/) to get started contributing new languages or improving existing ones. Thanks! Stash is available in 10 languages (so far!) and it could be in your language too. If you want to help us translate Stash into your language, you can make an account at [translate.stashapp.cc](https://translate.stashapp.cc/projects/stash/stash-desktop-client/) to get started contributing new languages or improving existing ones. Thanks!
# Support (FAQ) # Support (FAQ)

View file

@ -14,6 +14,7 @@ var matcher = language.NewMatcher([]language.Tag{
language.MustParse("de-DE"), language.MustParse("de-DE"),
language.MustParse("it-IT"), language.MustParse("it-IT"),
language.MustParse("fr-FR"), language.MustParse("fr-FR"),
language.MustParse("fi-FI"),
language.MustParse("pt-BR"), language.MustParse("pt-BR"),
language.MustParse("sv-SE"), language.MustParse("sv-SE"),
language.MustParse("zh-CN"), language.MustParse("zh-CN"),

View file

@ -177,6 +177,7 @@ export const SettingsInterfacePanel: React.FC = () => {
<option value="pt-BR">Portuguese (Brazil)</option> <option value="pt-BR">Portuguese (Brazil)</option>
<option value="fr-FR">French (France)</option> <option value="fr-FR">French (France)</option>
<option value="it-IT">Italian (Italy)</option> <option value="it-IT">Italian (Italy)</option>
<option value="fi-FI">Finnish (Finland)</option>
<option value="sv-SE">Swedish (Sweden)</option> <option value="sv-SE">Swedish (Sweden)</option>
<option value="zh-TW"> ()</option> <option value="zh-TW"> ()</option>
<option value="zh-CN"> ()</option> <option value="zh-CN"> ()</option>

View file

@ -5,6 +5,7 @@ import esES from "./es-ES.json";
import ptBR from "./pt-BR.json"; import ptBR from "./pt-BR.json";
import frFR from "./fr-FR.json"; import frFR from "./fr-FR.json";
import itIT from "./it-IT.json"; import itIT from "./it-IT.json";
import fiFI from "./fi-FI.json";
import svSE from "./sv-SE.json"; import svSE from "./sv-SE.json";
import zhTW from "./zh-TW.json"; import zhTW from "./zh-TW.json";
import zhCN from "./zh-CN.json"; import zhCN from "./zh-CN.json";
@ -17,6 +18,7 @@ export default {
ptBR, ptBR,
frFR, frFR,
itIT, itIT,
fiFI,
svSE, svSE,
zhTW, zhTW,
zhCN, zhCN,