mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-04 00:36:45 +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', 'ro', {
|
|
button: {
|
|
title: 'Proprietăţi buton',
|
|
text: 'Text (Valoare)',
|
|
type: 'Tip',
|
|
typeBtn: 'Buton',
|
|
typeSbm: 'Trimite',
|
|
typeRst: 'Reset'
|
|
},
|
|
checkboxAndRadio: {
|
|
checkboxTitle: 'Proprietăţi bifă (Checkbox)',
|
|
radioTitle: 'Proprietăţi buton radio (Radio Button)',
|
|
value: 'Valoare',
|
|
selected: 'Selectat'
|
|
},
|
|
form: {
|
|
title: 'Proprietăţi formular (Form)',
|
|
menu: 'Proprietăţi formular (Form)',
|
|
action: 'Acţiune',
|
|
method: 'Metodă',
|
|
encoding: 'Encodare'
|
|
},
|
|
hidden: {
|
|
title: 'Proprietăţi câmp ascuns (Hidden Field)',
|
|
name: 'Nume',
|
|
value: 'Valoare'
|
|
},
|
|
select: {
|
|
title: 'Proprietăţi câmp selecţie (Selection Field)',
|
|
selectInfo: 'Informaţii',
|
|
opAvail: 'Opţiuni disponibile',
|
|
value: 'Valoare',
|
|
size: 'Mărime',
|
|
lines: 'linii',
|
|
chkMulti: 'Permite selecţii multiple',
|
|
opText: 'Text',
|
|
opValue: 'Valoare',
|
|
btnAdd: 'Adaugă',
|
|
btnModify: 'Modifică',
|
|
btnUp: 'Sus',
|
|
btnDown: 'Jos',
|
|
btnSetValue: 'Setează ca valoare selectată',
|
|
btnDelete: 'Şterge'
|
|
},
|
|
textarea: {
|
|
title: 'Proprietăţi suprafaţă text (Textarea)',
|
|
cols: 'Coloane',
|
|
rows: 'Linii'
|
|
},
|
|
textfield: {
|
|
title: 'Proprietăţi câmp text (Text Field)',
|
|
name: 'Nume',
|
|
value: 'Valoare',
|
|
charWidth: 'Lărgimea caracterului',
|
|
maxChars: 'Caractere maxime',
|
|
type: 'Tip',
|
|
typeText: 'Text',
|
|
typePass: 'Parolă',
|
|
typeEmail: 'Email',
|
|
typeSearch: 'Cauta',
|
|
typeTel: 'Numar de telefon',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|