1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Terence J. Grant<tjgrant@tatewake.com> 7 */ 8 9// for admin plugins, the menu prompt to be displayed in the admin menu 10// if set here, the plugin doesn't need to override the getMenuText() method 11$lang['menu'] = 'Backup Tool'; 12 13$lang['components'] = 'Components to backup'; 14 15$lang['bt_pages'] = 'Pages'; 16$lang['bt_revisions'] = 'Old Revisions of Pages'; 17$lang['bt_meta'] = 'Page Meta Data'; 18$lang['bt_media'] = 'Media files'; 19$lang['bt_mediarevs'] = 'Old revisions of Media files'; 20$lang['bt_mediameta'] = 'Media file meta data'; 21$lang['bt_config'] = 'Configuration settings'; 22$lang['bt_templates'] = 'Templates'; 23$lang['bt_plugins'] = 'Plugins'; 24 25$lang['bt_create_backup'] = 'Create Backup'; 26 27$lang['running'] = 'The backup tool is working, please wait'; 28$lang['success'] = 'Backup successful. Download <a href="%s">%s</a>.'; 29 30$lang['medians'] = 'Your backups are stored in <code>%s</code>. Use the <a href="%s">Media Manager</a> to download or delete old backups.'; 31$lang['recent'] = 'Your most recent backups:'; 32 33$lang['windows-msg'] = 'You\'re running on a Windows-based server. Backup Tool may not function properly on Windows-based servers.'; 34