mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-20 11:13:27 +00:00
69 lines
1.6 KiB
JavaScript
Executable File
69 lines
1.6 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
CKEDITOR.plugins.setLang( 'forms', 'fr-ca', {
|
|
button: {
|
|
title: 'Propriétés du bouton',
|
|
text: 'Texte (Valeur)',
|
|
type: 'Type',
|
|
typeBtn: 'Bouton',
|
|
typeSbm: 'Soumettre',
|
|
typeRst: 'Réinitialiser'
|
|
},
|
|
checkboxAndRadio: {
|
|
checkboxTitle: 'Propriétés de la case à cocher',
|
|
radioTitle: 'Propriétés du bouton radio',
|
|
value: 'Valeur',
|
|
selected: 'Sélectionné'
|
|
},
|
|
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 champ de sélection',
|
|
selectInfo: 'Info',
|
|
opAvail: 'Options disponibles',
|
|
value: 'Valeur',
|
|
size: 'Taille',
|
|
lines: 'lignes',
|
|
chkMulti: 'Permettre les sélections multiples',
|
|
opText: 'Texte',
|
|
opValue: 'Valeur',
|
|
btnAdd: 'Ajouter',
|
|
btnModify: 'Modifier',
|
|
btnUp: 'Monter',
|
|
btnDown: 'Descendre',
|
|
btnSetValue: '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: 'Largeur de caractères',
|
|
maxChars: 'Nombre maximum de caractères',
|
|
type: 'Type',
|
|
typeText: 'Texte',
|
|
typePass: 'Mot de passe',
|
|
typeEmail: 'Courriel',
|
|
typeSearch: 'Recherche',
|
|
typeTel: 'Numéro de téléphone',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|