Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 37
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3*
4* This file is part of the phpBB Forum Software package.
5*
6* @copyright (c) phpBB Limited <https://www.phpbb.com>
7* @license GNU General Public License, version 2 (GPL-2.0)
8*
9* For full copyright and license information, please see
10* the docs/CREDITS.txt file.
11*
12*/
13
14/**
15* DO NOT CHANGE
16*/
17if (!defined('IN_PHPBB'))
18{
19    exit;
20}
21
22if (empty($lang) || !is_array($lang))
23{
24    $lang = array();
25}
26
27// DEVELOPERS PLEASE NOTE
28//
29// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30//
31// Placeholders can now contain order information, e.g. instead of
32// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
33// translators to re-order the output of data while ensuring it remains correct
34//
35// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
36// equally where a string contains only two placeholders which are used to wrap text
37// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38
39// Database Backup/Restore
40$lang = array_merge($lang, array(
41    'ACP_BACKUP_EXPLAIN'    => 'Here you can backup all your phpBB related data. The resulting archive will be stored in your <samp>store/</samp> folder. Depending on your server configuration you may be able to compress the file in a number of formats.',
42    'ACP_RESTORE_EXPLAIN'    => 'This will perform a full restore of all phpBB tables from a saved file. If your server supports it you may use a gzip or bzip2 compressed text file and it will automatically be decompressed. <strong>WARNING</strong> This will overwrite any existing data. The restore may take a long time to process please do not move from this page till it is complete. Backups are stored in the <samp>store/</samp> folder and are assumed to be generated by phpBB’s backup functionality. Restoring backups that were not created by the built in system may or may not work.',
43
44    'BACKUP_DELETE'            => 'The backup file has been deleted successfully.',
45    'BACKUP_DELETE_ERROR'    => 'Error while deleting file.',
46    'BACKUP_INVALID'        => 'The selected file to backup is invalid.',
47    'BACKUP_NOT_SUPPORTED'    => 'The selected backup is not supported',
48    'BACKUP_OPTIONS'        => 'Backup options',
49    'BACKUP_SUCCESS'        => 'The backup file has been created successfully.',
50    'BACKUP_TYPE'            => 'Backup type',
51
52    'DATABASE'            => 'Database utilities',
53    'DATA_ONLY'            => 'Data only',
54    'DELETE_BACKUP'        => 'Delete backup',
55    'DELETE_SELECTED_BACKUP'    => 'Are you sure you want to delete the selected backup?',
56    'DESELECT_ALL'        => 'Deselect all',
57    'DOWNLOAD_BACKUP'    => 'Download backup',
58
59    'FILE_TYPE'            => 'File type',
60    'FILE_WRITE_FAIL'    => 'Unable to write file to storage folder.',
61    'FULL_BACKUP'        => 'Full',
62
63    'RESTORE_DOWNLOAD_FAIL'    => 'Error while copying file from storage to local temporary folder.',
64    'RESTORE_FAILURE'        => 'The backup file may be corrupt.',
65    'RESTORE_OPTIONS'        => 'Restore options',
66    'RESTORE_SELECTED_BACKUP'    => 'Are you sure you want to restore the selected backup?',
67    'RESTORE_SUCCESS'        => 'The database has been successfully restored.<br /><br />Your board should be back to the state it was when the backup was made.',
68
69    'SELECT_ALL'            => 'Select all',
70    'SELECT_FILE'            => 'Select a file',
71    'START_BACKUP'            => 'Start backup',
72    'START_RESTORE'            => 'Start restore',
73    'STORE_AND_DOWNLOAD'    => 'Store and download',
74    'STORE_LOCAL'            => 'Store file locally',
75
76    'TABLE_SELECT'        => 'Table select',
77    'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
78));