mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Fixed I18NTest
This commit is contained in:
parent
5f6cbfbccd
commit
a1d63c27d8
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user