| 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 |
|
| 127 |
// monitoring.html.twig |
| 128 |
__('SSL module', 'wtotem'); |
| 129 |
__('Displays the status of the SSL Certificate.', 'wtotem'); |
| 130 |
__('Days left', 'wtotem'); |
| 131 |
__('Issue date', 'wtotem'); |
| 132 |
__('Expiry date', 'wtotem'); |
| 133 |
__('Availability module', 'wtotem'); |
| 134 |
__('Performance', 'wtotem'); |
| 135 |
__('Response time', 'wtotem'); |
| 136 |
__('Downtime', 'wtotem'); |
| 137 |
__('Last test', 'wtotem'); |
| 138 |
__('Reputation module', 'wtotem'); |
| 139 |
__('Checks website entries in 60+ blacklisting authorities.', 'wtotem'); |
| 140 |
__('Deny lists entries', 'wtotem'); |
| 141 |
__('Check the performance of your site every minute. Stay informed about the problems of accessibility of the site.', 'wtotem'); |
| 142 |
|
| 143 |
// popup.html.twig |
| 144 |
__('Continue', 'wtotem'); |
| 145 |
__('Cancel', 'wtotem'); |
| 146 |
__('Are you sure?', 'wtotem'); |
| 147 |
|
| 148 |
// ports_form.html.twig |
| 149 |
__('Port scanner deny list', 'wtotem'); |
| 150 |
__('Open ports', 'wtotem'); |
| 151 |
__('Type port number', 'wtotem'); |
| 152 |
|
| 153 |
// quarantine.html.twig |
| 154 |
__('Quarantine', 'wtotem'); |
| 155 |
__('Files in quarantine', 'wtotem'); |
| 156 |
__('Date', 'wtotem'); |
| 157 |
|
| 158 |
// quarantine_logs.html.twig |
| 159 |
__('Restore file', 'wtotem'); |
| 160 |
|
| 161 |
// reports.html.twig |
| 162 |
__('Generate report', 'wtotem'); |
| 163 |
__('Generate new report', 'wtotem'); |
| 164 |
__('Report data', 'wtotem'); |
| 165 |
__('Generated time', 'wtotem'); |
| 166 |
__('Type', 'wtotem'); |
| 167 |
__('Modules', 'wtotem'); |
| 168 |
|
| 169 |
// reports_form.html.twig |
| 170 |
__('Report settings', 'wtotem'); |
| 171 |
__('Select report period', 'wtotem'); |
| 172 |
_n( '%s month','%s months', 1, 'wtotem' ); |
| 173 |
__('year', 'wtotem'); |
| 174 |
__('Select Date', 'wtotem'); |
| 175 |
__('Date from', 'wtotem'); |
| 176 |
__('Date to', 'wtotem'); |
| 177 |
__('Choose modules', 'wtotem'); |
| 178 |
__('Availability', 'wtotem'); |
| 179 |
__('Ports', 'wtotem'); |
| 180 |
__('Scoring', 'wtotem'); |
| 181 |
__('Close', 'wtotem'); |
| 182 |
|
| 183 |
// scanning.html.twig |
| 184 |
__('Port scanner', 'wtotem'); |
| 185 |
__('Detects open ports on the server. Potentially, open ports can be dangerous and used by hackers.', 'wtotem'); |
| 186 |
__('Deface scanner', 'wtotem'); |
| 187 |
__('Tracks the possible hacker attack with the main page substitution.', 'wtotem'); |
| 188 |
__('Found words', 'wtotem'); |
| 189 |
__('Disc usage', 'wtotem'); |
| 190 |
__('Shows the Disc load and its accessible memory.', 'wtotem'); |
| 191 |
__('Total', 'wtotem'); |
| 192 |
__('Use', 'wtotem'); |
| 193 |
__('Free', 'wtotem'); |
| 194 |
__('Need more support?', 'wtotem'); |
| 195 |
|
| 196 |
// score.html.twig |
| 197 |
__('Overall Security Grade', 'wtotem'); |
| 198 |
__('Scoring module', 'wtotem'); |
| 199 |
__('Assesses overall site security, identifies vulnerabilities, misconfigurations, and data leak, as well as gives recommendations for their elimination.', 'wtotem'); |
| 200 |
__('Your security grade is higher than %s of the companies in your industry.','wtotem'); |
| 201 |
__('Tested on:', 'wtotem'); |
| 202 |
__('Server Ip:', 'wtotem'); |
| 203 |
__('Location:', 'wtotem'); |
| 204 |
__('Full scoring', 'wtotem'); |
| 205 |
|
| 206 |
// server_status_cpu.html.twig |
| 207 |
__('CPU Load average', 'wtotem'); |
| 208 |
__('Shows the CPU load', 'wtotem'); |
| 209 |
|
| 210 |
// server_status_ram.html.twig |
| 211 |
__('Random access memory', 'wtotem'); |
| 212 |
__('RAM', 'wtotem'); |
| 213 |
__('Shows the RAM load', 'wtotem'); |
| 214 |
|
| 215 |
// settings_form.html.twig |
| 216 |
__('Module settings', 'wtotem'); |
| 217 |
__('If you do not need any module, then you can disable it', 'wtotem'); |
| 218 |
__('Server status', 'wtotem'); |
| 219 |
__('Availability/SSL', 'wtotem'); |
| 220 |
__('Deface', 'wtotem'); |
| 221 |
__('Reputation', 'wtotem'); |
| 222 |
__('Technologies', 'wtotem'); |
| 223 |
__('IP lists configuration', 'wtotem'); |
| 224 |
__('Firewall configuration', 'wtotem'); |
| 225 |
__('Allow list', 'wtotem'); |
| 226 |
__('Deny list', 'wtotem'); |
| 227 |
__('URL Allow list', 'wtotem'); |
| 228 |
__('Type IPv4 or IPv6 address or a mask (104.122.249.38 or 104.122.*.*)', 'wtotem'); |
| 229 |
__('Add IP', 'wtotem'); |
| 230 |
__('Multi-adding IP', 'wtotem'); |
| 231 |
__('Add URL', 'wtotem'); |
| 232 |
__('Agent installation', 'wtotem'); |
| 233 |
__('If you have any problems with our agent, we advise you to reinstall it', 'wtotem'); |
| 234 |
__('API-key change', 'wtotem'); |
| 235 |
__('DoS limits', 'wtotem'); |
| 236 |
__('Limits the number of requests per minute from an IP address.', 'wtotem'); |
| 237 |
__('Login attempts', 'wtotem'); |
| 238 |
__('Limits the number of login attempts per minute.', 'wtotem'); |
| 239 |
__('DoS limits (requests per minute)', 'wtotem'); |
| 240 |
__('Save settings', 'wtotem'); |
| 241 |
__('Incorrect IP addresses', 'wtotem'); |
| 242 |
__('IP addresses success added', 'wtotem'); |
| 243 |
__('How to use?', 'wtotem'); |
| 244 |
__('Example:', 'wtotem'); |
| 245 |
__('Add IP list', 'wtotem'); |
| 246 |
__('Notifications', 'wtotem'); |
| 247 |
__('Send me notifications on e-mail', 'wtotem'); |
| 248 |
__('This option protects you from hackers detected on other websites connected to our global defence network.','wtotem'); |
| 249 |
__('If you want to add several IP addresses at once, you can add the address separated by commas.','wtotem'); |
| 250 |
__('Two-Factor Authentication','wtotem'); |
| 251 |
__('Deactivate 2FA','wtotem'); |
| 252 |
__('Activate 2FA','wtotem'); |
| 253 |
__('Enable Two-factor authorization','wtotem'); |
| 254 |
__('1. Scan Code or Enter Key','wtotem'); |
| 255 |
__('Scan the code below with your mobile app to add this account. Some authenticator apps also allow you to type in the text version instead.','wtotem'); |
| 256 |
__('2. Enter Code from mobile app','wtotem'); |
| 257 |
__('Use one of these codes to log in if you lose access to your authenticator device.','wtotem'); |
| 258 |
__('Enter the code from your mobile app below to verify and activate two-factor authentication for this account','wtotem'); |
| 259 |
__('Enable reCAPTCHA','wtotem'); |
| 260 |
__('Enable reCAPTCHA on login pages','wtotem'); |
| 261 |
__('Login page attempts','wtotem'); |
| 262 |
__('The number of login and password reset attempts on the login page','wtotem'); |
| 263 |
__('Login attempt counter','wtotem'); |
| 264 |
__('Password reset attempt counter','wtotem'); |
| 265 |
__('Number of attempts (per minute)','wtotem'); |
| 266 |
__('Set limits','wtotem'); |
| 267 |
__('Minutes of ban','wtotem'); |
| 268 |
__('Select interval','wtotem'); |
| 269 |
__('minutes','wtotem'); |
| 270 |
__('hour','wtotem'); |
| 271 |
__('hours','wtotem'); |
| 272 |
__('Other options','wtotem'); |
| 273 |
__('Hide WP version','wtotem'); |
| 274 |
__('Two-factor authentication is currently active on your account. You may deactivate it by clicking the button below','wtotem'); |
| 275 |
__('Makes two-factor authorization available to all users of the site','wtotem'); |
| 276 |
__('Enables two-factor authorization for the current user','wtotem'); |
| 277 |
__('Scan QR','wtotem'); |
| 278 |
__('Enter key','wtotem'); |
| 279 |
__('Enter the code','wtotem'); |
| 280 |
|
| 281 |
// country_blocking_modal.html.twig |
| 282 |
__('save','wtotem'); |
| 283 |
__('close','wtotem'); |
| 284 |
__('Block countries','wtotem'); |
| 285 |
__('Name of the country','wtotem'); |
| 286 |
__('Select all countries','wtotem'); |
| 287 |
__('Access blocked to','wtotem'); |
| 288 |
__('countries','wtotem'); |
| 289 |
__('Country blocking','wtotem'); |
| 290 |
__('Block countries you want to limit access to your website.','wtotem'); |
| 291 |
__('Attack from','wtotem'); |
| 292 |
__('countries blocked from','wtotem'); |
| 293 |
__('Select all','wtotem'); |
| 294 |
|
| 295 |
// User profile |
| 296 |
__('WebTotem two-factor protection','wtotem'); |
| 297 |
__('Edit 2FA Settings','wtotem'); |
| 298 |
__('Disactivate 2FA','wtotem'); |
| 299 |
|
| 300 |
// waf_filter_form.html.twig |
| 301 |
__('Blocked', 'wtotem'); |
| 302 |
|
| 303 |
// multisite.html.twig |
| 304 |
__('Services status', 'wtotem'); |
| 305 |
__('Site name', 'wtotem'); |
| 306 |
__('Report page', 'wtotem'); |
| 307 |
__('All stats', 'wtotem'); |
| 308 |
|
| 309 |
// multisite.html.twig |
| 310 |
__('Try reinstalling the agents or changing the API key', 'wtotem'); |
| 311 |
__('Data access error', 'wtotem'); |
| 312 |
|
| 313 |
// scan_logs.html.twig |
| 314 |
__('Logs', 'wtotem'); |
| 315 |
__('Log of user actions. And logs on found links, scripts and iframes in published posts and in files of active plugins and the current theme of the site.', 'wtotem'); |
| 316 |
__('Audit Logs', 'wtotem'); |
| 317 |
__('Links', 'wtotem'); |
| 318 |
__('Scripts', 'wtotem'); |
| 319 |
__('iFrames', 'wtotem'); |
| 320 |
__('Time', 'wtotem'); |
| 321 |
__('User', 'wtotem'); |
| 322 |
__('Event', 'wtotem'); |
| 323 |
__('All', 'wtotem'); |
| 324 |
__('User authentication succeeded', 'wtotem'); |
| 325 |
__('User authentication failed', 'wtotem'); |
| 326 |
__('User account created', 'wtotem'); |
| 327 |
__('User account deleted', 'wtotem'); |
| 328 |
__('User account edited', 'wtotem'); |
| 329 |
__('Attempt to reset password', 'wtotem'); |
| 330 |
__('Password retrieval attempt', 'wtotem'); |
| 331 |
__('User added to website', 'wtotem'); |
| 332 |
__('User removed from website', 'wtotem'); |
| 333 |
__('WordPress updated', 'wtotem'); |
| 334 |
__('User account deleted', 'wtotem'); |
| 335 |
__('Bookmark link added', 'wtotem'); |
| 336 |
__('Bookmark link edited', 'wtotem'); |
| 337 |
__('Category created', 'wtotem'); |
| 338 |
__('Publication was published', 'wtotem'); |
| 339 |
__('Publication was updated', 'wtotem'); |
| 340 |
__('Post status has been changed', 'wtotem'); |
| 341 |
__('Post deleted', 'wtotem'); |
| 342 |
__('Post moved to trash', 'wtotem'); |
| 343 |
__('Media file added', 'wtotem'); |
| 344 |
__('Plugin activated', 'wtotem'); |
| 345 |
__('Plugin deactivated', 'wtotem'); |
| 346 |
__('Theme activated', 'wtotem'); |
| 347 |
__('Settings changed', 'wtotem'); |
| 348 |
__('Plugins deleted', 'wtotem'); |
| 349 |
__('Plugin editor used', 'wtotem'); |
| 350 |
__('Plugin installed', 'wtotem'); |
| 351 |
__('Plugins updated', 'wtotem'); |
| 352 |
__('Theme deleted', 'wtotem'); |
| 353 |
__('Theme editor used', 'wtotem'); |
| 354 |
__('Theme installed', 'wtotem'); |
| 355 |
__('Themes updated', 'wtotem'); |
| 356 |
__('Widget deleted', 'wtotem'); |
| 357 |
__('Widget added', 'wtotem'); |