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

Xtn.Translate: Add #translation function with no implementation [#445]

This commit is contained in:
gnosygnu
2019-05-26 09:18:11 -04:00
parent ee03d79536
commit b48b6def4e
5 changed files with 53 additions and 1 deletions

View File

@@ -274,5 +274,6 @@ kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_new_window_link, "#NewWindowLink");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_categorytree, "#categorytree");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_assessment, "#assessment");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_statements, "#statements");
kwd_mgr.New(Bool_.N, Xol_kwd_grp_.Id_translation, "#translation");
}
}

View File

@@ -236,8 +236,9 @@ public static final int
, Id_ttl_root_txt = 216
, Id_ttl_root_url = 217
, Id_statements = 218
, Id_translation = 219
;
public static final int Id__max = 219;
public static final int Id__max = 220;
private static byte[] ary_itm_(int id) {
switch (id) {
@@ -460,6 +461,7 @@ case Xol_kwd_grp_.Id_new_window_link: return Bry_.new_u8("newwindowlink");
case Xol_kwd_grp_.Id_categorytree: return Bry_.new_u8("categorytree");
case Xol_kwd_grp_.Id_assessment: return Bry_.new_u8("assessment");
case Xol_kwd_grp_.Id_statements: return Bry_.new_u8("statements");
case Xol_kwd_grp_.Id_translation: return Bry_.new_u8("translation");
default: throw Err_.new_unhandled(id);
}
}