blob: 5f64cc96286e7eec198ddf9dbea0b1673513e069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* french language file
*/
// settings must be present and set appropriately for the language
$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'] = 'Gestion des utilisateurs';
// custom language strings for the plugin
$lang["user_id"] = "Identifiant";
$lang["user_pass"] = "Mot de passe";
$lang["user_name"] = "Nom";
$lang["user_mail"] = "E-mail";
$lang["user_groups"] = "Groupes";
$lang["field"] = "Champ";
$lang["value"] = "Valeur";
$lang["add"] = "Ajouter";
$lang["delete"] = "Supprimer";
$lang["edit"] = "Modifier";
|