diff options
Diffstat (limited to 'sources/lang/mk.js')
-rw-r--r-- | sources/lang/mk.js | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/sources/lang/mk.js b/sources/lang/mk.js new file mode 100644 index 00000000..39f71979 --- /dev/null +++ b/sources/lang/mk.js | |||
@@ -0,0 +1,99 @@ | |||
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 | ||
8 | */ | ||
9 | |||
10 | /**#@+ | ||
11 | @type String | ||
12 | @example | ||
13 | */ | ||
14 | |||
15 | /** | ||
16 | * Contains the dictionary of language entries. | ||
17 | * @namespace | ||
18 | */ | ||
19 | CKEDITOR.lang[ 'mk' ] = { | ||
20 | // ARIA description. | ||
21 | editor: 'Rich Text Editor', // MISSING | ||
22 | editorPanel: 'Rich Text Editor panel', // MISSING | ||
23 | |||
24 | // Common messages and labels. | ||
25 | common: { | ||
26 | // Screenreader titles. Please note that screenreaders are not always capable | ||
27 | // of reading non-English words. So be careful while translating it. | ||
28 | editorHelp: 'Press ALT 0 for help', // MISSING | ||
29 | |||
30 | browseServer: 'Browse Server', // MISSING | ||
31 | url: 'URL', // MISSING | ||
32 | protocol: 'Protocol', // MISSING | ||
33 | upload: 'Upload', // MISSING | ||
34 | uploadSubmit: 'Send it to the Server', // MISSING | ||
35 | image: 'Image', // MISSING | ||
36 | flash: 'Flash', // MISSING | ||
37 | form: 'Form', // MISSING | ||
38 | checkbox: 'Checkbox', // MISSING | ||
39 | radio: 'Radio Button', // MISSING | ||
40 | textField: 'Text Field', // MISSING | ||
41 | textarea: 'Textarea', // MISSING | ||
42 | hiddenField: 'Hidden Field', // MISSING | ||
43 | button: 'Button', | ||
44 | select: 'Selection Field', // MISSING | ||
45 | imageButton: 'Image Button', // MISSING | ||
46 | notSet: '<not set>', | ||
47 | id: 'Id', // MISSING | ||
48 | name: 'Name', | ||
49 | langDir: 'Language Direction', // MISSING | ||
50 | langDirLtr: 'Left to Right (LTR)', // MISSING | ||
51 | langDirRtl: 'Right to Left (RTL)', // MISSING | ||
52 | langCode: 'Language Code', // MISSING | ||
53 | longDescr: 'Long Description URL', // MISSING | ||
54 | cssClass: 'Stylesheet Classes', // MISSING | ||
55 | advisoryTitle: 'Advisory Title', // MISSING | ||
56 | cssStyle: 'Style', // MISSING | ||
57 | ok: 'OK', // MISSING | ||
58 | cancel: 'Cancel', // MISSING | ||
59 | close: 'Close', // MISSING | ||
60 | preview: 'Preview', // MISSING | ||
61 | resize: 'Resize', // MISSING | ||
62 | generalTab: 'Општо', | ||
63 | advancedTab: 'Advanced', // MISSING | ||
64 | validateNumberFailed: 'This value is not a number.', // MISSING | ||
65 | confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING | ||
66 | confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING | ||
67 | options: 'Options', // MISSING | ||
68 | target: 'Target', // MISSING | ||
69 | targetNew: 'New Window (_blank)', // MISSING | ||
70 | targetTop: 'Topmost Window (_top)', // MISSING | ||
71 | targetSelf: 'Same Window (_self)', // MISSING | ||
72 | targetParent: 'Parent Window (_parent)', // MISSING | ||
73 | langDirLTR: 'Left to Right (LTR)', // MISSING | ||
74 | langDirRTL: 'Right to Left (RTL)', // MISSING | ||
75 | styles: 'Style', // MISSING | ||
76 | cssClasses: 'Stylesheet Classes', // MISSING | ||
77 | width: 'Width', // MISSING | ||
78 | height: 'Height', // MISSING | ||
79 | align: 'Alignment', // MISSING | ||
80 | alignLeft: 'Left', // MISSING | ||
81 | alignRight: 'Right', // MISSING | ||
82 | alignCenter: 'Center', // MISSING | ||
83 | alignJustify: 'Justify', // MISSING | ||
84 | alignTop: 'Top', // MISSING | ||
85 | alignMiddle: 'Middle', // MISSING | ||
86 | alignBottom: 'Bottom', // MISSING | ||
87 | alignNone: 'None', // MISSING | ||
88 | invalidValue : 'Invalid value.', // MISSING | ||
89 | invalidHeight: 'Height must be a number.', // MISSING | ||
90 | invalidWidth: 'Width must be a number.', // MISSING | ||
91 | 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 | ||
92 | invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING | ||
93 | 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 | ||
94 | 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 | ||
95 | |||
96 | // Put the voice-only part of the label in the span. | ||
97 | unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING | ||
98 | } | ||
99 | }; | ||