aboutsummaryrefslogtreecommitdiff
path: root/mod/logrotate/languages/en.php
blob: 27731d732a5ed810fd3c17e2163af3186cd1949d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
 * Elgg log rotator language pack.
 *
 * @package ElggLogRotate
 */

$english = array(
	'logrotate:period' => 'How often should the system log be archived?',

	'logrotate:weekly' => 'Once a week',
	'logrotate:monthly' => 'Once a month',
	'logrotate:yearly' => 'Once a year',

	'logrotate:logrotated' => "Log rotated\n",
	'logrotate:lognotrotated' => "Error rotating log\n",
	
	'logrotate:delete' => 'Delete archived logs older than a',

	'logrotate:week' => 'week',
	'logrotate:month' => 'month',
	'logrotate:year' => 'year',
		
	'logrotate:logdeleted' => "Log deleted\n",
	'logrotate:lognotdeleted' => "Error deleting log\n",
);

add_translation("en", $english);