1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
<?php // ================================================ // SPAW PHP WYSIWYG editor control // ================================================ // Spanish language file // ================================================ // Developed: Alan Mendelevich, alan@solmetra.lt // Copyright: Solmetra (c)2003 All rights reserved. // Galego translation: Pedro Telmo (p.telmo@valminor.info) // ------------------------------------------------ // www.solmetra.com // ================================================ // v.1.0, 2003-03-20 // ================================================
// charset to be used in dialogs $spaw_lang_charset = 'utf-8';
// language text data array // first dimension - block, second - exact phrase // alternative text for toolbar buttons and title for dropdowns - 'title'
$spaw_lang_data = array( 'cut' => array( 'title' => 'Cortar' ), 'copy' => array( 'title' => 'Copiar' ), 'paste' => array( 'title' => 'Pegar' ), 'undo' => array( 'title' => 'Desfacer' ), 'redo' => array( 'title' => 'Refacer' ), 'hyperlink' => array( 'title' => 'Ligazón' ), 'image_insert' => array( 'title' => 'Insertar imaxe', 'select' => 'Seleccionar', 'cancel' => 'Cancelar', 'library' => 'Libreria', 'preview' => 'Previsualizar', 'images' => 'Imáxenes', 'upload' => 'Subir imaxe', 'upload_button' => 'Subir', 'error' => 'Error', 'error_no_image' => 'Por favor, selecciona unha imaxe', 'error_uploading' => 'Ocurriu un erro ó subir a imaxe, inténteo de novo', 'error_wrong_type' => 'Tipo de imaxe incorrecto.', 'error_no_dir' => 'A libreria non existe', ), 'image_prop' => array( 'title' => 'Propiedades da imaxe', 'ok' => ' OK ', 'cancel' => 'Cancelar', 'source' => 'Fonte', 'alt' => 'Texto alternativo', 'align' => 'Alineación', 'justifyleft' => 'esquerda', 'justifyright' => 'dereita', 'top' => 'superior', 'middle' => 'medio', 'bottom' => 'inferior', 'absmiddle' => 'medio absoluto', 'texttop' => 'Texto superior', 'baseline' => 'Liña Base', 'width' => 'Ancho', 'height' => 'Alto', 'border' => 'Borde', 'hspace' => 'Marxe hor.', 'vspace' => 'Marxe vert.', 'error' => 'Erro', 'error_width_nan' => 'a altura ten que ser un número', 'error_height_nan' => 'o ancho ten que ser un número', 'error_border_nan' => 'o borde ten que ser un número', 'error_hspace_nan' => 'a marxe horizontal ten que ser un número', 'error_vspace_nan' => 'a marxe vertical ten que ser un número', ), 'inserthorizontalrule' => array( 'title' => 'Liña horizontal' ), 'table_create' => array( 'title' => 'Crear táboa' ), 'table_prop' => array( 'title' => 'Propiedades de la tabla', 'ok' => ' OK ', 'cancel' => 'Cancelar', 'rows' => 'Filas', 'columns' => 'Columnas', 'width' => 'Ancho', 'height' => 'Alto', 'border' => 'Borde', 'pixels' => 'pixels', 'cellpadding' => 'Recheo da celda', 'cellspacing' => 'Espaciado da celda', 'bg_color' => 'Color de fondo', 'error' => 'Erro', 'error_rows_nan' => 'As filas teñen que ser un número', 'error_columns_nan' => 'As columnas teñen que ser un número', 'error_width_nan' => 'O ancho ten que ser un número', 'error_height_nan' => 'O alto ten que ser un número', 'error_border_nan' => 'O borde ten que ser un número', 'error_cellpadding_nan' => 'O recheo ten que ser un número', 'error_cellspacing_nan' => 'O espaciado ten que ser un número', ), 'table_cell_prop' => array( 'title' => 'Propiedades da celda', 'horizontal_align' => 'Alineación horizontal', 'vertical_align' => 'Alineación vertical', 'width' => 'Ancho', 'height' => 'Alto', 'css_class' => 'Estilo CSS', 'no_wrap' => 'non envolver', 'bg_color' => 'Color de fondo', 'ok' => ' OK ', 'cancel' => 'Cancelar', 'justifyleft' => 'Esquerda', 'justifycenter' => 'Centro', 'justifyright' => 'Dereita', 'top' => 'Arriba', 'middle' => 'Medio', 'bottom' => 'Abaixo', 'baseline' => 'Liña Base', 'error' => 'Erro', 'error_width_nan' => 'O ancho ten que ser un número', 'error_height_nan' => 'O alto ten que ser un número', ), 'table_row_insert' => array( 'title' => 'Insertar fila' ), 'table_column_insert' => array( 'title' => 'Insertar columna' ), 'table_row_delete' => array( 'title' => 'Borrar fila' ), 'table_column_delete' => array( 'title' => 'Borrar columna' ), 'table_cell_merge_right' => array( 'title' => 'Combinar as celdas da esqueda' ), 'table_cell_merge_down' => array( 'title' => 'Combinar as celdas de abaixo' ), 'table_cell_split_horizontal' => array( 'title' => 'Dividir as celdas horizontalmente' ), 'table_cell_split_vertical' => array( 'title' => 'Dividir as celdas verticalmente' ), 'style' => array( 'title' => 'Estilo' ), 'fontname' => array( 'title' => 'Fonte' ), 'fontsize' => array( 'title' => 'Tamaño' ), 'formatBlock' => array( 'title' => 'Párrafo' ), 'bold' => array( 'title' => 'Negriña' ), 'italic' => array( 'title' => 'Cursiva' ), 'underline' => array( 'title' => 'Subraiado' ), 'insertorderedlist' => array( 'title' => 'Lista ordeada' ), 'insertunorderedlist' => array( 'title' => 'Lista con marca' ), 'indent' => array( 'title' => 'Sangría' ), 'outdent' => array( 'title' => 'Anular sangría' ), 'justifyleft' => array( 'title' => 'Esquerda' ), 'justifycenter' => array( 'title' => 'Centro' ), 'justifyright' => array( 'title' => 'Dereita' ), 'fore_color' => array( 'title' => 'Color da fonte' ), 'bg_color' => array( 'title' => 'Color de fondo' ), 'design' => array( 'title' => 'Cambiar ó modo WYSIWYG (deseño)' ), 'html' => array( 'title' => 'Cambiar ó modo HTML (código)' ), 'colorpicker' => array( 'title' => 'Selecciona color', 'ok' => ' OK ', 'cancel' => 'Cancelar', ) ); ?>
|