el_vfs 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +28 -0
- data/app/assets/images/el_vfs/elfinder/arrows-active.png +0 -0
- data/app/assets/images/el_vfs/elfinder/arrows-normal.png +0 -0
- data/app/assets/images/el_vfs/elfinder/dialogs.png +0 -0
- data/app/assets/images/el_vfs/elfinder/icons-big.png +0 -0
- data/app/assets/images/el_vfs/elfinder/icons-small.png +0 -0
- data/app/assets/images/el_vfs/elfinder/logo.png +0 -0
- data/app/assets/images/el_vfs/elfinder/progress.gif +0 -0
- data/app/assets/images/el_vfs/elfinder/quicklook-bg.png +0 -0
- data/app/assets/images/el_vfs/elfinder/quicklook-icons.png +0 -0
- data/app/assets/images/el_vfs/elfinder/resize.png +0 -0
- data/app/assets/images/el_vfs/elfinder/spinner-mini.gif +0 -0
- data/app/assets/images/el_vfs/elfinder/toolbar.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-icons_222222_256x240.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-icons_2e83ff_256x240.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-icons_454545_256x240.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-icons_888888_256x240.png +0 -0
- data/app/assets/images/el_vfs/ui/ui-icons_cd0a0a_256x240.png +0 -0
- data/app/assets/javascripts/el_vfs/elfinder.js +9601 -0
- data/app/assets/javascripts/el_vfs/i18n/elfinder.LANG.js +281 -0
- data/app/assets/javascripts/el_vfs/i18n/elfinder.ar.js +280 -0
- data/app/assets/javascripts/el_vfs/i18n/elfinder.ru.js +280 -0
- data/app/assets/stylesheets/el_vfs/el_vfs.sass +4 -0
- data/app/assets/stylesheets/el_vfs/elfinder.sass +1645 -0
- data/app/assets/stylesheets/el_vfs/jquery_ui.sass +1482 -0
- data/app/assets/stylesheets/el_vfs/reset.sass +3 -0
- data/app/assets/stylesheets/el_vfs/theme.sass +82 -0
- data/app/controllers/el_vfs/el_finder_controller.rb +17 -0
- data/app/helpers/el_vfs/application_helper.rb +4 -0
- data/app/models/el_vfs/directory.rb +30 -0
- data/app/models/el_vfs/entry.rb +91 -0
- data/app/models/el_vfs/file.rb +35 -0
- data/app/models/el_vfs/root.rb +36 -0
- data/app/views/el_vfs/directories/_form.html.erb +17 -0
- data/app/views/el_vfs/directories/edit.html.erb +6 -0
- data/app/views/el_vfs/directories/index.html.erb +21 -0
- data/app/views/el_vfs/directories/new.html.erb +5 -0
- data/app/views/el_vfs/directories/show.html.erb +5 -0
- data/app/views/el_vfs/files/_form.html.erb +17 -0
- data/app/views/el_vfs/files/edit.html.erb +6 -0
- data/app/views/el_vfs/files/index.html.erb +21 -0
- data/app/views/el_vfs/files/new.html.erb +5 -0
- data/app/views/el_vfs/files/show.html.erb +5 -0
- data/app/views/layouts/el_vfs/application.html.erb +14 -0
- data/config/dragonfly.rb +45 -0
- data/config/routes.rb +6 -0
- data/db/migrate/20111111111111_create_el_vfs_entries.rb +19 -0
- data/lib/el_finder_api/el_vfs/command.rb +66 -0
- data/lib/el_finder_api/el_vfs/command/change_working_directory.rb +36 -0
- data/lib/el_finder_api/el_vfs/command/copy_entries.rb +44 -0
- data/lib/el_finder_api/el_vfs/command/create_directory.rb +21 -0
- data/lib/el_finder_api/el_vfs/command/create_file.rb +24 -0
- data/lib/el_finder_api/el_vfs/command/create_thumbnail.rb +3 -0
- data/lib/el_finder_api/el_vfs/command/destroy_entries.rb +24 -0
- data/lib/el_finder_api/el_vfs/command/duplicate_entries.rb +24 -0
- data/lib/el_finder_api/el_vfs/command/get_ancestors.rb +22 -0
- data/lib/el_finder_api/el_vfs/command/get_descendants.rb +19 -0
- data/lib/el_finder_api/el_vfs/command/list_names.rb +14 -0
- data/lib/el_finder_api/el_vfs/command/pack_entries.rb +3 -0
- data/lib/el_finder_api/el_vfs/command/ping.rb +12 -0
- data/lib/el_finder_api/el_vfs/command/read_file_body.rb +17 -0
- data/lib/el_finder_api/el_vfs/command/rename_entry.rb +25 -0
- data/lib/el_finder_api/el_vfs/command/resize_image.rb +3 -0
- data/lib/el_finder_api/el_vfs/command/send_file.rb +15 -0
- data/lib/el_finder_api/el_vfs/command/unknown.rb +14 -0
- data/lib/el_finder_api/el_vfs/command/unpack_entry.rb +3 -0
- data/lib/el_finder_api/el_vfs/command/update_file_body.rb +28 -0
- data/lib/el_finder_api/el_vfs/command/upload_files.rb +22 -0
- data/lib/el_finder_api/el_vfs/connector.rb +22 -0
- data/lib/el_finder_api/el_vfs/model.rb +38 -0
- data/lib/el_vfs.rb +4 -0
- data/lib/el_vfs/engine.rb +28 -0
- data/lib/el_vfs/version.rb +3 -0
- data/lib/tasks/el_vfs_tasks.rake +4 -0
- metadata +290 -0
@@ -0,0 +1,281 @@
|
|
1
|
+
/**
|
2
|
+
* elFinder translation template
|
3
|
+
*
|
4
|
+
* use this file to create new translation
|
5
|
+
**/
|
6
|
+
if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
|
7
|
+
elFinder.prototype.i18.LANG = {
|
8
|
+
translator : 'Translator name <translator@email.tld>',
|
9
|
+
language : 'Language of translation',
|
10
|
+
direction : 'ltr',
|
11
|
+
messages : {
|
12
|
+
|
13
|
+
/********************************** errors **********************************/
|
14
|
+
'error' : 'Error',
|
15
|
+
'errUnknown' : 'Unknown error.',
|
16
|
+
'errUnknownCmd' : 'Unknown command.',
|
17
|
+
'errJqui' : 'Invalid jQuery UI configuration. Selectable, draggable and droppable components must be included.',
|
18
|
+
'errNode' : 'elFinder requires DOM Element to be created.',
|
19
|
+
'errURL' : 'Invalid elFinder configuration! URL option is not set.',
|
20
|
+
'errAccess' : 'Access denied.',
|
21
|
+
'errConnect' : 'Unable to connect to backend.',
|
22
|
+
'errAbort' : 'Connection aborted.',
|
23
|
+
'errTimeout' : 'Connection timeout.',
|
24
|
+
'errNotFound' : 'Backend not found.',
|
25
|
+
'errResponse' : 'Invalid backend response.',
|
26
|
+
'errConf' : 'Invalid backend configuration.',
|
27
|
+
'errJSON' : 'PHP JSON module not installed.',
|
28
|
+
'errNoVolumes' : 'Readable volumes not available.',
|
29
|
+
'errCmdParams' : 'Invalid parameters for command "$1".',
|
30
|
+
'errDataNotJSON' : 'Data is not JSON.',
|
31
|
+
'errDataEmpty' : 'Data is empty.',
|
32
|
+
'errCmdReq' : 'Backend request requires command name.',
|
33
|
+
'errOpen' : 'Unable to open "$1".',
|
34
|
+
'errNotFolder' : 'Object is not a folder.',
|
35
|
+
'errNotFile' : 'Object is not a file.',
|
36
|
+
'errRead' : 'Unable to read "$1".',
|
37
|
+
'errWrite' : 'Unable to write into "$1".',
|
38
|
+
'errPerm' : 'Permission denied.',
|
39
|
+
'errLocked' : '"$1" is locked and can not be renamed, moved or removed.',
|
40
|
+
'errExists' : 'File named "$1" already exists.',
|
41
|
+
'errInvName' : 'Invalid file name.',
|
42
|
+
'errFolderNotFound' : 'Folder not found.',
|
43
|
+
'errFileNotFound' : 'File not found.',
|
44
|
+
'errTrgFolderNotFound' : 'Target folder "$1" not found.',
|
45
|
+
'errPopup' : 'Browser prevented opening popup window. To open file enable it in browser options.',
|
46
|
+
'errMkdir' : 'Unable to create folder "$1".',
|
47
|
+
'errMkfile' : 'Unable to create file "$1".',
|
48
|
+
'errRename' : 'Unable to rename "$1".',
|
49
|
+
'errCopyFrom' : 'Copying files from volume "$1" not allowed.',
|
50
|
+
'errCopyTo' : 'Copying files to volume "$1" not allowed.',
|
51
|
+
'errUploadCommon' : 'Upload error.',
|
52
|
+
'errUpload' : 'Unable to upload "$1".',
|
53
|
+
'errUploadNoFiles' : 'No files found for upload.',
|
54
|
+
'errMaxSize' : 'Data exceeds the maximum allowed size.',
|
55
|
+
'errFileMaxSize' : 'File exceeds maximum allowed size.',
|
56
|
+
'errUploadMime' : 'File type not allowed.',
|
57
|
+
'errUploadTransfer' : '"$1" transfer error.',
|
58
|
+
'errSave' : 'Unable to save "$1".',
|
59
|
+
'errCopy' : 'Unable to copy "$1".',
|
60
|
+
'errMove' : 'Unable to move "$1".',
|
61
|
+
'errCopyInItself' : 'Unable to copy "$1" into itself.',
|
62
|
+
'errRm' : 'Unable to remove "$1".',
|
63
|
+
'errExtract' : 'Unable to extract files from "$1".',
|
64
|
+
'errArchive' : 'Unable to create archive.',
|
65
|
+
'errArcType' : 'Unsupported archive type.',
|
66
|
+
'errNoArchive' : 'File is not archive or has unsupported archive type.',
|
67
|
+
'errCmdNoSupport' : 'Backend does not support this command.',
|
68
|
+
|
69
|
+
/******************************* commands names ********************************/
|
70
|
+
'cmdarchive' : 'Create archive',
|
71
|
+
'cmdback' : 'Back',
|
72
|
+
'cmdcopy' : 'Copy',
|
73
|
+
'cmdcut' : 'Cut',
|
74
|
+
'cmddownload' : 'Download',
|
75
|
+
'cmdduplicate' : 'Duplicate',
|
76
|
+
'cmdedit' : 'Edit file',
|
77
|
+
'cmdextract' : 'Extract files from archive',
|
78
|
+
'cmdforward' : 'Forward',
|
79
|
+
'cmdgetfile' : 'Select files',
|
80
|
+
'cmdhelp' : 'About this software',
|
81
|
+
'cmdhome' : 'Home',
|
82
|
+
'cmdinfo' : 'Get info',
|
83
|
+
'cmdmkdir' : 'New folder',
|
84
|
+
'cmdmkfile' : 'New text file',
|
85
|
+
'cmdopen' : 'Open',
|
86
|
+
'cmdpaste' : 'Paste',
|
87
|
+
'cmdquicklook' : 'Preview',
|
88
|
+
'cmdreload' : 'Reload',
|
89
|
+
'cmdrename' : 'Rename',
|
90
|
+
'cmdrm' : 'Delete',
|
91
|
+
'cmdsearch' : 'Find files',
|
92
|
+
'cmdup' : 'Go to parent directory',
|
93
|
+
'cmdupload' : 'Upload files',
|
94
|
+
'cmdview' : 'View',
|
95
|
+
|
96
|
+
/*********************************** buttons ***********************************/
|
97
|
+
'btnClose' : 'Close',
|
98
|
+
'btnSave' : 'Save',
|
99
|
+
'btnRm' : 'Remove',
|
100
|
+
'btnCancel' : 'Cancel',
|
101
|
+
'btnNo' : 'No',
|
102
|
+
'btnYes' : 'Yes',
|
103
|
+
|
104
|
+
/******************************** notifications ********************************/
|
105
|
+
'ntfopen' : 'Open folder',
|
106
|
+
'ntffile' : 'Open file',
|
107
|
+
'ntfreload' : 'Reload folder content',
|
108
|
+
'ntfmkdir' : 'Creating directory',
|
109
|
+
'ntfmkfile' : 'Creating files',
|
110
|
+
'ntfrm' : 'Delete files',
|
111
|
+
'ntfcopy' : 'Copy files',
|
112
|
+
'ntfmove' : 'Move files',
|
113
|
+
'ntfprepare' : 'Prepare to copy files',
|
114
|
+
'ntfrename' : 'Rename files',
|
115
|
+
'ntfupload' : 'Uploading files',
|
116
|
+
'ntfdownload' : 'Downloading files',
|
117
|
+
'ntfsave' : 'Save files',
|
118
|
+
'ntfarchive' : 'Creating archive',
|
119
|
+
'ntfextract' : 'Extracting files from archive',
|
120
|
+
'ntfsearch' : 'Searching files',
|
121
|
+
'ntfsmth' : 'Doing something >_<',
|
122
|
+
|
123
|
+
/************************************ dates **********************************/
|
124
|
+
'dateUnknown' : 'unknown',
|
125
|
+
'Today' : 'Today',
|
126
|
+
'Yesterday' : 'Yesterday',
|
127
|
+
'Jan' : 'Jan',
|
128
|
+
'Feb' : 'Feb',
|
129
|
+
'Mar' : 'Mar',
|
130
|
+
'Apr' : 'Apr',
|
131
|
+
'May' : 'May',
|
132
|
+
'Jun' : 'Jun',
|
133
|
+
'Jul' : 'Jul',
|
134
|
+
'Aug' : 'Aug',
|
135
|
+
'Sep' : 'Sep',
|
136
|
+
'Oct' : 'Oct',
|
137
|
+
'Nov' : 'Nov',
|
138
|
+
'Dec' : 'Dec',
|
139
|
+
|
140
|
+
/********************************** messages **********************************/
|
141
|
+
'confirmReq' : 'Confirmation required',
|
142
|
+
'confirmRm' : 'Are you sure you want to remove files?<br/>This cannot be undone!',
|
143
|
+
'confirmRepl' : 'Replace old file with new one?',
|
144
|
+
'apllyAll' : 'Apply to all',
|
145
|
+
'name' : 'Name',
|
146
|
+
'size' : 'Size',
|
147
|
+
'perms' : 'Permissions',
|
148
|
+
'modify' : 'Modified',
|
149
|
+
'kind' : 'Kind',
|
150
|
+
'read' : 'read',
|
151
|
+
'write' : 'write',
|
152
|
+
'noaccess' : 'no access',
|
153
|
+
'and' : 'and',
|
154
|
+
'unknown' : 'unknown',
|
155
|
+
'selectall' : 'Select all files',
|
156
|
+
'selectfiles' : 'Select file(s)',
|
157
|
+
'selectffile' : 'Select first file',
|
158
|
+
'selectlfile' : 'Select last file',
|
159
|
+
'viewlist' : 'List view',
|
160
|
+
'viewicons' : 'Icons view',
|
161
|
+
'places' : 'Places',
|
162
|
+
'calc' : 'Calculate',
|
163
|
+
'path' : 'Path',
|
164
|
+
'aliasfor' : 'Alias for',
|
165
|
+
'locked' : 'Locked',
|
166
|
+
'dim' : 'Dimensions',
|
167
|
+
'files' : 'Files',
|
168
|
+
'folders' : 'Folders',
|
169
|
+
'items' : 'Items',
|
170
|
+
'yes' : 'yes',
|
171
|
+
'no' : 'no',
|
172
|
+
'link' : 'Link',
|
173
|
+
'searcresult' : 'Search results',
|
174
|
+
'selected' : 'selected items',
|
175
|
+
'about' : 'About',
|
176
|
+
'shortcuts' : 'Shortcuts',
|
177
|
+
'help' : 'Help',
|
178
|
+
'webfm' : 'Web file manager',
|
179
|
+
'ver' : 'Version',
|
180
|
+
'protocol' : 'protocol version',
|
181
|
+
'homepage' : 'Project home',
|
182
|
+
'docs' : 'Documentation',
|
183
|
+
'github' : 'Fork us on Github',
|
184
|
+
'twitter' : 'Follow us on twitter',
|
185
|
+
'facebook' : 'Join us on facebook',
|
186
|
+
'team' : 'Team',
|
187
|
+
'chiefdev' : 'chief developer',
|
188
|
+
'developer' : 'developer',
|
189
|
+
'contributor' : 'contributor',
|
190
|
+
'maintainer' : 'maintainer',
|
191
|
+
'translator' : 'translator',
|
192
|
+
'icons' : 'Icons',
|
193
|
+
'dontforget' : 'and don\'t forget to take your towel',
|
194
|
+
'shortcutsof' : 'Shortcuts disabled',
|
195
|
+
'dropFiles' : 'Drop files here',
|
196
|
+
'or' : 'or',
|
197
|
+
'selectForUpload' : 'Select files to upload',
|
198
|
+
'moveFiles' : 'Move files',
|
199
|
+
'copyFiles' : 'Copy files',
|
200
|
+
|
201
|
+
/********************************** mimetypes **********************************/
|
202
|
+
'kindUnknown' : 'Unknown',
|
203
|
+
'kindFolder' : 'Folder',
|
204
|
+
'kindAlias' : 'Alias',
|
205
|
+
'kindAliasBroken' : 'Broken alias',
|
206
|
+
// applications
|
207
|
+
'kindApp' : 'Application',
|
208
|
+
'kindPostscript' : 'Postscript document',
|
209
|
+
'kindMsOffice' : 'Microsoft Office document',
|
210
|
+
'kindMsWord' : 'Microsoft Word document',
|
211
|
+
'kindMsExcel' : 'Microsoft Excel document',
|
212
|
+
'kindMsPP' : 'Microsoft Powerpoint presentation',
|
213
|
+
'kindOO' : 'Open Office document',
|
214
|
+
'kindAppFlash' : 'Flash application',
|
215
|
+
'kindPDF' : 'Portable Document Format (PDF)',
|
216
|
+
'kindTorrent' : 'Bittorrent file',
|
217
|
+
'kind7z' : '7z archive',
|
218
|
+
'kindTAR' : 'TAR archive',
|
219
|
+
'kindGZIP' : 'GZIP archive',
|
220
|
+
'kindBZIP' : 'BZIP archive',
|
221
|
+
'kindZIP' : 'ZIP archive',
|
222
|
+
'kindRAR' : 'RAR archive',
|
223
|
+
'kindJAR' : 'Java JAR file',
|
224
|
+
'kindTTF' : 'True Type font',
|
225
|
+
'kindOTF' : 'Open Type font',
|
226
|
+
'kindRPM' : 'RPM package',
|
227
|
+
// texts
|
228
|
+
'kindText' : 'Text document',
|
229
|
+
'kindTextPlain' : 'Plain text',
|
230
|
+
'kindPHP' : 'PHP source',
|
231
|
+
'kindCSS' : 'Cascading style sheet',
|
232
|
+
'kindHTML' : 'HTML document',
|
233
|
+
'kindJS' : 'Javascript source',
|
234
|
+
'kindRTF' : 'Rich Text Format',
|
235
|
+
'kindC' : 'C source',
|
236
|
+
'kindCHeader' : 'C header source',
|
237
|
+
'kindCPP' : 'C++ source',
|
238
|
+
'kindCPPHeader' : 'C++ header source',
|
239
|
+
'kindShell' : 'Unix shell script',
|
240
|
+
'kindPython' : 'Python source',
|
241
|
+
'kindJava' : 'Java source',
|
242
|
+
'kindRuby' : 'Ruby source',
|
243
|
+
'kindPerl' : 'Perl script',
|
244
|
+
'kindSQL' : 'SQL source',
|
245
|
+
'kindXML' : 'XML document',
|
246
|
+
'kindAWK' : 'AWK source',
|
247
|
+
'kindCSV' : 'Comma separated values',
|
248
|
+
'kindDOCBOOK' : 'Docbook XML document',
|
249
|
+
// images
|
250
|
+
'kindImage' : 'Image',
|
251
|
+
'kindBMP' : 'BMP image',
|
252
|
+
'kindJPEG' : 'JPEG image',
|
253
|
+
'kindGIF' : 'GIF Image',
|
254
|
+
'kindPNG' : 'PNG Image',
|
255
|
+
'kindTIFF' : 'TIFF image',
|
256
|
+
'kindTGA' : 'TGA image',
|
257
|
+
'kindPSD' : 'Adobe Photoshop image',
|
258
|
+
'kindXBITMAP' : 'X bitmap image',
|
259
|
+
'kindPXM' : 'Pixelmator image',
|
260
|
+
// media
|
261
|
+
'kindAudio' : 'Audio media',
|
262
|
+
'kindAudioMPEG' : 'MPEG audio',
|
263
|
+
'kindAudioMPEG4' : 'MPEG-4 audio',
|
264
|
+
'kindAudioMIDI' : 'MIDI audio',
|
265
|
+
'kindAudioOGG' : 'Ogg Vorbis audio',
|
266
|
+
'kindAudioWAV' : 'WAV audio',
|
267
|
+
'AudioPlaylist' : 'MP3 playlist',
|
268
|
+
'kindVideo' : 'Video media',
|
269
|
+
'kindVideoDV' : 'DV movie',
|
270
|
+
'kindVideoMPEG' : 'MPEG movie',
|
271
|
+
'kindVideoMPEG4' : 'MPEG-4 movie',
|
272
|
+
'kindVideoAVI' : 'AVI movie',
|
273
|
+
'kindVideoMOV' : 'Quick Time movie',
|
274
|
+
'kindVideoWM' : 'Windows Media movie',
|
275
|
+
'kindVideoFlash' : 'Flash movie',
|
276
|
+
'kindVideoMKV' : 'Matroska movie',
|
277
|
+
'kindVideoOGG' : 'Ogg movie'
|
278
|
+
}
|
279
|
+
}
|
280
|
+
}
|
281
|
+
|
@@ -0,0 +1,280 @@
|
|
1
|
+
"use strict"
|
2
|
+
if (elFinder && elFinder.prototype && typeof(elFinder.prototype.i18) == 'object') {
|
3
|
+
elFinder.prototype.i18.ar = {
|
4
|
+
translator : 'Tawfek Daghistani <tawfekov@gmail.com>',
|
5
|
+
language : 'Arabic', /** Syrian Localization , it may differ if you aren't from Syria or any Country in Middle East**/
|
6
|
+
direction : 'rtl',
|
7
|
+
messages : {
|
8
|
+
|
9
|
+
/********************************** errors **********************************/
|
10
|
+
'error' : 'خطأ',
|
11
|
+
'errUnknown' : 'خطأ غير معروف .',
|
12
|
+
'errUnknownCmd' : 'أمر غير معروف .',
|
13
|
+
'errJqui' : 'إعدادات jQuery UI غير كاملة الرجاء التأكد من وجود كل من selectable, draggable and droppable',
|
14
|
+
'errNode' : '. موجود DOM إلى عنصر elFinder تحتاج ',
|
15
|
+
'errURL' : 'إعدادات خاطئة , عليك وضع الرابط ضمن الإعدادات',
|
16
|
+
'errAccess' : 'وصول مرفوض .',
|
17
|
+
'errConnect' : 'غير قادر على الاتصال بالخادم الخلفي (backend)',
|
18
|
+
'errAbort' : 'تم فصل الإتصال',
|
19
|
+
'errTimeout' : 'مهلة الإتصال قد إنتهت .',
|
20
|
+
'errNotFound' : 'الخادم الخلفي غير موجود .',
|
21
|
+
'errResponse' : 'رد غير مقبول من الخادم الخلفي',
|
22
|
+
'errConf' : 'خطأ في الإعدادات الخاصة بالخادم الخلفي ',
|
23
|
+
'errJSON' : 'الميزة PHP JSON module غير موجودة ',
|
24
|
+
'errNoVolumes' : 'لا يمكن القراءة من أي من الوسائط الموجودة ',
|
25
|
+
'errCmdParams' : 'البيانات المرسلة للأمر غير مقبولة "$1".',
|
26
|
+
'errDataNotJSON' : 'المعلومات المرسلة ليست من نوع JSON ',
|
27
|
+
'errDataEmpty' : 'لا يوجد معلومات مرسلة',
|
28
|
+
'errCmdReq' : 'الخادم الخلفي يطلب وجود اسم الأمر ',
|
29
|
+
'errOpen' : 'غير قادر على فتح "$1".',
|
30
|
+
'errNotFolder' : 'العنصر المختار ليس مجلد',
|
31
|
+
'errNotFile' : 'العنصر المختار ليس ملف',
|
32
|
+
'errRead' : 'غير قادر على القراءة "$1".',
|
33
|
+
'errWrite' : 'غير قادر على الكتابة "$1".',
|
34
|
+
'errPerm' : 'وصول مرفوض ',
|
35
|
+
'errLocked' : ' محمي و لا يمكن التعديل أو النقل أو إعادة التسمية"$1"',
|
36
|
+
'errExists' : ' موجود مسبقاً "$1"',
|
37
|
+
'errInvName' : 'الاسم مرفوض',
|
38
|
+
'errFolderNotFound' : 'المجلد غير موجود',
|
39
|
+
'errFileNotFound' : 'الملف غير موجود',
|
40
|
+
'errTrgFolderNotFound' : 'الملف الهدف "$1" غير موجود ',
|
41
|
+
'errPopup' : 'يمنعني المتصفح من إنشاء نافذة منبثقة , الرجاء تعديل الخيارات الخاصة من إعدادات المتصفح ',
|
42
|
+
'errMkdir' : ' غير قادر على إنشاء مجلد جديد "$1".',
|
43
|
+
'errMkfile' : ' غير قادر على إنشاء ملف جديد"$1".',
|
44
|
+
'errRename' : 'غير قادر على إعادة تسمية ال "$1".',
|
45
|
+
'errCopyFrom' : 'نسخ الملفات من الوسط المحدد "$1"غير مسموح.',
|
46
|
+
'errCopyTo' : 'نسخ الملفات إلى الوسط المحدد "$1" غير مسموح .',
|
47
|
+
'errUploadCommon' : 'خطأ أثناء عملية الرفع',
|
48
|
+
'errUpload' : 'غير قادر على رفع "$1".',
|
49
|
+
'errUploadNoFiles' : 'لم يتم رفع أي ملف ',
|
50
|
+
'errMaxSize' : 'حجم البيانات أكبر من الحجم المسموح به ',
|
51
|
+
'errFileMaxSize' : 'حجم الملف أكبر من الحجم المسموح به',
|
52
|
+
'errUploadMime' : 'نوع ملف غير مسموح ',
|
53
|
+
'errUploadTransfer' : '"$1" خطأ أثناء عملية النقل',
|
54
|
+
'errSave' : 'غير قادر على الحفظ في "$1".',
|
55
|
+
'errCopy' : 'غير قادر على النسخ إلى"$1".',
|
56
|
+
'errMove' : 'غير قادر على القص إلى "$1".',
|
57
|
+
'errCopyInItself' : 'غير قادر على نسخ الملف "$1" ضمن الملف نفسه.',
|
58
|
+
'errRm' : 'غير قادر على الحذف "$1".',
|
59
|
+
'errExtract' : 'غير قادر على استخراج الملفات من "$1".',
|
60
|
+
'errArchive' : 'غير قادر على إنشاء ملف مضغوط',
|
61
|
+
'errArcType' : 'نوع الملف المضغوط غير مدعومة',
|
62
|
+
'errNoArchive' : 'هذا الملف ليس ملف مضغوط أو ذو صسغة غير مدعومة ',
|
63
|
+
'errCmdNoSupport' : 'الخادم الخلفي لا يدعم هذا الأمر ',
|
64
|
+
|
65
|
+
/******************************* commands names ********************************/
|
66
|
+
'cmdarchive' : 'أنشئ مجلد مضغوط',
|
67
|
+
'cmdback' : 'الخلف',
|
68
|
+
'cmdcopy' : 'نسخ',
|
69
|
+
'cmdcut' : 'قص',
|
70
|
+
'cmddownload' : 'تحميل',
|
71
|
+
'cmdduplicate' : 'تكرار',
|
72
|
+
'cmdedit' : 'تعديل الملف',
|
73
|
+
'cmdextract' : 'استخراج الملفات',
|
74
|
+
'cmdforward' : 'الأمام',
|
75
|
+
'cmdgetfile' : 'أختيار الملفات',
|
76
|
+
'cmdhelp' : 'عن هذا المشروع',
|
77
|
+
'cmdhome' : 'المجلد الرئيسي',
|
78
|
+
'cmdinfo' : 'معلومات ',
|
79
|
+
'cmdmkdir' : 'مجلد جديد',
|
80
|
+
'cmdmkfile' : 'ملف نصي جديد',
|
81
|
+
'cmdopen' : 'فتح',
|
82
|
+
'cmdpaste' : 'لصق',
|
83
|
+
'cmdquicklook' : 'معاينة',
|
84
|
+
'cmdreload' : 'إعادة تحميل',
|
85
|
+
'cmdrename' : 'إعادة تسمية',
|
86
|
+
'cmdrm' : 'حذف',
|
87
|
+
'cmdsearch' : 'بحث عن ملفات',
|
88
|
+
'cmdup' : 'تغيير المسار إلى مستوى أعلى',
|
89
|
+
'cmdupload' : 'رفع ملفات',
|
90
|
+
'cmdview' : 'عرض',
|
91
|
+
|
92
|
+
/*********************************** buttons ***********************************/
|
93
|
+
'btnClose' : 'إغلاق',
|
94
|
+
'btnSave' : 'حفظ',
|
95
|
+
'btnRm' : 'إزالة',
|
96
|
+
'btnCancel' : 'إلغاء',
|
97
|
+
'btnNo' : 'لا',
|
98
|
+
'btnYes' : 'نعم',
|
99
|
+
|
100
|
+
/******************************** notifications ********************************/
|
101
|
+
'ntfopen' : 'فتح مجلد',
|
102
|
+
'ntffile' : 'فتح ملف',
|
103
|
+
'ntfreload' : 'إعادة عرض محتويات المجلد ',
|
104
|
+
'ntfmkdir' : 'ينشئ المجلدات',
|
105
|
+
'ntfmkfile' : 'ينشئ الملفات',
|
106
|
+
'ntfrm' : 'حذف الملفات',
|
107
|
+
'ntfcopy' : 'نسخ الملفات',
|
108
|
+
'ntfmove' : 'نقل الملفات',
|
109
|
+
'ntfprepare' : 'تحضير لنسخ الملفات',
|
110
|
+
'ntfrename' : 'إعادة تسمية الملفات',
|
111
|
+
'ntfupload' : 'رفع الملفات',
|
112
|
+
'ntfdownload' : 'تحميل الملفات',
|
113
|
+
'ntfsave' : 'حفظ الملفات',
|
114
|
+
'ntfarchive' : 'ينشئ ملف مضغوط',
|
115
|
+
'ntfextract' : 'استخراج ملفات من الملف المضغوط ',
|
116
|
+
'ntfsearch' : 'يبحث عن ملفات',
|
117
|
+
'ntfsmth' : 'يحضر لشيء ما >_<',
|
118
|
+
|
119
|
+
/************************************ dates **********************************/
|
120
|
+
'dateUnknown' : 'غير معلوم',
|
121
|
+
'Today' : 'اليوم',
|
122
|
+
'Yesterday' : 'البارحة',
|
123
|
+
'Jan' : 'كانون الثاني',
|
124
|
+
'Feb' : 'شباط',
|
125
|
+
'Mar' : 'آذار',
|
126
|
+
'Apr' : 'نيسان',
|
127
|
+
'May' : 'أيار',
|
128
|
+
'Jun' : 'حزيران',
|
129
|
+
'Jul' : 'تموز',
|
130
|
+
'Aug' : 'آب',
|
131
|
+
'Sep' : 'أيلول',
|
132
|
+
'Oct' : 'تشرين الأول',
|
133
|
+
'Nov' : 'تشرين الثاني',
|
134
|
+
'Dec' : 'كانون الأول ',
|
135
|
+
|
136
|
+
/********************************** messages **********************************/
|
137
|
+
'confirmReq' : 'يرجى التأكيد',
|
138
|
+
'confirmRm' : 'هل انت متأكد من انك تريد الحذف<br/>لا يمكن التراجع عن هذه العملية ',
|
139
|
+
'confirmRepl' : 'استبدال الملف القديم بملف جديد ؟',
|
140
|
+
'apllyAll' : 'تطبيق على الكل',
|
141
|
+
'name' : 'الأسم',
|
142
|
+
'size' : 'الحجم',
|
143
|
+
'perms' : 'الصلاحيات',
|
144
|
+
'modify' : 'أخر تعديل',
|
145
|
+
'kind' : 'نوع الملف',
|
146
|
+
'read' : 'قراءة',
|
147
|
+
'write' : 'كتابة',
|
148
|
+
'noaccess' : 'وصول ممنوع',
|
149
|
+
'and' : 'و',
|
150
|
+
'unknown' : 'غير معروف',
|
151
|
+
'selectall' : 'تحديد كل الملفات',
|
152
|
+
'selectfiles' : 'تحديد ملفات',
|
153
|
+
'selectffile' : 'تحديد الملف الاول',
|
154
|
+
'selectlfile' : 'تحديد الملف الأخير',
|
155
|
+
'viewlist' : 'اعرض ك قائمة',
|
156
|
+
'viewicons' : 'اعرض ك ايقونات',
|
157
|
+
'places' : 'المواقع',
|
158
|
+
'calc' : 'حساب',
|
159
|
+
'path' : 'مسار',
|
160
|
+
'aliasfor' : 'Alias for',
|
161
|
+
'locked' : 'مقفول',
|
162
|
+
'dim' : 'الابعاد',
|
163
|
+
'files' : 'ملفات',
|
164
|
+
'folders' : 'مجلدات',
|
165
|
+
'items' : 'عناصر',
|
166
|
+
'yes' : 'نعم',
|
167
|
+
'no' : 'لا',
|
168
|
+
'link' : 'اربتاط',
|
169
|
+
'searcresult' : 'نتائج البحث',
|
170
|
+
'selected' : 'العناصر المحددة',
|
171
|
+
'about' : 'عن البرنامج',
|
172
|
+
'shortcuts' : 'الاختصارات',
|
173
|
+
'help' : 'مساعدة',
|
174
|
+
'webfm' : 'مدير ملفات الويب',
|
175
|
+
'ver' : 'رقم الإصدار',
|
176
|
+
'protocol' : 'اصدار البرتوكول',
|
177
|
+
'homepage' : 'الصفحة الرئيسية',
|
178
|
+
'docs' : 'التعليمات',
|
179
|
+
'github' : 'شاركنا بتطوير المشروع على Github',
|
180
|
+
'twitter' : 'تابعنا على تويتر',
|
181
|
+
'facebook' : 'انضم إلينا على الفيس بوك',
|
182
|
+
'team' : 'الفريق',
|
183
|
+
'chiefdev' : 'رئيس المبرمجين',
|
184
|
+
'developer' : 'مبرمح',
|
185
|
+
'contributor' : 'مبرمح',
|
186
|
+
'maintainer' : 'مشارك',
|
187
|
+
'translator' : 'مترجم',
|
188
|
+
'icons' : 'أيقونات',
|
189
|
+
'dontforget' : 'and don\'t forget to take your towel',
|
190
|
+
'shortcutsof' : 'الاختصارات غير مفعلة',
|
191
|
+
'dropFiles' : 'لصق الملفات هنا',
|
192
|
+
'or' : 'أو',
|
193
|
+
'selectForUpload' : 'اختر الملفات التي تريد رفعها',
|
194
|
+
'moveFiles' : 'قص الملفات',
|
195
|
+
'copyFiles' : 'نسخ الملفات',
|
196
|
+
|
197
|
+
/********************************** mimetypes **********************************/
|
198
|
+
'kindUnknown' : 'غير معروف',
|
199
|
+
'kindFolder' : 'مجلد',
|
200
|
+
'kindAlias' : 'اختصار',
|
201
|
+
'kindAliasBroken' : 'اختصار غير صالح',
|
202
|
+
// applications
|
203
|
+
'kindApp' : 'برنامج',
|
204
|
+
'kindPostscript' : 'Postscript ملف',
|
205
|
+
'kindMsOffice' : 'Microsoft Office ملف',
|
206
|
+
'kindMsWord' : 'Microsoft Word ملف',
|
207
|
+
'kindMsExcel' : 'Microsoft Excel ملف',
|
208
|
+
'kindMsPP' : 'Microsoft Powerpoint عرض تقديمي ',
|
209
|
+
'kindOO' : 'Open Office ملف',
|
210
|
+
'kindAppFlash' : 'تطبيق فلاش',
|
211
|
+
'kindPDF' : 'ملف (PDF)',
|
212
|
+
'kindTorrent' : 'Bittorrent ملف',
|
213
|
+
'kind7z' : '7z ملف',
|
214
|
+
'kindTAR' : 'TAR ملف',
|
215
|
+
'kindGZIP' : 'GZIP ملف',
|
216
|
+
'kindBZIP' : 'BZIP ملف',
|
217
|
+
'kindZIP' : 'ZIP ملف',
|
218
|
+
'kindRAR' : 'RAR ملف',
|
219
|
+
'kindJAR' : 'Java JAR ملف',
|
220
|
+
'kindTTF' : 'True Type خط ',
|
221
|
+
'kindOTF' : 'Open Type خط ',
|
222
|
+
'kindRPM' : 'RPM ملف تنصيب',
|
223
|
+
// texts
|
224
|
+
'kindText' : 'Text ملف',
|
225
|
+
'kindTextPlain' : 'مستند نصي',
|
226
|
+
'kindPHP' : 'PHP ملف نصي برمجي لـ',
|
227
|
+
'kindCSS' : 'Cascading style sheet',
|
228
|
+
'kindHTML' : 'HTML ملف',
|
229
|
+
'kindJS' : 'Javascript ملف نصي برمجي لـ',
|
230
|
+
'kindRTF' : 'Rich Text Format',
|
231
|
+
'kindC' : 'C ملف نصي برمجي لـ',
|
232
|
+
'kindCHeader' : 'C header ملف نصي برمجي لـ',
|
233
|
+
'kindCPP' : 'C++ ملف نصي برمجي لـ',
|
234
|
+
'kindCPPHeader' : 'C++ header ملف نصي برمجي لـ',
|
235
|
+
'kindShell' : 'Unix shell script',
|
236
|
+
'kindPython' : 'Python ملف نصي برمجي لـ',
|
237
|
+
'kindJava' : 'Java ملف نصي برمجي لـ',
|
238
|
+
'kindRuby' : 'Ruby ملف نصي برمجي لـ',
|
239
|
+
'kindPerl' : 'Perl script',
|
240
|
+
'kindSQL' : 'SQL ملف نصي برمجي لـ',
|
241
|
+
'kindXML' : 'XML ملف',
|
242
|
+
'kindAWK' : 'AWK ملف نصي برمجي لـ',
|
243
|
+
'kindCSV' : 'ملف CSV',
|
244
|
+
'kindDOCBOOK' : 'Docbook XML ملف',
|
245
|
+
// images
|
246
|
+
'kindصورة' : 'صورة',
|
247
|
+
'kindBMP' : 'BMP صورة',
|
248
|
+
'kindJPEG' : 'JPEG صورة',
|
249
|
+
'kindGIF' : 'GIF صورة',
|
250
|
+
'kindPNG' : 'PNG صورة',
|
251
|
+
'kindTIFF' : 'TIFF صورة',
|
252
|
+
'kindTGA' : 'TGA صورة',
|
253
|
+
'kindPSD' : 'Adobe Photoshop صورة',
|
254
|
+
'kindXBITMAP' : 'X bitmap صورة',
|
255
|
+
'kindPXM' : 'Pixelmator صورة',
|
256
|
+
// media
|
257
|
+
'kindAudio' : 'ملف صوتي',
|
258
|
+
'kindAudioMPEG' : 'MPEG ملف صوتي',
|
259
|
+
'kindAudioMPEG4' : 'MPEG-4 ملف صوتي',
|
260
|
+
'kindAudioMIDI' : 'MIDI ملف صوتي',
|
261
|
+
'kindAudioOGG' : 'Ogg Vorbis ملف صوتي',
|
262
|
+
'kindAudioWAV' : 'WAV ملف صوتي',
|
263
|
+
'AudioPlaylist' : 'MP3 قائمة تشغيل',
|
264
|
+
'kindVideo' : 'ملف فيديو',
|
265
|
+
'kindVideoDV' : 'DV ملف فيديو',
|
266
|
+
'kindVideoMPEG' : 'MPEG ملف فيديو',
|
267
|
+
'kindVideoMPEG4' : 'MPEG-4 ملف فيديو',
|
268
|
+
'kindVideoAVI' : 'AVI ملف فيديو',
|
269
|
+
'kindVideoMOV' : 'Quick Time ملف فيديو',
|
270
|
+
'kindVideoWM' : 'Windows Media ملف فيديو',
|
271
|
+
'kindVideoFlash' : 'Flash ملف فيديو',
|
272
|
+
'kindVideoMKV' : 'Matroska ملف فيديو',
|
273
|
+
'kindVideoOGG' : 'Ogg ملف فيديو'
|
274
|
+
}
|
275
|
+
}
|
276
|
+
}
|
277
|
+
|
278
|
+
|
279
|
+
|
280
|
+
|