mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Fixed I18NTest
This commit is contained in:
@ -9,7 +9,7 @@ public class I18NTest {
|
||||
|
||||
private Set<String> loadReferenceI18NKeys() throws IOException {
|
||||
Properties properties = new Properties();
|
||||
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./Resources_en.properties").getFile())));
|
||||
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./i18n/Resources_en.properties").getFile())));
|
||||
Set<String> keys = new HashSet<String>();
|
||||
for (Object key : properties.keySet()) {
|
||||
keys.add(key.toString());
|
||||
|
Reference in New Issue
Block a user