badguardhome/client/src/helpers/constants.js

59 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-08-30 14:25:33 +00:00
export const R_URL_REQUIRES_PROTOCOL = /^https?:\/\/\w[\w_\-.]*\.[a-z]{2,8}[^\s]*$/;
export const R_IPV4 = /^(?:(?:^|\.)(?:2(?:5[0-5]|[0-4]\d)|1?\d?\d)){4}$/g;
export const STATS_NAMES = {
2018-11-09 06:51:28 +00:00
avg_processing_time: 'average_processing_time',
blocked_filtering: 'Blocked by filters',
dns_queries: 'DNS queries',
2018-11-09 06:51:28 +00:00
replaced_parental: 'stats_adult',
replaced_safebrowsing: 'stats_malware_phishing',
replaced_safesearch: 'enforced_save_search',
};
export const STATUS_COLORS = {
blue: '#467fcf',
red: '#cd201f',
green: '#5eba00',
yellow: '#f1c40f',
};
2018-10-14 20:24:11 +00:00
export const REPOSITORY = {
URL: 'https://github.com/AdguardTeam/AdGuardHome',
TRACKERS_DB: 'https://github.com/AdguardTeam/AdGuardHome/tree/master/client/src/helpers/trackers/adguard.json',
2018-10-14 20:24:11 +00:00
};
2018-11-21 08:43:55 +00:00
export const LANGUAGES = [
{
key: 'en',
name: 'English',
},
{
2018-11-26 12:00:56 +00:00
key: 'es',
name: 'Español',
},
{
key: 'fr',
name: 'Français',
},
{
key: 'pt-br',
name: 'Português (BR)',
},
{
key: 'sv',
name: 'Svenska',
2018-11-21 08:43:55 +00:00
},
{
key: 'vi',
name: 'Tiếng Việt',
},
2018-11-26 12:00:56 +00:00
{
key: 'ru',
name: 'Русский',
},
{
key: 'ja',
name: '日本語',
},
2018-11-21 08:43:55 +00:00
];