1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.md or http://ckeditor.com/license
- */
- CKEDITOR.plugins.setLang( 'forms', 'fr', {
- button: {
- title: 'Propriétés du bouton',
- text: 'Texte (Value)',
- type: 'Type',
- typeBtn: 'Bouton',
- typeSbm: 'Validation (submit)',
- typeRst: 'Remise à zéro'
- },
- checkboxAndRadio: {
- checkboxTitle: 'Propriétés de la case à cocher',
- radioTitle: 'Propriétés du bouton Radio',
- value: 'Valeur',
- selected: 'Sélectionné',
- required: 'Requis'
- },
- form: {
- title: 'Propriétés du formulaire',
- menu: 'Propriétés du formulaire',
- action: 'Action',
- method: 'Méthode',
- encoding: 'Encodage'
- },
- hidden: {
- title: 'Propriétés du champ caché',
- name: 'Nom',
- value: 'Valeur'
- },
- select: {
- title: 'Propriétés du menu déroulant',
- selectInfo: 'Informations sur le menu déroulant',
- opAvail: 'Options disponibles',
- value: 'Valeur',
- size: 'Taille',
- lines: 'Lignes',
- chkMulti: 'Permettre les sélections multiples',
- required: 'Requis',
- opText: 'Texte',
- opValue: 'Valeur',
- btnAdd: 'Ajouter',
- btnModify: 'Modifier',
- btnUp: 'Haut',
- btnDown: 'Bas',
- btnSetValue: 'Définir comme valeur sélectionnée',
- btnDelete: 'Supprimer'
- },
- textarea: {
- title: 'Propriétés de la zone de texte',
- cols: 'Colonnes',
- rows: 'Lignes'
- },
- textfield: {
- title: 'Propriétés du champ texte',
- name: 'Nom',
- value: 'Valeur',
- charWidth: 'Taille des caractères',
- maxChars: 'Nombre maximum de caractères',
- required: 'Requis',
- type: 'Type',
- typeText: 'Texte',
- typePass: 'Mot de passe',
- typeEmail: 'E-mail',
- typeSearch: 'Rechercher',
- typeTel: 'Numéro de téléphone',
- typeUrl: 'URL'
- }
- } );
|