mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +03:00
Fixed I18NTest
This commit is contained in:
@ -9,7 +9,7 @@ public class I18NTest {
|
|||||||
|
|
||||||
private Set<String> loadReferenceI18NKeys() throws IOException {
|
private Set<String> loadReferenceI18NKeys() throws IOException {
|
||||||
Properties properties = new Properties();
|
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>();
|
Set<String> keys = new HashSet<String>();
|
||||||
for (Object key : properties.keySet()) {
|
for (Object key : properties.keySet()) {
|
||||||
keys.add(key.toString());
|
keys.add(key.toString());
|
||||||
|
Reference in New Issue
Block a user