1
0
Fork 0

Add Indonesian language (#248)

---------

Co-authored-by: sspanak <doftor.livain@gmail.com>
This commit is contained in:
Zaky Bilfagih 2023-05-15 18:43:29 +07:00 committed by GitHub
parent 008590bdf8
commit 7213338f2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 77048 additions and 0 deletions

77028
assets/id-utf8.csv Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,6 @@
Indonesian wordlist by: za
Version: cd284aa (2012-12-03)
Source: https://github.com/za/id-wordlist
License: Public Domain
Word Frequencies obtained from: https://github.com/AnySoftKeyboard/AnySoftKeyboard

View file

@ -29,6 +29,7 @@ public class LanguageCollection {
French.class,
German.class,
Hebrew.class,
Indonesian.class,
Italian.class,
Norwegian.class,
Russian.class,

View file

@ -0,0 +1,13 @@
package io.github.sspanak.tt9.languages.definitions;
import java.util.Locale;
public class Indonesian extends English {
public Indonesian() {
super();
name = "Bahasa Indonesia";
locale = new Locale("in", "ID");
dictionaryFile = "id-utf8.csv";
}
}