~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/sqlitemanager1.2.0/spaw/lib/lang/en/en_lang_data.inc.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php 
 
2
// ================================================
 
3
// SPAW PHP WYSIWYG editor control
 
4
// ================================================
 
5
// English language file
 
6
// ================================================
 
7
// Developed: Alan Mendelevich, alan@solmetra.lt
 
8
// Copyright: Solmetra (c)2003 All rights reserved.
 
9
// ------------------------------------------------
 
10
//                                www.solmetra.com
 
11
// ================================================
 
12
// v.1.0, 2003-03-20
 
13
// ================================================
 
14
 
 
15
// charset to be used in dialogs
 
16
$spaw_lang_charset = 'iso-8859-1';
 
17
 
 
18
// language text data array
 
19
// first dimension - block, second - exact phrase
 
20
// alternative text for toolbar buttons and title for dropdowns - 'title'
 
21
 
 
22
$spaw_lang_data = array(
 
23
  'cut' => array(
 
24
    'title' => 'Cut'
 
25
  ),
 
26
  'copy' => array(
 
27
    'title' => 'Copy'
 
28
  ),
 
29
  'paste' => array(
 
30
    'title' => 'Paste'
 
31
  ),
 
32
  'undo' => array(
 
33
    'title' => 'Undo'
 
34
  ),
 
35
  'redo' => array(
 
36
    'title' => 'Redo'
 
37
  ),
 
38
  'image_insert' => array(
 
39
    'title' => 'Insert image',
 
40
    'select' => 'Select',
 
41
        'delete' => 'Delete', // new 1.0.5
 
42
    'cancel' => 'Cancel',
 
43
    'library' => 'Library',
 
44
    'preview' => 'Preview',
 
45
    'images' => 'Images',
 
46
    'upload' => 'Upload image',
 
47
    'upload_button' => 'Upload',
 
48
    'error' => 'Error',
 
49
    'error_no_image' => 'Please select an image',
 
50
    'error_uploading' => 'An error occured while handling file upload. Please try again later',
 
51
    'error_wrong_type' => 'Wrong image file type',
 
52
    'error_no_dir' => 'Library doesn\'t physically exist',
 
53
        'error_cant_delete' => 'Delete failed', // new 1.0.5
 
54
  ),
 
55
  'image_prop' => array(
 
56
    'title' => 'Image properties',
 
57
    'ok' => '   OK   ',
 
58
    'cancel' => 'Cancel',
 
59
    'source' => 'Source',
 
60
    'alt' => 'Alternative text',
 
61
    'align' => 'Align',
 
62
    'left' => 'left',
 
63
    'right' => 'right',
 
64
    'top' => 'top',
 
65
    'middle' => 'middle',
 
66
    'bottom' => 'bottom',
 
67
    'absmiddle' => 'absmiddle',
 
68
    'texttop' => 'texttop',
 
69
    'baseline' => 'baseline',
 
70
    'width' => 'Width',
 
71
    'height' => 'Height',
 
72
    'border' => 'Border',
 
73
    'hspace' => 'Hor. space',
 
74
    'vspace' => 'Vert. space',
 
75
    'error' => 'Error',
 
76
    'error_width_nan' => 'Width is not a number',
 
77
    'error_height_nan' => 'Height is not a number',
 
78
    'error_border_nan' => 'Border is not a number',
 
79
    'error_hspace_nan' => 'Horizontal space is not a number',
 
80
    'error_vspace_nan' => 'Vertical space is not a number',
 
81
  ),
 
82
  'hr' => array(
 
83
    'title' => 'Horizontal rule'
 
84
  ),
 
85
  'table_create' => array(
 
86
    'title' => 'Create table'
 
87
  ),
 
88
  'table_prop' => array(
 
89
    'title' => 'Table properties',
 
90
    'ok' => '   OK   ',
 
91
    'cancel' => 'Cancel',
 
92
    'rows' => 'Rows',
 
93
    'columns' => 'Columns',
 
94
    'css_class' => 'CSS class', // <=== new 1.0.6
 
95
    'width' => 'Width',
 
96
    'height' => 'Height',
 
97
    'border' => 'Border',
 
98
    'pixels' => 'pixels',
 
99
    'cellpadding' => 'Cell padding',
 
100
    'cellspacing' => 'Cell spacing',
 
101
    'bg_color' => 'Background color',
 
102
    'background' => 'Background image', // <=== new 1.0.6
 
103
    'error' => 'Error',
 
104
    'error_rows_nan' => 'Rows is not a number',
 
105
    'error_columns_nan' => 'Columns is not a number',
 
106
    'error_width_nan' => 'Width is not a number',
 
107
    'error_height_nan' => 'Height is not a number',
 
108
    'error_border_nan' => 'Border is not a number',
 
109
    'error_cellpadding_nan' => 'Cell padding is not a number',
 
110
    'error_cellspacing_nan' => 'Cell spacing is not a number',
 
111
  ),
 
112
  'table_cell_prop' => array(
 
113
    'title' => 'Cell properties',
 
114
    'horizontal_align' => 'Horizontal align',
 
115
    'vertical_align' => 'Vertical align',
 
116
    'width' => 'Width',
 
117
    'height' => 'Height',
 
118
    'css_class' => 'CSS class',
 
119
    'no_wrap' => 'No wrap',
 
120
    'bg_color' => 'Background color',
 
121
    'background' => 'Background image', // <=== new 1.0.6
 
122
    'ok' => '   OK   ',
 
123
    'cancel' => 'Cancel',
 
124
    'left' => 'Left',
 
125
    'center' => 'Center',
 
126
    'right' => 'Right',
 
127
    'top' => 'Top',
 
128
    'middle' => 'Middle',
 
129
    'bottom' => 'Bottom',
 
130
    'baseline' => 'Baseline',
 
131
    'error' => 'Error',
 
132
    'error_width_nan' => 'Width is not a number',
 
133
    'error_height_nan' => 'Height is not a number',
 
134
  ),
 
135
  'table_row_insert' => array(
 
136
    'title' => 'Insert row'
 
137
  ),
 
138
  'table_column_insert' => array(
 
139
    'title' => 'Insert column'
 
140
  ),
 
141
  'table_row_delete' => array(
 
142
    'title' => 'Delete row'
 
143
  ),
 
144
  'table_column_delete' => array(
 
145
    'title' => 'Delete column'
 
146
  ),
 
147
  'table_cell_merge_right' => array(
 
148
    'title' => 'Merge right'
 
149
  ),
 
150
  'table_cell_merge_down' => array(
 
151
    'title' => 'Merge down'
 
152
  ),
 
153
  'table_cell_split_horizontal' => array(
 
154
    'title' => 'Split cell horizontally'
 
155
  ),
 
156
  'table_cell_split_vertical' => array(
 
157
    'title' => 'Split cell vertically'
 
158
  ),
 
159
  'style' => array(
 
160
    'title' => 'Style'
 
161
  ),
 
162
  'font' => array(
 
163
    'title' => 'Font'
 
164
  ),
 
165
  'fontsize' => array(
 
166
    'title' => 'Size'
 
167
  ),
 
168
  'paragraph' => array(
 
169
    'title' => 'Paragraph'
 
170
  ),
 
171
  'bold' => array(
 
172
    'title' => 'Bold'
 
173
  ),
 
174
  'italic' => array(
 
175
    'title' => 'Italic'
 
176
  ),
 
177
  'underline' => array(
 
178
    'title' => 'Underline'
 
179
  ),
 
180
  'ordered_list' => array(
 
181
    'title' => 'Ordered list'
 
182
  ),
 
183
  'bulleted_list' => array(
 
184
    'title' => 'Bulleted list'
 
185
  ),
 
186
  'indent' => array(
 
187
    'title' => 'Indent'
 
188
  ),
 
189
  'unindent' => array(
 
190
    'title' => 'Unindent'
 
191
  ),
 
192
  'left' => array(
 
193
    'title' => 'Left'
 
194
  ),
 
195
  'center' => array(
 
196
    'title' => 'Center'
 
197
  ),
 
198
  'right' => array(
 
199
    'title' => 'Right'
 
200
  ),
 
201
  'fore_color' => array(
 
202
    'title' => 'Fore color'
 
203
  ),
 
204
  'bg_color' => array(
 
205
    'title' => 'Background color'
 
206
  ),
 
207
  'design_tab' => array(
 
208
    'title' => 'Switch to WYSIWYG (design) mode'
 
209
  ),
 
210
  'html_tab' => array(
 
211
    'title' => 'Switch to HTML (code) mode'
 
212
  ),
 
213
  'colorpicker' => array(
 
214
    'title' => 'Color picker',
 
215
    'ok' => '   OK   ',
 
216
    'cancel' => 'Cancel',
 
217
  ),
 
218
  'cleanup' => array(
 
219
    'title' => 'HTML cleanup (remove styles)',
 
220
    'confirm' => 'Performing this action will remove all styles, fonts and useless tags from the current content. Some or all your formatting may be lost.',
 
221
    'ok' => '   OK   ',
 
222
    'cancel' => 'Cancel',
 
223
  ),
 
224
  'toggle_borders' => array(
 
225
    'title' => 'Toggle borders',
 
226
  ),
 
227
  'hyperlink' => array(
 
228
    'title' => 'Hyperlink',
 
229
    'url' => 'URL',
 
230
    'name' => 'Name',
 
231
    'target' => 'Target',
 
232
    'title_attr' => 'Title',
 
233
        'a_type' => 'Type', // <=== new 1.0.6
 
234
        'type_link' => 'Link', // <=== new 1.0.6
 
235
        'type_anchor' => 'Anchor', // <=== new 1.0.6
 
236
        'type_link2anchor' => 'Link to anchor', // <=== new 1.0.6
 
237
        'anchors' => 'Anchors', // <=== new 1.0.6
 
238
    'ok' => '   OK   ',
 
239
    'cancel' => 'Cancel',
 
240
  ),
 
241
  'hyperlink_targets' => array( // <=== new 1.0.5
 
242
        '_self' => 'same frame (_self)',
 
243
        '_blank' => 'new empty window (_blank)',
 
244
        '_top' => 'top frame (_top)',
 
245
        '_parent' => 'parent frame (_parent)'
 
246
  ),
 
247
  'table_row_prop' => array(
 
248
    'title' => 'Row properties',
 
249
    'horizontal_align' => 'Horizontal align',
 
250
    'vertical_align' => 'Vertical align',
 
251
    'css_class' => 'CSS class',
 
252
    'no_wrap' => 'No wrap',
 
253
    'bg_color' => 'Background color',
 
254
    'ok' => '   OK   ',
 
255
    'cancel' => 'Cancel',
 
256
    'left' => 'Left',
 
257
    'center' => 'Center',
 
258
    'right' => 'Right',
 
259
    'top' => 'Top',
 
260
    'middle' => 'Middle',
 
261
    'bottom' => 'Bottom',
 
262
    'baseline' => 'Baseline',
 
263
  ),
 
264
  'symbols' => array(
 
265
    'title' => 'Special characters',
 
266
    'ok' => '   OK   ',
 
267
    'cancel' => 'Cancel',
 
268
  ),
 
269
  'templates' => array(
 
270
    'title' => 'Templates',
 
271
  ),
 
272
  'page_prop' => array(
 
273
    'title' => 'Page properties',
 
274
    'title_tag' => 'Title',
 
275
    'charset' => 'Charset',
 
276
    'background' => 'Background image',
 
277
    'bgcolor' => 'Background color',
 
278
    'text' => 'Text color',
 
279
    'link' => 'Link color',
 
280
    'vlink' => 'Visited link color',
 
281
    'alink' => 'Active link color',
 
282
    'leftmargin' => 'Left margin',
 
283
    'topmargin' => 'Top margin',
 
284
    'css_class' => 'CSS class',
 
285
    'ok' => '   OK   ',
 
286
    'cancel' => 'Cancel',
 
287
  ),
 
288
  'preview' => array(
 
289
    'title' => 'Preview',
 
290
  ),
 
291
  'image_popup' => array(
 
292
    'title' => 'Image popup',
 
293
  ),
 
294
  'zoom' => array(
 
295
    'title' => 'Zoom',
 
296
  ),
 
297
  'subscript' => array( // <=== new 1.0.7
 
298
    'title' => 'Subscript',
 
299
  ),
 
300
  'superscript' => array( // <=== new 1.0.7
 
301
    'title' => 'Superscript',
 
302
  ),
 
303
);
 
304
?>
 
 
b'\\ No newline at end of file'