From: Lanius Trolling Date: Sat, 6 Apr 2024 12:37:34 +0000 (-0400) Subject: Fix labels X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=e1081215967bb38e224d37c19e8b70cb7fe273ef;p=factbooks Fix labels --- diff --git a/src/jvmMain/kotlin/info/mechyrdia/lore/parser_html.kt b/src/jvmMain/kotlin/info/mechyrdia/lore/parser_html.kt index bab1417..751fdd0 100644 --- a/src/jvmMain/kotlin/info/mechyrdia/lore/parser_html.kt +++ b/src/jvmMain/kotlin/info/mechyrdia/lore/parser_html.kt @@ -574,7 +574,7 @@ enum class FactbookFormattingTag(val type: HtmlLexerTag) { div(classes = "thedish-alphabet-box") { p { +"Latin Alphabet:" } textArea(classes = "input-box") { spellCheck = false } - p { +"Tylan Alphabet:" } + p { +"Thedish Alphabet:" } textArea(classes = "output-box lang-thedish") { readonly = true } } }) @@ -583,7 +583,7 @@ enum class FactbookFormattingTag(val type: HtmlLexerTag) { div(classes = "kishari-alphabet-box") { p { +"Latin Alphabet:" } textArea(classes = "input-box") { spellCheck = false } - p { +"Tylan Alphabet:" } + p { +"Kishari Alphabet:" } textArea(classes = "output-box lang-kishari") { readonly = true } } }) @@ -592,7 +592,7 @@ enum class FactbookFormattingTag(val type: HtmlLexerTag) { div(classes = "pokhwal-alphabet-box") { p { +"Latin Alphabet:" } textArea(classes = "input-box") { spellCheck = false } - p { +"Tylan Alphabet:" } + p { +"Pokhwalish Alphabet:" } textArea(classes = "output-box lang-pokhwal") { readonly = true } } })