aboutsummaryrefslogtreecommitdiff
path: root/sources/lang/mk.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/lang/mk.js')
-rw-r--r--sources/lang/mk.js23
1 files changed, 20 insertions, 3 deletions
diff --git a/sources/lang/mk.js b/sources/lang/mk.js
index bc7b06c..750da11 100644
--- a/sources/lang/mk.js
+++ b/sources/lang/mk.js
@@ -1,5 +1,5 @@
1/** 1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license 3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */ 4 */
5 5
@@ -85,7 +85,7 @@ CKEDITOR.lang[ 'mk' ] = {
85 alignMiddle: 'Средина', 85 alignMiddle: 'Средина',
86 alignBottom: 'Доле', 86 alignBottom: 'Доле',
87 alignNone: 'Никое', 87 alignNone: 'Никое',
88 invalidValue : 'Невалидна вредност', 88 invalidValue: 'Невалидна вредност',
89 invalidHeight: 'Височината мора да биде број.', 89 invalidHeight: 'Височината мора да биде број.',
90 invalidWidth: 'Широчината мора да биде број.', 90 invalidWidth: 'Широчината мора да биде број.',
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 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
@@ -94,6 +94,23 @@ CKEDITOR.lang[ 'mk' ] = {
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 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 95
96 // Put the voice-only part of the label in the span. 96 // Put the voice-only part of the label in the span.
97 unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING 97 unavailable: '%1<span class="cke_accessibility">, unavailable</span>', // MISSING
98
99 // Keyboard keys translations used for creating shortcuts descriptions in tooltips, context menus and ARIA labels.
100 keyboard: {
101 8: 'Backspace', // MISSING
102 13: 'Enter', // MISSING
103 16: 'Shift', // MISSING
104 17: 'Ctrl', // MISSING
105 18: 'Alt', // MISSING
106 32: 'Space', // MISSING
107 35: 'End', // MISSING
108 36: 'Home', // MISSING
109 46: 'Delete', // MISSING
110 224: 'Command' // MISSING
111 },
112
113 // Prepended to ARIA labels with shortcuts.
114 keyboardShortcut: 'Keyboard shortcut' // MISSING
98 } 115 }
99}; 116};