You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

272 lines
9.7 KiB

  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-20T18:09Z
  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. /******/ var installedModules = {};
  26. /******/
  27. /******/ // The require function
  28. /******/ function __webpack_require__(moduleId) {
  29. /******/
  30. /******/ // Check if module is in cache
  31. /******/ if(installedModules[moduleId]) {
  32. /******/ return installedModules[moduleId].exports;
  33. /******/ }
  34. /******/ // Create a new module (and put it into the cache)
  35. /******/ var module = installedModules[moduleId] = {
  36. /******/ i: moduleId,
  37. /******/ l: false,
  38. /******/ exports: {}
  39. /******/ };
  40. /******/
  41. /******/ // Execute the module function
  42. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  43. /******/
  44. /******/ // Flag the module as loaded
  45. /******/ module.l = true;
  46. /******/
  47. /******/ // Return the exports of the module
  48. /******/ return module.exports;
  49. /******/ }
  50. /******/
  51. /******/
  52. /******/ // expose the modules object (__webpack_modules__)
  53. /******/ __webpack_require__.m = modules;
  54. /******/
  55. /******/ // expose the module cache
  56. /******/ __webpack_require__.c = installedModules;
  57. /******/
  58. /******/ // define getter function for harmony exports
  59. /******/ __webpack_require__.d = function(exports, name, getter) {
  60. /******/ if(!__webpack_require__.o(exports, name)) {
  61. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  62. /******/ }
  63. /******/ };
  64. /******/
  65. /******/ // define __esModule on exports
  66. /******/ __webpack_require__.r = function(exports) {
  67. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  68. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  69. /******/ }
  70. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  71. /******/ };
  72. /******/
  73. /******/ // create a fake namespace object
  74. /******/ // mode & 1: value is a module id, require it
  75. /******/ // mode & 2: merge all properties of value into the ns
  76. /******/ // mode & 4: return value when already ns object
  77. /******/ // mode & 8|1: behave like require
  78. /******/ __webpack_require__.t = function(value, mode) {
  79. /******/ if(mode & 1) value = __webpack_require__(value);
  80. /******/ if(mode & 8) return value;
  81. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  82. /******/ var ns = Object.create(null);
  83. /******/ __webpack_require__.r(ns);
  84. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  85. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  86. /******/ return ns;
  87. /******/ };
  88. /******/
  89. /******/ // getDefaultExport function for compatibility with non-harmony modules
  90. /******/ __webpack_require__.n = function(module) {
  91. /******/ var getter = module && module.__esModule ?
  92. /******/ function getDefault() { return module['default']; } :
  93. /******/ function getModuleExports() { return module; };
  94. /******/ __webpack_require__.d(getter, 'a', getter);
  95. /******/ return getter;
  96. /******/ };
  97. /******/
  98. /******/ // Object.prototype.hasOwnProperty.call
  99. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  100. /******/
  101. /******/ // __webpack_public_path__
  102. /******/ __webpack_require__.p = "";
  103. /******/
  104. /******/
  105. /******/ // Load entry module and return exports
  106. /******/ return __webpack_require__(__webpack_require__.s = 17);
  107. /******/ })
  108. /************************************************************************/
  109. /******/ ({
  110. /***/ 17:
  111. /***/ (function(module, exports) {
  112. (function ($) {
  113. $.extend($.summernote.lang, {
  114. 'fa-IR': {
  115. font: {
  116. bold: 'درشت',
  117. italic: 'خمیده',
  118. underline: 'میان خط',
  119. clear: 'پاک کردن فرمت فونت',
  120. height: 'فاصله ی خطی',
  121. name: 'اسم فونت',
  122. strikethrough: 'Strike',
  123. subscript: 'Subscript',
  124. superscript: 'Superscript',
  125. size: 'اندازه ی فونت'
  126. },
  127. image: {
  128. image: 'تصویر',
  129. insert: 'وارد کردن تصویر',
  130. resizeFull: 'تغییر به اندازه ی کامل',
  131. resizeHalf: 'تغییر به اندازه نصف',
  132. resizeQuarter: 'تغییر به اندازه یک چهارم',
  133. floatLeft: 'چسباندن به چپ',
  134. floatRight: 'چسباندن به راست',
  135. floatNone: 'بدون چسبندگی',
  136. shapeRounded: 'Shape: Rounded',
  137. shapeCircle: 'Shape: Circle',
  138. shapeThumbnail: 'Shape: Thumbnail',
  139. shapeNone: 'Shape: None',
  140. dragImageHere: 'یک تصویر را اینجا بکشید',
  141. dropImage: 'Drop image or Text',
  142. selectFromFiles: 'فایل ها را انتخاب کنید',
  143. maximumFileSize: 'حداکثر اندازه پرونده',
  144. maximumFileSizeError: 'Maximum file size exceeded.',
  145. url: 'آدرس تصویر',
  146. remove: 'حذف تصویر',
  147. original: 'Original'
  148. },
  149. video: {
  150. video: 'ویدیو',
  151. videoLink: 'لینک ویدیو',
  152. insert: 'افزودن ویدیو',
  153. url: 'آدرس ویدیو ؟',
  154. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion یا Youku)'
  155. },
  156. link: {
  157. link: 'لینک',
  158. insert: 'اضافه کردن لینک',
  159. unlink: 'حذف لینک',
  160. edit: 'ویرایش',
  161. textToDisplay: 'متن جهت نمایش',
  162. url: 'این لینک به چه آدرسی باید برود ؟',
  163. openInNewWindow: 'در یک پنجره ی جدید باز شود'
  164. },
  165. table: {
  166. table: 'جدول',
  167. addRowAbove: 'افزودن ردیف بالا',
  168. addRowBelow: 'افزودن ردیف پایین',
  169. addColLeft: 'افزودن ستون چپ',
  170. addColRight: 'افزودن ستون راست',
  171. delRow: 'حذف ردیف',
  172. delCol: 'حذف ستون',
  173. delTable: 'حذف جدول'
  174. },
  175. hr: {
  176. insert: 'افزودن خط افقی'
  177. },
  178. style: {
  179. style: 'استیل',
  180. p: 'نرمال',
  181. blockquote: 'نقل قول',
  182. pre: 'کد',
  183. h1: 'سرتیتر 1',
  184. h2: 'سرتیتر 2',
  185. h3: 'سرتیتر 3',
  186. h4: 'سرتیتر 4',
  187. h5: 'سرتیتر 5',
  188. h6: 'سرتیتر 6'
  189. },
  190. lists: {
  191. unordered: 'لیست غیر ترتیبی',
  192. ordered: 'لیست ترتیبی'
  193. },
  194. options: {
  195. help: 'راهنما',
  196. fullscreen: 'نمایش تمام صفحه',
  197. codeview: 'مشاهده ی کد'
  198. },
  199. paragraph: {
  200. paragraph: 'پاراگراف',
  201. outdent: 'کاهش تو رفتگی',
  202. indent: 'افزایش تو رفتگی',
  203. left: 'چپ چین',
  204. center: 'میان چین',
  205. right: 'راست چین',
  206. justify: 'بلوک چین'
  207. },
  208. color: {
  209. recent: 'رنگ اخیرا استفاده شده',
  210. more: 'رنگ بیشتر',
  211. background: 'رنگ پس زمینه',
  212. foreground: 'رنگ متن',
  213. transparent: 'بی رنگ',
  214. setTransparent: 'تنظیم حالت بی رنگ',
  215. reset: 'بازنشاندن',
  216. resetToDefault: 'حالت پیش فرض'
  217. },
  218. shortcut: {
  219. shortcuts: 'دکمه های میان بر',
  220. close: 'بستن',
  221. textFormatting: 'فرمت متن',
  222. action: 'عملیات',
  223. paragraphFormatting: 'فرمت پاراگراف',
  224. documentStyle: 'استیل سند',
  225. extraKeys: 'Extra keys'
  226. },
  227. help: {
  228. 'insertParagraph': 'افزودن پاراگراف',
  229. 'undo': 'Undoes the last command',
  230. 'redo': 'Redoes the last command',
  231. 'tab': 'Tab',
  232. 'untab': 'Untab',
  233. 'bold': 'Set a bold style',
  234. 'italic': 'Set a italic style',
  235. 'underline': 'Set a underline style',
  236. 'strikethrough': 'Set a strikethrough style',
  237. 'removeFormat': 'Clean a style',
  238. 'justifyLeft': 'چپ چین',
  239. 'justifyCenter': 'وسط چین',
  240. 'justifyRight': 'راست چین',
  241. 'justifyFull': 'Set full align',
  242. 'insertUnorderedList': 'Toggle unordered list',
  243. 'insertOrderedList': 'Toggle ordered list',
  244. 'outdent': 'Outdent on current paragraph',
  245. 'indent': 'Indent on current paragraph',
  246. 'formatPara': 'Change current block\'s format as a paragraph(P tag)',
  247. 'formatH1': 'Change current block\'s format as H1',
  248. 'formatH2': 'Change current block\'s format as H2',
  249. 'formatH3': 'Change current block\'s format as H3',
  250. 'formatH4': 'Change current block\'s format as H4',
  251. 'formatH5': 'Change current block\'s format as H5',
  252. 'formatH6': 'Change current block\'s format as H6',
  253. 'insertHorizontalRule': 'Insert horizontal rule',
  254. 'linkDialog.show': 'Show Link Dialog'
  255. },
  256. history: {
  257. undo: 'واچیدن',
  258. redo: 'بازچیدن'
  259. },
  260. specialChar: {
  261. specialChar: 'کاراکتر خاص',
  262. select: 'انتخاب کاراکتر خاص'
  263. }
  264. }
  265. });
  266. })(jQuery);
  267. /***/ })
  268. /******/ });
  269. });