sr-latn.js 3.4 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 (Latin) language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'sr-latn' ] = {
  18. // ARIA description.
  19. editor: 'Bogati uređivač teksta',
  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: 'Pretraži server',
  27. url: 'URL',
  28. protocol: 'Protokol',
  29. upload: 'Pošalji',
  30. uploadSubmit: 'Pošalji na server',
  31. image: 'Slika',
  32. flash: 'Fleš',
  33. form: 'Forma',
  34. checkbox: 'Polje za potvrdu',
  35. radio: 'Radio-dugme',
  36. textField: 'Tekstualno polje',
  37. textarea: 'Zona teksta',
  38. hiddenField: 'Skriveno polje',
  39. button: 'Dugme',
  40. select: 'Izborno polje',
  41. imageButton: 'Dugme sa slikom',
  42. notSet: '<nije postavljeno>',
  43. id: 'Id',
  44. name: 'Naziv',
  45. langDir: 'Smer jezika',
  46. langDirLtr: 'S leva na desno (LTR)',
  47. langDirRtl: 'S desna na levo (RTL)',
  48. langCode: 'Kôd jezika',
  49. longDescr: 'Pun opis URL',
  50. cssClass: 'Stylesheet klase',
  51. advisoryTitle: 'Advisory naslov',
  52. cssStyle: 'Stil',
  53. ok: 'OK',
  54. cancel: 'Otkaži',
  55. close: 'Zatvori',
  56. preview: 'Izgled stranice',
  57. resize: 'Resize', // MISSING
  58. generalTab: 'Opšte',
  59. advancedTab: 'Napredni tagovi',
  60. validateNumberFailed: 'Ova vrednost nije broj.',
  61. confirmNewPage: 'Nesačuvane promene ovog sadržaja će biti izgubljene. Jeste li sigurni da želita da učitate novu stranu?',
  62. confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING
  63. options: 'Opcije',
  64. target: 'Meta',
  65. targetNew: 'Novi prozor (_blank)',
  66. targetTop: 'Topmost Window (_top)', // MISSING
  67. targetSelf: 'Isti prozor (_self)',
  68. targetParent: 'Parent Window (_parent)', // MISSING
  69. langDirLTR: 'S leva na desno (LTR)',
  70. langDirRTL: 'S desna na levo (RTL)',
  71. styles: 'Stil',
  72. cssClasses: 'Stylesheet klase',
  73. width: 'Širina',
  74. height: 'Visina',
  75. align: 'Ravnanje',
  76. alignLeft: 'Levo',
  77. alignRight: 'Desno',
  78. alignCenter: 'Sredina',
  79. alignJustify: 'Obostrano ravnanje',
  80. alignTop: 'Vrh',
  81. alignMiddle: 'Sredina',
  82. alignBottom: 'Dole',
  83. alignNone: 'None', // MISSING
  84. invalidValue : 'Invalid value.', // MISSING
  85. invalidHeight: 'Visina mora biti broj.',
  86. invalidWidth: 'Širina mora biti broj.',
  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. };