diff options
Diffstat (limited to 'sources/lang/sr.js')
-rw-r--r-- | sources/lang/sr.js | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/sources/lang/sr.js b/sources/lang/sr.js new file mode 100644 index 00000000..3dfe6f41 --- /dev/null +++ b/sources/lang/sr.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 (Cyrillic) 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' ] = { | ||
21 | // ARIA description. | ||
22 | editor: 'Rich Text Editor', // MISSING | ||
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: 'Претражи сервер', | ||
32 | url: 'УРЛ', | ||
33 | protocol: 'Протокол', | ||
34 | upload: 'Пошаљи', | ||
35 | uploadSubmit: 'Пошаљи на сервер', | ||
36 | image: 'Слика', | ||
37 | flash: 'Флеш елемент', | ||
38 | form: 'Форма', | ||
39 | checkbox: 'Поље за потврду', | ||
40 | radio: 'Радио-дугме', | ||
41 | textField: 'Текстуално поље', | ||
42 | textarea: 'Зона текста', | ||
43 | hiddenField: 'Скривено поље', | ||
44 | button: 'Дугме', | ||
45 | select: 'Изборно поље', | ||
46 | imageButton: 'Дугме са сликом', | ||
47 | notSet: '<није постављено>', | ||
48 | id: 'Ид', | ||
49 | name: 'Назив', | ||
50 | langDir: 'Смер језика', | ||
51 | langDirLtr: 'С лева на десно (LTR)', | ||
52 | langDirRtl: 'С десна на лево (RTL)', | ||
53 | langCode: 'Kôд језика', | ||
54 | longDescr: 'Пун опис УРЛ', | ||
55 | cssClass: 'Stylesheet класе', | ||
56 | advisoryTitle: 'Advisory наслов', | ||
57 | cssStyle: 'Стил', | ||
58 | ok: 'OK', | ||
59 | cancel: 'Oткажи', | ||
60 | close: 'Затвори', | ||
61 | preview: 'Изглед странице', | ||
62 | resize: 'Resize', // MISSING | ||
63 | generalTab: 'Опште', | ||
64 | advancedTab: 'Напредни тагови', | ||
65 | validateNumberFailed: 'Ова вредност није цигра.', | ||
66 | confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING | ||
67 | confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING | ||
68 | options: 'Опције', | ||
69 | target: 'Meтa', | ||
70 | targetNew: 'New Window (_blank)', // MISSING | ||
71 | targetTop: 'Topmost Window (_top)', // MISSING | ||
72 | targetSelf: 'Same Window (_self)', // MISSING | ||
73 | targetParent: 'Parent Window (_parent)', // MISSING | ||
74 | langDirLTR: 'С лева на десно (LTR)', | ||
75 | langDirRTL: 'С десна на лево (RTL)', | ||
76 | styles: 'Стил', | ||
77 | cssClasses: 'Stylesheet класе', | ||
78 | width: 'Ширина', | ||
79 | height: 'Висина', | ||
80 | align: 'Равнање', | ||
81 | alignLeft: 'Лево', | ||
82 | alignRight: 'Десно', | ||
83 | alignCenter: 'Средина', | ||
84 | alignJustify: 'Обострано равнање', | ||
85 | alignTop: 'Врх', | ||
86 | alignMiddle: 'Средина', | ||
87 | alignBottom: 'Доле', | ||
88 | alignNone: 'None', // MISSING | ||
89 | invalidValue : 'Invalid value.', // MISSING | ||
90 | invalidHeight: 'Height must be a number.', // MISSING | ||
91 | invalidWidth: 'Width must be a number.', // MISSING | ||
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 | }; | ||