diff options
Diffstat (limited to 'sources/lang/sr-latn.js')
-rw-r--r-- | sources/lang/sr-latn.js | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/sources/lang/sr-latn.js b/sources/lang/sr-latn.js new file mode 100644 index 00000000..8f6f0f44 --- /dev/null +++ b/sources/lang/sr-latn.js | |||
@@ -0,0 +1,100 @@ | |||
1 | /** | ||
2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. | ||
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license | ||
4 | */ | ||
5 | |||
6 | /** | ||
7 | * @fileOverview Defines the {@link CKEDITOR.lang} object, for the | ||
8 | * Serbian (Latin) language. | ||
9 | */ | ||
10 | |||
11 | /**#@+ | ||
12 | @type String | ||
13 | @example | ||
14 | */ | ||
15 | |||
16 | /** | ||
17 | * Contains the dictionary of language entries. | ||
18 | * @namespace | ||
19 | */ | ||
20 | CKEDITOR.lang[ 'sr-latn' ] = { | ||
21 | // ARIA description. | ||
22 | editor: 'Bogati uređivač teksta', | ||
23 | editorPanel: 'Rich Text Editor panel', // MISSING | ||
24 | |||
25 | // Common messages and labels. | ||
26 | common: { | ||
27 | // Screenreader titles. Please note that screenreaders are not always capable | ||
28 | // of reading non-English words. So be careful while translating it. | ||
29 | editorHelp: 'Press ALT 0 for help', // MISSING | ||
30 | |||
31 | browseServer: 'Pretraži server', | ||
32 | url: 'URL', | ||
33 | protocol: 'Protokol', | ||
34 | upload: 'Pošalji', | ||
35 | uploadSubmit: 'Pošalji na server', | ||
36 | image: 'Slika', | ||
37 | flash: 'Fleš', | ||
38 | form: 'Forma', | ||
39 | checkbox: 'Polje za potvrdu', | ||
40 | radio: 'Radio-dugme', | ||
41 | textField: 'Tekstualno polje', | ||
42 | textarea: 'Zona teksta', | ||
43 | hiddenField: 'Skriveno polje', | ||
44 | button: 'Dugme', | ||
45 | select: 'Izborno polje', | ||
46 | imageButton: 'Dugme sa slikom', | ||
47 | notSet: '<nije postavljeno>', | ||
48 | id: 'Id', | ||
49 | name: 'Naziv', | ||
50 | langDir: 'Smer jezika', | ||
51 | langDirLtr: 'S leva na desno (LTR)', | ||
52 | langDirRtl: 'S desna na levo (RTL)', | ||
53 | langCode: 'Kôd jezika', | ||
54 | longDescr: 'Pun opis URL', | ||
55 | cssClass: 'Stylesheet klase', | ||
56 | advisoryTitle: 'Advisory naslov', | ||
57 | cssStyle: 'Stil', | ||
58 | ok: 'OK', | ||
59 | cancel: 'Otkaži', | ||
60 | close: 'Zatvori', | ||
61 | preview: 'Izgled stranice', | ||
62 | resize: 'Resize', // MISSING | ||
63 | generalTab: 'Opšte', | ||
64 | advancedTab: 'Napredni tagovi', | ||
65 | validateNumberFailed: 'Ova vrednost nije broj.', | ||
66 | confirmNewPage: 'Nesačuvane promene ovog sadržaja će biti izgubljene. Jeste li sigurni da želita da učitate novu stranu?', | ||
67 | confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING | ||
68 | options: 'Opcije', | ||
69 | target: 'Meta', | ||
70 | targetNew: 'Novi prozor (_blank)', | ||
71 | targetTop: 'Topmost Window (_top)', // MISSING | ||
72 | targetSelf: 'Isti prozor (_self)', | ||
73 | targetParent: 'Parent Window (_parent)', // MISSING | ||
74 | langDirLTR: 'S leva na desno (LTR)', | ||
75 | langDirRTL: 'S desna na levo (RTL)', | ||
76 | styles: 'Stil', | ||
77 | cssClasses: 'Stylesheet klase', | ||
78 | width: 'Širina', | ||
79 | height: 'Visina', | ||
80 | align: 'Ravnanje', | ||
81 | alignLeft: 'Levo', | ||
82 | alignRight: 'Desno', | ||
83 | alignCenter: 'Sredina', | ||
84 | alignJustify: 'Obostrano ravnanje', | ||
85 | alignTop: 'Vrh', | ||
86 | alignMiddle: 'Sredina', | ||
87 | alignBottom: 'Dole', | ||
88 | alignNone: 'None', // MISSING | ||
89 | invalidValue : 'Invalid value.', // MISSING | ||
90 | invalidHeight: 'Visina mora biti broj.', | ||
91 | invalidWidth: 'Širina mora biti broj.', | ||
92 | invalidCssLength: 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING | ||
93 | invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING | ||
94 | invalidInlineStyle: 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING | ||
95 | cssLengthTooltip: 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING | ||
96 | |||
97 | // Put the voice-only part of the label in the span. | ||
98 | unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING | ||
99 | } | ||
100 | }; | ||