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
|
<?php // ================================================ // SPAW File Manager plugin // ================================================ // English language file // ================================================ // Developed: Saulius Okunevicius, saulius@solmetra.com // Copyright: Solmetra (c)2006 All rights reserved. // ------------------------------------------------ // www.solmetra.com // ================================================ // v.1.0, 2006-11-20 // ================================================
// charset to be used in dialogs $spaw_lang_charset = 'iso-8859-1';
// language text data array // first dimension - block, second - exact phrase // alternative text for toolbar buttons and title for dropdowns - 'title'
$spaw_lang_data = array( 'spawfm' => array( 'title' => 'SPAW File Manager', 'error_reading_dir' => 'Error: cannot read directory contents.', 'error_upload_forbidden' => 'Error: file upload is not allowed in this directory.', 'error_upload_file_too_big' => 'Upload failed: file too big.', 'error_upload_failed' => 'File upload failed.', 'error_upload_file_incomplete' => 'Uploaded file is incomplete, try again.', 'error_bad_filetype' => 'Error: files of this type are not allowed.', 'error_max_filesize' => 'Max upload file size accepted:', 'error_delete_forbidden' => 'Error: deleting files is not allowed in this directory.', 'confirm_delete' => 'Are you sure you want to delete file "[*file*]"?', 'error_delete_failed' => 'Error: file could not be deleted.', 'error_no_directory_available' => 'No directories available for browsing.', 'download_file' => '[download file]', ), 'buttons' => array( 'ok' => ' OK ', 'cancel' => 'Cancel', 'view_list' => 'View mode: list', 'view_details' => 'View mode: details', 'view_thumbs' => 'View mode: thumbnails', 'rename' => 'Rename', 'delete' => 'Delete', 'go_up' => 'Up', 'upload' => 'Upload', '' => '', ), 'file_details' => array( 'name' => 'Name', 'type' => 'Type', 'size' => 'Size', 'date' => 'Date Modified', 'filetype_suffix' => 'file', 'img_dimensions' => 'Dimensions', '' => '', '' => '', ), 'filetypes' => array( 'any' => 'All files (*.*)', 'images' => 'Image files', 'flash' => 'Flash movies', 'documents' => 'Documents', 'audio' => 'Audio files', 'video' => 'Video files', 'archives' => 'Archive files', '.jpg' => 'JPG image file', '.jpeg' => 'JPG image file', '.gif' => 'GIF image file', '.png' => 'PNG image file', '.swf' => 'Flash movie', '.doc' => 'Microsoft Word document', '.xls' => 'Microsoft Excel document', '.pdf' => 'PDF document', '.rtf' => 'RTF document', '.odt' => 'OpenDocument Text', '.ods' => 'OpenDocument Spreadsheet', '.sxw' => 'OpenOffice.org 1.0 Text Document', '.sxc' => 'OpenOffice.org 1.0 Spreadsheet', '.wav' => 'WAV audio file', '.mp3' => 'MP3 audio file', '.ogg' => 'Ogg Vorbis audio file', '.wma' => 'Windows audio file', '.avi' => 'AVI video file', '.mpg' => 'MPEG video file', '.mpeg' => 'MPEG video file', '.mov' => 'QuickTime video file', '.wmv' => 'Windows video file', '.zip' => 'ZIP archive', '.rar' => 'RAR archive', '.gz' => 'gzip archive', '.txt' => 'Text Document', '' => '', ), ); ?>
|