28
28
import org .geysermc .geyser .GeyserBootstrap ;
29
29
import org .geysermc .geyser .GeyserImpl ;
30
30
31
- import java .io .IOException ;
32
- import java .io .InputStream ;
33
- import java .io .InputStreamReader ;
31
+ import java .io .*;
34
32
import java .nio .charset .StandardCharsets ;
33
+ import java .nio .file .Files ;
34
+ import java .nio .file .Path ;
35
35
import java .text .MessageFormat ;
36
36
import java .util .HashMap ;
37
37
import java .util .Locale ;
@@ -116,12 +116,22 @@ private static String loadGeyserLocale(String locale, GeyserBootstrap bootstrap)
116
116
return locale ;
117
117
}
118
118
119
+ Properties localeProp = new Properties ();
120
+
121
+ File localLanguage ;
122
+ Path localFolder = bootstrap .getConfigFolder ().resolve ("languages" );
123
+ if (Files .exists (localFolder )) {
124
+ localLanguage = localFolder .resolve (locale + ".properties" ).toFile ();
125
+ } else {
126
+ localLanguage = null ;
127
+ }
128
+ boolean validLocalLanguage = localLanguage != null && localLanguage .exists ();
129
+
119
130
InputStream localeStream = bootstrap .getResourceOrNull ("languages/texts/" + locale + ".properties" );
120
131
121
132
// Load the locale
122
133
if (localeStream != null ) {
123
134
try {
124
- Properties localeProp = new Properties ();
125
135
try (InputStreamReader reader = new InputStreamReader (localeStream , StandardCharsets .UTF_8 )) {
126
136
localeProp .load (reader );
127
137
} catch (Exception e ) {
@@ -130,18 +140,37 @@ private static String loadGeyserLocale(String locale, GeyserBootstrap bootstrap)
130
140
131
141
// Insert the locale into the mappings
132
142
LOCALE_MAPPINGS .put (locale , localeProp );
133
- return locale ;
134
143
} finally {
135
144
try {
136
145
localeStream .close ();
137
146
} catch (IOException ignored ) {}
138
147
}
139
148
} else {
140
- if (GeyserImpl .getInstance () != null ) {
149
+ if (GeyserImpl .getInstance () != null && !validLocalLanguage ) {
150
+ // Don't warn on missing locales if a local file has been found
141
151
GeyserImpl .getInstance ().getLogger ().warning ("Missing locale: " + locale );
142
152
}
143
- return null ;
144
153
}
154
+
155
+ // Load any language overrides that exist after, to override any strings that we just added
156
+ // By loading both, we ensure that if a language string doesn't exist in the custom properties folder,
157
+ // it's loaded from our jar
158
+ if (validLocalLanguage ) {
159
+ try (InputStream stream = new FileInputStream (localLanguage )) {
160
+ localeProp .load (stream );
161
+ } catch (IOException e ) {
162
+ String message = "Unable to load custom language override!" ;
163
+ if (GeyserImpl .getInstance () != null ) {
164
+ GeyserImpl .getInstance ().getLogger ().error (message , e );
165
+ } else {
166
+ System .err .println (message );
167
+ e .printStackTrace ();
168
+ }
169
+ }
170
+
171
+ LOCALE_MAPPINGS .putIfAbsent (locale , localeProp );
172
+ }
173
+ return localeProp .isEmpty () ? null : locale ;
145
174
}
146
175
147
176
/**
0 commit comments