mk.js 3.8 KB

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