Greg dev #188

Merged
greg6775 merged 4 commits from greg-dev into master 2019-12-10 17:44:49 +01:00
8 changed files with 1 additions and 1 deletions
Showing only changes of commit ec5c7520dc - Show all commits

View file

@ -64,6 +64,6 @@ public class MessageEditor {
public static String handle(String language_code, String string) { public static String handle(String language_code, String string) {
Locale locale = new Locale(language_code); Locale locale = new Locale(language_code);
return ResourceBundle.getBundle("Translations", locale).getString(string).replaceAll("%prefix%", "h."); return ResourceBundle.getBundle("Translations/Translations", locale).getString(string).replaceAll("%prefix%", "h.");
} }
} }