1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
export const data = {
All: 'All',
Overview: 'Overview',
Proxies: 'Proxies',
Rules: 'Rules',
Conns: 'Conns',
Config: 'Config',
Logs: 'Logs',
Upload: 'Upload',
Download: 'Download',
'Upload Total': 'Upload Total',
'Download Total': 'Download Total',
'Active Connections': 'Active Connections',
'Memory Usage': 'Memory Usage',
'Pause Refresh': 'Pause Refresh',
'Resume Refresh': 'Resume Refresh',
close_all_connections: 'Close All Connections',
close_filter_connections: 'Close all connections after filtering',
Search: 'Search',
Sort: 'Sort',
Up: 'Up',
Down: 'Down',
'Test Latency': 'Test Latency',
settings: 'settings',
general: 'General',
management: 'Management',
dashboard: 'Dashboard',
sort_in_grp: 'Sorting in group',
hide_unavail_proxies: 'Hide unavailable proxies',
auto_close_conns: 'Automatically close old connections',
double_column_layout: 'Double column layout',
group_by_provider: 'Group proxies by provider',
order_natural: 'Original order in config file',
order_latency_asc: 'By latency from small to big',
order_latency_desc: 'By latency from big to small',
order_name_asc: 'By name alphabetically (A-Z)',
order_name_desc: 'By name alphabetically (Z-A)',
Connections: 'Connections',
current_backend: 'Current Backend',
Active: 'Active',
switch_backend: 'Switch backend',
Closed: 'Closed',
switch_theme: 'Switch theme',
theme: 'theme',
about: 'about',
no_logs: 'No logs yet, hang tight...',
chart_style: 'Chart Style',
latency_test_url: 'Latency Test URL',
latency_test_timeout: 'Latency Test Timeout',
lang: 'Language',
proxy_provider: 'Proxy Provider',
rule_provider: 'Rule Provider',
update_all_rule_provider: 'Update all rule providers',
update_all_proxy_provider: 'Update all proxy providers',
reload_config_file: 'Reload config file',
restart_core: 'Restart core',
upgrade_core: 'Upgrade core',
upgrade_geo: 'Upgrade GEO Databases',
upgrade_ui: 'Upgrade Dashboard UI',
update_geo_databases_file: 'Update GEO Databases ',
flush_fake_ip_pool: 'Flush fake-ip data',
enable_tun_device: 'Enable TUN Device',
allow_lan: 'Allow LAN',
tls_sniffing: 'Sniffer',
c_host: 'Host',
c_sni: 'Sniff Host',
c_process: 'Process',
c_dl: 'DL',
c_ul: 'UL',
c_dl_speed: 'DL Speed',
c_ul_speed: 'UL Speed',
c_chains: 'Chains',
c_rule: 'Rule',
c_time: 'Time',
c_source: 'Source',
c_destination_ip: 'Destination IP',
c_type: 'Type',
c_ctrl: 'Close',
close_all_confirm: 'Are you sure you want to close all connections?',
close_all_confirm_yes: "I'm sure",
close_all_confirm_no: 'No',
manage_column: 'Custom columns',
reset_column: 'Reset columns',
device_name: 'Device Tag',
delete: 'Delete',
add_tag: 'Add tag',
client_tag: 'Client tags',
sourceip_tip: "Prefix with / for regular expressions, otherwise it's a complete match",
disconnect: 'Close Connection',
internel: 'Internal Connection',
Clear: 'Clear',
};
|