Emmanuel BENOîT
5f5b066760
* Added checkbox on the main form that causes the plugin to generate a CSV file instead of displaying the results.
48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* english language file
|
|
*
|
|
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
|
* @author Vincent de Lagabbe <vincent@delagabbe.com>
|
|
*/
|
|
|
|
$lang['encoding'] = 'utf-8';
|
|
$lang['direction'] = 'ltr';
|
|
|
|
// for admin plugins, the menu prompt to be displayed in the admin menu
|
|
// if set here, the plugin doesn't need to override the getMenuText() method
|
|
$lang['menu'] = 'Query Changelog';
|
|
$lang['desc'] = 'Configurable access to the whole changelog';
|
|
|
|
$lang['qc_from'] = 'From';
|
|
$lang['qc_to'] = 'To';
|
|
$lang['qc_date'] = 'Date';
|
|
$lang['qc_begining'] = 'Wiki birth';
|
|
$lang['qc_now'] = 'Now';
|
|
|
|
$lang['qc_base_ns'] = 'Base namespace';
|
|
$lang['qc_root'] = '[Root namespace]';
|
|
$lang['qc_current'] = '(Current)';
|
|
|
|
$lang['qc_users'] = 'From user(s)';
|
|
$lang['qc_all_users'] = '[All]';
|
|
|
|
$lang['qc_major_only'] = 'Skip minor changes';
|
|
$lang['qc_as_csv'] = 'Download CSV';
|
|
|
|
$lang['qc_submit'] = 'Submit';
|
|
|
|
$lang['qc_err_date'] = 'Invalid date';
|
|
$lang['qc_err_period'] = 'Start date must be before end date';
|
|
|
|
$lang['qc_back'] = 'Back';
|
|
|
|
$lang['qc_res_nc'] = 'No changes found';
|
|
$lang['qc_res_title'] = 'Changelog';
|
|
$lang['qc_res_ns'] = 'In namespace';
|
|
$lang['qc_res_from'] = 'Changelog start date';
|
|
$lang['qc_res_to'] = 'Changelog end date';
|
|
$lang['qc_res_users'] = 'From user(s)';
|
|
$lang['qc_res_all'] = 'All';
|
|
|
|
?>
|