Source import

Imported source code from https://code.google.com/archive/p/querychangelog/
This commit is contained in:
Emmanuel BENOîT 2022-03-26 15:50:03 +01:00
commit 9ea565a1fb
6 changed files with 542 additions and 0 deletions

47
lang/en/lang.php Normal file
View file

@ -0,0 +1,47 @@
<?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_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';
?>

View file

@ -0,0 +1,10 @@
===== Query Changlog =====
Display the a changelog according to the parameters defined below.
Date format must be respected, the time is given in 24-hours format
and can be omitted.
:!: This may take a **very** long time if perfomed on a namespace
containing a lot of pages! (All the '.changes' files within the base
namespace and its subnamespaces are scanned)

47
lang/fr/lang.php Normal file
View file

@ -0,0 +1,47 @@
<?php
/**
* french 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'] = 'Accès paramétrable à tout l\'historique des modifications';
$lang['qc_from'] = 'Depuis';
$lang['qc_to'] = 'Jusqu\'à';
$lang['qc_date'] = 'Date';
$lang['qc_begining'] = 'Démarrage du Wiki';
$lang['qc_now'] = 'Maintenant';
$lang['qc_base_ns'] = 'Restreindre au namespace';
$lang['qc_root'] = '[namespace racine]';
$lang['qc_current'] = '(Courant)';
$lang['qc_users'] = 'Dûs à(aux) utilisateur(s)';
$lang['qc_all_users'] = '[Tous]';
$lang['qc_major_only'] = 'Ne pas prendre en compte les changements mineurs';
$lang['qc_submit'] = 'Soumettre';
$lang['qc_err_date'] = 'Date invalide';
$lang['qc_err_period'] = 'La date de début doit être avant la date de fin';
$lang['qc_back'] = 'Retour';
$lang['qc_res_nc'] = 'Aucun changement trouvé';
$lang['qc_res_title'] = 'Journal des modifications';
$lang['qc_res_ns'] = 'Dans le namespace';
$lang['qc_res_from'] = 'Date de début du journal';
$lang['qc_res_to'] = 'Date de fin du journal';
$lang['qc_res_users'] = 'Par le(s) utiliateurs';
$lang['qc_res_all'] = 'Tous';
?>

View file

@ -0,0 +1,12 @@
===== Query Changlog =====
Affiche un journal des modifications selon les paramètres définis
ci-dessous.
Le format de date doit être respecté, l'heure entrée en format
24h. Cette dernière peut être omise.
:!: La génération peut prendre **très** longtemps si elle est
effectuée sur un namespace contenant de nombreuses pages ! (Tous les
fichiers '.changes' du namespace et de ses sous dossiers sont
analysés)