aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin')
-rw-r--r--src/main/kotlin/commands/rome.kt12
-rw-r--r--src/main/kotlin/util/textutil.kt4
2 files changed, 11 insertions, 5 deletions
diff --git a/src/main/kotlin/commands/rome.kt b/src/main/kotlin/commands/rome.kt
index 8fcbd77..39053d2 100644
--- a/src/main/kotlin/commands/rome.kt
+++ b/src/main/kotlin/commands/rome.kt
@@ -31,6 +31,7 @@ import moe.nea.firmament.util.accessors.messages
import moe.nea.firmament.util.collections.InstanceList
import moe.nea.firmament.util.collections.WeakCache
import moe.nea.firmament.util.mc.SNbtFormatter
+import moe.nea.firmament.util.tr
import moe.nea.firmament.util.unformattedString
@@ -262,15 +263,16 @@ fun firmamentCommand() = literal("firmament") {
}
thenLiteral("events") {
thenExecute {
- source.sendFeedback(Text.translatable("firmament.event.start"))
+ source.sendFeedback(tr("firmament.event.start", "Event Bus Readout:"))
FirmamentEventBus.allEventBuses.forEach { eventBus ->
- source.sendFeedback(Text.translatable(
+ val prefixName = eventBus.eventType.typeName.removePrefix("moe.nea.firmament")
+ source.sendFeedback(tr(
"firmament.event.bustype",
- eventBus.eventType.typeName.removePrefix("moe.nea.firmament")))
+ "- $prefixName:"))
eventBus.handlers.forEach { handler ->
- source.sendFeedback(Text.translatable(
+ source.sendFeedback(tr(
"firmament.event.handler",
- handler.label))
+ " * ${handler.label}"))
}
}
}
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)
+