File tree Expand file tree Collapse file tree
core/src/commonMain/kotlin/ua/syt0r/kanji/presentation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -217,9 +217,15 @@ interface AboutStrings {
217217 val licenseJmDictFuriganaDescription: String
218218 val licenseLeedsCorpusTitle: String
219219 val licenseLeedsCorpusDescription: String
220+ val licenseWanakanaKtTitle: String
221+ get() = " WanaKana Kt"
222+ val licenseWanakanaKtDescription: String
223+ get() = " Kotlin utility library for detecting and transliterating Hiragana, Katakana, and Romaji. Ported from WaniKani/WanaKana"
220224 val licenseCCASA3: String
221225 val licenseCCASA4: String
222226 val licenseCCBY: String
227+ val licenseMIT: String
228+ get() = " MIT license"
223229}
224230
225231interface PracticeImportStrings {
Original file line number Diff line number Diff line change @@ -44,6 +44,12 @@ enum class AboutCredit(
4444 description = { about.licenseLeedsCorpusDescription },
4545 license = { about.licenseCCBY },
4646 url = " http://corpus.leeds.ac.uk/list.html"
47+ ),
48+ WanakanaKt (
49+ title = { about.licenseWanakanaKtTitle },
50+ description = { about.licenseWanakanaKtDescription },
51+ license = { about.licenseMIT },
52+ url = " https://github.com/esnaultdev/wanakana-kt"
4753 )
4854
4955}
You can’t perform that action at this time.
0 commit comments