aboutsummaryrefslogtreecommitdiff
path: root/mod/logrotate/languages/en.php
blob: eb837c2e131c3205dfbe1798f5db38759c856656 (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
<?php
	/**
	 * Elgg log rotator language pack.
	 * 
	 * @package ElggLogRotate
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.com/
	 */

	$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",
	);
					
	add_translation("en",$english);
?>