Version Description
(2022-02-15) = Release notes: the improvements in this update are required to prepare for WP Activity Log 4.4. Therefore it is important to install this update before you update to version 4.4.
-
Improvements
- Removed opcache purging.
- Improved error handling during plugin upgrade.
Refer to the complete plugin changelog for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 4.3.6 |
Comparing to | |
See all releases |
Code changes from version 4.3.4 to 4.3.6
- classes/AbstractView.php +1 -1
- classes/Utilities/OpCacheUtils.php +0 -109
- classes/ViewManager.php +1 -0
- languages/wp-security-audit-log.pot +2628 -5894
- readme.txt +6 -18
- wp-security-audit-log.php +68 -27
classes/AbstractView.php
CHANGED
@@ -104,7 +104,7 @@ abstract class WSAL_AbstractView {
|
|
104 |
$user_id = get_current_user_id();
|
105 |
$meta_key = 'wsal-notice-' . $name;
|
106 |
$old_value = get_user_meta( $user_id, $meta_key, true );
|
107 |
-
if ( in_array( $name, self::$AllowedNoticeNames ) || false === $old_value ) {
|
108 |
update_user_meta( $user_id, $meta_key, '1' );
|
109 |
}
|
110 |
}
|
104 |
$user_id = get_current_user_id();
|
105 |
$meta_key = 'wsal-notice-' . $name;
|
106 |
$old_value = get_user_meta( $user_id, $meta_key, true );
|
107 |
+
if ( in_array( $name, self::$AllowedNoticeNames ) || false === $old_value || empty( $old_value ) ) {
|
108 |
update_user_meta( $user_id, $meta_key, '1' );
|
109 |
}
|
110 |
}
|
classes/Utilities/OpCacheUtils.php
DELETED
@@ -1,109 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Utility class for opcache clearing.
|
4 |
-
*
|
5 |
-
* @package wsal
|
6 |
-
* @subpacage utilities
|
7 |
-
* @since 4.3.4
|
8 |
-
*/
|
9 |
-
|
10 |
-
// Exit if accessed directly.
|
11 |
-
if ( ! defined( 'ABSPATH' ) ) {
|
12 |
-
exit;
|
13 |
-
}
|
14 |
-
|
15 |
-
/**
|
16 |
-
* Utility class for opcache clearing.
|
17 |
-
*
|
18 |
-
* @package wsal
|
19 |
-
* @subpacage utilities
|
20 |
-
* @since 4.3.4
|
21 |
-
*/
|
22 |
-
class WSAL_Utilities_OpCacheUtils {
|
23 |
-
|
24 |
-
/**
|
25 |
-
* Clears PHP code caches before a plugin installation or update. This is to avoid various plugin files to be out of
|
26 |
-
* sync.
|
27 |
-
*
|
28 |
-
* @param bool|WP_Error $response Response.
|
29 |
-
* @param array $hook_extra Extra arguments passed to hooked filters.
|
30 |
-
*
|
31 |
-
* @since 4.3.4
|
32 |
-
*/
|
33 |
-
public static function clear_caches( $response, array $hook_extra ) {
|
34 |
-
if ( ( array_key_exists( 'type', $hook_extra ) && 'plugin' === $hook_extra['type'] )
|
35 |
-
|| array_key_exists( 'plugin', $hook_extra ) ) {
|
36 |
-
if ( self::is_iis() ) {
|
37 |
-
self::clear_iis_wincache();
|
38 |
-
} else {
|
39 |
-
return self::clear_php_opcache();
|
40 |
-
}
|
41 |
-
}
|
42 |
-
|
43 |
-
return $response;
|
44 |
-
}
|
45 |
-
|
46 |
-
/**
|
47 |
-
* Checks if the web server is running IIS software.
|
48 |
-
*
|
49 |
-
* @return bool
|
50 |
-
*/
|
51 |
-
public static function is_iis() {
|
52 |
-
$software = strtolower( $_SERVER["SERVER_SOFTWARE"] );
|
53 |
-
if ( false !== strpos( $software, "microsoft-iis" ) ) {
|
54 |
-
return true;
|
55 |
-
} else {
|
56 |
-
return false;
|
57 |
-
}
|
58 |
-
}
|
59 |
-
|
60 |
-
/**
|
61 |
-
* Clears the IIS cache.
|
62 |
-
*
|
63 |
-
* @return bool|void
|
64 |
-
*/
|
65 |
-
public static function clear_iis_wincache() {
|
66 |
-
if ( ! function_exists( 'wincache_ucache_get' ) ) {
|
67 |
-
return;
|
68 |
-
}
|
69 |
-
if ( ! wincache_ucache_clear() ) {
|
70 |
-
return false;
|
71 |
-
} else {
|
72 |
-
return true;
|
73 |
-
}
|
74 |
-
}
|
75 |
-
|
76 |
-
/**
|
77 |
-
* Clears the PHP opcache.
|
78 |
-
*
|
79 |
-
* @return bool|void
|
80 |
-
*/
|
81 |
-
public static function clear_php_opcache() {
|
82 |
-
if ( ! extension_loaded( 'Zend OPcache' ) ) {
|
83 |
-
return;
|
84 |
-
}
|
85 |
-
$opcache_status = opcache_get_status();
|
86 |
-
if ( false === $opcache_status["opcache_enabled"] ) {
|
87 |
-
// extension loaded but OPcache not enabled
|
88 |
-
return;
|
89 |
-
}
|
90 |
-
if ( ! opcache_reset() ) {
|
91 |
-
return false;
|
92 |
-
} else {
|
93 |
-
/**
|
94 |
-
* opcache_reset() is performed, now try to clear the
|
95 |
-
* file cache.
|
96 |
-
* Please note: http://stackoverflow.com/a/23587079/1297898
|
97 |
-
* "Opcache does not evict invalid items from memory - they
|
98 |
-
* stay there until the pool is full at which point the
|
99 |
-
* memory is completely cleared"
|
100 |
-
*/
|
101 |
-
foreach ( $opcache_status['scripts'] as $key => $data ) {
|
102 |
-
$dirs[ dirname( $key ) ][ basename( $key ) ] = $data;
|
103 |
-
opcache_invalidate( $data['full_path'], true );
|
104 |
-
}
|
105 |
-
|
106 |
-
return true;
|
107 |
-
}
|
108 |
-
}
|
109 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/ViewManager.php
CHANGED
@@ -131,6 +131,7 @@ class WSAL_ViewManager {
|
|
131 |
}
|
132 |
}
|
133 |
|
|
|
134 |
/**
|
135 |
* Display notice if user is using older version of WFCM
|
136 |
*/
|
131 |
}
|
132 |
}
|
133 |
|
134 |
+
|
135 |
/**
|
136 |
* Display notice if user is using older version of WFCM
|
137 |
*/
|
languages/wp-security-audit-log.pot
CHANGED
@@ -1,8379 +1,5113 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the wp-security-audit-log package.
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: wp-security-audit-log\n"
|
|
|
|
|
|
|
|
|
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"
|
10 |
-
"Last-Translator: WP White Security <info@wpwhitesecurity.com>\n"
|
11 |
-
"Report-Msgid-Bugs-To: https://www.wpwhitesecurity.com\n"
|
12 |
"X-Poedit-Basepath: ..\n"
|
13 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
|
|
|
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
16 |
-
"X-Poedit-
|
17 |
-
"
|
|
|
18 |
|
19 |
-
#:
|
20 |
-
msgid "
|
21 |
msgstr ""
|
22 |
|
23 |
-
#:
|
24 |
-
msgid "
|
25 |
msgstr ""
|
26 |
|
27 |
-
#:
|
28 |
-
msgid "
|
29 |
msgstr ""
|
30 |
|
31 |
-
#:
|
32 |
-
msgid "
|
33 |
msgstr ""
|
34 |
|
35 |
-
#:
|
36 |
-
|
|
|
37 |
msgstr ""
|
38 |
|
39 |
-
#:
|
40 |
-
|
|
|
41 |
msgstr ""
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
msgstr ""
|
46 |
|
47 |
-
#:
|
48 |
-
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#:
|
52 |
-
msgid "
|
53 |
msgstr ""
|
54 |
|
55 |
-
#:
|
56 |
-
msgid "
|
57 |
msgstr ""
|
58 |
|
59 |
-
#:
|
60 |
-
|
|
|
|
|
61 |
msgstr ""
|
62 |
|
63 |
-
#:
|
64 |
-
|
|
|
|
|
65 |
msgstr ""
|
66 |
|
67 |
-
#:
|
68 |
-
|
|
|
69 |
msgstr ""
|
70 |
|
71 |
-
#:
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: defaults.php:
|
76 |
-
msgid "
|
77 |
msgstr ""
|
78 |
|
79 |
-
#:
|
80 |
-
msgid "
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
msgid "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: defaults.php:
|
88 |
-
msgid "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#:
|
92 |
-
msgid "
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
-
msgid "
|
97 |
msgstr ""
|
98 |
|
99 |
-
#:
|
100 |
-
msgid "
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
-
msgid "
|
105 |
msgstr ""
|
106 |
|
107 |
-
#:
|
108 |
-
msgid "
|
109 |
msgstr ""
|
110 |
|
111 |
-
#:
|
112 |
-
msgid "
|
113 |
msgstr ""
|
114 |
|
115 |
-
#:
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#:
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#:
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
-
msgid "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#:
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#:
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#:
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#:
|
148 |
-
msgid "
|
149 |
msgstr ""
|
150 |
|
151 |
-
#:
|
152 |
-
msgid "
|
153 |
msgstr ""
|
154 |
|
155 |
-
#:
|
156 |
-
msgid "
|
157 |
msgstr ""
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#:
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#:
|
192 |
-
msgid "
|
193 |
msgstr ""
|
194 |
|
195 |
-
#:
|
196 |
-
msgid "
|
197 |
msgstr ""
|
198 |
|
199 |
-
#:
|
200 |
-
msgid "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#:
|
208 |
-
msgid "
|
209 |
msgstr ""
|
210 |
|
211 |
-
#:
|
212 |
-
msgid "
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
-
msgid "
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#:
|
232 |
-
msgid "
|
233 |
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
-
msgid "
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
-
msgid "
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
244 |
-
msgid "
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
248 |
-
msgid "
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
-
msgid "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
-
msgid "
|
257 |
msgstr ""
|
258 |
|
259 |
-
#:
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#:
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
-
|
|
|
273 |
msgstr ""
|
274 |
|
275 |
-
#:
|
276 |
-
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
msgid "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#:
|
292 |
-
msgid "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
-
msgid "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#:
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#:
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
308 |
-
msgid "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
316 |
-
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#:
|
320 |
-
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
-
#:
|
324 |
-
|
|
|
|
|
325 |
msgstr ""
|
326 |
|
327 |
-
#:
|
328 |
-
msgid "
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
332 |
-
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
336 |
-
|
|
|
337 |
msgstr ""
|
338 |
|
339 |
-
#:
|
340 |
-
msgid "
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
-
msgid "
|
345 |
msgstr ""
|
346 |
|
347 |
-
#:
|
348 |
-
msgid "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#:
|
352 |
-
|
|
|
353 |
msgstr ""
|
354 |
|
355 |
-
#:
|
356 |
-
|
|
|
357 |
msgstr ""
|
358 |
|
359 |
-
#:
|
360 |
-
msgid "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#:
|
364 |
-
|
|
|
365 |
msgstr ""
|
366 |
|
367 |
-
#:
|
368 |
-
msgid "
|
369 |
msgstr ""
|
370 |
|
371 |
-
#:
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#:
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#:
|
380 |
-
msgid "
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
388 |
-
msgid "
|
389 |
msgstr ""
|
390 |
|
391 |
-
#:
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
-
msgid "
|
397 |
msgstr ""
|
398 |
|
399 |
-
#:
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#:
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
408 |
-
msgid "
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
-
|
|
|
413 |
msgstr ""
|
414 |
|
415 |
-
#:
|
416 |
-
|
|
|
417 |
msgstr ""
|
418 |
|
419 |
-
#:
|
420 |
-
msgid "
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
-
msgid "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#:
|
432 |
-
|
|
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
436 |
-
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
-
#:
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#:
|
444 |
-
|
|
|
445 |
msgstr ""
|
446 |
|
447 |
-
#:
|
448 |
-
msgid "
|
449 |
msgstr ""
|
450 |
|
451 |
-
#:
|
452 |
-
msgid "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#:
|
456 |
-
msgid "
|
457 |
msgstr ""
|
458 |
|
459 |
-
#:
|
460 |
-
msgid "
|
461 |
msgstr ""
|
462 |
|
463 |
-
#:
|
464 |
-
msgid "
|
465 |
msgstr ""
|
466 |
|
467 |
-
#:
|
468 |
-
|
|
|
469 |
msgstr ""
|
470 |
|
471 |
-
#:
|
472 |
-
msgid "
|
473 |
msgstr ""
|
474 |
|
475 |
-
#:
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#:
|
480 |
-
msgid "
|
481 |
msgstr ""
|
482 |
|
483 |
-
#:
|
484 |
-
msgid "
|
485 |
msgstr ""
|
486 |
|
487 |
-
#:
|
488 |
-
msgid "
|
489 |
msgstr ""
|
490 |
|
491 |
-
#:
|
492 |
-
msgid "
|
493 |
msgstr ""
|
494 |
|
495 |
-
#:
|
496 |
-
msgid "
|
497 |
msgstr ""
|
498 |
|
499 |
-
#:
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#:
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#:
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#:
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#:
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#:
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#:
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#:
|
528 |
-
msgid "
|
529 |
msgstr ""
|
530 |
|
531 |
-
#:
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#:
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#:
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#:
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#:
|
556 |
-
msgid "
|
557 |
msgstr ""
|
558 |
|
559 |
-
#:
|
560 |
-
msgid "
|
561 |
msgstr ""
|
562 |
|
563 |
-
#:
|
564 |
-
msgid "
|
565 |
msgstr ""
|
566 |
|
567 |
-
#:
|
568 |
-
msgid "
|
569 |
msgstr ""
|
570 |
|
571 |
-
#:
|
572 |
-
msgid "
|
573 |
msgstr ""
|
574 |
|
575 |
-
#:
|
576 |
-
msgid "
|
577 |
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
-
|
|
|
581 |
msgstr ""
|
582 |
|
583 |
-
#:
|
584 |
-
msgid "
|
585 |
msgstr ""
|
586 |
|
587 |
-
#:
|
588 |
-
|
|
|
589 |
msgstr ""
|
590 |
|
591 |
-
#:
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#:
|
596 |
-
|
|
|
597 |
msgstr ""
|
598 |
|
599 |
-
#:
|
600 |
-
|
|
|
601 |
msgstr ""
|
602 |
|
603 |
-
#:
|
604 |
-
|
|
|
|
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
-
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
-
#:
|
612 |
-
msgid "
|
613 |
msgstr ""
|
614 |
|
615 |
-
#:
|
616 |
-
msgid "
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: defaults.php:916
|
620 |
-
msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
|
621 |
-
msgstr ""
|
622 |
-
|
623 |
-
#: defaults.php:929
|
624 |
-
msgid "User updated a custom field name for a post"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: defaults.php:930
|
628 |
-
msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
|
629 |
-
msgstr ""
|
630 |
-
|
631 |
-
#: defaults.php:932, classes/AlertManager.php:1073
|
632 |
-
msgid "Post"
|
633 |
-
msgstr ""
|
634 |
-
|
635 |
-
#: defaults.php:943
|
636 |
-
msgid "Custom Fields (ACF)"
|
637 |
-
msgstr ""
|
638 |
-
|
639 |
-
#: defaults.php:947
|
640 |
-
msgid "User added relationship to a custom field value for a post"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: defaults.php:948
|
644 |
-
msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
|
645 |
-
msgstr ""
|
646 |
-
|
647 |
-
#: defaults.php:953
|
648 |
-
msgid "New relationships"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
#: defaults.php:962
|
652 |
-
msgid "User removed relationship from a custom field value for a post"
|
653 |
-
msgstr ""
|
654 |
-
|
655 |
-
#: defaults.php:963
|
656 |
-
msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: defaults.php:968
|
660 |
-
msgid "Removed relationships"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: defaults.php:979
|
664 |
-
msgid "Comments"
|
665 |
-
msgstr ""
|
666 |
-
|
667 |
-
#: defaults.php:983
|
668 |
-
msgid "User approved a comment"
|
669 |
-
msgstr ""
|
670 |
-
|
671 |
-
#: defaults.php:984
|
672 |
-
msgid "Approved the comment posted by %Author% on the post %PostTitle%."
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: defaults.php:989, defaults.php:1004, defaults.php:1019, defaults.php:1034, defaults.php:1049, defaults.php:1064, defaults.php:1079, defaults.php:1094, defaults.php:1109, defaults.php:1124, defaults.php:1143
|
676 |
-
msgid "Comment ID"
|
677 |
-
msgstr ""
|
678 |
-
|
679 |
-
#: defaults.php:998
|
680 |
-
msgid "User unapproved a comment"
|
681 |
-
msgstr ""
|
682 |
-
|
683 |
-
#: defaults.php:999
|
684 |
-
msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
|
685 |
-
msgstr ""
|
686 |
-
|
687 |
-
#: defaults.php:1013
|
688 |
-
msgid "User replied to a comment"
|
689 |
-
msgstr ""
|
690 |
-
|
691 |
-
#: defaults.php:1014
|
692 |
-
msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
|
693 |
-
msgstr ""
|
694 |
-
|
695 |
-
#: defaults.php:1028
|
696 |
-
msgid "User edited a comment"
|
697 |
-
msgstr ""
|
698 |
-
|
699 |
-
#: defaults.php:1029
|
700 |
-
msgid "Edited the comment posted by %Author% on the post %PostTitle%."
|
701 |
-
msgstr ""
|
702 |
-
|
703 |
-
#: defaults.php:1043
|
704 |
-
msgid "User marked a comment as Spam"
|
705 |
-
msgstr ""
|
706 |
-
|
707 |
-
#: defaults.php:1044
|
708 |
-
msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: defaults.php:1058
|
712 |
-
msgid "User marked a comment as Not Spam"
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: defaults.php:1059
|
716 |
-
msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
|
717 |
-
msgstr ""
|
718 |
-
|
719 |
-
#: defaults.php:1073
|
720 |
-
msgid "User moved a comment to trash"
|
721 |
-
msgstr ""
|
722 |
-
|
723 |
-
#: defaults.php:1074
|
724 |
-
msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
|
725 |
-
msgstr ""
|
726 |
-
|
727 |
-
#: defaults.php:1088
|
728 |
-
msgid "User restored a comment from the trash"
|
729 |
-
msgstr ""
|
730 |
-
|
731 |
-
#: defaults.php:1089
|
732 |
-
msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
|
733 |
-
msgstr ""
|
734 |
-
|
735 |
-
#: defaults.php:1103
|
736 |
-
msgid "User permanently deleted a comment"
|
737 |
-
msgstr ""
|
738 |
-
|
739 |
-
#: defaults.php:1104
|
740 |
-
msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
|
741 |
-
msgstr ""
|
742 |
-
|
743 |
-
#: defaults.php:1118
|
744 |
-
msgid "User posted a comment"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: defaults.php:1119, defaults.php:1138
|
748 |
-
msgid "Posted a comment on the post %PostTitle%."
|
749 |
-
msgstr ""
|
750 |
-
|
751 |
-
#: defaults.php:1137
|
752 |
-
msgid "Visitor posted a comment"
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: defaults.php:1154
|
756 |
-
msgid "Widgets"
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: defaults.php:1158
|
760 |
-
msgid "User added a new widget"
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: defaults.php:1159
|
764 |
-
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
765 |
-
msgstr ""
|
766 |
-
|
767 |
-
#: defaults.php:1168
|
768 |
-
msgid "User modified a widget"
|
769 |
-
msgstr ""
|
770 |
-
|
771 |
-
#: defaults.php:1169
|
772 |
-
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: defaults.php:1178
|
776 |
-
msgid "User deleted widget"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: defaults.php:1179
|
780 |
-
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
781 |
-
msgstr ""
|
782 |
-
|
783 |
-
#: defaults.php:1188
|
784 |
-
msgid "User moved widget"
|
785 |
-
msgstr ""
|
786 |
-
|
787 |
-
#: defaults.php:1189
|
788 |
-
msgid "Moved the %WidgetName% widget."
|
789 |
-
msgstr ""
|
790 |
-
|
791 |
-
#: defaults.php:1191, extensions/reports/inc/wsal-reporting-view.inc.php:1640
|
792 |
-
msgid "From"
|
793 |
-
msgstr ""
|
794 |
-
|
795 |
-
#: defaults.php:1192, extensions/reports/inc/wsal-reporting-view.inc.php:1649
|
796 |
-
msgid "To"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: defaults.php:1201
|
800 |
-
msgid "User changed widget position"
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: defaults.php:1202
|
804 |
-
msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
|
805 |
-
msgstr ""
|
806 |
-
|
807 |
-
#: defaults.php:1213
|
808 |
-
msgid "Menus"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: defaults.php:1217
|
812 |
-
msgid "User created new menu"
|
813 |
-
msgstr ""
|
814 |
-
|
815 |
-
#: defaults.php:1218
|
816 |
-
msgid "New menu called %MenuName%."
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
#: defaults.php:1227
|
820 |
-
msgid "User added content to a menu"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: defaults.php:1228
|
824 |
-
msgid "Added the item %ContentName% to the menu %MenuName%."
|
825 |
-
msgstr ""
|
826 |
-
|
827 |
-
#: defaults.php:1230, defaults.php:1242, defaults.php:1274
|
828 |
-
msgid "Item type"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: defaults.php:1239
|
832 |
-
msgid "User removed content from a menu"
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: defaults.php:1240
|
836 |
-
msgid "Removed the item %ContentName% from the menu %MenuName%."
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: defaults.php:1251
|
840 |
-
msgid "User deleted menu"
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: defaults.php:1252
|
844 |
-
msgid "Deleted the menu %MenuName%."
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: defaults.php:1261
|
848 |
-
msgid "User changed menu setting"
|
849 |
-
msgstr ""
|
850 |
-
|
851 |
-
#: defaults.php:1262
|
852 |
-
msgid "The setting %MenuSetting% in the menu %MenuName%."
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: defaults.php:1271
|
856 |
-
msgid "User modified content in a menu"
|
857 |
-
msgstr ""
|
858 |
-
|
859 |
-
#: defaults.php:1272
|
860 |
-
msgid "Modified the item %ContentName% in the menu %MenuName%."
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: defaults.php:1283
|
864 |
-
msgid "User changed name of a menu"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
-
#: defaults.php:1284
|
868 |
-
msgid "Renamed the menu %OldMenuName% to %MenuName%."
|
869 |
-
msgstr ""
|
870 |
-
|
871 |
-
#: defaults.php:1293
|
872 |
-
msgid "User changed order of the objects in a menu"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: defaults.php:1294
|
876 |
-
msgid "Changed the order of the items in the menu %MenuName%."
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: defaults.php:1303
|
880 |
-
msgid "User moved objects as a sub-item"
|
881 |
-
msgstr ""
|
882 |
-
|
883 |
-
#: defaults.php:1304
|
884 |
-
msgid "Moved items as sub-items in the menu %MenuName%."
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: defaults.php:1306
|
888 |
-
msgid "Moved item"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: defaults.php:1307
|
892 |
-
msgid "as a sub-item of"
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: defaults.php:1323, extensions/reports/classes/HtmlReportGenerator.php:541
|
896 |
-
msgid "Custom Post Types"
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: defaults.php:1327
|
900 |
-
msgid "User modified a draft blog post"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: defaults.php:1328
|
904 |
-
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
#: defaults.php:1333
|
908 |
-
msgid "User created a new post with custom post type and saved it as draft"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: defaults.php:1334
|
912 |
-
msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: defaults.php:1339
|
916 |
-
msgid "User published a post with custom post type"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: defaults.php:1340
|
920 |
-
msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
921 |
-
msgstr ""
|
922 |
-
|
923 |
-
#: defaults.php:1345
|
924 |
-
msgid "User modified a post with custom post type"
|
925 |
-
msgstr ""
|
926 |
-
|
927 |
-
#: defaults.php:1346
|
928 |
-
msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
929 |
-
msgstr ""
|
930 |
-
|
931 |
-
#: defaults.php:1351
|
932 |
-
msgid "User modified a draft post with custom post type"
|
933 |
-
msgstr ""
|
934 |
-
|
935 |
-
#: defaults.php:1352
|
936 |
-
msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
|
937 |
-
msgstr ""
|
938 |
-
|
939 |
-
#: defaults.php:1357
|
940 |
-
msgid "User permanently deleted post with custom post type"
|
941 |
-
msgstr ""
|
942 |
-
|
943 |
-
#: defaults.php:1358
|
944 |
-
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
945 |
-
msgstr ""
|
946 |
-
|
947 |
-
#: defaults.php:1363
|
948 |
-
msgid "User moved post with custom post type to trash"
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
-
#: defaults.php:1364
|
952 |
-
msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
|
953 |
-
msgstr ""
|
954 |
-
|
955 |
-
#: defaults.php:1369
|
956 |
-
msgid "User restored post with custom post type from trash"
|
957 |
-
msgstr ""
|
958 |
-
|
959 |
-
#: defaults.php:1370
|
960 |
-
msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
|
961 |
-
msgstr ""
|
962 |
-
|
963 |
-
#: defaults.php:1375
|
964 |
-
msgid "User changed the category of a post with custom post type"
|
965 |
-
msgstr ""
|
966 |
-
|
967 |
-
#: defaults.php:1376
|
968 |
-
msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
969 |
-
msgstr ""
|
970 |
-
|
971 |
-
#: defaults.php:1381
|
972 |
-
msgid "User changed the URL of a post with custom post type"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: defaults.php:1382
|
976 |
-
msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
|
977 |
-
msgstr ""
|
978 |
-
|
979 |
-
#: defaults.php:1387
|
980 |
-
msgid "User changed the author or post with custom post type"
|
981 |
-
msgstr ""
|
982 |
-
|
983 |
-
#: defaults.php:1388
|
984 |
-
msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
985 |
-
msgstr ""
|
986 |
-
|
987 |
-
#: defaults.php:1393
|
988 |
-
msgid "User changed the status of post with custom post type"
|
989 |
-
msgstr ""
|
990 |
-
|
991 |
-
#: defaults.php:1394
|
992 |
-
msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
|
993 |
-
msgstr ""
|
994 |
-
|
995 |
-
#: defaults.php:1399
|
996 |
-
msgid "User changed the visibility of a post with custom post type"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: defaults.php:1400
|
1000 |
-
msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
1001 |
-
msgstr ""
|
1002 |
-
|
1003 |
-
#: defaults.php:1405
|
1004 |
-
msgid "User changed the date of post with custom post type"
|
1005 |
-
msgstr ""
|
1006 |
-
|
1007 |
-
#: defaults.php:1406
|
1008 |
-
msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
|
1009 |
-
msgstr ""
|
1010 |
-
|
1011 |
-
#: defaults.php:1411
|
1012 |
-
msgid "User created a custom field for a custom post type"
|
1013 |
-
msgstr ""
|
1014 |
-
|
1015 |
-
#: defaults.php:1412
|
1016 |
-
msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
#: defaults.php:1417
|
1020 |
-
msgid "User updated a custom field for a custom post type"
|
1021 |
-
msgstr ""
|
1022 |
-
|
1023 |
-
#: defaults.php:1418
|
1024 |
-
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1025 |
-
msgstr ""
|
1026 |
-
|
1027 |
-
#: defaults.php:1423
|
1028 |
-
msgid "User deleted a custom field from a custom post type"
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: defaults.php:1424
|
1032 |
-
msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1033 |
-
msgstr ""
|
1034 |
-
|
1035 |
-
#: defaults.php:1429
|
1036 |
-
msgid "User updated a custom field name for a custom post type"
|
1037 |
-
msgstr ""
|
1038 |
-
|
1039 |
-
#: defaults.php:1430
|
1040 |
-
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1041 |
-
msgstr ""
|
1042 |
-
|
1043 |
-
#: defaults.php:1435
|
1044 |
-
msgid "User modified content for a published custom post type"
|
1045 |
-
msgstr ""
|
1046 |
-
|
1047 |
-
#: defaults.php:1436
|
1048 |
-
msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
|
1049 |
-
msgstr ""
|
1050 |
-
|
1051 |
-
#: defaults.php:1441
|
1052 |
-
msgid "User modified content for a draft post"
|
1053 |
-
msgstr ""
|
1054 |
-
|
1055 |
-
#: defaults.php:1442
|
1056 |
-
msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
|
1057 |
-
msgstr ""
|
1058 |
-
|
1059 |
-
#: defaults.php:1447
|
1060 |
-
msgid "User modified content for a draft custom post type"
|
1061 |
-
msgstr ""
|
1062 |
-
|
1063 |
-
#: defaults.php:1448
|
1064 |
-
msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
|
1065 |
-
msgstr ""
|
1066 |
-
|
1067 |
-
#: defaults.php:1453
|
1068 |
-
msgid "User modified content of a post"
|
1069 |
-
msgstr ""
|
1070 |
-
|
1071 |
-
#: defaults.php:1454
|
1072 |
-
msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
|
1073 |
-
msgstr ""
|
1074 |
-
|
1075 |
-
#: defaults.php:1459
|
1076 |
-
msgid "User scheduled a custom post type"
|
1077 |
-
msgstr ""
|
1078 |
-
|
1079 |
-
#: defaults.php:1460
|
1080 |
-
msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
|
1081 |
-
msgstr ""
|
1082 |
-
|
1083 |
-
#: defaults.php:1465
|
1084 |
-
msgid "User changed title of a custom post type"
|
1085 |
-
msgstr ""
|
1086 |
-
|
1087 |
-
#: defaults.php:1466
|
1088 |
-
msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
|
1089 |
-
msgstr ""
|
1090 |
-
|
1091 |
-
#: defaults.php:1471
|
1092 |
-
msgid "User opened a custom post type in the editor"
|
1093 |
-
msgstr ""
|
1094 |
-
|
1095 |
-
#: defaults.php:1472
|
1096 |
-
msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
|
1097 |
-
msgstr ""
|
1098 |
-
|
1099 |
-
#: defaults.php:1477
|
1100 |
-
msgid "User viewed a custom post type"
|
1101 |
-
msgstr ""
|
1102 |
-
|
1103 |
-
#: defaults.php:1478
|
1104 |
-
msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
|
1105 |
-
msgstr ""
|
1106 |
-
|
1107 |
-
#: defaults.php:1483
|
1108 |
-
msgid "A plugin created a custom post"
|
1109 |
-
msgstr ""
|
1110 |
-
|
1111 |
-
#: defaults.php:1484
|
1112 |
-
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: defaults.php:1489
|
1116 |
-
msgid "A plugin deleted a custom post"
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: defaults.php:1490
|
1120 |
-
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: defaults.php:1495
|
1124 |
-
msgid "A plugin modified a custom post"
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: defaults.php:1496
|
1128 |
-
msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: defaults.php:1508, extensions/reports/classes/HtmlReportGenerator.php:536
|
1132 |
-
msgid "Pages"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: defaults.php:1512
|
1136 |
-
msgid "User created a new WordPress page and saved it as draft"
|
1137 |
-
msgstr ""
|
1138 |
-
|
1139 |
-
#: defaults.php:1513
|
1140 |
-
msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: defaults.php:1518
|
1144 |
-
msgid "User published a WordPress page"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: defaults.php:1519
|
1148 |
-
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: defaults.php:1524
|
1152 |
-
msgid "User modified a published WordPress page"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
#: defaults.php:1525
|
1156 |
-
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1157 |
-
msgstr ""
|
1158 |
-
|
1159 |
-
#: defaults.php:1530
|
1160 |
-
msgid "User modified a draft WordPress page"
|
1161 |
-
msgstr ""
|
1162 |
-
|
1163 |
-
#: defaults.php:1531
|
1164 |
-
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
1165 |
-
msgstr ""
|
1166 |
-
|
1167 |
-
#: defaults.php:1536
|
1168 |
-
msgid "User permanently deleted a page from the trash"
|
1169 |
-
msgstr ""
|
1170 |
-
|
1171 |
-
#: defaults.php:1537
|
1172 |
-
msgid "Permanently deleted the page %PostTitle%."
|
1173 |
-
msgstr ""
|
1174 |
-
|
1175 |
-
#: defaults.php:1542
|
1176 |
-
msgid "User moved WordPress page to the trash"
|
1177 |
-
msgstr ""
|
1178 |
-
|
1179 |
-
#: defaults.php:1543
|
1180 |
-
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
1181 |
-
msgstr ""
|
1182 |
-
|
1183 |
-
#: defaults.php:1548
|
1184 |
-
msgid "User restored a WordPress page from trash"
|
1185 |
-
msgstr ""
|
1186 |
-
|
1187 |
-
#: defaults.php:1549
|
1188 |
-
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
1189 |
-
msgstr ""
|
1190 |
-
|
1191 |
-
#: defaults.php:1554
|
1192 |
-
msgid "User changed page URL"
|
1193 |
-
msgstr ""
|
1194 |
-
|
1195 |
-
#: defaults.php:1555
|
1196 |
-
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
|
1197 |
-
msgstr ""
|
1198 |
-
|
1199 |
-
#: defaults.php:1560
|
1200 |
-
msgid "User changed page author"
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#: defaults.php:1561
|
1204 |
-
msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#: defaults.php:1566
|
1208 |
-
msgid "User changed page status"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#: defaults.php:1567
|
1212 |
-
msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
|
1213 |
-
msgstr ""
|
1214 |
-
|
1215 |
-
#: defaults.php:1572
|
1216 |
-
msgid "User changed the visibility of a page post"
|
1217 |
-
msgstr ""
|
1218 |
-
|
1219 |
-
#: defaults.php:1573
|
1220 |
-
msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
|
1221 |
-
msgstr ""
|
1222 |
-
|
1223 |
-
#: defaults.php:1578
|
1224 |
-
msgid "User changed the date of a page post"
|
1225 |
-
msgstr ""
|
1226 |
-
|
1227 |
-
#: defaults.php:1579
|
1228 |
-
msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
|
1229 |
-
msgstr ""
|
1230 |
-
|
1231 |
-
#: defaults.php:1584
|
1232 |
-
msgid "User created a custom field for a page"
|
1233 |
-
msgstr ""
|
1234 |
-
|
1235 |
-
#: defaults.php:1585
|
1236 |
-
msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1237 |
-
msgstr ""
|
1238 |
-
|
1239 |
-
#: defaults.php:1590
|
1240 |
-
msgid "User updated a custom field value for a page"
|
1241 |
-
msgstr ""
|
1242 |
-
|
1243 |
-
#: defaults.php:1591
|
1244 |
-
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1245 |
-
msgstr ""
|
1246 |
-
|
1247 |
-
#: defaults.php:1596
|
1248 |
-
msgid "User deleted a custom field from a page"
|
1249 |
-
msgstr ""
|
1250 |
-
|
1251 |
-
#: defaults.php:1597
|
1252 |
-
msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
|
1253 |
-
msgstr ""
|
1254 |
-
|
1255 |
-
#: defaults.php:1602
|
1256 |
-
msgid "User updated a custom field name for a page"
|
1257 |
-
msgstr ""
|
1258 |
-
|
1259 |
-
#: defaults.php:1603
|
1260 |
-
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1261 |
-
msgstr ""
|
1262 |
-
|
1263 |
-
#: defaults.php:1608
|
1264 |
-
msgid "User modified content for a published page"
|
1265 |
-
msgstr ""
|
1266 |
-
|
1267 |
-
#: defaults.php:1609
|
1268 |
-
msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
|
1269 |
-
msgstr ""
|
1270 |
-
|
1271 |
-
#: defaults.php:1614
|
1272 |
-
msgid "User modified content for a draft page"
|
1273 |
-
msgstr ""
|
1274 |
-
|
1275 |
-
#: defaults.php:1615
|
1276 |
-
msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
|
1277 |
-
msgstr ""
|
1278 |
-
|
1279 |
-
#: defaults.php:1620
|
1280 |
-
msgid "User scheduled a page"
|
1281 |
-
msgstr ""
|
1282 |
-
|
1283 |
-
#: defaults.php:1621
|
1284 |
-
msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
|
1285 |
-
msgstr ""
|
1286 |
-
|
1287 |
-
#: defaults.php:1626
|
1288 |
-
msgid "User changed title of a page"
|
1289 |
-
msgstr ""
|
1290 |
-
|
1291 |
-
#: defaults.php:1627
|
1292 |
-
msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
1293 |
-
msgstr ""
|
1294 |
-
|
1295 |
-
#: defaults.php:1632
|
1296 |
-
msgid "User opened a page in the editor"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#: defaults.php:1633
|
1300 |
-
msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: defaults.php:1638
|
1304 |
-
msgid "User viewed a page"
|
1305 |
-
msgstr ""
|
1306 |
-
|
1307 |
-
#: defaults.php:1639
|
1308 |
-
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
1309 |
-
msgstr ""
|
1310 |
-
|
1311 |
-
#: defaults.php:1644
|
1312 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
1313 |
-
msgstr ""
|
1314 |
-
|
1315 |
-
#: defaults.php:1645
|
1316 |
-
msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: defaults.php:1650
|
1320 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
1321 |
-
msgstr ""
|
1322 |
-
|
1323 |
-
#: defaults.php:1651
|
1324 |
-
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#: defaults.php:1656
|
1328 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
1329 |
-
msgstr ""
|
1330 |
-
|
1331 |
-
#: defaults.php:1657
|
1332 |
-
msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1333 |
-
msgstr ""
|
1334 |
-
|
1335 |
-
#: defaults.php:1662
|
1336 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
1337 |
-
msgstr ""
|
1338 |
-
|
1339 |
-
#: defaults.php:1663
|
1340 |
-
msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1341 |
-
msgstr ""
|
1342 |
-
|
1343 |
-
#: defaults.php:1668
|
1344 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
1345 |
-
msgstr ""
|
1346 |
-
|
1347 |
-
#: defaults.php:1669
|
1348 |
-
msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1349 |
-
msgstr ""
|
1350 |
-
|
1351 |
-
#: defaults.php:1674
|
1352 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
1353 |
-
msgstr ""
|
1354 |
-
|
1355 |
-
#: defaults.php:1675
|
1356 |
-
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1357 |
-
msgstr ""
|
1358 |
-
|
1359 |
-
#: defaults.php:1680
|
1360 |
-
msgid "A plugin created a page"
|
1361 |
-
msgstr ""
|
1362 |
-
|
1363 |
-
#: defaults.php:1681
|
1364 |
-
msgid "A plugin automatically created the following page: %PostTitle%."
|
1365 |
-
msgstr ""
|
1366 |
-
|
1367 |
-
#: defaults.php:1686
|
1368 |
-
msgid "A plugin deleted a page"
|
1369 |
-
msgstr ""
|
1370 |
-
|
1371 |
-
#: defaults.php:1687
|
1372 |
-
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
1373 |
-
msgstr ""
|
1374 |
-
|
1375 |
-
#: defaults.php:1692
|
1376 |
-
msgid "A plugin modified a page"
|
1377 |
-
msgstr ""
|
1378 |
-
|
1379 |
-
#: defaults.php:1693
|
1380 |
-
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
1381 |
-
msgstr ""
|
1382 |
-
|
1383 |
-
#: defaults.php:1698
|
1384 |
-
msgid "User Accounts"
|
1385 |
-
msgstr ""
|
1386 |
-
|
1387 |
-
#: defaults.php:1699
|
1388 |
-
msgid "User Profiles"
|
1389 |
-
msgstr ""
|
1390 |
-
|
1391 |
-
#: defaults.php:1703
|
1392 |
-
msgid "New user was created on WordPress"
|
1393 |
-
msgstr ""
|
1394 |
-
|
1395 |
-
#: defaults.php:1704
|
1396 |
-
msgid "A new user %NewUserData->Username% is created via registration."
|
1397 |
-
msgstr ""
|
1398 |
-
|
1399 |
-
#: defaults.php:1706, classes/AlertManager.php:1069, classes/AuditLogListView.php:272, classes/AuditLogListView.php:306, classes/WidgetManager.php:76, classes/Views/Settings.php:1086, extensions/reports/classes/CsvReportGenerator.php:81, extensions/reports/classes/CsvReportGenerator.php:65, extensions/reports/classes/HtmlReportGenerator.php:245, extensions/reports/classes/HtmlReportGenerator.php:221, extensions/search/classes/Filters/UserNameFilter.php:46, extensions/user-sessions/classes/View/Sessions.php:154
|
1400 |
-
msgid "User"
|
1401 |
-
msgstr ""
|
1402 |
-
|
1403 |
-
#: defaults.php:1715
|
1404 |
-
msgid "User created another WordPress user"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
#: defaults.php:1716
|
1408 |
-
msgid "Created the new user: %NewUserData->Username%."
|
1409 |
-
msgstr ""
|
1410 |
-
|
1411 |
-
#: defaults.php:1719, defaults.php:1733, defaults.php:1747, defaults.php:1761, defaults.php:1775, defaults.php:1790, defaults.php:1805, defaults.php:1819, defaults.php:1833, defaults.php:1849, defaults.php:1878, defaults.php:1892, defaults.php:1907, defaults.php:1923, defaults.php:1937, defaults.php:1952, defaults.php:1966, defaults.php:1980, defaults.php:1997, defaults.php:2011, defaults.php:2025, defaults.php:2039, defaults.php:2052, defaults.php:2398
|
1412 |
-
msgid "First name"
|
1413 |
-
msgstr ""
|
1414 |
-
|
1415 |
-
#: defaults.php:1720, defaults.php:1734, defaults.php:1748, defaults.php:1762, defaults.php:1776, defaults.php:1791, defaults.php:1806, defaults.php:1820, defaults.php:1834, defaults.php:1850, defaults.php:1865, defaults.php:1893, defaults.php:1908, defaults.php:1924, defaults.php:1938, defaults.php:1953, defaults.php:1967, defaults.php:1981, defaults.php:1998, defaults.php:2012, defaults.php:2026, defaults.php:2040, defaults.php:2053, defaults.php:2399
|
1416 |
-
msgid "Last name"
|
1417 |
-
msgstr ""
|
1418 |
-
|
1419 |
-
#: defaults.php:1729
|
1420 |
-
msgid "The role of a user was changed by another WordPress user"
|
1421 |
-
msgstr ""
|
1422 |
-
|
1423 |
-
#: defaults.php:1730
|
1424 |
-
msgid "Changed the role of user %TargetUsername% to %NewRole%."
|
1425 |
-
msgstr ""
|
1426 |
-
|
1427 |
-
#: defaults.php:1732, defaults.php:2789
|
1428 |
-
msgid "Previous role"
|
1429 |
-
msgstr ""
|
1430 |
-
|
1431 |
-
#: defaults.php:1743
|
1432 |
-
msgid "User has changed his or her password"
|
1433 |
-
msgstr ""
|
1434 |
-
|
1435 |
-
#: defaults.php:1744
|
1436 |
-
msgid "Changed the password."
|
1437 |
-
msgstr ""
|
1438 |
-
|
1439 |
-
#: defaults.php:1757
|
1440 |
-
msgid "User changed another user's password"
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
#: defaults.php:1758
|
1444 |
-
msgid "Changed the password of the user %TargetUserData->Username%."
|
1445 |
-
msgstr ""
|
1446 |
-
|
1447 |
-
#: defaults.php:1771
|
1448 |
-
msgid "User changed his or her email address"
|
1449 |
-
msgstr ""
|
1450 |
-
|
1451 |
-
#: defaults.php:1772
|
1452 |
-
msgid "Changed the email address to %NewEmail%."
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
-
#: defaults.php:1777, defaults.php:1792
|
1456 |
-
msgid "Previous email address"
|
1457 |
-
msgstr ""
|
1458 |
-
|
1459 |
-
#: defaults.php:1786
|
1460 |
-
msgid "User changed another user's email address"
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
-
#: defaults.php:1787
|
1464 |
-
msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
|
1465 |
-
msgstr ""
|
1466 |
-
|
1467 |
-
#: defaults.php:1801
|
1468 |
-
msgid "User was deleted by another user"
|
1469 |
-
msgstr ""
|
1470 |
-
|
1471 |
-
#: defaults.php:1802
|
1472 |
-
msgid "Deleted the user %TargetUserData->Username%."
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: defaults.php:1815
|
1476 |
-
msgid "User opened the profile page of another user"
|
1477 |
-
msgstr ""
|
1478 |
-
|
1479 |
-
#: defaults.php:1816
|
1480 |
-
msgid "Opened the profile page of user %TargetUsername%."
|
1481 |
-
msgstr ""
|
1482 |
-
|
1483 |
-
#: defaults.php:1829
|
1484 |
-
msgid "User updated a custom field value for a user"
|
1485 |
-
msgstr ""
|
1486 |
-
|
1487 |
-
#: defaults.php:1830
|
1488 |
-
msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
|
1489 |
-
msgstr ""
|
1490 |
-
|
1491 |
-
#: defaults.php:1835, defaults.php:2879, defaults.php:2911, defaults.php:3322
|
1492 |
-
msgid "Previous value"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: defaults.php:1836, defaults.php:3323
|
1496 |
-
msgid "New value"
|
1497 |
-
msgstr ""
|
1498 |
-
|
1499 |
-
#: defaults.php:1845
|
1500 |
-
msgid "User created a custom field value for a user"
|
1501 |
-
msgstr ""
|
1502 |
-
|
1503 |
-
#: defaults.php:1846
|
1504 |
-
msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
|
1505 |
-
msgstr ""
|
1506 |
-
|
1507 |
-
#: defaults.php:1860
|
1508 |
-
msgid "User changed first name for a user"
|
1509 |
-
msgstr ""
|
1510 |
-
|
1511 |
-
#: defaults.php:1861
|
1512 |
-
msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
|
1513 |
-
msgstr ""
|
1514 |
-
|
1515 |
-
#: defaults.php:1864
|
1516 |
-
msgid "Previous name"
|
1517 |
-
msgstr ""
|
1518 |
-
|
1519 |
-
#: defaults.php:1874
|
1520 |
-
msgid "User changed last name for a user"
|
1521 |
-
msgstr ""
|
1522 |
-
|
1523 |
-
#: defaults.php:1875
|
1524 |
-
msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
|
1525 |
-
msgstr ""
|
1526 |
-
|
1527 |
-
#: defaults.php:1879
|
1528 |
-
msgid "Previous last name"
|
1529 |
-
msgstr ""
|
1530 |
-
|
1531 |
-
#: defaults.php:1888
|
1532 |
-
msgid "User changed nickname for a user"
|
1533 |
-
msgstr ""
|
1534 |
-
|
1535 |
-
#: defaults.php:1889
|
1536 |
-
msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
|
1537 |
-
msgstr ""
|
1538 |
-
|
1539 |
-
#: defaults.php:1894
|
1540 |
-
msgid "Previous nickname"
|
1541 |
-
msgstr ""
|
1542 |
-
|
1543 |
-
#: defaults.php:1903
|
1544 |
-
msgid "User changed the display name for a user"
|
1545 |
-
msgstr ""
|
1546 |
-
|
1547 |
-
#: defaults.php:1904
|
1548 |
-
msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
|
1549 |
-
msgstr ""
|
1550 |
-
|
1551 |
-
#: defaults.php:1909
|
1552 |
-
msgid "Previous display name"
|
1553 |
-
msgstr ""
|
1554 |
-
|
1555 |
-
#: defaults.php:1919, defaults.php:1933
|
1556 |
-
msgid "User created an application password"
|
1557 |
-
msgstr ""
|
1558 |
-
|
1559 |
-
#: defaults.php:1920
|
1560 |
-
msgid "The application password %friendly_name%."
|
1561 |
-
msgstr ""
|
1562 |
-
|
1563 |
-
#: defaults.php:1934
|
1564 |
-
msgid "The application password %friendly_name% for the user %login%."
|
1565 |
-
msgstr ""
|
1566 |
-
|
1567 |
-
#: defaults.php:1948
|
1568 |
-
msgid "User revoked all application passwords"
|
1569 |
-
msgstr ""
|
1570 |
-
|
1571 |
-
#: defaults.php:1949
|
1572 |
-
msgid "All application passwords."
|
1573 |
-
msgstr ""
|
1574 |
-
|
1575 |
-
#: defaults.php:1962
|
1576 |
-
msgid "User revoked all application passwords for a user"
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: defaults.php:1963
|
1580 |
-
msgid "All application passwords from the user %login%."
|
1581 |
-
msgstr ""
|
1582 |
-
|
1583 |
-
#: defaults.php:1976
|
1584 |
-
msgid "Admin sent a password reset request to a user"
|
1585 |
-
msgstr ""
|
1586 |
-
|
1587 |
-
#: defaults.php:1977
|
1588 |
-
msgid "Sent a password reset request to the user %login%."
|
1589 |
-
msgstr ""
|
1590 |
-
|
1591 |
-
#: defaults.php:1989
|
1592 |
-
msgid "Multisite User Profiles"
|
1593 |
-
msgstr ""
|
1594 |
-
|
1595 |
-
#: defaults.php:1993
|
1596 |
-
msgid "User granted Super Admin privileges"
|
1597 |
-
msgstr ""
|
1598 |
-
|
1599 |
-
#: defaults.php:1994
|
1600 |
-
msgid "Granted Super Admin privileges to the user %TargetUsername%."
|
1601 |
-
msgstr ""
|
1602 |
-
|
1603 |
-
#: defaults.php:2007
|
1604 |
-
msgid "User revoked from Super Admin privileges"
|
1605 |
-
msgstr ""
|
1606 |
-
|
1607 |
-
#: defaults.php:2008
|
1608 |
-
msgid "Revoked Super Admin privileges from %TargetUsername%."
|
1609 |
-
msgstr ""
|
1610 |
-
|
1611 |
-
#: defaults.php:2021
|
1612 |
-
msgid "Existing user added to a site"
|
1613 |
-
msgstr ""
|
1614 |
-
|
1615 |
-
#: defaults.php:2022
|
1616 |
-
msgid "Added user %TargetUsername% to the site %SiteName%."
|
1617 |
-
msgstr ""
|
1618 |
-
|
1619 |
-
#: defaults.php:2035
|
1620 |
-
msgid "User removed from site"
|
1621 |
-
msgstr ""
|
1622 |
-
|
1623 |
-
#: defaults.php:2036
|
1624 |
-
msgid "Removed user %TargetUsername% from the site %SiteName%"
|
1625 |
-
msgstr ""
|
1626 |
-
|
1627 |
-
#: defaults.php:2038
|
1628 |
-
msgid "Site role"
|
1629 |
-
msgstr ""
|
1630 |
-
|
1631 |
-
#: defaults.php:2049
|
1632 |
-
msgid "New network user created"
|
1633 |
-
msgstr ""
|
1634 |
-
|
1635 |
-
#: defaults.php:2050
|
1636 |
-
msgid "Created the new network user %NewUserData->Username%."
|
1637 |
-
msgstr ""
|
1638 |
-
|
1639 |
-
#: defaults.php:2062
|
1640 |
-
msgid "Plugins & Themes"
|
1641 |
-
msgstr ""
|
1642 |
-
|
1643 |
-
#: defaults.php:2063, classes/AuditLogGridView.php:430, classes/AuditLogListView.php:438
|
1644 |
-
msgid "Plugins"
|
1645 |
-
msgstr ""
|
1646 |
-
|
1647 |
-
#: defaults.php:2067
|
1648 |
-
msgid "User installed a plugin"
|
1649 |
-
msgstr ""
|
1650 |
-
|
1651 |
-
#: defaults.php:2068
|
1652 |
-
msgid "Installed the plugin %Plugin->Name%."
|
1653 |
-
msgstr ""
|
1654 |
-
|
1655 |
-
#: defaults.php:2070, defaults.php:2083, defaults.php:2096, defaults.php:2109, defaults.php:2205, defaults.php:2218, defaults.php:2231, defaults.php:2270, defaults.php:2283
|
1656 |
-
msgid "Version"
|
1657 |
-
msgstr ""
|
1658 |
-
|
1659 |
-
#: defaults.php:2071, defaults.php:2084, defaults.php:2097, defaults.php:2110, defaults.php:2123, defaults.php:2166, defaults.php:2179, defaults.php:2206, defaults.php:2219, defaults.php:2232, defaults.php:2245, defaults.php:2271, defaults.php:2284
|
1660 |
-
msgid "Install location"
|
1661 |
-
msgstr ""
|
1662 |
-
|
1663 |
-
#: defaults.php:2080
|
1664 |
-
msgid "User activated a WordPress plugin"
|
1665 |
-
msgstr ""
|
1666 |
-
|
1667 |
-
#: defaults.php:2081
|
1668 |
-
msgid "Activated the plugin %PluginData->Name%."
|
1669 |
-
msgstr ""
|
1670 |
-
|
1671 |
-
#: defaults.php:2093
|
1672 |
-
msgid "User deactivated a WordPress plugin"
|
1673 |
-
msgstr ""
|
1674 |
-
|
1675 |
-
#: defaults.php:2094
|
1676 |
-
msgid "Deactivated the plugin %PluginData->Name%."
|
1677 |
-
msgstr ""
|
1678 |
-
|
1679 |
-
#: defaults.php:2106
|
1680 |
-
msgid "User uninstalled a plugin"
|
1681 |
-
msgstr ""
|
1682 |
-
|
1683 |
-
#: defaults.php:2107
|
1684 |
-
msgid "Uninstalled the plugin %PluginData->Name%."
|
1685 |
-
msgstr ""
|
1686 |
-
|
1687 |
-
#: defaults.php:2119
|
1688 |
-
msgid "User upgraded a plugin"
|
1689 |
-
msgstr ""
|
1690 |
-
|
1691 |
-
#: defaults.php:2120
|
1692 |
-
msgid "Updated the plugin %PluginData->Name%."
|
1693 |
-
msgstr ""
|
1694 |
-
|
1695 |
-
#: defaults.php:2122
|
1696 |
-
msgid "Updated version"
|
1697 |
-
msgstr ""
|
1698 |
-
|
1699 |
-
#: defaults.php:2132
|
1700 |
-
msgid "A plugin created a post"
|
1701 |
-
msgstr ""
|
1702 |
-
|
1703 |
-
#: defaults.php:2133
|
1704 |
-
msgid "The plugin created the post %PostTitle%."
|
1705 |
-
msgstr ""
|
1706 |
-
|
1707 |
-
#: defaults.php:2138, defaults.php:2153, classes/AlertManager.php:1071, classes/AuditLogGridView.php:427, classes/AuditLogListView.php:436
|
1708 |
-
msgid "Plugin"
|
1709 |
-
msgstr ""
|
1710 |
-
|
1711 |
-
#: defaults.php:2147
|
1712 |
-
msgid "A plugin deleted a post"
|
1713 |
-
msgstr ""
|
1714 |
-
|
1715 |
-
#: defaults.php:2148
|
1716 |
-
msgid "A plugin deleted the post %PostTitle%."
|
1717 |
-
msgstr ""
|
1718 |
-
|
1719 |
-
#: defaults.php:2163
|
1720 |
-
msgid "Changed the Automatic updates setting for a plugin."
|
1721 |
-
msgstr ""
|
1722 |
-
|
1723 |
-
#: defaults.php:2164
|
1724 |
-
msgid "Changed the Automatic updates setting for the plugin %name%."
|
1725 |
-
msgstr ""
|
1726 |
-
|
1727 |
-
#: defaults.php:2176
|
1728 |
-
msgid "Changed the Automatic updates setting for a theme."
|
1729 |
-
msgstr ""
|
1730 |
-
|
1731 |
-
#: defaults.php:2177
|
1732 |
-
msgid "Changed the Automatic updates setting for the theme %name%."
|
1733 |
-
msgstr ""
|
1734 |
-
|
1735 |
-
#: defaults.php:2189
|
1736 |
-
msgid "User changed a file using the plugin editor"
|
1737 |
-
msgstr ""
|
1738 |
-
|
1739 |
-
#: defaults.php:2190
|
1740 |
-
msgid "Modified the file %File% with the plugin editor."
|
1741 |
-
msgstr ""
|
1742 |
-
|
1743 |
-
#: defaults.php:2198
|
1744 |
-
msgid "Themes"
|
1745 |
-
msgstr ""
|
1746 |
-
|
1747 |
-
#: defaults.php:2202
|
1748 |
-
msgid "User installed a theme"
|
1749 |
-
msgstr ""
|
1750 |
-
|
1751 |
-
#: defaults.php:2203
|
1752 |
-
msgid "Installed the theme %Theme->Name%."
|
1753 |
-
msgstr ""
|
1754 |
-
|
1755 |
-
#: defaults.php:2215
|
1756 |
-
msgid "User activated a theme"
|
1757 |
-
msgstr ""
|
1758 |
-
|
1759 |
-
#: defaults.php:2216
|
1760 |
-
msgid "Activated the theme %Theme->Name%."
|
1761 |
-
msgstr ""
|
1762 |
-
|
1763 |
-
#: defaults.php:2228
|
1764 |
-
msgid "User uninstalled a theme"
|
1765 |
-
msgstr ""
|
1766 |
-
|
1767 |
-
#: defaults.php:2229
|
1768 |
-
msgid "Deleted the theme %Theme->Name%."
|
1769 |
-
msgstr ""
|
1770 |
-
|
1771 |
-
#: defaults.php:2241
|
1772 |
-
msgid "User updated a theme"
|
1773 |
-
msgstr ""
|
1774 |
-
|
1775 |
-
#: defaults.php:2242
|
1776 |
-
msgid "Updated the theme %Theme->Name%."
|
1777 |
-
msgstr ""
|
1778 |
-
|
1779 |
-
#: defaults.php:2244, defaults.php:2338
|
1780 |
-
msgid "New version"
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: defaults.php:2254
|
1784 |
-
msgid "User changed a file using the theme editor"
|
1785 |
-
msgstr ""
|
1786 |
-
|
1787 |
-
#: defaults.php:2255
|
1788 |
-
msgid "Modified the file %Theme%/%File% with the theme editor."
|
1789 |
-
msgstr ""
|
1790 |
-
|
1791 |
-
#: defaults.php:2263
|
1792 |
-
msgid "Themes on Multisite"
|
1793 |
-
msgstr ""
|
1794 |
-
|
1795 |
-
#: defaults.php:2267
|
1796 |
-
msgid "Activated theme on network"
|
1797 |
-
msgstr ""
|
1798 |
-
|
1799 |
-
#: defaults.php:2268
|
1800 |
-
msgid "Network activated the theme %Theme->Name%."
|
1801 |
-
msgstr ""
|
1802 |
-
|
1803 |
-
#: defaults.php:2280
|
1804 |
-
msgid "Deactivated theme from network"
|
1805 |
-
msgstr ""
|
1806 |
-
|
1807 |
-
#: defaults.php:2281
|
1808 |
-
msgid "Network deactivated the theme %Theme->Name%."
|
1809 |
-
msgstr ""
|
1810 |
-
|
1811 |
-
#: defaults.php:2293
|
1812 |
-
msgid "WordPress & System"
|
1813 |
-
msgstr ""
|
1814 |
-
|
1815 |
-
#: defaults.php:2294, classes/AlertManager.php:1070, classes/AlertManager.php:1760, classes/AuditLogGridView.php:436, classes/AuditLogListView.php:442, extensions/email-notifications/classes/DailyNotification.php:243, extensions/email-notifications/classes/Notifier.php:657, extensions/reports/classes/Common.php:1178
|
1816 |
-
msgid "System"
|
1817 |
-
msgstr ""
|
1818 |
-
|
1819 |
-
#: defaults.php:2298
|
1820 |
-
msgid "Unknown Error"
|
1821 |
-
msgstr ""
|
1822 |
-
|
1823 |
-
#: defaults.php:2299
|
1824 |
-
msgid "An unexpected error has occurred."
|
1825 |
-
msgstr ""
|
1826 |
-
|
1827 |
-
#: defaults.php:2304
|
1828 |
-
msgid "PHP error"
|
1829 |
-
msgstr ""
|
1830 |
-
|
1831 |
-
#: defaults.php:2305, defaults.php:2311, defaults.php:2317, defaults.php:2323, defaults.php:2329
|
1832 |
-
msgid "%Message%."
|
1833 |
-
msgstr ""
|
1834 |
-
|
1835 |
-
#: defaults.php:2310
|
1836 |
-
msgid "PHP warning"
|
1837 |
-
msgstr ""
|
1838 |
-
|
1839 |
-
#: defaults.php:2316
|
1840 |
-
msgid "PHP notice"
|
1841 |
-
msgstr ""
|
1842 |
-
|
1843 |
-
#: defaults.php:2322
|
1844 |
-
msgid "PHP exception"
|
1845 |
-
msgstr ""
|
1846 |
-
|
1847 |
-
#: defaults.php:2328
|
1848 |
-
msgid "PHP shutdown error"
|
1849 |
-
msgstr ""
|
1850 |
-
|
1851 |
-
#: defaults.php:2334
|
1852 |
-
msgid "WordPress was updated"
|
1853 |
-
msgstr ""
|
1854 |
-
|
1855 |
-
#: defaults.php:2335
|
1856 |
-
msgid "Updated WordPress."
|
1857 |
-
msgstr ""
|
1858 |
-
|
1859 |
-
#: defaults.php:2337
|
1860 |
-
msgid "Previous version"
|
1861 |
-
msgstr ""
|
1862 |
-
|
1863 |
-
#: defaults.php:2354
|
1864 |
-
msgid "Advertising Extensions"
|
1865 |
-
msgstr ""
|
1866 |
-
|
1867 |
-
#: defaults.php:2355
|
1868 |
-
msgid "%PromoName% %PromoMessage%"
|
1869 |
-
msgstr ""
|
1870 |
-
|
1871 |
-
#: defaults.php:2359
|
1872 |
-
msgid "Activity log plugin"
|
1873 |
-
msgstr ""
|
1874 |
-
|
1875 |
-
#: defaults.php:2363
|
1876 |
-
msgid "Events automatically pruned by system"
|
1877 |
-
msgstr ""
|
1878 |
-
|
1879 |
-
#: defaults.php:2364
|
1880 |
-
msgid "System automatically deleted %EventCount% events from the activity log."
|
1881 |
-
msgstr ""
|
1882 |
-
|
1883 |
-
#: defaults.php:2373
|
1884 |
-
msgid "Reset the plugin's settings to default"
|
1885 |
-
msgstr ""
|
1886 |
-
|
1887 |
-
#: defaults.php:2374
|
1888 |
-
msgid "Reset the activity log plugin's settings to default."
|
1889 |
-
msgstr ""
|
1890 |
-
|
1891 |
-
#: defaults.php:2383
|
1892 |
-
msgid "Purged the activity log"
|
1893 |
-
msgstr ""
|
1894 |
-
|
1895 |
-
#: defaults.php:2384
|
1896 |
-
msgid "Purged the activity log."
|
1897 |
-
msgstr ""
|
1898 |
-
|
1899 |
-
#: defaults.php:2394
|
1900 |
-
msgid "Deleted all the data about a user from the activity log."
|
1901 |
-
msgstr ""
|
1902 |
-
|
1903 |
-
#: defaults.php:2395
|
1904 |
-
msgid "Deleted all the data about the user <strong>%user%</strong> from the activity log."
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: defaults.php:2408
|
1908 |
-
msgid "Deleted all the data of a specific type from the activity log."
|
1909 |
-
msgstr ""
|
1910 |
-
|
1911 |
-
#: defaults.php:2409
|
1912 |
-
msgid "Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log."
|
1913 |
-
msgstr ""
|
1914 |
-
|
1915 |
-
#: defaults.php:2419
|
1916 |
-
msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
|
1917 |
-
msgstr ""
|
1918 |
-
|
1919 |
-
#: defaults.php:2420
|
1920 |
-
msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
|
1921 |
-
msgstr ""
|
1922 |
-
|
1923 |
-
#: defaults.php:2430
|
1924 |
-
msgid "Changed the status of the Login Page Notification"
|
1925 |
-
msgstr ""
|
1926 |
-
|
1927 |
-
#: defaults.php:2431
|
1928 |
-
msgid "Changed the status of the <strong>Login Page Notification.</strong>"
|
1929 |
-
msgstr ""
|
1930 |
-
|
1931 |
-
#: defaults.php:2440
|
1932 |
-
msgid "Changed the text of the Login Page Notification"
|
1933 |
-
msgstr ""
|
1934 |
-
|
1935 |
-
#: defaults.php:2441
|
1936 |
-
msgid "Changed the text of the <strong>Login Page Notification.</strong>"
|
1937 |
-
msgstr ""
|
1938 |
-
|
1939 |
-
#: defaults.php:2450
|
1940 |
-
msgid "Changed the status of the Reverse proxy / firewall option"
|
1941 |
-
msgstr ""
|
1942 |
-
|
1943 |
-
#: defaults.php:2451
|
1944 |
-
msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
|
1945 |
-
msgstr ""
|
1946 |
-
|
1947 |
-
#: defaults.php:2460
|
1948 |
-
msgid "Changed the Restrict plugin access setting"
|
1949 |
-
msgstr ""
|
1950 |
-
|
1951 |
-
#: defaults.php:2461
|
1952 |
-
msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
|
1953 |
-
msgstr ""
|
1954 |
-
|
1955 |
-
#: defaults.php:2463, defaults.php:2497, defaults.php:2967, defaults.php:3054, defaults.php:3347
|
1956 |
-
msgid "Previous setting"
|
1957 |
-
msgstr ""
|
1958 |
-
|
1959 |
-
#: defaults.php:2472
|
1960 |
-
msgid "The user %user% to / from the list of users who can view the activity log"
|
1961 |
-
msgstr ""
|
1962 |
-
|
1963 |
-
#: defaults.php:2473
|
1964 |
-
msgid "The user %user% to / from the list of users who can view the activity log."
|
1965 |
-
msgstr ""
|
1966 |
-
|
1967 |
-
#: defaults.php:2475
|
1968 |
-
msgid "Previous list of users who had access to view the activity log"
|
1969 |
-
msgstr ""
|
1970 |
-
|
1971 |
-
#: defaults.php:2484
|
1972 |
-
msgid "Changed the status of the Hide plugin in plugins page setting"
|
1973 |
-
msgstr ""
|
1974 |
-
|
1975 |
-
#: defaults.php:2485
|
1976 |
-
msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
|
1977 |
-
msgstr ""
|
1978 |
-
|
1979 |
-
#: defaults.php:2494
|
1980 |
-
msgid "Changed the Activity log retention setting"
|
1981 |
-
msgstr ""
|
1982 |
-
|
1983 |
-
#: defaults.php:2495
|
1984 |
-
msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: defaults.php:2506
|
1988 |
-
msgid "A user was added to / from the list of excluded users from the activity log"
|
1989 |
-
msgstr ""
|
1990 |
-
|
1991 |
-
#: defaults.php:2507
|
1992 |
-
msgid "The user %user% to / from the list of excluded users from the activity log."
|
1993 |
-
msgstr ""
|
1994 |
-
|
1995 |
-
#: defaults.php:2509, defaults.php:2521
|
1996 |
-
msgid "Previous list of users"
|
1997 |
-
msgstr ""
|
1998 |
-
|
1999 |
-
#: defaults.php:2518
|
2000 |
-
msgid "A user role was added to / from the list of excluded roles from the activity log"
|
2001 |
-
msgstr ""
|
2002 |
-
|
2003 |
-
#: defaults.php:2519
|
2004 |
-
msgid "The user role %role% to / from the list of excluded roles from the activity log."
|
2005 |
-
msgstr ""
|
2006 |
-
|
2007 |
-
#: defaults.php:2530
|
2008 |
-
msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
|
2009 |
-
msgstr ""
|
2010 |
-
|
2011 |
-
#: defaults.php:2531
|
2012 |
-
msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
|
2013 |
-
msgstr ""
|
2014 |
-
|
2015 |
-
#: defaults.php:2533
|
2016 |
-
msgid "Previous list of IPs"
|
2017 |
-
msgstr ""
|
2018 |
-
|
2019 |
-
#: defaults.php:2542
|
2020 |
-
msgid "A post type was added to / from the list of excluded post types from the activity log"
|
2021 |
-
msgstr ""
|
2022 |
-
|
2023 |
-
#: defaults.php:2543
|
2024 |
-
msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
-
#: defaults.php:2545
|
2028 |
-
msgid "Previous list of Post types"
|
2029 |
-
msgstr ""
|
2030 |
-
|
2031 |
-
#: defaults.php:2554
|
2032 |
-
msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
|
2033 |
-
msgstr ""
|
2034 |
-
|
2035 |
-
#: defaults.php:2555
|
2036 |
-
msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
|
2037 |
-
msgstr ""
|
2038 |
-
|
2039 |
-
#: defaults.php:2557
|
2040 |
-
msgid "Previous list of Custom fields"
|
2041 |
-
msgstr ""
|
2042 |
-
|
2043 |
-
#: defaults.php:2566
|
2044 |
-
msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
|
2045 |
-
msgstr ""
|
2046 |
-
|
2047 |
-
#: defaults.php:2567
|
2048 |
-
msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
|
2049 |
-
msgstr ""
|
2050 |
-
|
2051 |
-
#: defaults.php:2569
|
2052 |
-
msgid "Previous list of user profile Custom fields"
|
2053 |
-
msgstr ""
|
2054 |
-
|
2055 |
-
#: defaults.php:2577
|
2056 |
-
msgid "Notifications & Integrations"
|
2057 |
-
msgstr ""
|
2058 |
-
|
2059 |
-
#: defaults.php:2581
|
2060 |
-
msgid "Changed the status of the Daily Summary of Activity Log"
|
2061 |
-
msgstr ""
|
2062 |
-
|
2063 |
-
#: defaults.php:2582
|
2064 |
-
msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
|
2065 |
-
msgstr ""
|
2066 |
-
|
2067 |
-
#: defaults.php:2591
|
2068 |
-
msgid "Modified the reciepients of the Daily Summary of Activity Log."
|
2069 |
-
msgstr ""
|
2070 |
-
|
2071 |
-
#: defaults.php:2592
|
2072 |
-
msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
|
2073 |
-
msgstr ""
|
2074 |
-
|
2075 |
-
#: defaults.php:2594
|
2076 |
-
msgid "New recipient"
|
2077 |
-
msgstr ""
|
2078 |
-
|
2079 |
-
#: defaults.php:2595
|
2080 |
-
msgid "Previous recipient"
|
2081 |
-
msgstr ""
|
2082 |
-
|
2083 |
-
#: defaults.php:2604
|
2084 |
-
msgid "Changed the status of a built in notification"
|
2085 |
-
msgstr ""
|
2086 |
-
|
2087 |
-
#: defaults.php:2605
|
2088 |
-
msgid "Changed the status of the built in notification %notification_name%."
|
2089 |
-
msgstr ""
|
2090 |
-
|
2091 |
-
#: defaults.php:2614
|
2092 |
-
msgid "Modified the recipient(s) of the built a notification"
|
2093 |
-
msgstr ""
|
2094 |
-
|
2095 |
-
#: defaults.php:2615
|
2096 |
-
msgid "Modified the recipient(s) of the built in notification %notification_name%."
|
2097 |
-
msgstr ""
|
2098 |
-
|
2099 |
-
#: defaults.php:2617
|
2100 |
-
msgid "New recipient(s)"
|
2101 |
-
msgstr ""
|
2102 |
-
|
2103 |
-
#: defaults.php:2618
|
2104 |
-
msgid "Previous recipient(s)"
|
2105 |
-
msgstr ""
|
2106 |
-
|
2107 |
-
#: defaults.php:2627
|
2108 |
-
msgid "Added a new custom notification"
|
2109 |
-
msgstr ""
|
2110 |
-
|
2111 |
-
#: defaults.php:2628
|
2112 |
-
msgid "Added a new custom notification %notification_name%."
|
2113 |
-
msgstr ""
|
2114 |
-
|
2115 |
-
#: defaults.php:2630, defaults.php:2642
|
2116 |
-
msgid "Recipient(s)"
|
2117 |
-
msgstr ""
|
2118 |
-
|
2119 |
-
#: defaults.php:2639
|
2120 |
-
msgid "Modified a custom notification"
|
2121 |
-
msgstr ""
|
2122 |
-
|
2123 |
-
#: defaults.php:2640
|
2124 |
-
msgid "Modified the custom notification %notification_name%."
|
2125 |
-
msgstr ""
|
2126 |
-
|
2127 |
-
#: defaults.php:2651
|
2128 |
-
msgid "Changed the status of a custom notification"
|
2129 |
-
msgstr ""
|
2130 |
-
|
2131 |
-
#: defaults.php:2652
|
2132 |
-
msgid "Changed the status of the custom notification %notification_name%."
|
2133 |
-
msgstr ""
|
2134 |
-
|
2135 |
-
#: defaults.php:2661
|
2136 |
-
msgid "Deleted a custom notification"
|
2137 |
-
msgstr ""
|
2138 |
-
|
2139 |
-
#: defaults.php:2662
|
2140 |
-
msgid "Deleted the custom notification %notification_name%."
|
2141 |
-
msgstr ""
|
2142 |
-
|
2143 |
-
#: defaults.php:2671
|
2144 |
-
msgid "Modified a default notification template"
|
2145 |
-
msgstr ""
|
2146 |
-
|
2147 |
-
#: defaults.php:2672
|
2148 |
-
msgid "Modified the default %template_name% notification template."
|
2149 |
-
msgstr ""
|
2150 |
-
|
2151 |
-
#: defaults.php:2683
|
2152 |
-
msgid "Added a new integrations connection"
|
2153 |
-
msgstr ""
|
2154 |
-
|
2155 |
-
#: defaults.php:2684
|
2156 |
-
msgid "Added / removed the integrations connection %name%"
|
2157 |
-
msgstr ""
|
2158 |
-
|
2159 |
-
#: defaults.php:2686, defaults.php:2698
|
2160 |
-
msgid "Connection type"
|
2161 |
-
msgstr ""
|
2162 |
-
|
2163 |
-
#: defaults.php:2695
|
2164 |
-
msgid "Modified an integrations connection"
|
2165 |
-
msgstr ""
|
2166 |
-
|
2167 |
-
#: defaults.php:2696
|
2168 |
-
msgid "Modified the integrations connection %name%."
|
2169 |
-
msgstr ""
|
2170 |
-
|
2171 |
-
#: defaults.php:2707
|
2172 |
-
msgid "Deleted a integrations connection"
|
2173 |
-
msgstr ""
|
2174 |
-
|
2175 |
-
#: defaults.php:2708
|
2176 |
-
msgid "Deleted the integrations connection %name%."
|
2177 |
-
msgstr ""
|
2178 |
-
|
2179 |
-
#: defaults.php:2717
|
2180 |
-
msgid "Added a new activity log mirror"
|
2181 |
-
msgstr ""
|
2182 |
-
|
2183 |
-
#: defaults.php:2718
|
2184 |
-
msgid "Added a new activity log mirror %name%."
|
2185 |
-
msgstr ""
|
2186 |
-
|
2187 |
-
#: defaults.php:2720, defaults.php:2732, defaults.php:2744
|
2188 |
-
msgid "Connection used by this mirror"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: defaults.php:2729
|
2192 |
-
msgid "Modified an activity log mirror"
|
2193 |
-
msgstr ""
|
2194 |
-
|
2195 |
-
#: defaults.php:2730
|
2196 |
-
msgid "Modified the activity log mirror %name%."
|
2197 |
-
msgstr ""
|
2198 |
-
|
2199 |
-
#: defaults.php:2741
|
2200 |
-
msgid "Changed the status of an activity log mirror"
|
2201 |
-
msgstr ""
|
2202 |
-
|
2203 |
-
#: defaults.php:2742
|
2204 |
-
msgid "Changed the status of the activity log mirror %name%."
|
2205 |
-
msgstr ""
|
2206 |
-
|
2207 |
-
#: defaults.php:2753
|
2208 |
-
msgid "Deleted an activity log mirror"
|
2209 |
-
msgstr ""
|
2210 |
-
|
2211 |
-
#: defaults.php:2754
|
2212 |
-
msgid "Deleted the activity log mirror %name%."
|
2213 |
-
msgstr ""
|
2214 |
-
|
2215 |
-
#: defaults.php:2763
|
2216 |
-
msgid "Changed the status of Logging of events to the database"
|
2217 |
-
msgstr ""
|
2218 |
-
|
2219 |
-
#: defaults.php:2764
|
2220 |
-
msgid "Changed the status of <strong>Logging of events to the database</strong>."
|
2221 |
-
msgstr ""
|
2222 |
-
|
2223 |
-
#: defaults.php:2772
|
2224 |
-
msgid "WordPress Site Settings"
|
2225 |
-
msgstr ""
|
2226 |
-
|
2227 |
-
#: defaults.php:2776
|
2228 |
-
msgid "Option Anyone Can Register in WordPress settings changed"
|
2229 |
-
msgstr ""
|
2230 |
-
|
2231 |
-
#: defaults.php:2777
|
2232 |
-
msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
|
2233 |
-
msgstr ""
|
2234 |
-
|
2235 |
-
#: defaults.php:2786
|
2236 |
-
msgid "New User Default Role changed"
|
2237 |
-
msgstr ""
|
2238 |
-
|
2239 |
-
#: defaults.php:2787
|
2240 |
-
msgid "Changed the <strong>New user default role</strong> WordPress setting."
|
2241 |
-
msgstr ""
|
2242 |
-
|
2243 |
-
#: defaults.php:2790
|
2244 |
-
msgid "New role"
|
2245 |
-
msgstr ""
|
2246 |
-
|
2247 |
-
#: defaults.php:2799
|
2248 |
-
msgid "WordPress Administrator Notification email changed"
|
2249 |
-
msgstr ""
|
2250 |
-
|
2251 |
-
#: defaults.php:2800
|
2252 |
-
msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
|
2253 |
-
msgstr ""
|
2254 |
-
|
2255 |
-
#: defaults.php:2802
|
2256 |
-
msgid "Previous address"
|
2257 |
-
msgstr ""
|
2258 |
-
|
2259 |
-
#: defaults.php:2803
|
2260 |
-
msgid "New address"
|
2261 |
-
msgstr ""
|
2262 |
-
|
2263 |
-
#: defaults.php:2812
|
2264 |
-
msgid "User changes the WordPress Permalinks"
|
2265 |
-
msgstr ""
|
2266 |
-
|
2267 |
-
#: defaults.php:2813
|
2268 |
-
msgid "Changed the <strong>WordPress permalinks</strong>."
|
2269 |
-
msgstr ""
|
2270 |
-
|
2271 |
-
#: defaults.php:2815
|
2272 |
-
msgid "Previous permalinks"
|
2273 |
-
msgstr ""
|
2274 |
-
|
2275 |
-
#: defaults.php:2816
|
2276 |
-
msgid "New permalinks"
|
2277 |
-
msgstr ""
|
2278 |
-
|
2279 |
-
#: defaults.php:2825
|
2280 |
-
msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
|
2281 |
-
msgstr ""
|
2282 |
-
|
2283 |
-
#: defaults.php:2826
|
2284 |
-
msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
|
2285 |
-
msgstr ""
|
2286 |
-
|
2287 |
-
#: defaults.php:2835
|
2288 |
-
msgid "Enabled/Disabled comments on all the website"
|
2289 |
-
msgstr ""
|
2290 |
-
|
2291 |
-
#: defaults.php:2836
|
2292 |
-
msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
|
2293 |
-
msgstr ""
|
2294 |
-
|
2295 |
-
#: defaults.php:2846
|
2296 |
-
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
2297 |
-
msgstr ""
|
2298 |
-
|
2299 |
-
#: defaults.php:2847
|
2300 |
-
msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
|
2301 |
-
msgstr ""
|
2302 |
-
|
2303 |
-
#: defaults.php:2856
|
2304 |
-
msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
|
2305 |
-
msgstr ""
|
2306 |
-
|
2307 |
-
#: defaults.php:2857
|
2308 |
-
msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
|
2309 |
-
msgstr ""
|
2310 |
-
|
2311 |
-
#: defaults.php:2866
|
2312 |
-
msgid "Enabled/Disabled the option to automatically close comments"
|
2313 |
-
msgstr ""
|
2314 |
-
|
2315 |
-
#: defaults.php:2867
|
2316 |
-
msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
|
2317 |
-
msgstr ""
|
2318 |
-
|
2319 |
-
#: defaults.php:2876
|
2320 |
-
msgid "Changed the value of the option Automatically close comments"
|
2321 |
-
msgstr ""
|
2322 |
-
|
2323 |
-
#: defaults.php:2877
|
2324 |
-
msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
|
2325 |
-
msgstr ""
|
2326 |
-
|
2327 |
-
#: defaults.php:2888
|
2328 |
-
msgid "Enabled/Disabled the option for comments to be manually approved"
|
2329 |
-
msgstr ""
|
2330 |
-
|
2331 |
-
#: defaults.php:2889
|
2332 |
-
msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
|
2333 |
-
msgstr ""
|
2334 |
-
|
2335 |
-
#: defaults.php:2898
|
2336 |
-
msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
|
2337 |
-
msgstr ""
|
2338 |
-
|
2339 |
-
#: defaults.php:2899
|
2340 |
-
msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
|
2341 |
-
msgstr ""
|
2342 |
-
|
2343 |
-
#: defaults.php:2908
|
2344 |
-
msgid "Changed the number of links that a comment must have to be held in the queue"
|
2345 |
-
msgstr ""
|
2346 |
-
|
2347 |
-
#: defaults.php:2909
|
2348 |
-
msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
#: defaults.php:2920
|
2352 |
-
msgid "Modified the list of keywords for comments moderation"
|
2353 |
-
msgstr ""
|
2354 |
-
|
2355 |
-
#: defaults.php:2921
|
2356 |
-
msgid "Modified the list of keywords for comments medoration in WordPress."
|
2357 |
-
msgstr ""
|
2358 |
-
|
2359 |
-
#: defaults.php:2930
|
2360 |
-
msgid "Modified the list of keywords for comments blacklisting"
|
2361 |
-
msgstr ""
|
2362 |
-
|
2363 |
-
#: defaults.php:2931
|
2364 |
-
msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
|
2365 |
-
msgstr ""
|
2366 |
-
|
2367 |
-
#: defaults.php:2940
|
2368 |
-
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
2369 |
-
msgstr ""
|
2370 |
-
|
2371 |
-
#: defaults.php:2941
|
2372 |
-
msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
|
2373 |
-
msgstr ""
|
2374 |
-
|
2375 |
-
#: defaults.php:2952
|
2376 |
-
msgid "Option Site Address (URL) in WordPress settings changed"
|
2377 |
-
msgstr ""
|
2378 |
-
|
2379 |
-
#: defaults.php:2953
|
2380 |
-
msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
|
2381 |
-
msgstr ""
|
2382 |
-
|
2383 |
-
#: defaults.php:2964
|
2384 |
-
msgid "Option Your homepage displays in WordPress settings changed"
|
2385 |
-
msgstr ""
|
2386 |
-
|
2387 |
-
#: defaults.php:2965
|
2388 |
-
msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
|
2389 |
-
msgstr ""
|
2390 |
-
|
2391 |
-
#: defaults.php:2976
|
2392 |
-
msgid "Option homepage in WordPress settings changed"
|
2393 |
-
msgstr ""
|
2394 |
-
|
2395 |
-
#: defaults.php:2977
|
2396 |
-
msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
|
2397 |
-
msgstr ""
|
2398 |
-
|
2399 |
-
#: defaults.php:2979, defaults.php:2991
|
2400 |
-
msgid "Previous page"
|
2401 |
-
msgstr ""
|
2402 |
-
|
2403 |
-
#: defaults.php:2988
|
2404 |
-
msgid "Option posts page in WordPress settings changed"
|
2405 |
-
msgstr ""
|
2406 |
-
|
2407 |
-
#: defaults.php:2989
|
2408 |
-
msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
|
2409 |
-
msgstr ""
|
2410 |
-
|
2411 |
-
#: defaults.php:3001
|
2412 |
-
msgid "Option Timezone in WordPress settings changed"
|
2413 |
-
msgstr ""
|
2414 |
-
|
2415 |
-
#: defaults.php:3002
|
2416 |
-
msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
|
2417 |
-
msgstr ""
|
2418 |
-
|
2419 |
-
#: defaults.php:3004
|
2420 |
-
msgid "Previous timezone"
|
2421 |
-
msgstr ""
|
2422 |
-
|
2423 |
-
#: defaults.php:3013
|
2424 |
-
msgid "Option Date format in WordPress settings changed"
|
2425 |
-
msgstr ""
|
2426 |
-
|
2427 |
-
#: defaults.php:3014
|
2428 |
-
msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
|
2429 |
-
msgstr ""
|
2430 |
-
|
2431 |
-
#: defaults.php:3016, defaults.php:3028
|
2432 |
-
msgid "Previous format"
|
2433 |
-
msgstr ""
|
2434 |
-
|
2435 |
-
#: defaults.php:3025
|
2436 |
-
msgid "Option Time format in WordPress settings changed"
|
2437 |
-
msgstr ""
|
2438 |
-
|
2439 |
-
#: defaults.php:3026
|
2440 |
-
msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
|
2441 |
-
msgstr ""
|
2442 |
-
|
2443 |
-
#: defaults.php:3038
|
2444 |
-
msgid "Option Automatic updates setting changed"
|
2445 |
-
msgstr ""
|
2446 |
-
|
2447 |
-
#: defaults.php:3039
|
2448 |
-
msgid "Changed the <strong>Automatic updates</strong> setting."
|
2449 |
-
msgstr ""
|
2450 |
-
|
2451 |
-
#: defaults.php:3041
|
2452 |
-
msgid "New setting status"
|
2453 |
-
msgstr ""
|
2454 |
-
|
2455 |
-
#: defaults.php:3051
|
2456 |
-
msgid "Option Site Language setting changed"
|
2457 |
-
msgstr ""
|
2458 |
-
|
2459 |
-
#: defaults.php:3052
|
2460 |
-
msgid "Changed the <strong>Site Language</strong> to %new_value%."
|
2461 |
-
msgstr ""
|
2462 |
-
|
2463 |
-
#: defaults.php:3062
|
2464 |
-
msgid "Database Events"
|
2465 |
-
msgstr ""
|
2466 |
-
|
2467 |
-
#: defaults.php:3066
|
2468 |
-
msgid "Plugin created table"
|
2469 |
-
msgstr ""
|
2470 |
-
|
2471 |
-
#: defaults.php:3067
|
2472 |
-
msgid "The plugin %Plugin->Name% created this table in the database."
|
2473 |
-
msgstr ""
|
2474 |
-
|
2475 |
-
#: defaults.php:3069, defaults.php:3081, defaults.php:3093, defaults.php:3105, defaults.php:3117
|
2476 |
-
msgid "Table"
|
2477 |
-
msgstr ""
|
2478 |
-
|
2479 |
-
#: defaults.php:3078
|
2480 |
-
msgid "Plugin modified table structure"
|
2481 |
-
msgstr ""
|
2482 |
-
|
2483 |
-
#: defaults.php:3079
|
2484 |
-
msgid "The plugin %Plugin->Name% modified the structure of a database table."
|
2485 |
-
msgstr ""
|
2486 |
-
|
2487 |
-
#: defaults.php:3090
|
2488 |
-
msgid "Plugin deleted table"
|
2489 |
-
msgstr ""
|
2490 |
-
|
2491 |
-
#: defaults.php:3091
|
2492 |
-
msgid "The plugin %Plugin->Name% deleted this table from the database."
|
2493 |
-
msgstr ""
|
2494 |
-
|
2495 |
-
#: defaults.php:3102
|
2496 |
-
msgid "Theme created tables"
|
2497 |
-
msgstr ""
|
2498 |
-
|
2499 |
-
#: defaults.php:3103
|
2500 |
-
msgid "The theme %Theme->Name% created this tables in the database."
|
2501 |
-
msgstr ""
|
2502 |
-
|
2503 |
-
#: defaults.php:3114
|
2504 |
-
msgid "Theme modified tables structure"
|
2505 |
-
msgstr ""
|
2506 |
-
|
2507 |
-
#: defaults.php:3115
|
2508 |
-
msgid "The theme %Theme->Name% modified the structure of this database table"
|
2509 |
-
msgstr ""
|
2510 |
-
|
2511 |
-
#: defaults.php:3126
|
2512 |
-
msgid "Theme deleted tables"
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: defaults.php:3127
|
2516 |
-
msgid "The theme %Theme->Name% deleted this table from the database."
|
2517 |
-
msgstr ""
|
2518 |
-
|
2519 |
-
#: defaults.php:3129, defaults.php:3141, defaults.php:3153, defaults.php:3165, defaults.php:3177, defaults.php:3189, defaults.php:3201
|
2520 |
-
msgid "Tables"
|
2521 |
-
msgstr ""
|
2522 |
-
|
2523 |
-
#: defaults.php:3138
|
2524 |
-
msgid "Unknown component created tables"
|
2525 |
-
msgstr ""
|
2526 |
-
|
2527 |
-
#: defaults.php:3139
|
2528 |
-
msgid "An unknown component created these tables in the database."
|
2529 |
-
msgstr ""
|
2530 |
-
|
2531 |
-
#: defaults.php:3150
|
2532 |
-
msgid "Unknown component modified tables structure"
|
2533 |
-
msgstr ""
|
2534 |
-
|
2535 |
-
#: defaults.php:3151
|
2536 |
-
msgid "An unknown component modified the structure of these database tables."
|
2537 |
-
msgstr ""
|
2538 |
-
|
2539 |
-
#: defaults.php:3162
|
2540 |
-
msgid "Unknown component deleted tables"
|
2541 |
-
msgstr ""
|
2542 |
-
|
2543 |
-
#: defaults.php:3163
|
2544 |
-
msgid "An unknown component deleted these tables from the database."
|
2545 |
-
msgstr ""
|
2546 |
-
|
2547 |
-
#: defaults.php:3174
|
2548 |
-
msgid "WordPress created tables"
|
2549 |
-
msgstr ""
|
2550 |
-
|
2551 |
-
#: defaults.php:3175
|
2552 |
-
msgid "WordPress has created these tables in the database."
|
2553 |
-
msgstr ""
|
2554 |
-
|
2555 |
-
#: defaults.php:3186
|
2556 |
-
msgid "WordPress modified tables structure"
|
2557 |
-
msgstr ""
|
2558 |
-
|
2559 |
-
#: defaults.php:3187
|
2560 |
-
msgid "WordPress modified the structure of these database tables."
|
2561 |
-
msgstr ""
|
2562 |
-
|
2563 |
-
#: defaults.php:3198
|
2564 |
-
msgid "WordPress deleted tables"
|
2565 |
-
msgstr ""
|
2566 |
-
|
2567 |
-
#: defaults.php:3199
|
2568 |
-
msgid "WordPress deleted these tables from the database."
|
2569 |
-
msgstr ""
|
2570 |
-
|
2571 |
-
#: defaults.php:3210
|
2572 |
-
msgid "Multisite Network Sites"
|
2573 |
-
msgstr ""
|
2574 |
-
|
2575 |
-
#: defaults.php:3211
|
2576 |
-
msgid "MultiSite"
|
2577 |
-
msgstr ""
|
2578 |
-
|
2579 |
-
#: defaults.php:3215
|
2580 |
-
msgid "New site added on the network"
|
2581 |
-
msgstr ""
|
2582 |
-
|
2583 |
-
#: defaults.php:3216
|
2584 |
-
msgid "Added the new site %SiteName% to the network."
|
2585 |
-
msgstr ""
|
2586 |
-
|
2587 |
-
#: defaults.php:3218, defaults.php:3230, defaults.php:3242, defaults.php:3254, defaults.php:3266, defaults.php:3278
|
2588 |
-
msgid "URL"
|
2589 |
-
msgstr ""
|
2590 |
-
|
2591 |
-
#: defaults.php:3227
|
2592 |
-
msgid "Existing site archived"
|
2593 |
-
msgstr ""
|
2594 |
-
|
2595 |
-
#: defaults.php:3228
|
2596 |
-
msgid "Archived the site %SiteName% on the network."
|
2597 |
-
msgstr ""
|
2598 |
-
|
2599 |
-
#: defaults.php:3239
|
2600 |
-
msgid "Archived site has been unarchived"
|
2601 |
-
msgstr ""
|
2602 |
-
|
2603 |
-
#: defaults.php:3240
|
2604 |
-
msgid "Unarchived the site %SiteName%."
|
2605 |
-
msgstr ""
|
2606 |
-
|
2607 |
-
#: defaults.php:3251
|
2608 |
-
msgid "Deactivated site has been activated"
|
2609 |
-
msgstr ""
|
2610 |
-
|
2611 |
-
#: defaults.php:3252
|
2612 |
-
msgid "Activated the site %SiteName% on the network."
|
2613 |
-
msgstr ""
|
2614 |
-
|
2615 |
-
#: defaults.php:3263
|
2616 |
-
msgid "Site has been deactivated"
|
2617 |
-
msgstr ""
|
2618 |
-
|
2619 |
-
#: defaults.php:3264
|
2620 |
-
msgid "Deactiveated the site %SiteName% on the network."
|
2621 |
-
msgstr ""
|
2622 |
-
|
2623 |
-
#: defaults.php:3275
|
2624 |
-
msgid "Existing site deleted from network"
|
2625 |
-
msgstr ""
|
2626 |
-
|
2627 |
-
#: defaults.php:3276
|
2628 |
-
msgid "The site: %SiteName%."
|
2629 |
-
msgstr ""
|
2630 |
-
|
2631 |
-
#: defaults.php:3287
|
2632 |
-
msgid "Allow site administrators to add new users to their sites settings changed"
|
2633 |
-
msgstr ""
|
2634 |
-
|
2635 |
-
#: defaults.php:3288
|
2636 |
-
msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
|
2637 |
-
msgstr ""
|
2638 |
-
|
2639 |
-
#: defaults.php:3297
|
2640 |
-
msgid "Site upload space settings changed"
|
2641 |
-
msgstr ""
|
2642 |
-
|
2643 |
-
#: defaults.php:3298
|
2644 |
-
msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
|
2645 |
-
msgstr ""
|
2646 |
-
|
2647 |
-
#: defaults.php:3307
|
2648 |
-
msgid "Site upload space file size settings changed"
|
2649 |
-
msgstr ""
|
2650 |
-
|
2651 |
-
#: defaults.php:3308
|
2652 |
-
msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
|
2653 |
-
msgstr ""
|
2654 |
-
|
2655 |
-
#: defaults.php:3310
|
2656 |
-
msgid "Previous size (MB)"
|
2657 |
-
msgstr ""
|
2658 |
-
|
2659 |
-
#: defaults.php:3319
|
2660 |
-
msgid "Site Upload file types settings changed"
|
2661 |
-
msgstr ""
|
2662 |
-
|
2663 |
-
#: defaults.php:3320
|
2664 |
-
msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
|
2665 |
-
msgstr ""
|
2666 |
-
|
2667 |
-
#: defaults.php:3332
|
2668 |
-
msgid "Site Max upload file size settings changed"
|
2669 |
-
msgstr ""
|
2670 |
-
|
2671 |
-
#: defaults.php:3333
|
2672 |
-
msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
|
2673 |
-
msgstr ""
|
2674 |
-
|
2675 |
-
#: defaults.php:3335
|
2676 |
-
msgid "Previous size (KB)"
|
2677 |
-
msgstr ""
|
2678 |
-
|
2679 |
-
#: defaults.php:3344
|
2680 |
-
msgid "Allow new registrations settings changed"
|
2681 |
-
msgstr ""
|
2682 |
-
|
2683 |
-
#: defaults.php:3345
|
2684 |
-
msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
|
2685 |
-
msgstr ""
|
2686 |
-
|
2687 |
-
#: defaults.php:3361
|
2688 |
-
msgid "File Changes"
|
2689 |
-
msgstr ""
|
2690 |
-
|
2691 |
-
#: defaults.php:3362
|
2692 |
-
msgid "Monitor File Changes"
|
2693 |
-
msgstr ""
|
2694 |
-
|
2695 |
-
#: defaults.php:3366
|
2696 |
-
msgid "Dummy"
|
2697 |
-
msgstr ""
|
2698 |
-
|
2699 |
-
#. translators: User's first name
|
2700 |
-
#. translators: User's first name
|
2701 |
-
#: wp-security-audit-log.php:943, wp-security-audit-log.php:971
|
2702 |
-
msgid "Hey %s"
|
2703 |
-
msgstr ""
|
2704 |
-
|
2705 |
-
#: wp-security-audit-log.php:947
|
2706 |
-
msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
|
2707 |
-
msgstr ""
|
2708 |
-
|
2709 |
-
#: wp-security-audit-log.php:948, wp-security-audit-log.php:983
|
2710 |
-
msgid "Note: "
|
2711 |
-
msgstr ""
|
2712 |
-
|
2713 |
-
#: wp-security-audit-log.php:949, wp-security-audit-log.php:984
|
2714 |
-
msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
|
2715 |
-
msgstr ""
|
2716 |
-
|
2717 |
-
#. translators: 1: Plugin name. 2: Plugin name. 2: Freemius link. 4: Plugin name.
|
2718 |
-
#: wp-security-audit-log.php:977
|
2719 |
-
msgid "Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
|
2720 |
-
msgstr ""
|
2721 |
-
|
2722 |
-
#: wp-security-audit-log.php:1029
|
2723 |
-
msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
|
2724 |
-
msgstr ""
|
2725 |
-
|
2726 |
-
#: wp-security-audit-log.php:1030
|
2727 |
-
msgid "Activate the licence key now"
|
2728 |
-
msgstr ""
|
2729 |
-
|
2730 |
-
#. translators: Number of sites
|
2731 |
-
#: wp-security-audit-log.php:1052
|
2732 |
-
msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
|
2733 |
-
msgstr ""
|
2734 |
-
|
2735 |
-
#: wp-security-audit-log.php:1048
|
2736 |
-
msgid "%s You need to renew your license to continue using premium features."
|
2737 |
-
msgstr ""
|
2738 |
-
|
2739 |
-
#: wp-security-audit-log.php:1150
|
2740 |
-
msgid "Error: You do not have sufficient permissions to disable this custom field."
|
2741 |
-
msgstr ""
|
2742 |
-
|
2743 |
-
#. translators: name of meta field (in bold)
|
2744 |
-
#: wp-security-audit-log.php:1198
|
2745 |
-
msgid "Custom field %s is no longer being monitored."
|
2746 |
-
msgstr ""
|
2747 |
-
|
2748 |
-
#. translators: setting tab name "Excluded Objects"
|
2749 |
-
#: wp-security-audit-log.php:1203
|
2750 |
-
msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
|
2751 |
-
msgstr ""
|
2752 |
-
|
2753 |
-
#: wp-security-audit-log.php:1204
|
2754 |
-
msgid "Excluded Objects"
|
2755 |
-
msgstr ""
|
2756 |
-
|
2757 |
-
#: wp-security-audit-log.php:1217
|
2758 |
-
msgid "Error: You do not have sufficient permissions to disable this alert."
|
2759 |
-
msgstr ""
|
2760 |
-
|
2761 |
-
#: wp-security-audit-log.php:1241
|
2762 |
-
msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
|
2763 |
-
msgstr ""
|
2764 |
-
|
2765 |
-
#: wp-security-audit-log.php:1241
|
2766 |
-
msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
|
2767 |
-
msgstr ""
|
2768 |
-
|
2769 |
-
#: wp-security-audit-log.php:1266, classes/Views/SetupWizard.php:270
|
2770 |
-
msgid "Installing, please wait"
|
2771 |
-
msgstr ""
|
2772 |
-
|
2773 |
-
#: wp-security-audit-log.php:1267, classes/Views/SetupWizard.php:271
|
2774 |
-
msgid "Already installed"
|
2775 |
-
msgstr ""
|
2776 |
-
|
2777 |
-
#: wp-security-audit-log.php:1268, classes/Utilities/PluginInstallAndActivate.php:108, classes/Views/SetupWizard.php:272, classes/Views/SetupWizard.php:841
|
2778 |
-
msgid "Extension installed"
|
2779 |
-
msgstr ""
|
2780 |
-
|
2781 |
-
#: wp-security-audit-log.php:1269, classes/Views/SetupWizard.php:273
|
2782 |
-
msgid "Extension activated"
|
2783 |
-
msgstr ""
|
2784 |
-
|
2785 |
-
#: wp-security-audit-log.php:1270, classes/Views/SetupWizard.php:274
|
2786 |
-
msgid "Install failed"
|
2787 |
-
msgstr ""
|
2788 |
-
|
2789 |
-
#. translators: %s: PHP Version
|
2790 |
-
#: wp-security-audit-log.php:1322
|
2791 |
-
msgid "You are using a version of PHP that is older than %s, which is no longer supported."
|
2792 |
-
msgstr ""
|
2793 |
-
|
2794 |
-
#: wp-security-audit-log.php:1324
|
2795 |
-
msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
|
2796 |
-
msgstr ""
|
2797 |
-
|
2798 |
-
#. translators: %s: Activity Log for MainWP plugin hyperlink
|
2799 |
-
#: wp-security-audit-log.php:1329
|
2800 |
-
msgid "Please install the %s plugin on the MainWP dashboard."
|
2801 |
-
msgstr ""
|
2802 |
-
|
2803 |
-
#: wp-security-audit-log.php:1329
|
2804 |
-
msgid "Activity Log for MainWP"
|
2805 |
-
msgstr ""
|
2806 |
-
|
2807 |
-
#. translators: %s: Getting started guide hyperlink
|
2808 |
-
#: wp-security-audit-log.php:1331
|
2809 |
-
msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
|
2810 |
-
msgstr ""
|
2811 |
-
|
2812 |
-
#: wp-security-audit-log.php:1331
|
2813 |
-
msgid "getting started guide"
|
2814 |
-
msgstr ""
|
2815 |
-
|
2816 |
-
#: wp-security-audit-log.php:1813
|
2817 |
-
msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
|
2818 |
-
msgstr ""
|
2819 |
-
|
2820 |
-
#: wp-security-audit-log.php:1832
|
2821 |
-
msgid "Every 6 hours"
|
2822 |
-
msgstr ""
|
2823 |
-
|
2824 |
-
#: wp-security-audit-log.php:1836
|
2825 |
-
msgid "Every 45 minutes"
|
2826 |
-
msgstr ""
|
2827 |
-
|
2828 |
-
#: wp-security-audit-log.php:1840
|
2829 |
-
msgid "Every 30 minutes"
|
2830 |
-
msgstr ""
|
2831 |
-
|
2832 |
-
#: wp-security-audit-log.php:1844
|
2833 |
-
msgid "Every 15 minutes"
|
2834 |
-
msgstr ""
|
2835 |
-
|
2836 |
-
#: wp-security-audit-log.php:1848
|
2837 |
-
msgid "Every 10 minutes"
|
2838 |
-
msgstr ""
|
2839 |
-
|
2840 |
-
#: wp-security-audit-log.php:1852
|
2841 |
-
msgid "Every 1 minute"
|
2842 |
-
msgstr ""
|
2843 |
-
|
2844 |
-
#. translators: 1. Deprecated method name 2. Version since deprecated
|
2845 |
-
#: wp-security-audit-log.php:1866
|
2846 |
-
msgid "Method %1$s is deprecated since version %2$s!"
|
2847 |
-
msgstr ""
|
2848 |
-
|
2849 |
-
#: classes/AlertFormatter.php:67
|
2850 |
-
msgid "Exclude custom field from the monitoring"
|
2851 |
-
msgstr ""
|
2852 |
-
|
2853 |
-
#: classes/AlertFormatter.php:92
|
2854 |
-
msgid "unknown"
|
2855 |
-
msgstr ""
|
2856 |
-
|
2857 |
-
#: classes/AlertFormatter.php:139, classes/AlertFormatter.php:139
|
2858 |
-
msgid "Download the log file."
|
2859 |
-
msgstr ""
|
2860 |
-
|
2861 |
-
#: classes/AlertFormatter.php:147
|
2862 |
-
msgid "published"
|
2863 |
-
msgstr ""
|
2864 |
-
|
2865 |
-
#. translators: Event ID
|
2866 |
-
#: classes/AlertManager.php:359
|
2867 |
-
msgid "Event with code %d has not be registered."
|
2868 |
-
msgstr ""
|
2869 |
-
|
2870 |
-
#. translators: Event ID
|
2871 |
-
#: classes/AlertManager.php:443
|
2872 |
-
msgid "Event %s already registered with WP Activity Log."
|
2873 |
-
msgstr ""
|
2874 |
-
|
2875 |
-
#: classes/AlertManager.php:488
|
2876 |
-
msgid "You have custom events that are using the same ID or IDs which are already registered in the plugin, so they have been disabled."
|
2877 |
-
msgstr ""
|
2878 |
-
|
2879 |
-
#. translators: 1.CSS classes, 2. Notice, 3. Contact us link
|
2880 |
-
#: classes/AlertManager.php:491
|
2881 |
-
msgid "%4$s to help you solve this issue."
|
2882 |
-
msgstr ""
|
2883 |
-
|
2884 |
-
#: classes/AlertManager.php:493
|
2885 |
-
msgid "ERROR:"
|
2886 |
-
msgstr ""
|
2887 |
-
|
2888 |
-
#: classes/AlertManager.php:495
|
2889 |
-
msgid "Contact us"
|
2890 |
-
msgstr ""
|
2891 |
-
|
2892 |
-
#: classes/AlertManager.php:1072
|
2893 |
-
msgid "Database"
|
2894 |
-
msgstr ""
|
2895 |
-
|
2896 |
-
#: classes/AlertManager.php:1074, classes/AlertManager.php:1078
|
2897 |
-
msgid "File"
|
2898 |
-
msgstr ""
|
2899 |
-
|
2900 |
-
#: classes/AlertManager.php:1075
|
2901 |
-
msgid "Tag"
|
2902 |
-
msgstr ""
|
2903 |
-
|
2904 |
-
#: classes/AlertManager.php:1076
|
2905 |
-
msgid "Comment"
|
2906 |
-
msgstr ""
|
2907 |
-
|
2908 |
-
#: classes/AlertManager.php:1077
|
2909 |
-
msgid "Setting"
|
2910 |
-
msgstr ""
|
2911 |
-
|
2912 |
-
#: classes/AlertManager.php:1079
|
2913 |
-
msgid "System Setting"
|
2914 |
-
msgstr ""
|
2915 |
-
|
2916 |
-
#: classes/AlertManager.php:1080
|
2917 |
-
msgid "MainWP Network"
|
2918 |
-
msgstr ""
|
2919 |
-
|
2920 |
-
#: classes/AlertManager.php:1081
|
2921 |
-
msgid "MainWP"
|
2922 |
-
msgstr ""
|
2923 |
-
|
2924 |
-
#: classes/AlertManager.php:1082
|
2925 |
-
msgid "Category"
|
2926 |
-
msgstr ""
|
2927 |
-
|
2928 |
-
#: classes/AlertManager.php:1083
|
2929 |
-
msgid "Custom Field"
|
2930 |
-
msgstr ""
|
2931 |
-
|
2932 |
-
#: classes/AlertManager.php:1084
|
2933 |
-
msgid "Widget"
|
2934 |
-
msgstr ""
|
2935 |
-
|
2936 |
-
#: classes/AlertManager.php:1085
|
2937 |
-
msgid "Menu"
|
2938 |
-
msgstr ""
|
2939 |
-
|
2940 |
-
#: classes/AlertManager.php:1086
|
2941 |
-
msgid "Theme"
|
2942 |
-
msgstr ""
|
2943 |
-
|
2944 |
-
#: classes/AlertManager.php:1087
|
2945 |
-
msgid "Activity log"
|
2946 |
-
msgstr ""
|
2947 |
-
|
2948 |
-
#: classes/AlertManager.php:1088
|
2949 |
-
msgid "WP Activity Log"
|
2950 |
-
msgstr ""
|
2951 |
-
|
2952 |
-
#: classes/AlertManager.php:1089
|
2953 |
-
msgid "Multisite Network"
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: classes/AlertManager.php:1090, extensions/email-notifications/classes/Common.php:1145, extensions/search/classes/Filters/IpFilter.php:88, extensions/user-sessions/classes/View/Sessions.php:325
|
2957 |
-
msgid "IP Address"
|
2958 |
-
msgstr ""
|
2959 |
-
|
2960 |
-
#: classes/AlertManager.php:1106
|
2961 |
-
msgid "unknown object"
|
2962 |
-
msgstr ""
|
2963 |
-
|
2964 |
-
#: classes/AlertManager.php:1143
|
2965 |
-
msgid "Login"
|
2966 |
-
msgstr ""
|
2967 |
-
|
2968 |
-
#: classes/AlertManager.php:1144
|
2969 |
-
msgid "Logout"
|
2970 |
-
msgstr ""
|
2971 |
-
|
2972 |
-
#: classes/AlertManager.php:1145
|
2973 |
-
msgid "Installed"
|
2974 |
-
msgstr ""
|
2975 |
-
|
2976 |
-
#: classes/AlertManager.php:1146
|
2977 |
-
msgid "Activated"
|
2978 |
-
msgstr ""
|
2979 |
-
|
2980 |
-
#: classes/AlertManager.php:1147
|
2981 |
-
msgid "Deactivated"
|
2982 |
-
msgstr ""
|
2983 |
-
|
2984 |
-
#: classes/AlertManager.php:1148
|
2985 |
-
msgid "Uninstalled"
|
2986 |
-
msgstr ""
|
2987 |
-
|
2988 |
-
#: classes/AlertManager.php:1149
|
2989 |
-
msgid "Updated"
|
2990 |
-
msgstr ""
|
2991 |
-
|
2992 |
-
#: classes/AlertManager.php:1150, extensions/user-sessions/classes/View/Sessions.php:161
|
2993 |
-
msgid "Created"
|
2994 |
-
msgstr ""
|
2995 |
-
|
2996 |
-
#: classes/AlertManager.php:1151
|
2997 |
-
msgid "Modified"
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#: classes/AlertManager.php:1152, extensions/search/search-init.php:300
|
3001 |
-
msgid "Deleted"
|
3002 |
-
msgstr ""
|
3003 |
-
|
3004 |
-
#: classes/AlertManager.php:1153, extensions/reports/classes/CsvReportGenerator.php:273, extensions/reports/classes/HtmlReportGenerator.php:449
|
3005 |
-
msgid "Published"
|
3006 |
-
msgstr ""
|
3007 |
-
|
3008 |
-
#: classes/AlertManager.php:1154
|
3009 |
-
msgid "Approved"
|
3010 |
-
msgstr ""
|
3011 |
-
|
3012 |
-
#: classes/AlertManager.php:1155
|
3013 |
-
msgid "Unapproved"
|
3014 |
-
msgstr ""
|
3015 |
-
|
3016 |
-
#: classes/AlertManager.php:1156, extensions/external-db/classes/Mirroring.php:162
|
3017 |
-
msgid "Enabled"
|
3018 |
-
msgstr ""
|
3019 |
-
|
3020 |
-
#: classes/AlertManager.php:1157, extensions/email-notifications/classes/Notifications.php:1894, extensions/external-db/classes/Mirroring.php:164
|
3021 |
-
msgid "Disabled"
|
3022 |
-
msgstr ""
|
3023 |
-
|
3024 |
-
#: classes/AlertManager.php:1158
|
3025 |
-
msgid "Added"
|
3026 |
-
msgstr ""
|
3027 |
-
|
3028 |
-
#: classes/AlertManager.php:1159
|
3029 |
-
msgid "Failed Login"
|
3030 |
-
msgstr ""
|
3031 |
-
|
3032 |
-
#: classes/AlertManager.php:1160
|
3033 |
-
msgid "Blocked"
|
3034 |
-
msgstr ""
|
3035 |
-
|
3036 |
-
#: classes/AlertManager.php:1161
|
3037 |
-
msgid "Uploaded"
|
3038 |
-
msgstr ""
|
3039 |
-
|
3040 |
-
#: classes/AlertManager.php:1162
|
3041 |
-
msgid "Restored"
|
3042 |
-
msgstr ""
|
3043 |
-
|
3044 |
-
#: classes/AlertManager.php:1163
|
3045 |
-
msgid "Opened"
|
3046 |
-
msgstr ""
|
3047 |
-
|
3048 |
-
#: classes/AlertManager.php:1164
|
3049 |
-
msgid "Viewed"
|
3050 |
-
msgstr ""
|
3051 |
-
|
3052 |
-
#: classes/AlertManager.php:1165
|
3053 |
-
msgid "Started"
|
3054 |
-
msgstr ""
|
3055 |
-
|
3056 |
-
#: classes/AlertManager.php:1166, extensions/external-db/classes/Settings.php:565
|
3057 |
-
msgid "Stopped"
|
3058 |
-
msgstr ""
|
3059 |
-
|
3060 |
-
#: classes/AlertManager.php:1167
|
3061 |
-
msgid "Removed"
|
3062 |
-
msgstr ""
|
3063 |
-
|
3064 |
-
#: classes/AlertManager.php:1168
|
3065 |
-
msgid "Unblocked"
|
3066 |
-
msgstr ""
|
3067 |
-
|
3068 |
-
#: classes/AlertManager.php:1169
|
3069 |
-
msgid "Renamed"
|
3070 |
-
msgstr ""
|
3071 |
-
|
3072 |
-
#: classes/AlertManager.php:1170
|
3073 |
-
msgid "Duplicated"
|
3074 |
-
msgstr ""
|
3075 |
-
|
3076 |
-
#: classes/AlertManager.php:1171
|
3077 |
-
msgid "Submitted"
|
3078 |
-
msgstr ""
|
3079 |
-
|
3080 |
-
#: classes/AlertManager.php:1172
|
3081 |
-
msgid "Revoked"
|
3082 |
-
msgstr ""
|
3083 |
-
|
3084 |
-
#: classes/AlertManager.php:1189
|
3085 |
-
msgid "unknown type"
|
3086 |
-
msgstr ""
|
3087 |
-
|
3088 |
-
#: classes/AlertManager.php:1722, classes/ConstantManager.php:147
|
3089 |
-
msgid "Unknown error code."
|
3090 |
-
msgstr ""
|
3091 |
-
|
3092 |
-
#: classes/AlertManager.php:1741, classes/AlertManager.php:1729, extensions/reports/classes/Common.php:1161, extensions/reports/classes/Common.php:1151
|
3093 |
-
msgid "Unknown Site"
|
3094 |
-
msgstr ""
|
3095 |
-
|
3096 |
-
#: classes/AuditLogGridView.php:112, classes/AuditLogListView.php:103
|
3097 |
-
msgid "No events so far."
|
3098 |
-
msgstr ""
|
3099 |
-
|
3100 |
-
#: classes/AuditLogGridView.php:149, classes/AuditLogListView.php:147
|
3101 |
-
msgid "List View"
|
3102 |
-
msgstr ""
|
3103 |
-
|
3104 |
-
#: classes/AuditLogGridView.php:150, classes/AuditLogListView.php:148
|
3105 |
-
msgid "Grid View"
|
3106 |
-
msgstr ""
|
3107 |
-
|
3108 |
-
#: classes/AuditLogGridView.php:175, classes/AuditLogListView.php:173
|
3109 |
-
msgid "Show "
|
3110 |
-
msgstr ""
|
3111 |
-
|
3112 |
-
#: classes/AuditLogGridView.php:183, classes/AuditLogListView.php:181
|
3113 |
-
msgid " Items"
|
3114 |
-
msgstr ""
|
3115 |
-
|
3116 |
-
#: classes/AuditLogGridView.php:190, classes/AuditLogListView.php:188
|
3117 |
-
msgid "— End of Activity Log —"
|
3118 |
-
msgstr ""
|
3119 |
-
|
3120 |
-
#: classes/AuditLogGridView.php:211, classes/AuditLogListView.php:209, classes/Views/AuditLog.php:589, extensions/reports/inc/wsal-reporting-view.inc.php:711
|
3121 |
-
msgid "All Sites"
|
3122 |
-
msgstr ""
|
3123 |
-
|
3124 |
-
#: classes/AuditLogGridView.php:272, classes/AuditLogGridView.php:298, classes/AuditLogListView.php:270, classes/AuditLogListView.php:300, classes/Views/Settings.php:1082, classes/Views/ToggleAlerts.php:299, extensions/search/classes/Filters/CodeFilter.php:43, extensions/search/classes/Filters/CodeFilter.php:69
|
3125 |
-
msgid "Severity"
|
3126 |
-
msgstr ""
|
3127 |
-
|
3128 |
-
#: classes/AuditLogGridView.php:273, extensions/search/classes/Filters/CodeFilter.php:76
|
3129 |
-
msgid "Info"
|
3130 |
-
msgstr ""
|
3131 |
-
|
3132 |
-
#: classes/AuditLogGridView.php:278, classes/AuditLogListView.php:280, classes/AuditLogListView.php:312, extensions/email-notifications/classes/Common.php:1143, extensions/email-notifications/classes/Common.php:1204, extensions/search/classes/Filters/SiteFilter.php:29
|
3133 |
-
msgid "Site"
|
3134 |
-
msgstr ""
|
3135 |
-
|
3136 |
-
#: classes/AuditLogGridView.php:281, classes/AuditLogGridView.php:304, classes/AuditLogListView.php:283, classes/AuditLogListView.php:321, extensions/email-notifications/classes/Common.php:1148, extensions/email-notifications/classes/Common.php:1178, extensions/reports/classes/CsvReportGenerator.php:86, extensions/reports/classes/HtmlReportGenerator.php:250
|
3137 |
-
msgid "Message"
|
3138 |
-
msgstr ""
|
3139 |
-
|
3140 |
-
#: classes/AuditLogGridView.php:301
|
3141 |
-
msgid "Grid"
|
3142 |
-
msgstr ""
|
3143 |
-
|
3144 |
-
#: classes/AuditLogGridView.php:369, classes/AuditLogListView.php:398
|
3145 |
-
msgid "Disable this type of events."
|
3146 |
-
msgstr ""
|
3147 |
-
|
3148 |
-
#: classes/AuditLogGridView.php:391
|
3149 |
-
msgid "Message:"
|
3150 |
-
msgstr ""
|
3151 |
-
|
3152 |
-
#: classes/AuditLogGridView.php:401, classes/AuditLogGridView.php:405, classes/AuditLogListView.php:413, classes/Utilities/UserUtils.php:149
|
3153 |
-
msgid "Unknown"
|
3154 |
-
msgstr ""
|
3155 |
-
|
3156 |
-
#: classes/AuditLogGridView.php:433, classes/AuditLogListView.php:440
|
3157 |
-
msgid "Unregistered user"
|
3158 |
-
msgstr ""
|
3159 |
-
|
3160 |
-
#: classes/AuditLogGridView.php:470, classes/AuditLogGridView.php:483, classes/AuditLogListView.php:473, classes/AuditLogListView.php:486
|
3161 |
-
msgid "Show me all activity originating from this IP Address"
|
3162 |
-
msgstr ""
|
3163 |
-
|
3164 |
-
#: classes/AuditLogGridView.php:540, classes/AuditLogListView.php:518
|
3165 |
-
msgid "View all details of this change"
|
3166 |
-
msgstr ""
|
3167 |
-
|
3168 |
-
#: classes/AuditLogGridView.php:541, classes/AuditLogListView.php:519
|
3169 |
-
msgid "Alert Data Inspector"
|
3170 |
-
msgstr ""
|
3171 |
-
|
3172 |
-
#: classes/AuditLogListView.php:271, classes/AuditLogListView.php:303, extensions/reports/classes/CsvReportGenerator.php:79, extensions/reports/classes/CsvReportGenerator.php:254, extensions/reports/classes/CsvReportGenerator.php:263, extensions/reports/classes/CsvReportGenerator.php:272, extensions/reports/classes/HtmlReportGenerator.php:243, extensions/reports/classes/HtmlReportGenerator.php:393, extensions/reports/classes/HtmlReportGenerator.php:411, extensions/reports/classes/HtmlReportGenerator.php:448, extensions/search/classes/Filters/DateFilter.php:28
|
3173 |
-
msgid "Date"
|
3174 |
-
msgstr ""
|
3175 |
-
|
3176 |
-
#: classes/AuditLogListView.php:273, classes/AuditLogListView.php:309, extensions/search/classes/Filters/IpFilter.php:46
|
3177 |
-
msgid "IP"
|
3178 |
-
msgstr ""
|
3179 |
-
|
3180 |
-
#: classes/AuditLogListView.php:274, classes/AuditLogListView.php:315, classes/WidgetManager.php:77, extensions/email-notifications/classes/Common.php:1116, extensions/search/classes/Filters/ObjectFilter.php:29, extensions/search/classes/Filters/ObjectFilter.php:53
|
3181 |
-
msgid "Object"
|
3182 |
-
msgstr ""
|
3183 |
-
|
3184 |
-
#: classes/AuditLogListView.php:275, classes/AuditLogListView.php:318, classes/WidgetManager.php:78, extensions/email-notifications/classes/Common.php:1060, extensions/email-notifications/classes/Common.php:1117, extensions/reports/classes/CsvReportGenerator.php:85, extensions/reports/classes/HtmlReportGenerator.php:249, extensions/search/classes/Filters/EventTypeFilter.php:29, extensions/search/classes/Filters/EventTypeFilter.php:53
|
3185 |
-
msgid "Event Type"
|
3186 |
-
msgstr ""
|
3187 |
-
|
3188 |
-
#: classes/AuditLogListView.php:382, classes/Models/Occurrence.php:90
|
3189 |
-
msgid "Alert message not found."
|
3190 |
-
msgstr ""
|
3191 |
-
|
3192 |
-
#: classes/AuditLogListView.php:383, classes/Models/Occurrence.php:91
|
3193 |
-
msgid "Alert description not found."
|
3194 |
-
msgstr ""
|
3195 |
-
|
3196 |
-
#: classes/ConstantManager.php:173, classes/Views/ToggleAlerts.php:444
|
3197 |
-
msgid "Informational"
|
3198 |
-
msgstr ""
|
3199 |
-
|
3200 |
-
#: classes/ConstantManager.php:171, classes/Views/ToggleAlerts.php:442, extensions/search/classes/Filters/CodeFilter.php:75
|
3201 |
-
msgid "Low"
|
3202 |
-
msgstr ""
|
3203 |
-
|
3204 |
-
#: classes/ConstantManager.php:169, classes/Views/ToggleAlerts.php:440, extensions/search/classes/Filters/CodeFilter.php:74
|
3205 |
-
msgid "Medium"
|
3206 |
-
msgstr ""
|
3207 |
-
|
3208 |
-
#: classes/ConstantManager.php:167, classes/Views/ToggleAlerts.php:438, extensions/search/classes/Filters/CodeFilter.php:73
|
3209 |
-
msgid "High"
|
3210 |
-
msgstr ""
|
3211 |
-
|
3212 |
-
#: classes/ConstantManager.php:165, classes/ConstantManager.php:159, classes/Views/ToggleAlerts.php:436, classes/Views/ToggleAlerts.php:430, extensions/search/classes/Filters/CodeFilter.php:72
|
3213 |
-
msgid "Critical"
|
3214 |
-
msgstr ""
|
3215 |
-
|
3216 |
-
#: classes/ConstantManager.php:163, classes/Views/ToggleAlerts.php:446, classes/Views/ToggleAlerts.php:434
|
3217 |
-
msgid "Notification"
|
3218 |
-
msgstr ""
|
3219 |
-
|
3220 |
-
#: classes/ConstantManager.php:161, classes/Views/ToggleAlerts.php:432
|
3221 |
-
msgid "Warning"
|
3222 |
-
msgstr ""
|
3223 |
-
|
3224 |
-
#: classes/Settings.php:374
|
3225 |
-
msgid "This function is deprecated"
|
3226 |
-
msgstr ""
|
3227 |
-
|
3228 |
-
#: classes/Settings.php:1914
|
3229 |
-
msgid "Root directory of WordPress (excluding sub directories)"
|
3230 |
-
msgstr ""
|
3231 |
-
|
3232 |
-
#: classes/Settings.php:1915
|
3233 |
-
msgid "WP Admin directory (/wp-admin/)"
|
3234 |
-
msgstr ""
|
3235 |
-
|
3236 |
-
#: classes/Settings.php:1916
|
3237 |
-
msgid "WP Includes directory (/wp-includes/)"
|
3238 |
-
msgstr ""
|
3239 |
-
|
3240 |
-
#: classes/Settings.php:1917
|
3241 |
-
msgid "/wp-content/ directory (excluding plugins, themes & uploads directories)"
|
3242 |
-
msgstr ""
|
3243 |
-
|
3244 |
-
#: classes/Settings.php:1918
|
3245 |
-
msgid "Themes directory (/wp-content/themes/)"
|
3246 |
-
msgstr ""
|
3247 |
-
|
3248 |
-
#: classes/Settings.php:1919
|
3249 |
-
msgid "Plugins directory (/wp-content/plugins/)"
|
3250 |
-
msgstr ""
|
3251 |
-
|
3252 |
-
#: classes/Settings.php:1920
|
3253 |
-
msgid "Uploads directory (/wp-content/uploads/)"
|
3254 |
-
msgstr ""
|
3255 |
-
|
3256 |
-
#: classes/Settings.php:1925
|
3257 |
-
msgid "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
|
3258 |
-
msgstr ""
|
3259 |
-
|
3260 |
-
#: classes/Settings.php:2079
|
3261 |
-
msgid "None provided"
|
3262 |
-
msgstr ""
|
3263 |
-
|
3264 |
-
#: classes/ViewManager.php:141
|
3265 |
-
msgid "WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade that plugin."
|
3266 |
-
msgstr ""
|
3267 |
-
|
3268 |
-
#: classes/ViewManager.php:283
|
3269 |
-
msgid "Free Premium Trial"
|
3270 |
-
msgstr ""
|
3271 |
-
|
3272 |
-
#: classes/WidgetManager.php:55
|
3273 |
-
msgid "Latest Events"
|
3274 |
-
msgstr ""
|
3275 |
-
|
3276 |
-
#: classes/WidgetManager.php:79, classes/Views/ToggleAlerts.php:300
|
3277 |
-
msgid "Description"
|
3278 |
-
msgstr ""
|
3279 |
-
|
3280 |
-
#: classes/WidgetManager.php:71, extensions/logs-management/logs-management.php:273
|
3281 |
-
msgid "No events found."
|
3282 |
-
msgstr ""
|
3283 |
-
|
3284 |
-
#. translators: 1 - mysqli error code, 2 - mysqli error message
|
3285 |
-
#: classes/Connector/MySQLDB.php:68
|
3286 |
-
msgid "Code %1$d: %2$s"
|
3287 |
-
msgstr ""
|
3288 |
-
|
3289 |
-
#: classes/Models/Occurrence.php:206
|
3290 |
-
msgid "WFCM"
|
3291 |
-
msgstr ""
|
3292 |
-
|
3293 |
-
#. translators: 1: html that opens a link, 2: html that closes a link.
|
3294 |
-
#: classes/Models/Occurrence.php:231
|
3295 |
-
msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
|
3296 |
-
msgstr ""
|
3297 |
-
|
3298 |
-
#: classes/Sensors/Content.php:735
|
3299 |
-
msgid "Default template"
|
3300 |
-
msgstr ""
|
3301 |
-
|
3302 |
-
#: classes/Sensors/Content.php:736, extensions/external-db/classes/ExternalStorageTab.php:235
|
3303 |
-
msgid "Default"
|
3304 |
-
msgstr ""
|
3305 |
-
|
3306 |
-
#: classes/Sensors/Content.php:778
|
3307 |
-
msgid "No previous image"
|
3308 |
-
msgstr ""
|
3309 |
-
|
3310 |
-
#: classes/Sensors/Content.php:779
|
3311 |
-
msgid "No image"
|
3312 |
-
msgstr ""
|
3313 |
-
|
3314 |
-
#: classes/Sensors/Content.php:1137, classes/Sensors/Content.php:1145
|
3315 |
-
msgid "Public"
|
3316 |
-
msgstr ""
|
3317 |
-
|
3318 |
-
#: classes/Sensors/Content.php:1135, classes/Sensors/Content.php:1143
|
3319 |
-
msgid "Private"
|
3320 |
-
msgstr ""
|
3321 |
-
|
3322 |
-
#: classes/Sensors/Content.php:1133, classes/Sensors/Content.php:1141
|
3323 |
-
msgid "Password Protected"
|
3324 |
-
msgstr ""
|
3325 |
-
|
3326 |
-
#: classes/Sensors/Content.php:1308
|
3327 |
-
msgid "no tags"
|
3328 |
-
msgstr ""
|
3329 |
-
|
3330 |
-
#: classes/Sensors/Multisite.php:80
|
3331 |
-
msgid "disabled"
|
3332 |
-
msgstr ""
|
3333 |
-
|
3334 |
-
#: classes/Sensors/Multisite.php:81
|
3335 |
-
msgid "user accounts only"
|
3336 |
-
msgstr ""
|
3337 |
-
|
3338 |
-
#: classes/Sensors/Multisite.php:82
|
3339 |
-
msgid "users can register new sites"
|
3340 |
-
msgstr ""
|
3341 |
-
|
3342 |
-
#: classes/Sensors/Multisite.php:83
|
3343 |
-
msgid "sites & users can be registered"
|
3344 |
-
msgstr ""
|
3345 |
-
|
3346 |
-
#: classes/Sensors/System.php:200, classes/Sensors/System.php:201
|
3347 |
-
msgid "latest posts"
|
3348 |
-
msgstr ""
|
3349 |
-
|
3350 |
-
#: classes/Sensors/System.php:200, classes/Sensors/System.php:201
|
3351 |
-
msgid "static page"
|
3352 |
-
msgstr ""
|
3353 |
-
|
3354 |
-
#: classes/Sensors/System.php:380
|
3355 |
-
msgid "automatically update to all new versions of WordPress"
|
3356 |
-
msgstr ""
|
3357 |
-
|
3358 |
-
#: classes/Sensors/System.php:380
|
3359 |
-
msgid "automatically update maintenance and security releases only"
|
3360 |
-
msgstr ""
|
3361 |
-
|
3362 |
-
#: classes/ThirdPartyExtensions/GravityFormsExtension.php:16
|
3363 |
-
msgid "Keep a record of when someone adds, modifies or deletes forms, entries and more in the Gravity Forms plugin."
|
3364 |
-
msgstr ""
|
3365 |
-
|
3366 |
-
#. translators: %s: Home URL
|
3367 |
-
#: classes/Utilities/Emailer.php:54
|
3368 |
-
msgid "WP Activity Log plugin disabled on %s"
|
3369 |
-
msgstr ""
|
3370 |
-
|
3371 |
-
#: classes/Utilities/Emailer.php:57
|
3372 |
-
msgid "Hello admin,"
|
3373 |
-
msgstr ""
|
3374 |
-
|
3375 |
-
#. translators: 1. User display name, 2. Home URL, 3. Date and time
|
3376 |
-
#: classes/Utilities/Emailer.php:62
|
3377 |
-
msgid "This is a notification to let you know that the user %1$s has deactivated the plugin WP Activity Log on the website %2$s on %3$s."
|
3378 |
-
msgstr ""
|
3379 |
-
|
3380 |
-
#: classes/Utilities/PluginInstallAndActivate.php:82
|
3381 |
-
msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
|
3382 |
-
msgstr ""
|
3383 |
-
|
3384 |
-
#: classes/Utilities/PluginInstallAndActivate.php:101, classes/Views/SetupWizard.php:834
|
3385 |
-
msgid "Extension for "
|
3386 |
-
msgstr ""
|
3387 |
-
|
3388 |
-
#: classes/Utilities/PluginInstallAndActivate.php:110, classes/Views/SetupWizard.php:843
|
3389 |
-
msgid "Install Extension"
|
3390 |
-
msgstr ""
|
3391 |
-
|
3392 |
-
#: classes/Utilities/PluginInstallAndActivate.php:106, classes/Views/SetupWizard.php:839
|
3393 |
-
msgid "Extension installed, activate now?"
|
3394 |
-
msgstr ""
|
3395 |
-
|
3396 |
-
#: classes/Utilities/PluginInstallerAction.php:80
|
3397 |
-
msgid "Tried to install a zip or slug that was not in the allowed list"
|
3398 |
-
msgstr ""
|
3399 |
-
|
3400 |
-
#: classes/Utilities/UserUtils.php:91
|
3401 |
-
msgid "Username: "
|
3402 |
-
msgstr ""
|
3403 |
-
|
3404 |
-
#: classes/Utilities/UserUtils.php:92
|
3405 |
-
msgid "First name: "
|
3406 |
-
msgstr ""
|
3407 |
-
|
3408 |
-
#: classes/Utilities/UserUtils.php:93
|
3409 |
-
msgid "Last Name: "
|
3410 |
-
msgstr ""
|
3411 |
-
|
3412 |
-
#: classes/Utilities/UserUtils.php:94
|
3413 |
-
msgid "Email: "
|
3414 |
-
msgstr ""
|
3415 |
-
|
3416 |
-
#: classes/Utilities/UserUtils.php:95
|
3417 |
-
msgid "Nickname: "
|
3418 |
-
msgstr ""
|
3419 |
-
|
3420 |
-
#: classes/Views/AuditLog.php:98
|
3421 |
-
msgid "Get email notifications about website changes, view logged-in users, do granular log searches, create detailed reports, and more."
|
3422 |
-
msgstr ""
|
3423 |
-
|
3424 |
-
#: classes/Views/AuditLog.php:99
|
3425 |
-
msgid "Upgrade to premium today and get more out of your activity logs!"
|
3426 |
-
msgstr ""
|
3427 |
-
|
3428 |
-
#: classes/Views/AuditLog.php:102
|
3429 |
-
msgid "Instant SMS & email alerts, search & filters, reports, users sessions management and much more!"
|
3430 |
-
msgstr ""
|
3431 |
-
|
3432 |
-
#: classes/Views/AuditLog.php:103
|
3433 |
-
msgid "Upgrade to premium to get more out of your activity logs!"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: classes/Views/AuditLog.php:106
|
3437 |
-
msgid "See who logged in on your site in real-time, generate reports, get SMS & email alerts of critical changes and more!"
|
3438 |
-
msgstr ""
|
3439 |
-
|
3440 |
-
#: classes/Views/AuditLog.php:107
|
3441 |
-
msgid "Unlock these and other powerful features with WP Activity Log Premium."
|
3442 |
-
msgstr ""
|
3443 |
-
|
3444 |
-
#: classes/Views/AuditLog.php:158
|
3445 |
-
msgid "Learn more"
|
3446 |
-
msgstr ""
|
3447 |
-
|
3448 |
-
#: classes/Views/AuditLog.php:187
|
3449 |
-
msgid "UPGRADE NOW"
|
3450 |
-
msgstr ""
|
3451 |
-
|
3452 |
-
#: classes/Views/AuditLog.php:189
|
3453 |
-
msgid "Start Free Trial"
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: classes/Views/AuditLog.php:190
|
3457 |
-
msgid "Dismiss the banner"
|
3458 |
-
msgstr ""
|
3459 |
-
|
3460 |
-
#: classes/Views/AuditLog.php:190
|
3461 |
-
msgid "Close"
|
3462 |
-
msgstr ""
|
3463 |
-
|
3464 |
-
#: classes/Views/AuditLog.php:213
|
3465 |
-
msgid "Help WP Activity Log improve."
|
3466 |
-
msgstr ""
|
3467 |
-
|
3468 |
-
#: classes/Views/AuditLog.php:214
|
3469 |
-
msgid "You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data."
|
3470 |
-
msgstr ""
|
3471 |
-
|
3472 |
-
#: classes/Views/AuditLog.php:214
|
3473 |
-
msgid "Read more about what data we collect and how."
|
3474 |
-
msgstr ""
|
3475 |
-
|
3476 |
-
#: classes/Views/AuditLog.php:216
|
3477 |
-
msgid "Sure, opt-in"
|
3478 |
-
msgstr ""
|
3479 |
-
|
3480 |
-
#: classes/Views/AuditLog.php:217
|
3481 |
-
msgid "No, thank you"
|
3482 |
-
msgstr ""
|
3483 |
-
|
3484 |
-
#: classes/Views/AuditLog.php:272
|
3485 |
-
msgid "We noticed you have"
|
3486 |
-
msgstr ""
|
3487 |
-
|
3488 |
-
#: classes/Views/AuditLog.php:274
|
3489 |
-
msgid "installed."
|
3490 |
-
msgstr ""
|
3491 |
-
|
3492 |
-
#: classes/Views/AuditLog.php:276
|
3493 |
-
msgid "Install extension"
|
3494 |
-
msgstr ""
|
3495 |
-
|
3496 |
-
#: classes/Views/AuditLog.php:321
|
3497 |
-
msgid "Activity Log Viewer"
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#: classes/Views/AuditLog.php:348
|
3501 |
-
msgid "Log Viewer"
|
3502 |
-
msgstr ""
|
3503 |
-
|
3504 |
-
#: classes/Views/AuditLog.php:505, classes/Views/Settings.php:324, classes/Views/ToggleAlerts.php:109, extensions/email-notifications/classes/AddNotification.php:224, extensions/email-notifications/classes/AddNotification.php:257, extensions/email-notifications/classes/EditNotification.php:226, extensions/email-notifications/classes/EditNotification.php:234, extensions/email-notifications/classes/EditNotification.php:230, extensions/email-notifications/classes/EditNotification.php:239, extensions/email-notifications/classes/EditNotification.php:267, extensions/external-db/classes/Settings.php:234
|
3505 |
-
msgid "You do not have sufficient permissions to access this page."
|
3506 |
-
msgstr ""
|
3507 |
-
|
3508 |
-
#: classes/Views/AuditLog.php:554
|
3509 |
-
msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
|
3510 |
-
msgstr ""
|
3511 |
-
|
3512 |
-
#: classes/Views/AuditLog.php:556, classes/Views/Settings.php:532, classes/Views/Settings.php:559, classes/Views/Settings.php:625, classes/Views/Settings.php:683, classes/Views/Settings.php:1118, classes/Views/Settings.php:1402, classes/Views/Settings.php:1443, classes/Views/Settings.php:1474, classes/Views/SetupWizard.php:562
|
3513 |
-
msgid "Yes"
|
3514 |
-
msgstr ""
|
3515 |
-
|
3516 |
-
#: classes/Views/AuditLog.php:557, classes/Views/Settings.php:537, classes/Views/Settings.php:564, classes/Views/Settings.php:655, classes/Views/Settings.php:693, classes/Views/Settings.php:1123, classes/Views/Settings.php:1409, classes/Views/Settings.php:1450, classes/Views/Settings.php:1475, classes/Views/SetupWizard.php:567
|
3517 |
-
msgid "No"
|
3518 |
-
msgstr ""
|
3519 |
-
|
3520 |
-
#: classes/Views/AuditLog.php:588
|
3521 |
-
msgid "Please enter the number of alerts you would like to see on one page:"
|
3522 |
-
msgstr ""
|
3523 |
-
|
3524 |
-
#: classes/Views/AuditLog.php:590
|
3525 |
-
msgid "No Results"
|
3526 |
-
msgstr ""
|
3527 |
-
|
3528 |
-
#: classes/Views/AuditLog.php:727, classes/Views/AuditLog.php:770, classes/Views/AuditLog.php:1048, classes/Views/AuditLog.php:1110, classes/Views/AuditLog.php:1163, classes/Views/Settings.php:239, classes/Views/Settings.php:1759, classes/Views/SetupWizard.php:96, extensions/search/search-init.php:398, extensions/search/search-init.php:446, extensions/email-notifications/classes/Notifications.php:559, extensions/external-db/classes/Connections.php:862, extensions/external-db/classes/Connections.php:887, extensions/external-db/classes/Connections.php:1018, extensions/external-db/classes/Mirroring.php:763, extensions/external-db/classes/Mirroring.php:818, extensions/external-db/classes/Settings.php:657, extensions/external-db/classes/Settings.php:833, extensions/external-db/classes/Settings.php:853, extensions/user-sessions/classes/Views.php:525, extensions/reports/classes/Views/Main.php:739
|
3529 |
-
msgid "Nonce verification failed."
|
3530 |
-
msgstr ""
|
3531 |
-
|
3532 |
-
#: classes/Views/AuditLog.php:745
|
3533 |
-
msgid "No users found."
|
3534 |
-
msgstr ""
|
3535 |
-
|
3536 |
-
#: classes/Views/AuditLog.php:817
|
3537 |
-
msgid "Freemius opt choice not found."
|
3538 |
-
msgstr ""
|
3539 |
-
|
3540 |
-
#: classes/Views/AuditLog.php:810
|
3541 |
-
msgid "Freemius opt choice selected."
|
3542 |
-
msgstr ""
|
3543 |
-
|
3544 |
-
#. translators: 1 - an opening link tag, 2 - the closing tag.
|
3545 |
-
#: classes/Views/AuditLog.php:913
|
3546 |
-
msgid "<br>An error occurred when trying to install and activate the plugin. Please try install it again from the %1$sevent settings%2$s page."
|
3547 |
-
msgstr ""
|
3548 |
-
|
3549 |
-
#: classes/Views/AuditLog.php:1012
|
3550 |
-
msgid "WordPress Activity Log"
|
3551 |
-
msgstr ""
|
3552 |
-
|
3553 |
-
#: classes/Views/AuditLog.php:1013
|
3554 |
-
msgid "When a user makes a change on your website the plugin will keep a record of that event here. Right now there is nothing because this is a new install."
|
3555 |
-
msgstr ""
|
3556 |
-
|
3557 |
-
#: classes/Views/AuditLog.php:1014
|
3558 |
-
msgid "Thank you for using WP Activity Log"
|
3559 |
-
msgstr ""
|
3560 |
-
|
3561 |
-
#: classes/Views/AuditLog.php:1037, classes/Views/AuditLog.php:1147
|
3562 |
-
msgid "You do not have sufficient permissions to dismiss this notice."
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: classes/Views/AuditLog.php:1105
|
3566 |
-
msgid "Access Denied"
|
3567 |
-
msgstr ""
|
3568 |
-
|
3569 |
-
#: classes/Views/AuditLog.php:1200
|
3570 |
-
msgid "Install the activity log extension for %1$s for more detailed logging of changes done in %2$s."
|
3571 |
-
msgstr ""
|
3572 |
-
|
3573 |
-
#: classes/Views/EmailNotifications.php:28
|
3574 |
-
msgid "Notifications Extension"
|
3575 |
-
msgstr ""
|
3576 |
-
|
3577 |
-
#: classes/Views/EmailNotifications.php:35
|
3578 |
-
msgid "Notifications ⇪"
|
3579 |
-
msgstr ""
|
3580 |
-
|
3581 |
-
#: classes/Views/EmailNotifications.php:49
|
3582 |
-
msgid "Email & SMS Notifications"
|
3583 |
-
msgstr ""
|
3584 |
-
|
3585 |
-
#: classes/Views/EmailNotifications.php:50
|
3586 |
-
msgid "Get instantly alerted of important changes on your site via email notifications & SMS messages. Upgrade to premium and:"
|
3587 |
-
msgstr ""
|
3588 |
-
|
3589 |
-
#: classes/Views/EmailNotifications.php:53
|
3590 |
-
msgid "Configure any type of email notification"
|
3591 |
-
msgstr ""
|
3592 |
-
|
3593 |
-
#: classes/Views/EmailNotifications.php:54
|
3594 |
-
msgid "Configure SMS messages for instant critical alerts"
|
3595 |
-
msgstr ""
|
3596 |
-
|
3597 |
-
#: classes/Views/EmailNotifications.php:55
|
3598 |
-
msgid "Receive notifications for when users login, change their password or change content"
|
3599 |
-
msgstr ""
|
3600 |
-
|
3601 |
-
#: classes/Views/EmailNotifications.php:56
|
3602 |
-
msgid "Get alerted of site changes like plugin installs, theme changes etc"
|
3603 |
-
msgstr ""
|
3604 |
-
|
3605 |
-
#: classes/Views/EmailNotifications.php:57
|
3606 |
-
msgid "Enable built-in security email notifications of suspicious user activity"
|
3607 |
-
msgstr ""
|
3608 |
-
|
3609 |
-
#: classes/Views/EmailNotifications.php:58
|
3610 |
-
msgid "Personalize all email and SMS templates"
|
3611 |
-
msgstr ""
|
3612 |
-
|
3613 |
-
#: classes/Views/EmailNotifications.php:59
|
3614 |
-
msgid "Use the trigger builder to configure any type of notification criteria!"
|
3615 |
-
msgstr ""
|
3616 |
-
|
3617 |
-
#: classes/Views/EmailNotifications.php:61
|
3618 |
-
msgid "Getting started is really easy. You can use one of the plugin’s built-in notifications or create your own using the easy to use trigger builder."
|
3619 |
-
msgstr ""
|
3620 |
-
|
3621 |
-
#: classes/Views/EmailNotifications.php:64
|
3622 |
-
msgid "Email and SMS notifications instantly alert you of important changes on your WordPress site."
|
3623 |
-
msgstr ""
|
3624 |
-
|
3625 |
-
#: classes/Views/EmailNotifications.php:68
|
3626 |
-
msgid "Easily enable any of the built-in security and user management notifications."
|
3627 |
-
msgstr ""
|
3628 |
-
|
3629 |
-
#: classes/Views/EmailNotifications.php:72
|
3630 |
-
msgid "Use the trigger builder to configure any type of email and SMS notification to get instantly alerted of site changes that are important to you and your business."
|
3631 |
-
msgstr ""
|
3632 |
-
|
3633 |
-
#: classes/Views/EmailNotifications.php:76
|
3634 |
-
msgid "All email and SMS templates are configurable, allowing you to personalize them."
|
3635 |
-
msgstr ""
|
3636 |
-
|
3637 |
-
#: classes/Views/ExternalDB.php:28
|
3638 |
-
msgid "External DB Extension"
|
3639 |
-
msgstr ""
|
3640 |
-
|
3641 |
-
#: classes/Views/ExternalDB.php:35
|
3642 |
-
msgid "Integrations ⇪"
|
3643 |
-
msgstr ""
|
3644 |
-
|
3645 |
-
#: classes/Views/ExternalDB.php:49
|
3646 |
-
msgid "Activity log database & integration tools"
|
3647 |
-
msgstr ""
|
3648 |
-
|
3649 |
-
#: classes/Views/ExternalDB.php:50
|
3650 |
-
msgid "There are several benefits to segregating the logs from the main site database, and to be able to mirror the logs to third party and centralized business solutions. Upgrade to premium and:"
|
3651 |
-
msgstr ""
|
3652 |
-
|
3653 |
-
#: classes/Views/ExternalDB.php:53
|
3654 |
-
msgid "Store the audit logs of your sites on an external database"
|
3655 |
-
msgstr ""
|
3656 |
-
|
3657 |
-
#: classes/Views/ExternalDB.php:54
|
3658 |
-
msgid "Configuring archiving and store older log data in a segregated database"
|
3659 |
-
msgstr ""
|
3660 |
-
|
3661 |
-
#: classes/Views/ExternalDB.php:55
|
3662 |
-
msgid "Mirror the logs to syslog, Slack, Papertrail and central business communication services"
|
3663 |
-
msgstr ""
|
3664 |
-
|
3665 |
-
#: classes/Views/ExternalDB.php:56
|
3666 |
-
msgid "Configure filters to filter what is mirrored and archived in the databases and services"
|
3667 |
-
msgstr ""
|
3668 |
-
|
3669 |
-
#: classes/Views/ExternalDB.php:61
|
3670 |
-
msgid "Easily configure integration and database connections thanks to a user friendly wizard."
|
3671 |
-
msgstr ""
|
3672 |
-
|
3673 |
-
#: classes/Views/ExternalDB.php:65
|
3674 |
-
msgid "Configure activity log filters for third party services connections."
|
3675 |
-
msgstr ""
|
3676 |
-
|
3677 |
-
#: classes/Views/ExternalDB.php:69
|
3678 |
-
msgid "Configure an unlimited number of connections to different databases and third party services."
|
3679 |
-
msgstr ""
|
3680 |
-
|
3681 |
-
#: classes/Views/Help.php:62, classes/Views/Help.php:113, extensions/settings-import-export/settings-import-export.php:70
|
3682 |
-
msgid "Help"
|
3683 |
-
msgstr ""
|
3684 |
-
|
3685 |
-
#: classes/Views/Help.php:71, classes/Views/Help.php:242, extensions/settings-import-export/settings-import-export.php:59, extensions/settings-import-export/settings-import-export.php:80
|
3686 |
-
msgid "Contact Us"
|
3687 |
-
msgstr ""
|
3688 |
-
|
3689 |
-
#: classes/Views/Help.php:77, classes/Views/Help.php:264
|
3690 |
-
msgid "System Info"
|
3691 |
-
msgstr ""
|
3692 |
-
|
3693 |
-
#: classes/Views/Help.php:127
|
3694 |
-
msgid "Help & Contact Us"
|
3695 |
-
msgstr ""
|
3696 |
-
|
3697 |
-
#: classes/Views/Help.php:187
|
3698 |
-
msgid "Getting Started"
|
3699 |
-
msgstr ""
|
3700 |
-
|
3701 |
-
#: classes/Views/Help.php:188
|
3702 |
-
msgid "Getting started with WP Activity Log is really easy; once the plugin is installed it will automatically keep a log of everything that is happening on your website and you do not need to do anything. Watch the video below for a quick overview of the plugin."
|
3703 |
-
msgstr ""
|
3704 |
-
|
3705 |
-
#: classes/Views/Help.php:192
|
3706 |
-
msgid "Plugin Support"
|
3707 |
-
msgstr ""
|
3708 |
-
|
3709 |
-
#: classes/Views/Help.php:194
|
3710 |
-
msgid "Have you encountered or noticed any issues while using WP Activity Log plugin?"
|
3711 |
-
msgstr ""
|
3712 |
-
|
3713 |
-
#: classes/Views/Help.php:195
|
3714 |
-
msgid "Or you want to report something to us? Click any of the options below to post on the plugin's forum or contact our support directly."
|
3715 |
-
msgstr ""
|
3716 |
-
|
3717 |
-
#: classes/Views/Help.php:197
|
3718 |
-
msgid "Free Support Forum"
|
3719 |
-
msgstr ""
|
3720 |
-
|
3721 |
-
#: classes/Views/Help.php:199
|
3722 |
-
msgid "Free Support Email"
|
3723 |
-
msgstr ""
|
3724 |
-
|
3725 |
-
#: classes/Views/Help.php:203
|
3726 |
-
msgid "Plugin Documentation"
|
3727 |
-
msgstr ""
|
3728 |
-
|
3729 |
-
#: classes/Views/Help.php:205
|
3730 |
-
msgid "For more technical information about the WP Activity Log plugin please visit the plugin’s knowledge base."
|
3731 |
-
msgstr ""
|
3732 |
-
|
3733 |
-
#: classes/Views/Help.php:206
|
3734 |
-
msgid "Refer to the list of WordPress security events for a complete list of Events and IDs that the plugin uses to keep a log of all the changes in the WordPress activity log."
|
3735 |
-
msgstr ""
|
3736 |
-
|
3737 |
-
#: classes/Views/Help.php:208
|
3738 |
-
msgid "Plugin Website"
|
3739 |
-
msgstr ""
|
3740 |
-
|
3741 |
-
#: classes/Views/Help.php:210
|
3742 |
-
msgid "Knowledge Base"
|
3743 |
-
msgstr ""
|
3744 |
-
|
3745 |
-
#: classes/Views/Help.php:212
|
3746 |
-
msgid "List of activity logs event IDs"
|
3747 |
-
msgstr ""
|
3748 |
-
|
3749 |
-
#: classes/Views/Help.php:216
|
3750 |
-
msgid "Rate WP Activity Log"
|
3751 |
-
msgstr ""
|
3752 |
-
|
3753 |
-
#: classes/Views/Help.php:218
|
3754 |
-
msgid "We work really hard to deliver a plugin that enables you to keep a record of all the changes that are happening on your WordPress."
|
3755 |
-
msgstr ""
|
3756 |
-
|
3757 |
-
#: classes/Views/Help.php:219
|
3758 |
-
msgid "It takes thousands of man-hours every year and endless amount of dedication to research, develop and maintain the free edition of WP Activity Log."
|
3759 |
-
msgstr ""
|
3760 |
-
|
3761 |
-
#: classes/Views/Help.php:220
|
3762 |
-
msgid "Therefore if you like what you see, and find WP Activity Log useful we ask you nothing more than to please rate our plugin."
|
3763 |
-
msgstr ""
|
3764 |
-
|
3765 |
-
#: classes/Views/Help.php:221
|
3766 |
-
msgid "We appreciate every star!"
|
3767 |
-
msgstr ""
|
3768 |
-
|
3769 |
-
#: classes/Views/Help.php:231
|
3770 |
-
msgid "Rate Plugin"
|
3771 |
-
msgstr ""
|
3772 |
-
|
3773 |
-
#: classes/Views/Help.php:282
|
3774 |
-
msgid "Enforce strong password policies on WordPress"
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
#: classes/Views/Help.php:288
|
3778 |
-
msgid "Automatically identify unauthorized file changes on WordPress"
|
3779 |
-
msgstr ""
|
3780 |
-
|
3781 |
-
#: classes/Views/Help.php:294
|
3782 |
-
msgid "Add an extra layer of security to your login pages with 2FA & require your users to use it."
|
3783 |
-
msgstr ""
|
3784 |
-
|
3785 |
-
#: classes/Views/Help.php:300
|
3786 |
-
msgid "See the child sites activity logs from the central MainWP dashboard"
|
3787 |
-
msgstr ""
|
3788 |
-
|
3789 |
-
#: classes/Views/Help.php:306
|
3790 |
-
msgid "Our other WordPress plugins"
|
3791 |
-
msgstr ""
|
3792 |
-
|
3793 |
-
#: classes/Views/Help.php:317
|
3794 |
-
msgid "LEARN MORE"
|
3795 |
-
msgstr ""
|
3796 |
-
|
3797 |
-
#: classes/Views/LogInUsers.php:28
|
3798 |
-
msgid "User Sessions Management Extension"
|
3799 |
-
msgstr ""
|
3800 |
-
|
3801 |
-
#: classes/Views/LogInUsers.php:35
|
3802 |
-
msgid "Logged In Users ⇪"
|
3803 |
-
msgstr ""
|
3804 |
-
|
3805 |
-
#: classes/Views/LogInUsers.php:49
|
3806 |
-
msgid "Real-Time Users Sessions Management"
|
3807 |
-
msgstr ""
|
3808 |
-
|
3809 |
-
#: classes/Views/LogInUsers.php:50
|
3810 |
-
msgid "Better manage your users’ logins and sessions. Upgrade to premium and:"
|
3811 |
-
msgstr ""
|
3812 |
-
|
3813 |
-
#: classes/Views/LogInUsers.php:54
|
3814 |
-
msgid "See who is logged in to your site"
|
3815 |
-
msgstr ""
|
3816 |
-
|
3817 |
-
#: classes/Views/LogInUsers.php:55
|
3818 |
-
msgid "When they logged in and from where"
|
3819 |
-
msgstr ""
|
3820 |
-
|
3821 |
-
#: classes/Views/LogInUsers.php:56
|
3822 |
-
msgid "The last change they have done in real-time"
|
3823 |
-
msgstr ""
|
3824 |
-
|
3825 |
-
#: classes/Views/LogInUsers.php:57
|
3826 |
-
msgid "Terminate any users’ session with a click of a button"
|
3827 |
-
msgstr ""
|
3828 |
-
|
3829 |
-
#: classes/Views/LogInUsers.php:58
|
3830 |
-
msgid "Limit or block multiple sessions for the same user"
|
3831 |
-
msgstr ""
|
3832 |
-
|
3833 |
-
#: classes/Views/LogInUsers.php:59
|
3834 |
-
msgid "Get alerted of multiple same user sessions"
|
3835 |
-
msgstr ""
|
3836 |
-
|
3837 |
-
#: classes/Views/LogInUsers.php:63
|
3838 |
-
msgid "See who is logged in to your WordPress site and multisite network in real-time."
|
3839 |
-
msgstr ""
|
3840 |
-
|
3841 |
-
#: classes/Views/LogInUsers.php:67
|
3842 |
-
msgid "Limit, manage and block multiple same user sessions easily."
|
3843 |
-
msgstr ""
|
3844 |
-
|
3845 |
-
#: classes/Views/Reports.php:28
|
3846 |
-
msgid "Reports Extension"
|
3847 |
-
msgstr ""
|
3848 |
-
|
3849 |
-
#: classes/Views/Reports.php:35
|
3850 |
-
msgid "Reports ⇪"
|
3851 |
-
msgstr ""
|
3852 |
-
|
3853 |
-
#: classes/Views/Reports.php:49
|
3854 |
-
msgid "Individual, Scheduled & Automated Reports"
|
3855 |
-
msgstr ""
|
3856 |
-
|
3857 |
-
#: classes/Views/Reports.php:50
|
3858 |
-
msgid "Many are not fans of reports, however reports are vital in business. With them you can make informed decisions that allow you to improve user productivity and the business. Upgrade to Premium so you can:"
|
3859 |
-
msgstr ""
|
3860 |
-
|
3861 |
-
#: classes/Views/Reports.php:53
|
3862 |
-
msgid "Generate any type of user and site (in multisite) activity report"
|
3863 |
-
msgstr ""
|
3864 |
-
|
3865 |
-
#: classes/Views/Reports.php:54
|
3866 |
-
msgid "Automate and schedule daily, weekly, monthly and quarterly reports"
|
3867 |
-
msgstr ""
|
3868 |
-
|
3869 |
-
#: classes/Views/Reports.php:55
|
3870 |
-
msgid "Received reports automatically via email"
|
3871 |
-
msgstr ""
|
3872 |
-
|
3873 |
-
#: classes/Views/Reports.php:56
|
3874 |
-
msgid "Create statistics reports about users’ views, logins, activity from IP addresses & more"
|
3875 |
-
msgstr ""
|
3876 |
-
|
3877 |
-
#: classes/Views/Reports.php:58
|
3878 |
-
msgid "Reports are vital to the success of your business and management of your site."
|
3879 |
-
msgstr ""
|
3880 |
-
|
3881 |
-
#: classes/Views/Reports.php:61
|
3882 |
-
msgid "Generate a HTML or CSV report."
|
3883 |
-
msgstr ""
|
3884 |
-
|
3885 |
-
#: classes/Views/Reports.php:65
|
3886 |
-
msgid "Easily configure a criteria for your reports."
|
3887 |
-
msgstr ""
|
3888 |
-
|
3889 |
-
#: classes/Views/Reports.php:69
|
3890 |
-
msgid "Schedule reports that are sent to you by email automatically."
|
3891 |
-
msgstr ""
|
3892 |
-
|
3893 |
-
#: classes/Views/Search.php:28
|
3894 |
-
msgid "Search Extension"
|
3895 |
-
msgstr ""
|
3896 |
-
|
3897 |
-
#: classes/Views/Search.php:35
|
3898 |
-
msgid "Search ⇪"
|
3899 |
-
msgstr ""
|
3900 |
-
|
3901 |
-
#: classes/Views/Search.php:49
|
3902 |
-
msgid "Search & Filters for the Activity Log"
|
3903 |
-
msgstr ""
|
3904 |
-
|
3905 |
-
#: classes/Views/Search.php:50
|
3906 |
-
msgid "You can find all the information you want in the activity log, if you know what you are looking for and have the right tools. Upgrade to premium so you can:"
|
3907 |
-
msgstr ""
|
3908 |
-
|
3909 |
-
#: classes/Views/Search.php:53
|
3910 |
-
msgid "Do text searches and use filters to fine tune the search results"
|
3911 |
-
msgstr ""
|
3912 |
-
|
3913 |
-
#: classes/Views/Search.php:54
|
3914 |
-
msgid "Easily find when and who did a specific change on your site"
|
3915 |
-
msgstr ""
|
3916 |
-
|
3917 |
-
#: classes/Views/Search.php:55
|
3918 |
-
msgid "Easily identify and track back suspicious user behaviour"
|
3919 |
-
msgstr ""
|
3920 |
-
|
3921 |
-
#: classes/Views/Search.php:56
|
3922 |
-
msgid "Search for the cause of a problem and ease troubleshooting"
|
3923 |
-
msgstr ""
|
3924 |
-
|
3925 |
-
#: classes/Views/Search.php:57
|
3926 |
-
msgid "Save search terms and filters for future use and improved productivity"
|
3927 |
-
msgstr ""
|
3928 |
-
|
3929 |
-
#: classes/Views/Search.php:62
|
3930 |
-
msgid "Use the text search to find a specific change."
|
3931 |
-
msgstr ""
|
3932 |
-
|
3933 |
-
#: classes/Views/Search.php:66
|
3934 |
-
msgid "Configure any filter you need to fine tune the search results and find what you are looking for with much less effort."
|
3935 |
-
msgstr ""
|
3936 |
-
|
3937 |
-
#: classes/Views/Search.php:70
|
3938 |
-
msgid "Save search terms and filters to run the searches again in the future with just a single click."
|
3939 |
-
msgstr ""
|
3940 |
-
|
3941 |
-
#: classes/Views/Settings.php:89
|
3942 |
-
msgid "General"
|
3943 |
-
msgstr ""
|
3944 |
-
|
3945 |
-
#: classes/Views/Settings.php:96
|
3946 |
-
msgid "Activity log viewer"
|
3947 |
-
msgstr ""
|
3948 |
-
|
3949 |
-
#: classes/Views/Settings.php:103
|
3950 |
-
msgid "File changes"
|
3951 |
-
msgstr ""
|
3952 |
-
|
3953 |
-
#: classes/Views/Settings.php:109
|
3954 |
-
msgid "Exclude objects"
|
3955 |
-
msgstr ""
|
3956 |
-
|
3957 |
-
#: classes/Views/Settings.php:116
|
3958 |
-
msgid "Advanced settings"
|
3959 |
-
msgstr ""
|
3960 |
-
|
3961 |
-
#: classes/Views/Settings.php:165, classes/Views/Settings.php:179, extensions/email-notifications/classes/SMSProviderSettings.php:143
|
3962 |
-
msgid "Settings"
|
3963 |
-
msgstr ""
|
3964 |
-
|
3965 |
-
#: classes/Views/Settings.php:206
|
3966 |
-
msgid "Current user is not allowed to save settings."
|
3967 |
-
msgstr ""
|
3968 |
-
|
3969 |
-
#: classes/Views/Settings.php:212
|
3970 |
-
msgid "Unknown settings tab."
|
3971 |
-
msgstr ""
|
3972 |
-
|
3973 |
-
#: classes/Views/Settings.php:224, classes/Views/Settings.php:1769, classes/Views/Settings.php:1792, classes/Views/SetupWizard.php:83, extensions/email-notifications/classes/Notifications.php:158, extensions/external-db/classes/Connections.php:847, extensions/external-db/classes/Connections.php:878, extensions/external-db/classes/Connections.php:901, extensions/external-db/classes/Connections.php:1014, extensions/external-db/classes/Mirroring.php:716, extensions/external-db/classes/Mirroring.php:782, extensions/external-db/classes/Settings.php:644, extensions/external-db/classes/Settings.php:817, extensions/external-db/classes/Settings.php:848
|
3974 |
-
msgid "Access Denied."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: classes/
|
3978 |
-
msgid "
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: classes/
|
3982 |
-
msgid "
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: classes/
|
3986 |
-
msgid "
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: classes/
|
3990 |
-
msgid "
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: classes/
|
3994 |
-
msgid "
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: classes/
|
3998 |
-
msgid "
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: classes/Views/
|
4002 |
-
msgid "
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: classes/Views/
|
4006 |
-
msgid "
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: classes/Views/
|
4010 |
-
msgid "
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
|
4014 |
-
|
4015 |
-
msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: classes/Views/
|
4019 |
-
msgid "
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: classes/Views/
|
4023 |
-
msgid "
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: classes/Views/
|
4027 |
-
msgid "
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: classes/Views/
|
4031 |
-
msgid "
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: classes/Views/
|
4035 |
-
msgid "
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: classes/Views/
|
4039 |
-
msgid "
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: classes/Views/
|
4043 |
-
msgid "
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: classes/Views/
|
4047 |
-
msgid "
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: classes/Views/
|
4051 |
-
msgid "
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: classes/Views/
|
4055 |
-
msgid "
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
|
4059 |
-
|
4060 |
-
msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: classes/Views/
|
4064 |
-
msgid "
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: classes/Views/
|
4068 |
-
msgid "
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: classes/Views/
|
4072 |
-
msgid "
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: classes/Views/
|
4076 |
-
msgid "
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: classes/Views/
|
4080 |
-
msgid "
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#: classes/Views/
|
4084 |
-
msgid "
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#: classes/Views/Settings.php:
|
4088 |
-
|
|
|
4089 |
msgstr ""
|
4090 |
|
4091 |
-
#: classes/Views/
|
4092 |
-
msgid "
|
4093 |
msgstr ""
|
4094 |
|
4095 |
-
#: classes/Views/Settings.php:
|
4096 |
-
|
|
|
|
|
|
|
|
|
|
|
4097 |
msgstr ""
|
4098 |
|
4099 |
-
#: classes/Views/Settings.php:
|
4100 |
-
|
|
|
|
|
|
|
|
|
|
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#: classes/Views/
|
4104 |
-
msgid "
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: classes/Views/
|
4108 |
-
msgid "
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: classes/Views/
|
4112 |
-
|
|
|
|
|
|
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: classes/Views/
|
4116 |
-
msgid "
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
|
4120 |
-
|
4121 |
-
msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: classes/Views/
|
4125 |
-
msgid "
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: classes/Views/
|
4129 |
-
|
|
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: classes/Views/
|
4133 |
-
msgid "
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: classes/Views/
|
4137 |
-
msgid "
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
|
4141 |
-
|
4142 |
-
msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#: classes/Views/
|
4146 |
-
msgid "
|
4147 |
msgstr ""
|
4148 |
|
4149 |
-
#: classes/Views/
|
4150 |
-
msgid "
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: classes/Views/
|
4154 |
-
|
|
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#: classes/Views/
|
4158 |
-
msgid "
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#: classes/Views/
|
4162 |
-
msgid "
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#: classes/Views/
|
4166 |
-
msgid "
|
4167 |
msgstr ""
|
4168 |
|
4169 |
-
#: classes/Views/
|
4170 |
-
msgid "
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#: classes/Views/
|
4174 |
-
msgid "
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: classes/Views/
|
4178 |
-
msgid "
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: classes/Views/
|
4182 |
-
msgid "
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: classes/Views/
|
4186 |
-
msgid "
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#: classes/Views/
|
4190 |
-
msgid "
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: classes/Views/
|
4194 |
-
msgid "
|
4195 |
msgstr ""
|
4196 |
|
4197 |
-
#: classes/Views/
|
4198 |
-
msgid "
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: classes/Views/
|
4202 |
-
msgid "
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: classes/Views/
|
4206 |
-
msgid "
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#: classes/Views/
|
4210 |
-
msgid "
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: classes/Views/
|
4214 |
-
msgid "
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: classes/Views/
|
4218 |
-
msgid "
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
#: classes/Views/
|
4222 |
-
msgid "
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: classes/Views/
|
4226 |
-
msgid "
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: classes/Views/
|
4230 |
-
msgid "
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: classes/Views/
|
4234 |
-
msgid "
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: classes/Views/
|
4238 |
-
msgid "
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: classes/Views/
|
4242 |
-
msgid "
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: classes/Views/
|
4246 |
-
msgid "
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
#: classes/Views/
|
4250 |
-
msgid "
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: classes/Views/
|
4254 |
-
msgid "
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: classes/Views/
|
4258 |
-
msgid "
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: classes/Views/
|
4262 |
-
msgid "
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: classes/Views/
|
4266 |
-
msgid "
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: classes/Views/
|
4270 |
-
msgid "
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
#: classes/Views/
|
4274 |
-
msgid "
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
#: classes/Views/
|
4278 |
-
msgid "
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
#: classes/Views/
|
4282 |
-
msgid "
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: classes/Views/
|
4286 |
-
msgid "
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: classes/Views/
|
4290 |
-
msgid "
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: classes/Views/
|
4294 |
-
msgid "
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: classes/Views/
|
4298 |
-
msgid "
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: classes/Views/
|
4302 |
-
msgid "
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: classes/Views/
|
4306 |
-
msgid "
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
#: classes/Views/
|
4310 |
-
msgid "
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
#: classes/Views/
|
4314 |
-
msgid "
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: classes/Views/
|
4318 |
-
msgid "
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#: classes/Views/
|
4322 |
-
msgid "
|
4323 |
msgstr ""
|
4324 |
|
4325 |
-
#: classes/Views/
|
4326 |
-
msgid "
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: classes/Views/
|
4330 |
-
msgid "
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: classes/Views/
|
4334 |
-
msgid "
|
4335 |
msgstr ""
|
4336 |
|
4337 |
-
#: classes/Views/
|
4338 |
-
msgid "
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: classes/Views/
|
4342 |
-
msgid "
|
4343 |
msgstr ""
|
4344 |
|
4345 |
-
#: classes/Views/
|
4346 |
-
msgid "
|
4347 |
msgstr ""
|
4348 |
|
4349 |
-
#: classes/Views/
|
4350 |
-
msgid "
|
4351 |
msgstr ""
|
4352 |
|
4353 |
-
#: classes/Views/
|
4354 |
-
msgid "
|
4355 |
msgstr ""
|
4356 |
|
4357 |
-
#: classes/Views/
|
4358 |
-
msgid "
|
4359 |
msgstr ""
|
4360 |
|
4361 |
-
#: classes/Views/
|
4362 |
-
msgid "
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: classes/Views/
|
4366 |
-
msgid "
|
4367 |
msgstr ""
|
4368 |
|
4369 |
-
#: classes/Views/
|
4370 |
-
msgid "
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: classes/Views/
|
4374 |
-
msgid "
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#: classes/Views/
|
4378 |
-
msgid "
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: classes/Views/
|
4382 |
-
msgid "
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: classes/Views/
|
4386 |
-
msgid "
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#: classes/Views/
|
4390 |
-
msgid "
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: classes/Views/
|
4394 |
-
msgid "
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: classes/Views/
|
4398 |
-
msgid "
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: classes/Views/
|
4402 |
-
msgid "
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: classes/Views/
|
4406 |
-
msgid "
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: classes/Views/
|
4410 |
-
msgid "
|
4411 |
msgstr ""
|
4412 |
|
4413 |
-
#: classes/Views/
|
4414 |
-
msgid "
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: classes/Views/
|
4418 |
-
msgid "
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: classes/Views/
|
4422 |
-
msgid "
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: classes/Views/
|
4426 |
-
msgid "
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: classes/Views/
|
4430 |
-
msgid "
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: classes/Views/
|
4434 |
-
msgid "
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: classes/Views/
|
4438 |
-
msgid "
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: classes/Views/
|
4442 |
-
msgid "
|
4443 |
msgstr ""
|
4444 |
|
4445 |
-
#: classes/Views/
|
4446 |
-
msgid "
|
4447 |
msgstr ""
|
4448 |
|
4449 |
-
#: classes/Views/
|
4450 |
-
msgid "
|
4451 |
msgstr ""
|
4452 |
|
4453 |
-
#: classes/Views/
|
4454 |
-
msgid "
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: classes/Views/
|
4458 |
-
msgid "
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: classes/Views/
|
4462 |
-
msgid "
|
4463 |
msgstr ""
|
4464 |
|
4465 |
-
#: classes/Views/
|
4466 |
-
msgid "
|
4467 |
msgstr ""
|
4468 |
|
4469 |
-
#: classes/Views/
|
4470 |
-
msgid "
|
4471 |
msgstr ""
|
4472 |
|
4473 |
-
#: classes/Views/
|
4474 |
-
msgid "
|
4475 |
msgstr ""
|
4476 |
|
4477 |
-
#: classes/Views/
|
4478 |
-
msgid "
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: classes/Views/
|
4482 |
-
msgid "
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: classes/Views/
|
4486 |
-
msgid "
|
4487 |
msgstr ""
|
4488 |
|
4489 |
-
#: classes/Views/
|
4490 |
-
msgid "
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#: classes/Views/
|
4494 |
-
msgid "
|
4495 |
msgstr ""
|
4496 |
|
4497 |
-
#: classes/Views/
|
4498 |
-
msgid "
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: classes/Views/
|
4502 |
-
msgid "
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: classes/Views/
|
4506 |
-
msgid "
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#: classes/Views/
|
4510 |
-
msgid "
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#: classes/Views/
|
4514 |
-
msgid "
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: classes/Views/
|
4518 |
-
msgid "
|
4519 |
msgstr ""
|
4520 |
|
4521 |
-
#: classes/Views/
|
4522 |
-
msgid "
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: classes/Views/Settings.php:
|
4526 |
-
msgid "
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: classes/Views/Settings.php:
|
4530 |
-
msgid "
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: classes/Views/Settings.php:
|
4534 |
-
msgid "
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: classes/Views/Settings.php:
|
4538 |
-
msgid "
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: classes/Views/Settings.php:
|
4542 |
-
msgid "
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: classes/Views/Settings.php:
|
4546 |
-
msgid "
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: classes/Views/Settings.php:
|
4550 |
-
msgid "
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: classes/Views/Settings.php:
|
4554 |
-
msgid "
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#: classes/Views/Settings.php:
|
4558 |
-
|
|
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: classes/Views/Settings.php:
|
4562 |
-
msgid "
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: classes/Views/Settings.php:
|
4566 |
-
msgid "
|
4567 |
msgstr ""
|
4568 |
|
4569 |
-
#: classes/Views/Settings.php:
|
4570 |
-
msgid "
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: classes/Views/Settings.php:
|
4574 |
-
msgid "
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: classes/Views/Settings.php:
|
4578 |
-
msgid "
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#: classes/Views/Settings.php:
|
4582 |
-
msgid "
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#: classes/Views/Settings.php:
|
4586 |
-
msgid "
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: classes/Views/
|
4590 |
-
msgid "
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
#: classes/Views/
|
4594 |
-
msgid "
|
4595 |
msgstr ""
|
4596 |
|
4597 |
-
#: classes/Views/
|
4598 |
-
|
|
|
4599 |
msgstr ""
|
4600 |
|
4601 |
-
#: classes/Views/
|
4602 |
-
msgid "
|
4603 |
msgstr ""
|
4604 |
|
4605 |
-
#: classes/Views/
|
4606 |
-
msgid "
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: classes/Views/
|
4610 |
-
msgid "
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: classes/Views/
|
4614 |
-
msgid "
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: classes/Views/
|
4618 |
-
msgid "
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: classes/Views/
|
4622 |
-
msgid "
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: classes/Views/
|
4626 |
-
msgid "
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: classes/Views/
|
4630 |
-
msgid "
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
|
4634 |
-
|
4635 |
-
msgid "You have reached an invaild step - %1$sreturn to the start of the wizard%2$s."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: classes/Views/
|
4639 |
-
msgid "
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: classes/Views/
|
4643 |
-
|
|
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: classes/Views/
|
4647 |
-
msgid "
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: classes/Views/
|
4651 |
-
msgid "
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: classes/Views/
|
4655 |
-
msgid "
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: classes/Views/
|
4659 |
-
msgid "
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: classes/Views/
|
4663 |
-
msgid "
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: classes/Views/
|
4667 |
-
msgid "
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: classes/Views/
|
4671 |
-
msgid "
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: classes/Views/
|
4675 |
-
msgid "
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: classes/Views/
|
4679 |
-
msgid "
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: classes/Views/
|
4683 |
-
msgid "
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: classes/Views/
|
4687 |
-
msgid "
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: classes/Views/
|
4691 |
-
msgid "
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: classes/Views/
|
4695 |
-
msgid "
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: classes/Views/
|
4699 |
-
msgid "
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: classes/Views/
|
4703 |
-
|
|
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: classes/Views/
|
4707 |
-
|
|
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: classes/Views/
|
4711 |
-
msgid "
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: classes/Views/
|
4715 |
-
msgid "
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: classes/Views/
|
4719 |
-
msgid "
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: classes/Views/
|
4723 |
-
|
|
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: classes/Views/
|
4727 |
-
msgid "
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: classes/Views/
|
4731 |
-
msgid "
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: classes/Views/
|
4735 |
-
msgid "
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: classes/Views/
|
4739 |
-
msgid "
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: classes/Views/
|
4743 |
-
msgid "
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: classes/Views/
|
4747 |
-
msgid "
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: classes/Views/
|
4751 |
-
msgid "
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: classes/Views/
|
4755 |
-
msgid "
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: classes/Views/
|
4759 |
-
msgid "
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: classes/Views/
|
4763 |
-
msgid "
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: classes/Views/
|
4767 |
-
msgid "
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: classes/Views/
|
4771 |
-
msgid "
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: classes/Views/
|
4775 |
-
|
|
|
|
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: classes/Views/
|
4779 |
-
msgid "
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: classes/Views/
|
4783 |
-
|
|
|
|
|
|
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: classes/Views/
|
4787 |
-
msgid "
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: classes/Views/
|
4791 |
-
msgid "
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: classes/Views/
|
4795 |
-
msgid "
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: classes/Views/
|
4799 |
-
msgid "
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
#: classes/Views/
|
4803 |
-
msgid "
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: classes/Views/
|
4807 |
-
msgid "
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: classes/Views/
|
4811 |
-
msgid "
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: classes/Views/
|
4815 |
-
msgid "
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: classes/Views/
|
4819 |
-
msgid "
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: classes/Views/
|
4823 |
-
msgid "
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: classes/Views/
|
4827 |
-
msgid "
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: classes/Views/
|
4831 |
-
msgid "
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: classes/Views/
|
4835 |
-
msgid "
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: classes/Views/
|
4839 |
-
msgid "
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: classes/Views/
|
4843 |
-
msgid "
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: classes/Views/
|
4847 |
-
msgid "
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: classes/Views/
|
4851 |
-
msgid "
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: classes/Views/
|
4855 |
-
msgid "
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
|
4859 |
-
|
4860 |
-
msgid "The %s log level has been successfully loaded and applied."
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: classes/Views/
|
4864 |
-
msgid "
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#: classes/Views/
|
4868 |
-
msgid "
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#: classes/Views/
|
4872 |
-
msgid "
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#: classes/Views/
|
4876 |
-
msgid "
|
4877 |
msgstr ""
|
4878 |
|
4879 |
-
#: classes/Views/
|
4880 |
-
msgid "
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#:
|
4884 |
-
msgid "
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#:
|
4888 |
-
msgid "
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
|
4892 |
-
|
4893 |
-
msgid "Logs management is available in the Professional and Business Plans. %s to configure and receive this feature."
|
4894 |
msgstr ""
|
4895 |
|
4896 |
-
#:
|
4897 |
-
msgid "
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#:
|
4901 |
-
msgid "
|
4902 |
msgstr ""
|
4903 |
|
4904 |
-
#:
|
4905 |
-
msgid "
|
4906 |
msgstr ""
|
4907 |
|
4908 |
-
#:
|
4909 |
-
msgid "
|
4910 |
msgstr ""
|
4911 |
|
4912 |
-
#:
|
4913 |
-
msgid "
|
4914 |
msgstr ""
|
4915 |
|
4916 |
-
#:
|
4917 |
-
msgid "
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#:
|
4921 |
-
msgid "
|
4922 |
msgstr ""
|
4923 |
|
4924 |
-
#:
|
4925 |
-
msgid "
|
4926 |
msgstr ""
|
4927 |
|
4928 |
-
#:
|
4929 |
-
msgid "
|
4930 |
msgstr ""
|
4931 |
|
4932 |
-
#:
|
4933 |
-
msgid "
|
4934 |
msgstr ""
|
4935 |
|
4936 |
-
#:
|
4937 |
-
msgid "
|
4938 |
msgstr ""
|
4939 |
|
4940 |
-
#:
|
4941 |
-
msgid "
|
4942 |
msgstr ""
|
4943 |
|
4944 |
-
#:
|
4945 |
-
msgid "
|
4946 |
msgstr ""
|
4947 |
|
4948 |
-
#:
|
4949 |
-
msgid "
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#:
|
4953 |
-
msgid "
|
4954 |
msgstr ""
|
4955 |
|
4956 |
-
#:
|
4957 |
-
msgid "
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#:
|
4961 |
-
msgid "
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#:
|
4965 |
-
msgid "
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#:
|
4969 |
-
msgid "
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#:
|
4973 |
-
msgid "
|
4974 |
msgstr ""
|
4975 |
|
4976 |
-
#:
|
4977 |
-
msgid "
|
4978 |
msgstr ""
|
4979 |
|
4980 |
-
#:
|
4981 |
-
msgid "
|
4982 |
msgstr ""
|
4983 |
|
4984 |
-
#:
|
4985 |
-
msgid "
|
4986 |
msgstr ""
|
4987 |
|
4988 |
-
#:
|
4989 |
-
msgid "
|
4990 |
msgstr ""
|
4991 |
|
4992 |
-
#:
|
4993 |
-
msgid "
|
4994 |
msgstr ""
|
4995 |
|
4996 |
-
#:
|
4997 |
-
msgid "
|
4998 |
msgstr ""
|
4999 |
|
5000 |
-
#:
|
5001 |
-
msgid "
|
5002 |
msgstr ""
|
5003 |
|
5004 |
-
#:
|
5005 |
-
msgid "
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#:
|
5009 |
-
msgid "
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#:
|
5013 |
-
msgid "
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#:
|
5017 |
-
msgid "
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#:
|
5021 |
-
msgid "
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#:
|
5025 |
-
msgid "
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#:
|
5029 |
-
msgid "
|
5030 |
msgstr ""
|
5031 |
|
5032 |
-
#:
|
5033 |
-
msgid "
|
5034 |
msgstr ""
|
5035 |
|
5036 |
-
#:
|
5037 |
-
msgid "
|
5038 |
msgstr ""
|
5039 |
|
5040 |
-
#:
|
5041 |
-
msgid "
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
|
5045 |
-
|
5046 |
-
msgid "Click the %1$sSearch%2$s button to apply the filters. Click the %1$sClear Search Results%2$s button to reset the search and filters."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#:
|
5050 |
-
msgid "
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#:
|
5054 |
-
msgid "
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#:
|
5058 |
-
msgid "
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#:
|
5062 |
-
msgid "
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#:
|
5066 |
-
msgid "
|
5067 |
msgstr ""
|
5068 |
|
5069 |
-
#:
|
5070 |
-
msgid "
|
5071 |
msgstr ""
|
5072 |
|
5073 |
-
#:
|
5074 |
-
msgid "
|
5075 |
msgstr ""
|
5076 |
|
5077 |
-
#:
|
5078 |
-
msgid "
|
5079 |
msgstr ""
|
5080 |
|
5081 |
-
#:
|
5082 |
-
msgid "
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#:
|
5086 |
-
msgid "
|
5087 |
msgstr ""
|
5088 |
|
5089 |
-
#:
|
5090 |
-
msgid "
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#:
|
5094 |
-
msgid "
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#:
|
5098 |
-
msgid "The
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#:
|
5102 |
-
msgid "
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#:
|
5106 |
-
msgid "
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#:
|
5110 |
-
msgid "
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#:
|
5114 |
-
msgid "
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#:
|
5118 |
-
msgid "
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#:
|
5122 |
-
msgid "
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#:
|
5126 |
-
msgid "
|
5127 |
msgstr ""
|
5128 |
|
5129 |
-
#:
|
5130 |
-
msgid "
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
|
5134 |
-
|
5135 |
-
msgid "Settings import/export is available in the Professional and Business Plans. %s to configure and receive this feature."
|
5136 |
msgstr ""
|
5137 |
|
5138 |
-
#:
|
5139 |
-
msgid "
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#:
|
5143 |
-
msgid "
|
5144 |
msgstr ""
|
5145 |
|
5146 |
-
#:
|
5147 |
-
msgid "
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#:
|
5151 |
-
msgid "
|
5152 |
msgstr ""
|
5153 |
|
5154 |
-
#:
|
5155 |
-
msgid "
|
5156 |
msgstr ""
|
5157 |
|
5158 |
-
#:
|
5159 |
-
msgid "
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#:
|
5163 |
-
msgid "
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#:
|
5167 |
-
msgid "
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#:
|
5171 |
-
msgid "
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#:
|
5175 |
-
msgid "
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#:
|
5179 |
-
msgid "
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#:
|
5183 |
-
msgid "
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: classes/Views/
|
5187 |
-
msgid "
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: classes/Views/
|
5191 |
-
msgid "
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: classes/Views/
|
5195 |
-
|
|
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: classes/Views/
|
5199 |
-
msgid "
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#:
|
5203 |
-
msgid "
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#:
|
5207 |
-
msgid "
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#:
|
5211 |
-
msgid "
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#:
|
5215 |
-
msgid "
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
|
5219 |
-
|
5220 |
-
#. translators: Twilio settings hyperlink.
|
5221 |
-
#. translators: Twilio settings hyperlink.
|
5222 |
-
#. translators: Twilio settings hyperlink.
|
5223 |
-
#. translators: Twilio settings hyperlink.
|
5224 |
-
#. translators: Twilio settings hyperlink.
|
5225 |
-
#. translators: Twilio settings hyperlink.
|
5226 |
-
#. translators: Twilio settings hyperlink.
|
5227 |
-
#: extensions/email-notifications/classes/AddNotification.php:275, extensions/email-notifications/classes/EditNotification.php:324, extensions/email-notifications/classes/Notifications.php:896, extensions/email-notifications/classes/Notifications.php:1010, extensions/email-notifications/classes/Notifications.php:1335, extensions/email-notifications/classes/Notifications.php:1499, extensions/email-notifications/classes/Notifications.php:1593, extensions/email-notifications/classes/Notifications.php:1759, extensions/email-notifications/classes/SMSProviderSettings.php:237
|
5228 |
-
msgid "Click %s to configure Twilio integration for SMS notifications."
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#:
|
5232 |
-
msgid "
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
|
5236 |
-
|
5237 |
-
#: extensions/email-notifications/classes/AddNotification.php:283, extensions/email-notifications/classes/EditNotification.php:332
|
5238 |
-
msgid "Trigger groups documentation"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#:
|
5242 |
-
msgid "
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#:
|
5246 |
-
|
|
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#:
|
5250 |
-
msgid "
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#:
|
5254 |
-
msgid "
|
5255 |
msgstr ""
|
5256 |
|
5257 |
-
#:
|
5258 |
-
msgid "
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#:
|
5262 |
-
msgid "
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#:
|
5266 |
-
msgid "
|
5267 |
msgstr ""
|
5268 |
|
5269 |
-
#:
|
5270 |
-
msgid "
|
5271 |
msgstr ""
|
5272 |
|
5273 |
-
#:
|
5274 |
-
msgid "
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
|
5278 |
-
#:
|
5279 |
-
|
|
|
|
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#:
|
5283 |
-
msgid "
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#:
|
5287 |
-
msgid "
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#:
|
5291 |
-
msgid "
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#:
|
5295 |
-
msgid "
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#:
|
5299 |
-
|
|
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#:
|
5303 |
-
msgid "
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#:
|
5307 |
-
msgid "
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#:
|
5311 |
-
msgid "
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#:
|
5315 |
-
msgid "
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#:
|
5319 |
-
msgid "
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#:
|
5323 |
-
msgid "
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#:
|
5327 |
-
msgid "
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#:
|
5331 |
-
msgid "
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#:
|
5335 |
-
msgid "
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
#:
|
5339 |
-
msgid "
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#:
|
5343 |
-
msgid "
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#:
|
5347 |
-
msgid "
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#:
|
5351 |
-
msgid "
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#:
|
5355 |
-
msgid "
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#:
|
5359 |
-
msgid "
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#:
|
5363 |
-
msgid "
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#:
|
5367 |
-
msgid "
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#:
|
5371 |
-
msgid "
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#:
|
5375 |
-
msgid "
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#:
|
5379 |
-
msgid "
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#:
|
5383 |
-
msgid "
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#:
|
5387 |
-
msgid "
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#:
|
5391 |
-
msgid "
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#:
|
5395 |
-
msgid "
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#:
|
5399 |
-
msgid "
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#:
|
5403 |
-
msgid "
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#:
|
5407 |
-
msgid "
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#:
|
5411 |
-
msgid "
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#:
|
5415 |
-
msgid "
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#:
|
5419 |
-
msgid "
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#:
|
5423 |
-
msgid "
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#:
|
5427 |
-
msgid "
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#:
|
5431 |
-
msgid "
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#:
|
5435 |
-
msgid "
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#:
|
5439 |
-
msgid "
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#:
|
5443 |
-
msgid "
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#:
|
5447 |
-
msgid "
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#:
|
5451 |
-
|
|
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#:
|
5455 |
-
msgid "
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#:
|
5459 |
-
msgid "
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#:
|
5463 |
-
msgid "User
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#:
|
5467 |
-
msgid "User
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#:
|
5471 |
-
msgid "
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#:
|
5475 |
-
msgid "
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#:
|
5479 |
-
msgid "
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#:
|
5483 |
-
msgid "User
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#:
|
5487 |
-
msgid "
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#:
|
5491 |
-
msgid "
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#:
|
5495 |
-
msgid "
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#:
|
5499 |
-
msgid "
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#:
|
5503 |
-
|
|
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#:
|
5507 |
-
msgid "
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#:
|
5511 |
-
msgid "
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#:
|
5515 |
-
msgid "
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
|
5519 |
-
|
5520 |
-
msgid "was %d login"
|
5521 |
-
msgid_plural "were %d logins"
|
5522 |
-
msgstr[0] ""
|
5523 |
-
msgstr[1] ""
|
5524 |
-
|
5525 |
-
#. translators: a number that is total count of unique users in a login group.
|
5526 |
-
#: extensions/email-notifications/classes/DailyNotification.php:349
|
5527 |
-
msgid "%d unique user"
|
5528 |
-
msgid_plural "%d unique users"
|
5529 |
-
msgstr[0] ""
|
5530 |
-
msgstr[1] ""
|
5531 |
-
|
5532 |
-
#. translators: 1 - number of logins. 2 - total unique users
|
5533 |
-
#: extensions/email-notifications/classes/DailyNotification.php:356
|
5534 |
-
msgid "There %1$s on your site today from %2$s. Below is a list of the users and the IP addresses they logged in from:"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#:
|
5538 |
-
msgid "
|
5539 |
msgstr ""
|
5540 |
|
5541 |
-
#:
|
5542 |
-
msgid "
|
5543 |
msgstr ""
|
5544 |
|
5545 |
-
#:
|
5546 |
-
msgid "
|
5547 |
msgstr ""
|
5548 |
|
5549 |
-
#:
|
5550 |
-
msgid "
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#:
|
5554 |
-
msgid "
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#:
|
5558 |
-
msgid "
|
5559 |
msgstr ""
|
5560 |
|
5561 |
-
#:
|
5562 |
-
msgid "
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#:
|
5566 |
-
msgid "
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#:
|
5570 |
-
msgid "
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#:
|
5574 |
-
msgid "
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#:
|
5578 |
-
msgid "
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#:
|
5582 |
-
msgid "
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#:
|
5586 |
-
msgid "
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#:
|
5590 |
-
msgid "
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#:
|
5594 |
-
msgid "
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#:
|
5598 |
-
|
|
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#:
|
5602 |
-
msgid "
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#:
|
5606 |
-
msgid "
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#:
|
5610 |
-
msgid "
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#:
|
5614 |
-
msgid "
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#:
|
5618 |
-
msgid "
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#:
|
5622 |
-
msgid "
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#:
|
5626 |
-
msgid "
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#:
|
5630 |
-
msgid "
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#:
|
5634 |
-
msgid "
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#:
|
5638 |
-
msgid "
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#:
|
5642 |
-
msgid "
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#:
|
5646 |
-
msgid "
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
#:
|
5650 |
-
msgid "
|
5651 |
msgstr ""
|
5652 |
|
5653 |
-
#:
|
5654 |
-
msgid "
|
5655 |
msgstr ""
|
5656 |
|
5657 |
-
#:
|
5658 |
-
msgid "
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#:
|
5662 |
-
msgid "
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#:
|
5666 |
-
msgid "
|
5667 |
msgstr ""
|
5668 |
|
5669 |
-
|
5670 |
-
|
5671 |
-
msgid "Tick the check box and specify an email address or username to enable a notification. You can specify a phone number to send a SMS notification as well (%s). Click the Save Notifications button to save the changes."
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#:
|
5675 |
-
msgid "
|
5676 |
msgstr ""
|
5677 |
|
5678 |
-
|
5679 |
-
|
5680 |
-
msgid "You can create your own notification criteria in the %s tab."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#:
|
5684 |
-
msgid "
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#:
|
5688 |
-
msgid "
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#:
|
5692 |
-
msgid "
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#:
|
5696 |
-
msgid "
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#:
|
5700 |
-
msgid "
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#:
|
5704 |
-
msgid "
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#:
|
5708 |
-
msgid "
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#:
|
5712 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#:
|
5716 |
-
msgid "
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#:
|
5720 |
-
msgid "
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#:
|
5724 |
-
msgid "
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#:
|
5728 |
-
msgid "
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#:
|
5732 |
-
msgid "
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#:
|
5736 |
-
msgid "
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#:
|
5740 |
-
msgid "
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#:
|
5744 |
-
msgid "
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#:
|
5748 |
-
msgid "
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#:
|
5752 |
-
msgid "
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#:
|
5756 |
-
msgid "
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#:
|
5760 |
-
msgid "
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#:
|
5764 |
-
msgid "
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#:
|
5768 |
-
msgid "
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#:
|
5772 |
-
msgid "
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#:
|
5776 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#:
|
5780 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#:
|
5784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#:
|
5788 |
-
msgid "
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#:
|
5792 |
-
msgid "
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#:
|
5796 |
-
msgid "User
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#:
|
5800 |
-
msgid "
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#:
|
5804 |
-
msgid "User
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#:
|
5808 |
-
msgid "
|
5809 |
msgstr ""
|
5810 |
|
5811 |
-
#:
|
5812 |
-
msgid "User
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#:
|
5816 |
-
msgid "
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#:
|
5820 |
-
msgid "User
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#:
|
5824 |
-
msgid "
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#:
|
5828 |
-
msgid "
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#:
|
5832 |
-
msgid "
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#:
|
5836 |
-
msgid "
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#:
|
5840 |
-
msgid "
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#:
|
5844 |
-
msgid "User
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#:
|
5848 |
-
msgid "
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#:
|
5852 |
-
msgid "
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#:
|
5856 |
-
msgid "
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#:
|
5860 |
-
msgid "
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#:
|
5864 |
-
msgid "
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#:
|
5868 |
-
msgid "
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#:
|
5872 |
-
msgid "
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#:
|
5876 |
-
msgid "
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#:
|
5880 |
-
msgid "
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
|
5884 |
-
|
5885 |
-
msgid "Use the trigger builder to build any type of criteria that triggers email and / or SMS notifications. Refer to the %s for more detailed information."
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#:
|
5889 |
-
msgid "
|
5890 |
msgstr ""
|
5891 |
|
5892 |
-
#:
|
5893 |
-
msgid "
|
5894 |
msgstr ""
|
5895 |
|
5896 |
-
#:
|
5897 |
-
msgid "
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#:
|
5901 |
-
msgid "
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#:
|
5905 |
-
msgid "
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
#:
|
5909 |
-
msgid "
|
5910 |
msgstr ""
|
5911 |
|
5912 |
-
#:
|
5913 |
-
msgid "
|
5914 |
msgstr ""
|
5915 |
|
5916 |
-
#:
|
5917 |
-
msgid "
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#:
|
5921 |
-
msgid "
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#:
|
5925 |
-
msgid "
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#:
|
5929 |
-
msgid "
|
5930 |
msgstr ""
|
5931 |
|
5932 |
-
#:
|
5933 |
-
msgid "
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#:
|
5937 |
-
msgid "
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#:
|
5941 |
-
msgid "
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#:
|
5945 |
-
msgid "
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#:
|
5949 |
-
msgid "
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#:
|
5953 |
-
msgid "
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#:
|
5957 |
-
msgid "
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#:
|
5961 |
-
msgid "
|
5962 |
msgstr ""
|
5963 |
|
5964 |
-
#:
|
5965 |
-
msgid "
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#:
|
5969 |
-
msgid "
|
5970 |
msgstr ""
|
5971 |
|
5972 |
-
#:
|
5973 |
-
msgid "
|
5974 |
msgstr ""
|
5975 |
|
5976 |
-
#:
|
5977 |
-
msgid "
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#:
|
5981 |
-
msgid "
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#:
|
5985 |
-
msgid "
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#:
|
5989 |
-
msgid "
|
5990 |
msgstr ""
|
5991 |
|
5992 |
-
#:
|
5993 |
-
msgid "
|
5994 |
msgstr ""
|
5995 |
|
5996 |
-
#:
|
5997 |
-
msgid "
|
5998 |
msgstr ""
|
5999 |
|
6000 |
-
#:
|
6001 |
-
msgid "
|
6002 |
msgstr ""
|
6003 |
|
6004 |
-
|
6005 |
-
|
6006 |
-
msgid "The URL shortener works for URLs in the {message} variable and will not shorten the URL of the website in the variable {site}. Shorten all URLs in the message using the %s."
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#:
|
6010 |
-
msgid "
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#:
|
6014 |
-
msgid "
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#:
|
6018 |
-
msgid "
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#:
|
6022 |
-
msgid "
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#:
|
6026 |
-
msgid "
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#:
|
6030 |
-
msgid "
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#:
|
6034 |
-
msgid "
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#:
|
6038 |
-
msgid "
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#:
|
6042 |
-
msgid "
|
6043 |
msgstr ""
|
6044 |
|
6045 |
-
|
6046 |
-
|
6047 |
-
msgid "There are some problems sending the test email / SMS. Please contact us on %s to assist you with this problem."
|
6048 |
msgstr ""
|
6049 |
|
6050 |
-
#:
|
6051 |
-
msgid "
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#:
|
6055 |
-
msgid "
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#:
|
6059 |
-
msgid "
|
6060 |
msgstr ""
|
6061 |
|
6062 |
-
#:
|
6063 |
-
msgid "
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#:
|
6067 |
-
msgid "
|
6068 |
msgstr ""
|
6069 |
|
6070 |
-
#:
|
6071 |
-
msgid "
|
6072 |
msgstr ""
|
6073 |
|
6074 |
-
#:
|
6075 |
-
|
|
|
6076 |
msgstr ""
|
6077 |
|
6078 |
-
#:
|
6079 |
-
msgid "
|
6080 |
msgstr ""
|
6081 |
|
6082 |
-
#:
|
6083 |
-
msgid "
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#:
|
6087 |
-
msgid "
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#:
|
6091 |
-
msgid "
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#:
|
6095 |
-
msgid "
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
|
6099 |
-
|
6100 |
-
msgid "SMS notifications are available in the Professional and Business Plans. %s to configure and receive SMS notifications."
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#:
|
6104 |
-
msgid "
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#:
|
6108 |
-
msgid "
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
|
6112 |
-
|
6113 |
-
#: extensions/email-notifications/classes/SMSProviderSettings.php:185, extensions/email-notifications/classes/SMSProviderSettings.php:200
|
6114 |
-
msgid "To view API credentials visit %s"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#:
|
6118 |
-
msgid "
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#:
|
6122 |
-
msgid "
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#:
|
6126 |
-
msgid "
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#:
|
6130 |
-
msgid "
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#:
|
6134 |
-
msgid "
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#:
|
6138 |
-
msgid "
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#:
|
6142 |
-
msgid "
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#:
|
6146 |
-
msgid "
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#:
|
6150 |
-
msgid "
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#:
|
6154 |
-
msgid "
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#:
|
6158 |
-
msgid "
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
|
6162 |
-
|
6163 |
-
msgid "In this section you can %s. Database connections can be used as an external database and for activity log archiving. Third party services connections can be used to mirror the activity logs into them. You can have multiple connections. Please note that connections that are in use cannot be deleted."
|
6164 |
msgstr ""
|
6165 |
|
6166 |
-
#:
|
6167 |
-
msgid "
|
6168 |
msgstr ""
|
6169 |
|
6170 |
-
#:
|
6171 |
-
msgid "
|
6172 |
msgstr ""
|
6173 |
|
6174 |
-
#:
|
6175 |
-
msgid "
|
6176 |
msgstr ""
|
6177 |
|
6178 |
-
#:
|
6179 |
-
msgid "
|
6180 |
msgstr ""
|
6181 |
|
6182 |
-
#:
|
6183 |
-
msgid "
|
6184 |
msgstr ""
|
6185 |
|
6186 |
-
#:
|
6187 |
-
msgid "
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#:
|
6191 |
-
msgid "
|
6192 |
msgstr ""
|
6193 |
|
6194 |
-
#:
|
6195 |
-
msgid "
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#:
|
6199 |
-
msgid "
|
6200 |
msgstr ""
|
6201 |
|
6202 |
-
#:
|
6203 |
-
msgid "
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#:
|
6207 |
-
msgid "
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#:
|
6211 |
-
msgid "
|
6212 |
msgstr ""
|
6213 |
|
6214 |
-
#:
|
6215 |
-
msgid "
|
6216 |
msgstr ""
|
6217 |
|
6218 |
-
#:
|
6219 |
-
msgid "
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#:
|
6223 |
-
msgid "
|
6224 |
msgstr ""
|
6225 |
|
6226 |
-
#:
|
6227 |
-
msgid "
|
6228 |
msgstr ""
|
6229 |
|
6230 |
-
#:
|
6231 |
-
msgid "
|
6232 |
msgstr ""
|
6233 |
|
6234 |
-
#:
|
6235 |
-
msgid "
|
6236 |
msgstr ""
|
6237 |
|
6238 |
-
#:
|
6239 |
-
msgid "
|
6240 |
msgstr ""
|
6241 |
|
6242 |
-
#:
|
6243 |
-
msgid "
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#:
|
6247 |
-
msgid "
|
6248 |
msgstr ""
|
6249 |
|
6250 |
-
#:
|
6251 |
-
msgid "
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#:
|
6255 |
-
msgid "
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#:
|
6259 |
-
msgid "
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#:
|
6263 |
-
msgid "
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#:
|
6267 |
-
|
|
|
|
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#:
|
6271 |
-
msgid "
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#:
|
6275 |
-
msgid "
|
6276 |
msgstr ""
|
6277 |
|
6278 |
-
#:
|
6279 |
-
msgid "
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#:
|
6283 |
-
msgid "
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#:
|
6287 |
-
msgid "
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#:
|
6291 |
-
msgid "
|
6292 |
msgstr ""
|
6293 |
|
6294 |
-
#:
|
6295 |
-
msgid "
|
6296 |
msgstr ""
|
6297 |
|
6298 |
-
#:
|
6299 |
-
msgid "
|
6300 |
msgstr ""
|
6301 |
|
6302 |
-
#:
|
6303 |
-
msgid "
|
6304 |
msgstr ""
|
6305 |
|
6306 |
-
#:
|
6307 |
-
msgid "
|
6308 |
msgstr ""
|
6309 |
|
6310 |
-
#:
|
6311 |
-
msgid "
|
6312 |
msgstr ""
|
6313 |
|
6314 |
-
#:
|
6315 |
-
msgid "
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#:
|
6319 |
-
msgid "
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#:
|
6323 |
-
msgid "
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#:
|
6327 |
-
msgid "
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
#:
|
6331 |
-
msgid "
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#:
|
6335 |
-
msgid "
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#:
|
6339 |
-
msgid "
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#:
|
6343 |
-
msgid "
|
6344 |
msgstr ""
|
6345 |
|
6346 |
-
#:
|
6347 |
-
msgid "
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#:
|
6351 |
-
msgid "
|
6352 |
msgstr ""
|
6353 |
|
6354 |
-
#:
|
6355 |
-
msgid "
|
6356 |
msgstr ""
|
6357 |
|
6358 |
-
#:
|
6359 |
-
msgid "
|
6360 |
msgstr ""
|
6361 |
|
6362 |
-
#:
|
6363 |
-
msgid "
|
6364 |
msgstr ""
|
6365 |
|
6366 |
-
#:
|
6367 |
-
msgid "
|
6368 |
msgstr ""
|
6369 |
|
6370 |
-
#:
|
6371 |
-
msgid "
|
6372 |
msgstr ""
|
6373 |
|
6374 |
-
#:
|
6375 |
-
msgid "
|
6376 |
msgstr ""
|
6377 |
|
6378 |
-
#:
|
6379 |
-
msgid "
|
6380 |
msgstr ""
|
6381 |
|
6382 |
-
#:
|
6383 |
-
msgid "
|
6384 |
msgstr ""
|
6385 |
|
6386 |
-
#:
|
6387 |
-
msgid "
|
6388 |
msgstr ""
|
6389 |
|
6390 |
-
#:
|
6391 |
-
msgid "
|
6392 |
msgstr ""
|
6393 |
|
6394 |
-
#:
|
6395 |
-
msgid "
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#:
|
6399 |
-
msgid "
|
6400 |
msgstr ""
|
6401 |
|
6402 |
-
#:
|
6403 |
-
msgid "
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#:
|
6407 |
-
msgid "
|
6408 |
msgstr ""
|
6409 |
|
6410 |
-
#:
|
6411 |
-
msgid "
|
6412 |
msgstr ""
|
6413 |
|
6414 |
-
|
6415 |
-
|
6416 |
-
#: extensions/external-db/classes/ExternalStorageTab.php:65, extensions/external-db/classes/Settings.php:317
|
6417 |
-
msgid "Read more on %1$s."
|
6418 |
msgstr ""
|
6419 |
|
6420 |
-
#:
|
6421 |
-
msgid "
|
6422 |
msgstr ""
|
6423 |
|
6424 |
-
#:
|
6425 |
-
msgid "
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#:
|
6429 |
-
msgid "
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#:
|
6433 |
-
msgid "
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#:
|
6437 |
-
msgid "
|
6438 |
msgstr ""
|
6439 |
|
6440 |
-
#:
|
6441 |
-
msgid "
|
6442 |
msgstr ""
|
6443 |
|
6444 |
-
#:
|
6445 |
-
msgid "
|
6446 |
msgstr ""
|
6447 |
|
6448 |
-
#:
|
6449 |
-
msgid "
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#:
|
6453 |
-
msgid "
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#:
|
6457 |
-
msgid "
|
6458 |
msgstr ""
|
6459 |
|
6460 |
-
#:
|
6461 |
-
msgid "
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#:
|
6465 |
-
msgid "
|
6466 |
msgstr ""
|
6467 |
|
6468 |
-
#:
|
6469 |
-
msgid "
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#:
|
6473 |
-
msgid "
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#:
|
6477 |
-
msgid "
|
6478 |
msgstr ""
|
6479 |
|
6480 |
-
#:
|
6481 |
-
msgid "
|
6482 |
msgstr ""
|
6483 |
|
6484 |
-
#:
|
6485 |
-
msgid "
|
6486 |
msgstr ""
|
6487 |
|
6488 |
-
#:
|
6489 |
-
msgid "
|
6490 |
msgstr ""
|
6491 |
|
6492 |
-
#:
|
6493 |
-
msgid "
|
6494 |
msgstr ""
|
6495 |
|
6496 |
-
#:
|
6497 |
-
msgid "
|
6498 |
msgstr ""
|
6499 |
|
6500 |
-
#:
|
6501 |
-
msgid "
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#:
|
6505 |
-
msgid "
|
6506 |
msgstr ""
|
6507 |
|
6508 |
-
#:
|
6509 |
-
msgid "
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#:
|
6513 |
-
msgid "
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#:
|
6517 |
-
msgid "
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#:
|
6521 |
-
msgid "
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#:
|
6525 |
-
msgid "
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#:
|
6529 |
-
msgid "
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#:
|
6533 |
-
msgid "
|
6534 |
msgstr ""
|
6535 |
|
6536 |
-
#:
|
6537 |
-
msgid "
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#:
|
6541 |
-
msgid "
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#:
|
6545 |
-
msgid "
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
|
6549 |
-
|
6550 |
-
msgid "In this section you can configure the mirroring of the WordPress activity log to third party services. You can mirror the activity logs to multiple third party services at the same time. For more information on mirroring and the supported third party services refer to %s."
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#:
|
6554 |
-
msgid "
|
6555 |
msgstr ""
|
6556 |
|
6557 |
-
#:
|
6558 |
-
msgid "
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#:
|
6562 |
-
msgid "
|
6563 |
msgstr ""
|
6564 |
|
6565 |
-
#:
|
6566 |
-
msgid "
|
6567 |
msgstr ""
|
6568 |
|
6569 |
-
#:
|
6570 |
-
msgid "
|
6571 |
msgstr ""
|
6572 |
|
6573 |
-
#:
|
6574 |
-
msgid "
|
6575 |
msgstr ""
|
6576 |
|
6577 |
-
#:
|
6578 |
-
msgid "
|
6579 |
msgstr ""
|
6580 |
|
6581 |
-
#:
|
6582 |
-
msgid "
|
6583 |
msgstr ""
|
6584 |
|
6585 |
-
#:
|
6586 |
-
msgid "
|
6587 |
msgstr ""
|
6588 |
|
6589 |
-
#:
|
6590 |
-
msgid "
|
6591 |
msgstr ""
|
6592 |
|
6593 |
-
#:
|
6594 |
-
msgid "
|
6595 |
msgstr ""
|
6596 |
|
6597 |
-
#:
|
6598 |
-
msgid "
|
6599 |
msgstr ""
|
6600 |
|
6601 |
-
#:
|
6602 |
-
msgid "
|
6603 |
msgstr ""
|
6604 |
|
6605 |
-
#:
|
6606 |
-
msgid "
|
6607 |
msgstr ""
|
6608 |
|
6609 |
-
#:
|
6610 |
-
msgid "
|
6611 |
msgstr ""
|
6612 |
|
6613 |
-
#:
|
6614 |
-
msgid "
|
6615 |
msgstr ""
|
6616 |
|
6617 |
-
#:
|
6618 |
-
msgid "
|
6619 |
msgstr ""
|
6620 |
|
6621 |
-
#:
|
6622 |
-
msgid "
|
6623 |
msgstr ""
|
6624 |
|
6625 |
-
#:
|
6626 |
-
msgid "
|
6627 |
msgstr ""
|
6628 |
|
6629 |
-
#:
|
6630 |
-
msgid "
|
6631 |
msgstr ""
|
6632 |
|
6633 |
-
#:
|
6634 |
-
msgid "
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#:
|
6638 |
-
msgid "
|
6639 |
msgstr ""
|
6640 |
|
6641 |
-
#:
|
6642 |
-
msgid "
|
6643 |
msgstr ""
|
6644 |
|
6645 |
-
#:
|
6646 |
-
msgid "
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#:
|
6650 |
-
msgid "
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#:
|
6654 |
-
msgid "
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#:
|
6658 |
-
msgid "
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#:
|
6662 |
-
msgid "
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#:
|
6666 |
-
msgid "
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#:
|
6670 |
-
msgid "
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#:
|
6674 |
-
msgid "
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
|
6678 |
-
|
6679 |
-
msgid "Refer to the %s for more information."
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#:
|
6683 |
-
msgid "
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#:
|
6687 |
-
msgid "
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#:
|
6691 |
-
msgid "
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#:
|
6695 |
-
msgid "
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#:
|
6699 |
-
msgid "
|
6700 |
msgstr ""
|
6701 |
|
6702 |
-
#:
|
6703 |
-
msgid "
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#:
|
6707 |
-
msgid "
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#:
|
6711 |
-
msgid "
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#:
|
6715 |
-
msgid "
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#:
|
6719 |
-
msgid "
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#:
|
6723 |
-
msgid "
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#:
|
6727 |
-
msgid "
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#:
|
6731 |
-
msgid "
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
#:
|
6735 |
-
msgid "
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#:
|
6739 |
-
msgid "
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#:
|
6743 |
-
msgid "
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#:
|
6747 |
-
msgid "
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#:
|
6751 |
-
msgid "
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
#:
|
6755 |
-
msgid "
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#:
|
6759 |
-
msgid "
|
6760 |
msgstr ""
|
6761 |
|
6762 |
-
#:
|
6763 |
-
msgid "
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#:
|
6767 |
-
msgid "
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#:
|
6771 |
-
msgid "
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#:
|
6775 |
-
msgid "
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#:
|
6779 |
-
msgid "
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#:
|
6783 |
-
msgid "
|
6784 |
msgstr ""
|
6785 |
|
6786 |
-
#:
|
6787 |
-
msgid "
|
6788 |
msgstr ""
|
6789 |
|
6790 |
-
#:
|
6791 |
-
msgid "
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#:
|
6795 |
-
msgid "
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#:
|
6799 |
-
msgid "
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#:
|
6803 |
-
msgid "
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#:
|
6807 |
-
msgid "
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#:
|
6811 |
-
msgid "
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#:
|
6815 |
-
msgid "
|
6816 |
msgstr ""
|
6817 |
|
6818 |
-
#:
|
6819 |
-
msgid "
|
6820 |
msgstr ""
|
6821 |
|
6822 |
-
#:
|
6823 |
-
msgid "
|
6824 |
msgstr ""
|
6825 |
|
6826 |
-
#:
|
6827 |
-
msgid "
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#:
|
6831 |
-
msgid "
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#:
|
6835 |
-
msgid "
|
6836 |
msgstr ""
|
6837 |
|
6838 |
-
#:
|
6839 |
-
msgid "
|
6840 |
msgstr ""
|
6841 |
|
6842 |
-
#:
|
6843 |
-
msgid "
|
6844 |
msgstr ""
|
6845 |
|
6846 |
-
#:
|
6847 |
-
msgid "
|
6848 |
msgstr ""
|
6849 |
|
6850 |
-
#:
|
6851 |
-
msgid "
|
6852 |
msgstr ""
|
6853 |
|
6854 |
-
#:
|
6855 |
-
msgid "
|
6856 |
msgstr ""
|
6857 |
|
6858 |
-
#:
|
6859 |
-
msgid "
|
6860 |
msgstr ""
|
6861 |
|
6862 |
-
#:
|
6863 |
-
msgid "
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#:
|
6867 |
-
msgid "
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#:
|
6871 |
-
msgid "
|
6872 |
msgstr ""
|
6873 |
|
6874 |
-
#:
|
6875 |
-
msgid "
|
6876 |
msgstr ""
|
6877 |
|
6878 |
-
#:
|
6879 |
-
msgid "
|
6880 |
msgstr ""
|
6881 |
|
6882 |
-
#:
|
6883 |
-
msgid "
|
6884 |
msgstr ""
|
6885 |
|
6886 |
-
#:
|
6887 |
-
msgid "
|
6888 |
msgstr ""
|
6889 |
|
6890 |
-
#:
|
6891 |
-
msgid "
|
6892 |
msgstr ""
|
6893 |
|
6894 |
-
|
6895 |
-
|
6896 |
-
msgid "The activity log retention setting is configured to delete events older than %1$s. This period should be longer than the configured %2$s archiving period otherwise events will be deleted and not archived."
|
6897 |
msgstr ""
|
6898 |
|
6899 |
-
#:
|
6900 |
-
msgid "
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#:
|
6904 |
-
msgid "
|
6905 |
msgstr ""
|
6906 |
|
6907 |
-
#:
|
6908 |
-
msgid "
|
6909 |
msgstr ""
|
6910 |
|
6911 |
-
#:
|
6912 |
-
msgid "
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#:
|
6916 |
-
msgid "
|
6917 |
msgstr ""
|
6918 |
|
6919 |
-
#:
|
6920 |
-
msgid "
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#:
|
6924 |
-
msgid "
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
|
6928 |
-
|
6929 |
-
msgid " So far %d events have been migrated."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#:
|
6933 |
-
msgid "
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#:
|
6937 |
-
msgid "
|
6938 |
msgstr ""
|
6939 |
|
6940 |
-
#:
|
6941 |
-
msgid "
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#:
|
6945 |
-
msgid "
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#:
|
6949 |
-
msgid "
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#:
|
6953 |
-
msgid "
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#:
|
6957 |
-
msgid "
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#:
|
6961 |
-
msgid "
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#:
|
6965 |
-
msgid "
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#:
|
6969 |
-
msgid "
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#:
|
6973 |
-
msgid "
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
#:
|
6977 |
-
msgid "
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#:
|
6981 |
-
msgid "
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#:
|
6985 |
-
msgid "
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#:
|
6989 |
-
msgid "
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#:
|
6993 |
-
msgid "
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#:
|
6997 |
-
|
|
|
|
|
|
|
|
|
|
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#:
|
7001 |
-
|
|
|
|
|
|
|
|
|
|
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#:
|
7005 |
-
msgid "
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#:
|
7009 |
-
msgid "
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#:
|
7013 |
-
msgid "
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#:
|
7017 |
-
msgid "
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#:
|
7021 |
-
msgid "
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#:
|
7025 |
-
msgid "
|
7026 |
msgstr ""
|
7027 |
|
7028 |
-
#:
|
7029 |
-
msgid "
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#:
|
7033 |
-
msgid "
|
7034 |
msgstr ""
|
7035 |
|
7036 |
-
#:
|
7037 |
-
msgid "
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#:
|
7041 |
-
msgid "
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#:
|
7045 |
-
msgid "
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#:
|
7049 |
-
msgid "
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#:
|
7053 |
-
msgid "
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#:
|
7057 |
-
msgid "
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#:
|
7061 |
-
msgid "
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#:
|
7065 |
-
msgid "
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#:
|
7069 |
-
msgid "
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#:
|
7073 |
-
msgid "
|
7074 |
msgstr ""
|
7075 |
|
7076 |
-
#:
|
7077 |
-
msgid "
|
7078 |
msgstr ""
|
7079 |
|
7080 |
-
#:
|
7081 |
-
msgid "
|
7082 |
msgstr ""
|
7083 |
|
7084 |
-
#:
|
7085 |
-
msgid "
|
7086 |
msgstr ""
|
7087 |
|
7088 |
-
#:
|
7089 |
-
msgid "
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#:
|
7093 |
-
msgid "
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#:
|
7097 |
-
msgid "
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#:
|
7101 |
-
msgid "
|
7102 |
msgstr ""
|
7103 |
|
7104 |
-
#:
|
7105 |
-
msgid "
|
7106 |
msgstr ""
|
7107 |
|
7108 |
-
#:
|
7109 |
-
msgid "
|
7110 |
msgstr ""
|
7111 |
|
7112 |
-
#:
|
7113 |
-
msgid "
|
7114 |
msgstr ""
|
7115 |
|
7116 |
-
#:
|
7117 |
-
msgid "
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#:
|
7121 |
-
msgid "
|
7122 |
msgstr ""
|
7123 |
|
7124 |
-
#:
|
7125 |
-
msgid "
|
7126 |
msgstr ""
|
7127 |
|
7128 |
-
#:
|
7129 |
-
msgid "
|
7130 |
msgstr ""
|
7131 |
|
7132 |
-
#:
|
7133 |
-
msgid "
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#:
|
7137 |
-
msgid "
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#:
|
7141 |
-
msgid "
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
#:
|
7145 |
-
msgid "
|
7146 |
msgstr ""
|
7147 |
|
7148 |
-
#:
|
7149 |
-
msgid "
|
7150 |
msgstr ""
|
7151 |
|
7152 |
-
#:
|
7153 |
-
msgid "
|
7154 |
msgstr ""
|
7155 |
|
7156 |
-
#:
|
7157 |
-
msgid "
|
7158 |
msgstr ""
|
7159 |
|
7160 |
-
#:
|
7161 |
-
msgid "
|
7162 |
msgstr ""
|
7163 |
|
7164 |
-
#:
|
7165 |
-
msgid "
|
7166 |
msgstr ""
|
7167 |
|
7168 |
-
#:
|
7169 |
-
msgid "
|
7170 |
msgstr ""
|
7171 |
|
7172 |
-
#:
|
7173 |
-
msgid "
|
7174 |
msgstr ""
|
7175 |
|
7176 |
-
#:
|
7177 |
-
msgid "
|
7178 |
msgstr ""
|
7179 |
|
7180 |
-
#:
|
7181 |
-
msgid "
|
7182 |
msgstr ""
|
7183 |
|
7184 |
-
#:
|
7185 |
-
msgid "
|
7186 |
msgstr ""
|
7187 |
|
7188 |
-
#:
|
7189 |
-
msgid "
|
7190 |
msgstr ""
|
7191 |
|
7192 |
-
#:
|
7193 |
-
msgid "
|
7194 |
msgstr ""
|
7195 |
|
7196 |
-
#:
|
7197 |
-
msgid "
|
7198 |
msgstr ""
|
7199 |
|
7200 |
-
#:
|
7201 |
-
msgid "
|
7202 |
msgstr ""
|
7203 |
|
7204 |
-
#:
|
7205 |
-
msgid "
|
7206 |
msgstr ""
|
7207 |
|
7208 |
-
#:
|
7209 |
-
msgid "
|
7210 |
msgstr ""
|
7211 |
|
7212 |
-
#:
|
7213 |
-
msgid "
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#:
|
7217 |
-
msgid "
|
7218 |
msgstr ""
|
7219 |
|
7220 |
-
#:
|
7221 |
-
msgid "
|
7222 |
msgstr ""
|
7223 |
|
7224 |
-
#:
|
7225 |
-
msgid "
|
7226 |
msgstr ""
|
7227 |
|
7228 |
-
#:
|
7229 |
-
msgid "
|
7230 |
msgstr ""
|
7231 |
|
7232 |
-
#:
|
7233 |
-
msgid "
|
7234 |
msgstr ""
|
7235 |
|
7236 |
-
#:
|
7237 |
-
|
|
|
|
|
7238 |
msgstr ""
|
7239 |
|
7240 |
-
#:
|
7241 |
-
|
|
|
|
|
|
|
7242 |
msgstr ""
|
7243 |
|
7244 |
-
#:
|
7245 |
-
msgid "
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#:
|
7249 |
-
msgid "
|
7250 |
msgstr ""
|
7251 |
|
7252 |
-
#:
|
7253 |
-
msgid "
|
7254 |
msgstr ""
|
7255 |
|
7256 |
-
#:
|
7257 |
-
msgid "
|
7258 |
msgstr ""
|
7259 |
|
7260 |
-
#:
|
7261 |
-
msgid "
|
7262 |
msgstr ""
|
7263 |
|
7264 |
-
#:
|
7265 |
-
msgid "
|
7266 |
msgstr ""
|
7267 |
|
7268 |
-
#:
|
7269 |
-
msgid "
|
7270 |
msgstr ""
|
7271 |
|
7272 |
-
#:
|
7273 |
-
msgid "
|
7274 |
msgstr ""
|
7275 |
|
7276 |
-
#:
|
7277 |
-
msgid "
|
7278 |
msgstr ""
|
7279 |
|
7280 |
-
#:
|
7281 |
-
msgid "
|
7282 |
msgstr ""
|
7283 |
|
7284 |
-
#:
|
7285 |
-
msgid "
|
7286 |
msgstr ""
|
7287 |
|
7288 |
-
#:
|
7289 |
-
msgid "
|
7290 |
msgstr ""
|
7291 |
|
7292 |
-
#:
|
7293 |
-
msgid "
|
7294 |
msgstr ""
|
7295 |
|
7296 |
-
#:
|
7297 |
-
msgid "
|
7298 |
msgstr ""
|
7299 |
|
7300 |
-
#:
|
7301 |
-
msgid "
|
7302 |
msgstr ""
|
7303 |
|
7304 |
-
#:
|
7305 |
-
msgid "
|
7306 |
msgstr ""
|
7307 |
|
7308 |
-
#:
|
7309 |
-
msgid "
|
7310 |
msgstr ""
|
7311 |
|
7312 |
-
#:
|
7313 |
-
msgid "
|
7314 |
msgstr ""
|
7315 |
|
7316 |
-
#:
|
7317 |
-
msgid "
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#:
|
7321 |
-
msgid "
|
7322 |
msgstr ""
|
7323 |
|
7324 |
-
#:
|
7325 |
-
msgid "
|
7326 |
msgstr ""
|
7327 |
|
7328 |
-
#:
|
7329 |
-
msgid "
|
7330 |
msgstr ""
|
7331 |
|
7332 |
-
#:
|
7333 |
-
msgid "
|
7334 |
msgstr ""
|
7335 |
|
7336 |
-
#:
|
7337 |
-
msgid "
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
#:
|
7341 |
-
msgid "
|
7342 |
msgstr ""
|
7343 |
|
7344 |
-
#:
|
7345 |
-
msgid "
|
7346 |
msgstr ""
|
7347 |
|
7348 |
-
#:
|
7349 |
-
msgid "
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
#:
|
7353 |
-
msgid "
|
7354 |
msgstr ""
|
7355 |
|
7356 |
-
#:
|
7357 |
-
msgid "
|
7358 |
msgstr ""
|
7359 |
|
7360 |
-
#:
|
7361 |
-
msgid "
|
7362 |
msgstr ""
|
7363 |
|
7364 |
-
#:
|
7365 |
-
msgid "
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
#:
|
7369 |
-
msgid "
|
7370 |
msgstr ""
|
7371 |
|
7372 |
-
#:
|
7373 |
-
msgid "
|
7374 |
msgstr ""
|
7375 |
|
7376 |
-
#:
|
7377 |
-
msgid "
|
7378 |
msgstr ""
|
7379 |
|
7380 |
-
#:
|
7381 |
-
msgid "
|
7382 |
msgstr ""
|
7383 |
|
7384 |
-
#:
|
7385 |
-
msgid "
|
7386 |
msgstr ""
|
7387 |
|
7388 |
-
#:
|
7389 |
-
msgid "
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#:
|
7393 |
-
msgid "
|
7394 |
msgstr ""
|
7395 |
|
7396 |
-
#:
|
7397 |
-
msgid "
|
7398 |
msgstr ""
|
7399 |
|
7400 |
-
#:
|
7401 |
-
msgid "
|
7402 |
msgstr ""
|
7403 |
|
7404 |
-
#:
|
7405 |
-
|
|
|
7406 |
msgstr ""
|
7407 |
|
7408 |
-
#:
|
7409 |
-
msgid "
|
7410 |
msgstr ""
|
7411 |
|
7412 |
-
#:
|
7413 |
-
msgid "
|
7414 |
msgstr ""
|
7415 |
|
7416 |
-
#:
|
7417 |
-
msgid "
|
7418 |
msgstr ""
|
7419 |
|
7420 |
-
#:
|
7421 |
-
msgid "
|
7422 |
msgstr ""
|
7423 |
|
7424 |
-
#:
|
7425 |
-
msgid "
|
7426 |
msgstr ""
|
7427 |
|
7428 |
-
#:
|
7429 |
-
msgid "
|
7430 |
msgstr ""
|
7431 |
|
7432 |
-
#:
|
7433 |
-
msgid "
|
7434 |
msgstr ""
|
7435 |
|
7436 |
-
#:
|
7437 |
-
msgid "
|
7438 |
msgstr ""
|
7439 |
|
7440 |
-
#:
|
7441 |
-
msgid "
|
7442 |
msgstr ""
|
7443 |
|
7444 |
-
#:
|
7445 |
-
msgid "
|
7446 |
msgstr ""
|
7447 |
|
7448 |
-
#:
|
7449 |
-
msgid "
|
7450 |
msgstr ""
|
7451 |
|
7452 |
-
#:
|
7453 |
-
msgid "
|
7454 |
msgstr ""
|
7455 |
|
7456 |
-
#:
|
7457 |
-
msgid "
|
7458 |
msgstr ""
|
7459 |
|
7460 |
-
#:
|
7461 |
-
msgid "
|
7462 |
msgstr ""
|
7463 |
|
7464 |
-
#:
|
7465 |
-
msgid "
|
7466 |
msgstr ""
|
7467 |
|
7468 |
-
#:
|
7469 |
-
msgid "
|
7470 |
msgstr ""
|
7471 |
|
7472 |
-
#:
|
7473 |
-
msgid "
|
7474 |
msgstr ""
|
7475 |
|
7476 |
-
#:
|
7477 |
-
msgid "
|
7478 |
msgstr ""
|
7479 |
|
7480 |
-
#:
|
7481 |
-
msgid "
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#:
|
7485 |
-
msgid "
|
7486 |
msgstr ""
|
7487 |
|
7488 |
-
#:
|
7489 |
-
msgid "
|
7490 |
msgstr ""
|
7491 |
|
7492 |
-
#:
|
7493 |
-
msgid "
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#:
|
7497 |
-
msgid "
|
7498 |
msgstr ""
|
7499 |
|
7500 |
-
#:
|
7501 |
-
msgid "
|
7502 |
msgstr ""
|
7503 |
|
7504 |
-
#:
|
7505 |
-
msgid "
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#:
|
7509 |
-
msgid "
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#:
|
7513 |
-
msgid "
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#:
|
7517 |
-
msgid "
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#:
|
7521 |
-
msgid "
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#:
|
7525 |
-
msgid "
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#:
|
7529 |
-
|
|
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#:
|
7533 |
-
msgid "
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#:
|
7537 |
-
msgid "
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#:
|
7541 |
-
msgid "
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#:
|
7545 |
-
msgid "
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#:
|
7549 |
-
msgid "
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#:
|
7553 |
-
msgid "
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#:
|
7557 |
-
msgid "
|
7558 |
msgstr ""
|
7559 |
|
7560 |
-
#:
|
7561 |
-
msgid "
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#:
|
7565 |
-
msgid "
|
7566 |
msgstr ""
|
7567 |
|
7568 |
-
#:
|
7569 |
-
msgid "
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#:
|
7573 |
-
msgid "
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#:
|
7577 |
-
msgid "
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#:
|
7581 |
-
msgid "
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#:
|
7585 |
-
msgid "
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#:
|
7589 |
-
msgid "
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#:
|
7593 |
-
msgid "
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#:
|
7597 |
-
msgid "
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#:
|
7601 |
-
msgid "
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#:
|
7605 |
-
msgid "
|
7606 |
msgstr ""
|
7607 |
|
7608 |
-
#:
|
7609 |
-
msgid "
|
7610 |
msgstr ""
|
7611 |
|
7612 |
-
#:
|
7613 |
-
msgid "
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#:
|
7617 |
-
msgid "
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#:
|
7621 |
-
msgid "
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#:
|
7625 |
-
msgid "
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#:
|
7629 |
-
msgid "
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#:
|
7633 |
-
msgid "
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#:
|
7637 |
-
msgid "
|
7638 |
msgstr ""
|
7639 |
|
7640 |
-
#:
|
7641 |
-
msgid "
|
7642 |
msgstr ""
|
7643 |
|
7644 |
-
#:
|
7645 |
-
msgid "
|
7646 |
msgstr ""
|
7647 |
|
7648 |
-
#:
|
7649 |
-
msgid "
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#:
|
7653 |
-
msgid "
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#:
|
7657 |
-
msgid "
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#:
|
7661 |
-
msgid "
|
7662 |
msgstr ""
|
7663 |
|
7664 |
-
#:
|
7665 |
-
msgid "
|
7666 |
msgstr ""
|
7667 |
|
7668 |
-
#:
|
7669 |
-
msgid "
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#:
|
7673 |
-
msgid "
|
7674 |
msgstr ""
|
7675 |
|
7676 |
-
#:
|
7677 |
-
msgid "
|
7678 |
msgstr ""
|
7679 |
|
7680 |
-
#:
|
7681 |
-
msgid "
|
7682 |
msgstr ""
|
7683 |
|
7684 |
-
#:
|
7685 |
-
msgid "
|
7686 |
msgstr ""
|
7687 |
|
7688 |
-
#:
|
7689 |
-
msgid "
|
7690 |
msgstr ""
|
7691 |
|
7692 |
-
#:
|
7693 |
-
msgid "
|
7694 |
msgstr ""
|
7695 |
|
7696 |
-
#:
|
7697 |
-
msgid "
|
7698 |
msgstr ""
|
7699 |
|
7700 |
-
#:
|
7701 |
-
msgid "
|
7702 |
msgstr ""
|
7703 |
|
7704 |
-
#:
|
7705 |
-
msgid "
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#:
|
7709 |
-
msgid "
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#:
|
7713 |
-
msgid "
|
7714 |
msgstr ""
|
7715 |
|
7716 |
-
#:
|
7717 |
-
msgid "
|
7718 |
msgstr ""
|
7719 |
|
7720 |
-
#:
|
7721 |
-
msgid "
|
7722 |
msgstr ""
|
7723 |
|
7724 |
-
#:
|
7725 |
-
msgid "
|
7726 |
msgstr ""
|
7727 |
|
7728 |
-
#:
|
7729 |
-
msgid "
|
7730 |
msgstr ""
|
7731 |
|
7732 |
-
#:
|
7733 |
-
msgid "
|
7734 |
msgstr ""
|
7735 |
|
7736 |
-
#:
|
7737 |
-
msgid "
|
7738 |
msgstr ""
|
7739 |
|
7740 |
-
#:
|
7741 |
-
msgid "
|
7742 |
msgstr ""
|
7743 |
|
7744 |
-
#:
|
7745 |
-
msgid "
|
7746 |
msgstr ""
|
7747 |
|
7748 |
-
|
7749 |
-
|
7750 |
-
msgid "out of %s user sessions terminated."
|
7751 |
msgstr ""
|
7752 |
|
7753 |
-
#:
|
7754 |
-
msgid "
|
7755 |
msgstr ""
|
7756 |
|
7757 |
-
#:
|
7758 |
-
msgid "
|
7759 |
msgstr ""
|
7760 |
|
7761 |
-
#:
|
7762 |
-
msgid "
|
7763 |
msgstr ""
|
7764 |
|
7765 |
-
#:
|
7766 |
-
msgid "
|
7767 |
msgstr ""
|
7768 |
|
7769 |
-
#:
|
7770 |
-
msgid "
|
7771 |
msgstr ""
|
7772 |
|
7773 |
-
#:
|
7774 |
-
msgid "
|
7775 |
msgstr ""
|
7776 |
|
7777 |
-
#:
|
7778 |
-
msgid "
|
7779 |
msgstr ""
|
7780 |
|
7781 |
-
#:
|
7782 |
-
msgid "
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#:
|
7786 |
-
msgid "
|
7787 |
msgstr ""
|
7788 |
|
7789 |
-
#:
|
7790 |
-
msgid "
|
7791 |
msgstr ""
|
7792 |
|
7793 |
-
#:
|
7794 |
-
msgid "
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#:
|
7798 |
-
msgid "
|
7799 |
msgstr ""
|
7800 |
|
7801 |
-
#:
|
7802 |
-
msgid "
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#:
|
7806 |
-
msgid "
|
7807 |
msgstr ""
|
7808 |
|
7809 |
-
#:
|
7810 |
-
msgid "
|
7811 |
msgstr ""
|
7812 |
|
7813 |
-
#:
|
7814 |
-
msgid "
|
7815 |
msgstr ""
|
7816 |
|
7817 |
-
#:
|
7818 |
-
msgid "
|
7819 |
msgstr ""
|
7820 |
|
7821 |
-
#:
|
7822 |
-
msgid "
|
7823 |
msgstr ""
|
7824 |
|
7825 |
-
#:
|
7826 |
-
msgid "
|
7827 |
msgstr ""
|
7828 |
|
7829 |
-
#:
|
7830 |
-
msgid "
|
7831 |
msgstr ""
|
7832 |
|
7833 |
-
#:
|
7834 |
-
msgid "
|
7835 |
msgstr ""
|
7836 |
|
7837 |
-
#:
|
7838 |
-
msgid "
|
7839 |
msgstr ""
|
7840 |
|
7841 |
-
#:
|
7842 |
-
msgid "
|
7843 |
msgstr ""
|
7844 |
|
7845 |
-
#:
|
7846 |
-
msgid "
|
7847 |
msgstr ""
|
7848 |
|
7849 |
-
#:
|
7850 |
-
msgid "
|
7851 |
msgstr ""
|
7852 |
|
7853 |
-
#:
|
7854 |
-
msgid "
|
7855 |
msgstr ""
|
7856 |
|
7857 |
-
#:
|
7858 |
-
msgid "
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#:
|
7862 |
-
msgid "
|
7863 |
msgstr ""
|
7864 |
|
7865 |
-
#:
|
7866 |
-
msgid "
|
7867 |
msgstr ""
|
7868 |
|
7869 |
-
#:
|
7870 |
-
msgid "
|
7871 |
msgstr ""
|
7872 |
|
7873 |
-
#:
|
7874 |
-
msgid "
|
7875 |
msgstr ""
|
7876 |
|
7877 |
-
#:
|
7878 |
-
msgid "
|
7879 |
msgstr ""
|
7880 |
|
7881 |
-
#:
|
7882 |
-
msgid "
|
7883 |
msgstr ""
|
7884 |
|
7885 |
-
#:
|
7886 |
-
msgid "
|
7887 |
msgstr ""
|
7888 |
|
7889 |
-
#:
|
7890 |
-
msgid "
|
7891 |
msgstr ""
|
7892 |
|
7893 |
-
#:
|
7894 |
-
msgid "
|
7895 |
msgstr ""
|
7896 |
|
7897 |
-
#:
|
7898 |
-
msgid "
|
7899 |
msgstr ""
|
7900 |
|
7901 |
-
#:
|
7902 |
-
msgid "
|
7903 |
msgstr ""
|
7904 |
|
7905 |
-
#:
|
7906 |
-
msgid "
|
7907 |
msgstr ""
|
7908 |
|
7909 |
-
#:
|
7910 |
-
msgid "
|
7911 |
msgstr ""
|
7912 |
|
7913 |
-
#:
|
7914 |
-
msgid "
|
7915 |
msgstr ""
|
7916 |
|
7917 |
-
#:
|
7918 |
-
msgid "
|
7919 |
msgstr ""
|
7920 |
|
7921 |
-
#:
|
7922 |
-
msgid "
|
7923 |
msgstr ""
|
7924 |
|
7925 |
-
#:
|
7926 |
-
msgid "
|
7927 |
msgstr ""
|
7928 |
|
7929 |
-
#:
|
7930 |
-
msgid "
|
7931 |
msgstr ""
|
7932 |
|
7933 |
-
#:
|
7934 |
-
msgid "
|
7935 |
msgstr ""
|
7936 |
|
7937 |
-
#:
|
7938 |
-
msgid "
|
7939 |
msgstr ""
|
7940 |
|
7941 |
-
#:
|
7942 |
-
msgid "
|
7943 |
msgstr ""
|
7944 |
|
7945 |
-
#:
|
7946 |
-
msgid "
|
7947 |
msgstr ""
|
7948 |
|
7949 |
-
#:
|
7950 |
-
msgid "
|
7951 |
msgstr ""
|
7952 |
|
7953 |
-
#:
|
7954 |
-
msgid "
|
7955 |
msgstr ""
|
7956 |
|
7957 |
-
#:
|
7958 |
-
msgid "
|
7959 |
msgstr ""
|
7960 |
|
7961 |
-
#:
|
7962 |
-
msgid "
|
7963 |
msgstr ""
|
7964 |
|
7965 |
-
|
7966 |
-
|
7967 |
-
msgid "Specify your destination. You can find your Papertrail Destination in the %s section of your Papertrail account page. It should have the following format: logs4.papertrailapp.com:54321"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
-
#:
|
7971 |
-
msgid "
|
7972 |
msgstr ""
|
7973 |
|
7974 |
-
#:
|
7975 |
-
msgid "
|
7976 |
msgstr ""
|
7977 |
|
7978 |
-
#:
|
7979 |
-
msgid "
|
7980 |
msgstr ""
|
7981 |
|
7982 |
-
#:
|
7983 |
-
msgid "
|
7984 |
msgstr ""
|
7985 |
|
7986 |
-
#:
|
7987 |
-
msgid "
|
7988 |
msgstr ""
|
7989 |
|
7990 |
-
|
7991 |
-
|
7992 |
-
msgid "If you are not familiar with incoming WebHooks on Slack, please refer to %s."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
#:
|
7996 |
-
msgid "
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#:
|
8000 |
-
msgid "
|
8001 |
msgstr ""
|
8002 |
|
8003 |
-
#:
|
8004 |
-
msgid "
|
8005 |
msgstr ""
|
8006 |
|
8007 |
-
#:
|
8008 |
-
msgid "
|
8009 |
msgstr ""
|
8010 |
|
8011 |
-
#:
|
8012 |
-
msgid "
|
8013 |
msgstr ""
|
8014 |
|
8015 |
-
#:
|
8016 |
-
msgid "
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#:
|
8020 |
-
msgid "
|
8021 |
msgstr ""
|
8022 |
|
8023 |
-
#:
|
8024 |
-
msgid "
|
8025 |
msgstr ""
|
8026 |
|
8027 |
-
#:
|
8028 |
-
msgid "
|
8029 |
msgstr ""
|
8030 |
|
8031 |
-
#:
|
8032 |
-
msgid "
|
8033 |
msgstr ""
|
8034 |
|
8035 |
-
#:
|
8036 |
-
msgid "
|
8037 |
msgstr ""
|
8038 |
|
8039 |
-
#:
|
8040 |
-
msgid "
|
8041 |
msgstr ""
|
8042 |
|
8043 |
-
#:
|
8044 |
-
msgid "
|
8045 |
msgstr ""
|
8046 |
|
8047 |
-
#:
|
8048 |
-
msgid "
|
8049 |
msgstr ""
|
8050 |
|
8051 |
-
#:
|
8052 |
-
|
|
|
8053 |
msgstr ""
|
8054 |
|
8055 |
-
#:
|
8056 |
-
msgid "
|
8057 |
msgstr ""
|
8058 |
|
8059 |
-
#:
|
8060 |
-
msgid "The %
|
8061 |
msgstr ""
|
8062 |
|
8063 |
-
#:
|
8064 |
-
msgid "
|
8065 |
msgstr ""
|
8066 |
|
8067 |
-
#:
|
8068 |
-
msgid "
|
8069 |
msgstr ""
|
8070 |
|
8071 |
-
#:
|
8072 |
-
msgid "
|
8073 |
msgstr ""
|
8074 |
|
8075 |
-
#:
|
8076 |
-
msgid "
|
8077 |
msgstr ""
|
8078 |
|
8079 |
-
#:
|
8080 |
-
msgid "
|
8081 |
msgstr ""
|
8082 |
|
8083 |
-
#:
|
8084 |
-
msgid "
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#:
|
8088 |
-
msgid "
|
8089 |
msgstr ""
|
8090 |
|
8091 |
-
#:
|
8092 |
-
msgid "
|
8093 |
msgstr ""
|
8094 |
|
8095 |
-
#:
|
8096 |
-
|
|
|
8097 |
msgstr ""
|
8098 |
|
8099 |
-
#:
|
8100 |
-
msgid "
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#:
|
8104 |
-
msgid "
|
8105 |
msgstr ""
|
8106 |
|
8107 |
-
#:
|
8108 |
-
msgid "
|
8109 |
msgstr ""
|
8110 |
|
8111 |
-
#:
|
8112 |
-
msgid "
|
8113 |
msgstr ""
|
8114 |
|
8115 |
-
#:
|
8116 |
-
msgid "
|
8117 |
msgstr ""
|
8118 |
|
8119 |
-
#:
|
8120 |
-
msgid "
|
8121 |
msgstr ""
|
8122 |
|
8123 |
-
#:
|
8124 |
-
msgid "
|
8125 |
msgstr ""
|
8126 |
|
8127 |
-
#:
|
8128 |
-
msgid "
|
8129 |
msgstr ""
|
8130 |
|
8131 |
-
#:
|
8132 |
-
msgid "
|
8133 |
msgstr ""
|
8134 |
|
8135 |
-
#:
|
8136 |
-
msgid "
|
8137 |
msgstr ""
|
8138 |
|
8139 |
-
#:
|
8140 |
-
msgid "
|
8141 |
msgstr ""
|
8142 |
|
8143 |
-
#:
|
8144 |
-
msgid "
|
8145 |
msgstr ""
|
8146 |
|
8147 |
-
#:
|
8148 |
-
msgid "
|
8149 |
msgstr ""
|
8150 |
|
8151 |
-
#:
|
8152 |
-
msgid "
|
8153 |
msgstr ""
|
8154 |
|
8155 |
-
#:
|
8156 |
-
msgid "
|
8157 |
msgstr ""
|
8158 |
|
8159 |
-
#:
|
8160 |
-
msgid "
|
8161 |
msgstr ""
|
8162 |
|
8163 |
-
#:
|
8164 |
-
msgid "
|
8165 |
msgstr ""
|
8166 |
|
8167 |
-
#:
|
8168 |
-
msgid "
|
8169 |
msgstr ""
|
8170 |
|
8171 |
-
#:
|
8172 |
-
msgid "
|
8173 |
msgstr ""
|
8174 |
|
8175 |
-
#:
|
8176 |
-
msgid "
|
8177 |
msgstr ""
|
8178 |
|
8179 |
-
|
8180 |
-
|
8181 |
-
msgid "%s users"
|
8182 |
msgstr ""
|
8183 |
|
8184 |
-
#:
|
8185 |
-
msgid "
|
8186 |
msgstr ""
|
8187 |
|
8188 |
-
#:
|
8189 |
-
msgid "
|
8190 |
msgstr ""
|
8191 |
|
8192 |
-
#:
|
8193 |
-
msgid "
|
8194 |
msgstr ""
|
8195 |
|
8196 |
-
#:
|
8197 |
-
msgid "
|
8198 |
msgstr ""
|
8199 |
|
8200 |
-
#:
|
8201 |
-
msgid "
|
8202 |
msgstr ""
|
8203 |
|
8204 |
-
#:
|
8205 |
-
msgid "
|
8206 |
msgstr ""
|
8207 |
|
8208 |
-
#:
|
8209 |
-
msgid "
|
8210 |
msgstr ""
|
8211 |
|
8212 |
-
#:
|
8213 |
-
msgid "
|
8214 |
msgstr ""
|
8215 |
|
8216 |
-
#:
|
8217 |
-
msgid "
|
8218 |
msgstr ""
|
8219 |
|
8220 |
-
#:
|
8221 |
-
msgid "
|
8222 |
msgstr ""
|
8223 |
|
8224 |
-
#:
|
8225 |
-
msgid "
|
8226 |
msgstr ""
|
8227 |
|
8228 |
-
#:
|
8229 |
-
msgid "
|
8230 |
msgstr ""
|
8231 |
|
8232 |
-
#:
|
8233 |
-
msgid "
|
8234 |
msgstr ""
|
8235 |
|
8236 |
-
#:
|
8237 |
-
msgid "
|
8238 |
msgstr ""
|
8239 |
|
8240 |
-
#:
|
8241 |
-
msgid "
|
8242 |
msgstr ""
|
8243 |
|
8244 |
-
#:
|
8245 |
-
msgid "
|
8246 |
msgstr ""
|
8247 |
|
8248 |
-
#:
|
8249 |
-
msgid "
|
8250 |
msgstr ""
|
8251 |
|
8252 |
-
#:
|
8253 |
-
msgid "
|
8254 |
msgstr ""
|
8255 |
|
8256 |
-
#:
|
8257 |
-
msgid "
|
8258 |
msgstr ""
|
8259 |
|
8260 |
-
#:
|
8261 |
-
|
|
|
8262 |
msgstr ""
|
8263 |
|
8264 |
-
#:
|
8265 |
-
msgid "
|
8266 |
msgstr ""
|
8267 |
|
8268 |
-
#:
|
8269 |
-
msgid "
|
8270 |
msgstr ""
|
8271 |
|
8272 |
-
#:
|
8273 |
-
msgid "
|
8274 |
msgstr ""
|
8275 |
|
8276 |
-
#:
|
8277 |
-
|
|
|
8278 |
msgstr ""
|
8279 |
|
8280 |
-
#:
|
8281 |
-
|
|
|
8282 |
msgstr ""
|
8283 |
|
8284 |
-
#:
|
8285 |
-
msgid "
|
8286 |
msgstr ""
|
8287 |
|
8288 |
-
#:
|
8289 |
-
|
|
|
8290 |
msgstr ""
|
8291 |
|
8292 |
-
#:
|
8293 |
-
|
|
|
8294 |
msgstr ""
|
8295 |
|
8296 |
-
#:
|
8297 |
-
msgid "
|
8298 |
msgstr ""
|
8299 |
|
8300 |
-
#:
|
8301 |
-
|
|
|
8302 |
msgstr ""
|
8303 |
|
8304 |
-
#:
|
8305 |
-
|
|
|
8306 |
msgstr ""
|
8307 |
|
8308 |
-
|
8309 |
-
|
8310 |
-
msgid "Allow up to %s sessions and block the rest"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
-
#:
|
8314 |
-
msgid "
|
8315 |
msgstr ""
|
8316 |
|
8317 |
-
#:
|
8318 |
-
|
|
|
8319 |
msgstr ""
|
8320 |
|
8321 |
-
#:
|
8322 |
-
msgid "
|
8323 |
msgstr ""
|
8324 |
|
8325 |
-
#:
|
8326 |
-
|
|
|
8327 |
msgstr ""
|
8328 |
|
8329 |
-
#:
|
8330 |
-
msgid "
|
8331 |
msgstr ""
|
8332 |
|
8333 |
-
#:
|
8334 |
-
|
|
|
8335 |
msgstr ""
|
8336 |
|
8337 |
-
#:
|
8338 |
-
msgid "
|
8339 |
msgstr ""
|
8340 |
|
8341 |
-
#:
|
8342 |
-
|
|
|
8343 |
msgstr ""
|
8344 |
|
8345 |
-
#:
|
8346 |
-
msgid "
|
8347 |
msgstr ""
|
8348 |
|
8349 |
-
#:
|
8350 |
-
msgid "
|
8351 |
msgstr ""
|
8352 |
|
8353 |
-
#:
|
8354 |
-
msgid "
|
8355 |
msgstr ""
|
8356 |
|
8357 |
-
#:
|
8358 |
-
msgid "
|
8359 |
msgstr ""
|
8360 |
|
8361 |
-
#:
|
8362 |
-
msgid "
|
8363 |
msgstr ""
|
8364 |
|
8365 |
-
#:
|
8366 |
-
msgid "
|
8367 |
msgstr ""
|
8368 |
|
8369 |
-
#:
|
8370 |
-
msgid "
|
8371 |
msgstr ""
|
8372 |
|
8373 |
-
#:
|
8374 |
-
msgid "
|
8375 |
msgstr ""
|
8376 |
|
8377 |
-
#:
|
8378 |
-
|
|
|
8379 |
msgstr ""
|
1 |
+
# Copyright (C) 2021 wp-security-audit-log
|
2 |
# This file is distributed under the same license as the wp-security-audit-log package.
|
3 |
+
#, fuzzy
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: wp-security-audit-log\n"
|
7 |
+
"Report-Msgid-Bugs-To: https://www.wpwhitesecurity.com\n"
|
8 |
+
"POT-Creation-Date: \n"
|
9 |
+
"PO-Revision-Date: \n"
|
10 |
+
"Last-Translator: WP White Security <info@wpwhitesecurity.com>\n"
|
11 |
+
"Language-Team: WP White Security <info@wpwhitesecurity.com>\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
18 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Generator: Poedit 3.0.1\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-1: vendor\n"
|
23 |
+
"X-Poedit-SearchPathExcluded-2: node_modules\n"
|
24 |
+
"X-Poedit-SearchPathExcluded-3: languages\n"
|
25 |
|
26 |
+
#: classes/AlertFormatter.php:67
|
27 |
+
msgid "Exclude custom field from the monitoring"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: classes/AlertFormatter.php:92
|
31 |
+
msgid "unknown"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: classes/AlertFormatter.php:139
|
35 |
+
msgid "Download the log file."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: classes/AlertFormatter.php:147
|
39 |
+
msgid "published"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: classes/AlertManager.php:359
|
43 |
+
#, php-format
|
44 |
+
msgid "Event with code %d has not be registered."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: classes/AlertManager.php:443
|
48 |
+
#, php-format
|
49 |
+
msgid "Event %s already registered with WP Activity Log."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: classes/AlertManager.php:488
|
53 |
+
msgid "You have custom events that are using the same ID or IDs which are already registered in the plugin, so they have been disabled."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: classes/AlertManager.php:491
|
57 |
+
#, php-format
|
58 |
+
msgid "%4$s to help you solve this issue."
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: classes/AlertManager.php:493
|
62 |
+
msgid "ERROR:"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: classes/AlertManager.php:495
|
66 |
+
msgid "Contact us"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: classes/AlertManager.php:1069 classes/AuditLogListView.php:272
|
70 |
+
#: classes/AuditLogListView.php:306 classes/Views/Settings.php:1086
|
71 |
+
#: classes/WidgetManager.php:76 defaults.php:1706
|
72 |
+
msgid "User"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: classes/AlertManager.php:1070 classes/AlertManager.php:1760
|
76 |
+
#: classes/AuditLogGridView.php:436 classes/AuditLogListView.php:442
|
77 |
+
#: defaults.php:2294
|
78 |
+
msgid "System"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: classes/AlertManager.php:1071 classes/AuditLogGridView.php:427
|
82 |
+
#: classes/AuditLogListView.php:436 defaults.php:2138 defaults.php:2153
|
83 |
+
msgid "Plugin"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: classes/AlertManager.php:1072
|
87 |
+
msgid "Database"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: classes/AlertManager.php:1073 defaults.php:932
|
91 |
+
msgid "Post"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: classes/AlertManager.php:1074 classes/AlertManager.php:1078
|
95 |
+
msgid "File"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: classes/AlertManager.php:1075
|
99 |
+
msgid "Tag"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: classes/AlertManager.php:1076 defaults.php:79
|
103 |
+
msgid "Comment"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/AlertManager.php:1077
|
107 |
+
msgid "Setting"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: classes/AlertManager.php:1079
|
111 |
+
msgid "System Setting"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: classes/AlertManager.php:1080
|
115 |
+
msgid "MainWP Network"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: classes/AlertManager.php:1081
|
119 |
+
msgid "MainWP"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: classes/AlertManager.php:1082
|
123 |
+
msgid "Category"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: classes/AlertManager.php:1083
|
127 |
+
msgid "Custom Field"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: classes/AlertManager.php:1084
|
131 |
+
msgid "Widget"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: classes/AlertManager.php:1085
|
135 |
+
msgid "Menu"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: classes/AlertManager.php:1086
|
139 |
+
msgid "Theme"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: classes/AlertManager.php:1087
|
143 |
+
msgid "Activity log"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: classes/AlertManager.php:1088
|
147 |
+
msgid "WP Activity Log"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: classes/AlertManager.php:1089
|
151 |
+
msgid "Multisite Network"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: classes/AlertManager.php:1090
|
155 |
+
msgid "IP Address"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: classes/AlertManager.php:1106
|
159 |
+
msgid "unknown object"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: classes/AlertManager.php:1143
|
163 |
+
msgid "Login"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: classes/AlertManager.php:1144
|
167 |
+
msgid "Logout"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: classes/AlertManager.php:1145
|
171 |
+
msgid "Installed"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: classes/AlertManager.php:1146
|
175 |
+
msgid "Activated"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: classes/AlertManager.php:1147
|
179 |
+
msgid "Deactivated"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: classes/AlertManager.php:1148
|
183 |
+
msgid "Uninstalled"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: classes/AlertManager.php:1149
|
187 |
+
msgid "Updated"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: classes/AlertManager.php:1150
|
191 |
+
msgid "Created"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: classes/AlertManager.php:1151
|
195 |
+
msgid "Modified"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: classes/AlertManager.php:1152
|
199 |
+
msgid "Deleted"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/AlertManager.php:1153
|
203 |
+
msgid "Published"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: classes/AlertManager.php:1154
|
207 |
+
msgid "Approved"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/AlertManager.php:1155
|
211 |
+
msgid "Unapproved"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: classes/AlertManager.php:1156
|
215 |
+
msgid "Enabled"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: classes/AlertManager.php:1157
|
219 |
+
msgid "Disabled"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: classes/AlertManager.php:1158
|
223 |
+
msgid "Added"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: classes/AlertManager.php:1159
|
227 |
+
msgid "Failed Login"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: classes/AlertManager.php:1160
|
231 |
+
msgid "Blocked"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: classes/AlertManager.php:1161
|
235 |
+
msgid "Uploaded"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/AlertManager.php:1162
|
239 |
+
msgid "Restored"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/AlertManager.php:1163
|
243 |
+
msgid "Opened"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: classes/AlertManager.php:1164
|
247 |
+
msgid "Viewed"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: classes/AlertManager.php:1165
|
251 |
+
msgid "Started"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: classes/AlertManager.php:1166
|
255 |
+
msgid "Stopped"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: classes/AlertManager.php:1167
|
259 |
+
msgid "Removed"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: classes/AlertManager.php:1168
|
263 |
+
msgid "Unblocked"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: classes/AlertManager.php:1169
|
267 |
+
msgid "Renamed"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: classes/AlertManager.php:1170
|
271 |
+
msgid "Duplicated"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: classes/AlertManager.php:1171
|
275 |
+
msgid "Submitted"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: classes/AlertManager.php:1172
|
279 |
+
msgid "Revoked"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: classes/AlertManager.php:1189
|
283 |
+
msgid "unknown type"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: classes/AlertManager.php:1437 classes/Views/ToggleAlerts.php:211
|
287 |
+
#: classes/Views/ToggleAlerts.php:244 defaults.php:1508
|
288 |
+
msgid "Pages"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: classes/AlertManager.php:1437 classes/Views/ToggleAlerts.php:211
|
292 |
+
#: classes/Views/ToggleAlerts.php:244 defaults.php:1323
|
293 |
+
msgid "Custom Post Types"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: classes/AlertManager.php:1658
|
297 |
+
msgid "System Activity"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: classes/AlertManager.php:1722 classes/ConstantManager.php:147
|
301 |
+
msgid "Unknown error code."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: classes/AlertManager.php:1729 classes/AlertManager.php:1741
|
305 |
+
msgid "Unknown Site"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: classes/AuditLogGridView.php:112 classes/AuditLogListView.php:103
|
309 |
+
msgid "No events so far."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: classes/AuditLogGridView.php:149 classes/AuditLogListView.php:147
|
313 |
+
msgid "List View"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: classes/AuditLogGridView.php:150 classes/AuditLogListView.php:148
|
317 |
+
msgid "Grid View"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: classes/AuditLogGridView.php:175 classes/AuditLogListView.php:173
|
321 |
+
msgid "Show "
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: classes/AuditLogGridView.php:183 classes/AuditLogListView.php:181
|
325 |
+
msgid " Items"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/AuditLogGridView.php:190 classes/AuditLogListView.php:188
|
329 |
+
msgid "— End of Activity Log —"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: classes/AuditLogGridView.php:211 classes/AuditLogListView.php:209
|
333 |
+
#: classes/Views/AuditLog.php:589
|
334 |
+
msgid "All Sites"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: classes/AuditLogGridView.php:271 classes/AuditLogGridView.php:295
|
338 |
+
#: classes/AuditLogListView.php:269 classes/AuditLogListView.php:297
|
339 |
+
#: defaults.php:713 defaults.php:728
|
340 |
+
msgid "ID"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: classes/AuditLogGridView.php:272 classes/AuditLogGridView.php:298
|
344 |
+
#: classes/AuditLogListView.php:270 classes/AuditLogListView.php:300
|
345 |
+
#: classes/Views/Settings.php:1082 classes/Views/ToggleAlerts.php:299
|
346 |
+
msgid "Severity"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: classes/AuditLogGridView.php:273
|
350 |
+
msgid "Info"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: classes/AuditLogGridView.php:278 classes/AuditLogListView.php:280
|
354 |
+
#: classes/AuditLogListView.php:312
|
355 |
+
msgid "Site"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: classes/AuditLogGridView.php:281 classes/AuditLogGridView.php:304
|
359 |
+
#: classes/AuditLogListView.php:283 classes/AuditLogListView.php:321
|
360 |
+
msgid "Message"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: classes/AuditLogGridView.php:301
|
364 |
+
msgid "Grid"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: classes/AuditLogGridView.php:369 classes/AuditLogListView.php:398
|
368 |
+
msgid "Disable this type of events."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: classes/AuditLogGridView.php:391
|
372 |
+
msgid "Message:"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: classes/AuditLogGridView.php:401 classes/AuditLogGridView.php:405
|
376 |
+
#: classes/AuditLogListView.php:413 classes/Utilities/UserUtils.php:149
|
377 |
+
msgid "Unknown"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: classes/AuditLogGridView.php:430 classes/AuditLogListView.php:438
|
381 |
+
#: defaults.php:2063
|
382 |
+
msgid "Plugins"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: classes/AuditLogGridView.php:433 classes/AuditLogListView.php:440
|
386 |
+
msgid "Unregistered user"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: classes/AuditLogGridView.php:470 classes/AuditLogGridView.php:483
|
390 |
+
#: classes/AuditLogListView.php:473 classes/AuditLogListView.php:486
|
391 |
+
msgid "Show me all activity originating from this IP Address"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: classes/AuditLogGridView.php:512
|
395 |
+
msgid "Date:"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: classes/AuditLogGridView.php:516
|
399 |
+
msgid "Time:"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: classes/AuditLogGridView.php:520
|
403 |
+
msgid "User:"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: classes/AuditLogGridView.php:524
|
407 |
+
msgid "IP:"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: classes/AuditLogGridView.php:528
|
411 |
+
msgid "Object:"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: classes/AuditLogGridView.php:532
|
415 |
+
msgid "Event Type:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: classes/AuditLogGridView.php:540 classes/AuditLogListView.php:518
|
419 |
+
msgid "View all details of this change"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: classes/AuditLogGridView.php:541 classes/AuditLogListView.php:519
|
423 |
+
msgid "Alert Data Inspector"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: classes/AuditLogGridView.php:701 classes/AuditLogListView.php:683
|
427 |
+
msgid "Select All"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: classes/AuditLogListView.php:271 classes/AuditLogListView.php:303
|
431 |
+
msgid "Date"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: classes/AuditLogListView.php:273 classes/AuditLogListView.php:309
|
435 |
+
msgid "IP"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: classes/AuditLogListView.php:274 classes/AuditLogListView.php:315
|
439 |
+
#: classes/WidgetManager.php:77
|
440 |
+
msgid "Object"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: classes/AuditLogListView.php:275 classes/AuditLogListView.php:318
|
444 |
+
#: classes/WidgetManager.php:78
|
445 |
+
msgid "Event Type"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: classes/AuditLogListView.php:382 classes/Models/Occurrence.php:90
|
449 |
+
msgid "Alert message not found."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: classes/AuditLogListView.php:383 classes/Models/Occurrence.php:91
|
453 |
+
msgid "Alert description not found."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: classes/Connector/MySQLDB.php:60
|
457 |
+
msgid "Error establishing a database connection. DB username or password are not valid."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: classes/Connector/MySQLDB.php:68
|
461 |
+
#, php-format
|
462 |
+
msgid "Code %1$d: %2$s"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: classes/ConstantManager.php:159 classes/ConstantManager.php:165
|
466 |
+
#: classes/Views/ToggleAlerts.php:430 classes/Views/ToggleAlerts.php:436
|
467 |
+
msgid "Critical"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: classes/ConstantManager.php:161 classes/Views/ToggleAlerts.php:432
|
471 |
+
msgid "Warning"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: classes/ConstantManager.php:163 classes/Views/ToggleAlerts.php:434
|
475 |
+
#: classes/Views/ToggleAlerts.php:446
|
476 |
+
msgid "Notification"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: classes/ConstantManager.php:167 classes/Views/ToggleAlerts.php:438
|
480 |
+
msgid "High"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: classes/ConstantManager.php:169 classes/Views/ToggleAlerts.php:440
|
484 |
+
msgid "Medium"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: classes/ConstantManager.php:171 classes/Views/ToggleAlerts.php:442
|
488 |
+
msgid "Low"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: classes/ConstantManager.php:173 classes/Views/ToggleAlerts.php:444
|
492 |
+
msgid "Informational"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: classes/Models/Occurrence.php:206
|
496 |
+
msgid "WFCM"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: classes/Models/Occurrence.php:231
|
500 |
+
#, php-format
|
501 |
+
msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: classes/Sensors/Content.php:735
|
505 |
+
msgid "Default template"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: classes/Sensors/Content.php:736
|
509 |
+
msgid "Default"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: classes/Sensors/Content.php:778
|
513 |
+
msgid "No previous image"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: classes/Sensors/Content.php:779
|
517 |
+
msgid "No image"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: classes/Sensors/Content.php:1133 classes/Sensors/Content.php:1141
|
521 |
+
msgid "Password Protected"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: classes/Sensors/Content.php:1135 classes/Sensors/Content.php:1143
|
525 |
+
msgid "Private"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: classes/Sensors/Content.php:1137 classes/Sensors/Content.php:1145
|
529 |
+
msgid "Public"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: classes/Sensors/Content.php:1308
|
533 |
+
msgid "no tags"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: classes/Sensors/Multisite.php:80
|
537 |
+
msgid "disabled"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: classes/Sensors/Multisite.php:81
|
541 |
+
msgid "user accounts only"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: classes/Sensors/Multisite.php:82
|
545 |
+
msgid "users can register new sites"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: classes/Sensors/Multisite.php:83
|
549 |
+
msgid "sites & users can be registered"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: classes/Sensors/System.php:200 classes/Sensors/System.php:201
|
553 |
+
msgid "latest posts"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: classes/Sensors/System.php:200 classes/Sensors/System.php:201
|
557 |
+
msgid "static page"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: classes/Sensors/System.php:380
|
561 |
+
msgid "automatically update to all new versions of WordPress"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: classes/Sensors/System.php:380
|
565 |
+
msgid "automatically update maintenance and security releases only"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: classes/Settings.php:374
|
569 |
+
msgid "This function is deprecated"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: classes/Settings.php:1914
|
573 |
+
msgid "Root directory of WordPress (excluding sub directories)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: classes/Settings.php:1915
|
577 |
+
msgid "WP Admin directory (/wp-admin/)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: classes/Settings.php:1916
|
581 |
+
msgid "WP Includes directory (/wp-includes/)"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: classes/Settings.php:1917
|
585 |
+
msgid "/wp-content/ directory (excluding plugins, themes & uploads directories)"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: classes/Settings.php:1918
|
589 |
+
msgid "Themes directory (/wp-content/themes/)"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: classes/Settings.php:1919
|
593 |
+
msgid "Plugins directory (/wp-content/plugins/)"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: classes/Settings.php:1920
|
597 |
+
msgid "Uploads directory (/wp-content/uploads/)"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: classes/Settings.php:1925
|
601 |
+
msgid "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: classes/Settings.php:2079
|
605 |
+
msgid "None provided"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: classes/ThirdPartyExtensions/GravityFormsExtension.php:16
|
609 |
+
msgid "Keep a record of when someone adds, modifies or deletes forms, entries and more in the Gravity Forms plugin."
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: classes/Utilities/Emailer.php:54
|
613 |
+
#, php-format
|
614 |
+
msgid "WP Activity Log plugin disabled on %s"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: classes/Utilities/Emailer.php:57
|
618 |
+
msgid "Hello admin,"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: classes/Utilities/Emailer.php:62
|
622 |
+
#, php-format
|
623 |
+
msgid "This is a notification to let you know that the user %1$s has deactivated the plugin WP Activity Log on the website %2$s on %3$s."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: classes/Utilities/PluginInstallAndActivate.php:82
|
627 |
+
msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: classes/Utilities/PluginInstallAndActivate.php:101
|
631 |
+
#: classes/Views/SetupWizard.php:834
|
632 |
+
msgid "Extension for "
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: classes/Utilities/PluginInstallAndActivate.php:106
|
636 |
+
#: classes/Views/SetupWizard.php:839
|
637 |
+
msgid "Extension installed, activate now?"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: classes/Utilities/PluginInstallAndActivate.php:108
|
641 |
+
#: classes/Views/SetupWizard.php:272 classes/Views/SetupWizard.php:841
|
642 |
+
#: wp-security-audit-log.php:1309
|
643 |
+
msgid "Extension installed"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: classes/Utilities/PluginInstallAndActivate.php:110
|
647 |
+
#: classes/Views/SetupWizard.php:843
|
648 |
+
msgid "Install Extension"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: classes/Utilities/PluginInstallerAction.php:80
|
652 |
+
msgid "Tried to install a zip or slug that was not in the allowed list"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: classes/Utilities/UserUtils.php:91
|
656 |
+
msgid "Username: "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: classes/Utilities/UserUtils.php:92
|
660 |
+
msgid "First name: "
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: classes/Utilities/UserUtils.php:93
|
664 |
+
msgid "Last Name: "
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: classes/Utilities/UserUtils.php:94
|
668 |
+
msgid "Email: "
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: classes/Utilities/UserUtils.php:95
|
672 |
+
msgid "Nickname: "
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: classes/ViewManager.php:142
|
676 |
+
msgid "WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade that plugin."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: classes/ViewManager.php:284
|
680 |
+
msgid "Free Premium Trial"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: classes/Views/AuditLog.php:98
|
684 |
+
msgid "Get email notifications about website changes, view logged-in users, do granular log searches, create detailed reports, and more."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: classes/Views/AuditLog.php:99
|
688 |
+
msgid "Upgrade to premium today and get more out of your activity logs!"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: classes/Views/AuditLog.php:102
|
692 |
+
msgid "Instant SMS & email alerts, search & filters, reports, users sessions management and much more!"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: classes/Views/AuditLog.php:103
|
696 |
+
msgid "Upgrade to premium to get more out of your activity logs!"
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: classes/Views/AuditLog.php:106
|
700 |
+
msgid "See who logged in on your site in real-time, generate reports, get SMS & email alerts of critical changes and more!"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: classes/Views/AuditLog.php:107
|
704 |
+
msgid "Unlock these and other powerful features with WP Activity Log Premium."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: classes/Views/AuditLog.php:158
|
708 |
+
msgid "Learn more"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: classes/Views/AuditLog.php:187
|
712 |
+
msgid "UPGRADE NOW"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: classes/Views/AuditLog.php:189
|
716 |
+
msgid "Start Free Trial"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: classes/Views/AuditLog.php:190
|
720 |
+
msgid "Dismiss the banner"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: classes/Views/AuditLog.php:190
|
724 |
+
msgid "Close"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: classes/Views/AuditLog.php:213
|
728 |
+
msgid "Help WP Activity Log improve."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: classes/Views/AuditLog.php:214
|
732 |
+
msgid "You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: classes/Views/AuditLog.php:214
|
736 |
+
msgid "Read more about what data we collect and how."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: classes/Views/AuditLog.php:216
|
740 |
+
msgid "Sure, opt-in"
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: classes/Views/AuditLog.php:217
|
744 |
+
msgid "No, thank you"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: classes/Views/AuditLog.php:272
|
748 |
+
msgid "We noticed you have"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: classes/Views/AuditLog.php:274
|
752 |
+
msgid "installed."
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: classes/Views/AuditLog.php:276
|
756 |
+
msgid "Install extension"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: classes/Views/AuditLog.php:321
|
760 |
+
msgid "Activity Log Viewer"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: classes/Views/AuditLog.php:348
|
764 |
+
msgid "Log Viewer"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: classes/Views/AuditLog.php:505 classes/Views/Settings.php:324
|
768 |
+
#: classes/Views/ToggleAlerts.php:109
|
769 |
+
msgid "You do not have sufficient permissions to access this page."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: classes/Views/AuditLog.php:554
|
773 |
+
msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: classes/Views/AuditLog.php:556 classes/Views/Settings.php:532
|
777 |
+
#: classes/Views/Settings.php:559 classes/Views/Settings.php:625
|
778 |
+
#: classes/Views/Settings.php:683 classes/Views/Settings.php:1118
|
779 |
+
#: classes/Views/Settings.php:1402 classes/Views/Settings.php:1443
|
780 |
+
#: classes/Views/Settings.php:1464 classes/Views/Settings.php:1474
|
781 |
+
#: classes/Views/SetupWizard.php:562
|
782 |
+
msgid "Yes"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: classes/Views/AuditLog.php:557 classes/Views/Settings.php:537
|
786 |
+
#: classes/Views/Settings.php:564 classes/Views/Settings.php:655
|
787 |
+
#: classes/Views/Settings.php:693 classes/Views/Settings.php:1123
|
788 |
+
#: classes/Views/Settings.php:1409 classes/Views/Settings.php:1450
|
789 |
+
#: classes/Views/Settings.php:1465 classes/Views/Settings.php:1475
|
790 |
+
#: classes/Views/SetupWizard.php:567
|
791 |
+
msgid "No"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: classes/Views/AuditLog.php:588
|
795 |
+
msgid "Please enter the number of alerts you would like to see on one page:"
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: classes/Views/AuditLog.php:590
|
799 |
+
msgid "No Results"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: classes/Views/AuditLog.php:727 classes/Views/AuditLog.php:770
|
803 |
+
#: classes/Views/AuditLog.php:1048 classes/Views/AuditLog.php:1110
|
804 |
+
#: classes/Views/AuditLog.php:1163 classes/Views/Settings.php:239
|
805 |
+
#: classes/Views/Settings.php:1759 classes/Views/SetupWizard.php:96
|
806 |
+
msgid "Nonce verification failed."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: classes/Views/AuditLog.php:745
|
810 |
+
msgid "No users found."
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: classes/Views/AuditLog.php:810
|
814 |
+
msgid "Freemius opt choice selected."
|
|
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: classes/Views/AuditLog.php:817
|
818 |
+
msgid "Freemius opt choice not found."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: classes/Views/AuditLog.php:913
|
822 |
+
#, php-format
|
823 |
+
msgid "<br>An error occurred when trying to install and activate the plugin. Please try install it again from the %1$sevent settings%2$s page."
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: classes/Views/AuditLog.php:1012
|
827 |
+
msgid "WordPress Activity Log"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: classes/Views/AuditLog.php:1013
|
831 |
+
msgid "When a user makes a change on your website the plugin will keep a record of that event here. Right now there is nothing because this is a new install."
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: classes/Views/AuditLog.php:1014
|
835 |
+
msgid "Thank you for using WP Activity Log"
|
|
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: classes/Views/AuditLog.php:1037 classes/Views/AuditLog.php:1147
|
839 |
+
msgid "You do not have sufficient permissions to dismiss this notice."
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: classes/Views/AuditLog.php:1105
|
843 |
+
msgid "Access Denied"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: classes/Views/AuditLog.php:1200
|
847 |
+
#, php-format
|
848 |
+
msgid "Install the activity log extension for %1$s for more detailed logging of changes done in %2$s."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/Views/EmailNotifications.php:28
|
852 |
+
msgid "Notifications Extension"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: classes/Views/EmailNotifications.php:35
|
856 |
+
msgid "Notifications ⇪"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: classes/Views/EmailNotifications.php:49
|
860 |
+
msgid "Email & SMS Notifications"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: classes/Views/EmailNotifications.php:50
|
864 |
+
msgid "Get instantly alerted of important changes on your site via email notifications & SMS messages. Upgrade to premium and:"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: classes/Views/EmailNotifications.php:53
|
868 |
+
msgid "Configure any type of email notification"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: classes/Views/EmailNotifications.php:54
|
872 |
+
msgid "Configure SMS messages for instant critical alerts"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: classes/Views/EmailNotifications.php:55
|
876 |
+
msgid "Receive notifications for when users login, change their password or change content"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: classes/Views/EmailNotifications.php:56
|
880 |
+
msgid "Get alerted of site changes like plugin installs, theme changes etc"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: classes/Views/EmailNotifications.php:57
|
884 |
+
msgid "Enable built-in security email notifications of suspicious user activity"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: classes/Views/EmailNotifications.php:58
|
888 |
+
msgid "Personalize all email and SMS templates"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: classes/Views/EmailNotifications.php:59
|
892 |
+
msgid "Use the trigger builder to configure any type of notification criteria!"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: classes/Views/EmailNotifications.php:61
|
896 |
+
msgid "Getting started is really easy. You can use one of the plugin’s built-in notifications or create your own using the easy to use trigger builder."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: classes/Views/EmailNotifications.php:64
|
900 |
+
msgid "Email and SMS notifications instantly alert you of important changes on your WordPress site."
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: classes/Views/EmailNotifications.php:68
|
904 |
+
msgid "Easily enable any of the built-in security and user management notifications."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: classes/Views/EmailNotifications.php:72
|
908 |
+
msgid "Use the trigger builder to configure any type of email and SMS notification to get instantly alerted of site changes that are important to you and your business."
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: classes/Views/EmailNotifications.php:76
|
912 |
+
msgid "All email and SMS templates are configurable, allowing you to personalize them."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: classes/Views/ExternalDB.php:28
|
916 |
+
msgid "External DB Extension"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: classes/Views/ExternalDB.php:35
|
920 |
+
msgid "Integrations ⇪"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: classes/Views/ExternalDB.php:49
|
924 |
+
msgid "Activity log database & integration tools"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: classes/Views/ExternalDB.php:50
|
928 |
+
msgid "There are several benefits to segregating the logs from the main site database, and to be able to mirror the logs to third party and centralized business solutions. Upgrade to premium and:"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: classes/Views/ExternalDB.php:53
|
932 |
+
msgid "Store the audit logs of your sites on an external database"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: classes/Views/ExternalDB.php:54
|
936 |
+
msgid "Configuring archiving and store older log data in a segregated database"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: classes/Views/ExternalDB.php:55
|
940 |
+
msgid "Mirror the logs to syslog, Slack, Papertrail and central business communication services"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: classes/Views/ExternalDB.php:56
|
944 |
+
msgid "Configure filters to filter what is mirrored and archived in the databases and services"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: classes/Views/ExternalDB.php:61
|
948 |
+
msgid "Easily configure integration and database connections thanks to a user friendly wizard."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: classes/Views/ExternalDB.php:65
|
952 |
+
msgid "Configure activity log filters for third party services connections."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: classes/Views/ExternalDB.php:69
|
956 |
+
msgid "Configure an unlimited number of connections to different databases and third party services."
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: classes/Views/Help.php:62 classes/Views/Help.php:113
|
960 |
+
msgid "Help"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: classes/Views/Help.php:71 classes/Views/Help.php:242
|
964 |
+
msgid "Contact Us"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: classes/Views/Help.php:77 classes/Views/Help.php:264
|
968 |
+
msgid "System Info"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: classes/Views/Help.php:127
|
972 |
+
msgid "Help & Contact Us"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: classes/Views/Help.php:187
|
976 |
+
msgid "Getting Started"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: classes/Views/Help.php:188
|
980 |
+
msgid "Getting started with WP Activity Log is really easy; once the plugin is installed it will automatically keep a log of everything that is happening on your website and you do not need to do anything. Watch the video below for a quick overview of the plugin."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: classes/Views/Help.php:192
|
984 |
+
msgid "Plugin Support"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: classes/Views/Help.php:194
|
988 |
+
msgid "Have you encountered or noticed any issues while using WP Activity Log plugin?"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: classes/Views/Help.php:195
|
992 |
+
msgid "Or you want to report something to us? Click any of the options below to post on the plugin's forum or contact our support directly."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: classes/Views/Help.php:197
|
996 |
+
msgid "Free Support Forum"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: classes/Views/Help.php:199
|
1000 |
+
msgid "Free Support Email"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: classes/Views/Help.php:203
|
1004 |
+
msgid "Plugin Documentation"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: classes/Views/Help.php:205
|
1008 |
+
msgid "For more technical information about the WP Activity Log plugin please visit the plugin’s knowledge base."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: classes/Views/Help.php:206
|
1012 |
+
msgid "Refer to the list of WordPress security events for a complete list of Events and IDs that the plugin uses to keep a log of all the changes in the WordPress activity log."
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: classes/Views/Help.php:208
|
1016 |
+
msgid "Plugin Website"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: classes/Views/Help.php:210
|
1020 |
+
msgid "Knowledge Base"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: classes/Views/Help.php:212
|
1024 |
+
msgid "List of activity logs event IDs"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: classes/Views/Help.php:216
|
1028 |
+
msgid "Rate WP Activity Log"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: classes/Views/Help.php:218
|
1032 |
+
msgid "We work really hard to deliver a plugin that enables you to keep a record of all the changes that are happening on your WordPress."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: classes/Views/Help.php:219
|
1036 |
+
msgid "It takes thousands of man-hours every year and endless amount of dedication to research, develop and maintain the free edition of WP Activity Log."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: classes/Views/Help.php:220
|
1040 |
+
msgid "Therefore if you like what you see, and find WP Activity Log useful we ask you nothing more than to please rate our plugin."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: classes/Views/Help.php:221
|
1044 |
+
msgid "We appreciate every star!"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: classes/Views/Help.php:231
|
1048 |
+
msgid "Rate Plugin"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: classes/Views/Help.php:282
|
1052 |
+
msgid "Enforce strong password policies on WordPress"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: classes/Views/Help.php:288
|
1056 |
+
msgid "Automatically identify unauthorized file changes on WordPress"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: classes/Views/Help.php:294
|
1060 |
+
msgid "Add an extra layer of security to your login pages with 2FA & require your users to use it."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: classes/Views/Help.php:300
|
1064 |
+
msgid "See the child sites activity logs from the central MainWP dashboard"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: classes/Views/Help.php:306
|
1068 |
+
msgid "Our other WordPress plugins"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: classes/Views/Help.php:317
|
1072 |
+
msgid "LEARN MORE"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: classes/Views/LogInUsers.php:28
|
1076 |
+
msgid "User Sessions Management Extension"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: classes/Views/LogInUsers.php:35
|
1080 |
+
msgid "Logged In Users ⇪"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: classes/Views/LogInUsers.php:49
|
1084 |
+
msgid "Real-Time Users Sessions Management"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: classes/Views/LogInUsers.php:50
|
1088 |
+
msgid "Better manage your users’ logins and sessions. Upgrade to premium and:"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: classes/Views/LogInUsers.php:54
|
1092 |
+
msgid "See who is logged in to your site"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: classes/Views/LogInUsers.php:55
|
1096 |
+
msgid "When they logged in and from where"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: classes/Views/LogInUsers.php:56
|
1100 |
+
msgid "The last change they have done in real-time"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: classes/Views/LogInUsers.php:57
|
1104 |
+
msgid "Terminate any users’ session with a click of a button"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: classes/Views/LogInUsers.php:58
|
1108 |
+
msgid "Limit or block multiple sessions for the same user"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: classes/Views/LogInUsers.php:59
|
1112 |
+
msgid "Get alerted of multiple same user sessions"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: classes/Views/LogInUsers.php:63
|
1116 |
+
msgid "See who is logged in to your WordPress site and multisite network in real-time."
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: classes/Views/LogInUsers.php:67
|
1120 |
+
msgid "Limit, manage and block multiple same user sessions easily."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: classes/Views/Reports.php:28
|
1124 |
+
msgid "Reports Extension"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: classes/Views/Reports.php:35
|
1128 |
+
msgid "Reports ⇪"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: classes/Views/Reports.php:49
|
1132 |
+
msgid "Individual, Scheduled & Automated Reports"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: classes/Views/Reports.php:50
|
1136 |
+
msgid "Many are not fans of reports, however reports are vital in business. With them you can make informed decisions that allow you to improve user productivity and the business. Upgrade to Premium so you can:"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: classes/Views/Reports.php:53
|
1140 |
+
msgid "Generate any type of user and site (in multisite) activity report"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: classes/Views/Reports.php:54
|
1144 |
+
msgid "Automate and schedule daily, weekly, monthly and quarterly reports"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: classes/Views/Reports.php:55
|
1148 |
+
msgid "Received reports automatically via email"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: classes/Views/Reports.php:56
|
1152 |
+
msgid "Create statistics reports about users’ views, logins, activity from IP addresses & more"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: classes/Views/Reports.php:58
|
1156 |
+
msgid "Reports are vital to the success of your business and management of your site."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: classes/Views/Reports.php:61
|
1160 |
+
msgid "Generate a HTML or CSV report."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: classes/Views/Reports.php:65
|
1164 |
+
msgid "Easily configure a criteria for your reports."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: classes/Views/Reports.php:69
|
1168 |
+
msgid "Schedule reports that are sent to you by email automatically."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: classes/Views/Search.php:28
|
1172 |
+
msgid "Search Extension"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: classes/Views/Search.php:35
|
1176 |
+
msgid "Search ⇪"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: classes/Views/Search.php:49
|
1180 |
+
msgid "Search & Filters for the Activity Log"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: classes/Views/Search.php:50
|
1184 |
+
msgid "You can find all the information you want in the activity log, if you know what you are looking for and have the right tools. Upgrade to premium so you can:"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: classes/Views/Search.php:53
|
1188 |
+
msgid "Do text searches and use filters to fine tune the search results"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: classes/Views/Search.php:54
|
1192 |
+
msgid "Easily find when and who did a specific change on your site"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: classes/Views/Search.php:55
|
1196 |
+
msgid "Easily identify and track back suspicious user behaviour"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: classes/Views/Search.php:56
|
1200 |
+
msgid "Search for the cause of a problem and ease troubleshooting"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: classes/Views/Search.php:57
|
1204 |
+
msgid "Save search terms and filters for future use and improved productivity"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: classes/Views/Search.php:62
|
1208 |
+
msgid "Use the text search to find a specific change."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: classes/Views/Search.php:66
|
1212 |
+
msgid "Configure any filter you need to fine tune the search results and find what you are looking for with much less effort."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: classes/Views/Search.php:70
|
1216 |
+
msgid "Save search terms and filters to run the searches again in the future with just a single click."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: classes/Views/Settings.php:89
|
1220 |
+
msgid "General"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: classes/Views/Settings.php:96
|
1224 |
+
msgid "Activity log viewer"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: classes/Views/Settings.php:103
|
1228 |
+
msgid "File changes"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: classes/Views/Settings.php:109
|
1232 |
+
msgid "Exclude objects"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: classes/Views/Settings.php:116
|
1236 |
+
msgid "Advanced settings"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: classes/Views/Settings.php:165 classes/Views/Settings.php:179
|
1240 |
+
msgid "Settings"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: classes/Views/Settings.php:206
|
1244 |
+
msgid "Current user is not allowed to save settings."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: classes/Views/Settings.php:212
|
1248 |
+
msgid "Unknown settings tab."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: classes/Views/Settings.php:224 classes/Views/Settings.php:1769
|
1252 |
+
#: classes/Views/Settings.php:1792 classes/Views/SetupWizard.php:83
|
1253 |
+
msgid "Access Denied."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: classes/Views/Settings.php:249 classes/Views/SetupWizard.php:106
|
1257 |
+
msgid "Invalid input."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: classes/Views/Settings.php:336
|
1261 |
+
msgid "Message sent successfully."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: classes/Views/Settings.php:340 classes/Views/ToggleAlerts.php:126
|
1265 |
+
msgid "Settings have been saved."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: classes/Views/Settings.php:346 classes/Views/ToggleAlerts.php:132
|
1269 |
+
msgid "Error: "
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: classes/Views/Settings.php:358
|
1273 |
+
msgid "Old data successfully purged."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: classes/Views/Settings.php:364
|
1277 |
+
msgid "No data is old enough to be purged."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: classes/Views/Settings.php:395
|
1281 |
+
msgid "Send Message"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: classes/Views/Settings.php:405
|
1285 |
+
msgid "Do you want to remove all data when the plugin is deleted?"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: classes/Views/Settings.php:453
|
1289 |
+
msgid "Use infinite scroll or pagination for the event viewer?"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: classes/Views/Settings.php:458
|
1293 |
+
#, php-format
|
1294 |
+
msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: classes/Views/Settings.php:459
|
1298 |
+
msgid "(Premium feature)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: classes/Views/Settings.php:466
|
1302 |
+
msgid "Select event viewer view type:"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: classes/Views/Settings.php:471
|
1306 |
+
msgid "Infinite Scroll (Recommended)"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: classes/Views/Settings.php:476
|
1310 |
+
msgid "Pagination"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: classes/Views/Settings.php:487
|
1314 |
+
msgid "Do you want the activity log viewer to auto refresh?"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: classes/Views/Settings.php:488
|
1318 |
+
msgid "The activity log viewer auto refreshes every 30 seconds when opened so you can see the latest events as they happen almost in real time."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: classes/Views/Settings.php:492
|
1322 |
+
msgid "Refresh activity log viewer"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: classes/Views/Settings.php:498
|
1326 |
+
msgid "Auto refresh"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: classes/Views/Settings.php:503
|
1330 |
+
msgid "Do not auto refresh"
|
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: classes/Views/Settings.php:513
|
1334 |
+
msgid "Display latest events widget in Dashboard & Admin bar"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: classes/Views/Settings.php:518
|
1338 |
+
#, php-format
|
1339 |
+
msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: classes/Views/Settings.php:526
|
1343 |
+
msgid "Dashboard Widget"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: classes/Views/Settings.php:547
|
1347 |
+
msgid "Admin Bar Notification"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: classes/Views/Settings.php:550
|
1351 |
+
msgid "Admin Bar Notification (Premium)"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: classes/Views/Settings.php:574
|
1355 |
+
msgid "Admin Bar Notification Updates"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: classes/Views/Settings.php:577
|
1359 |
+
msgid "Admin Bar Notification Updates (Premium)"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: classes/Views/Settings.php:586
|
1363 |
+
msgid "Update in near real time"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: classes/Views/Settings.php:591
|
1367 |
+
msgid "Update only on page refreshes"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: classes/Views/Settings.php:601
|
1371 |
+
msgid "Add user notification on the WordPress login page"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: classes/Views/Settings.php:602
|
1375 |
+
msgid "Many compliance regulations (such as the GDPR) require website administrators to tell the users of their website that all the changes they do when logged in are being logged."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: classes/Views/Settings.php:606
|
1379 |
+
msgid "Login Page Notification"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: classes/Views/Settings.php:631
|
1383 |
+
msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: classes/Views/Settings.php:649
|
1387 |
+
msgid "<strong>Note: </strong>"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: classes/Views/Settings.php:649
|
1391 |
+
msgid "The only HTML code allowed in the login page notification is for links ( < a href >< /a > )."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: classes/Views/Settings.php:665
|
1395 |
+
msgid "Is your website running behind a firewall or reverse proxy?"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: classes/Views/Settings.php:670
|
1399 |
+
#, php-format
|
1400 |
+
msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: classes/Views/Settings.php:671 classes/Views/Settings.php:717
|
1404 |
+
#: classes/Views/Settings.php:772
|
1405 |
+
msgid "learn more"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: classes/Views/Settings.php:678
|
1409 |
+
msgid "Reverse Proxy / Firewall Options"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: classes/Views/Settings.php:688
|
1413 |
+
msgid "Filter internal IP addresses from the proxy headers. Enable this option only if you are\tare still seeing the internal IP addresses of the firewall or proxy."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: classes/Views/Settings.php:704
|
1417 |
+
msgid "Who can change the plugin settings?"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: classes/Views/Settings.php:716
|
1421 |
+
#, php-format
|
1422 |
+
msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: classes/Views/Settings.php:727
|
1426 |
+
msgid "Restrict plugin access"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: classes/Views/Settings.php:732 classes/Views/Settings.php:787
|
1430 |
+
msgid "Only me"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: classes/Views/Settings.php:739
|
1434 |
+
msgid "All superadmins"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: classes/Views/Settings.php:741
|
1438 |
+
msgid "All administrators"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: classes/Views/Settings.php:754
|
1442 |
+
msgid "Allow other users to view the activity log"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: classes/Views/Settings.php:766
|
1446 |
+
msgid "By default only super administrators and the child sites' administrators can view the WordPress activity log. Though you can change this by using the setting below."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: classes/Views/Settings.php:768
|
1450 |
+
msgid "By default only users with administrator role can view the WordPress activity log. To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: classes/Views/Settings.php:781 classes/Views/Settings.php:811
|
1454 |
+
msgid "Can view events"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: classes/Views/Settings.php:788
|
1458 |
+
msgid "Super administators only"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: classes/Views/Settings.php:789
|
1462 |
+
msgid "Super administators and site administrators"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: classes/Views/Settings.php:805
|
1466 |
+
msgid "To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: classes/Views/Settings.php:811
|
1470 |
+
msgid "Can also view events"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: classes/Views/Settings.php:817 classes/Views/Settings.php:1210
|
1474 |
+
#: classes/Views/Settings.php:1231 classes/Views/Settings.php:1252
|
1475 |
+
#: classes/Views/Settings.php:1274 classes/Views/Settings.php:1321
|
1476 |
+
msgid "Add"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: classes/Views/Settings.php:820
|
1480 |
+
msgid "Specify the username or the users which do not have an admin role but can also see the WordPress activity role. You can also specify roles."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: classes/Views/Settings.php:834 classes/Views/Settings.php:1217
|
1484 |
+
#: classes/Views/Settings.php:1238 classes/Views/Settings.php:1259
|
1485 |
+
#: classes/Views/Settings.php:1281 classes/Views/Settings.php:1329
|
1486 |
+
#: classes/Views/Settings.php:1583
|
1487 |
+
msgid "Remove"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: classes/Views/Settings.php:846
|
1491 |
+
msgid "Which email address should the plugin use as a from address?"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: classes/Views/Settings.php:847
|
1495 |
+
msgid "By default when the plugin sends an email notification it uses the email address specified in this website’s general settings. Though you can change the email address and display name from this section."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: classes/Views/Settings.php:851
|
1499 |
+
msgid "From Email & Name"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: classes/Views/Settings.php:857
|
1503 |
+
msgid "Use the email address from the WordPress general settings"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: classes/Views/Settings.php:862
|
1507 |
+
msgid "Use another email address"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: classes/Views/Settings.php:866
|
1511 |
+
msgid "Email Address"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: classes/Views/Settings.php:871
|
1515 |
+
msgid "Display Name"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: classes/Views/Settings.php:882
|
1519 |
+
msgid "Do you want to hide the plugin from the list of installed plugins?"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: classes/Views/Settings.php:883
|
1523 |
+
msgid "By default all installed plugins are listed in the plugins page. Set this option to Yes remove WP Activity Log from the list of installed plugins for users who are unable to access the WP Activity Log settings."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: classes/Views/Settings.php:887
|
1527 |
+
msgid "Hide Plugin in Plugins Page"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: classes/Views/Settings.php:892
|
1531 |
+
msgid "Yes, hide the plugin and any WP Activity Log plugin extensions from the list of installed plugins"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: classes/Views/Settings.php:897
|
1535 |
+
msgid "No, do not hide the plugin"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: classes/Views/Settings.php:963
|
1539 |
+
msgid "For how long do you want to keep the activity log events (Retention settings) ?"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: classes/Views/Settings.php:966
|
1543 |
+
msgid "The plugin uses an efficient way to store the activity log data in the WordPress database, though the more data you keep the more disk space will be required. "
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: classes/Views/Settings.php:967
|
1547 |
+
msgid "<a href=\"https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">Upgrade to Premium</a> to store the activity log data in an external database."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: classes/Views/Settings.php:980
|
1551 |
+
msgid "What timestamp you would like to see in the WordPress activity log?"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: classes/Views/Settings.php:981
|
1555 |
+
msgid "Note that the WordPress' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: classes/Views/Settings.php:985
|
1559 |
+
msgid "Events Timestamp"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: classes/Views/Settings.php:1005
|
1563 |
+
msgid "UTC"
|
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: classes/Views/Settings.php:1011
|
1567 |
+
msgid "Timezone configured on this WordPress website"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: classes/Views/Settings.php:1018
|
1571 |
+
msgid "Show Milliseconds"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: classes/Views/Settings.php:1025
|
1575 |
+
msgid "Show Milliseconds in list view"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: classes/Views/Settings.php:1035
|
1579 |
+
msgid "What user information should be displayed in the WordPress activity log?"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: classes/Views/Settings.php:1036
|
1583 |
+
msgid "Usernames might not be the same as a user's first and last name so it can be difficult to recognize whose user was that did a change. When there is no first & last name or public display name configured the plugin will revert back to the WordPress username."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: classes/Views/Settings.php:1040
|
1587 |
+
msgid "User information in Activity log"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: classes/Views/Settings.php:1046
|
1591 |
+
msgid "WordPress username"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: classes/Views/Settings.php:1051
|
1595 |
+
msgid "First name & last name"
|
|
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: classes/Views/Settings.php:1056
|
1599 |
+
msgid "Configured public display name"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: classes/Views/Settings.php:1066
|
1603 |
+
msgid "Select the columns to be displayed in the WordPress activity log"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: classes/Views/Settings.php:1067
|
1607 |
+
msgid "When you deselect a column it won’t be shown in the activity log viewer in both views. The data will still be recorded by the plugin."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: classes/Views/Settings.php:1071
|
1611 |
+
msgid "Activity log columns selection"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: classes/Views/Settings.php:1080
|
1615 |
+
msgid "Event ID"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: classes/Views/Settings.php:1084
|
1619 |
+
msgid "Date & Time"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: classes/Views/Settings.php:1088
|
1623 |
+
msgid "Source IP Address"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: classes/Views/Settings.php:1090
|
1627 |
+
msgid "Info (used in Grid view mode only)"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: classes/Views/Settings.php:1106
|
1631 |
+
msgid "Do you want to keep a log of WordPress background activity?"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: classes/Views/Settings.php:1108
|
1635 |
+
msgid "WordPress does a lot of things in the background that you do not necessarily need to know about, such as; deletion of post revisions, deletion of auto saved drafts etc. By default the plugin does not report them since there might be a lot and are irrelevant to the user."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: classes/Views/Settings.php:1113
|
1639 |
+
msgid "Enable Events for WordPress Background Activity"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: classes/Views/Settings.php:1172 classes/Views/ToggleAlerts.php:522
|
1643 |
+
msgid "Website File Changes Monitor"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: classes/Views/Settings.php:1173 classes/Views/ToggleAlerts.php:523
|
1647 |
+
msgid "To keep a log of file changes please install Website File Changes Monitor, a plugin which is also developed by us."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: classes/Views/Settings.php:1174 classes/Views/ToggleAlerts.php:524
|
1651 |
+
msgid "Install plugin now"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: classes/Views/Settings.php:1174 classes/Views/ToggleAlerts.php:524
|
1655 |
+
msgid "Learn More"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: classes/Views/Settings.php:1188
|
1659 |
+
msgid "Configure how often file changes scan run and other settings from the"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: classes/Views/Settings.php:1188
|
1663 |
+
msgid "Website File Changes plugin settings"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: classes/Views/Settings.php:1202
|
1667 |
+
msgid "By default the plugin keeps a log of all user changes done on your WordPress website. Use the setting below to exclude any objects from the activity log. When an object is excluded from the activity log, any event in which that object is referred will not be logged in the activity log."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: classes/Views/Settings.php:1206
|
1671 |
+
msgid "Exclude Users:"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: classes/Views/Settings.php:1227
|
1675 |
+
msgid "Exclude Roles:"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: classes/Views/Settings.php:1248
|
1679 |
+
msgid "Exclude IP Address(es):"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: classes/Views/Settings.php:1264
|
1683 |
+
msgid "You can exclude an individual IP address or a range of IP addresses. To exclude a range use the following format: [first IP]-[last octet of the last IP]. Example: 172.16.180.6-127."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: classes/Views/Settings.php:1270
|
1687 |
+
msgid "Exclude Post Type:"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: classes/Views/Settings.php:1286
|
1691 |
+
msgid "WordPress has the post and page post types by default though your website might use more post types (custom post types). You can exclude all post types, including the default WordPress ones."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: classes/Views/Settings.php:1293
|
1695 |
+
msgid "Exclude custom post fields:"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: classes/Views/Settings.php:1301
|
1699 |
+
msgid "Exclude custom user fields:"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: classes/Views/Settings.php:1334
|
1703 |
+
msgid "You can use the * wildcard to exclude multiple matching custom fields. For example to exclude all custom fields starting with wp123 enter wp123*"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: classes/Views/Settings.php:1361
|
1707 |
+
msgid "These settings are for advanced users."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: classes/Views/Settings.php:1362
|
1711 |
+
msgid "If you have any questions <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">contact us</a>."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: classes/Views/Settings.php:1365
|
1715 |
+
msgid "Reset plugin settings to default"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: classes/Views/Settings.php:1366
|
1719 |
+
msgid "Use this button to <em>factory reset</em> the plugin. This means that all the configured settings will be reset to default and all email notifications, scheduled reports, external database / third party services connections, archiving and mirroring rule will be deleted. NOTE: the activity log data will not be purged. Use the setting below to purge the activity log."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: classes/Views/Settings.php:1370
|
1723 |
+
msgid "Reset Settings"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: classes/Views/Settings.php:1372
|
1727 |
+
msgid "RESET"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: classes/Views/Settings.php:1378
|
1731 |
+
msgid "Purge the WordPress activity log"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: classes/Views/Settings.php:1379
|
1735 |
+
msgid "Click the Purge button below to delete all the data from the WordPress activity log and start afresh."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: classes/Views/Settings.php:1383
|
1739 |
+
msgid "Purge Activity Log"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: classes/Views/Settings.php:1385
|
1743 |
+
msgid "PURGE"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: classes/Views/Settings.php:1392
|
1747 |
+
msgid "MainWP Child Site Stealth Mode"
|
|
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: classes/Views/Settings.php:1393
|
1751 |
+
msgid "This option is enabled automatically when the plugin detects the MainWP Child plugin on the site. When this setting is enabled plugin access is restricted to the administrator who installs the plugin, the plugin is not shown in the list of installed plugins and no admin notifications are shown. Disable this option to change the plugin to the default setup."
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: classes/Views/Settings.php:1397
|
1755 |
+
msgid "Enable MainWP Child Site Stealth Mode"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: classes/Views/Settings.php:1417
|
1759 |
+
msgid "Admin blocking plugins support"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: classes/Views/Settings.php:1422
|
1763 |
+
msgid "Enable early plugin loading on sites that use admin blocking plugins"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: classes/Views/Settings.php:1431
|
1767 |
+
msgid "Do you want to delete the plugin data from the database upon uninstall?"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: classes/Views/Settings.php:1432
|
1771 |
+
msgid "The plugin saves the activity log data and settings in the WordPress database. By default upon uninstalling the plugin the data is kept in the database so if it is installed again, you can still access the data. If the data is deleted it is not possible to recover it so you won't be able to access it again even when you reinstall the plugin."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: classes/Views/Settings.php:1436
|
1775 |
+
msgid "Remove Data on Uninstall"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: classes/Views/Settings.php:1461
|
1779 |
+
msgid "Are you sure you want to reset all the plugin settings to default? This action cannot be undone."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: classes/Views/Settings.php:1471
|
1783 |
+
msgid "Are you sure you want to purge all the activity log data?"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: classes/Views/Settings.php:1495
|
1787 |
+
msgid "MainWP Child plugin is not active on this website."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: classes/Views/Settings.php:1576
|
1791 |
+
msgid "The specified value is not a valid URL!"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: classes/Views/Settings.php:1577
|
1795 |
+
msgid "The specified value is not a valid post type!"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: classes/Views/Settings.php:1578
|
1799 |
+
msgid "The specified value is not a valid IP address!"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: classes/Views/Settings.php:1579
|
1803 |
+
msgid "The specified value is not a user nor a role!"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: classes/Views/Settings.php:1580
|
1807 |
+
msgid "Filename cannot be added because it contains invalid characters."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: classes/Views/Settings.php:1581
|
1811 |
+
msgid "File extension cannot be added because it contains invalid characters."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: classes/Views/Settings.php:1582
|
1815 |
+
msgid "Directory cannot be added because it contains invalid characters."
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: classes/Views/Settings.php:1584
|
1819 |
+
msgid "Please save any changes before switching tabs."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: classes/Views/Settings.php:1775 classes/Views/Settings.php:1798
|
1823 |
+
msgid "Nonce Verification Failed."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: classes/Views/Settings.php:1783
|
1827 |
+
msgid "Plugin settings have been reset."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: classes/Views/Settings.php:1807
|
1831 |
+
msgid "Tables has been reset."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: classes/Views/Settings.php:1809
|
1835 |
+
msgid "Reset query failed."
|
|
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: classes/Views/Settings.php:1822
|
1839 |
+
msgid "Activity log retention"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: classes/Views/Settings.php:1828
|
1843 |
+
msgid "Keep all data"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: classes/Views/Settings.php:1844
|
1847 |
+
msgid "Days"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: classes/Views/Settings.php:1845
|
1851 |
+
msgid "Months"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: classes/Views/Settings.php:1846
|
1855 |
+
msgid "Years"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: classes/Views/Settings.php:1861
|
1859 |
+
msgid "Delete events older than"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: classes/Views/Settings.php:1879
|
1863 |
+
msgid "The next scheduled purging of activity log data that is older than "
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: classes/Views/Settings.php:1886
|
1867 |
+
msgid "You can run the purging process now by clicking the button below."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: classes/Views/Settings.php:1890
|
1871 |
+
msgid "Purge Old Data"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: classes/Views/SetupWizard.php:178
|
1875 |
+
msgid "Welcome"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: classes/Views/SetupWizard.php:182
|
1879 |
+
msgid "Log Details"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: classes/Views/SetupWizard.php:187
|
1883 |
+
msgid "Log In"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: classes/Views/SetupWizard.php:192
|
1887 |
+
msgid "User Registrations"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: classes/Views/SetupWizard.php:197
|
1891 |
+
msgid "Log Retention"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: classes/Views/SetupWizard.php:202 classes/Views/SetupWizard.php:741
|
1895 |
+
#: classes/Views/SetupWizard.php:742
|
1896 |
+
msgid "Finish"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: classes/Views/SetupWizard.php:262
|
1900 |
+
msgid "Specified value in not a user."
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: classes/Views/SetupWizard.php:263
|
1904 |
+
msgid "Specified value in not a role."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: classes/Views/SetupWizard.php:264
|
1908 |
+
msgid "Specified value in not an IP address."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: classes/Views/SetupWizard.php:270 wp-security-audit-log.php:1307
|
1912 |
+
msgid "Installing, please wait"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: classes/Views/SetupWizard.php:271 wp-security-audit-log.php:1308
|
1916 |
+
msgid "Already installed"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: classes/Views/SetupWizard.php:273 wp-security-audit-log.php:1310
|
1920 |
+
msgid "Extension activated"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: classes/Views/SetupWizard.php:274 wp-security-audit-log.php:1311
|
1924 |
+
msgid "Install failed"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: classes/Views/SetupWizard.php:304
|
1928 |
+
msgid "WP Activity Log › Setup Wizard"
|
|
|
|
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: classes/Views/SetupWizard.php:322
|
1932 |
+
msgid "Close Wizard"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: classes/Views/SetupWizard.php:415
|
1936 |
+
#, php-format
|
1937 |
+
msgid "You have reached an invaild step - %1$sreturn to the start of the wizard%2$s."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: classes/Views/SetupWizard.php:432
|
1941 |
+
msgid "This wizard helps you configure the basic plugin settings. All these settings can be changed at a later stage from the plugin settings."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: classes/Views/SetupWizard.php:437
|
1945 |
+
msgid "Start Configuring the Plugin"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: classes/Views/SetupWizard.php:441
|
1949 |
+
msgid "Exit Wizard"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: classes/Views/SetupWizard.php:454
|
1953 |
+
msgid "Please select the level of detail for your WordPress activity logs:"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: classes/Views/SetupWizard.php:458
|
1957 |
+
msgid "Basic (I want a high level overview and I am not interested in the detail)"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: classes/Views/SetupWizard.php:463
|
1961 |
+
msgid "Geek (I want to know everything that is happening on my WordPress)"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: classes/Views/SetupWizard.php:465
|
1965 |
+
msgid "Note: You can change the WordPress logging level from the plugin’s settings anytime."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: classes/Views/SetupWizard.php:468 classes/Views/SetupWizard.php:525
|
1969 |
+
#: classes/Views/SetupWizard.php:574 classes/Views/SetupWizard.php:634
|
1970 |
+
#: classes/Views/SetupWizard.php:635 classes/Views/SetupWizard.php:856
|
1971 |
+
#: classes/Views/SetupWizard.php:857
|
1972 |
+
msgid "Next"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: classes/Views/SetupWizard.php:509
|
1976 |
+
msgid "Do you or your users use other pages to log in to WordPress other than the default login page ( /wp-admin/ )?"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: classes/Views/SetupWizard.php:513
|
1980 |
+
msgid "Yes, we use other pages to login to WordPress."
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: classes/Views/SetupWizard.php:518
|
1984 |
+
msgid "No, we only use the default WordPress login page."
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: classes/Views/SetupWizard.php:520
|
1988 |
+
msgid "If your website is a membership or ecommerce website most probably you have more than one area from where the users can login. If you are not sure, select Yes."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: classes/Views/SetupWizard.php:523 classes/Views/SetupWizard.php:572
|
1992 |
+
#: classes/Views/SetupWizard.php:626
|
1993 |
+
msgid "Note: You can change the WordPress activity log retention settings at any time from the plugin settings later on."
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: classes/Views/SetupWizard.php:558
|
1997 |
+
msgid "Can visitors register as a user on your website?"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: classes/Views/SetupWizard.php:569
|
2001 |
+
msgid "If you are not sure about this setting, check if the Membership setting in the WordPress General settings is checked or not. If it is not checked (default) select No."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: classes/Views/SetupWizard.php:608
|
2005 |
+
msgid "How long do you want to keep the data in the WordPress activity Log?"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: classes/Views/SetupWizard.php:613
|
2009 |
+
msgid "6 months (data older than 6 months will be deleted)"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: classes/Views/SetupWizard.php:618
|
2013 |
+
msgid "12 months (data older than 12 months will be deleted)"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: classes/Views/SetupWizard.php:623
|
2017 |
+
msgid "Keep all data."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: classes/Views/SetupWizard.php:644
|
2021 |
+
msgid "The plugin stores the data in the WordPress database in a very efficient way, though the more data you keep the more hard disk space it will consume. If you need need to retain a lot of data we would recommend you to <a href=\"https://wpactivitylog.com/features/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=wizard+configuration\" target=\"_blank\">upgrade to Premium</a> and use the Database tools to store the WordPress activity log in an external database."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: classes/Views/SetupWizard.php:707
|
2025 |
+
msgid "Your plugin is all set and it is ready to start keeping a record of everything that is happening on your WordPress in a WordPress activity log."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: classes/Views/SetupWizard.php:708
|
2029 |
+
msgid "Below are a few useful links you might need to refer to:"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: classes/Views/SetupWizard.php:713
|
2033 |
+
msgid "Getting started with the WP Activity Log plugin"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: classes/Views/SetupWizard.php:718
|
2037 |
+
msgid "Knowledge Base & Support Documents"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: classes/Views/SetupWizard.php:723
|
2041 |
+
msgid "Benefits of keeping a WordPress activity log"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: classes/Views/SetupWizard.php:733
|
2045 |
+
msgid "We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: classes/Views/SetupWizard.php:733
|
2049 |
+
msgid "please get in touch!"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: classes/Views/SetupWizard.php:769
|
2053 |
+
msgid "Third Party Extensions"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: classes/Views/SetupWizard.php:810
|
2057 |
+
msgid "Monitoring changes done in third party plugins"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: classes/Views/SetupWizard.php:811
|
2061 |
+
msgid "We noticed that the below plugins are installed on this website. You can install our extensions to also keep a log of changes users do on these plugins."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: classes/Views/ToggleAlerts.php:27 classes/Views/ToggleAlerts.php:41
|
2065 |
+
msgid "Enable/Disable Events"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: classes/Views/ToggleAlerts.php:158
|
2069 |
+
msgid "Basic"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: classes/Views/ToggleAlerts.php:159
|
2073 |
+
msgid "Geek"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: classes/Views/ToggleAlerts.php:160
|
2077 |
+
msgid "Custom"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: classes/Views/ToggleAlerts.php:180
|
2081 |
+
msgid "Log Level: "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: classes/Views/ToggleAlerts.php:187
|
2085 |
+
msgid "Use the Log level drop down menu above to use one of our preset log levels. Alternatively you can enable or disable any of the individual events from the below tabs. Refer to <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\">the complete list of WordPress activity log event IDs</a> for reference on all the events the plugin can keep a log of."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: classes/Views/ToggleAlerts.php:197
|
2089 |
+
msgid "Third party plugins"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: classes/Views/ToggleAlerts.php:298
|
2093 |
+
msgid "Code"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: classes/Views/ToggleAlerts.php:300 classes/WidgetManager.php:79
|
2097 |
+
msgid "Description"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: classes/Views/ToggleAlerts.php:304 defaults.php:342
|
2101 |
+
msgid "Content"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: classes/Views/ToggleAlerts.php:307
|
2105 |
+
msgid "<strong>Note:</strong> Post refers to any type of content, i.e. blog post, page or a post with a custom post type."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: classes/Views/ToggleAlerts.php:310
|
2109 |
+
msgid "WooCommerce"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: classes/Views/ToggleAlerts.php:310 classes/Views/ToggleAlerts.php:318
|
2113 |
+
msgid "WooCommerce Products"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: classes/Views/ToggleAlerts.php:314
|
2117 |
+
msgid "The plugin WooCommerce is not installed on your website so these events have been disabled."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: classes/Views/ToggleAlerts.php:321
|
2121 |
+
msgid "Products"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: classes/Views/ToggleAlerts.php:327
|
2125 |
+
msgid "Post Changes"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: classes/Views/ToggleAlerts.php:330 defaults.php:3211
|
2129 |
+
msgid "MultiSite"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: classes/Views/ToggleAlerts.php:334
|
2133 |
+
msgid "Your website is a single site so the multisite events have been disabled."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: classes/Views/ToggleAlerts.php:338
|
2137 |
+
msgid "Other User Activity"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: classes/Views/ToggleAlerts.php:341
|
2141 |
+
msgid "Logins & Logouts"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: classes/Views/ToggleAlerts.php:353 classes/Views/ToggleAlerts.php:512
|
2145 |
+
#: defaults.php:3362
|
2146 |
+
msgid "Monitor File Changes"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: classes/Views/ToggleAlerts.php:364
|
2150 |
+
msgid "Not Implemented"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: classes/Views/ToggleAlerts.php:367
|
2154 |
+
msgid "Not Available"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: classes/Views/ToggleAlerts.php:382
|
2158 |
+
msgid "User Logins/Logouts"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: classes/Views/ToggleAlerts.php:385
|
2162 |
+
msgid "User Sessions"
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: classes/Views/ToggleAlerts.php:388
|
2166 |
+
msgid "Files"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: classes/Views/ToggleAlerts.php:391
|
2170 |
+
msgid "Post Settings"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: classes/Views/ToggleAlerts.php:422 defaults.php:3361
|
2174 |
+
msgid "File Changes"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: classes/Views/ToggleAlerts.php:461
|
2178 |
+
msgid "Keep a log when a visitor registers a user on the website. Only enable this if you allow visitors to register as users on your website. User registration is disabled by default in WordPress."
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: classes/Views/ToggleAlerts.php:475 classes/Views/ToggleAlerts.php:488
|
2182 |
+
msgid "Number of login attempts to log. Enter 0 to log all failed login attempts. (By default the plugin only logs up to 10 failed login because the process can be very resource intensive in case of a brute force attack)"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: classes/Views/ToggleAlerts.php:502
|
2186 |
+
msgid "Keep a log of user log in activity on custom login forms (such as WooCommerce & membership plugins)"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: classes/Views/ToggleAlerts.php:548
|
2190 |
+
msgid "Save Changes"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: classes/Views/ToggleAlerts.php:555
|
2194 |
+
msgid "Log Level Updated"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: classes/Views/ToggleAlerts.php:559
|
2198 |
+
#, php-format
|
2199 |
+
msgid "The %s log level has been successfully loaded and applied."
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: classes/Views/ToggleAlerts.php:563
|
2203 |
+
msgid "OK"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: classes/Views/ToggleAlerts.php:578
|
2207 |
+
msgid "Enable File Integrity Scanner"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: classes/Views/ToggleAlerts.php:580
|
2211 |
+
msgid "The file integrity scanner is switched off. To enable this event it has to be switched on."
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: classes/Views/ToggleAlerts.php:584
|
2215 |
+
msgid "SWITCH ON"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: classes/Views/ToggleAlerts.php:585
|
2219 |
+
msgid "DISABLE EVENT"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: classes/Views/addons/html-view.php:95 classes/Views/addons/html-view.php:120
|
2223 |
+
msgid "Upgrade to Premium"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: classes/Views/addons/html-view.php:96
|
2227 |
+
msgid "More Information"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: classes/Views/addons/html-view.php:104
|
2231 |
+
msgid "Screenshots"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: classes/Views/addons/html-view.php:121
|
2235 |
+
msgid "Start Free 14-Day Premium Trial"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: classes/WidgetManager.php:55
|
2239 |
+
msgid "Latest Events"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: classes/WidgetManager.php:71
|
2243 |
+
msgid "No events found."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: defaults.php:71
|
2247 |
+
msgid "View category"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: defaults.php:75
|
2251 |
+
msgid "Contact Support"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: defaults.php:88
|
2255 |
+
msgid "View page in the editor"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: defaults.php:92
|
2259 |
+
msgid "View the post in editor"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: defaults.php:97
|
2263 |
+
msgid "View the order"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: defaults.php:101
|
2267 |
+
msgid "User profile page"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: defaults.php:105
|
2271 |
+
msgid "Open the log file"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: defaults.php:113
|
2275 |
+
msgid "View menu"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: defaults.php:117 defaults.php:126 defaults.php:3218 defaults.php:3230
|
2279 |
+
#: defaults.php:3242 defaults.php:3254 defaults.php:3266 defaults.php:3278
|
2280 |
+
msgid "URL"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: defaults.php:121
|
2284 |
+
msgid "View attachment page"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: defaults.php:130
|
2288 |
+
msgid "View the content changes"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: defaults.php:134
|
2292 |
+
msgid "View tag"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: defaults.php:177
|
2296 |
+
msgid "Critical severity events."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: defaults.php:179
|
2300 |
+
msgid "High severity events."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: defaults.php:181
|
2304 |
+
msgid "Medium severity events."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: defaults.php:183
|
2308 |
+
msgid "Low severity events."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: defaults.php:185
|
2312 |
+
msgid "Informational events."
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: defaults.php:190
|
2316 |
+
msgid "Users Logins & Sessions Events"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: defaults.php:191
|
2320 |
+
msgid "User Activity"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: defaults.php:195
|
2324 |
+
msgid "User logged in"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: defaults.php:196
|
2328 |
+
msgid "User logged in."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: defaults.php:205
|
2332 |
+
msgid "User logged out"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: defaults.php:206
|
2336 |
+
msgid "User logged out."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: defaults.php:215
|
2340 |
+
msgid "Login failed"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: defaults.php:216 defaults.php:226
|
2344 |
+
msgid "%Attempts% failed login(s)."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: defaults.php:225
|
2348 |
+
msgid "Login failed / non existing user"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: defaults.php:235
|
2352 |
+
msgid "Login blocked"
|
|
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: defaults.php:236
|
2356 |
+
msgid "Login blocked because other session(s) already exist for this user."
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: defaults.php:238
|
2360 |
+
msgid "IP address"
|
|
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: defaults.php:247
|
2364 |
+
msgid "User logged in with existing session(s)"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: defaults.php:248
|
2368 |
+
msgid "User logged in however there are other session(s) already for this user."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: defaults.php:250
|
2372 |
+
msgid "IP address(es)"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: defaults.php:259
|
2376 |
+
msgid "User logged out all other sessions with the same username"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: defaults.php:260
|
2380 |
+
msgid "Logged out all other sessions with the same user."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: defaults.php:269
|
2384 |
+
msgid "User session destroyed and logged out"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: defaults.php:270
|
2388 |
+
msgid "Terminated the session of the user %TargetUserName%."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: defaults.php:272 defaults.php:285 defaults.php:297 defaults.php:1718
|
2392 |
+
#: defaults.php:1746 defaults.php:1760 defaults.php:1774 defaults.php:1789
|
2393 |
+
#: defaults.php:1804 defaults.php:1818 defaults.php:1832 defaults.php:1848
|
2394 |
+
#: defaults.php:1863 defaults.php:1877 defaults.php:1891 defaults.php:1906
|
2395 |
+
#: defaults.php:1922 defaults.php:1936 defaults.php:1951 defaults.php:1965
|
2396 |
+
#: defaults.php:1979 defaults.php:1996 defaults.php:2010 defaults.php:2024
|
2397 |
+
#: defaults.php:2397
|
2398 |
+
msgid "Role"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: defaults.php:273 defaults.php:298
|
2402 |
+
msgid "Session ID"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: defaults.php:282
|
2406 |
+
msgid "Switched to another user"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: defaults.php:283
|
2410 |
+
msgid "Switched the session to being logged in as %TargetUserName%."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: defaults.php:294
|
2414 |
+
msgid "The plugin terminated an idle session for a user"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: defaults.php:295
|
2418 |
+
msgid "The plugin terminated an idle session for the user %username%."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: defaults.php:307
|
2422 |
+
msgid "User uploaded file to the Uploads directory"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: defaults.php:308
|
2426 |
+
msgid "Uploaded a file called %FileName%."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: defaults.php:310 defaults.php:322
|
2430 |
+
msgid "Directory"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: defaults.php:319
|
2434 |
+
msgid "User deleted file from Uploads directory"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: defaults.php:320
|
2438 |
+
msgid "Deleted the file %FileName%."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: defaults.php:331
|
2442 |
+
msgid "User requested a password reset"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: defaults.php:332
|
2446 |
+
msgid "User requested a password reset. This does not mean that the password was changed."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: defaults.php:341
|
2450 |
+
msgid "Content & Comments"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: defaults.php:346
|
2454 |
+
msgid "User created a new post and saved it as draft"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: defaults.php:347
|
2458 |
+
msgid "Created the post %PostTitle%."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: defaults.php:349 defaults.php:363 defaults.php:377 defaults.php:391
|
2462 |
+
#: defaults.php:405 defaults.php:419 defaults.php:433 defaults.php:449
|
2463 |
+
#: defaults.php:464 defaults.php:478 defaults.php:493 defaults.php:508
|
2464 |
+
#: defaults.php:523 defaults.php:538 defaults.php:552 defaults.php:566
|
2465 |
+
#: defaults.php:580 defaults.php:594 defaults.php:608 defaults.php:622
|
2466 |
+
#: defaults.php:636 defaults.php:650 defaults.php:664 defaults.php:678
|
2467 |
+
#: defaults.php:694 defaults.php:808 defaults.php:887 defaults.php:902
|
2468 |
+
#: defaults.php:918 defaults.php:933 defaults.php:950 defaults.php:965
|
2469 |
+
#: defaults.php:986 defaults.php:1001 defaults.php:1016 defaults.php:1031
|
2470 |
+
#: defaults.php:1046 defaults.php:1061 defaults.php:1076 defaults.php:1091
|
2471 |
+
#: defaults.php:1106 defaults.php:1121 defaults.php:1140 defaults.php:2135
|
2472 |
+
#: defaults.php:2150
|
2473 |
+
msgid "Post ID"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: defaults.php:350 defaults.php:364 defaults.php:378 defaults.php:392
|
2477 |
+
#: defaults.php:406 defaults.php:420 defaults.php:434 defaults.php:450
|
2478 |
+
#: defaults.php:465 defaults.php:479 defaults.php:494 defaults.php:509
|
2479 |
+
#: defaults.php:524 defaults.php:539 defaults.php:553 defaults.php:567
|
2480 |
+
#: defaults.php:581 defaults.php:595 defaults.php:609 defaults.php:623
|
2481 |
+
#: defaults.php:637 defaults.php:651 defaults.php:665 defaults.php:679
|
2482 |
+
#: defaults.php:695 defaults.php:809 defaults.php:888 defaults.php:903
|
2483 |
+
#: defaults.php:919 defaults.php:934 defaults.php:951 defaults.php:966
|
2484 |
+
#: defaults.php:987 defaults.php:1002 defaults.php:1017 defaults.php:1032
|
2485 |
+
#: defaults.php:1047 defaults.php:1062 defaults.php:1077 defaults.php:1092
|
2486 |
+
#: defaults.php:1107 defaults.php:1122 defaults.php:1141 defaults.php:2136
|
2487 |
+
#: defaults.php:2151
|
2488 |
+
msgid "Post type"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: defaults.php:351 defaults.php:365 defaults.php:379 defaults.php:393
|
2492 |
+
#: defaults.php:407 defaults.php:421 defaults.php:435 defaults.php:451
|
2493 |
+
#: defaults.php:480 defaults.php:495 defaults.php:510 defaults.php:525
|
2494 |
+
#: defaults.php:540 defaults.php:554 defaults.php:568 defaults.php:582
|
2495 |
+
#: defaults.php:596 defaults.php:610 defaults.php:624 defaults.php:638
|
2496 |
+
#: defaults.php:652 defaults.php:666 defaults.php:680 defaults.php:696
|
2497 |
+
#: defaults.php:810 defaults.php:889 defaults.php:904 defaults.php:920
|
2498 |
+
#: defaults.php:935 defaults.php:952 defaults.php:967 defaults.php:988
|
2499 |
+
#: defaults.php:1003 defaults.php:1018 defaults.php:1033 defaults.php:1048
|
2500 |
+
#: defaults.php:1063 defaults.php:1078 defaults.php:1093 defaults.php:1108
|
2501 |
+
#: defaults.php:1123 defaults.php:1142 defaults.php:2137 defaults.php:2152
|
2502 |
+
msgid "Post status"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: defaults.php:360
|
2506 |
+
msgid "User published a post"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
+
#: defaults.php:361
|
2510 |
+
msgid "Published the post %PostTitle%."
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: defaults.php:374
|
2514 |
+
msgid "User modified a post"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: defaults.php:375
|
2518 |
+
msgid "Modified the post %PostTitle%."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: defaults.php:388
|
2522 |
+
msgid "User permanently deleted a post from the trash"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: defaults.php:389
|
2526 |
+
msgid "Permanently deleted the post %PostTitle%."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: defaults.php:402
|
2530 |
+
msgid "User moved a post to the trash"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: defaults.php:403
|
2534 |
+
msgid "Moved the post %PostTitle% to trash."
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: defaults.php:416
|
2538 |
+
msgid "User restored a post from trash"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: defaults.php:417
|
2542 |
+
msgid "Restored the post %PostTitle% from trash."
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: defaults.php:430
|
2546 |
+
msgid "User changed post URL"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: defaults.php:431
|
2550 |
+
msgid "Changed the URL of the post %PostTitle%."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: defaults.php:436 defaults.php:2943 defaults.php:2955
|
2554 |
+
msgid "Previous URL"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: defaults.php:437
|
2558 |
+
msgid "New URL"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: defaults.php:446
|
2562 |
+
msgid "User changed post author"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: defaults.php:447
|
2566 |
+
msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: defaults.php:452
|
2570 |
+
msgid "Previous author"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: defaults.php:461
|
2574 |
+
msgid "User changed post status"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: defaults.php:462
|
2578 |
+
msgid "Changed the status of the post %PostTitle% to %NewStatus%."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: defaults.php:466
|
2582 |
+
msgid "Previous status"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: defaults.php:475
|
2586 |
+
msgid "User changed the visibility of a post"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: defaults.php:476
|
2590 |
+
msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: defaults.php:481
|
2594 |
+
msgid "Previous visibility status"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: defaults.php:490
|
2598 |
+
msgid "User changed the date of a post"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: defaults.php:491
|
2602 |
+
msgid "Changed the date of the post %PostTitle% to %NewDate%."
|
|
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: defaults.php:496
|
2606 |
+
msgid "Previous date"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: defaults.php:505
|
2610 |
+
msgid "User changed the parent of a page"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: defaults.php:506
|
2614 |
+
msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: defaults.php:511 defaults.php:848
|
2618 |
+
msgid "Previous parent"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: defaults.php:520
|
2622 |
+
msgid "User changed the template of a page"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: defaults.php:521
|
2626 |
+
msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: defaults.php:526
|
2630 |
+
msgid "Previous template"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: defaults.php:535
|
2634 |
+
msgid "User set a post as sticky"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: defaults.php:536
|
2638 |
+
msgid "Set the post %PostTitle% as sticky."
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: defaults.php:549
|
2642 |
+
msgid "User removed post from sticky"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: defaults.php:550
|
2646 |
+
msgid "Removed the post %PostTitle% from sticky."
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: defaults.php:563
|
2650 |
+
msgid "User modified the content of a post"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: defaults.php:564
|
2654 |
+
msgid "Modified the content of the post %PostTitle%."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: defaults.php:577
|
2658 |
+
msgid "User submitted a post for review"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: defaults.php:578
|
2662 |
+
msgid "Submitted the post %PostTitle% for review."
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: defaults.php:591
|
2666 |
+
msgid "User scheduled a post"
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: defaults.php:592
|
2670 |
+
msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: defaults.php:605
|
2674 |
+
msgid "User changed title of a post"
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: defaults.php:606
|
2678 |
+
msgid "Changed the title of the post %OldTitle% to %NewTitle%."
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: defaults.php:619
|
2682 |
+
msgid "User opened a post in the editor"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: defaults.php:620
|
2686 |
+
msgid "Opened the post %PostTitle% in the editor."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: defaults.php:633
|
2690 |
+
msgid "User viewed a post"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: defaults.php:634
|
2694 |
+
msgid "Viewed the post %PostTitle%."
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: defaults.php:647
|
2698 |
+
msgid "User enabled/disabled comments in a post"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: defaults.php:648
|
2702 |
+
msgid "Comments in the post %PostTitle%."
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: defaults.php:661
|
2706 |
+
msgid "User enabled/disabled trackbacks and pingbacks in a post"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: defaults.php:662
|
2710 |
+
msgid "Pingbacks and Trackbacks in the post %PostTitle%."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: defaults.php:675
|
2714 |
+
msgid "User updated the excerpt in a post"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: defaults.php:676
|
2718 |
+
msgid "The excerpt of the post %PostTitle%."
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: defaults.php:681
|
2722 |
+
msgid "Previous excerpt entry"
|
|
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: defaults.php:682
|
2726 |
+
msgid "New excerpt entry"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: defaults.php:691
|
2730 |
+
msgid "User updated the featured image in a post"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: defaults.php:692
|
2734 |
+
msgid "The featured image of the post %PostTitle%."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: defaults.php:697
|
2738 |
+
msgid "Previous image"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: defaults.php:698
|
2742 |
+
msgid "New image"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: defaults.php:706
|
2746 |
+
msgid "Tags"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: defaults.php:710
|
2750 |
+
msgid "User added post tag"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: defaults.php:711
|
2754 |
+
msgid "Added tag(s) to the post %PostTitle%."
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: defaults.php:714 defaults.php:729
|
2758 |
+
msgid "Type"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: defaults.php:715 defaults.php:730
|
2762 |
+
msgid "Status"
|
|
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: defaults.php:716
|
2766 |
+
msgid "Added tag(s)"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: defaults.php:725
|
2770 |
+
msgid "User removed post tag"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: defaults.php:726
|
2774 |
+
msgid "Removed tag(s) from the post %PostTitle%."
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: defaults.php:731
|
2778 |
+
msgid "Removed tag(s)"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: defaults.php:740
|
2782 |
+
msgid "User created new tag"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: defaults.php:741
|
2786 |
+
msgid "Created the tag %TagName%."
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: defaults.php:743 defaults.php:755 defaults.php:767 defaults.php:791
|
2790 |
+
#: defaults.php:823 defaults.php:835 defaults.php:847 defaults.php:860
|
2791 |
+
msgid "Slug"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: defaults.php:752
|
2795 |
+
msgid "User deleted tag"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: defaults.php:753
|
2799 |
+
msgid "Deleted the tag %TagName%."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: defaults.php:764
|
2803 |
+
msgid "Renamed the tag %old_name% to %new_name%."
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: defaults.php:776
|
2807 |
+
msgid "User changed tag slug"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: defaults.php:777
|
2811 |
+
msgid "Changed the slug of the tag %tag% to %new_slug%."
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: defaults.php:779 defaults.php:872
|
2815 |
+
msgid "Previous slug"
|
|
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: defaults.php:788
|
2819 |
+
msgid "User changed tag description"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: defaults.php:789
|
2823 |
+
msgid "Changed the description of the tag %tag%."
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: defaults.php:792
|
2827 |
+
msgid "Previous description"
|
|
|
|
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: defaults.php:793
|
2831 |
+
msgid "New description"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: defaults.php:801
|
2835 |
+
msgid "Categories"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: defaults.php:805
|
2839 |
+
msgid "User changed post category"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: defaults.php:806
|
2843 |
+
msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: defaults.php:811
|
2847 |
+
msgid "Previous category(ies)"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: defaults.php:820
|
2851 |
+
msgid "User created new category"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: defaults.php:821
|
2855 |
+
msgid "Created the category %CategoryName%."
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: defaults.php:832
|
2859 |
+
msgid "User deleted category"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: defaults.php:833
|
2863 |
+
msgid "Deleted the category %CategoryName%."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: defaults.php:844
|
2867 |
+
msgid "Changed the parent of a category"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: defaults.php:845
|
2871 |
+
msgid "Changed the parent of the category %CategoryName% to %NewParent%."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: defaults.php:857
|
2875 |
+
msgid "User changed category name"
|
|
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: defaults.php:858
|
2879 |
+
msgid "Renamed the category %old_name% to %new_name%."
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: defaults.php:869
|
2883 |
+
msgid "User changed category slug"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: defaults.php:870
|
2887 |
+
msgid "Changed the slug of the category %CategoryName% to %new_slug%."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: defaults.php:880
|
2891 |
+
msgid "Custom Fields"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: defaults.php:884
|
2895 |
+
msgid "User created a custom field for a post"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: defaults.php:885
|
2899 |
+
msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: defaults.php:890 defaults.php:1851
|
2903 |
+
msgid "Custom field value"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: defaults.php:899
|
2907 |
+
msgid "User updated a custom field value for a post"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: defaults.php:900
|
2911 |
+
msgid "Modified the value of the custom field %MetaKey% in the post %PostTitle%."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: defaults.php:905
|
2915 |
+
msgid "Previous custom field value"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: defaults.php:906
|
2919 |
+
msgid "New custom field value"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: defaults.php:915
|
2923 |
+
msgid "User deleted a custom field from a post"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: defaults.php:916
|
2927 |
+
msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: defaults.php:929
|
2931 |
+
msgid "User updated a custom field name for a post"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: defaults.php:930
|
2935 |
+
msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: defaults.php:943
|
2939 |
+
msgid "Custom Fields (ACF)"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: defaults.php:947
|
2943 |
+
msgid "User added relationship to a custom field value for a post"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: defaults.php:948
|
2947 |
+
msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: defaults.php:953
|
2951 |
+
msgid "New relationships"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: defaults.php:962
|
2955 |
+
msgid "User removed relationship from a custom field value for a post"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: defaults.php:963
|
2959 |
+
msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: defaults.php:968
|
2963 |
+
msgid "Removed relationships"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: defaults.php:979
|
2967 |
+
msgid "Comments"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: defaults.php:983
|
2971 |
+
msgid "User approved a comment"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: defaults.php:984
|
2975 |
+
msgid "Approved the comment posted by %Author% on the post %PostTitle%."
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: defaults.php:989 defaults.php:1004 defaults.php:1019 defaults.php:1034
|
2979 |
+
#: defaults.php:1049 defaults.php:1064 defaults.php:1079 defaults.php:1094
|
2980 |
+
#: defaults.php:1109 defaults.php:1124 defaults.php:1143
|
2981 |
+
msgid "Comment ID"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: defaults.php:998
|
2985 |
+
msgid "User unapproved a comment"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: defaults.php:999
|
2989 |
+
msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: defaults.php:1013
|
2993 |
+
msgid "User replied to a comment"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: defaults.php:1014
|
2997 |
+
msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: defaults.php:1028
|
3001 |
+
msgid "User edited a comment"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: defaults.php:1029
|
3005 |
+
msgid "Edited the comment posted by %Author% on the post %PostTitle%."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: defaults.php:1043
|
3009 |
+
msgid "User marked a comment as Spam"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: defaults.php:1044
|
3013 |
+
msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: defaults.php:1058
|
3017 |
+
msgid "User marked a comment as Not Spam"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: defaults.php:1059
|
3021 |
+
msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: defaults.php:1073
|
3025 |
+
msgid "User moved a comment to trash"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: defaults.php:1074
|
3029 |
+
msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: defaults.php:1088
|
3033 |
+
msgid "User restored a comment from the trash"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: defaults.php:1089
|
3037 |
+
msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: defaults.php:1103
|
3041 |
+
msgid "User permanently deleted a comment"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: defaults.php:1104
|
3045 |
+
msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: defaults.php:1118
|
3049 |
+
msgid "User posted a comment"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: defaults.php:1119 defaults.php:1138
|
3053 |
+
msgid "Posted a comment on the post %PostTitle%."
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: defaults.php:1137
|
3057 |
+
msgid "Visitor posted a comment"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: defaults.php:1154
|
3061 |
+
msgid "Widgets"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: defaults.php:1158
|
3065 |
+
msgid "User added a new widget"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: defaults.php:1159
|
3069 |
+
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: defaults.php:1168
|
3073 |
+
msgid "User modified a widget"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: defaults.php:1169
|
3077 |
+
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: defaults.php:1178
|
3081 |
+
msgid "User deleted widget"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: defaults.php:1179
|
3085 |
+
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: defaults.php:1188
|
3089 |
+
msgid "User moved widget"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: defaults.php:1189
|
3093 |
+
msgid "Moved the %WidgetName% widget."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: defaults.php:1191
|
3097 |
+
msgid "From"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: defaults.php:1192
|
3101 |
+
msgid "To"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: defaults.php:1201
|
3105 |
+
msgid "User changed widget position"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: defaults.php:1202
|
3109 |
+
msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: defaults.php:1213
|
3113 |
+
msgid "Menus"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: defaults.php:1217
|
3117 |
+
msgid "User created new menu"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: defaults.php:1218
|
3121 |
+
msgid "New menu called %MenuName%."
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: defaults.php:1227
|
3125 |
+
msgid "User added content to a menu"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: defaults.php:1228
|
3129 |
+
msgid "Added the item %ContentName% to the menu %MenuName%."
|
|
|
|
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: defaults.php:1230 defaults.php:1242 defaults.php:1274
|
3133 |
+
msgid "Item type"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: defaults.php:1239
|
3137 |
+
msgid "User removed content from a menu"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: defaults.php:1240
|
3141 |
+
msgid "Removed the item %ContentName% from the menu %MenuName%."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: defaults.php:1251
|
3145 |
+
msgid "User deleted menu"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: defaults.php:1252
|
3149 |
+
msgid "Deleted the menu %MenuName%."
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: defaults.php:1261
|
3153 |
+
msgid "User changed menu setting"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: defaults.php:1262
|
3157 |
+
msgid "The setting %MenuSetting% in the menu %MenuName%."
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: defaults.php:1271
|
3161 |
+
msgid "User modified content in a menu"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: defaults.php:1272
|
3165 |
+
msgid "Modified the item %ContentName% in the menu %MenuName%."
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: defaults.php:1283
|
3169 |
+
msgid "User changed name of a menu"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: defaults.php:1284
|
3173 |
+
msgid "Renamed the menu %OldMenuName% to %MenuName%."
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: defaults.php:1293
|
3177 |
+
msgid "User changed order of the objects in a menu"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: defaults.php:1294
|
3181 |
+
msgid "Changed the order of the items in the menu %MenuName%."
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: defaults.php:1303
|
3185 |
+
msgid "User moved objects as a sub-item"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: defaults.php:1304
|
3189 |
+
msgid "Moved items as sub-items in the menu %MenuName%."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: defaults.php:1306
|
3193 |
+
msgid "Moved item"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: defaults.php:1307
|
3197 |
+
msgid "as a sub-item of"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: defaults.php:1327
|
3201 |
+
msgid "User modified a draft blog post"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: defaults.php:1328
|
3205 |
+
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: defaults.php:1333
|
3209 |
+
msgid "User created a new post with custom post type and saved it as draft"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: defaults.php:1334
|
3213 |
+
msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: defaults.php:1339
|
3217 |
+
msgid "User published a post with custom post type"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: defaults.php:1340
|
3221 |
+
msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: defaults.php:1345
|
3225 |
+
msgid "User modified a post with custom post type"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: defaults.php:1346
|
3229 |
+
msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: defaults.php:1351
|
3233 |
+
msgid "User modified a draft post with custom post type"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: defaults.php:1352
|
3237 |
+
msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: defaults.php:1357
|
3241 |
+
msgid "User permanently deleted post with custom post type"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: defaults.php:1358
|
3245 |
+
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: defaults.php:1363
|
3249 |
+
msgid "User moved post with custom post type to trash"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: defaults.php:1364
|
3253 |
+
msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: defaults.php:1369
|
3257 |
+
msgid "User restored post with custom post type from trash"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: defaults.php:1370
|
3261 |
+
msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
|
|
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: defaults.php:1375
|
3265 |
+
msgid "User changed the category of a post with custom post type"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: defaults.php:1376
|
3269 |
+
msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: defaults.php:1381
|
3273 |
+
msgid "User changed the URL of a post with custom post type"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: defaults.php:1382
|
3277 |
+
msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: defaults.php:1387
|
3281 |
+
msgid "User changed the author or post with custom post type"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: defaults.php:1388
|
3285 |
+
msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: defaults.php:1393
|
3289 |
+
msgid "User changed the status of post with custom post type"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: defaults.php:1394
|
3293 |
+
msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
|
3294 |
msgstr ""
|
3295 |
|
3296 |
+
#: defaults.php:1399
|
3297 |
+
msgid "User changed the visibility of a post with custom post type"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: defaults.php:1400
|
3301 |
+
msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: defaults.php:1405
|
3305 |
+
msgid "User changed the date of post with custom post type"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: defaults.php:1406
|
3309 |
+
msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: defaults.php:1411
|
3313 |
+
msgid "User created a custom field for a custom post type"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: defaults.php:1412
|
3317 |
+
msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: defaults.php:1417
|
3321 |
+
msgid "User updated a custom field for a custom post type"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: defaults.php:1418
|
3325 |
+
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: defaults.php:1423
|
3329 |
+
msgid "User deleted a custom field from a custom post type"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: defaults.php:1424
|
3333 |
+
msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: defaults.php:1429
|
3337 |
+
msgid "User updated a custom field name for a custom post type"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: defaults.php:1430
|
3341 |
+
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: defaults.php:1435
|
3345 |
+
msgid "User modified content for a published custom post type"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: defaults.php:1436
|
3349 |
+
msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: defaults.php:1441
|
3353 |
+
msgid "User modified content for a draft post"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: defaults.php:1442
|
3357 |
+
msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: defaults.php:1447
|
3361 |
+
msgid "User modified content for a draft custom post type"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: defaults.php:1448
|
3365 |
+
msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: defaults.php:1453
|
3369 |
+
msgid "User modified content of a post"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: defaults.php:1454
|
3373 |
+
msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: defaults.php:1459
|
3377 |
+
msgid "User scheduled a custom post type"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: defaults.php:1460
|
3381 |
+
msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: defaults.php:1465
|
3385 |
+
msgid "User changed title of a custom post type"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: defaults.php:1466
|
3389 |
+
msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
|
|
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: defaults.php:1471
|
3393 |
+
msgid "User opened a custom post type in the editor"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: defaults.php:1472
|
3397 |
+
msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: defaults.php:1477
|
3401 |
+
msgid "User viewed a custom post type"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: defaults.php:1478
|
3405 |
+
msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: defaults.php:1483
|
3409 |
+
msgid "A plugin created a custom post"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: defaults.php:1484
|
3413 |
+
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: defaults.php:1489
|
3417 |
+
msgid "A plugin deleted a custom post"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: defaults.php:1490
|
3421 |
+
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: defaults.php:1495
|
3425 |
+
msgid "A plugin modified a custom post"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: defaults.php:1496
|
3429 |
+
msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: defaults.php:1512
|
3433 |
+
msgid "User created a new WordPress page and saved it as draft"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: defaults.php:1513
|
3437 |
+
msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: defaults.php:1518
|
3441 |
+
msgid "User published a WordPress page"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: defaults.php:1519
|
3445 |
+
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: defaults.php:1524
|
3449 |
+
msgid "User modified a published WordPress page"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: defaults.php:1525
|
3453 |
+
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: defaults.php:1530
|
3457 |
+
msgid "User modified a draft WordPress page"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: defaults.php:1531
|
3461 |
+
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: defaults.php:1536
|
3465 |
+
msgid "User permanently deleted a page from the trash"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: defaults.php:1537
|
3469 |
+
msgid "Permanently deleted the page %PostTitle%."
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: defaults.php:1542
|
3473 |
+
msgid "User moved WordPress page to the trash"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: defaults.php:1543
|
3477 |
+
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: defaults.php:1548
|
3481 |
+
msgid "User restored a WordPress page from trash"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: defaults.php:1549
|
3485 |
+
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: defaults.php:1554
|
3489 |
+
msgid "User changed page URL"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: defaults.php:1555
|
3493 |
+
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: defaults.php:1560
|
3497 |
+
msgid "User changed page author"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: defaults.php:1561
|
3501 |
+
msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: defaults.php:1566
|
3505 |
+
msgid "User changed page status"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: defaults.php:1567
|
3509 |
+
msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: defaults.php:1572
|
3513 |
+
msgid "User changed the visibility of a page post"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: defaults.php:1573
|
3517 |
+
msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: defaults.php:1578
|
3521 |
+
msgid "User changed the date of a page post"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: defaults.php:1579
|
3525 |
+
msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: defaults.php:1584
|
3529 |
+
msgid "User created a custom field for a page"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: defaults.php:1585
|
3533 |
+
msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: defaults.php:1590
|
3537 |
+
msgid "User updated a custom field value for a page"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: defaults.php:1591
|
3541 |
+
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: defaults.php:1596
|
3545 |
+
msgid "User deleted a custom field from a page"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: defaults.php:1597
|
3549 |
+
msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: defaults.php:1602
|
3553 |
+
msgid "User updated a custom field name for a page"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: defaults.php:1603
|
3557 |
+
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: defaults.php:1608
|
3561 |
+
msgid "User modified content for a published page"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: defaults.php:1609
|
3565 |
+
msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: defaults.php:1614
|
3569 |
+
msgid "User modified content for a draft page"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: defaults.php:1615
|
3573 |
+
msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: defaults.php:1620
|
3577 |
+
msgid "User scheduled a page"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: defaults.php:1621
|
3581 |
+
msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: defaults.php:1626
|
3585 |
+
msgid "User changed title of a page"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: defaults.php:1627
|
3589 |
+
msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: defaults.php:1632
|
3593 |
+
msgid "User opened a page in the editor"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: defaults.php:1633
|
3597 |
+
msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: defaults.php:1638
|
3601 |
+
msgid "User viewed a page"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: defaults.php:1639
|
3605 |
+
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
|
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: defaults.php:1644
|
3609 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: defaults.php:1645
|
3613 |
+
msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: defaults.php:1650
|
3617 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: defaults.php:1651
|
3621 |
+
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: defaults.php:1656
|
3625 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: defaults.php:1657
|
3629 |
+
msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: defaults.php:1662
|
3633 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: defaults.php:1663
|
3637 |
+
msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
|
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: defaults.php:1668
|
3641 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: defaults.php:1669
|
3645 |
+
msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: defaults.php:1674
|
3649 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: defaults.php:1675
|
3653 |
+
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: defaults.php:1680
|
3657 |
+
msgid "A plugin created a page"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: defaults.php:1681
|
3661 |
+
msgid "A plugin automatically created the following page: %PostTitle%."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: defaults.php:1686
|
3665 |
+
msgid "A plugin deleted a page"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: defaults.php:1687
|
3669 |
+
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: defaults.php:1692
|
3673 |
+
msgid "A plugin modified a page"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: defaults.php:1693
|
3677 |
+
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: defaults.php:1698
|
3681 |
+
msgid "User Accounts"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: defaults.php:1699
|
3685 |
+
msgid "User Profiles"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: defaults.php:1703
|
3689 |
+
msgid "New user was created on WordPress"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: defaults.php:1704
|
3693 |
+
msgid "A new user %NewUserData->Username% is created via registration."
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: defaults.php:1715
|
3697 |
+
msgid "User created another WordPress user"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: defaults.php:1716
|
3701 |
+
msgid "Created the new user: %NewUserData->Username%."
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: defaults.php:1719 defaults.php:1733 defaults.php:1747 defaults.php:1761
|
3705 |
+
#: defaults.php:1775 defaults.php:1790 defaults.php:1805 defaults.php:1819
|
3706 |
+
#: defaults.php:1833 defaults.php:1849 defaults.php:1878 defaults.php:1892
|
3707 |
+
#: defaults.php:1907 defaults.php:1923 defaults.php:1937 defaults.php:1952
|
3708 |
+
#: defaults.php:1966 defaults.php:1980 defaults.php:1997 defaults.php:2011
|
3709 |
+
#: defaults.php:2025 defaults.php:2039 defaults.php:2052 defaults.php:2398
|
3710 |
+
msgid "First name"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: defaults.php:1720 defaults.php:1734 defaults.php:1748 defaults.php:1762
|
3714 |
+
#: defaults.php:1776 defaults.php:1791 defaults.php:1806 defaults.php:1820
|
3715 |
+
#: defaults.php:1834 defaults.php:1850 defaults.php:1865 defaults.php:1893
|
3716 |
+
#: defaults.php:1908 defaults.php:1924 defaults.php:1938 defaults.php:1953
|
3717 |
+
#: defaults.php:1967 defaults.php:1981 defaults.php:1998 defaults.php:2012
|
3718 |
+
#: defaults.php:2026 defaults.php:2040 defaults.php:2053 defaults.php:2399
|
3719 |
+
msgid "Last name"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: defaults.php:1729
|
3723 |
+
msgid "The role of a user was changed by another WordPress user"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: defaults.php:1730
|
3727 |
+
msgid "Changed the role of user %TargetUsername% to %NewRole%."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: defaults.php:1732 defaults.php:2789
|
3731 |
+
msgid "Previous role"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: defaults.php:1743
|
3735 |
+
msgid "User has changed his or her password"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: defaults.php:1744
|
3739 |
+
msgid "Changed the password."
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: defaults.php:1757
|
3743 |
+
msgid "User changed another user's password"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: defaults.php:1758
|
3747 |
+
msgid "Changed the password of the user %TargetUserData->Username%."
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: defaults.php:1771
|
3751 |
+
msgid "User changed his or her email address"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: defaults.php:1772
|
3755 |
+
msgid "Changed the email address to %NewEmail%."
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: defaults.php:1777 defaults.php:1792
|
3759 |
+
msgid "Previous email address"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: defaults.php:1786
|
3763 |
+
msgid "User changed another user's email address"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: defaults.php:1787
|
3767 |
+
msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: defaults.php:1801
|
3771 |
+
msgid "User was deleted by another user"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: defaults.php:1802
|
3775 |
+
msgid "Deleted the user %TargetUserData->Username%."
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: defaults.php:1815
|
3779 |
+
msgid "User opened the profile page of another user"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: defaults.php:1816
|
3783 |
+
msgid "Opened the profile page of user %TargetUsername%."
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: defaults.php:1829
|
3787 |
+
msgid "User updated a custom field value for a user"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: defaults.php:1830
|
3791 |
+
msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: defaults.php:1835 defaults.php:2879 defaults.php:2911 defaults.php:3322
|
3795 |
+
msgid "Previous value"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: defaults.php:1836 defaults.php:3323
|
3799 |
+
msgid "New value"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: defaults.php:1845
|
3803 |
+
msgid "User created a custom field value for a user"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: defaults.php:1846
|
3807 |
+
msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: defaults.php:1860
|
3811 |
+
msgid "User changed first name for a user"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: defaults.php:1861
|
3815 |
+
msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: defaults.php:1864
|
3819 |
+
msgid "Previous name"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: defaults.php:1874
|
3823 |
+
msgid "User changed last name for a user"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: defaults.php:1875
|
3827 |
+
msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: defaults.php:1879
|
3831 |
+
msgid "Previous last name"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: defaults.php:1888
|
3835 |
+
msgid "User changed nickname for a user"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: defaults.php:1889
|
3839 |
+
msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: defaults.php:1894
|
3843 |
+
msgid "Previous nickname"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: defaults.php:1903
|
3847 |
+
msgid "User changed the display name for a user"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: defaults.php:1904
|
3851 |
+
msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: defaults.php:1909
|
3855 |
+
msgid "Previous display name"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: defaults.php:1919 defaults.php:1933
|
3859 |
+
msgid "User created an application password"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: defaults.php:1920
|
3863 |
+
msgid "The application password %friendly_name%."
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: defaults.php:1934
|
3867 |
+
msgid "The application password %friendly_name% for the user %login%."
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: defaults.php:1948
|
3871 |
+
msgid "User revoked all application passwords"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: defaults.php:1949
|
3875 |
+
msgid "All application passwords."
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: defaults.php:1962
|
3879 |
+
msgid "User revoked all application passwords for a user"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: defaults.php:1963
|
3883 |
+
msgid "All application passwords from the user %login%."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: defaults.php:1976
|
3887 |
+
msgid "Admin sent a password reset request to a user"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: defaults.php:1977
|
3891 |
+
msgid "Sent a password reset request to the user %login%."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: defaults.php:1989
|
3895 |
+
msgid "Multisite User Profiles"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: defaults.php:1993
|
3899 |
+
msgid "User granted Super Admin privileges"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: defaults.php:1994
|
3903 |
+
msgid "Granted Super Admin privileges to the user %TargetUsername%."
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: defaults.php:2007
|
3907 |
+
msgid "User revoked from Super Admin privileges"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: defaults.php:2008
|
3911 |
+
msgid "Revoked Super Admin privileges from %TargetUsername%."
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: defaults.php:2021
|
3915 |
+
msgid "Existing user added to a site"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: defaults.php:2022
|
3919 |
+
msgid "Added user %TargetUsername% to the site %SiteName%."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: defaults.php:2035
|
3923 |
+
msgid "User removed from site"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: defaults.php:2036
|
3927 |
+
msgid "Removed user %TargetUsername% from the site %SiteName%"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: defaults.php:2038
|
3931 |
+
msgid "Site role"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: defaults.php:2049
|
3935 |
+
msgid "New network user created"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: defaults.php:2050
|
3939 |
+
msgid "Created the new network user %NewUserData->Username%."
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: defaults.php:2062
|
3943 |
+
msgid "Plugins & Themes"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: defaults.php:2067
|
3947 |
+
msgid "User installed a plugin"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: defaults.php:2068
|
3951 |
+
msgid "Installed the plugin %Plugin->Name%."
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: defaults.php:2070 defaults.php:2083 defaults.php:2096 defaults.php:2109
|
3955 |
+
#: defaults.php:2205 defaults.php:2218 defaults.php:2231 defaults.php:2270
|
3956 |
+
#: defaults.php:2283
|
3957 |
+
msgid "Version"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: defaults.php:2071 defaults.php:2084 defaults.php:2097 defaults.php:2110
|
3961 |
+
#: defaults.php:2123 defaults.php:2166 defaults.php:2179 defaults.php:2206
|
3962 |
+
#: defaults.php:2219 defaults.php:2232 defaults.php:2245 defaults.php:2271
|
3963 |
+
#: defaults.php:2284
|
3964 |
+
msgid "Install location"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: defaults.php:2080
|
3968 |
+
msgid "User activated a WordPress plugin"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: defaults.php:2081
|
3972 |
+
msgid "Activated the plugin %PluginData->Name%."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: defaults.php:2093
|
3976 |
+
msgid "User deactivated a WordPress plugin"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: defaults.php:2094
|
3980 |
+
msgid "Deactivated the plugin %PluginData->Name%."
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: defaults.php:2106
|
3984 |
+
msgid "User uninstalled a plugin"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: defaults.php:2107
|
3988 |
+
msgid "Uninstalled the plugin %PluginData->Name%."
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: defaults.php:2119
|
3992 |
+
msgid "User upgraded a plugin"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: defaults.php:2120
|
3996 |
+
msgid "Updated the plugin %PluginData->Name%."
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: defaults.php:2122
|
4000 |
+
msgid "Updated version"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: defaults.php:2132
|
4004 |
+
msgid "A plugin created a post"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: defaults.php:2133
|
4008 |
+
msgid "The plugin created the post %PostTitle%."
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: defaults.php:2147
|
4012 |
+
msgid "A plugin deleted a post"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: defaults.php:2148
|
4016 |
+
msgid "A plugin deleted the post %PostTitle%."
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: defaults.php:2163
|
4020 |
+
msgid "Changed the Automatic updates setting for a plugin."
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: defaults.php:2164
|
4024 |
+
msgid "Changed the Automatic updates setting for the plugin %name%."
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: defaults.php:2176
|
4028 |
+
msgid "Changed the Automatic updates setting for a theme."
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: defaults.php:2177
|
4032 |
+
msgid "Changed the Automatic updates setting for the theme %name%."
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: defaults.php:2189
|
4036 |
+
msgid "User changed a file using the plugin editor"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: defaults.php:2190
|
4040 |
+
msgid "Modified the file %File% with the plugin editor."
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: defaults.php:2198
|
4044 |
+
msgid "Themes"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: defaults.php:2202
|
4048 |
+
msgid "User installed a theme"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: defaults.php:2203
|
4052 |
+
msgid "Installed the theme %Theme->Name%."
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: defaults.php:2215
|
4056 |
+
msgid "User activated a theme"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: defaults.php:2216
|
4060 |
+
msgid "Activated the theme %Theme->Name%."
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: defaults.php:2228
|
4064 |
+
msgid "User uninstalled a theme"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: defaults.php:2229
|
4068 |
+
msgid "Deleted the theme %Theme->Name%."
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: defaults.php:2241
|
4072 |
+
msgid "User updated a theme"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: defaults.php:2242
|
4076 |
+
msgid "Updated the theme %Theme->Name%."
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: defaults.php:2244 defaults.php:2338
|
4080 |
+
msgid "New version"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#: defaults.php:2254
|
4084 |
+
msgid "User changed a file using the theme editor"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
+
#: defaults.php:2255
|
4088 |
+
msgid "Modified the file %Theme%/%File% with the theme editor."
|
4089 |
msgstr ""
|
4090 |
|
4091 |
+
#: defaults.php:2263
|
4092 |
+
msgid "Themes on Multisite"
|
4093 |
msgstr ""
|
4094 |
|
4095 |
+
#: defaults.php:2267
|
4096 |
+
msgid "Activated theme on network"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: defaults.php:2268
|
4100 |
+
msgid "Network activated the theme %Theme->Name%."
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: defaults.php:2280
|
4104 |
+
msgid "Deactivated theme from network"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: defaults.php:2281
|
4108 |
+
msgid "Network deactivated the theme %Theme->Name%."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: defaults.php:2293
|
4112 |
+
msgid "WordPress & System"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: defaults.php:2298
|
4116 |
+
msgid "Unknown Error"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: defaults.php:2299
|
4120 |
+
msgid "An unexpected error has occurred."
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: defaults.php:2304
|
4124 |
+
msgid "PHP error"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: defaults.php:2305 defaults.php:2311 defaults.php:2317 defaults.php:2323
|
4128 |
+
#: defaults.php:2329
|
4129 |
+
msgid "%Message%."
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: defaults.php:2310
|
4133 |
+
msgid "PHP warning"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
+
#: defaults.php:2316
|
4137 |
+
msgid "PHP notice"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: defaults.php:2322
|
4141 |
+
msgid "PHP exception"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: defaults.php:2328
|
4145 |
+
msgid "PHP shutdown error"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: defaults.php:2334
|
4149 |
+
msgid "WordPress was updated"
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: defaults.php:2335
|
4153 |
+
msgid "Updated WordPress."
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: defaults.php:2337
|
4157 |
+
msgid "Previous version"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: defaults.php:2354
|
4161 |
+
msgid "Advertising Extensions"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: defaults.php:2355
|
4165 |
+
msgid "%PromoName% %PromoMessage%"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: defaults.php:2359
|
4169 |
+
msgid "Activity log plugin"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: defaults.php:2363
|
4173 |
+
msgid "Events automatically pruned by system"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: defaults.php:2364
|
4177 |
+
msgid "System automatically deleted %EventCount% events from the activity log."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: defaults.php:2373
|
4181 |
+
msgid "Reset the plugin's settings to default"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: defaults.php:2374
|
4185 |
+
msgid "Reset the activity log plugin's settings to default."
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: defaults.php:2383
|
4189 |
+
msgid "Purged the activity log"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: defaults.php:2384
|
4193 |
+
msgid "Purged the activity log."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: defaults.php:2394
|
4197 |
+
msgid "Deleted all the data about a user from the activity log."
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: defaults.php:2395
|
4201 |
+
msgid "Deleted all the data about the user <strong>%user%</strong> from the activity log."
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: defaults.php:2408
|
4205 |
+
msgid "Deleted all the data of a specific type from the activity log."
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: defaults.php:2409
|
4209 |
+
msgid "Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log."
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: defaults.php:2419
|
4213 |
+
msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: defaults.php:2420
|
4217 |
+
msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: defaults.php:2430
|
4221 |
+
msgid "Changed the status of the Login Page Notification"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: defaults.php:2431
|
4225 |
+
msgid "Changed the status of the <strong>Login Page Notification.</strong>"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
+
#: defaults.php:2440
|
4229 |
+
msgid "Changed the text of the Login Page Notification"
|
4230 |
msgstr ""
|
4231 |
|
4232 |
+
#: defaults.php:2441
|
4233 |
+
msgid "Changed the text of the <strong>Login Page Notification.</strong>"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: defaults.php:2450
|
4237 |
+
msgid "Changed the status of the Reverse proxy / firewall option"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: defaults.php:2451
|
4241 |
+
msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: defaults.php:2460
|
4245 |
+
msgid "Changed the Restrict plugin access setting"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: defaults.php:2461
|
4249 |
+
msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: defaults.php:2463 defaults.php:2497 defaults.php:2967 defaults.php:3054
|
4253 |
+
#: defaults.php:3347
|
4254 |
+
msgid "Previous setting"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
+
#: defaults.php:2472
|
4258 |
+
msgid "The user %user% to / from the list of users who can view the activity log"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
+
#: defaults.php:2473
|
4262 |
+
msgid "The user %user% to / from the list of users who can view the activity log."
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: defaults.php:2475
|
4266 |
+
msgid "Previous list of users who had access to view the activity log"
|
4267 |
msgstr ""
|
4268 |
|
4269 |
+
#: defaults.php:2484
|
4270 |
+
msgid "Changed the status of the Hide plugin in plugins page setting"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: defaults.php:2485
|
4274 |
+
msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: defaults.php:2494
|
4278 |
+
msgid "Changed the Activity log retention setting"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: defaults.php:2495
|
4282 |
+
msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: defaults.php:2506
|
4286 |
+
msgid "A user was added to / from the list of excluded users from the activity log"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: defaults.php:2507
|
4290 |
+
msgid "The user %user% to / from the list of excluded users from the activity log."
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: defaults.php:2509 defaults.php:2521
|
4294 |
+
msgid "Previous list of users"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: defaults.php:2518
|
4298 |
+
msgid "A user role was added to / from the list of excluded roles from the activity log"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: defaults.php:2519
|
4302 |
+
msgid "The user role %role% to / from the list of excluded roles from the activity log."
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: defaults.php:2530
|
4306 |
+
msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: defaults.php:2531
|
4310 |
+
msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: defaults.php:2533
|
4314 |
+
msgid "Previous list of IPs"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: defaults.php:2542
|
4318 |
+
msgid "A post type was added to / from the list of excluded post types from the activity log"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: defaults.php:2543
|
4322 |
+
msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: defaults.php:2545
|
4326 |
+
msgid "Previous list of Post types"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: defaults.php:2554
|
4330 |
+
msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: defaults.php:2555
|
4334 |
+
msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: defaults.php:2557
|
4338 |
+
msgid "Previous list of Custom fields"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: defaults.php:2566
|
4342 |
+
msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: defaults.php:2567
|
4346 |
+
msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: defaults.php:2569
|
4350 |
+
msgid "Previous list of user profile Custom fields"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: defaults.php:2577
|
4354 |
+
msgid "Notifications & Integrations"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: defaults.php:2581
|
4358 |
+
msgid "Changed the status of the Daily Summary of Activity Log"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: defaults.php:2582
|
4362 |
+
msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: defaults.php:2591
|
4366 |
+
msgid "Modified the reciepients of the Daily Summary of Activity Log."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: defaults.php:2592
|
4370 |
+
msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: defaults.php:2594
|
4374 |
+
msgid "New recipient"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: defaults.php:2595
|
4378 |
+
msgid "Previous recipient"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: defaults.php:2604
|
4382 |
+
msgid "Changed the status of a built in notification"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: defaults.php:2605
|
4386 |
+
msgid "Changed the status of the built in notification %notification_name%."
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: defaults.php:2614
|
4390 |
+
msgid "Modified the recipient(s) of the built a notification"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: defaults.php:2615
|
4394 |
+
msgid "Modified the recipient(s) of the built in notification %notification_name%."
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: defaults.php:2617
|
4398 |
+
msgid "New recipient(s)"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: defaults.php:2618
|
4402 |
+
msgid "Previous recipient(s)"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: defaults.php:2627
|
4406 |
+
msgid "Added a new custom notification"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: defaults.php:2628
|
4410 |
+
msgid "Added a new custom notification %notification_name%."
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: defaults.php:2630 defaults.php:2642
|
4414 |
+
msgid "Recipient(s)"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: defaults.php:2639
|
4418 |
+
msgid "Modified a custom notification"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: defaults.php:2640
|
4422 |
+
msgid "Modified the custom notification %notification_name%."
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: defaults.php:2651
|
4426 |
+
msgid "Changed the status of a custom notification"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
#: defaults.php:2652
|
4430 |
+
msgid "Changed the status of the custom notification %notification_name%."
|
4431 |
msgstr ""
|
4432 |
|
4433 |
+
#: defaults.php:2661
|
4434 |
+
msgid "Deleted a custom notification"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
+
#: defaults.php:2662
|
4438 |
+
msgid "Deleted the custom notification %notification_name%."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
+
#: defaults.php:2671
|
4442 |
+
msgid "Modified a default notification template"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
+
#: defaults.php:2672
|
4446 |
+
msgid "Modified the default %template_name% notification template."
|
4447 |
msgstr ""
|
4448 |
|
4449 |
+
#: defaults.php:2683
|
4450 |
+
msgid "Added a new integrations connection"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: defaults.php:2684
|
4454 |
+
msgid "Added / removed the integrations connection %name%"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: defaults.php:2686 defaults.php:2698
|
4458 |
+
msgid "Connection type"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: defaults.php:2695
|
4462 |
+
msgid "Modified an integrations connection"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: defaults.php:2696
|
4466 |
+
msgid "Modified the integrations connection %name%."
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: defaults.php:2707
|
4470 |
+
msgid "Deleted a integrations connection"
|
4471 |
msgstr ""
|
4472 |
|
4473 |
+
#: defaults.php:2708
|
4474 |
+
msgid "Deleted the integrations connection %name%."
|
|
|
4475 |
msgstr ""
|
4476 |
|
4477 |
+
#: defaults.php:2717
|
4478 |
+
msgid "Added a new activity log mirror"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: defaults.php:2718
|
4482 |
+
msgid "Added a new activity log mirror %name%."
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: defaults.php:2720 defaults.php:2732 defaults.php:2744
|
4486 |
+
msgid "Connection used by this mirror"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: defaults.php:2729
|
4490 |
+
msgid "Modified an activity log mirror"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: defaults.php:2730
|
4494 |
+
msgid "Modified the activity log mirror %name%."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: defaults.php:2741
|
4498 |
+
msgid "Changed the status of an activity log mirror"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: defaults.php:2742
|
4502 |
+
msgid "Changed the status of the activity log mirror %name%."
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: defaults.php:2753
|
4506 |
+
msgid "Deleted an activity log mirror"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: defaults.php:2754
|
4510 |
+
msgid "Deleted the activity log mirror %name%."
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: defaults.php:2763
|
4514 |
+
msgid "Changed the status of Logging of events to the database"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: defaults.php:2764
|
4518 |
+
msgid "Changed the status of <strong>Logging of events to the database</strong>."
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: defaults.php:2772
|
4522 |
+
msgid "WordPress Site Settings"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: defaults.php:2776
|
4526 |
+
msgid "Option Anyone Can Register in WordPress settings changed"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: defaults.php:2777
|
4530 |
+
msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: defaults.php:2786
|
4534 |
+
msgid "New User Default Role changed"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: defaults.php:2787
|
4538 |
+
msgid "Changed the <strong>New user default role</strong> WordPress setting."
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: defaults.php:2790
|
4542 |
+
msgid "New role"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: defaults.php:2799
|
4546 |
+
msgid "WordPress Administrator Notification email changed"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: defaults.php:2800
|
4550 |
+
msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: defaults.php:2802
|
4554 |
+
msgid "Previous address"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: defaults.php:2803
|
4558 |
+
msgid "New address"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: defaults.php:2812
|
4562 |
+
msgid "User changes the WordPress Permalinks"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: defaults.php:2813
|
4566 |
+
msgid "Changed the <strong>WordPress permalinks</strong>."
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: defaults.php:2815
|
4570 |
+
msgid "Previous permalinks"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: defaults.php:2816
|
4574 |
+
msgid "New permalinks"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: defaults.php:2825
|
4578 |
+
msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
|
4579 |
msgstr ""
|
4580 |
|
4581 |
+
#: defaults.php:2826
|
4582 |
+
msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
+
#: defaults.php:2835
|
4586 |
+
msgid "Enabled/Disabled comments on all the website"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
+
#: defaults.php:2836
|
4590 |
+
msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: defaults.php:2846
|
4594 |
+
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
+
#: defaults.php:2847
|
4598 |
+
msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: defaults.php:2856
|
4602 |
+
msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
|
4603 |
msgstr ""
|
4604 |
|
4605 |
+
#: defaults.php:2857
|
4606 |
+
msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
+
#: defaults.php:2866
|
4610 |
+
msgid "Enabled/Disabled the option to automatically close comments"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: defaults.php:2867
|
4614 |
+
msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: defaults.php:2876
|
4618 |
+
msgid "Changed the value of the option Automatically close comments"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: defaults.php:2877
|
4622 |
+
msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: defaults.php:2888
|
4626 |
+
msgid "Enabled/Disabled the option for comments to be manually approved"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
+
#: defaults.php:2889
|
4630 |
+
msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: defaults.php:2898
|
4634 |
+
msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: defaults.php:2899
|
4638 |
+
msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: defaults.php:2908
|
4642 |
+
msgid "Changed the number of links that a comment must have to be held in the queue"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: defaults.php:2909
|
4646 |
+
msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: defaults.php:2920
|
4650 |
+
msgid "Modified the list of keywords for comments moderation"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: defaults.php:2921
|
4654 |
+
msgid "Modified the list of keywords for comments medoration in WordPress."
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: defaults.php:2930
|
4658 |
+
msgid "Modified the list of keywords for comments blacklisting"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: defaults.php:2931
|
4662 |
+
msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: defaults.php:2940
|
4666 |
+
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: defaults.php:2941
|
4670 |
+
msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: defaults.php:2952
|
4674 |
+
msgid "Option Site Address (URL) in WordPress settings changed"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: defaults.php:2953
|
4678 |
+
msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: defaults.php:2964
|
4682 |
+
msgid "Option Your homepage displays in WordPress settings changed"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: defaults.php:2965
|
4686 |
+
msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: defaults.php:2976
|
4690 |
+
msgid "Option homepage in WordPress settings changed"
|
|
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: defaults.php:2977
|
4694 |
+
msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: defaults.php:2979 defaults.php:2991
|
4698 |
+
msgid "Previous page"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: defaults.php:2988
|
4702 |
+
msgid "Option posts page in WordPress settings changed"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: defaults.php:2989
|
4706 |
+
msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: defaults.php:3001
|
4710 |
+
msgid "Option Timezone in WordPress settings changed"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: defaults.php:3002
|
4714 |
+
msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
|
|
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: defaults.php:3004
|
4718 |
+
msgid "Previous timezone"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: defaults.php:3013
|
4722 |
+
msgid "Option Date format in WordPress settings changed"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: defaults.php:3014
|
4726 |
+
msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: defaults.php:3016 defaults.php:3028
|
4730 |
+
msgid "Previous format"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: defaults.php:3025
|
4734 |
+
msgid "Option Time format in WordPress settings changed"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
+
#: defaults.php:3026
|
4738 |
+
msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
|
4739 |
msgstr ""
|
4740 |
|
4741 |
+
#: defaults.php:3038
|
4742 |
+
msgid "Option Automatic updates setting changed"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
+
#: defaults.php:3039
|
4746 |
+
msgid "Changed the <strong>Automatic updates</strong> setting."
|
4747 |
msgstr ""
|
4748 |
|
4749 |
+
#: defaults.php:3041
|
4750 |
+
msgid "New setting status"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
+
#: defaults.php:3051
|
4754 |
+
msgid "Option Site Language setting changed"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: defaults.php:3052
|
4758 |
+
msgid "Changed the <strong>Site Language</strong> to %new_value%."
|
4759 |
msgstr ""
|
4760 |
|
4761 |
+
#: defaults.php:3062
|
4762 |
+
msgid "Database Events"
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: defaults.php:3066
|
4766 |
+
msgid "Plugin created table"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: defaults.php:3067
|
4770 |
+
msgid "The plugin %Plugin->Name% created this table in the database."
|
4771 |
msgstr ""
|
4772 |
|
4773 |
+
#: defaults.php:3069 defaults.php:3081 defaults.php:3093 defaults.php:3105
|
4774 |
+
#: defaults.php:3117
|
4775 |
+
msgid "Table"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: defaults.php:3078
|
4779 |
+
msgid "Plugin modified table structure"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
+
#: defaults.php:3079
|
4783 |
+
msgid "The plugin %Plugin->Name% modified the structure of a database table."
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: defaults.php:3090
|
4787 |
+
msgid "Plugin deleted table"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: defaults.php:3091
|
4791 |
+
msgid "The plugin %Plugin->Name% deleted this table from the database."
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: defaults.php:3102
|
4795 |
+
msgid "Theme created tables"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: defaults.php:3103
|
4799 |
+
msgid "The theme %Theme->Name% created this tables in the database."
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: defaults.php:3114
|
4803 |
+
msgid "Theme modified tables structure"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: defaults.php:3115
|
4807 |
+
msgid "The theme %Theme->Name% modified the structure of this database table"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: defaults.php:3126
|
4811 |
+
msgid "Theme deleted tables"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: defaults.php:3127
|
4815 |
+
msgid "The theme %Theme->Name% deleted this table from the database."
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: defaults.php:3129 defaults.php:3141 defaults.php:3153 defaults.php:3165
|
4819 |
+
#: defaults.php:3177 defaults.php:3189 defaults.php:3201
|
4820 |
+
msgid "Tables"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
+
#: defaults.php:3138
|
4824 |
+
msgid "Unknown component created tables"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
+
#: defaults.php:3139
|
4828 |
+
msgid "An unknown component created these tables in the database."
|
4829 |
msgstr ""
|
4830 |
|
4831 |
+
#: defaults.php:3150
|
4832 |
+
msgid "Unknown component modified tables structure"
|
4833 |
msgstr ""
|
4834 |
|
4835 |
+
#: defaults.php:3151
|
4836 |
+
msgid "An unknown component modified the structure of these database tables."
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: defaults.php:3162
|
4840 |
+
msgid "Unknown component deleted tables"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: defaults.php:3163
|
4844 |
+
msgid "An unknown component deleted these tables from the database."
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: defaults.php:3174
|
4848 |
+
msgid "WordPress created tables"
|
4849 |
msgstr ""
|
4850 |
|
4851 |
+
#: defaults.php:3175
|
4852 |
+
msgid "WordPress has created these tables in the database."
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: defaults.php:3186
|
4856 |
+
msgid "WordPress modified tables structure"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
+
#: defaults.php:3187
|
4860 |
+
msgid "WordPress modified the structure of these database tables."
|
4861 |
msgstr ""
|
4862 |
|
4863 |
+
#: defaults.php:3198
|
4864 |
+
msgid "WordPress deleted tables"
|
4865 |
msgstr ""
|
4866 |
|
4867 |
+
#: defaults.php:3199
|
4868 |
+
msgid "WordPress deleted these tables from the database."
|
4869 |
msgstr ""
|
4870 |
|
4871 |
+
#: defaults.php:3210
|
4872 |
+
msgid "Multisite Network Sites"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: defaults.php:3215
|
4876 |
+
msgid "New site added on the network"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: defaults.php:3216
|
4880 |
+
msgid "Added the new site %SiteName% to the network."
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: defaults.php:3227
|
4884 |
+
msgid "Existing site archived"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: defaults.php:3228
|
4888 |
+
msgid "Archived the site %SiteName% on the network."
|
4889 |
msgstr ""
|
4890 |
|
4891 |
+
#: defaults.php:3239
|
4892 |
+
msgid "Archived site has been unarchived"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: defaults.php:3240
|
4896 |
+
msgid "Unarchived the site %SiteName%."
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: defaults.php:3251
|
4900 |
+
msgid "Deactivated site has been activated"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: defaults.php:3252
|
4904 |
+
msgid "Activated the site %SiteName% on the network."
|
|
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: defaults.php:3263
|
4908 |
+
msgid "Site has been deactivated"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
+
#: defaults.php:3264
|
4912 |
+
msgid "Deactiveated the site %SiteName% on the network."
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: defaults.php:3275
|
4916 |
+
msgid "Existing site deleted from network"
|
4917 |
msgstr ""
|
4918 |
|
4919 |
+
#: defaults.php:3276
|
4920 |
+
msgid "The site: %SiteName%."
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: defaults.php:3287
|
4924 |
+
msgid "Allow site administrators to add new users to their sites settings changed"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: defaults.php:3288
|
4928 |
+
msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: defaults.php:3297
|
4932 |
+
msgid "Site upload space settings changed"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: defaults.php:3298
|
4936 |
+
msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: defaults.php:3307
|
4940 |
+
msgid "Site upload space file size settings changed"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
+
#: defaults.php:3308
|
4944 |
+
msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: defaults.php:3310
|
4948 |
+
msgid "Previous size (MB)"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: defaults.php:3319
|
4952 |
+
msgid "Site Upload file types settings changed"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: defaults.php:3320
|
4956 |
+
msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: defaults.php:3332
|
4960 |
+
msgid "Site Max upload file size settings changed"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: defaults.php:3333
|
4964 |
+
msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: defaults.php:3335
|
4968 |
+
msgid "Previous size (KB)"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: defaults.php:3344
|
4972 |
+
msgid "Allow new registrations settings changed"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: defaults.php:3345
|
4976 |
+
msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: defaults.php:3366
|
4980 |
+
msgid "Dummy"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: wp-security-audit-log.php:984 wp-security-audit-log.php:1012
|
4984 |
+
#, php-format
|
4985 |
+
msgid "Hey %s"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
+
#: wp-security-audit-log.php:988
|
4989 |
+
msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
|
4990 |
msgstr ""
|
4991 |
|
4992 |
+
#: wp-security-audit-log.php:989 wp-security-audit-log.php:1024
|
4993 |
+
msgid "Note: "
|
4994 |
msgstr ""
|
4995 |
|
4996 |
+
#: wp-security-audit-log.php:990 wp-security-audit-log.php:1025
|
4997 |
+
msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: wp-security-audit-log.php:1018
|
5001 |
+
#, php-format
|
5002 |
+
msgid "Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: wp-security-audit-log.php:1070
|
5006 |
+
#, php-format
|
5007 |
+
msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
+
#: wp-security-audit-log.php:1071
|
5011 |
+
msgid "Activate the licence key now"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: wp-security-audit-log.php:1089
|
5015 |
+
#, php-format
|
5016 |
+
msgid "%s You need to renew your license to continue using premium features."
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: wp-security-audit-log.php:1093
|
5020 |
+
#, php-format
|
5021 |
+
msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: wp-security-audit-log.php:1191
|
5025 |
+
msgid "Error: You do not have sufficient permissions to disable this custom field."
|
5026 |
msgstr ""
|
5027 |
|
5028 |
+
#: wp-security-audit-log.php:1239
|
5029 |
+
#, php-format
|
5030 |
+
msgid "Custom field %s is no longer being monitored."
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: wp-security-audit-log.php:1244
|
5034 |
+
#, php-format
|
5035 |
+
msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
|
5036 |
msgstr ""
|
5037 |
|
5038 |
+
#: wp-security-audit-log.php:1245
|
5039 |
+
msgid "Excluded Objects"
|
|
|
5040 |
msgstr ""
|
5041 |
|
5042 |
+
#: wp-security-audit-log.php:1258
|
5043 |
+
msgid "Error: You do not have sufficient permissions to disable this alert."
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#: wp-security-audit-log.php:1282
|
5047 |
+
#, php-format
|
5048 |
+
msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: wp-security-audit-log.php:1282
|
5052 |
+
msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: wp-security-audit-log.php:1363
|
5056 |
+
#, php-format
|
5057 |
+
msgid "You are using a version of PHP that is older than %s, which is no longer supported."
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: wp-security-audit-log.php:1365
|
5061 |
+
msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: wp-security-audit-log.php:1370
|
5065 |
+
#, php-format
|
5066 |
+
msgid "Please install the %s plugin on the MainWP dashboard."
|
5067 |
msgstr ""
|
5068 |
|
5069 |
+
#: wp-security-audit-log.php:1370
|
5070 |
+
msgid "Activity Log for MainWP"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
+
#: wp-security-audit-log.php:1372
|
5074 |
+
#, php-format
|
5075 |
+
msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: wp-security-audit-log.php:1372
|
5079 |
+
msgid "getting started guide"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: wp-security-audit-log.php:1854
|
5083 |
+
msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: wp-security-audit-log.php:1873
|
5087 |
+
msgid "Every 6 hours"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: wp-security-audit-log.php:1877
|
5091 |
+
msgid "Every 45 minutes"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: wp-security-audit-log.php:1881
|
5095 |
+
msgid "Every 30 minutes"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: wp-security-audit-log.php:1885
|
5099 |
+
msgid "Every 15 minutes"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: wp-security-audit-log.php:1889
|
5103 |
+
msgid "Every 10 minutes"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: wp-security-audit-log.php:1893
|
5107 |
+
msgid "Every 1 minute"
|
5108 |
msgstr ""
|
5109 |
|
5110 |
+
#: wp-security-audit-log.php:1907
|
5111 |
+
#, php-format
|
5112 |
+
msgid "Method %1$s is deprecated since version %2$s!"
|
5113 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl.html
|
|
6 |
Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 5.9
|
9 |
-
Stable tag: 4.3.
|
10 |
Requires PHP: 7.0
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
@@ -208,23 +208,11 @@ Please refer to our [support pages](https://wpactivitylog.com/support/?utm_sourc
|
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
-
= 4.3.
|
|
|
212 |
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
* See a user's activity log with one-click from the WordPress users page.
|
217 |
-
* Added "Custom User Field" as criterion in the notifications trigger builder.
|
218 |
-
|
219 |
-
**Improvements**
|
220 |
-
* User's role is reported in the list of logged in users.
|
221 |
-
* Added PHP Opcache flush during plugin upgrade (needed for updating to 4.4).
|
222 |
-
* Made more JS strings in the plugin translatable.
|
223 |
-
* Added the URL metadata in the CSV activity log reports.
|
224 |
-
|
225 |
-
**Bug fixes**
|
226 |
-
* In some code the premium plugin trial was 7 days - changed to 14 days.
|
227 |
-
* Fixed: cannot set up a third party service integration on WordPress earlier than 5.6.
|
228 |
-
* Fixed some typos in some of the events' text.
|
229 |
|
230 |
Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
|
6 |
Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 5.9
|
9 |
+
Stable tag: 4.3.6
|
10 |
Requires PHP: 7.0
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= 4.3.6 (2022-02-15) =
|
212 |
+
Release notes: the improvements in this update are required to prepare for WP Activity Log 4.4. Therefore it is important to install this update before you update to version 4.4.
|
213 |
|
214 |
+
* **Improvements**
|
215 |
+
* Removed opcache purging.
|
216 |
+
* Improved error handling during plugin upgrade.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
218 |
Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://wpactivitylog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
-
* Version: 4.3.
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: https://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
@@ -17,7 +17,7 @@
|
|
17 |
|
18 |
/*
|
19 |
WP Activity Log
|
20 |
-
Copyright(c)
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -49,7 +49,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
49 |
*
|
50 |
* @var string
|
51 |
*/
|
52 |
-
public $version = '4.3.
|
53 |
|
54 |
/**
|
55 |
* Plugin constants.
|
@@ -322,9 +322,6 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
322 |
return;
|
323 |
}
|
324 |
|
325 |
-
require_once 'classes/Utilities/OpCacheUtils.php';
|
326 |
-
add_filter( 'upgrader_pre_install', array( 'WSAL_Utilities_OpCacheUtils', 'clear_caches' ), 10, 2 );
|
327 |
-
|
328 |
$this->define_constants();
|
329 |
$this->set_allowed_html_tags();
|
330 |
$this->includes();
|
@@ -337,30 +334,74 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
337 |
}
|
338 |
}
|
339 |
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
350 |
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
|
362 |
-
|
363 |
-
|
364 |
|
365 |
/**
|
366 |
* Checks to see if WSAL should be loaded for register, login, and comment events.
|
4 |
* Plugin URI: https://wpactivitylog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
+
* Version: 4.3.6
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: https://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
17 |
|
18 |
/*
|
19 |
WP Activity Log
|
20 |
+
Copyright(c) 2021 WP White Security (email : info@wpwhitesecurity.com)
|
21 |
|
22 |
This program is free software; you can redistribute it and/or modify
|
23 |
it under the terms of the GNU General Public License, version 2, as
|
49 |
*
|
50 |
* @var string
|
51 |
*/
|
52 |
+
public $version = '4.3.6';
|
53 |
|
54 |
/**
|
55 |
* Plugin constants.
|
322 |
return;
|
323 |
}
|
324 |
|
|
|
|
|
|
|
325 |
$this->define_constants();
|
326 |
$this->set_allowed_html_tags();
|
327 |
$this->includes();
|
334 |
}
|
335 |
}
|
336 |
|
337 |
+
/**
|
338 |
+
* Returns whether the plugin should load.
|
339 |
+
*
|
340 |
+
* @return bool Whether the plugin should load.
|
341 |
+
*/
|
342 |
+
public function should_load() {
|
343 |
+
// Always load on the admin, except for the scenario when this plugin is being updated.
|
344 |
+
if ( is_admin() ) {
|
345 |
+
$acceptable_slugs = array(
|
346 |
+
'wp-security-audit-log',
|
347 |
+
'wp-activity-log',
|
348 |
+
);
|
349 |
+
|
350 |
+
// Check if this plugin is being updated from the plugin list.
|
351 |
+
if ( isset( $_REQUEST['action'] ) && 'update-plugin' === wp_unslash( trim( $_REQUEST['action'] ) )
|
352 |
+
&& in_array( wp_unslash( trim( $_REQUEST['slug'] ) ), $acceptable_slugs ) ) {
|
353 |
+
return false;
|
354 |
+
}
|
355 |
+
|
356 |
+
// Check if this plugin is being updated using the file upload method.
|
357 |
+
if ( isset( $_REQUEST['action'] ) && 'upload-plugin' === wp_unslash( trim( $_REQUEST['action'] ) )
|
358 |
+
&& isset( $_REQUEST['overwrite'] ) && 'update-plugin' === wp_unslash( trim( $_REQUEST['overwrite'] ) )
|
359 |
+
&& isset( $_REQUEST['package'] )) {
|
360 |
+
/**
|
361 |
+
* Request doesn't contain the file name, but a numeric package ID.
|
362 |
+
*
|
363 |
+
* @see File_Upload_Upgrader::__construct()
|
364 |
+
*/
|
365 |
+
$post_id = (int) $_REQUEST['package'];
|
366 |
+
$attachment = get_post( $post_id );
|
367 |
+
if ( ! empty( $attachment ) ) {
|
368 |
+
$filename = $attachment->post_title;
|
369 |
+
foreach ( $acceptable_slugs as $acceptable_slug ) {
|
370 |
+
if ( false !== strpos( $filename, $acceptable_slug ) ) {
|
371 |
+
return false;
|
372 |
+
}
|
373 |
+
}
|
374 |
+
}
|
375 |
+
}
|
376 |
+
|
377 |
+
// Check if this plugin is being updated from the WordPress updated screen (update-core.php).
|
378 |
+
if ( isset( $_REQUEST['action'] ) && 'do-plugin-upgrade' === wp_unslash( trim( $_REQUEST['action'] ) ) ) {
|
379 |
+
$selected_plugins = $_REQUEST['checked'];
|
380 |
+
if ( ! empty( $selected_plugins ) ) {
|
381 |
+
foreach ( $selected_plugins as $selected_plugin ) {
|
382 |
+
if ( 'wp-security-audit-log.php' === basename( $selected_plugin ) ) {
|
383 |
+
return false;
|
384 |
+
}
|
385 |
+
}
|
386 |
+
}
|
387 |
+
}
|
388 |
+
|
389 |
+
return true;
|
390 |
+
}
|
391 |
|
392 |
+
// Check conditions for frontend.
|
393 |
+
if ( self::is_frontend() && ! is_user_logged_in() && ! self::should_load_frontend() ) {
|
394 |
+
// User isn't logged in, and we aren't logging visitor events on front-end.
|
395 |
+
return false;
|
396 |
+
}
|
397 |
|
398 |
+
// Other contexts/scenarios.
|
399 |
+
if ( self::is_rest_api() ) {
|
400 |
+
return is_user_logged_in();
|
401 |
+
}
|
402 |
|
403 |
+
return true;
|
404 |
+
}
|
405 |
|
406 |
/**
|
407 |
* Checks to see if WSAL should be loaded for register, login, and comment events.
|