diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:34:52 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:41:15 +0100 |
commit | b11b12585d3e4dfd67f73beebf7cf950799f087c (patch) | |
tree | 5b695f0c03b5e66c65d28092192031cab5f910fb /src/main/kotlin/util/textutil.kt | |
parent | c9c25b61560e6fb4e1ba2dfb1d5cc61b0ec9ddab (diff) | |
download | Firmament-b11b12585d3e4dfd67f73beebf7cf950799f087c.tar.gz Firmament-b11b12585d3e4dfd67f73beebf7cf950799f087c.tar.bz2 Firmament-b11b12585d3e4dfd67f73beebf7cf950799f087c.zip |
Add mc auto translations
[no changelog]
Diffstat (limited to 'src/main/kotlin/util/textutil.kt')
-rw-r--r-- | src/main/kotlin/util/textutil.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/kotlin/util/textutil.kt b/src/main/kotlin/util/textutil.kt index a6a7e87..3687743 100644 --- a/src/main/kotlin/util/textutil.kt +++ b/src/main/kotlin/util/textutil.kt @@ -164,3 +164,7 @@ fun Text.transformEachRecursively(function: (Text) -> Text): Text { } } } + +fun tr(key: String, default: String): Text = error("Compiler plugin did not run.") +fun trResolved(key: String, vararg args: Any) = Text.translatable(key, *args) + |