2020-01-24 16:23:31 +01:00
|
|
|
package com.darkweb.genesissearchengine.constants;
|
|
|
|
|
|
|
|
public class strings
|
|
|
|
{
|
2021-01-18 11:07:12 +01:00
|
|
|
/*Notification Manager Manager*/
|
|
|
|
public static final String NOTIFICATION_TITLE = "Genesis Browser";
|
|
|
|
public static final String[] NOTIFICATION_BODY = {"Genesis Browser updated successfully",
|
|
|
|
"Use Genesis Browser to enhance your privacy",
|
|
|
|
"Privacy and security enhanced, use Genesis Browser",
|
|
|
|
"Hidden web & Genesis Search Engine updated",
|
|
|
|
"Live websites updated on Genesis Search Engine",
|
|
|
|
"Access secure part of internet, Use Genesis Browser",
|
|
|
|
"Your privacy matters to us, Use Genesis browser",
|
|
|
|
"Stop tracking, use Genesis Browser"};
|
|
|
|
|
|
|
|
|
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";
|
2020-12-01 23:10:05 +01:00
|
|
|
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*/
|
2020-12-01 23:10:05 +01:00
|
|
|
public static final String BOOKMARK_CLEAR_BOOKMARK = "Clear Bookmark";
|
|
|
|
public static final String BOOKMARK_NO_BOOKMARK_FOUND = "No Bookmark Found";
|
2021-01-28 11:22:41 +01:00
|
|
|
public static final String BOOKMARK_DEFAULT_TITLE = "New Bookmark";
|
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
|
|
|
|
2021-01-28 11:22:41 +01:00
|
|
|
/*Language Manager*/
|
|
|
|
public static final String LANGUAGE_NOT_SUPPORTED = "not supported";
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
/*Settings Manager*/
|
|
|
|
|
2020-10-20 16:55:08 +02:00
|
|
|
public static final String SETTING_DEFAULT_LANGUAGE = "en";
|
2021-01-28 11:22:41 +01:00
|
|
|
public static final String SETTING_DEFAULT_LANGUAGE_REGION = "Us";
|
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
|
|
|
|
2021-01-28 11:22:41 +01:00
|
|
|
/*Message Manager*/
|
|
|
|
|
|
|
|
public static final String MESSAGE_PLAYSTORE_NOT_FOUND = "Playstore Not Found";
|
|
|
|
|
2020-01-24 16:23:31 +01:00
|
|
|
/*Events*/
|
|
|
|
|
2021-01-28 11:22:41 +01:00
|
|
|
/* public static final String EVENT_APP_STARTED = "APP_STARTED";
|
|
|
|
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_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
|
|
|
}
|
|
|
|
|