sr.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 Defines the {@link CKEDITOR.lang} object, for the
  7. * Serbian (Cyrillic) language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'sr' ] = {
  18. // ARIA description.
  19. editor: 'Rich Text Editor', // MISSING
  20. editorPanel: 'Rich Text Editor panel', // MISSING
  21. // Common messages and labels.
  22. common: {
  23. // Screenreader titles. Please note that screenreaders are not always capable
  24. // of reading non-English words. So be careful while translating it.
  25. editorHelp: 'Press ALT 0 for help', // MISSING
  26. browseServer: 'Претражи сервер',
  27. url: 'УРЛ',
  28. protocol: 'Протокол',
  29. upload: 'Пошаљи',
  30. uploadSubmit: 'Пошаљи на сервер',
  31. image: 'Слика',
  32. flash: 'Флеш елемент',
  33. form: 'Форма',
  34. checkbox: 'Поље за потврду',
  35. radio: 'Радио-дугме',
  36. textField: 'Текстуално поље',
  37. textarea: 'Зона текста',
  38. hiddenField: 'Скривено поље',
  39. button: 'Дугме',
  40. select: 'Изборно поље',
  41. imageButton: 'Дугме са сликом',
  42. notSet: '<није постављено>',
  43. id: 'Ид',
  44. name: 'Назив',
  45. langDir: 'Смер језика',
  46. langDirLtr: 'С лева на десно (LTR)',
  47. langDirRtl: 'С десна на лево (RTL)',
  48. langCode: 'Kôд језика',
  49. longDescr: 'Пун опис УРЛ',
  50. cssClass: 'Stylesheet класе',
  51. advisoryTitle: 'Advisory наслов',
  52. cssStyle: 'Стил',
  53. ok: 'OK',
  54. cancel: 'Oткажи',
  55. close: 'Затвори',
  56. preview: 'Изглед странице',
  57. resize: 'Resize', // MISSING
  58. generalTab: 'Опште',
  59. advancedTab: 'Напредни тагови',
  60. validateNumberFailed: 'Ова вредност није цигра.',
  61. confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
  62. confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING
  63. options: 'Опције',
  64. target: 'Meтa',
  65. targetNew: 'New Window (_blank)', // MISSING
  66. targetTop: 'Topmost Window (_top)', // MISSING
  67. targetSelf: 'Same Window (_self)', // MISSING
  68. targetParent: 'Parent Window (_parent)', // MISSING
  69. langDirLTR: 'С лева на десно (LTR)',
  70. langDirRTL: 'С десна на лево (RTL)',
  71. styles: 'Стил',
  72. cssClasses: 'Stylesheet класе',
  73. width: 'Ширина',
  74. height: 'Висина',
  75. align: 'Равнање',
  76. alignLeft: 'Лево',
  77. alignRight: 'Десно',
  78. alignCenter: 'Средина',
  79. alignJustify: 'Обострано равнање',
  80. alignTop: 'Врх',
  81. alignMiddle: 'Средина',
  82. alignBottom: 'Доле',
  83. alignNone: 'None', // MISSING
  84. invalidValue : 'Invalid value.', // MISSING
  85. invalidHeight: 'Height must be a number.', // MISSING
  86. invalidWidth: 'Width must be a number.', // MISSING
  87. 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
  88. invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
  89. 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
  90. 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
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
  93. }
  94. };