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

Cfg: Standardize rest of cfg keys

This commit is contained in:
gnosygnu
2016-12-27 15:16:46 -05:00
parent 50092ae60a
commit fd12ed88a4
33 changed files with 91 additions and 103 deletions

View File

@@ -57,7 +57,7 @@ public class Xoh_page_mgr implements Gfo_invk {
Cfg__font_name = "xowa.html.css.font.name"
, Cfg__font_format = "xowa.html.css.font.format"
, Cfg__custom_script = "xowa.html.css.custom.script"
, Cfg__content_code_fmt = "xowa.html.wiki.content_code_fmt"
, Cfg__content_code_fmt = "xowa.html.page.content_code_fmt"
;
public static final float Font_size_default = 16;
}

View File

@@ -93,7 +93,7 @@ public class Xoh_page_wtr_mgr implements Gfo_invk {
, "portal_div_admin", "portal_div_wikis", "portal_sidebar"
, "edit_div_rename", "edit_div_preview", "js_edit_toolbar"
};
private static final String Cfg__scripting_enabled = "xowa.addon.scripting.enabled";
private static final String Cfg__scripting_enabled = "xowa.html.scripting.enabled";
}
/*
NOTE_1:xowa_anchor_button

View File

@@ -271,8 +271,8 @@ public class Xoh_file_wtr__basic implements Gfo_invk {
return this;
}
private static final String
Cfg__alt_in_caption = "xowa.html.wiki.alt_in_caption"
, Cfg__alt_defaults_to_caption = "xowa.html.wiki.alt_defaults_to_caption";
Cfg__alt_in_caption = "xowa.html.alt.show_in_caption"
, Cfg__alt_defaults_to_caption = "xowa.html.alt.empty_alt_uses_caption";
private static final byte[]
Div_center_bgn = Bry_.new_a7("<div class=\"center\">")

View File

@@ -171,8 +171,8 @@ public class Xow_portal_mgr implements Gfo_invk {
, "jumpto", "jumptonavigation", "comma-separator", "jumptosearch");
private static final String
Cfg__missing_class = "xowa.html.wiki.portal.missing_class"
, Cfg__sidebar_enabled__desktop = "xowa.html.wiki.portal.sidebar_enabled_desktop"
, Cfg__sidebar_enabled__server = "xowa.html.wiki.portal.sidebar_enabled_server"
Cfg__missing_class = "xowa.html.portal.missing_class"
, Cfg__sidebar_enabled__desktop = "xowa.html.portal.sidebar_enabled_desktop"
, Cfg__sidebar_enabled__server = "xowa.html.portal.sidebar_enabled_server"
;
}