1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

CldrNames: Handle case-sensitive file systems

This commit is contained in:
gnosygnu
2018-10-14 11:13:37 -04:00
parent a8f6fd0fb0
commit 62f41ebbd3
4 changed files with 102 additions and 28 deletions

View File

@@ -233,7 +233,8 @@ public class Xol_name_mgr {
return returnMw;
}
public static Xol_name_mgr New(Io_url root_dir) {
return new Xol_name_mgr(new Cldr_name_loader(root_dir), new Language_name_loader(root_dir), root_dir);
Io_url cldr_dir = root_dir.GenSubDir_nest("bin", "any", "xowa", "xtns", "cldr", "CldrNames");
return new Xol_name_mgr(new Cldr_name_loader(cldr_dir), new Language_name_loader(root_dir), root_dir);
}
}
class Hash_kv_sorter implements gplx.core.lists.ComparerAble {