Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
(function ($) {
2
  $.extend($.summernote.lang, {
3
    'es-ES': {
4
      font: {
5
        name:'Fuente',
6
        bold: 'Negrita',
7
        italic: 'Cursiva',
8
        underline: 'Subrayado',
9
        superscript: 'Superíndice',
10
        subscript: 'Subíndice',
11
        strikethrough: 'Tachado',
12
        clear: 'Quitar estilo de fuente',
13
        height: 'Altura de línea',
14
        size: 'Tamaño de la fuente'
15
      },
16
      image: {
17
        image: 'Imagen',
18
        insert: 'Insertar imagen',
19
        resizeFull: 'Redimensionar a tamaño completo',
20
        resizeHalf: 'Redimensionar a la mitad',
21
        resizeQuarter: 'Redimensionar a un cuarto',
22
        floatLeft: 'Flotar a la izquierda',
23
        floatRight: 'Flotar a la derecha',
24
        floatNone: 'No flotar',
25
        dragImageHere: 'Arrastrar una imagen aquí',
26
        selectFromFiles: 'Seleccionar desde los archivos',
27
        url: 'URL de la imagen'
28
      },
29
      link: {
30
        link: 'Link',
31
        insert: 'Insertar link',
32
        unlink: 'Quitar link',
33
        edit: 'Editar',
34
        textToDisplay: 'Texto para mostrar',
35
        url: '¿Hacia que URL lleva el link?',
36
        openInNewWindow: 'Abrir en una nueva ventana'
37
      },
38
      video: {
39
        video: 'Video',
40
        videoLink: 'Link del video',
41
        insert: 'Insertar video',
42
        url: '¿URL del video?',
43
        providers: '(YouTube, Vimeo, Vine, Instagram, DailyMotion, o Youku)'
44
      },
45
      table: {
46
        table: 'Tabla'
47
      },
48
      hr: {
49
        insert: 'Insertar línea horizontal'
50
      },
51
      style: {
52
        style: 'Estilo',
53
        normal: 'Normal',
54
        blockquote: 'Cita',
55
        pre: 'Código',
56
        h1: 'Título 1',
57
        h2: 'Título 2',
58
        h3: 'Título 3',
59
        h4: 'Título 4',
60
        h5: 'Título 5',
61
        h6: 'Título 6'
62
      },
63
      lists: {
64
        unordered: 'Lista desordenada',
65
        ordered: 'Lista ordenada'
66
      },
67
      options: {
68
        help: 'Ayuda',
69
        fullscreen: 'Pantalla completa',
70
        codeview: 'Ver código fuente'
71
      },
72
      paragraph: {
73
        paragraph: 'Párrafo',
74
        outdent: 'Menos tabulación',
75
        indent: 'Más tabulación',
76
        left: 'Alinear a la izquierda',
77
        center: 'Alinear al centro',
78
        right: 'Alinear a la derecha',
79
        justify: 'Justificar'
80
      },
81
      color: {
82
        recent: 'Último color',
83
        more: 'Más colores',
84
        background: 'Color de fondo',
85
        foreground: 'Color de fuente',
86
        transparent: 'Transparente',
87
        setTransparent: 'Establecer transparente',
88
        reset: 'Restaurar',
89
        resetToDefault: 'Restaurar por defecto'
90
      },
91
      shortcut: {
92
        shortcuts: 'Atajos de teclado',
93
        close: 'Cerrar',
94
        textFormatting: 'Formato de texto',
95
        action: 'Acción',
96
        paragraphFormatting: 'Formato de párrafo',
97
        documentStyle: 'Estilo de documento'
98
      },
99
      history: {
100
        undo: 'Deshacer',
101
        redo: 'Rehacer'
102
      }
103
    }
104
  });
105
})(jQuery);