Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

summernote-es-ES.js 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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 = 15);
  157. /******/
  158. })
  159. /************************************************************************/
  160. /******/ ({
  161. /***/ 15:
  162. /***/ (function (module, exports) {
  163. (function ($) {
  164. $.extend($.summernote.lang, {
  165. 'es-ES': {
  166. font: {
  167. bold: 'Negrita',
  168. italic: 'Cursiva',
  169. underline: 'Subrayado',
  170. clear: 'Eliminar estilo de letra',
  171. height: 'Altura de línea',
  172. name: 'Tipo de letra',
  173. strikethrough: 'Tachado',
  174. subscript: 'Subíndice',
  175. superscript: 'Superíndice',
  176. size: 'Tamaño de la fuente',
  177. sizeunit: 'Unidad del tamaño de letra'
  178. },
  179. image: {
  180. image: 'Imagen',
  181. insert: 'Insertar imagen',
  182. resizeFull: 'Redimensionar a tamaño completo',
  183. resizeHalf: 'Redimensionar a la mitad',
  184. resizeQuarter: 'Redimensionar a un cuarto',
  185. resizeNone: 'Tamaño original',
  186. floatLeft: 'Flotar a la izquierda',
  187. floatRight: 'Flotar a la derecha',
  188. floatNone: 'No flotar',
  189. shapeRounded: 'Forma: Redondeado',
  190. shapeCircle: 'Forma: Círculo',
  191. shapeThumbnail: 'Forma: Miniatura',
  192. shapeNone: 'Forma: Ninguna',
  193. dragImageHere: 'Arrastre una imagen o texto aquí',
  194. dropImage: 'Suelte una imagen o texto',
  195. selectFromFiles: 'Seleccione un fichero',
  196. maximumFileSize: 'Tamaño máximo del fichero',
  197. maximumFileSizeError: 'Superado el tamaño máximo de fichero.',
  198. url: 'URL de la imagen',
  199. remove: 'Eliminar la imagen',
  200. original: 'Original'
  201. },
  202. video: {
  203. video: 'Vídeo',
  204. videoLink: 'Enlace del vídeo',
  205. insert: 'Insertar un vídeo',
  206. url: 'URL del vídeo',
  207. providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion o Youku)'
  208. },
  209. link: {
  210. link: 'Enlace',
  211. insert: 'Insertar un enlace',
  212. unlink: 'Quitar el enlace',
  213. edit: 'Editar',
  214. textToDisplay: 'Texto a mostrar',
  215. url: '¿A qué URL lleva este enlace?',
  216. openInNewWindow: 'Abrir en una nueva ventana',
  217. useProtocol: 'Usar el protocolo predefinido'
  218. },
  219. table: {
  220. table: 'Tabla',
  221. addRowAbove: 'Añadir una fila encima',
  222. addRowBelow: 'Añadir una fila debajo',
  223. addColLeft: 'Añadir una columna a la izquierda',
  224. addColRight: 'Añadir una columna a la derecha',
  225. delRow: 'Borrar la fila',
  226. delCol: 'Borrar la columna',
  227. delTable: 'Borrar la tabla'
  228. },
  229. hr: {
  230. insert: 'Insertar una línea horizontal'
  231. },
  232. style: {
  233. style: 'Estilo',
  234. p: 'Normal',
  235. blockquote: 'Cita',
  236. pre: 'Código',
  237. h1: 'Título 1',
  238. h2: 'Título 2',
  239. h3: 'Título 3',
  240. h4: 'Título 4',
  241. h5: 'Título 5',
  242. h6: 'Título 6'
  243. },
  244. lists: {
  245. unordered: 'Lista',
  246. ordered: 'Lista numerada'
  247. },
  248. options: {
  249. help: 'Ayuda',
  250. fullscreen: 'Pantalla completa',
  251. codeview: 'Ver el código fuente'
  252. },
  253. paragraph: {
  254. paragraph: 'Párrafo',
  255. outdent: 'Reducir la sangría',
  256. indent: 'Aumentar la sangría',
  257. left: 'Alinear a la izquierda',
  258. center: 'Centrar',
  259. right: 'Alinear a la derecha',
  260. justify: 'Justificar'
  261. },
  262. color: {
  263. recent: 'Último color',
  264. more: 'Más colores',
  265. background: 'Color de fondo',
  266. foreground: 'Color del texto',
  267. transparent: 'Transparente',
  268. setTransparent: 'Establecer transparente',
  269. reset: 'Restablecer',
  270. resetToDefault: 'Restablecer a los valores predefinidos',
  271. cpSelect: 'Seleccionar'
  272. },
  273. shortcut: {
  274. shortcuts: 'Atajos de teclado',
  275. close: 'Cerrar',
  276. textFormatting: 'Formato de texto',
  277. action: 'Acción',
  278. paragraphFormatting: 'Formato de párrafo',
  279. documentStyle: 'Estilo de documento',
  280. extraKeys: 'Teclas adicionales'
  281. },
  282. help: {
  283. insertParagraph: 'Insertar un párrafo',
  284. undo: 'Deshacer la última acción',
  285. redo: 'Rehacer la última acción',
  286. tab: 'Tabular',
  287. untab: 'Eliminar tabulación',
  288. bold: 'Establecer estilo negrita',
  289. italic: 'Establecer estilo cursiva',
  290. underline: 'Establecer estilo subrayado',
  291. strikethrough: 'Establecer estilo tachado',
  292. removeFormat: 'Limpiar estilo',
  293. justifyLeft: 'Alinear a la izquierda',
  294. justifyCenter: 'Alinear al centro',
  295. justifyRight: 'Alinear a la derecha',
  296. justifyFull: 'Justificar',
  297. insertUnorderedList: 'Insertar lista',
  298. insertOrderedList: 'Insertar lista numerada',
  299. outdent: 'Reducir sangría del párrafo',
  300. indent: 'Aumentar sangría del párrafo',
  301. formatPara: 'Cambiar el formato del bloque actual a párrafo (etiqueta P)',
  302. formatH1: 'Cambiar el formato del bloque actual a H1',
  303. formatH2: 'Cambiar el formato del bloque actual a H2',
  304. formatH3: 'Cambiar el formato del bloque actual a H3',
  305. formatH4: 'Cambiar el formato del bloque actual a H4',
  306. formatH5: 'Cambiar el formato del bloque actual a H5',
  307. formatH6: 'Cambiar el formato del bloque actual a H6',
  308. insertHorizontalRule: 'Insertar una línea horizontal',
  309. 'linkDialog.show': 'Mostrar el panel de enlaces'
  310. },
  311. history: {
  312. undo: 'Deshacer',
  313. redo: 'Rehacer'
  314. },
  315. specialChar: {
  316. specialChar: 'CARACTERES ESPECIALES',
  317. select: 'Seleccionar caracteres especiales'
  318. },
  319. output: {
  320. noSelection: '¡No ha seleccionado nada!'
  321. }
  322. }
  323. });
  324. })(jQuery);
  325. /***/
  326. })
  327. /******/
  328. });
  329. });