diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-27 17:00:26 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-27 17:00:26 +0000 |
commit | 0af57b1b96d841c98496a29c8bdac11451e64971 (patch) | |
tree | 47b4c0c41ba6ff928cd55394bbc8590a26bd42aa /mod/logrotate/languages/en.php | |
parent | d33b1210925eb4077b582e0c17875103c09772c2 (diff) | |
download | elgg-0af57b1b96d841c98496a29c8bdac11451e64971.tar.gz elgg-0af57b1b96d841c98496a29c8bdac11451e64971.tar.bz2 |
Closes #215: Log rotation added.
git-svn-id: https://code.elgg.org/elgg/trunk@2318 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logrotate/languages/en.php')
-rw-r--r-- | mod/logrotate/languages/en.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/logrotate/languages/en.php b/mod/logrotate/languages/en.php new file mode 100644 index 000000000..eb837c2e1 --- /dev/null +++ b/mod/logrotate/languages/en.php @@ -0,0 +1,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); +?>
\ No newline at end of file |