| 1 |
<?php |
| 2 |
/** |
| 3 |
* Code related to translation strings |
| 4 |
*/ |
| 5 |
|
| 6 |
if (!defined('WEBTOTEM_INIT') || WEBTOTEM_INIT !== true) { |
| 7 |
if (!headers_sent()) { |
| 8 |
header('HTTP/1.1 403 Forbidden'); |
| 9 |
} |
| 10 |
die('Protected By WebTotem!'); |
| 11 |
} |
| 12 |
|
| 13 |
// common strings |
| 14 |
__('No data', 'wtotem'); |
| 15 |
__('Has no action ready yet', 'wtotem'); |
| 16 |
__('Show more', 'wtotem'); |
| 17 |
__('Load more', 'wtotem'); |
| 18 |
|
| 19 |
// activation.html.twig |
| 20 |
__('Activate the plugin', 'wtotem'); |
| 21 |
__('Welcome friend!', 'wtotem'); |
| 22 |
__('Sign in to continue to WebTotem', 'wtotem'); |
| 23 |
__('API-KEY code', 'wtotem'); |
| 24 |
__('ACTIVATE', 'wtotem'); |
| 25 |
__('You can receive the keys in your personal account <a>cabinet</a>', 'wtotem'); |
| 26 |
__('or read the activation <a>manual</a>', 'wtotem'); |
| 27 |
|
| 28 |
// agents.html.twig |
| 29 |
__('Agent manager installation', 'wtotem'); |
| 30 |
|
| 31 |
// agents_installation.html.twig |
| 32 |
__('Install', 'wtotem'); |
| 33 |
__('Installed', 'wtotem'); |
| 34 |
__('Installing', 'wtotem'); |
| 35 |
__('Reinstall agents', 'wtotem'); |
| 36 |
__('Failed to install', 'wtotem'); |
| 37 |
__('Failed to install Agent Manager', 'wtotem'); |
| 38 |
|
| 39 |
// allow_deny_list.html.twig |
| 40 |
__('IP Address', 'wtotem'); |
| 41 |
__('Date added', 'wtotem'); |
| 42 |
__('Actions', 'wtotem'); |
| 43 |
__('No IP address here', 'wtotem'); |
| 44 |
__('Remove', 'wtotem'); |
| 45 |
|
| 46 |
// allow_url_list.html.twig |
| 47 |
__('URL address', 'wtotem'); |
| 48 |
__('No URL address here', 'wtotem'); |
| 49 |
|
| 50 |
// antivirus.html.twig |
| 51 |
__('Last scan', 'wtotem'); |
| 52 |
__('File', 'wtotem'); |
| 53 |
__('Permission', 'wtotem'); |
| 54 |
__('Shows permissions or access rights configurations.', 'wtotem'); |
| 55 |
__('Time', 'wtotem'); |
| 56 |
__('Status', 'wtotem'); |
| 57 |
__('Need more support', 'wtotem'); |
| 58 |
__('Let\'s talk!', 'wtotem'); |
| 59 |
|
| 60 |
//antivirus_filter_form.html.twig |
| 61 |
__('Scanned files', 'wtotem'); |
| 62 |
__('Changed files', 'wtotem'); |
| 63 |
__('Deleted files', 'wtotem'); |
| 64 |
__('Infected files', 'wtotem'); |
| 65 |
__('New files', 'wtotem'); |
| 66 |
__('Permissions changed', 'wtotem'); |
| 67 |
__('Download', 'wtotem'); |
| 68 |
__('Rescan', 'wtotem'); |
| 69 |
|
| 70 |
// antivirus_logs.html.twig |
| 71 |
__('Permissions or access rights has been modified', 'wtotem'); |
| 72 |
__('Move to quarantine', 'wtotem'); |
| 73 |
|
| 74 |
// attacks_map.html.twig |
| 75 |
__('Country', 'wtotem'); |
| 76 |
__('Attack map', 'wtotem'); |
| 77 |
|
| 78 |
// dots_loader.html.twig |
| 79 |
__('Please wait', 'wtotem'); |
| 80 |
__('We are still crawling your site', 'wtotem'); |
| 81 |
|
| 82 |
//chart_periods.html.twig |
| 83 |
__('Yearly', 'wtotem'); |
| 84 |
__('Monthly', 'wtotem'); |
| 85 |
__('Weekly', 'wtotem'); |
| 86 |
__('Daily', 'wtotem'); |
| 87 |
|
| 88 |
// firewall.html.twig |
| 89 |
__('Type/IP', 'wtotem'); |
| 90 |
__('Attack location', 'wtotem'); |
| 91 |
|
| 92 |
// firewall_stats.html.twig |
| 93 |
__('Firewall needs up to 2 days to finish training', 'wtotem'); |
| 94 |
__('Suspicious events', 'wtotem'); |
| 95 |
__('Blocked', 'wtotem'); |
| 96 |
__('Low risk', 'wtotem'); |
| 97 |
__('Attack from', 'wtotem'); |
| 98 |
__('Pending', 'wtotem'); |
| 99 |
__('Suspicious event - any event, either blocked or non blocked because of being low risk, with a sign of a malicious request.', 'wtotem'); |
| 100 |
__('Blocked - a suspicious event, found to be critical enough to get blocked.', 'wtotem'); |
| 101 |
__('Low risk - a suspicious event with a feature of a malicious request yet not critical enough to get blocked.', 'wtotem'); |
| 102 |
|
| 103 |
// footer.html.twig |
| 104 |
__('Your best friend in cybersecurity world', 'wtotem'); |
| 105 |
__('All rights reserved', 'wtotem'); |
| 106 |
|
| 107 |
// help.html.twig |
| 108 |
__('Help center', 'wtotem'); |
| 109 |
__('General information', 'wtotem'); |
| 110 |
__('Our tools', 'wtotem'); |
| 111 |
__('Description of statuses', 'wtotem'); |
| 112 |
__('Instructions', 'wtotem'); |
| 113 |
__('Documentation', 'wtotem'); |
| 114 |
|
| 115 |
// ignore_ports.html.twig |
| 116 |
__('Port', 'wtotem'); |
| 117 |
|
| 118 |
// layout.html.twig |
| 119 |
__('Dashboard', 'wtotem'); |
| 120 |
__('Firewall', 'wtotem'); |
| 121 |
__('Antivirus', 'wtotem'); |
| 122 |
__('Settings', 'wtotem'); |
| 123 |
__('Reports', 'wtotem'); |
| 124 |
__('Help', 'wtotem'); |
| 125 |
|
| 126 |
// monitoring.html.twig |
| 127 |
__('SSL module', 'wtotem'); |
| 128 |
__('Displays the status of the SSL Certificate.', 'wtotem'); |
| 129 |
__('Days left', 'wtotem'); |
| 130 |
__('Issue date', 'wtotem'); |
| 131 |
__('Expiry date', 'wtotem'); |
| 132 |
__('Availability module', 'wtotem'); |
| 133 |
__('Performance', 'wtotem'); |
| 134 |
__('Response time', 'wtotem'); |
| 135 |
__('Downtime', 'wtotem'); |
| 136 |
__('Last test', 'wtotem'); |
| 137 |
__('Reputation module', 'wtotem'); |
| 138 |
__('Checks website entries in 60+ blacklisting authorities.', 'wtotem'); |
| 139 |
__('Deny lists entries', 'wtotem'); |
| 140 |
|
| 141 |
// popup.html.twig |
| 142 |
__('Continue', 'wtotem'); |
| 143 |
__('Cancel', 'wtotem'); |
| 144 |
__('Are you sure?', 'wtotem'); |
| 145 |
|
| 146 |
// ports_form.html.twig |
| 147 |
__('Port scanner deny list', 'wtotem'); |
| 148 |
__('Open ports', 'wtotem'); |
| 149 |
__('Type port number', 'wtotem'); |
| 150 |
|
| 151 |
// quarantine.html.twig |
| 152 |
__('Quarantine', 'wtotem'); |
| 153 |
__('Files in quarantine', 'wtotem'); |
| 154 |
__('Date', 'wtotem'); |
| 155 |
|
| 156 |
// quarantine_logs.html.twig |
| 157 |
__('Restore file', 'wtotem'); |
| 158 |
|
| 159 |
// reports.html.twig |
| 160 |
__('Generate report', 'wtotem'); |
| 161 |
__('Generate new report', 'wtotem'); |
| 162 |
__('Report data', 'wtotem'); |
| 163 |
__('Generated time', 'wtotem'); |
| 164 |
__('Type', 'wtotem'); |
| 165 |
__('Modules', 'wtotem'); |
| 166 |
|
| 167 |
// reports_form.html.twig |
| 168 |
__('Report settings', 'wtotem'); |
| 169 |
__('Select report period', 'wtotem'); |
| 170 |
_n( '%s month','%s months', 1, 'wtotem' ); |
| 171 |
__('year', 'wtotem'); |
| 172 |
__('Select Date', 'wtotem'); |
| 173 |
__('Date from', 'wtotem'); |
| 174 |
__('Date to', 'wtotem'); |
| 175 |
__('Choose modules', 'wtotem'); |
| 176 |
__('Availability', 'wtotem'); |
| 177 |
__('Ports', 'wtotem'); |
| 178 |
__('Scoring', 'wtotem'); |
| 179 |
__('Close', 'wtotem'); |
| 180 |
|
| 181 |
// scanning.html.twig |
| 182 |
__('Port scanner', 'wtotem'); |
| 183 |
__('Deface scanner', 'wtotem'); |
| 184 |
__('Tracks the possible hacker attack with the main page substitution.', 'wtotem'); |
| 185 |
__('Found words', 'wtotem'); |
| 186 |
__('Disc usage', 'wtotem'); |
| 187 |
__('Shows the Disc load and its accessible memory.', 'wtotem'); |
| 188 |
__('Total', 'wtotem'); |
| 189 |
__('Use', 'wtotem'); |
| 190 |
__('Free', 'wtotem'); |
| 191 |
__('Need more support?', 'wtotem'); |
| 192 |
|
| 193 |
// score.html.twig |
| 194 |
__('Overall Security Grade', 'wtotem'); |
| 195 |
__('Scoring module', 'wtotem'); |
| 196 |
__('Assesses overall site security, identifies vulnerabilities, misconfigurations, and data leak, as well as gives recommendations for their elimination.', 'wtotem'); |
| 197 |
__('Your security grade is higher than %s of the companies in your industry.','wtotem'); |
| 198 |
__('Tested on:', 'wtotem'); |
| 199 |
__('Server Ip:', 'wtotem'); |
| 200 |
__('Location:', 'wtotem'); |
| 201 |
__('Full scoring', 'wtotem'); |
| 202 |
|
| 203 |
// server_status_cpu.html.twig |
| 204 |
__('CPU Load average', 'wtotem'); |
| 205 |
__('Shows the CPU load.', 'wtotem'); |
| 206 |
|
| 207 |
// server_status_ram.html.twig |
| 208 |
__('Random access memory', 'wtotem'); |
| 209 |
__('RAM', 'wtotem'); |
| 210 |
__('Shows the RAM load.', 'wtotem'); |
| 211 |
|
| 212 |
// settings_form.html.twig |
| 213 |
__('Module settings', 'wtotem'); |
| 214 |
__('If you do not need any module, then you can disable it', 'wtotem'); |
| 215 |
__('Server status', 'wtotem'); |
| 216 |
__('Availability/SSL', 'wtotem'); |
| 217 |
__('Deface', 'wtotem'); |
| 218 |
__('Reputation', 'wtotem'); |
| 219 |
__('Technologies', 'wtotem'); |
| 220 |
__('IP lists configuration', 'wtotem'); |
| 221 |
__('Firewall configuration', 'wtotem'); |
| 222 |
__('Allow list', 'wtotem'); |
| 223 |
__('Deny list', 'wtotem'); |
| 224 |
__('URL Allow list', 'wtotem'); |
| 225 |
__('Type IPv4 or IPv6 address or a mask (104.122.249.38 or 104.122.*.*)', 'wtotem'); |
| 226 |
__('Add IP', 'wtotem'); |
| 227 |
__('Multi-adding IP', 'wtotem'); |
| 228 |
__('Add URL', 'wtotem'); |
| 229 |
__('Agent installation', 'wtotem'); |
| 230 |
__('If you have any problems with our agent, we advise you to reinstall it', 'wtotem'); |
| 231 |
__('API-key change', 'wtotem'); |
| 232 |
__('DoS limits', 'wtotem'); |
| 233 |
__('Limits the number of requests per minute from an IP address.', 'wtotem'); |
| 234 |
__('Login attempts', 'wtotem'); |
| 235 |
__('Limits the number of login attempts per minute.', 'wtotem'); |
| 236 |
__('DoS limits (requests per minute)', 'wtotem'); |
| 237 |
__('Save settings', 'wtotem'); |
| 238 |
__('Incorrect IP addresses', 'wtotem'); |
| 239 |
__('IP addresses success added', 'wtotem'); |
| 240 |
__('How to use?', 'wtotem'); |
| 241 |
__('Example:', 'wtotem'); |
| 242 |
__('Add IP list', 'wtotem'); |
| 243 |
__('Notifications', 'wtotem'); |
| 244 |
__('Send me notifications on e-mail', 'wtotem'); |
| 245 |
__('This option protects you from hackers detected on other websites connected to our global defence network.','wtotem'); |
| 246 |
__('If you want to add several IP addresses at once, you can add the address separated by commas.','wtotem'); |
| 247 |
|
| 248 |
// waf_filter_form.html.twig |
| 249 |
__('Blocked', 'wtotem'); |
| 250 |
|
| 251 |
// multisite.html.twig |
| 252 |
__('Services status', 'wtotem'); |
| 253 |
__('Site name', 'wtotem'); |
| 254 |
__('Report page', 'wtotem'); |
| 255 |
__('All stats', 'wtotem'); |
| 256 |
|
| 257 |
|
| 258 |
// multisite.html.twig |
| 259 |
__('Try reinstalling the agents or changing the API key', 'wtotem'); |
| 260 |
__('Data access error', 'wtotem'); |
| 261 |
|