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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/*
Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.plugins.setLang( 'forms', 'oc', {
button: {
title: 'Proprietats del boton',
text: 'Tèxte',
type: 'Tipe',
typeBtn: 'Boton',
typeSbm: 'Validacion',
typeRst: 'Remesa a zèro'
},
checkboxAndRadio: {
checkboxTitle: 'Proprietats de la casa de marcar',
radioTitle: 'Proprietats del boton ràdio',
value: 'Valor',
selected: 'Seleccionat',
required: 'Requesit'
},
form: {
title: 'Proprietats del formulari',
menu: 'Proprietats del formulari',
action: 'Accion',
method: 'Metòde',
encoding: 'Encodatge'
},
hidden: {
title: 'Proprietats del camp invisible',
name: 'Nom',
value: 'Valor'
},
select: {
title: 'Proprietats del menú desenrotlant',
selectInfo: 'Informacions sul menú desenrotlant',
opAvail: 'Opcions disponiblas',
value: 'Valor',
size: 'Talha',
lines: 'linhas',
chkMulti: 'Permetre las seleccions multiplas',
required: 'Requesit',
opText: 'Tèxte',
opValue: 'Valor',
btnAdd: 'Apondre',
btnModify: 'Modificar',
btnUp: 'Naut',
btnDown: 'Bas',
btnSetValue: 'Definir coma valor seleccionada',
btnDelete: 'Suprimir'
},
textarea: {
title: 'Proprietats de la zòna de tèxte',
cols: 'Colomnas',
rows: 'Linhas'
},
textfield: {
title: 'Proprietats del camp tèxte',
name: 'Nom',
value: 'Valor',
charWidth: 'Largor dels caractèrs',
maxChars: 'Nombre maximum de caractèrs',
required: 'Requesit',
type: 'Tipe',
typeText: 'Tèxte',
typePass: 'Senhal',
typeEmail: 'Corrièr electronic',
typeSearch: 'Recercar',
typeTel: 'Numèro de telefòn',
typeUrl: 'URL'
}
} );
|