Skip to content
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
13 changes: 13 additions & 0 deletions src/main/kotlin/com/dekonoplyov/Predefined.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class Predefined {
"German" to GERMAN,
"Italian" to ITALIAN,
"Czech" to CZECH,
"Danish" to DANISH,
"Other" to OTHER,
"Empty" to ""
)
Expand Down Expand Up @@ -72,6 +73,18 @@ private const val CZECH = """; with ů
0 with é
"""

private const val DANISH = """` with ½
- with +
= with ´
[ with å
] with ¨
; with æ
' with ø
# with '
\ with <
/ with -
"""

private const val OTHER = """; with ;
= with =
- with -
Expand Down