1<?php 2/** 3 * English language file for struct plugin 4 * 5 * @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de> 6 * @author Laynee <seedfloyd@gmail.com> 7 */ 8 9 10$lang['menu'] = 'Struct - Editeur de schémas'; 11$lang['menu_assignments'] = 'Struct - Assignement de schemas'; 12 13$lang['headline'] = 'Données structurées'; 14 15$lang['edithl'] = 'Edition du schéma <i>%s</i>'; 16$lang['create'] = 'Créer un nouveau schéma'; 17$lang['schemaname'] = 'Nom du schéma :'; 18$lang['save'] = 'Sauvegarder'; 19$lang['createhint'] = 'Remarque : les shémas ne peuvent être renommés ultérieurement.'; 20$lang['pagelabel'] = 'Page'; 21$lang['summary'] = 'Struct : données mises à jour'; 22$lang['export'] = 'Exporter le schéma dans un fichier JSON'; 23$lang['btn_export'] = 'Exporter'; 24$lang['import'] = 'Importer un schéma depuis un fichier JSON'; 25$lang['btn_import'] = 'Importer'; 26$lang['import_warning'] = 'Attention : tous les champs précédement remplis seront remplacés !'; 27 28$lang['del_confirm'] = 'Entrez le nom du schéma pour confirmer sa suppression'; 29$lang['del_fail'] = 'Le nom que vous avez entré ne correspond pas au schéma actuel. Il n\'a pas été supprimé.'; 30$lang['del_ok'] = 'Le schéma a été supprimé.'; 31$lang['btn_delete'] = 'Supprimer'; 32 33$lang['tab_edit'] = 'Edition'; 34$lang['tab_export'] = 'Import/Export'; 35$lang['tab_delete'] = 'Suppression'; 36 37$lang['editor_sort'] = 'Ordre de tri'; 38$lang['editor_label'] = 'Nom du champ'; 39$lang['editor_multi'] = 'Valeurs multiples ?'; 40$lang['editor_conf'] = 'Configuration'; 41$lang['editor_type'] = 'Type'; 42$lang['editor_enabled'] = 'Activer'; 43 44$lang['assign_add'] = 'Ajouter'; 45$lang['assign_del'] = 'Supprimer'; 46$lang['assign_assign'] = 'Page / Namespace'; 47$lang['assign_tbl'] = 'Schéma'; 48 49$lang['multi'] = 'Vous pouvez entrer plusieurs valeurs, séparées par des virgules.'; 50$lang['multidropdown'] = 'Maintenez les touches CTRL ou CMD pour sélectionner plusieurs valeurs.'; 51$lang['duplicate_label'] = "Le label <code>%s</code> existe déjà dans ce schéma, la deuxième occurence a été renommée en <code>%s</code>."; 52 53$lang['emptypage'] = 'Struct data has not been saved for an empty page'; 54 55$lang['validation_prefix'] = "Champ [%s] : "; 56 57$lang['Validation Exception Integer needed'] = 'only integers are allowed'; 58$lang['Validation Exception Integer min'] = 'has to be equal or greater than %d'; 59$lang['Validation Exception Integer max'] = 'has to be equal or less than %d'; 60$lang['Validation Exception User not found'] = 'has to be an existing user. User \'%s\' was not found.'; 61$lang['Validation Exception Media mime type'] = 'MIME type %s has to match the allowed set of %s'; 62$lang['Validation Exception Url invalid'] = '%s is not a valid URL'; 63$lang['Validation Exception Mail invalid'] = '%s is not a valid email address'; 64$lang['Validation Exception invalid date format'] = 'must be of format YYYY-MM-DD'; 65 66$lang['Exception noschemas'] = 'There have been no schemas given to load columns from'; 67$lang['Exception nocolname'] = 'No column name given'; 68 69$lang['sort'] = 'Trier selon cette colonne'; 70$lang['next'] = 'Page suivante'; 71$lang['prev'] = 'Page précédente'; 72 73$lang['none'] = 'Rien n\'a été trouvé.'; 74 75$lang['tablefilteredby'] = 'Filtre : %s'; 76$lang['tableresetfilter'] = 'Aucun filtre / Afficher tout'; 77 78$lang['Exception schema missing'] = "Le schéma %s n\'existe pas !"; 79 80//Setup VIM: ex: et ts=4 : 81