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 bd7ebcf + 83eb34e commit 43a9195Copy full SHA for 43a9195
src/main/java/org/mvplugins/multiverse/inventories/util/MVInvi18n.java
@@ -6,6 +6,8 @@
6
import org.mvplugins.multiverse.external.acf.locales.MessageKey;
7
import org.mvplugins.multiverse.external.acf.locales.MessageKeyProvider;
8
9
+import java.util.Locale;
10
+
11
/**
12
* Locales keys for Multiverse-Inventories
13
*/
@@ -99,7 +101,7 @@ public enum MVInvi18n implements MessageKeyProvider {
99
101
;
100
102
103
private final MessageKey key = MessageKey.of("mv-inventories." + this.name().replace('_', '.')
- .toLowerCase());
104
+ .toLowerCase(Locale.ENGLISH));
105
106
107
* {@inheritDoc}
0 commit comments