diff options
author | chris <chris@jalakai.co.uk> | 2006-01-25 01:07:31 +0100 |
---|---|---|
committer | chris <chris@jalakai.co.uk> | 2006-01-25 01:07:31 +0100 |
commit | 0440ff150cefe9088c8aa126e646f901c69a7793 (patch) | |
tree | ef119f055c7c5789b4af4faa438e7c05ef3b24c7 /lib/plugins/usermanager/lang/fr/lang.php | |
parent | cd52f92def16e676c2458a32d2b8c8f8a7839f06 (diff) | |
download | rpg-0440ff150cefe9088c8aa126e646f901c69a7793.tar.gz rpg-0440ff150cefe9088c8aa126e646f901c69a7793.tar.bz2 |
user manager plugin
darcs-hash:20060125000731-9b6ab-f42d90c270edd795038b814516a1da90c0824e71.gz
Diffstat (limited to 'lib/plugins/usermanager/lang/fr/lang.php')
-rw-r--r-- | lib/plugins/usermanager/lang/fr/lang.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/plugins/usermanager/lang/fr/lang.php b/lib/plugins/usermanager/lang/fr/lang.php new file mode 100644 index 000000000..5f64cc962 --- /dev/null +++ b/lib/plugins/usermanager/lang/fr/lang.php @@ -0,0 +1,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"; |