summernote-sr-RS.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. (function($) {
  2. $.extend($.summernote.lang, {
  3. 'sr-RS': {
  4. font: {
  5. bold: 'Подебљано',
  6. italic: 'Курзив',
  7. underline: 'Подвучено',
  8. clear: 'Уклони стилове фонта',
  9. height: 'Висина линије',
  10. name: 'Font Family',
  11. strikethrough: 'Прецртано',
  12. subscript: 'Subscript',
  13. superscript: 'Superscript',
  14. size: 'Величина фонта',
  15. },
  16. image: {
  17. image: 'Слика',
  18. insert: 'Уметни слику',
  19. resizeFull: 'Пуна величина',
  20. resizeHalf: 'Умањи на 50%',
  21. resizeQuarter: 'Умањи на 25%',
  22. floatLeft: 'Уз леву ивицу',
  23. floatRight: 'Уз десну ивицу',
  24. floatNone: 'Без равнања',
  25. shapeRounded: 'Shape: Rounded',
  26. shapeCircle: 'Shape: Circle',
  27. shapeThumbnail: 'Shape: Thumbnail',
  28. shapeNone: 'Shape: None',
  29. dragImageHere: 'Превуци слику овде',
  30. dropImage: 'Drop image or Text',
  31. selectFromFiles: 'Изабери из датотеке',
  32. maximumFileSize: 'Maximum file size',
  33. maximumFileSizeError: 'Maximum file size exceeded.',
  34. url: 'Адреса слике',
  35. remove: 'Уклони слику',
  36. original: 'Original',
  37. },
  38. video: {
  39. video: 'Видео',
  40. videoLink: 'Веза ка видеу',
  41. insert: 'Уметни видео',
  42. url: 'URL видео',
  43. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion или Youku)',
  44. },
  45. link: {
  46. link: 'Веза',
  47. insert: 'Уметни везу',
  48. unlink: 'Уклони везу',
  49. edit: 'Уреди',
  50. textToDisplay: 'Текст за приказ',
  51. url: 'Интернет адреса',
  52. openInNewWindow: 'Отвори у новом прозору',
  53. },
  54. table: {
  55. table: 'Табела',
  56. addRowAbove: 'Add row above',
  57. addRowBelow: 'Add row below',
  58. addColLeft: 'Add column left',
  59. addColRight: 'Add column right',
  60. delRow: 'Delete row',
  61. delCol: 'Delete column',
  62. delTable: 'Delete table',
  63. },
  64. hr: {
  65. insert: 'Уметни хоризонталну линију',
  66. },
  67. style: {
  68. style: 'Стил',
  69. p: 'Нормални',
  70. blockquote: 'Цитат',
  71. pre: 'Код',
  72. h1: 'Заглавље 1',
  73. h2: 'Заглавље 2',
  74. h3: 'Заглавље 3',
  75. h4: 'Заглавље 4',
  76. h5: 'Заглавље 5',
  77. h6: 'Заглавље 6',
  78. },
  79. lists: {
  80. unordered: 'Обична листа',
  81. ordered: 'Нумерисана листа',
  82. },
  83. options: {
  84. help: 'Помоћ',
  85. fullscreen: 'Преко целог екрана',
  86. codeview: 'Изворни код',
  87. },
  88. paragraph: {
  89. paragraph: 'Параграф',
  90. outdent: 'Смањи увлачење',
  91. indent: 'Повечај увлачење',
  92. left: 'Поравнај у лево',
  93. center: 'Центрирано',
  94. right: 'Поравнај у десно',
  95. justify: 'Поравнај обострано',
  96. },
  97. color: {
  98. recent: 'Последња боја',
  99. more: 'Више боја',
  100. background: 'Боја позадине',
  101. foreground: 'Боја текста',
  102. transparent: 'Провидна',
  103. setTransparent: 'Провидна',
  104. reset: 'Опозив',
  105. resetToDefault: 'Подразумевана',
  106. },
  107. shortcut: {
  108. shortcuts: 'Пречице са тастатуре',
  109. close: 'Затвори',
  110. textFormatting: 'Форматирање текста',
  111. action: 'Акција',
  112. paragraphFormatting: 'Форматирање параграфа',
  113. documentStyle: 'Стил документа',
  114. extraKeys: 'Додатне комбинације',
  115. },
  116. help: {
  117. 'insertParagraph': 'Insert Paragraph',
  118. 'undo': 'Undoes the last command',
  119. 'redo': 'Redoes the last command',
  120. 'tab': 'Tab',
  121. 'untab': 'Untab',
  122. 'bold': 'Set a bold style',
  123. 'italic': 'Set a italic style',
  124. 'underline': 'Set a underline style',
  125. 'strikethrough': 'Set a strikethrough style',
  126. 'removeFormat': 'Clean a style',
  127. 'justifyLeft': 'Set left align',
  128. 'justifyCenter': 'Set center align',
  129. 'justifyRight': 'Set right align',
  130. 'justifyFull': 'Set full align',
  131. 'insertUnorderedList': 'Toggle unordered list',
  132. 'insertOrderedList': 'Toggle ordered list',
  133. 'outdent': 'Outdent on current paragraph',
  134. 'indent': 'Indent on current paragraph',
  135. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  136. 'formatH1': 'Change current block\'s format as H1',
  137. 'formatH2': 'Change current block\'s format as H2',
  138. 'formatH3': 'Change current block\'s format as H3',
  139. 'formatH4': 'Change current block\'s format as H4',
  140. 'formatH5': 'Change current block\'s format as H5',
  141. 'formatH6': 'Change current block\'s format as H6',
  142. 'insertHorizontalRule': 'Insert horizontal rule',
  143. 'linkDialog.show': 'Show Link Dialog',
  144. },
  145. history: {
  146. undo: 'Поништи',
  147. redo: 'Понови',
  148. },
  149. specialChar: {
  150. specialChar: 'SPECIAL CHARACTERS',
  151. select: 'Select Special characters',
  152. },
  153. },
  154. });
  155. })(jQuery);