From e1081215967bb38e224d37c19e8b70cb7fe273ef Mon Sep 17 00:00:00 2001 From: Lanius Trolling Date: Sat, 6 Apr 2024 08:37:34 -0400 Subject: [PATCH] Fix labels --- src/jvmMain/kotlin/info/mechyrdia/lore/parser_html.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 } } }) -- 2.25.1