We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6bbaad8 + 170e1ac commit eeb1019Copy full SHA for eeb1019
1 file changed
src/main/java/org/mvplugins/multiverse/core/locale/MVCorei18n.java
@@ -8,6 +8,8 @@
8
import org.mvplugins.multiverse.core.locale.message.Message;
9
import org.mvplugins.multiverse.core.locale.message.MessageReplacement;
10
11
+import java.util.Locale;
12
+
13
/**
14
* All the translation keys for the core plugin
15
*/
@@ -351,7 +353,8 @@ public enum MVCorei18n implements MessageKeyProvider {
351
353
352
354
// END CHECKSTYLE-SUPPRESSION: Javadoc
355
- private final MessageKey key = MessageKey.of("mv-core." + this.name().replace('_', '.').toLowerCase());
356
+ private final MessageKey key = MessageKey.of("mv-core." + this.name().replace('_', '.')
357
+ .toLowerCase(Locale.ENGLISH));
358
359
360
* {@inheritDoc}
0 commit comments