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', 'sr-latn', {
- button: {
- title: 'Osobine dugmeta',
- text: 'Tekst (vrednost)',
- type: 'Tip',
- typeBtn: 'Button',
- typeSbm: 'Submit',
- typeRst: 'Reset'
- },
- checkboxAndRadio: {
- checkboxTitle: 'Osobine polja za potvrdu',
- radioTitle: 'Osobine radio-dugmeta',
- value: 'Vrednost',
- selected: 'Označeno',
- required: 'Required' // MISSING
- },
- form: {
- title: 'Osobine forme',
- menu: 'Osobine forme',
- action: 'Akcija',
- method: 'Metoda',
- encoding: 'Encoding'
- },
- hidden: {
- title: 'Osobine skrivenog polja',
- name: 'Naziv',
- value: 'Vrednost'
- },
- select: {
- title: 'Osobine izbornog polja',
- selectInfo: 'Info',
- opAvail: 'Dostupne opcije',
- value: 'Vrednost',
- size: 'Veličina',
- lines: 'linija',
- chkMulti: 'Dozvoli višestruku selekciju',
- required: 'Required', // MISSING
- opText: 'Tekst',
- opValue: 'Vrednost',
- btnAdd: 'Dodaj',
- btnModify: 'Izmeni',
- btnUp: 'Gore',
- btnDown: 'Dole',
- btnSetValue: 'Podesi kao označenu vrednost',
- btnDelete: 'Obriši'
- },
- textarea: {
- title: 'Osobine zone teksta',
- cols: 'Broj kolona',
- rows: 'Broj redova'
- },
- textfield: {
- title: 'Osobine tekstualnog polja',
- name: 'Naziv',
- value: 'Vrednost',
- charWidth: 'Širina (karaktera)',
- maxChars: 'Maksimalno karaktera',
- required: 'Required', // MISSING
- type: 'Tip',
- typeText: 'Tekst',
- typePass: 'Lozinka',
- typeEmail: 'Email',
- typeSearch: 'Pretraži',
- typeTel: 'Broj telefona',
- typeUrl: 'URL'
- }
- } );
|