xref: /dokuwiki/lib/plugins/revert/lang/fr/lang.php (revision 9be05bde2838b8a3ae2a0353b76dfdfc2c6199f0)
1*9be05bdeSGuy Brand<?php
2*9be05bdeSGuy Brand/**
3*9be05bdeSGuy Brand * french language file
4*9be05bdeSGuy Brand */
5*9be05bdeSGuy Brand
6*9be05bdeSGuy Brand// settings must be present and set appropriately for the language
7*9be05bdeSGuy Brand$lang['encoding']   = 'utf-8';
8*9be05bdeSGuy Brand$lang['direction']  = 'ltr';
9*9be05bdeSGuy Brand
10*9be05bdeSGuy Brand// for admin plugins, the menu prompt to be displayed in the admin menu
11*9be05bdeSGuy Brand// if set here, the plugin doesn't need to override the getMenuText() method
12*9be05bdeSGuy Brand$lang['menu'] = 'Gestionnaire de réversion';
13*9be05bdeSGuy Brand
14*9be05bdeSGuy Brand// custom language strings for the plugin
15*9be05bdeSGuy Brand
16*9be05bdeSGuy Brand$lang['filter']   = 'Trouver les pages spammées ';
17*9be05bdeSGuy Brand$lang['note']     = 'Note : cette recherche est insensible à la casse';
18*9be05bdeSGuy Brand$lang['revert']   = 'Annuler les éditions sélectionnées';
19*9be05bdeSGuy Brand$lang['reverted'] = '%s restauré à la révision %s';
20*9be05bdeSGuy Brand$lang['removed']  = '%s supprimé';
21*9be05bdeSGuy Brand$lang['revstart'] = 'Processus de réversion démarré. Ceci peut prendre longtemps. Si
22*9be05bdeSGuy Brand                     le script dépasse le délai avant de terminer, vous devrez restaurer
23*9be05bdeSGuy Brand                     de plus petits groupes de pages.';
24*9be05bdeSGuy Brand$lang['revstop']  = 'Processus de réversion terminé avec succès.';
25*9be05bdeSGuy Brand
26*9be05bdeSGuy Brand//Setup VIM: ex: et ts=4 enc=utf-8 :
27