1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Vincent de Lagabbe <vincent@delagabbe.com> 7 */ 8 9$lang['encoding'] = 'utf-8'; 10$lang['direction'] = 'ltr'; 11 12// for admin plugins, the menu prompt to be displayed in the admin menu 13// if set here, the plugin doesn't need to override the getMenuText() method 14$lang['menu'] = 'Query Changelog'; 15$lang['desc'] = 'Configurable access to the whole changelog'; 16 17$lang['qc_from'] = 'From'; 18$lang['qc_to'] = 'To'; 19$lang['qc_date'] = 'Date'; 20$lang['qc_begining'] = 'Wiki birth'; 21$lang['qc_now'] = 'Now'; 22 23$lang['qc_base_ns'] = 'Base namespace'; 24$lang['qc_root'] = '[Root namespace]'; 25$lang['qc_current'] = '(Current)'; 26 27$lang['qc_users'] = 'From user(s)'; 28$lang['qc_all_users'] = '[All]'; 29 30$lang['qc_major_only'] = 'Skip minor changes'; 31 32$lang['qc_submit'] = 'Submit'; 33 34$lang['qc_err_date'] = 'Invalid date'; 35$lang['qc_err_period'] = 'Start date must be before end date'; 36 37$lang['qc_back'] = 'Back'; 38 39$lang['qc_res_nc'] = 'No changes found'; 40$lang['qc_res_title'] = 'Changelog'; 41$lang['qc_res_ns'] = 'In namespace'; 42$lang['qc_res_from'] = 'Changelog start date'; 43$lang['qc_res_to'] = 'Changelog end date'; 44$lang['qc_res_users'] = 'From user(s)'; 45$lang['qc_res_all'] = 'All'; 46 47?> 48