xref: /dokuwiki/lib/plugins/usermanager/lang/fr/lang.php (revision 0440ff150cefe9088c8aa126e646f901c69a7793)
1*0440ff15Schris<?php
2*0440ff15Schris/**
3*0440ff15Schris * french language file
4*0440ff15Schris */
5*0440ff15Schris
6*0440ff15Schris// settings must be present and set appropriately for the language
7*0440ff15Schris$lang['encoding']   = 'utf-8';
8*0440ff15Schris$lang['direction']  = 'ltr';
9*0440ff15Schris
10*0440ff15Schris// for admin plugins, the menu prompt to be displayed in the admin menu
11*0440ff15Schris// if set here, the plugin doesn't need to override the getMenuText() method
12*0440ff15Schris$lang['menu'] = 'Gestion des utilisateurs';
13*0440ff15Schris
14*0440ff15Schris// custom language strings for the plugin
15*0440ff15Schris$lang["user_id"] = "Identifiant";
16*0440ff15Schris$lang["user_pass"] = "Mot de passe";
17*0440ff15Schris$lang["user_name"] = "Nom";
18*0440ff15Schris$lang["user_mail"] = "E-mail";
19*0440ff15Schris$lang["user_groups"] = "Groupes";
20*0440ff15Schris
21*0440ff15Schris$lang["field"] = "Champ";
22*0440ff15Schris$lang["value"] = "Valeur";
23*0440ff15Schris$lang["add"] = "Ajouter";
24*0440ff15Schris$lang["delete"] = "Supprimer";
25*0440ff15Schris$lang["edit"] = "Modifier";
26