Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

summernote-cs-CZ.js 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /*!
  2. *
  3. * Super simple wysiwyg editor v0.8.18
  4. * https://summernote.org
  5. *
  6. *
  7. * Copyright 2013- Alan Hong. and other contributors
  8. * summernote may be freely distributed under the MIT license.
  9. *
  10. * Date: 2020-05-20T16:47Z
  11. *
  12. */
  13. (function webpackUniversalModuleDefinition(root, factory) {
  14. if (typeof exports === 'object' && typeof module === 'object')
  15. module.exports = factory();
  16. else if (typeof define === 'function' && define.amd)
  17. define([], factory);
  18. else {
  19. var a = factory();
  20. for (var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
  21. }
  22. })(window, function () {
  23. return /******/ (function (modules) { // webpackBootstrap
  24. /******/ // The module cache
  25. /******/
  26. var installedModules = {};
  27. /******/
  28. /******/ // The require function
  29. /******/
  30. function __webpack_require__(moduleId) {
  31. /******/
  32. /******/ // Check if module is in cache
  33. /******/
  34. if (installedModules[moduleId]) {
  35. /******/
  36. return installedModules[moduleId].exports;
  37. /******/
  38. }
  39. /******/ // Create a new module (and put it into the cache)
  40. /******/
  41. var module = installedModules[moduleId] = {
  42. /******/ i: moduleId,
  43. /******/ l: false,
  44. /******/ exports: {}
  45. /******/
  46. };
  47. /******/
  48. /******/ // Execute the module function
  49. /******/
  50. modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  51. /******/
  52. /******/ // Flag the module as loaded
  53. /******/
  54. module.l = true;
  55. /******/
  56. /******/ // Return the exports of the module
  57. /******/
  58. return module.exports;
  59. /******/
  60. }
  61. /******/
  62. /******/
  63. /******/ // expose the modules object (__webpack_modules__)
  64. /******/
  65. __webpack_require__.m = modules;
  66. /******/
  67. /******/ // expose the module cache
  68. /******/
  69. __webpack_require__.c = installedModules;
  70. /******/
  71. /******/ // define getter function for harmony exports
  72. /******/
  73. __webpack_require__.d = function (exports, name, getter) {
  74. /******/
  75. if (!__webpack_require__.o(exports, name)) {
  76. /******/
  77. Object.defineProperty(exports, name, {enumerable: true, get: getter});
  78. /******/
  79. }
  80. /******/
  81. };
  82. /******/
  83. /******/ // define __esModule on exports
  84. /******/
  85. __webpack_require__.r = function (exports) {
  86. /******/
  87. if (typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  88. /******/
  89. Object.defineProperty(exports, Symbol.toStringTag, {value: 'Module'});
  90. /******/
  91. }
  92. /******/
  93. Object.defineProperty(exports, '__esModule', {value: true});
  94. /******/
  95. };
  96. /******/
  97. /******/ // create a fake namespace object
  98. /******/ // mode & 1: value is a module id, require it
  99. /******/ // mode & 2: merge all properties of value into the ns
  100. /******/ // mode & 4: return value when already ns object
  101. /******/ // mode & 8|1: behave like require
  102. /******/
  103. __webpack_require__.t = function (value, mode) {
  104. /******/
  105. if (mode & 1) value = __webpack_require__(value);
  106. /******/
  107. if (mode & 8) return value;
  108. /******/
  109. if ((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  110. /******/
  111. var ns = Object.create(null);
  112. /******/
  113. __webpack_require__.r(ns);
  114. /******/
  115. Object.defineProperty(ns, 'default', {enumerable: true, value: value});
  116. /******/
  117. if (mode & 2 && typeof value != 'string') for (var key in value) __webpack_require__.d(ns, key, function (key) {
  118. return value[key];
  119. }.bind(null, key));
  120. /******/
  121. return ns;
  122. /******/
  123. };
  124. /******/
  125. /******/ // getDefaultExport function for compatibility with non-harmony modules
  126. /******/
  127. __webpack_require__.n = function (module) {
  128. /******/
  129. var getter = module && module.__esModule ?
  130. /******/ function getDefault() {
  131. return module['default'];
  132. } :
  133. /******/ function getModuleExports() {
  134. return module;
  135. };
  136. /******/
  137. __webpack_require__.d(getter, 'a', getter);
  138. /******/
  139. return getter;
  140. /******/
  141. };
  142. /******/
  143. /******/ // Object.prototype.hasOwnProperty.call
  144. /******/
  145. __webpack_require__.o = function (object, property) {
  146. return Object.prototype.hasOwnProperty.call(object, property);
  147. };
  148. /******/
  149. /******/ // __webpack_public_path__
  150. /******/
  151. __webpack_require__.p = "";
  152. /******/
  153. /******/
  154. /******/ // Load entry module and return exports
  155. /******/
  156. return __webpack_require__(__webpack_require__.s = 11);
  157. /******/
  158. })
  159. /************************************************************************/
  160. /******/ ({
  161. /***/ 11:
  162. /***/ (function (module, exports) {
  163. (function ($) {
  164. $.extend($.summernote.lang, {
  165. 'cs-CZ': {
  166. font: {
  167. bold: 'Tučné',
  168. italic: 'Kurzíva',
  169. underline: 'Podtržené',
  170. clear: 'Odstranit styl písma',
  171. height: 'Výška řádku',
  172. strikethrough: 'Přeškrtnuté',
  173. size: 'Velikost písma'
  174. },
  175. image: {
  176. image: 'Obrázek',
  177. insert: 'Vložit obrázek',
  178. resizeFull: 'Původní velikost',
  179. resizeHalf: 'Poloviční velikost',
  180. resizeQuarter: 'Čtvrteční velikost',
  181. floatLeft: 'Umístit doleva',
  182. floatRight: 'Umístit doprava',
  183. floatNone: 'Neobtékat textem',
  184. shapeRounded: 'Shape: Rounded',
  185. shapeCircle: 'Shape: Circle',
  186. shapeThumbnail: 'Shape: Thumbnail',
  187. shapeNone: 'Shape: None',
  188. dragImageHere: 'Přetáhnout sem obrázek',
  189. dropImage: 'Drop image or Text',
  190. selectFromFiles: 'Vybrat soubor',
  191. url: 'URL obrázku',
  192. remove: 'Remove Image',
  193. original: 'Original'
  194. },
  195. video: {
  196. video: 'Video',
  197. videoLink: 'Odkaz videa',
  198. insert: 'Vložit video',
  199. url: 'URL videa?',
  200. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion nebo Youku)'
  201. },
  202. link: {
  203. link: 'Odkaz',
  204. insert: 'Vytvořit odkaz',
  205. unlink: 'Zrušit odkaz',
  206. edit: 'Upravit',
  207. textToDisplay: 'Zobrazovaný text',
  208. url: 'Na jaké URL má tento odkaz vést?',
  209. openInNewWindow: 'Otevřít v novém okně'
  210. },
  211. table: {
  212. table: 'Tabulka',
  213. addRowAbove: 'Add row above',
  214. addRowBelow: 'Add row below',
  215. addColLeft: 'Add column left',
  216. addColRight: 'Add column right',
  217. delRow: 'Delete row',
  218. delCol: 'Delete column',
  219. delTable: 'Delete table'
  220. },
  221. hr: {
  222. insert: 'Vložit vodorovnou čáru'
  223. },
  224. style: {
  225. style: 'Styl',
  226. p: 'Normální',
  227. blockquote: 'Citace',
  228. pre: 'Kód',
  229. h1: 'Nadpis 1',
  230. h2: 'Nadpis 2',
  231. h3: 'Nadpis 3',
  232. h4: 'Nadpis 4',
  233. h5: 'Nadpis 5',
  234. h6: 'Nadpis 6'
  235. },
  236. lists: {
  237. unordered: 'Odrážkový seznam',
  238. ordered: 'Číselný seznam'
  239. },
  240. options: {
  241. help: 'Nápověda',
  242. fullscreen: 'Celá obrazovka',
  243. codeview: 'HTML kód'
  244. },
  245. paragraph: {
  246. paragraph: 'Odstavec',
  247. outdent: 'Zvětšit odsazení',
  248. indent: 'Zmenšit odsazení',
  249. left: 'Zarovnat doleva',
  250. center: 'Zarovnat na střed',
  251. right: 'Zarovnat doprava',
  252. justify: 'Zarovnat oboustranně'
  253. },
  254. color: {
  255. recent: 'Aktuální barva',
  256. more: 'Další barvy',
  257. background: 'Barva pozadí',
  258. foreground: 'Barva písma',
  259. transparent: 'Průhlednost',
  260. setTransparent: 'Nastavit průhlednost',
  261. reset: 'Obnovit',
  262. resetToDefault: 'Obnovit výchozí',
  263. cpSelect: 'Vybrat'
  264. },
  265. shortcut: {
  266. shortcuts: 'Klávesové zkratky',
  267. close: 'Zavřít',
  268. textFormatting: 'Formátování textu',
  269. action: 'Akce',
  270. paragraphFormatting: 'Formátování odstavce',
  271. documentStyle: 'Styl dokumentu'
  272. },
  273. help: {
  274. 'insertParagraph': 'Insert Paragraph',
  275. 'undo': 'Undoes the last command',
  276. 'redo': 'Redoes the last command',
  277. 'tab': 'Tab',
  278. 'untab': 'Untab',
  279. 'bold': 'Set a bold style',
  280. 'italic': 'Set a italic style',
  281. 'underline': 'Set a underline style',
  282. 'strikethrough': 'Set a strikethrough style',
  283. 'removeFormat': 'Clean a style',
  284. 'justifyLeft': 'Set left align',
  285. 'justifyCenter': 'Set center align',
  286. 'justifyRight': 'Set right align',
  287. 'justifyFull': 'Set full align',
  288. 'insertUnorderedList': 'Toggle unordered list',
  289. 'insertOrderedList': 'Toggle ordered list',
  290. 'outdent': 'Outdent on current paragraph',
  291. 'indent': 'Indent on current paragraph',
  292. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  293. 'formatH1': 'Change current block\'s format as H1',
  294. 'formatH2': 'Change current block\'s format as H2',
  295. 'formatH3': 'Change current block\'s format as H3',
  296. 'formatH4': 'Change current block\'s format as H4',
  297. 'formatH5': 'Change current block\'s format as H5',
  298. 'formatH6': 'Change current block\'s format as H6',
  299. 'insertHorizontalRule': 'Insert horizontal rule',
  300. 'linkDialog.show': 'Show Link Dialog'
  301. },
  302. history: {
  303. undo: 'Krok vzad',
  304. redo: 'Krok vpřed'
  305. },
  306. specialChar: {
  307. specialChar: 'SPECIAL CHARACTERS',
  308. select: 'Select Special characters'
  309. }
  310. }
  311. });
  312. })(jQuery);
  313. /***/
  314. })
  315. /******/
  316. });
  317. });