refactor: english please

This commit is contained in:
aro 2023-01-12 11:04:49 +01:00
parent ccc28135af
commit 8ece7baec0

View file

@ -54,7 +54,7 @@ public class I18N {
} else { } else {
final InputStream resource = instance.getResource(locale.getCode() + ".yml"); final InputStream resource = instance.getResource(locale.getCode() + ".yml");
final YamlConfig yamlConfig = YamlConfig.load(resource); final YamlConfig yamlConfig = YamlConfig.load(resource);
// TODO: 1/12/23 French apostrophe is omited? // TODO: 1/12/23 French apostrophe is omitted?
translation = yamlConfig.getString(key.key()); translation = yamlConfig.getString(key.key());
} }