2020-01-24 16:23:31 +01:00
|
|
|
package com.darkweb.genesissearchengine.constants;
|
|
|
|
|
|
|
|
public class strings
|
|
|
|
{
|
2020-10-05 13:12:00 +02:00
|
|
|
/*History Manager*/
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String HISTORY_TITLE = "history";
|
|
|
|
public static final String HISTORY_CLEAR_HISTORY = "CLEAR HISTORY";
|
|
|
|
public static final String HISTORY_NO_HISTORY_FOUND = "NO HISTORY FOUND";
|
2020-10-05 13:12:00 +02:00
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
/*Bookmark Manager*/
|
|
|
|
public static final String BOOKMARK_CLEAR_BOOKMARK = "CLEAR HISTORY";
|
|
|
|
public static final String BOOKMARK_NO_BOOKMARK_FOUND = "NO BOOKMARK FOUND";
|
2020-01-24 16:23:31 +01:00
|
|
|
|
2020-02-28 19:10:00 +01:00
|
|
|
/*Bridge Manager*/
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String BRIDGE_CUSTOM_BRIDGE_OBFS4 = "obfs4";
|
|
|
|
public static final String BRIDGE_CUSTOM_BRIDGE_MEEK = "meek";
|
|
|
|
public static final String BRIDGE_CUSTOM_BRIDGE_CUSTOM = "custom";
|
2020-02-28 19:10:00 +01:00
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
/*Generic*/
|
2020-01-24 16:23:31 +01:00
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String GENERIC_EMPTY_STR = "";
|
|
|
|
public static final String GENERIC_EMPTY_SPACE = " ";
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
/*Settings Manager*/
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String SETTING_CUSTOM_FONTS = "Custom Font";
|
|
|
|
public static final String SETTING_PERCENT_SIGN = "%";
|
|
|
|
public static final String SETTING_DEFAULT_LANGUAGE = "en";
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
/*Home Manager*/
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String HOME_BLANK_PAGE = "about:blank";
|
2020-01-24 16:23:31 +01:00
|
|
|
|
|
|
|
/*Events*/
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String EVENT_APP_STARTED = "APP_STARTED";
|
|
|
|
public static final String EVENT_SEARCH_SWITCH = "SEARCH_SWITCH";
|
|
|
|
public static final String EVENT_SETTINGS_OPENED = "SETTINGS_OPENED";
|
|
|
|
public static final String EVENT_URL_BOOKMARKED = "URL_BOOKMARKED";
|
|
|
|
public static final String EVENT_BOOKMARK_OPENED = "BOOKMARK_OPENED";
|
|
|
|
public static final String EVENT_TAB_OPENED = "TAB_OPENED";
|
|
|
|
public static final String EVENT_GATEWAY_OPENED = "GATEWAY_OPENED";
|
|
|
|
public static final String EVENT_HISTORY_OPENED = "HISTORY_OPENED";
|
|
|
|
public static final String EVENT_HISTORY_TRIGGERED = "HISTORY_TRIGGERED";
|
|
|
|
public static final String EVENT_BOOKMARK_TRIGGERED = "BOOKMARK_TRIGGERED";
|
|
|
|
public static final String EVENT_TAB_TRIGGERED = "TAB_TRIGGERED";
|
|
|
|
public static final String EVENT_PAGE_OPENED_SUCCESS = "PAGE_OPENED_SUCCESS";
|
|
|
|
public static final String EVENT_HOME_INVOKED = "HOME_INVOKED";
|
|
|
|
public static final String EVENT_SEARCH_INVOKED = "SEARCH_INVOKED";
|
|
|
|
public static final String EVENT_MENU_INVOKED = "MENU_INVOKED";
|
|
|
|
public static final String EVENT_ON_BACK = "ON_BACK";
|
2020-01-24 16:23:31 +01:00
|
|
|
}
|
|
|
|
|