From 51dddbbc06ae4abc074f3ff6b47de82c67fc29ea Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 30 Oct 2024 15:45:22 +0100 Subject: Add example --- .../moe/nea/mcautotranslations/annotations/GatheredTranslation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'annotations/src') diff --git a/annotations/src/main/java/moe/nea/mcautotranslations/annotations/GatheredTranslation.java b/annotations/src/main/java/moe/nea/mcautotranslations/annotations/GatheredTranslation.java index 18054fd..869ac05 100644 --- a/annotations/src/main/java/moe/nea/mcautotranslations/annotations/GatheredTranslation.java +++ b/annotations/src/main/java/moe/nea/mcautotranslations/annotations/GatheredTranslation.java @@ -10,7 +10,7 @@ import java.lang.annotation.Target; @Target(ElementType.TYPE) @Repeatable(GatheredTranslations.class) public @interface GatheredTranslation { - String key(); + String translationKey(); - String value(); + String translationValue(); } -- cgit