remove ftp
| @ -1,89 +0,0 @@ | ||||
| <?php | ||||
| 	$currentVersion = "3.4a"; | ||||
| 
 | ||||
| 	# maxFileSize
 | ||||
| 	#----------
 | ||||
| 	# Enter here the maximum downnload size in Bytes. Make sure that your php configuration allows the
 | ||||
| 	# same size (e.g. upload_max_filesize = 20M)
 | ||||
| 	#
 | ||||
| 	# Example :
 | ||||
| 	#    $maxFileSize = 2000000;
 | ||||
| 	$maxFileSize = 2000000; | ||||
| 
 | ||||
| 	# downloadDir
 | ||||
| 	#----------
 | ||||
| 	# Enter here the full path to the directory to store temporary files
 | ||||
| 	# The directory must be writable for the apache/php process owner (usualy 'apache' or 'nobody').
 | ||||
| 	# note: do not use the same directory that php uses to store session data (usually /tmp/)
 | ||||
| 	#
 | ||||
| 	# Example (Windows):
 | ||||
| 	#    $downloadDir = "c:\\MySite\phpWebFTP\tmp\\";
 | ||||
| 	# Example (Unix/Linux):
 | ||||
| 	# 	 $downloadDir = "/MySite/phpWebFTP/tmp/";
 | ||||
| 	 | ||||
| 	$downloadDir = "tmp/";  # This is the tmp directory in the phpwebftp directory and should work by default
 | ||||
| 	 | ||||
| 	# resumeDownload
 | ||||
| 	#----------
 | ||||
| 	# Resume download is only supported by PHP version 4.3.0 and higher
 | ||||
| 	#
 | ||||
| 	# Enable resumeDownload:
 | ||||
| 	#    $resumeDownload = true;
 | ||||
| 	# Disable resumeDownload (default value);
 | ||||
| 	#    $resumeDownload = false;
 | ||||
| 	 | ||||
| 	$resumeDownload = false; | ||||
| 
 | ||||
| 	# defaultLanguage
 | ||||
| 	#----------
 | ||||
| 	# Use the defaultLanguage variable to set a static language.
 | ||||
| 	# Please check the includes/language directory for available languages
 | ||||
| 	#
 | ||||
| 	# Example :
 | ||||
| 	#    $defaultLanguage = "english";
 | ||||
| 	# Disable default language (default value);
 | ||||
| 	#    $defaultLanguage = "";
 | ||||
| 	 | ||||
| 	$defaultLanguage = ""; | ||||
| 
 | ||||
| 	# defaultServer
 | ||||
| 	#----------
 | ||||
| 	# Use the defaultServer variable to set a static server rather then having the user type a server.
 | ||||
| 	# This could be usefull for ISP's that use phpWebFTP for their customers and only want to provide access to their own servers.
 | ||||
| 	#
 | ||||
| 	# Example :
 | ||||
| 	#    $defaultServer = "ftp.phpwebftp.tk";
 | ||||
| 	# Disable default server (default value);
 | ||||
| 	#    $defaultServer = "";
 | ||||
| 	 | ||||
| 	$defaultServer = ""; | ||||
| 
 | ||||
| 
 | ||||
| 	# editDefaultServer
 | ||||
| 	#----------
 | ||||
| 	# Use the defaultServer variable to set a static server rather then having the user type a server.
 | ||||
| 	# This could be usefull for ISP's that use phpWebFTP for their customers and only want to provide access to their own servers.
 | ||||
| 	#
 | ||||
| 	# Disable editable default server :
 | ||||
| 	#    $editDefaultServer = false;
 | ||||
| 	# Enable editable default server (default value);
 | ||||
| 	#    $editDefaultServer = true;
 | ||||
| 	 | ||||
| 	$editDefaultServer = true; | ||||
| 
 | ||||
| 
 | ||||
| 	# clearTemp
 | ||||
| 	#----------
 | ||||
| 	# If set on true, WebFTP will empty the temporary download directory after each
 | ||||
| 	# file upload and download. 
 | ||||
| 	#
 | ||||
| 	# If you want to empty the downloadDir
 | ||||
| 	#	$clearTemp = true;
 | ||||
| 	# If you don't want to empty the downloadDir
 | ||||
| 	#   $clearTemp = false (default);
 | ||||
| 	 | ||||
| 	$clearTemp = true;   // delete all files in the temp dir
 | ||||
| 
 | ||||
| 	//That's all there is to configure
 | ||||
| 
 | ||||
| ?>
 | ||||
							
								
								
									
										341
									
								
								FTP/gpl.txt
									
									
									
									
									
								
							
							
						
						| @ -1,341 +0,0 @@ | ||||
| 		    GNU GENERAL PUBLIC LICENSE | ||||
| 		       Version 2, June 1991 | ||||
| 
 | ||||
|  Copyright (C) 1989, 1991 Free Software Foundation, Inc. | ||||
|                        59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | ||||
|  Everyone is permitted to copy and distribute verbatim copies | ||||
|  of this license document, but changing it is not allowed. | ||||
| 
 | ||||
| 			    Preamble | ||||
| 
 | ||||
|   The licenses for most software are designed to take away your | ||||
| freedom to share and change it.  By contrast, the GNU General Public | ||||
| License is intended to guarantee your freedom to share and change free | ||||
| software--to make sure the software is free for all its users.  This | ||||
| General Public License applies to most of the Free Software | ||||
| Foundation's software and to any other program whose authors commit to | ||||
| using it.  (Some other Free Software Foundation software is covered by | ||||
| the GNU Library General Public License instead.)  You can apply it to | ||||
| your programs, too. | ||||
| 
 | ||||
|   When we speak of free software, we are referring to freedom, not | ||||
| price.  Our General Public Licenses are designed to make sure that you | ||||
| have the freedom to distribute copies of free software (and charge for | ||||
| this service if you wish), that you receive source code or can get it | ||||
| if you want it, that you can change the software or use pieces of it | ||||
| in new free programs; and that you know you can do these things. | ||||
| 
 | ||||
|   To protect your rights, we need to make restrictions that forbid | ||||
| anyone to deny you these rights or to ask you to surrender the rights. | ||||
| These restrictions translate to certain responsibilities for you if you | ||||
| distribute copies of the software, or if you modify it. | ||||
| 
 | ||||
|   For example, if you distribute copies of such a program, whether | ||||
| gratis or for a fee, you must give the recipients all the rights that | ||||
| you have.  You must make sure that they, too, receive or can get the | ||||
| source code.  And you must show them these terms so they know their | ||||
| rights. | ||||
| 
 | ||||
|   We protect your rights with two steps: (1) copyright the software, and | ||||
| (2) offer you this license which gives you legal permission to copy, | ||||
| distribute and/or modify the software. | ||||
| 
 | ||||
|   Also, for each author's protection and ours, we want to make certain | ||||
| that everyone understands that there is no warranty for this free | ||||
| software.  If the software is modified by someone else and passed on, we | ||||
| want its recipients to know that what they have is not the original, so | ||||
| that any problems introduced by others will not reflect on the original | ||||
| authors' reputations. | ||||
| 
 | ||||
|   Finally, any free program is threatened constantly by software | ||||
| patents.  We wish to avoid the danger that redistributors of a free | ||||
| program will individually obtain patent licenses, in effect making the | ||||
| program proprietary.  To prevent this, we have made it clear that any | ||||
| patent must be licensed for everyone's free use or not licensed at all. | ||||
| 
 | ||||
|   The precise terms and conditions for copying, distribution and | ||||
| modification follow. | ||||
|  | ||||
| 		    GNU GENERAL PUBLIC LICENSE | ||||
|    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||||
| 
 | ||||
|   0. This License applies to any program or other work which contains | ||||
| a notice placed by the copyright holder saying it may be distributed | ||||
| under the terms of this General Public License.  The "Program", below, | ||||
| refers to any such program or work, and a "work based on the Program" | ||||
| means either the Program or any derivative work under copyright law: | ||||
| that is to say, a work containing the Program or a portion of it, | ||||
| either verbatim or with modifications and/or translated into another | ||||
| language.  (Hereinafter, translation is included without limitation in | ||||
| the term "modification".)  Each licensee is addressed as "you". | ||||
| 
 | ||||
| Activities other than copying, distribution and modification are not | ||||
| covered by this License; they are outside its scope.  The act of | ||||
| running the Program is not restricted, and the output from the Program | ||||
| is covered only if its contents constitute a work based on the | ||||
| Program (independent of having been made by running the Program). | ||||
| Whether that is true depends on what the Program does. | ||||
| 
 | ||||
|   1. You may copy and distribute verbatim copies of the Program's | ||||
| source code as you receive it, in any medium, provided that you | ||||
| conspicuously and appropriately publish on each copy an appropriate | ||||
| copyright notice and disclaimer of warranty; keep intact all the | ||||
| notices that refer to this License and to the absence of any warranty; | ||||
| and give any other recipients of the Program a copy of this License | ||||
| along with the Program. | ||||
| 
 | ||||
| You may charge a fee for the physical act of transferring a copy, and | ||||
| you may at your option offer warranty protection in exchange for a fee. | ||||
| 
 | ||||
|   2. You may modify your copy or copies of the Program or any portion | ||||
| of it, thus forming a work based on the Program, and copy and | ||||
| distribute such modifications or work under the terms of Section 1 | ||||
| above, provided that you also meet all of these conditions: | ||||
| 
 | ||||
|     a) You must cause the modified files to carry prominent notices | ||||
|     stating that you changed the files and the date of any change. | ||||
| 
 | ||||
|     b) You must cause any work that you distribute or publish, that in | ||||
|     whole or in part contains or is derived from the Program or any | ||||
|     part thereof, to be licensed as a whole at no charge to all third | ||||
|     parties under the terms of this License. | ||||
| 
 | ||||
|     c) If the modified program normally reads commands interactively | ||||
|     when run, you must cause it, when started running for such | ||||
|     interactive use in the most ordinary way, to print or display an | ||||
|     announcement including an appropriate copyright notice and a | ||||
|     notice that there is no warranty (or else, saying that you provide | ||||
|     a warranty) and that users may redistribute the program under | ||||
|     these conditions, and telling the user how to view a copy of this | ||||
|     License.  (Exception: if the Program itself is interactive but | ||||
|     does not normally print such an announcement, your work based on | ||||
|     the Program is not required to print an announcement.) | ||||
|  | ||||
| These requirements apply to the modified work as a whole.  If | ||||
| identifiable sections of that work are not derived from the Program, | ||||
| and can be reasonably considered independent and separate works in | ||||
| themselves, then this License, and its terms, do not apply to those | ||||
| sections when you distribute them as separate works.  But when you | ||||
| distribute the same sections as part of a whole which is a work based | ||||
| on the Program, the distribution of the whole must be on the terms of | ||||
| this License, whose permissions for other licensees extend to the | ||||
| entire whole, and thus to each and every part regardless of who wrote it. | ||||
| 
 | ||||
| Thus, it is not the intent of this section to claim rights or contest | ||||
| your rights to work written entirely by you; rather, the intent is to | ||||
| exercise the right to control the distribution of derivative or | ||||
| collective works based on the Program. | ||||
| 
 | ||||
| In addition, mere aggregation of another work not based on the Program | ||||
| with the Program (or with a work based on the Program) on a volume of | ||||
| a storage or distribution medium does not bring the other work under | ||||
| the scope of this License. | ||||
| 
 | ||||
|   3. You may copy and distribute the Program (or a work based on it, | ||||
| under Section 2) in object code or executable form under the terms of | ||||
| Sections 1 and 2 above provided that you also do one of the following: | ||||
| 
 | ||||
|     a) Accompany it with the complete corresponding machine-readable | ||||
|     source code, which must be distributed under the terms of Sections | ||||
|     1 and 2 above on a medium customarily used for software interchange; or, | ||||
| 
 | ||||
|     b) Accompany it with a written offer, valid for at least three | ||||
|     years, to give any third party, for a charge no more than your | ||||
|     cost of physically performing source distribution, a complete | ||||
|     machine-readable copy of the corresponding source code, to be | ||||
|     distributed under the terms of Sections 1 and 2 above on a medium | ||||
|     customarily used for software interchange; or, | ||||
| 
 | ||||
|     c) Accompany it with the information you received as to the offer | ||||
|     to distribute corresponding source code.  (This alternative is | ||||
|     allowed only for noncommercial distribution and only if you | ||||
|     received the program in object code or executable form with such | ||||
|     an offer, in accord with Subsection b above.) | ||||
| 
 | ||||
| The source code for a work means the preferred form of the work for | ||||
| making modifications to it.  For an executable work, complete source | ||||
| code means all the source code for all modules it contains, plus any | ||||
| associated interface definition files, plus the scripts used to | ||||
| control compilation and installation of the executable.  However, as a | ||||
| special exception, the source code distributed need not include | ||||
| anything that is normally distributed (in either source or binary | ||||
| form) with the major components (compiler, kernel, and so on) of the | ||||
| operating system on which the executable runs, unless that component | ||||
| itself accompanies the executable. | ||||
| 
 | ||||
| If distribution of executable or object code is made by offering | ||||
| access to copy from a designated place, then offering equivalent | ||||
| access to copy the source code from the same place counts as | ||||
| distribution of the source code, even though third parties are not | ||||
| compelled to copy the source along with the object code. | ||||
|  | ||||
|   4. You may not copy, modify, sublicense, or distribute the Program | ||||
| except as expressly provided under this License.  Any attempt | ||||
| otherwise to copy, modify, sublicense or distribute the Program is | ||||
| void, and will automatically terminate your rights under this License. | ||||
| However, parties who have received copies, or rights, from you under | ||||
| this License will not have their licenses terminated so long as such | ||||
| parties remain in full compliance. | ||||
| 
 | ||||
|   5. You are not required to accept this License, since you have not | ||||
| signed it.  However, nothing else grants you permission to modify or | ||||
| distribute the Program or its derivative works.  These actions are | ||||
| prohibited by law if you do not accept this License.  Therefore, by | ||||
| modifying or distributing the Program (or any work based on the | ||||
| Program), you indicate your acceptance of this License to do so, and | ||||
| all its terms and conditions for copying, distributing or modifying | ||||
| the Program or works based on it. | ||||
| 
 | ||||
|   6. Each time you redistribute the Program (or any work based on the | ||||
| Program), the recipient automatically receives a license from the | ||||
| original licensor to copy, distribute or modify the Program subject to | ||||
| these terms and conditions.  You may not impose any further | ||||
| restrictions on the recipients' exercise of the rights granted herein. | ||||
| You are not responsible for enforcing compliance by third parties to | ||||
| this License. | ||||
| 
 | ||||
|   7. If, as a consequence of a court judgment or allegation of patent | ||||
| infringement or for any other reason (not limited to patent issues), | ||||
| conditions are imposed on you (whether by court order, agreement or | ||||
| otherwise) that contradict the conditions of this License, they do not | ||||
| excuse you from the conditions of this License.  If you cannot | ||||
| distribute so as to satisfy simultaneously your obligations under this | ||||
| License and any other pertinent obligations, then as a consequence you | ||||
| may not distribute the Program at all.  For example, if a patent | ||||
| license would not permit royalty-free redistribution of the Program by | ||||
| all those who receive copies directly or indirectly through you, then | ||||
| the only way you could satisfy both it and this License would be to | ||||
| refrain entirely from distribution of the Program. | ||||
| 
 | ||||
| If any portion of this section is held invalid or unenforceable under | ||||
| any particular circumstance, the balance of the section is intended to | ||||
| apply and the section as a whole is intended to apply in other | ||||
| circumstances. | ||||
| 
 | ||||
| It is not the purpose of this section to induce you to infringe any | ||||
| patents or other property right claims or to contest validity of any | ||||
| such claims; this section has the sole purpose of protecting the | ||||
| integrity of the free software distribution system, which is | ||||
| implemented by public license practices.  Many people have made | ||||
| generous contributions to the wide range of software distributed | ||||
| through that system in reliance on consistent application of that | ||||
| system; it is up to the author/donor to decide if he or she is willing | ||||
| to distribute software through any other system and a licensee cannot | ||||
| impose that choice. | ||||
| 
 | ||||
| This section is intended to make thoroughly clear what is believed to | ||||
| be a consequence of the rest of this License. | ||||
|  | ||||
|   8. If the distribution and/or use of the Program is restricted in | ||||
| certain countries either by patents or by copyrighted interfaces, the | ||||
| original copyright holder who places the Program under this License | ||||
| may add an explicit geographical distribution limitation excluding | ||||
| those countries, so that distribution is permitted only in or among | ||||
| countries not thus excluded.  In such case, this License incorporates | ||||
| the limitation as if written in the body of this License. | ||||
| 
 | ||||
|   9. The Free Software Foundation may publish revised and/or new versions | ||||
| of the General Public License from time to time.  Such new versions will | ||||
| be similar in spirit to the present version, but may differ in detail to | ||||
| address new problems or concerns. | ||||
| 
 | ||||
| Each version is given a distinguishing version number.  If the Program | ||||
| specifies a version number of this License which applies to it and "any | ||||
| later version", you have the option of following the terms and conditions | ||||
| either of that version or of any later version published by the Free | ||||
| Software Foundation.  If the Program does not specify a version number of | ||||
| this License, you may choose any version ever published by the Free Software | ||||
| Foundation. | ||||
| 
 | ||||
|   10. If you wish to incorporate parts of the Program into other free | ||||
| programs whose distribution conditions are different, write to the author | ||||
| to ask for permission.  For software which is copyrighted by the Free | ||||
| Software Foundation, write to the Free Software Foundation; we sometimes | ||||
| make exceptions for this.  Our decision will be guided by the two goals | ||||
| of preserving the free status of all derivatives of our free software and | ||||
| of promoting the sharing and reuse of software generally. | ||||
| 
 | ||||
| 			    NO WARRANTY | ||||
| 
 | ||||
|   11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY | ||||
| FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN | ||||
| OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES | ||||
| PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED | ||||
| OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||||
| MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS | ||||
| TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE | ||||
| PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, | ||||
| REPAIR OR CORRECTION. | ||||
| 
 | ||||
|   12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING | ||||
| WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR | ||||
| REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, | ||||
| INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING | ||||
| OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED | ||||
| TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY | ||||
| YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER | ||||
| PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE | ||||
| POSSIBILITY OF SUCH DAMAGES. | ||||
| 
 | ||||
| 		     END OF TERMS AND CONDITIONS | ||||
|  | ||||
| 	    How to Apply These Terms to Your New Programs | ||||
| 
 | ||||
|   If you develop a new program, and you want it to be of the greatest | ||||
| possible use to the public, the best way to achieve this is to make it | ||||
| free software which everyone can redistribute and change under these terms. | ||||
| 
 | ||||
|   To do so, attach the following notices to the program.  It is safest | ||||
| to attach them to the start of each source file to most effectively | ||||
| convey the exclusion of warranty; and each file should have at least | ||||
| the "copyright" line and a pointer to where the full notice is found. | ||||
| 
 | ||||
|     <one line to give the program's name and a brief idea of what it does.> | ||||
|     Copyright (C) <year>  <name of author> | ||||
| 
 | ||||
|     This program is free software; you can redistribute it and/or modify | ||||
|     it under the terms of the GNU General Public License as published by | ||||
|     the Free Software Foundation; either version 2 of the License, or | ||||
|     (at your option) any later version. | ||||
| 
 | ||||
|     This program is distributed in the hope that it will be useful, | ||||
|     but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|     GNU General Public License for more details. | ||||
| 
 | ||||
|     You should have received a copy of the GNU General Public License | ||||
|     along with this program; if not, write to the Free Software | ||||
|     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | ||||
| 
 | ||||
| 
 | ||||
| Also add information on how to contact you by electronic and paper mail. | ||||
| 
 | ||||
| If the program is interactive, make it output a short notice like this | ||||
| when it starts in an interactive mode: | ||||
| 
 | ||||
|     Gnomovision version 69, Copyright (C) year name of author | ||||
|     Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. | ||||
|     This is free software, and you are welcome to redistribute it | ||||
|     under certain conditions; type `show c' for details. | ||||
| 
 | ||||
| The hypothetical commands `show w' and `show c' should show the appropriate | ||||
| parts of the General Public License.  Of course, the commands you use may | ||||
| be called something other than `show w' and `show c'; they could even be | ||||
| mouse-clicks or menu items--whatever suits your program. | ||||
| 
 | ||||
| You should also get your employer (if you work as a programmer) or your | ||||
| school, if any, to sign a "copyright disclaimer" for the program, if | ||||
| necessary.  Here is a sample; alter the names: | ||||
| 
 | ||||
|   Yoyodyne, Inc., hereby disclaims all copyright interest in the program | ||||
|   `Gnomovision' (which makes passes at compilers) written by James Hacker. | ||||
| 
 | ||||
|   <signature of Ty Coon>, 1 April 1989 | ||||
|   Ty Coon, President of Vice | ||||
| 
 | ||||
| This General Public License does not permit incorporating your program into | ||||
| proprietary programs.  If your program is a subroutine library, you may | ||||
| consider it more useful to permit linking proprietary applications with the | ||||
| library.  If this is what you want to do, use the GNU Library General | ||||
| Public License instead of this License. | ||||
| 
 | ||||
							
								
								
									
										
											BIN
										
									
								
								FTP/img/1px.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 42 B | 
| @ -1,34 +0,0 @@ | ||||
| /1px.gif/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /Thumbs.db/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /createdir.gif/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /doc.gif/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /exe.gif/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /file.gif/1.1/Tue Feb 14 21:25:48 2006/-kb/ | ||||
| /flash.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /folder.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /gotodir.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /html.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /index.html/1.1/Tue Feb 14 21:25:49 2006// | ||||
| /js.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /leftback.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /link.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /listheaddiv.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /listheader.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /login.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /logoff.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /menu_delete.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /menu_edit.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /menu_rename.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /menu_settings.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /menuhead.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /mode.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /mov.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /parent.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /pdf.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /php.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /pic.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /titlebar.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /txt.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /upload.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| /zip.gif/1.1/Tue Feb 14 21:25:49 2006/-kb/ | ||||
| D | ||||
| @ -1,33 +0,0 @@ | ||||
| /1px.gif/////// | ||||
| /Thumbs.db////*/// | ||||
| /createdir.gif/////// | ||||
| /doc.gif/////// | ||||
| /exe.gif/////// | ||||
| /file.gif/////// | ||||
| /flash.gif/////// | ||||
| /folder.gif/////// | ||||
| /gotodir.gif/////// | ||||
| /html.gif/////// | ||||
| /index.html/////// | ||||
| /js.gif/////// | ||||
| /leftback.gif/////// | ||||
| /link.gif/////// | ||||
| /listheaddiv.gif/////// | ||||
| /listheader.gif/////// | ||||
| /login.gif/////// | ||||
| /logoff.gif/////// | ||||
| /menu_delete.gif/////// | ||||
| /menu_edit.gif/////// | ||||
| /menu_rename.gif/////// | ||||
| /menu_settings.gif/////// | ||||
| /menuhead.gif/////// | ||||
| /mode.gif/////// | ||||
| /mov.gif/////// | ||||
| /parent.gif/////// | ||||
| /pdf.gif/////// | ||||
| /php.gif/////// | ||||
| /pic.gif/////// | ||||
| /titlebar.gif/////// | ||||
| /txt.gif/////// | ||||
| /upload.gif/////// | ||||
| /zip.gif/////// | ||||
| @ -1,33 +0,0 @@ | ||||
| /1px.gif/////// | ||||
| /Thumbs.db////*/// | ||||
| /createdir.gif/////// | ||||
| /doc.gif/////// | ||||
| /exe.gif/////// | ||||
| /file.gif/////// | ||||
| /flash.gif/////// | ||||
| /folder.gif/////// | ||||
| /gotodir.gif/////// | ||||
| /html.gif/////// | ||||
| /index.html/////// | ||||
| /js.gif/////// | ||||
| /leftback.gif/////// | ||||
| /link.gif/////// | ||||
| /listheaddiv.gif/////// | ||||
| /listheader.gif/////// | ||||
| /login.gif/////// | ||||
| /logoff.gif/////// | ||||
| /menu_delete.gif/////// | ||||
| /menu_edit.gif/////// | ||||
| /menu_rename.gif/////// | ||||
| /menu_settings.gif/////// | ||||
| /menuhead.gif/////// | ||||
| /mode.gif/////// | ||||
| /mov.gif/////// | ||||
| /parent.gif/////// | ||||
| /pdf.gif/////// | ||||
| /php.gif/////// | ||||
| /pic.gif/////// | ||||
| /titlebar.gif/////// | ||||
| /txt.gif/////// | ||||
| /upload.gif/////// | ||||
| /zip.gif/////// | ||||
| @ -1,34 +0,0 @@ | ||||
| /1px.gif/1.1/Tue Feb 14 21:17:26 2006/-kb/ | ||||
| /Thumbs.db/1.1/Mon Jan 23 20:10:43 2006/-kb/ | ||||
| /createdir.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /doc.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /exe.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /file.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /flash.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /folder.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /gotodir.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /html.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /index.html/1.1/Tue Feb 14 21:17:28 2006// | ||||
| /js.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /leftback.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /link.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /listheaddiv.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /listheader.gif/1.1/Tue Feb 14 21:17:28 2006/-kb/ | ||||
| /login.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /logoff.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /menu_delete.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /menu_edit.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /menu_rename.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /menu_settings.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /menuhead.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /mode.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /mov.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /parent.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /pdf.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /php.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /pic.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /titlebar.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /txt.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /upload.gif/1.1/Tue Feb 14 21:17:29 2006/-kb/ | ||||
| /zip.gif/1.1/Tue Feb 14 21:17:30 2006/-kb/ | ||||
| D | ||||
| @ -1 +0,0 @@ | ||||
| webftp/img | ||||
| @ -1 +0,0 @@ | ||||
| :ext:evwijk@cvs.sf.net:/cvsroot/phpwebftp | ||||
| @ -1,2 +0,0 @@ | ||||
| DirStatus=In CVS | ||||
| DirStatusRecursive=In CVS | ||||
| Before Width: | Height: | Size: 1.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/doc.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/exe.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 904 B | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/file.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 244 B | 
| Before Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 1001 B | 
| Before Width: | Height: | Size: 1.1 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/html.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.0 KiB | 
| @ -1,14 +0,0 @@ | ||||
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <TITLE> New Document </TITLE> | ||||
| <META NAME="Generator" CONTENT="EditPlus"> | ||||
| <META NAME="Author" CONTENT=""> | ||||
| <META NAME="Keywords" CONTENT=""> | ||||
| <META NAME="Description" CONTENT=""> | ||||
| </HEAD> | ||||
| 
 | ||||
| <BODY> | ||||
| 
 | ||||
| </BODY> | ||||
| </HTML> | ||||
							
								
								
									
										
											BIN
										
									
								
								FTP/img/js.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1012 B | 
| Before Width: | Height: | Size: 1.6 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/link.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 93 B | 
| Before Width: | Height: | Size: 834 B | 
| Before Width: | Height: | Size: 839 B | 
| Before Width: | Height: | Size: 10 KiB | 
| Before Width: | Height: | Size: 1.3 KiB | 
| Before Width: | Height: | Size: 990 B | 
| Before Width: | Height: | Size: 1.1 KiB | 
| Before Width: | Height: | Size: 994 B | 
| Before Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 1.8 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/mode.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/mov.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.1 KiB | 
| Before Width: | Height: | Size: 1.2 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/pdf.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/php.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1014 B | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/pic.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1.0 KiB | 
| Before Width: | Height: | Size: 883 B | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/txt.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 983 B | 
| Before Width: | Height: | Size: 1.0 KiB | 
							
								
								
									
										
											BIN
										
									
								
								FTP/img/zip.gif
									
									
									
									
									
								
							
							
						
						| Before Width: | Height: | Size: 1016 B | 
| @ -1,6 +0,0 @@ | ||||
| D/language//// | ||||
| /index.html/1.1/Tue Feb 14 21:25:50 2006// | ||||
| /ss_zip.class.php/1.1/Sun Feb 12 19:48:00 2006// | ||||
| /script.js/1.8/Sun Feb 12 21:32:00 2006// | ||||
| /ftp.class.php/1.2/Tue May  2 18:05:26 2006// | ||||
| /functions.inc.php/1.10/Tue May  2 18:59:12 2006// | ||||
| @ -1,6 +0,0 @@ | ||||
| D/language/////// | ||||
| /index.html/////// | ||||
| /ss_zip.class.php////*/// | ||||
| /script.js/////// | ||||
| /ftp.class.php////*/// | ||||
| /functions.inc.php/////// | ||||
| @ -1,6 +0,0 @@ | ||||
| D/language/////// | ||||
| /index.html/////// | ||||
| /ss_zip.class.php////*/// | ||||
| /script.js/////// | ||||
| /ftp.class.php////*/// | ||||
| /functions.inc.php/////// | ||||
| @ -1,6 +0,0 @@ | ||||
| D/language//// | ||||
| /index.html/1.1/Tue Feb 14 21:25:50 2006// | ||||
| /ss_zip.class.php/1.1/Sun Feb 12 19:48:00 2006// | ||||
| /script.js/1.8/Sun Feb 12 21:32:00 2006// | ||||
| /ftp.class.php/1.2/Tue May  2 18:05:26 2006// | ||||
| /functions.inc.php/1.9/Tue May  2 18:05:26 2006// | ||||
| @ -1 +0,0 @@ | ||||
| webftp/include | ||||
| @ -1 +0,0 @@ | ||||
| :ext:evwijk@cvs.sf.net:/cvsroot/phpwebftp | ||||
| @ -1,2 +0,0 @@ | ||||
| DirStatus=In CVS | ||||
| DirStatusRecursive=In CVS | ||||
| @ -1,333 +0,0 @@ | ||||
| <?php | ||||
| /** FTP class is designed to work with FTP Connections | ||||
| @author Edwin van Wijk, www.v-wijk.net | ||||
| @email info@vwijk.net | ||||
| */ | ||||
| 
 | ||||
| class ftp { | ||||
| 	/** FTP server */ | ||||
| 	var $server=""; | ||||
| 	/** FTP server port */ | ||||
| 	var $port=21; | ||||
| 	/** FTP user */ | ||||
| 	var $user=""; | ||||
| 	/** User specific directory (for zip and download) */ | ||||
| 	var $userDir=""; | ||||
| 	/** password */ | ||||
| 	var $password = ""; | ||||
| 	/** FTP connection */ | ||||
| 	var $connection = ""; | ||||
| 	/** Passive FTP connection */ | ||||
| 	var $passive = false; | ||||
| 	/** Type of FTP server (UNIX, Windows, ...) */ | ||||
| 	var $systype = ""; | ||||
| 	/** Binary (1) or ASCII (0) mode */ | ||||
| 	var $mode = 0; | ||||
| 	/** Logon indicator */ | ||||
| 	var $loggedOn = false; | ||||
| 	/** resume broken downloads */ | ||||
| 	var $resumeDownload = false; | ||||
| 	/** temporary download directory on local server */ | ||||
| 	var $downloadDir = ""; | ||||
| 
 | ||||
| 	/**	constructor | ||||
| 	@param none | ||||
| 	Set FTP settings and logon to the server | ||||
| 	*/ | ||||
| 	function ftp($server, $port, $user, $password, $passive=false){ | ||||
| 		$this->server = $server; | ||||
| 		$this->port = $port; | ||||
| 		$this->user = $user; | ||||
| 		$this->userDir = $user . "_tmp"; | ||||
| 		$this->password = $password; | ||||
| 
 | ||||
| 		// connect to server
 | ||||
| 		$this->connect(); | ||||
| 
 | ||||
| 		// switch to passivemode(?)
 | ||||
| 		$this->setPassive($passive); | ||||
| 	} | ||||
| 
 | ||||
| 	/** connect to a ftp server */ | ||||
| 	function connect() { | ||||
| 		$this->connection = @ftp_connect($this->server, $this->port); | ||||
| 		$this->loggedOn = @ftp_login($this->connection, $this->user, $this->password); | ||||
| 		$this->systype = @ftp_systype($this->connection); | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	/** set passive connection */ | ||||
| 	function setPassive($passive) { | ||||
| 		$this->passive=$passive; | ||||
| 		@ftp_pasv($this->connection, $this->passive); | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	/** Set transfermode */ | ||||
| 	function setMode($mode=1) { | ||||
| 		$this->mode = $mode; | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	/** set and goto current directory on ftp server */ | ||||
| 	function setCurrentDir($dir=false) { | ||||
| 		if ($dir==true) | ||||
| 		{ | ||||
| 			ftp_chdir($this->connection, $dir); | ||||
| 		} | ||||
| 		$this->currentDir = ftp_pwd($this->connection); | ||||
| 		return $this->currentDir; | ||||
| 	} | ||||
| 
 | ||||
| 	function getCurrentDirectoryShort() { | ||||
| 		$string = $this->currentDir; | ||||
| 		$stringArray = split("/",$string); | ||||
| 		$level = count($stringArray); | ||||
| 		$returnString = $stringArray[$level-1]; | ||||
| 		if(trim($returnString)=="") { | ||||
| 			$returnString = "/"; | ||||
| 		} | ||||
| 		return $returnString; | ||||
| 	} | ||||
| 
 | ||||
| 	function setDownloadDir($dir) { | ||||
| 		$this->downloadDir = $dir; | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	function setResumeDownload($resume) { | ||||
| 		$this->resumeDownload = $resume; | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	function chmod($permissions, $file) { | ||||
| 		return @ftp_site($this->connection, "chmod $permissions $file"); | ||||
| 	} | ||||
| 
 | ||||
| 	function cd($directory) { | ||||
| 		if ($directory=="..") { | ||||
| 			@ftp_cdup($this->connection); | ||||
| 		} else { | ||||
| 			if(!@ftp_chdir($this->connection, $this->currentDir . $directory)) { | ||||
| 				@ftp_chdir($this->connection, $directory); // Symbolic link directory 
 | ||||
| 			} | ||||
| 		} | ||||
| 		$this->currentDir=ftp_pwd($this->connection);; | ||||
| 		return; | ||||
| 	} | ||||
| 
 | ||||
| 	/* get file from ftp server */ | ||||
| 	function get($file,$destination) { | ||||
| 		if($destination == ""){ | ||||
| 			$destination = $this->downloadDir; | ||||
| 		} | ||||
| 		$ok=true; | ||||
| 		if($this->resumeDownload) { | ||||
| 			$fp = fopen($destination . $file, "a+"); | ||||
| 			$ok = ftp_fget($this->connection,$fp,"$file",$this->mode, filesize($destination . $file)); | ||||
| 		} else { | ||||
| 			$fp = fopen($destination . $file, "w"); | ||||
| 			$ok = ftp_fget($this->connection,$fp,"$file",$this->mode); | ||||
| 		} | ||||
| 		fclose($fp); | ||||
| 		return $ok; | ||||
| 	} | ||||
| 
 | ||||
| 	/* put file to ftp server */ | ||||
| 	function put($remoteFile,$localFile) { | ||||
| 		$ok=false; | ||||
| 		if(file_exists($localFile)) { | ||||
| 			ftp_put($this->connection, $remoteFile, $localFile, $this->mode); | ||||
| 			$ok=true; | ||||
| 		} | ||||
| 		return $ok; | ||||
| 	} | ||||
| 
 | ||||
| 	/* Download file from server and send it to the browser */ | ||||
| 	function download($file) { | ||||
| 		if($this->get($file)) { | ||||
| 			//Send header to browser to receive a file
 | ||||
| 			header("Content-disposition: attachment; filename=\"$file\"");
 | ||||
| 			header("Content-type: application/octetstream"); | ||||
| 			header("Pragma: "); | ||||
| 			header("Cache-Control: cache"); | ||||
| 			header("Expires: 0"); | ||||
| 			$data = readfile($this->downloadDir . $file); | ||||
| 			$i=0; | ||||
| 			while ($data[$i] != "") | ||||
| 			{ | ||||
| 				$fileStream .= $data[$i]; | ||||
| 				$i++; | ||||
| 			} | ||||
| 			unlink($this->downloadDir . $file); | ||||
| 			echo $fileStream; | ||||
| 			exit; | ||||
| 		} else { | ||||
| 			return false; | ||||
| 		} | ||||
| 	} | ||||
| 	 | ||||
| 	function upload($uploadFile) { | ||||
| 		$tempFileName = $uploadFile['tmp_name']; | ||||
| 		$fileName = $uploadFile['name']; | ||||
| 		return $this->put($this->currentDir . "/" . filePart(StripSlashes($fileName)), $tempFileName); | ||||
| 	} | ||||
| 
 | ||||
| 	function deleteFile($file) { | ||||
| 		return @ftp_delete($this->connection, "$file"); | ||||
| 	} | ||||
| 
 | ||||
| 
 | ||||
| 	function deleteRecursive($baseDirectory,$file){ | ||||
| 		if ($fileList = @ftp_nlist($this->connection, "$baseDirectory/$file")){ | ||||
| 			for ($x=0;$x<count($fileList);$x++){ | ||||
| 				if ($fileList[$x] != '.' && $fileList[$x] != '..' && !@ftp_delete($this->connection, $fileList[$x])) | ||||
| 					deleteRecursive($baseDirectory."/$file",$fileList[$x]); | ||||
| 			} | ||||
| 			@ftp_rmdir($this->connection, "$baseDirectory/$file"); | ||||
| 		 } else { | ||||
| 			@ftp_rmdir($this->connection, "$baseDirectory/$file"); | ||||
| 		 } | ||||
| 	} | ||||
| 
 | ||||
| 	function rename($old, $new) { | ||||
| 		return @ftp_rename($this->connection, "$old", "$new"); | ||||
| 	} | ||||
| 
 | ||||
| 	function makeDir($directory) { | ||||
| 		return @ftp_mkdir($this->connection, "$directory"); | ||||
| 	} | ||||
| 
 | ||||
| 	function getRecursive($baseDir,$file){ | ||||
| 		$files = $this->ftpRawList($baseDir . "/$file"); | ||||
| 
 | ||||
| 		for ($x=0;$x<count($files);$x++){ | ||||
| 			if ($files[$x]["name"] != '.' or $files[$x]["name"] != '..') { | ||||
| 				$downloadLocation = $this->downloadDir  . ereg_replace($this->currentDir."/",$this->userDir."/",$baseDir . "/$file/"); | ||||
| 				$downloadLocation = ereg_replace("//","/",$downloadLocation); | ||||
| 				$ftpFileDir = ereg_replace($this->currentDir . "/","",$baseDir . "/$file/"); | ||||
| 				//print $downloadLocation . "(" . $baseDir . "/$file/" . ")<br>";
 | ||||
| 				mkdir($downloadLocation); | ||||
| 
 | ||||
| 				if ($files[$x]["is_dir"]==1) | ||||
| 				{ | ||||
| 					$this->getRecursive($baseDir . "/$file/",$files[$x]["name"]); | ||||
| 				} else { | ||||
| 					$localFile = $this->downloadDir . $this->userDir . "/" . ereg_replace($this->currentDir . "/","",$baseDir . "/$file/") . $files[$x]["name"];; | ||||
| 					$remoteFile = $baseDir . "/" . $file . "/" . $files[$x]["name"]; | ||||
| 					 | ||||
| 					if($this->resumeDownload) { | ||||
| 						$fp = fopen($localFile, "a+"); | ||||
| 						$ok = ftp_fget($this->connection,$fp,"$remoteFile",$this->mode, filesize($localFile)); | ||||
| 					} else { | ||||
| 						$fp = fopen($localFile, "w"); | ||||
| 						$ok = ftp_fget($this->connection,$fp,"$remoteFile",$this->mode); | ||||
| 					} | ||||
| 					fclose($fp); | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 
 | ||||
| 	function ftpRawList($directory) { | ||||
| 		if($directory=="") { | ||||
| 			$directory = $this->currentDir; | ||||
| 		} | ||||
| 		$list=Array(); | ||||
| 		$list = ftp_rawlist($this->connection, "-a " . $directory); | ||||
| 		if ($this->systype == "UNIX") | ||||
| 		{ | ||||
| 			//$regexp = "([-ldrwxs]{10})[ ]+([0-9]+)[ ]+([A-Z|0-9|-]+)[ ]+([A-Z|0-9|-]+)[ ]+([0-9]+)[ ]+([A-Z]{3}[ ]+[0-9]{1,2}[ ]+[0-9|:]{4,5})[ ]+(.*)";
 | ||||
| 			//$regexp = "([-ldrwxs]{10})[ ]+([0-9]+)[ ]+([A-Z|0-9|-|_]+)[ ]+([A-Z|0-9|-|_]+)[ ]+([0-9]+)[ ]+([A-Z]{3}[ ]+[0-9]{1,2}[ ]+[0-9|:]{4,5})[ ]+(.*)";
 | ||||
| 			$regexp = "([-ltdrwxs]{10})[ ]+([0-9]+)[ ]+([A-Z|0-9|-|_]+)[ ]+([A-Z|0-9|-|_]+)[ ]+([0-9]+)[ ]+([A-Z]{3}[ ]+[0-9]{1,2}[ ]+[0-9|:]{4,5})[ ]+(.*)"; | ||||
| 			$i=0; | ||||
| 			foreach ($list as $line)  | ||||
| 			{ | ||||
| 				$is_dir = $is_link = FALSE; | ||||
| 				$target = ""; | ||||
| 
 | ||||
| 				if (eregi($regexp, $line, $regs)) | ||||
| 				{ | ||||
| 					if (!eregi("^[.]", $regs[7])) //hide hidden files
 | ||||
| 					if (!eregi("^[.]{2}", $regs[7])) // don't hide hidden files
 | ||||
| 					{ | ||||
| 						$i++; | ||||
| 						if (eregi("^[d]", $regs[1])) | ||||
| 						{ | ||||
| 							$is_dir = TRUE; | ||||
| 						} | ||||
| 						elseif (eregi("^[l]", $regs[1]))  | ||||
| 						{  | ||||
| 							$is_link = TRUE; | ||||
| 							list($regs[7], $target) = split(" -> ", $regs[7]); | ||||
| 						} | ||||
| 
 | ||||
| 						//Get extension from file name
 | ||||
| 						$regs_ex = explode(".",$regs[7]); | ||||
| 						if ((!$is_dir)&&(count($regs_ex) > 1)) | ||||
| 						   $extension = $regs_ex[count($regs_ex)-1]; | ||||
| 						else $extension = ""; | ||||
| 
 | ||||
| 						$files[$i] = array ( | ||||
| 						"is_dir"	=> $is_dir, | ||||
| 						"extension"	=> $extension, | ||||
| 						"name"		=> $regs[7], | ||||
| 						"perms"		=> $regs[1], | ||||
| 						"num"		=> $regs[2], | ||||
| 						"user"		=> $regs[3], | ||||
| 						"group"		=> $regs[4], | ||||
| 						"size"		=> $regs[5], | ||||
| 						"date"		=> $regs[6], | ||||
| 						"is_link"	=> $is_link, | ||||
| 						"target"	=> $target );						 | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 		else | ||||
| 		{ | ||||
| 			$regexp = "([0-9\-]{8})[ ]+([0-9:]{5}[APM]{2})[ ]+([0-9|<DIR>]+)[ ]+(.*)"; | ||||
| 			foreach ($list as $line)  | ||||
| 			{ | ||||
| 				$is_dir = false; | ||||
| 				if (eregi($regexp, $line, $regs))  | ||||
| 				{ | ||||
| 					if (!eregi("^[.]", $regs[4])) | ||||
| 					{ | ||||
| 						if($regs[3] == "<DIR>") | ||||
| 						{ | ||||
| 							$is_dir = true; | ||||
| 							$regs[3] = ''; | ||||
| 						} | ||||
| 						$i++; | ||||
| 	 | ||||
| 						// Get extension from filename
 | ||||
| 						$regs_ex = explode(".",$regs[4]); | ||||
| 						if ((!$is_dir)&&(count($regs_ex) > 1)) | ||||
| 						   $extension = $regs_ex[count($regs_ex)-1]; | ||||
| 						else $extension = ""; | ||||
| 
 | ||||
| 						$files[$i] = array ( | ||||
| 							"is_dir"	=> $is_dir, | ||||
| 							"extension"	=> $extension, | ||||
| 							"name"		=> $regs[4], | ||||
| 							"date"		=> $regs[1], | ||||
| 							"time"		=> $regs[2], | ||||
| 							"size"		=> $regs[3], | ||||
| 							"is_link"	=> 0, | ||||
| 							"target"	=> "", | ||||
| 							"num"		=> "" ); | ||||
| 					} | ||||
| 				} | ||||
| 			} | ||||
| 		} | ||||
| 		if ( is_array($files)  AND count($files) > 0) | ||||
| 		{ | ||||
| 			$files=array_sort_multi($files, 1, 3); | ||||
| 		} | ||||
| 		return $files; | ||||
| 	} | ||||
| 
 | ||||
| } | ||||
| ?>
 | ||||
| @ -1,264 +0,0 @@ | ||||
| <?php | ||||
| 
 | ||||
| //Zip Class
 | ||||
| require("ss_zip.class.php"); | ||||
| 
 | ||||
| // All possible languages available, used for selecting the right language file.
 | ||||
| $languages = array( | ||||
|     'af' => 'african', | ||||
|     'sq' => 'albanian', | ||||
|     'ar' => 'arabic', | ||||
|     'ar-dz' => 'arabic', // algeria
 | ||||
|     'ar-bh' => 'arabic', // bahrain
 | ||||
|     'ar-eg' => 'arabic', // egypt
 | ||||
|     'ar-iq' => 'arabic', // iraq
 | ||||
|     'ar-jo' => 'arabic', // jordan
 | ||||
|     'ar-kw' => 'arabic', // kuwait
 | ||||
|     'ar-lb' => 'arabic', // lebanon
 | ||||
|     'ar-ly' => 'arabic', // libya
 | ||||
|     'ar-ma' => 'arabic', // morocco
 | ||||
|     'ar-om' => 'arabic', // oman
 | ||||
|     'ar-qa' => 'arabic', // qatar
 | ||||
|     'ar-sa' => 'arabic', // Saudi Arabia
 | ||||
|     'ar-sy' => 'arabic', // syria
 | ||||
|     'ar-tn' => 'arabic', // tunisia
 | ||||
|     'ar-ae' => 'arabic', // U.A.E
 | ||||
|     'ar-ye' => 'arabic', // yemen
 | ||||
|     'hy' => 'armenian', | ||||
|     'ast' => 'asturian', | ||||
|     'eu' => 'basque', | ||||
|     'be' => 'belarusian', | ||||
|     'bs' => 'bosnian', | ||||
|     'bg' => 'bulgarian', | ||||
|     'ca' => 'catalan', | ||||
|     'zh' => 'chinese', | ||||
|     'zh-smp' => 'chinese simplified', // China Simplified
 | ||||
|     'zh-cn' => 'chinese', // China
 | ||||
|     'zh-hk' => 'chinese', // Hong Kong
 | ||||
|     'zh-sg' => 'chinese', // Singapore
 | ||||
|     'zh-tw' => 'chinese', // Taiwan
 | ||||
|     'hr' => 'croatian', | ||||
|     'cs' => 'czech', | ||||
|     'da' => 'danish', | ||||
|     'nl' => 'dutch', | ||||
|     'nl-be' => 'dutch', // Belgium
 | ||||
|     'en' => 'english', | ||||
|     'en-au' => 'english', // Australia
 | ||||
|     'en-bz' => 'english', // Belize
 | ||||
|     'en-ca' => 'english', // Canada
 | ||||
|     'en-ie' => 'english', // Ireland
 | ||||
|     'en-jm' => 'english', // Jamaica
 | ||||
|     'en-nz' => 'english', // New Zealand
 | ||||
|     'en-ph' => 'english', // Philippines
 | ||||
|     'en-za' => 'english', // South Africa
 | ||||
|     'en-tt' => 'english', // Trinidad
 | ||||
|     'en-gb' => 'english', // United Kingdom
 | ||||
|     'en-us' => 'english', // United States
 | ||||
|     'en-zw' => 'english', // Zimbabwe
 | ||||
|     'eo' => 'esperanto', | ||||
|     'et' => 'estonian', | ||||
|     'fo' => 'faeroese', | ||||
|     'fi' => 'finnish', | ||||
|     'fr' => 'french', | ||||
|     'fr-be' => 'french', // Belgium
 | ||||
|     'fr-ca' => 'french', // Canada
 | ||||
|     'fr-fr' => 'french', // France
 | ||||
|     'fr-lu' => 'french', // Luxembourg
 | ||||
|     'fr-mc' => 'french', // Monaco
 | ||||
|     'fr-ch' => 'french', // Switzerland
 | ||||
|     'gl' => 'galician', | ||||
|     'ka' => 'georgian', | ||||
|     'de' => 'german', | ||||
|     'de-at' => 'german', // Austria
 | ||||
|     'de-de' => 'german', // Germany
 | ||||
|     'de-li' => 'german', // Liechtenstein
 | ||||
|     'de-lu' => 'german', // Luxembourg
 | ||||
|     'de-ch' => 'german', // Switzerland
 | ||||
|     'el' => 'greek', | ||||
|     'he' => 'hebrew', | ||||
|     'hu' => 'hungarian', | ||||
|     'is' => 'icelandic', | ||||
|     'id' => 'indonesian', | ||||
|     'ga' => 'irish', | ||||
|     'it' => 'italian', | ||||
|     'it-ch' => 'italian', // Switzerland
 | ||||
|     'ja' => 'japanese', | ||||
|     'ko' => 'korean', | ||||
|     'ko-kp' => 'korean', // North Korea
 | ||||
|     'ko-kr' => 'korean', // South Korea
 | ||||
|     'lv' => 'latvian', | ||||
|     'lt' => 'lithuanian', | ||||
|     'mk' => 'macedonian', | ||||
|     'ms' => 'malay', | ||||
|     'no' => 'norwegian', | ||||
|     'nb' => 'norwegian bokmal', | ||||
|     'nn' => 'norwegian nynorsk', | ||||
|     'pl' => 'polish', | ||||
|     'pt' => 'portuguese', | ||||
|     'pt-br' => 'portuguese', // Brazil
 | ||||
|     'ro' => 'romanian', | ||||
|     'ru' => 'russian', | ||||
|     'gd' => 'scots gealic', | ||||
|     'sr' => 'serbian', | ||||
|     'sk' => 'slovak', | ||||
|     'sl' => 'slovenian', | ||||
|     'es' => 'spanish', | ||||
|     'es-ar' => 'spanish', // Argentina
 | ||||
|     'es-bo' => 'spanish', // Bolivia
 | ||||
|     'es-cl' => 'spanish', // Chile
 | ||||
|     'es-co' => 'spanish', // Colombia
 | ||||
|     'es-cr' => 'spanish', // Costa Rica
 | ||||
|     'es-do' => 'spanish', // Dominican Republic
 | ||||
|     'es-ec' => 'spanish', // Ecuador
 | ||||
|     'es-sv' => 'spanish', // El Salvador
 | ||||
|     'es-gt' => 'spanish', // Guatemala
 | ||||
|     'es-hn' => 'spanish', // Honduras
 | ||||
|     'es-mx' => 'spanish', // Mexico
 | ||||
|     'es-ni' => 'spanish', // Nicaragua
 | ||||
|     'es-pa' => 'spanish', // Panama
 | ||||
|     'es-py' => 'spanish', // Paraguay
 | ||||
|     'es-pe' => 'spanish', // Peru
 | ||||
|     'es-pr' => 'spanish', // Puerto Rico
 | ||||
|     'es-es' => 'spanish', // Spain
 | ||||
|     'es-uy' => 'spanish', // Uruguay
 | ||||
|     'es-ve' => 'spanish', // Venezuela
 | ||||
|     'sv' => 'swedish', | ||||
|     'sv-fi' => 'swedish', // Finland
 | ||||
|     'th' => 'thai', | ||||
|     'tr' => 'turkish', | ||||
|     'uk' => 'ukrainian', | ||||
|     'vi' => 'vietnamese', | ||||
|     'cy' => 'welsh', | ||||
|     'xh' => 'xhosa', | ||||
|     'yi' => 'yiddish', | ||||
|     'zu' => 'zulu' | ||||
| ); | ||||
| 
 | ||||
| 	function array_sort_multi($array, $key,$key2) | ||||
| 
 | ||||
| 	{ | ||||
| 	  foreach ($array as $i => $k) {  | ||||
| 		   if(! empty($array[$i][$key][$key2])){ | ||||
| 		   $sort_values[$i] = $array[$i][$key][$key2]; | ||||
| 		   }else{ | ||||
| 		   $sort_values[$i] = $array[$i]; | ||||
| 		   } | ||||
| 	  }  | ||||
| 	  asort ($sort_values); | ||||
| 	  reset ($sort_values); | ||||
| 	  while (list ($arr_keys, $arr_values) = each ($sort_values)) { | ||||
| 			 $sorted_arr[] = $array[$arr_keys]; | ||||
| 	  } | ||||
| 	  return $sorted_arr; | ||||
| 	}  | ||||
| 
 | ||||
| 	function directoryPath($string, $server) { | ||||
| 		$stringArray = split("/",$string); | ||||
| 		$level = count($stringArray); | ||||
| 
 | ||||
| 		$down = ""; | ||||
| 		$levelCount=0; | ||||
| 		while($levelCount<$level-1) { | ||||
| 			$down .= "../"; | ||||
| 			$levelCount++; | ||||
| 		} | ||||
| 		$returnString = "<A HREF=\"javascript:submitForm('cd', '" . $down . "')\" style='text-decoration:underline;'><" . $server . "></A>"; | ||||
| 		foreach($stringArray as $str) { | ||||
| 			$down = ""; | ||||
| 			$level = $level - 1; | ||||
| 			$levelCount=0; | ||||
| 			while($levelCount<$level) { | ||||
| 				$down .= "../"; | ||||
| 				$levelCount++; | ||||
| 			} | ||||
| 
 | ||||
| 			if($level>=0) { | ||||
| 				$returnString .= "<A HREF=\"javascript:submitForm('cd', '" . $down . "')\" style='text-decoration:underline;'>" .  $str . "</A>/"; | ||||
| 			} | ||||
| 		} | ||||
| 		return $returnString; | ||||
| 	} | ||||
| 
 | ||||
| 	function filePart($string) { | ||||
| 		$stringArray = explode("/",$string); | ||||
| 		$level = count($stringArray); | ||||
| 		if ($stringArray[$level-1]=="") | ||||
| 			return $stringArray[$level-2]; | ||||
| 		else | ||||
| 			return $stringArray[$level-1]; | ||||
| 	} | ||||
| 
 | ||||
| 
 | ||||
| 	function fileDescription($filename){ | ||||
| 		$ext = strtolower(getExtention($filename)); | ||||
| 		if($ext == 'png' OR $ext == 'gif' OR $ext == 'jpg' OR $ext == 'psp' OR $ext == 'bmp' OR $ext == 'ai' OR $ext == 'tiff'){ | ||||
| 	    	$res['imgfilename'] = 'pic.gif'; | ||||
| 			$res['description'] = strtoupper($ext).' Image/Picture'; | ||||
| 	 	}elseif($ext == 'html' OR $ext == 'htm'){ | ||||
| 	    	$res['imgfilename'] = 'html.gif'; | ||||
| 			$res['description'] = 'HTML Document'; | ||||
| 	 	}elseif($ext == 'css'){ | ||||
| 	 		$res['imgfilename'] = 'txt.gif'; | ||||
| 			$res['description'] = 'Stylesheet'; | ||||
| 	 	}elseif($ext == 'doc'){ | ||||
| 	 		$res['imgfilename'] = 'doc.gif'; | ||||
| 			$res['description'] = 'Microsoft Word Document'; | ||||
| 	 	}elseif($ext == 'pdf'){ | ||||
| 	 		$res['imgfilename'] = 'pdf.gif'; | ||||
| 			$res['description'] = 'PDF Document'; | ||||
| 		}elseif($ext == 'php' OR $ext == 'php3'){ | ||||
| 			$res['imgfilename'] = 'php.gif'; | ||||
| 			$res['description'] = 'PHP Script'; | ||||
| 		}elseif($ext == 'js'){ | ||||
| 			$res['imgfilename'] = 'js.gif'; | ||||
| 			$res['description'] = 'Javascript'; | ||||
| 		}elseif($ext == 'swf'){ | ||||
| 			$res['imgfilename'] = 'pic.gif'; | ||||
| 			$res['description'] = 'Flash file'; | ||||
| 		}elseif($ext == 'txt'){ | ||||
| 			$res['imgfilename'] = 'txt.gif'; | ||||
| 			$res['description'] = 'Textfile'; | ||||
| 		}elseif($ext == 'avi' OR $ext == 'mov' OR $ext == 'mpg' OR $ext == 'rm'){ | ||||
| 			$res['imgfilename'] = 'mov.gif'; | ||||
| 			$res['description'] = 'Video file'; | ||||
| 		}elseif($ext == 'mp3' OR $ext == 'wav' OR $ext == 'ogg'){ | ||||
| 			$res['imgfilename'] = 'mov.gif'; | ||||
| 			$res['description'] = 'Audio file'; | ||||
| 		}elseif($ext == 'zip' OR $ext == 'rar' OR $ext == 'cab' OR $ext == 'b2z'){ | ||||
| 			$res['imgfilename'] = 'zip.gif'; | ||||
| 			$res['description'] = 'Compressed file'; | ||||
| 		}elseif($ext == 'exe' OR $ext == 'com' OR $ext == 'bat'){ | ||||
| 			$res['imgfilename'] = 'exe.gif'; | ||||
| 			$res['description'] = 'Application'; | ||||
| 		}else{ | ||||
| 			$res['imgfilename'] = 'file.gif'; | ||||
| 			$res['description'] = $ext . ' File'; | ||||
| 		} | ||||
| 		return $res; | ||||
| 	} | ||||
| 
 | ||||
| 	function getExtention($filename){ | ||||
| 		if(($dotpos = strrpos($filename, '.')) === false){ | ||||
| 			return false; | ||||
| 		}else{ | ||||
| 			return substr($filename, $dotpos+1); | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	function deleteRecursive($dirname)  | ||||
| 	{ // recursive function to delete  
 | ||||
| 	  // all subdirectories and contents: 
 | ||||
| 	  if(is_dir($dirname))$dir_handle=opendir($dirname);  | ||||
| 	  while($file=readdir($dir_handle))  | ||||
| 	  {  | ||||
| 		if($file!="." && $file!="..")  | ||||
| 		{  | ||||
| 		  if(!is_dir($dirname."/".$file))unlink ($dirname."/".$file);  | ||||
| 		  else deleteRecursive($dirname."/".$file);  | ||||
| 		}  | ||||
| 	  }  | ||||
| 	  closedir($dir_handle);  | ||||
| 	  rmdir($dirname);  | ||||
| 	  return true;  | ||||
| 	}  | ||||
| ?>
 | ||||
| @ -1,14 +0,0 @@ | ||||
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <TITLE> New Document </TITLE> | ||||
| <META NAME="Generator" CONTENT="EditPlus"> | ||||
| <META NAME="Author" CONTENT=""> | ||||
| <META NAME="Keywords" CONTENT=""> | ||||
| <META NAME="Description" CONTENT=""> | ||||
| </HEAD> | ||||
| 
 | ||||
| <BODY> | ||||
| 
 | ||||
| </BODY> | ||||
| </HTML> | ||||
| @ -1,25 +0,0 @@ | ||||
| /bulgarian.lang.php/1.4/Tue Feb 14 21:25:50 2006// | ||||
| /catalan.lang.php/1.4/Tue Feb 14 21:25:50 2006// | ||||
| /chinese simplified.lang.php/1.3/Tue Feb 14 21:25:50 2006// | ||||
| /chinese.lang.php/1.3/Tue Feb 14 21:25:50 2006// | ||||
| /czech.lang.php/1.5/Tue Feb 14 21:25:50 2006// | ||||
| /danish.lang.php/1.5/Tue Feb 14 21:25:50 2006// | ||||
| /dutch.lang.php/1.3/Tue Feb 14 21:25:50 2006// | ||||
| /english.lang.php/1.3/Tue Feb 14 21:25:50 2006// | ||||
| /french.lang.php/1.4/Tue Feb 14 21:25:51 2006// | ||||
| /german.lang.php/1.3/Tue Feb 14 21:25:51 2006// | ||||
| /index.html/1.1/Tue Feb 14 21:25:51 2006// | ||||
| /italian.lang.php/1.5/Tue Feb 14 21:25:51 2006// | ||||
| /japanese.lang.php/1.1/Tue Feb 14 21:25:51 2006// | ||||
| /latvian.lang.php/1.4/Tue Feb 14 21:25:51 2006// | ||||
| /norwegian.lang.php/1.1/Tue Feb 14 21:25:51 2006// | ||||
| /polish.lang.php/1.3/Tue Feb 14 21:25:51 2006// | ||||
| /portuguese.lang.php/1.4/Tue Feb 14 21:25:51 2006// | ||||
| /russian.lang.php/1.4/Tue Feb 14 21:25:51 2006// | ||||
| /spanish.lang.php/1.4/Tue Feb 14 21:25:51 2006// | ||||
| /swedish.lang.php/1.2/Tue Feb 14 21:25:51 2006// | ||||
| /turkish.lang.php/1.1/Tue Feb 14 21:25:52 2006// | ||||
| /latvian-utf8.lang.php/1.6/Sun Apr 30 09:39:49 2006// | ||||
| /ukrainian.lang.php/1.1/Tue Feb 14 20:40:00 2006// | ||||
| /slovak.lang.php/1.7/Sun Apr 30 10:15:08 2006// | ||||
| D | ||||
| @ -1,24 +0,0 @@ | ||||
| /bulgarian.lang.php/////// | ||||
| /catalan.lang.php/////// | ||||
| /chinese simplified.lang.php/////// | ||||
| /chinese.lang.php/////// | ||||
| /czech.lang.php/////// | ||||
| /danish.lang.php/////// | ||||
| /dutch.lang.php/////// | ||||
| /english.lang.php/////// | ||||
| /french.lang.php/////// | ||||
| /german.lang.php/////// | ||||
| /index.html/////// | ||||
| /italian.lang.php/////// | ||||
| /japanese.lang.php////*/// | ||||
| /latvian.lang.php/////// | ||||
| /norwegian.lang.php////*/// | ||||
| /polish.lang.php/////// | ||||
| /portuguese.lang.php/////// | ||||
| /russian.lang.php/////// | ||||
| /spanish.lang.php/////// | ||||
| /swedish.lang.php////*/// | ||||
| /turkish.lang.php////*/// | ||||
| /latvian-utf8.lang.php////*/// | ||||
| /ukrainian.lang.php////*/// | ||||
| /slovak.lang.php/////// | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Bulgarian translation by : Krasimir S. Stefanov
 | ||||
| 	// Visit my webpage at http://cyberd.freeunixhost.com/
 | ||||
| 	 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="бюсёђтхэшъ"; | ||||
| 	$lblGroup="У№ѓяр"; | ||||
| 	$lblPublic="Яѓсышїэш"; | ||||
| 	$lblRead="зхђхэх"; | ||||
| 	$lblWrite="Яшёрэх"; | ||||
| 	$lblExecute="Шчяњыэхэшх"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "дрщыр х я№хърыхэю уюыџь"; | ||||
| 	$lblAnonymousAccess = "Рэюэшьхэ фюёђњя"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binary"; | ||||
| 	$lblChangeMode = "Я№хтъыўїш ьхцфѓ Binary/ASCII"; | ||||
| 	$lblSetPermissions	= "Я№юьџэр эр я№ртрђр"; | ||||
| 	$lblConnectToFTPServer = "бтњ№цш ёх ё FTP бњ№тњ№"; | ||||
| 	$lblConnectedTo = "бтњ№чрэ ъњь"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Эх х тњчьюцэр я№юьџэрђр эр я№ртрђр эр"; | ||||
| 	$lblCouldNotConnectToServer = "Эџьр т№њчър ёњё ёњ№тњ№р"; | ||||
| 	$lblCouldNotCreate = "бњчфртрэхђю эхтњчьюцэю"; | ||||
| 	$lblCouldNotDelete = "в№шхэхђю эхтњчьюцэю"; | ||||
| 	$lblCouldNotRename = "Я№хшьхэѓтрэхђю эртњчьюцэю"; | ||||
| 	$lblCouldNotUnzip ="unzip-трэхђю эртњчьюцэю"; | ||||
| 	$lblCreated = "ёњчфрфхэ"; | ||||
| 	$lblCreateDirectory	= "бњчфрщ Фш№хъђю№шџ"; | ||||
| 	$lblCurrentDirectory="вхъѓљр фш№хъђю№шџ"; | ||||
| 	$lblCurrentMode = "вхъѓљ №хцшь"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDate	= "Фрђр"; | ||||
| 	$lblDelete	= "Шчђ№шщ"; | ||||
| 	$lblDeleted = "шчђ№шђ"; | ||||
| 	$lblDeleteFile	= "Шчђ№шщ єрщыр"; | ||||
| 	$lblDetails = "Фхђрщыш"; | ||||
| 	$lblDirectory = "Фш№хъђю№шџ"; | ||||
| 	$lblDirectoryEmpty = "Фш№хъђю№шџђр х я№рчэр"; | ||||
| 	$lblDisclaimer = "phpWebFTP шфтр схч РСбЮЫовЭЮ ЭШЪРЪТР УРаРЭжШп. вютр х ётюсюфхэ ёюєђѓх№ ш тшх ьюцх фр ую №рчя№юёђ№рэџтрђх т эџъюш ёыѓїрш. Я№юїхђхђх яњыэшџ  GPL ышіхэч <A HREF='gpl.txt' style='font-size:7pt;'>ђѓъ</A>"; | ||||
| 	$lblErrorDownloadingFile = "У№хјър я№ш ётрыџэхђю эр єрщыр"; | ||||
| 	$lblFileCouldNotBeUploaded = "дрщыр эх ьюцх фр сњфх ърїхэ"; | ||||
| 	$lblFilePermissionChanged="Я№ртрђр чр фюёђњя фю єрщыр я№юьхэхэш"; | ||||
| 	$lblCouldNotChangePermissions ="Я№ртрђр чр фюёђњя фю єрщыр эх ьюурђ фр сњфрђ я№юьхэхэш"; | ||||
| 	$lblFileTasks = "File and Folder Tasks"; | ||||
| 	$lblGoToDirectory = "Шфш т Фш№хъђю№шџ"; | ||||
| 	$lblIndexOf = "Шэфхъё эр"; | ||||
| 	$lblLogIn ="Тыхч"; | ||||
| 	$lblLogOff ="Шчѕюф"; | ||||
| 	$lblName = "Шьх"; | ||||
| 	$lblNewName = "Эютю шьх"; | ||||
| 	$lblNotConnected = "Эх ёђх ётњ№чрэш"; | ||||
| 	$lblNotice = "Чрсхыхцър"; | ||||
| 	$lblPassword = "Яр№юыр"; | ||||
| 	$lblLanguage= "Хчшъ"; | ||||
| 	$lblPermissions = "Я№ртр"; | ||||
| 	$lblPort = "Яю№ђ"; | ||||
| 	$lblRename	= "Я№хшьхэѓтрщ"; | ||||
| 	$lblRenamedTo = "я№хшьхэѓтрэ эр"; | ||||
| 	$lblRetry = "Юяшђрщ яръ"; | ||||
| 	$lblServer = "бњ№тњ№"; | ||||
| 	$lblSize = "арчьх№"; | ||||
| 	$lblFileType = "вшя"; | ||||
| 	$lblTo = "ъњь"; | ||||
| 	$lblTransferMode = "ахцшь эр ђ№рэёєх№р"; | ||||
| 	$lblTryAgain = "Юяшђрщ яръ..."; | ||||
| 	$lblUnziped = "unziped-эрђ"; | ||||
| 	$lblUp = "Эрую№х"; | ||||
| 	$lblUploadFile	= "Ърїш єрщы"; | ||||
| 	$lblUser = "Яюђ№хсшђхы"; | ||||
| 	$lblVersion ="Тх№ёшџ"; | ||||
| 	$lblWithUser = "ё яюђ№хсшђхы"; | ||||
| 	$lblUnZipFile = "Unzip-трщ єрщыр"; | ||||
| 	$lblZipFile = "Zip єрщы"; | ||||
| ?>
 | ||||
| @ -1,72 +0,0 @@ | ||||
| <?php | ||||
| 	// Catalan translation by : Joan B. Giménez Sendiu
 | ||||
| 	 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Propietari"; | ||||
| 	$lblGroup="Grup"; | ||||
| 	$lblPublic="Públic"; | ||||
| 	$lblRead="Lectura"; | ||||
| 	$lblWrite="Escriptura"; | ||||
| 	$lblExecute="Execució"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
| 	$lblFileSizeTooBig = "El fitxer és massa gros"; | ||||
| 	$lblAnonymousAccess = "Accés anònim"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binari"; | ||||
| 	$lblChangeMode = "Intercanviae  Binari/ASCII"; | ||||
| 	$lblChangePermissions	= "Canviar permisos"; | ||||
| 	$lblConnectToFTPServer = "Connectar-se a un servidor FTP"; | ||||
| 	$lblConnectedTo = "Conectat a"; | ||||
| 	$lblCouldNotChangePermissionsFor = "No es poden canviar els permisos per"; | ||||
| 	$lblCouldNotConnectToServer = "No s'ha pogut connectar amb el servidor"; | ||||
| 	$lblCouldNotCreate = "No s'ha pogut crear"; | ||||
| 	$lblCouldNotDelete = "No s'ha pogut eliminar"; | ||||
| 	$lblCouldNotRename = "No s'ha pogut fer el canvi de nom"; | ||||
| 	$lblCouldNotUnzip ="No s'ha pogut descomprimir"; | ||||
| 	$lblCreated = "creat"; | ||||
| 	$lblCreateDirectory	= "Crear directori"; | ||||
| 	$lblCurrentDirectory="Directori actual"; | ||||
| 	$lblCurrentMode = "Mode actual"; | ||||
| 	$lblDate	= "Data"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Eliminar"; | ||||
| 	$lblDeleted = "Elminiat"; | ||||
| 	$lblDeleteFile	= "Esborrar fitxer"; | ||||
| 	$lblDetails = "Detalls"; | ||||
| 	$lblDirectory = "Directori"; | ||||
| 	$lblDirectoryEmpty = "El directori està buit"; | ||||
| 	$lblDisclaimer = "phpWebFTP se distribuye SENSE CAP GARANTIA. phpWebFTP es software lliure y vostè el pot redistruir sota certes condicions. Llegeixi la llicència GPL <A HREF='gpl.txt' style='font-size:7pt;'>aquí</A>"; | ||||
| 	$lblErrorDownloadingFile = "Error al descarregar  el fitxer"; | ||||
| 	$lblFileCouldNotBeUploaded = "El fictxer no s'ha pogut actualitzar"; | ||||
| 	$lblFilePermissionChanged="S'han canviat els permisos del fitxer"; | ||||
| 	$lblFileTasks = "Tasques de fitxers y directoris"; | ||||
| 	$lblGoToDirectory = "Entrar al directori"; | ||||
| 	$lblLogIn ="Accedir"; | ||||
| 	$lblLogOff ="Sortir"; | ||||
| 	$lblName = "Nom"; | ||||
| 	$lblNewName = "Nou nom"; | ||||
| 	$lblNotConnected = "No connectat"; | ||||
| 	$lblNotice = "Noticia"; | ||||
| 	$lblPassword = "Clau"; | ||||
| 	$lblLanguage = "Idioma"; | ||||
| 	$lblPermissions = "Permisos"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Renombrar"; | ||||
| 	$lblRenamedTo = "renombrat  a"; | ||||
| 	$lblRetry = "Reintentar"; | ||||
| 	$lblServer = "Servidor"; | ||||
| 	$lblSize = "Tamany"; | ||||
| 	$lblFileType = "Tipus"; | ||||
| 	$lblTo = "a"; | ||||
| 	$lblTransferMode = "Mode de transferència"; | ||||
| 	$lblTryAgain = "Intentar un altre cop..."; | ||||
| 	$lblUnziped = "descomprimit"; | ||||
| 	$lblUp = "Cap a dalt"; | ||||
| 	$lblUploadFile	= "Pujar fitxer"; | ||||
| 	$lblUser = "Usuari"; | ||||
| 	$lblVersion ="Versió"; | ||||
| 	$lblWithUser = "amb usuari"; | ||||
| 	$lblPasive = "Pasiu"; | ||||
| ?>
 | ||||
| @ -1,79 +0,0 @@ | ||||
| <?php | ||||
| 	// Chinese translation by : Douglas Ma
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="所有者"; | ||||
| 	$lblGroup="组"; | ||||
| 	$lblPublic="公共"; | ||||
| 	$lblRead="读"; | ||||
| 	$lblWrite="写"; | ||||
| 	$lblExecute="执行"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "文件太大了"; | ||||
| 	$lblAnonymousAccess = "匿名访问"; | ||||
| 	$lblASCIIMode = "ASCII编码"; | ||||
| 	$lblBinaryMode = "二进制编码"; | ||||
| 	$lblChangeMode = "切换Binary/ASCII编码"; | ||||
| 	$lblSetPermissions	= "修改权限"; | ||||
| 	$lblConnectToFTPServer = "连接到FTP服务器"; | ||||
| 	$lblConnectedTo = "连接到"; | ||||
| 	$lblCouldNotChangePermissionsFor = "无法修改权限"; | ||||
| 	$lblCouldNotConnectToServer = "不能连接到服务器"; | ||||
| 	$lblCouldNotCreate = "创建失败"; | ||||
| 	$lblCouldNotDelete = "删除失败"; | ||||
| 	$lblCouldNotRename = "重命名失败"; | ||||
| 	$lblCouldNotUnzip ="解压失败"; | ||||
| 	$lblCreated = "创建于"; | ||||
| 	$lblCreateDirectory	= "创建目录"; | ||||
| 	$lblCurrentDirectory="当前目录"; | ||||
| 	$lblCurrentMode = "当前模式"; | ||||
| 	$lblDate	= "时间"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "删除"; | ||||
| 	$lblDeleted = "已删除"; | ||||
| 	$lblDeleteFile	= "删除文件"; | ||||
| 	$lblDetails = "详细内容"; | ||||
| 	$lblDirectory = "目录"; | ||||
| 	$lblDirectoryEmpty = "目录空"; | ||||
| 	$lblDisclaimer =  | ||||
| "我们拒绝对phpWebFTP作出任何承诺和承担任何责任。因为这是一个免费程序,欢迎您在协议规定范围内分发此程序。请点击 
 | ||||
| <A HREF='gpl.txt' style='font-size:7pt;'>这里</A>阅读全文GPL注册协议";
 | ||||
| 	$lblErrorDownloadingFile = "下载文件出错"; | ||||
| 	$lblFileCouldNotBeUploaded = "无法上传文件"; | ||||
| 	$lblFilePermissionChanged="文件权限修改"; | ||||
| 	$lblCouldNotChangePermissions ="无法修改文件权限"; | ||||
| 	$lblFileTasks = "文件和文件夹"; | ||||
| 	$lblGoToDirectory = "跳转到新的目录"; | ||||
| 	$lblIndexOf = "序号"; | ||||
| 	$lblLogIn ="登陆"; | ||||
| 	$lblLogOff ="退出"; | ||||
| 	$lblName = "名字"; | ||||
| 	$lblNewName = "新名字"; | ||||
| 	$lblNotConnected = "未连接"; | ||||
| 	$lblNotice = "注意"; | ||||
| 	$lblPassword = "密码"; | ||||
| 	$lblLanguage= "语言"; | ||||
| 	$lblPermissions = "权限"; | ||||
| 	$lblPort = "端口"; | ||||
| 	$lblRename	= "重命名"; | ||||
| 	$lblRenamedTo = "重命名为"; | ||||
| 	$lblRetry = "重试"; | ||||
| 	$lblServer = "服务器"; | ||||
| 	$lblSize = "大小"; | ||||
| 	$lblFileType = "类型"; | ||||
| 	$lblTo = "到"; | ||||
| 	$lblTransferMode = "传输模式"; | ||||
| 	$lblTryAgain = "重试"; | ||||
| 	$lblUnziped = "解压"; | ||||
| 	$lblUp = "上传"; | ||||
| 	$lblUploadFile	= "上传文件"; | ||||
| 	$lblUser = "用户"; | ||||
| 	$lblVersion ="版本"; | ||||
| 	$lblWithUser = "对于用户"; | ||||
| 	$lblUnZipFile = "解压文件"; | ||||
| 	$lblZipFile = "压缩文件"; | ||||
| 	$lblPasive = "被动模式"; | ||||
| ?>
 | ||||
| 
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Chinese (Traditional) translation by : Casper
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner='擁有者'; | ||||
| 	$lblGroup='群組'; | ||||
| 	$lblPublic='公眾'; | ||||
| 	$lblRead='讀取'; | ||||
| 	$lblWrite='寫入'; | ||||
| 	$lblExecute='執行'; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = '檔案容量過大'; | ||||
| 	$lblAnonymousAccess = '匿名登入'; | ||||
| 	$lblASCIIMode = 'ASCII'; | ||||
| 	$lblBinaryMode = 'Binary'; | ||||
| 	$lblChangeMode = '轉換 Binary/ASCII 模式'; | ||||
| 	$lblSetPermissions	= '設定權限'; | ||||
| 	$lblConnectToFTPServer = '連接到 FTP 伺服器'; | ||||
| 	$lblConnectedTo = '已連接到'; | ||||
| 	$lblCouldNotChangePermissionsFor = '設定權限錯誤 -'; | ||||
| 	$lblCouldNotConnectToServer = '連接到伺服器時發生錯誤'; | ||||
| 	$lblCouldNotCreate = '建立時發生錯誤'; | ||||
| 	$lblCouldNotDelete = '刪除時發生錯誤'; | ||||
| 	$lblCouldNotRename = '重新命名時發生錯誤'; | ||||
| 	$lblCouldNotUnzip ='解壓錯誤'; | ||||
| 	$lblCreated = '已建立'; | ||||
| 	$lblCreateDirectory	= '新增資料夾'; | ||||
| 	$lblCurrentDirectory='目前資料夾'; | ||||
| 	$lblCurrentMode = '目前模式'; | ||||
| 	$lblDate	= '日期'; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= '刪除'; | ||||
| 	$lblDeleted = '已刪除'; | ||||
| 	$lblDeleteFile	= '刪除檔案'; | ||||
| 	$lblDetails = '詳細資料'; | ||||
| 	$lblDirectory = '資料夾'; | ||||
| 	$lblDirectoryEmpty = '資料夾是空的'; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = '下載檔案時發生錯誤'; | ||||
| 	$lblFileCouldNotBeUploaded = '上傳檔案失敗'; | ||||
| 	$lblFilePermissionChanged='檔案權限已設定成功\'; | ||||
| 	$lblCouldNotChangePermissions ='檔案權限設定失敗'; | ||||
| 	$lblFileTasks = '檔案及資料夾工作'; | ||||
| 	$lblGoToDirectory = '到資料夾'; | ||||
| 	$lblIndexOf = '資料夾 -'; | ||||
| 	$lblLogIn ='登入'; | ||||
| 	$lblLogOff ='登出'; | ||||
| 	$lblName = '名稱'; | ||||
| 	$lblNewName = '新名稱'; | ||||
| 	$lblNotConnected = '未連接'; | ||||
| 	$lblNotice = '注意'; | ||||
| 	$lblPassword = '密碼'; | ||||
| 	$lblLanguage= '語言'; | ||||
| 	$lblPermissions = '權限'; | ||||
| 	$lblPort = 'Port'; | ||||
| 	$lblRename	= '重新命名'; | ||||
| 	$lblRenamedTo = '已重新命名 -'; | ||||
| 	$lblRetry = '重試'; | ||||
| 	$lblServer = '伺服器'; | ||||
| 	$lblSize = '大小'; | ||||
| 	$lblFileType = '類型'; | ||||
| 	$lblTo = 'to'; | ||||
| 	$lblTransferMode = '目前傳輸模式'; | ||||
| 	$lblTryAgain = '再試一次...'; | ||||
| 	$lblUnziped = '已解壓'; | ||||
| 	$lblUp = '上移'; | ||||
| 	$lblUploadFile	= '上傳檔案'; | ||||
| 	$lblUser = '使用者'; | ||||
| 	$lblVersion ='版本'; | ||||
| 	$lblWithUser = 'with user'; | ||||
| 	$lblUnZipFile = '解壓檔案'; | ||||
| 	$lblZipFile = '壓縮檔案'; | ||||
| 	$lblPasive = '被動模式'; | ||||
| ?>
 | ||||
| @ -1,78 +0,0 @@ | ||||
| <?php | ||||
| 	// Czech translation by : Viktor Bílek - MediaWeb, http://www.mediaweb.cz
 | ||||
| 	// Date of creation     : 18.10.2004
 | ||||
| 	// Used charset		: cp1250
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Majitel"; | ||||
| 	$lblGroup="Skupina"; | ||||
| 	$lblPublic="Ostatní"; | ||||
| 	$lblRead="Čtení"; | ||||
| 	$lblWrite="Zápis"; | ||||
| 	$lblExecute="Spouš"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Soubor je příliš velký"; | ||||
| 	$lblAnonymousAccess = "Anonymní přístup"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "binární"; | ||||
| 	$lblChangeMode = "Změna módu mezi binární/ASCII"; | ||||
| 	$lblSetPermissions	= "Změnit práva"; | ||||
| 	$lblConnectToFTPServer = "Přihlašte se k FTP serveru"; | ||||
| 	$lblConnectedTo = "Připojeno k"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Nemohu změnit práva pro"; | ||||
| 	$lblCouldNotConnectToServer = "Nemohu se přopojit k serveru"; | ||||
| 	$lblCouldNotCreate = "Nemohu vytvořit"; | ||||
| 	$lblCouldNotDelete = "Nemohu smazat"; | ||||
| 	$lblCouldNotRename = "Nemohu přejmenovat"; | ||||
| 	$lblCouldNotUnzip ="Nemohu dekomprimovat"; | ||||
| 	$lblCreated = "vytvořen"; | ||||
| 	$lblCreateDirectory	= "Vytvořit adresář"; | ||||
| 	$lblCurrentDirectory="Aktuální adresář"; | ||||
| 	$lblCurrentMode = "Aktuální mód"; | ||||
| 	$lblDate	= "Datum"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Smazat"; | ||||
| 	$lblDeleted = "smazán"; | ||||
| 	$lblDeleteFile	= "Smazat"; | ||||
| 	$lblDetails = "Podrobnosti"; | ||||
| 	$lblDirectory = "Adresář"; | ||||
| 	$lblDirectoryEmpty = "Adresář je prázdný"; | ||||
| 	$lblDisclaimer = "phpWebFTP je vyrobeno BEZ ABSOLUTNĚ ŽÁDNÉ GARANCE. Toto je volně šiřitelný software. Budeme rádi, budete-li ho šířit po nezměněnými podmínkami. Přečte si plné znění GPL licence <A HREF='gpl.txt' style='font-size:7pt;'>zde.</A>"; | ||||
| 	$lblErrorDownloadingFile = "Chyba při stahování souboru"; | ||||
| 	$lblFileCouldNotBeUploaded = "Soubor nemůže být nahrán"; | ||||
| 	$lblFilePermissionChanged="Souborová práva byla změněna"; | ||||
| 	$lblCouldNotChangePermissions ="Souborová práva nemohla být změněna"; | ||||
| 	$lblFileTasks = "Práce se systémem"; | ||||
| 	$lblGoToDirectory = "Přejít do adresáře"; | ||||
| 	$lblIndexOf = "Index"; | ||||
| 	$lblLogIn ="Přihlásit se"; | ||||
| 	$lblLogOff ="Odhlásit se"; | ||||
| 	$lblName = "Název"; | ||||
| 	$lblNewName = "Nový název"; | ||||
| 	$lblNotConnected = "Nepřipojeno"; | ||||
| 	$lblNotice = "Oznámení"; | ||||
| 	$lblPassword = "Heslo"; | ||||
| 	$lblLanguage= "Jazyk"; | ||||
| 	$lblPermissions = "Práva"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Přejmenovat"; | ||||
| 	$lblRenamedTo = "přejmenováno na"; | ||||
| 	$lblRetry = "Zkusit znovu"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Velikost"; | ||||
| 	$lblFileType = "Typ"; | ||||
| 	$lblTo = "na"; | ||||
| 	$lblTransferMode = "Mód přenosu dat"; | ||||
| 	$lblTryAgain = "Zkuste to znovu ..."; | ||||
| 	$lblUnziped = "dekomprimováno"; | ||||
| 	$lblUp = "O úroveň výš"; | ||||
| 	$lblUploadFile	= "Nahrát soubor"; | ||||
| 	$lblUser = "Uživatel"; | ||||
| 	$lblVersion ="verze"; | ||||
| 	$lblWithUser = "s uživatelem"; | ||||
| 	$lblUnZipFile = "Dekomprimovat soubor"; | ||||
| 	$lblZipFile = "Komprimovat soubor"; | ||||
| 	$lblPasive = "Pasivní"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
|         // Danish Translation By : Michael Andreassen
 | ||||
| 
 | ||||
|         // Change permissions
 | ||||
|         $lblOwner="Ejer"; | ||||
|         $lblGroup="Gruppe"; | ||||
|         $lblPublic="Offentlig"; | ||||
|         $lblRead="Læs"; | ||||
|         $lblWrite="Skriv"; | ||||
|         $lblExecute="Udfør"; | ||||
| 
 | ||||
|         //Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Filstørrelsen Er For Stor"; | ||||
|         $lblAnonymousAccess = "Anonym Adgang"; | ||||
|         $lblASCIIMode = "ASCII"; | ||||
|         $lblBinaryMode = "Binær"; | ||||
|         $lblChangeMode = "Skift Ml. Binær/ASCII"; | ||||
|         $lblSetPermissions        = "Skift Rettigheder"; | ||||
|         $lblConnectToFTPServer = "Forbind Til FTP Server"; | ||||
|         $lblConnectedTo = "Forbundet Til"; | ||||
|         $lblCouldNotChangePermissionsFor = "Kunne Ikke Skifte Rettigheder For"; | ||||
|         $lblCouldNotConnectToServer = "Kunne Ikke Forbinde Til Server"; | ||||
|         $lblCouldNotCreate = "Kunne Ikke Oprette"; | ||||
|         $lblCouldNotDelete = "Kunne Ikke Slette"; | ||||
|         $lblCouldNotRename = "Kunne Ikke Omdøbe"; | ||||
|         $lblCouldNotUnzip ="Kunne Ikke Unzippe"; | ||||
|         $lblCreated = "oprettet"; | ||||
|         $lblCreateDirectory        = "Opret Mappe"; | ||||
|         $lblCurrentDirectory="Nuv. Mappe"; | ||||
|         $lblCurrentMode = "Nuv. Modus"; | ||||
|         $lblDate        = "Dato"; | ||||
| 		$lblEditFile = "Edit"; | ||||
|         $lblDelete        = "Slet"; | ||||
|         $lblDeleted = "slettet"; | ||||
|         $lblDeleteFile        = "Slet Fil"; | ||||
|         $lblDetails = "Detaljer"; | ||||
|         $lblDirectory = "Mappe"; | ||||
|         $lblDirectoryEmpty = "Mappen Er Tom"; | ||||
|         $lblDisclaimer = "phpWebFTP Kommer UDEN NOGEN GARANTIER. Dette Er Gratis Software, Og Du Er Velkommen Til At Redistribuere Det Under Bestemte Betingelser. Læs Den Fulde GPL Licens <A HREF='gpl.txt' style='font-size:7pt;'>HER</A>"; | ||||
|         $lblErrorDownloadingFile = "Fejl Ved Download Af Fil"; | ||||
|         $lblFileCouldNotBeUploaded = "Filen Kunne Ikke Uploades"; | ||||
|         $lblFilePermissionChanged="Filtilladelser Ændret"; | ||||
|         $lblCouldNotChangePermissions ="Filtilladelser Kunne Ikke Ændres"; | ||||
|         $lblFileTasks = "Fil Og Folder Opgaver"; | ||||
|         $lblGoToDirectory = "Gå Til Mappe"; | ||||
|         $lblIndexOf = "Indeks Af"; | ||||
|         $lblLogIn ="Log Ind"; | ||||
|         $lblLogOff ="Log Ud"; | ||||
|         $lblName = "Navn"; | ||||
|         $lblNewName = "Nyt Navn"; | ||||
|         $lblNotConnected = "Ikke Forbundet"; | ||||
|         $lblNotice = "Bemærk"; | ||||
|         $lblPassword = "Kodeord"; | ||||
|         $lblLanguage= "Sprog"; | ||||
|         $lblPermissions = "Tilladelser"; | ||||
|         $lblPort = "Port"; | ||||
|         $lblRename        = "Omdøb"; | ||||
|         $lblRenamedTo = "omdøbt Til"; | ||||
|         $lblRetry = "Prøv Igen"; | ||||
|         $lblServer = "Server"; | ||||
|         $lblSize = "Str."; | ||||
|         $lblFileType = "Type"; | ||||
|         $lblTo = "Til"; | ||||
|         $lblTransferMode = "Overførselsmodus"; | ||||
|         $lblTryAgain = "Prøv Igen..."; | ||||
|         $lblUnziped = "unzippet"; | ||||
|         $lblUp = "Op"; | ||||
|         $lblUploadFile        = "Upload Fil"; | ||||
|         $lblUser = "Bruger"; | ||||
|         $lblVersion ="Version"; | ||||
|         $lblWithUser = "Med Bruger"; | ||||
|         $lblUnZipFile = "Unzip Fil"; | ||||
|         $lblZipFile = "Zip Fil"; | ||||
|         $lblPasive = "Passiv"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Dutch translation by : Edwin van Wijk
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Eigenaar"; | ||||
| 	$lblGroup="Groep"; | ||||
| 	$lblPublic="Publiek"; | ||||
| 	$lblRead="Lezen"; | ||||
| 	$lblWrite="Schrijven"; | ||||
| 	$lblExecute="Uitvoeren"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Bestand is te groot"; | ||||
| 	$lblAnonymousAccess = "Anonmieme toegang"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binair"; | ||||
| 	$lblChangeMode = "Wissel Binary/ASCII"; | ||||
| 	$lblSetPermissions = "Rechten wijzigen"; | ||||
| 	$lblConnectedTo = "Verbonden met"; | ||||
| 	$lblConnectToFTPServer = "Verbinden met FTP Server"; | ||||
| 	$lblCouldNotChangePermissions = "Kan rechten niet wijzigen"; | ||||
| 	$lblCouldNotConnectToServer = "Kan niet verbinden met server"; | ||||
| 	$lblCouldNotCreate = "Maken niet mogelijk voor"; | ||||
| 	$lblCouldNotDelete = "Verwijderen niet mogelijk voor"; | ||||
| 	$lblCouldNotRename = "Hernoemen niet mogelijk voor"; | ||||
| 	$lblCouldNotUnzip ="Unzip niet mogelijk voor"; | ||||
| 	$lblCreated = "gemaakt"; | ||||
| 	$lblCreateDirectory	= "Directory maken"; | ||||
| 	$lblCurrentDirectory="Huidige directory"; | ||||
| 	$lblCurrentMode = "Huidige mode"; | ||||
| 	$lblDate	= "Datum"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Verwijderen"; | ||||
| 	$lblDeleted = "Verwijderd"; | ||||
| 	$lblDeleteFile	= "Bestand verwijderen"; | ||||
| 	$lblDetails = "Details"; | ||||
| 	$lblDirectory = "Directory"; | ||||
| 	$lblDirectoryEmpty = "Directory is leeg"; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = "Fout opgetreden tijdens het downloaden van bestand"; | ||||
| 	$lblFileCouldNotBeUploaded = "Bestand kan niet worden ge-upload"; | ||||
| 	$lblFilePermissionChanged="Bestandsrechten aangepast"; | ||||
| 	$lblCouldNotChangePermissions ="Bestandsrechten konden niet aangepast worden"; | ||||
| 	$lblFileTasks = "Bestand en foldertaken"; | ||||
| 	$lblGoToDirectory = "Ga naar Directory"; | ||||
| 	$lblLogIn ="Inloggen"; | ||||
| 	$lblLogOff ="Uitloggen"; | ||||
| 	$lblIndexOf = "Index van"; | ||||
| 	$lblName = "Naam"; | ||||
| 	$lblNewName = "Nieuw naam"; | ||||
| 	$lblNotConnected = "Niet verbonden"; | ||||
| 	$lblNotice = "Let op"; | ||||
| 	$lblPassword = "Wachtwoord"; | ||||
| 	$lblLanguage = "Taal"; | ||||
| 	$lblPermissions = "Rechten"; | ||||
| 	$lblPort = "Poort"; | ||||
| 	$lblRename	= "Hernoemen"; | ||||
| 	$lblRenamedTo = "hernoemd naar"; | ||||
| 	$lblRetry = "Opnieuw"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Grootte"; | ||||
| 	$lblFileType = "Type"; | ||||
| 	$lblTo = "naar"; | ||||
| 	$lblTransferMode = "Overdracht "; | ||||
| 	$lblTryAgain = "Nogmaals proberen"; | ||||
| 	$lblUnziped = "unziped"; | ||||
| 	$lblUp = "Omhoog"; | ||||
| 	$lblUploadFile	= "Bestand uploaden"; | ||||
| 	$lblUser = "Gebruiker"; | ||||
| 	$lblVersion ="Versie"; | ||||
| 	$lblWithUser = "met gebruiker"; | ||||
| 	$lblUnZipFile = "Unzip File"; | ||||
| 	$lblZipFile = "Zip File"; | ||||
| 	$lblPasive = "Passive"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// English translation by : Edwin van Wijk
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Owner"; | ||||
| 	$lblGroup="Group"; | ||||
| 	$lblPublic="Public"; | ||||
| 	$lblRead="Read"; | ||||
| 	$lblWrite="Write"; | ||||
| 	$lblExecute="Exec."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "File size too big"; | ||||
| 	$lblAnonymousAccess = "Anonymous access"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binary"; | ||||
| 	$lblChangeMode = "Switch Binary/ASCII"; | ||||
| 	$lblSetPermissions	= "Change permissions"; | ||||
| 	$lblConnectToFTPServer = "Connect to FTP Server"; | ||||
| 	$lblConnectedTo = "Connected to"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Could not change permissions for"; | ||||
| 	$lblCouldNotConnectToServer = "Could not connect to server"; | ||||
| 	$lblCouldNotCreate = "Could not create"; | ||||
| 	$lblCouldNotDelete = "Could not delete"; | ||||
| 	$lblCouldNotRename = "Could not rename"; | ||||
| 	$lblCouldNotUnzip ="Could not unzip"; | ||||
| 	$lblCreated = "created"; | ||||
| 	$lblCreateDirectory	= "Create Directory"; | ||||
| 	$lblCurrentDirectory="Current directory"; | ||||
| 	$lblCurrentMode = "Current mode"; | ||||
| 	$lblDate	= "Date"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Delete"; | ||||
| 	$lblDeleted = "deleted"; | ||||
| 	$lblDeleteFile	= "Delete file"; | ||||
| 	$lblDetails = "Details"; | ||||
| 	$lblDirectory = "Directory"; | ||||
| 	$lblDirectoryEmpty = "Directory is empty"; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = "Error downloading file"; | ||||
| 	$lblFileCouldNotBeUploaded = "File could not be uploaded"; | ||||
| 	$lblFilePermissionChanged="File permission changed"; | ||||
| 	$lblCouldNotChangePermissions ="File permission could not be changed"; | ||||
| 	$lblFileTasks = "File and Folder Tasks"; | ||||
| 	$lblGoToDirectory = "Go to Directory"; | ||||
| 	$lblIndexOf = "Index of"; | ||||
| 	$lblLogIn ="Log in"; | ||||
| 	$lblLogOff ="Log off"; | ||||
| 	$lblName = "Name"; | ||||
| 	$lblNewName = "New name"; | ||||
| 	$lblNotConnected = "Not connected"; | ||||
| 	$lblNotice = "Notice"; | ||||
| 	$lblPassword = "Password"; | ||||
| 	$lblLanguage= "Language"; | ||||
| 	$lblPermissions = "Permissions"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Rename"; | ||||
| 	$lblRenamedTo = "renamed to"; | ||||
| 	$lblRetry = "Retry"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Size"; | ||||
| 	$lblFileType = "Type"; | ||||
| 	$lblTo = "to"; | ||||
| 	$lblTransferMode = "Transfer mode"; | ||||
| 	$lblTryAgain = "Try again..."; | ||||
| 	$lblUnziped = "unziped"; | ||||
| 	$lblUp = "Up"; | ||||
| 	$lblUploadFile	= "Upload file"; | ||||
| 	$lblUser = "User"; | ||||
| 	$lblVersion ="Version"; | ||||
| 	$lblWithUser = "with user"; | ||||
| 	$lblUnZipFile = "Unzip File"; | ||||
| 	$lblZipFile = "Zip File"; | ||||
| 	$lblPasive = "Passive"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// French translation by Pierre HOPQUIN : http://www.regne.net
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Propriétaire"; | ||||
| 	$lblGroup="Groupe"; | ||||
| 	$lblPublic="Publique"; | ||||
| 	$lblRead="Lecture"; | ||||
| 	$lblWrite="Ecriture"; | ||||
| 	$lblExecute="Exec."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Taile du fichier trop grande"; | ||||
| 	$lblAnonymousAccess = "Accès anonyme"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binaire"; | ||||
| 	$lblChangeMode = "Changer Binaire/ASCII"; | ||||
| 	$lblSetPermissions	= "Changer les droits du fichier"; | ||||
| 	$lblConnectToFTPServer = "Se connecter au serveur FTP"; | ||||
| 	$lblConnectedTo = "Connecté à"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Changement de permissions échoué pour"; | ||||
| 	$lblCouldNotConnectToServer = "Connexion échouée au serveur"; | ||||
| 	$lblCouldNotCreate = "Creation échouée"; | ||||
| 	$lblCouldNotDelete = "Suppression échouée"; | ||||
| 	$lblCouldNotRename = "Changement de nom échoué"; | ||||
| 	$lblCouldNotUnzip ="N'a pas pu decompresser"; | ||||
| 	$lblCreated = "créé"; | ||||
| 	$lblCreateDirectory	= "Créer répertoire"; | ||||
| 	$lblCurrentDirectory="Répertoire actuel"; | ||||
| 	$lblCurrentMode = "Mode actuel"; | ||||
| 	$lblDate	= "Date"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Effacer"; | ||||
| 	$lblDeleted = "Effacé"; | ||||
| 	$lblDeleteFile	= "Effacer le fichier"; | ||||
| 	$lblDetails = "Details"; | ||||
| 	$lblDirectory = "Répertoire"; | ||||
| 	$lblDirectoryEmpty = "Répertoire vide"; | ||||
| 	$lblDisclaimer = "phpWebFTP est livré SANS AUCUNE GARANTIE. C'est un logiciel libre, et vous êtes autorisés à le distribuer sous certaines conditions. Lisez la license GPL <A HREF='gpl.txt' style='font-size:7pt;'>ici</A>"; | ||||
| 	$lblErrorDownloadingFile = "Erreur de téléchargement"; | ||||
| 	$lblFileCouldNotBeUploaded = "Erreur : le fichier n'a pas été envoyé"; | ||||
| 	$lblFilePermissionChanged="Droits du fichier mis à jour"; | ||||
| 	$lblCouldNotChangePermissions ="Impossible de changer les droits"; | ||||
| 	$lblFileTasks = "Taches des fichiers et répertoires"; | ||||
| 	$lblGoToDirectory = "Changer de répertoire"; | ||||
| 	$lblIndexOf = "Index de"; | ||||
| 	$lblLogIn ="Se connecter"; | ||||
| 	$lblLogOff ="Se déconnecter"; | ||||
| 	$lblName = "Nom"; | ||||
| 	$lblNewName = "Nouveau nom"; | ||||
| 	$lblNotConnected = "Pas connecté"; | ||||
| 	$lblNotice = "Notice"; | ||||
| 	$lblPassword = "Mot de passe"; | ||||
| 	$lblLanguage= "Langue"; | ||||
| 	$lblPermissions = "Droits"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Renommer"; | ||||
| 	$lblRenamedTo = "renommé en"; | ||||
| 	$lblRetry = "Réessayer"; | ||||
| 	$lblServer = "Serveur"; | ||||
| 	$lblSize = "Taille"; | ||||
| 	$lblFileType = "Type"; | ||||
| 	$lblTo = "en"; | ||||
| 	$lblTransferMode = "Mode de transfert"; | ||||
| 	$lblTryAgain = "Réessayer..."; | ||||
| 	$lblUnziped = "décompressé"; | ||||
| 	$lblUp = "Up"; | ||||
| 	$lblUploadFile	= "Envoyer fichier"; | ||||
| 	$lblUser = "Utilisateur"; | ||||
| 	$lblVersion ="Version"; | ||||
| 	$lblWithUser = "avec l'utilisateur"; | ||||
| 	$lblUnZipFile = "Decompresser"; | ||||
| 	$lblZipFile = "Compresser"; | ||||
| 	$lblPasive = "Passive"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// German translation by : Günther Leitgeb
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Besitzer"; | ||||
| 	$lblGroup="Gruppe"; | ||||
| 	$lblPublic="Öffentlich"; | ||||
| 	$lblRead="Lesen"; | ||||
| 	$lblWrite="Schr."; | ||||
| 	$lblExecute="Ausf."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Die Datei ist zu groß"; | ||||
| 	$lblAnonymousAccess = "Anonymer Zugriff"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binä¤r"; | ||||
| 	$lblChangeMode = "Wechsel Binär/ASCII"; | ||||
| 	$lblSetPermissions	= "Zugriffsrechte Ändern"; | ||||
| 	$lblConnectToFTPServer = "Verbinde zu FTP Server"; | ||||
| 	$lblConnectedTo = "Verbinde zu"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Zugriffsrechte konnten nicht geändert werden für"; | ||||
| 	$lblCouldNotConnectToServer = "Verbindung mit Server fehlgeschlagen"; | ||||
| 	$lblCouldNotCreate = "Erstellen fehlgeschlagen"; | ||||
| 	$lblCouldNotDelete = "Löschen fehlgeschlagen"; | ||||
| 	$lblCouldNotRename = "Umbenennen fehlgeschlagen"; | ||||
| 	$lblCouldNotUnzip ="Unzip fehlgeschlagen"; | ||||
| 	$lblCreated = "Erstellt"; | ||||
| 	$lblCreateDirectory	= "Verzeichnis erstellen"; | ||||
| 	$lblCurrentDirectory="Aktuelles Verzeichnis"; | ||||
| 	$lblCurrentMode = "Aktueller Modus"; | ||||
| 	$lblDate	= "Datum"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Löschen"; | ||||
| 	$lblDeleted = "Gelöscht"; | ||||
| 	$lblDeleteFile	= "Datei löschen"; | ||||
| 	$lblDetails = "Details"; | ||||
| 	$lblDirectory = "Verzeichnis"; | ||||
| 	$lblDirectoryEmpty = "Verzeichnis ist leer"; | ||||
| 	$lblDisclaimer = "Bei WebFTP existiert ABSOLUT KEINE GARANTIE. Dies ist eine Freeware Software und Sie können sie, unter Beachtung bestimmter Bedingungen, ohne weiteres verändern. Lesen Sie die komplette GPL Lizenz <A HREF='gpl.txt' style='font-size:7pt;'>hier</A>"; | ||||
| 	$lblErrorDownloadingFile = "Download der Datei fehlgeschlagen"; | ||||
| 	$lblFileCouldNotBeUploaded = "Datei konnte nicht hochgeladewn werden"; | ||||
| 	$lblFilePermissionChanged="Dateizugriffsrechte geändert"; | ||||
| 	$lblCouldNotChangePermissions="Zugriffsrechte konnten nicht geändert werden"; | ||||
| 	$lblFileTasks = "Datei und Verzeichnis Optionen"; | ||||
| 	$lblGoToDirectory = "Wechsel zum Verzeichnis"; | ||||
| 	$lblIndexOf="Inhalt von"; | ||||
| 	$lblLogIn ="Einloggen"; | ||||
| 	$lblLogOff ="Ausloggen"; | ||||
| 	$lblName = "Name"; | ||||
| 	$lblNewName = "Nuer Name"; | ||||
| 	$lblNotConnected = "Nicht verbunden"; | ||||
| 	$lblNotice = "Nachricht"; | ||||
| 	$lblPassword = "Passwort"; | ||||
| 	$lblLanguage= "Sprache"; | ||||
| 	$lblPermissions = "Zugriffsrechte"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Umbenennen"; | ||||
| 	$lblRenamedTo = "Umbenennen zu"; | ||||
| 	$lblRetry = "Wiederholen"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Grösse"; | ||||
| 	$lblFileType = "Dateityp"; | ||||
| 	$lblTo = "zu"; | ||||
| 	$lblTransferMode = "Transfer Mode"; | ||||
| 	$lblTryAgain = "Noch einmal versuchen..."; | ||||
| 	$lblUnziped = "Unzip erfolgreich"; | ||||
| 	$lblUp = "Zurück"; | ||||
| 	$lblUploadFile	= "Datei hochladen"; | ||||
| 	$lblUser = "User"; | ||||
| 	$lblVersion ="Version"; | ||||
| 	$lblWithUser = "mit Benutzer"; | ||||
| 	$lblUnZipFile = "Unzip File"; | ||||
| 	$lblZipFile = "Zip File"; | ||||
| 	$lblPasive = "Passive"; | ||||
| 	?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Hebrow translation by : Ido Orenshtein
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="בעלים"; | ||||
| 	$lblGroup="קבוצה"; | ||||
| 	$lblPublic="ציבורי"; | ||||
| 	$lblRead="קריאה"; | ||||
| 	$lblWrite="כתיבה"; | ||||
| 	$lblExecute="Exec."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|         $lblFileSizeTooBig = "הקובץ גדול מדי"; | ||||
| 	$lblAnonymousAccess = "גישה אנונימית"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "בינארי"; | ||||
| 	$lblChangeMode = "בינארי/ASCII החלף"; | ||||
| 	$lblSetPermissions	= "שנה הרשאות"; | ||||
| 	$lblConnectToFTPServer = "FTP התחבר לשרת"; | ||||
| 	$lblConnectedTo = "מתחבר אל <br />"; | ||||
| 	$lblCouldNotChangePermissionsFor = "לא יכול לשנות הרשאות"; | ||||
| 	$lblCouldNotConnectToServer = "לא יכול להתחבר לשרת<br />"; | ||||
| 	$lblCouldNotCreate = "לא יכול ליצור"; | ||||
| 	$lblCouldNotDelete = "לא יכול למחוק"; | ||||
| 	$lblCouldNotRename = "לא יכול לשנות שם"; | ||||
| 	$lblCouldNotUnzip ="לא יכול לחלץ"; | ||||
| 	$lblCreated = "נוצר"; | ||||
| 	$lblCreateDirectory	= "צור תקייה"; | ||||
| 	$lblCurrentDirectory="תקייה נוכחית"; | ||||
| 	$lblCurrentMode = "מצב נוכחי"; | ||||
| 	$lblDate	= "תאריך"; | ||||
| 	$lblEditFile = "ערוך"; | ||||
| 	$lblDelete	= "מחק"; | ||||
| 	$lblDeleted = "נמחק"; | ||||
| 	$lblDeleteFile	= "מחק קובץ"; | ||||
| 	$lblDetails = "פרטים"; | ||||
| 	$lblDirectory = "תקייה"; | ||||
| 	$lblDirectoryEmpty = "התקייה ריקה"; | ||||
| 	$lblDisclaimer = "התוכנה היא תוכנה חופשית ומאובטחת"; | ||||
| 	$lblErrorDownloadingFile = "שגיאה בהורדת קובץ"; | ||||
| 	$lblFileCouldNotBeUploaded = "לא יכול להעלות את הקובץ"; | ||||
| 	$lblFilePermissionChanged="הרשאות שונו"; | ||||
| 	$lblCouldNotChangePermissions ="ההרשאות לא יכלו להתשנות"; | ||||
| 	$lblFileTasks = "משימות של תקייות וקבצים"; | ||||
| 	$lblGoToDirectory = "לך לתקייה"; | ||||
| 	$lblIndexOf = "דף בית של"; | ||||
| 	$lblLogIn ="התחבר"; | ||||
| 	$lblLogOff ="התנתק"; | ||||
| 	$lblName = "שם"; | ||||
| 	$lblNewName = "שם חדש"; | ||||
| 	$lblNotConnected = "לא מחובר"; | ||||
| 	$lblNotice = "הערה"; | ||||
| 	$lblPassword = "סיסמא"; | ||||
| 	$lblLanguage= "שפה"; | ||||
| 	$lblPermissions = "הרשאות"; | ||||
| 	$lblPort = "פורט"; | ||||
| 	$lblRename	= "שנה שם"; | ||||
| 	$lblRenamedTo = "שנה שם ל"; | ||||
| 	$lblRetry = "נסה שנית"; | ||||
| 	$lblServer = "שרת"; | ||||
| 	$lblSize = "גודל"; | ||||
| 	$lblFileType = "סוג"; | ||||
| 	$lblTo = "ל"; | ||||
| 	$lblTransferMode = "העבר מצב"; | ||||
| 	$lblTryAgain = "נסה שוב"; | ||||
| 	$lblUnziped = "חולץ"; | ||||
| 	$lblUp = "למעלה"; | ||||
| 	$lblUploadFile	= "העלה קובץ"; | ||||
| 	$lblUser = "משתמש"; | ||||
| 	$lblVersion ="גרסה"; | ||||
| 	$lblWithUser = "<br />עם משתמש<br />"; | ||||
| 	$lblUnZipFile = "חלץ קובץ"; | ||||
| 	$lblZipFile = "קבץ קובץ"; | ||||
| 	$lblPasive = "אנונימי"; | ||||
| ?>
 | ||||
| @ -1,14 +0,0 @@ | ||||
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <TITLE> New Document </TITLE> | ||||
| <META NAME="Generator" CONTENT="EditPlus"> | ||||
| <META NAME="Author" CONTENT=""> | ||||
| <META NAME="Keywords" CONTENT=""> | ||||
| <META NAME="Description" CONTENT=""> | ||||
| </HEAD> | ||||
| 
 | ||||
| <BODY> | ||||
| 
 | ||||
| </BODY> | ||||
| </HTML> | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Italian translation by : Davide Ardizzola - Monza - Italy
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Proprietario"; | ||||
| 	$lblGroup="Gruppo"; | ||||
| 	$lblPublic="Pubblico"; | ||||
| 	$lblRead="Legge"; | ||||
| 	$lblWrite="Scrive"; | ||||
| 	$lblExecute="Esegui"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "File troppo grosso"; | ||||
| 	$lblAnonymousAccess = "Accesso anonimo"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binario"; | ||||
| 	$lblChangeMode = "Inverti modo Binario/ASCII"; | ||||
| 	$lblSetPermissions	= "Cambia i permessi"; | ||||
| 	$lblConnectToFTPServer = "Connettiti ad un server FTP"; | ||||
| 	$lblConnectedTo = "Connesso a"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Impossibile cambiare i permessi per"; | ||||
| 	$lblCouldNotConnectToServer = "Impossibile connettersi al server"; | ||||
| 	$lblCouldNotCreate = "Impossibile creare"; | ||||
| 	$lblCouldNotDelete = "Impossibile cancellare"; | ||||
| 	$lblCouldNotRename = "Impossibile rinominare"; | ||||
| 	$lblCouldNotUnzip ="Non posso de-unzippare"; | ||||
| 	$lblCreated = "creato"; | ||||
| 	$lblCreateDirectory	= "Crea una cartella"; | ||||
| 	$lblCurrentDirectory="Cartella corrente"; | ||||
| 	$lblCurrentMode = "Modo attuale"; | ||||
| 	$lblDate	= "Data"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Cancella"; | ||||
| 	$lblDeleted = "cancellato"; | ||||
| 	$lblDeleteFile	= "Cancella il file"; | ||||
| 	$lblDetails = "Dettagli"; | ||||
| 	$lblDirectory = "Cartella"; | ||||
| 	$lblDirectoryEmpty = "La cartella è vuota"; | ||||
| 	$lblDisclaimer = "phpWebFTP viene distribuito senza NESSUNA GARANZIA.<BR>Questo è un software libero e puoi redistribuirlo tranquillamente sottostando però ad alcune condizioni: leggi quindi la licenza GPL <A HREF='gpl.txt' style='font-size:7pt;'>QUI</A>"; | ||||
| 	$lblErrorDownloadingFile = "Errore scaricando il file"; | ||||
| 	$lblFileCouldNotBeUploaded = "Il file non può essere inviato al server"; | ||||
| 	$lblFilePermissionChanged="I permessi sul file sono stati cambiati"; | ||||
| 	$lblCouldNotChangePermissions ="I permessi sul file non possono essere cambiati"; | ||||
| 	$lblFileTasks = "Comandi disponibili"; | ||||
| 	$lblGoToDirectory = "Vai alla cartella"; | ||||
| 	$lblIndexOf = "Indice di"; | ||||
| 	$lblLogIn ="Collegati"; | ||||
| 	$lblLogOff ="Scollegati"; | ||||
| 	$lblName = "Nome"; | ||||
| 	$lblNewName = "Nuovo nome"; | ||||
| 	$lblNotConnected = "Non connesso"; | ||||
| 	$lblNotice = "Avviso"; | ||||
| 	$lblPassword = "Password"; | ||||
| 	$lblLanguage= "Lingua"; | ||||
| 	$lblPermissions = "Permessi"; | ||||
| 	$lblPort = "Porta"; | ||||
| 	$lblRename	= "Rinomina"; | ||||
| 	$lblRenamedTo = "rinominato in"; | ||||
| 	$lblRetry = "Riprova"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Dimensione"; | ||||
| 	$lblFileType = "Tipo"; | ||||
| 	$lblTo = "a"; | ||||
| 	$lblTransferMode = "Modo di trasferimento"; | ||||
| 	$lblTryAgain = "Provi ancora?"; | ||||
| 	$lblUnziped = "unzipped"; | ||||
| 	$lblUp = "Directory superiore"; | ||||
| 	$lblUploadFile	= "Invia file"; | ||||
| 	$lblUser = "Utente"; | ||||
| 	$lblVersion ="Versione"; | ||||
| 	$lblWithUser = "con utente"; | ||||
| 	$lblUnZipFile = "Decomprimi il file"; | ||||
| 	$lblZipFile = "Comprimi il file"; | ||||
| 	$lblPasive = "Modo passivo"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Japanese translation by : Tadashi Jokagi <elf2000@users.sourceforge.net>
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="所有者"; | ||||
| 	$lblGroup="グループ"; | ||||
| 	$lblPublic="その他"; | ||||
| 	$lblRead="読み込み"; | ||||
| 	$lblWrite="書き込み"; | ||||
| 	$lblExecute="実行"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "ファイルサイズが大きすぎます。"; | ||||
| 	$lblAnonymousAccess = "匿名アクセス"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "バイナリ"; | ||||
| 	$lblChangeMode = "バイナリ/ASCII 切り替え"; | ||||
| 	$lblSetPermissions	= "パーミッションを変更する"; | ||||
| 	$lblConnectToFTPServer = "FTP サーバーに接続する"; | ||||
| 	$lblConnectedTo = "接続中サーバー:"; | ||||
| 	$lblCouldNotChangePermissionsFor = "次のパーミッションを変更できませんでした:"; | ||||
| 	$lblCouldNotConnectToServer = "サーバーに接続できませんでした。"; | ||||
| 	$lblCouldNotCreate = "作成できませんでした。"; | ||||
| 	$lblCouldNotDelete = "削除できませんでした。"; | ||||
| 	$lblCouldNotRename = "名称変更できませんでした。"; | ||||
| 	$lblCouldNotUnzip ="zip を展開できませんでした。"; | ||||
| 	$lblCreated = "作成しました。"; | ||||
| 	$lblCreateDirectory	= "ディレクトリを作成する"; | ||||
| 	$lblCurrentDirectory="現在のディレクトリ"; | ||||
| 	$lblCurrentMode = "現在のモード"; | ||||
| 	$lblDate	= "日付"; | ||||
| 	$lblEditFile = "編集する"; | ||||
| 	$lblDelete	= "削除する"; | ||||
| 	$lblDeleted = "削除しました。"; | ||||
| 	$lblDeleteFile	= "ファイルを削除する"; | ||||
| 	$lblDetails = "詳細"; | ||||
| 	$lblDirectory = "ディレクトリ"; | ||||
| 	$lblDirectoryEmpty = "ディレクトリは空です"; | ||||
| 	$lblDisclaimer = "phpWebFTP は*無保証*です。これはフィルーソフトウェアで、特定の制約の元で再配布することが歓迎されています。<A HREF='gpl.txt' style='font-size:7pt;'>ここで</A>完全な GPL license を読みます。"; | ||||
| 	$lblErrorDownloadingFile = "ファイルダウンロード中のエラーです。"; | ||||
| 	$lblFileCouldNotBeUploaded = "ファイルをアップロードできませんでした。"; | ||||
| 	$lblFilePermissionChanged="ファイルパーミッションを変更しました。"; | ||||
| 	$lblCouldNotChangePermissions ="ファイルのパーミッションを変更できませんでした。"; | ||||
| 	$lblFileTasks = "ファイルとフォルダーのタスク"; | ||||
| 	$lblGoToDirectory = "ディレクトリを移動する"; | ||||
| 	$lblIndexOf = "フォルダー:"; | ||||
| 	$lblLogIn ="ログイン"; | ||||
| 	$lblLogOff ="ログアウト"; | ||||
| 	$lblName = "名前"; | ||||
| 	$lblNewName = "新規名称"; | ||||
| 	$lblNotConnected = "接続しませんでした。"; | ||||
| 	$lblNotice = "通知"; | ||||
| 	$lblPassword = "パスワード"; | ||||
| 	$lblLanguage= "言語"; | ||||
| 	$lblPermissions = "パーミッション"; | ||||
| 	$lblPort = "ポート"; | ||||
| 	$lblRename	= "名前を変更する"; | ||||
| 	$lblRenamedTo = "次のように名称変更しました:"; | ||||
| 	$lblRetry = "リトライ"; | ||||
| 	$lblServer = "サーバー"; | ||||
| 	$lblSize = "サイズ"; | ||||
| 	$lblFileType = "種類"; | ||||
| 	$lblTo = "to"; | ||||
| 	$lblTransferMode = "転送モード"; | ||||
| 	$lblTryAgain = "再度試してください..."; | ||||
| 	$lblUnziped = "zip を展開しました。"; | ||||
| 	$lblUp = "上へ"; | ||||
| 	$lblUploadFile	= "ファイルをアップロードする"; | ||||
| 	$lblUser = "ユーザー"; | ||||
| 	$lblVersion ="バージョン"; | ||||
| 	$lblWithUser = "ユーザー名"; | ||||
| 	$lblUnZipFile = "Unzip ファイル"; | ||||
| 	$lblZipFile = "Zip ファイル"; | ||||
| 	$lblPasive = "パッシブ"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Latvian translation by : BlackHalt
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Ipašnieks"; | ||||
| 	$lblGroup="Grupa"; | ||||
| 	$lblPublic="Publisks"; | ||||
| 	$lblRead="Lasišana"; | ||||
| 	$lblWrite="Rakstišana"; | ||||
| 	$lblExecute="Izpildišana"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Faila izmers ir parak liels"; | ||||
| 	$lblAnonymousAccess = "Anonima piekluve"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binary"; | ||||
| 	$lblChangeMode = "Parslegt Binary/ASCII"; | ||||
| 	$lblSetPermissions	= "Mainit piekluves tiesibas"; | ||||
| 	$lblConnectToFTPServer = "Pieslegties FTP serverim"; | ||||
| 	$lblConnectedTo = "Piesledzies pie"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Nevar nomainit piekluves tiesibas"; | ||||
| 	$lblCouldNotConnectToServer = "Nevar pieslegties serverim"; | ||||
| 	$lblCouldNotCreate = "Nevar izveidot"; | ||||
| 	$lblCouldNotDelete = "Nevar izdzest"; | ||||
| 	$lblCouldNotRename = "Nevar parsaukt"; | ||||
| 	$lblCouldNotUnzip ="Nevar atarhivet"; | ||||
| 	$lblCreated = "izveidots"; | ||||
| 	$lblCreateDirectory	= "Direktorijas izveidošana"; | ||||
| 	$lblCurrentDirectory="Tekoša direktorija"; | ||||
| 	$lblCurrentMode = "Tekošais veids"; | ||||
| 	$lblDate	= "Datums"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Izdzest"; | ||||
| 	$lblDeleted = "izdzests"; | ||||
| 	$lblDeleteFile	= "Izdzest failu"; | ||||
| 	$lblDetails = "Detalas"; | ||||
| 	$lblDirectory = "Direktorija"; | ||||
| 	$lblDirectoryEmpty = "Direktorija ir tukša"; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = "Kluda lejupieladejot failu"; | ||||
| 	$lblFileCouldNotBeUploaded = "Failu nevar aušupieladet"; | ||||
| 	$lblFilePermissionChanged="Faila piekluves tiesibas izmainitas"; | ||||
| 	$lblCouldNotChangePermissions ="Failam nevar izmainit piekluves tiesibas"; | ||||
| 	$lblFileTasks = "Failu un direktoriju uzdevumi"; | ||||
| 	$lblGoToDirectory = "Parvietoties uz direktoriju"; | ||||
| 	$lblIndexOf = "Saraksts"; | ||||
| 	$lblLogIn ="Iežurnaleties"; | ||||
| 	$lblLogOff ="Izžurnaleties"; | ||||
| 	$lblName = "Nosaukums"; | ||||
| 	$lblNewName = "Jaunais nosaukums"; | ||||
| 	$lblNotConnected = "Nav piesledzies"; | ||||
| 	$lblNotice = "Pazinojums"; | ||||
| 	$lblPassword = "Parole"; | ||||
| 	$lblLanguage= "Valoda"; | ||||
| 	$lblPermissions = "Piekluves tiesibas"; | ||||
| 	$lblPort = "Ports"; | ||||
| 	$lblRename	= "Parsaukt"; | ||||
| 	$lblRenamedTo = "parsaukts par"; | ||||
| 	$lblRetry = "Atkartot"; | ||||
| 	$lblServer = "Serveris"; | ||||
| 	$lblSize = "Izmers"; | ||||
| 	$lblFileType = "Tips"; | ||||
| 	$lblTo = "uz"; | ||||
| 	$lblTransferMode = "Parsutišanas veids"; | ||||
| 	$lblTryAgain = "Megini velreiz..."; | ||||
| 	$lblUnziped = "atarhivets"; | ||||
| 	$lblUp = "Uz augšu"; | ||||
| 	$lblUploadFile	= "Augšupieladet failu"; | ||||
| 	$lblUser = "Lietotajs"; | ||||
| 	$lblVersion ="Versija"; | ||||
| 	$lblWithUser = "ar lietotaju"; | ||||
| 	$lblUnZipFile = "Atarhivet failu"; | ||||
| 	$lblZipFile = "Saarhivet failu"; | ||||
| 	$lblPasive = "Pasivs"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Latvian translation by : BlackHalt
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Ipašnieks"; | ||||
| 	$lblGroup="Grupa"; | ||||
| 	$lblPublic="Publisks"; | ||||
| 	$lblRead="Lasišana"; | ||||
| 	$lblWrite="Rakstišana"; | ||||
| 	$lblExecute="Izpildišana"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Faila izmers ir parak liels"; | ||||
| 	$lblAnonymousAccess = "Anonima piekluve"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binary"; | ||||
| 	$lblChangeMode = "Parslegt Binary/ASCII"; | ||||
| 	$lblSetPermissions	= "Mainit piekluves tiesibas"; | ||||
| 	$lblConnectToFTPServer = "Pieslegties FTP serverim"; | ||||
| 	$lblConnectedTo = "Piesledzies pie"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Nevar nomainit piekluves tiesibas"; | ||||
| 	$lblCouldNotConnectToServer = "Nevar pieslegties serverim"; | ||||
| 	$lblCouldNotCreate = "Nevar izveidot"; | ||||
| 	$lblCouldNotDelete = "Nevar izdzest"; | ||||
| 	$lblCouldNotRename = "Nevar parsaukt"; | ||||
| 	$lblCouldNotUnzip ="Nevar atarhivet"; | ||||
| 	$lblCreated = "izveidots"; | ||||
| 	$lblCreateDirectory	= "Direktorijas izveidošana"; | ||||
| 	$lblCurrentDirectory="Tekoša direktorija"; | ||||
| 	$lblCurrentMode = "Tekošais veids"; | ||||
| 	$lblDate	= "Datums"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Izdzest"; | ||||
| 	$lblDeleted = "izdzests"; | ||||
| 	$lblDeleteFile	= "Izdzest failu"; | ||||
| 	$lblDetails = "Detalas"; | ||||
| 	$lblDirectory = "Direktorija"; | ||||
| 	$lblDirectoryEmpty = "Direktorija ir tukša"; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = "Kluda lejupieladejot failu"; | ||||
| 	$lblFileCouldNotBeUploaded = "Failu nevar aušupieladet"; | ||||
| 	$lblFilePermissionChanged="Faila piekluves tiesibas izmainitas"; | ||||
| 	$lblCouldNotChangePermissions ="Failam nevar izmainit piekluves tiesibas"; | ||||
| 	$lblFileTasks = "Failu un direktoriju uzdevumi"; | ||||
| 	$lblGoToDirectory = "Parvietoties uz direktoriju"; | ||||
| 	$lblIndexOf = "Saraksts"; | ||||
| 	$lblLogIn ="Iežurnaleties"; | ||||
| 	$lblLogOff ="Izžurnaleties"; | ||||
| 	$lblName = "Nosaukums"; | ||||
| 	$lblNewName = "Jaunais nosaukums"; | ||||
| 	$lblNotConnected = "Nav piesledzies"; | ||||
| 	$lblNotice = "Pazinojums"; | ||||
| 	$lblPassword = "Parole"; | ||||
| 	$lblLanguage= "Valoda"; | ||||
| 	$lblPermissions = "Piekluves tiesibas"; | ||||
| 	$lblPort = "Ports"; | ||||
| 	$lblRename	= "Parsaukt"; | ||||
| 	$lblRenamedTo = "parsaukts par"; | ||||
| 	$lblRetry = "Atkartot"; | ||||
| 	$lblServer = "Serveris"; | ||||
| 	$lblSize = "Izmers"; | ||||
| 	$lblFileType = "Tips"; | ||||
| 	$lblTo = "uz"; | ||||
| 	$lblTransferMode = "Parsutišanas veids"; | ||||
| 	$lblTryAgain = "Megini velreiz..."; | ||||
| 	$lblUnziped = "atarhivets"; | ||||
| 	$lblUp = "Uz augšu"; | ||||
| 	$lblUploadFile	= "Augšupieladet failu"; | ||||
| 	$lblUser = "Lietotajs"; | ||||
| 	$lblVersion ="Versija"; | ||||
| 	$lblWithUser = "ar lietotaju"; | ||||
| 	$lblUnZipFile = "Atarhivet failu"; | ||||
| 	$lblZipFile = "Saarhivet failu"; | ||||
| 	$lblPasive = "Pasivs"; | ||||
| ?>
 | ||||
| @ -1,80 +0,0 @@ | ||||
| <?php | ||||
| 	/* | ||||
| 	Norwegian translation by : | ||||
| 	Knut-Perry G Brumoen | ||||
| 	Perrys DataService (http://www.p-ds.no) | ||||
| 	*/ | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Eier"; | ||||
| 	$lblGroup="Gruppe"; | ||||
| 	$lblPublic="Alle"; | ||||
| 	$lblRead="Les"; | ||||
| 	$lblWrite="Skriv"; | ||||
| 	$lblExecute="Kjørbar"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 	$lblFileSizeTooBig = "Filen er for stor"; | ||||
| 	$lblAnonymousAccess = "Anonym tilgang"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binært"; | ||||
| 	$lblChangeMode = "Bytt mellom Binært/ASCII"; | ||||
| 	$lblSetPermissions	= "Endre rettigheter"; | ||||
| 	$lblConnectToFTPServer = "Koble til FTP-server"; | ||||
| 	$lblConnectedTo = "Tilkoblet"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Kunne ikke skifte rettigheter for"; | ||||
| 	$lblCouldNotConnectToServer = "Kunne ikke kobles til server"; | ||||
| 	$lblCouldNotCreate = "Klarte ikke å opprette"; | ||||
| 	$lblCouldNotDelete = "Klarte ikke å slette"; | ||||
| 	$lblCouldNotRename = "Klarte ikke å omdøpe"; | ||||
| 	$lblCouldNotUnzip ="Klarte ikke å dekomprimere"; | ||||
| 	$lblCreated = "opprettet"; | ||||
| 	$lblCreateDirectory	= "Opprett mappe"; | ||||
| 	$lblCurrentDirectory="Gjeldende mappe"; | ||||
| 	$lblCurrentMode = "Gjeldene modus"; | ||||
| 	$lblDate	= "Dato"; | ||||
| 	$lblEditFile = "Rediger"; | ||||
| 	$lblDelete	= "Slett"; | ||||
| 	$lblDeleted = "slettet"; | ||||
| 	$lblDeleteFile	= "Slett fil"; | ||||
| 	$lblDetails = "Detaljer"; | ||||
| 	$lblDirectory = "Mappe"; | ||||
| 	$lblDirectoryEmpty = "Mappen er tom"; | ||||
| 	$lblDisclaimer = "phpWebFTP er levert uten noen form for garanti. Dette er et gratis program, og du kan redistribuere det under visse vilkår. Les hele GPL lisensen(engelsk) <A HREF='gpl.txt' style='font-size:7pt;'>her</A>"; | ||||
| 	$lblErrorDownloadingFile = "Feil under nedlasting av fil"; | ||||
| 	$lblFileCouldNotBeUploaded = "Filen kunne ikke lastes opp"; | ||||
| 	$lblFilePermissionChanged="Filrettigheter er endret"; | ||||
| 	$lblCouldNotChangePermissions ="Filrettighetene kunne ikke endres"; | ||||
| 	$lblFileTasks = "Fil og mappeoppgaver"; | ||||
| 	$lblGoToDirectory = "Gå til mappe"; | ||||
| 	$lblIndexOf = "Katalogindeks for"; | ||||
| 	$lblLogIn ="Logg inn"; | ||||
| 	$lblLogOff ="Logg ut"; | ||||
| 	$lblName = "Navn"; | ||||
| 	$lblNewName = "Nytt navn"; | ||||
| 	$lblNotConnected = "Ikke tilkoblet"; | ||||
| 	$lblNotice = "Beskjed"; | ||||
| 	$lblPassword = "Passord"; | ||||
| 	$lblLanguage= "Språk"; | ||||
| 	$lblPermissions = "Rettigheter"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Omdøp"; | ||||
| 	$lblRenamedTo = "omdøpt til"; | ||||
| 	$lblRetry = "Prøv på nytt"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Størrelse"; | ||||
| 	$lblFileType = "Type"; | ||||
| 	$lblTo = "til"; | ||||
| 	$lblTransferMode = "Overføringsmodus"; | ||||
| 	$lblTryAgain = "Prøv igjen..."; | ||||
| 	$lblUnziped = "utpakket"; | ||||
| 	$lblUp = "Opp"; | ||||
| 	$lblUploadFile	= "Last opp fil"; | ||||
| 	$lblUser = "Bruker"; | ||||
| 	$lblVersion ="Versjon"; | ||||
| 	$lblWithUser = "med bruker"; | ||||
| 	$lblUnZipFile = "Dekomprimer fil"; | ||||
| 	$lblZipFile = "Zip-fil"; | ||||
| 	$lblPasive = "Passiv"; | ||||
| ?>
 | ||||
| 
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
|     // Polish translation by : Cheater
 | ||||
| 
 | ||||
|     // Change permissions
 | ||||
|     $lblOwner="Właściciel"; | ||||
|     $lblGroup="Grupa"; | ||||
|     $lblPublic="Publiczny"; | ||||
|     $lblRead="Odczyt"; | ||||
|     $lblWrite="Zapis"; | ||||
|     $lblExecute="Wykon"; | ||||
| 
 | ||||
|     //Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Za duży rozmiar pliku"; | ||||
|     $lblAnonymousAccess = "Dostęp anonimowy"; | ||||
|     $lblASCIIMode = "ASCII"; | ||||
|     $lblBinaryMode = "Binarny"; | ||||
|     $lblChangeMode = "Zmień Binarny/ASCII"; | ||||
|     $lblSetPermissions  = "Zmień uprawnienia"; | ||||
|     $lblConnectToFTPServer = "Połącz z serwerem FTP"; | ||||
|     $lblConnectedTo = "Połączony z"; | ||||
|     $lblCouldNotChangePermissionsFor = "Nie można zmienić uprawnień dla"; | ||||
|     $lblCouldNotConnectToServer = "Nie udało się połączyć z serwerem"; | ||||
|     $lblCouldNotCreate = "Nie można utworzyć"; | ||||
|     $lblCouldNotDelete = "Nie można usunąć"; | ||||
|     $lblCouldNotRename = "Nie można zmienić nazwy"; | ||||
|     $lblCouldNotUnzip ="Nie można wypakować"; | ||||
|     $lblCreated = "utworzono"; | ||||
|     $lblCreateDirectory = "Utwórz folder"; | ||||
|     $lblCurrentDirectory="Bieżący folder"; | ||||
|     $lblCurrentMode = "Bieżący tryb"; | ||||
|     $lblDate    = "Data"; | ||||
|     $lblDelete  = "Usuń"; | ||||
| 	$lblEditFile = "Edit"; | ||||
|     $lblDeleted = "usunięto"; | ||||
|     $lblDeleteFile  = "Usuń plik"; | ||||
|     $lblDetails = "Szczegóły"; | ||||
|     $lblDirectory = "Folder"; | ||||
|     $lblDirectoryEmpty = "Folder jest pusty"; | ||||
|     $lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
|     $lblErrorDownloadingFile = "Podczas pobierania pliku wystąpił błąd"; | ||||
|     $lblFileCouldNotBeUploaded = "Nie udało się przesłać pliku"; | ||||
|     $lblFilePermissionChanged="Zmieniono uprawnienia"; | ||||
|     $lblCouldNotChangePermissions ="Nie udało się zminić uprawnień"; | ||||
|     $lblFileTasks = "Zadania"; | ||||
|     $lblGoToDirectory = "Przejdź do folderu"; | ||||
|     $lblIndexOf = "Zawartość folderu:"; | ||||
|     $lblLogIn ="Zaloguj"; | ||||
|     $lblLogOff ="Wyloguj"; | ||||
|     $lblName = "Nazwa"; | ||||
|     $lblNewName = "Nowa nazwa"; | ||||
|     $lblNotConnected = "Nie połączony"; | ||||
|     $lblNotice = "Uwaga"; | ||||
|     $lblPassword = "Hasło"; | ||||
|     $lblLanguage= "Język"; | ||||
|     $lblPermissions = "Uprawnienia"; | ||||
|     $lblPort = "Port"; | ||||
|     $lblRename  = "Zmień nazwę"; | ||||
|     $lblRenamedTo = "zmieniono nazwę na"; | ||||
|     $lblRetry = "Powtórz"; | ||||
|     $lblServer = "Serwer"; | ||||
|     $lblSize = "Rozmiar"; | ||||
|     $lblFileType = "Typ"; | ||||
|     $lblTo = "na"; | ||||
|     $lblTransferMode = "Tryb transferu"; | ||||
|     $lblTryAgain = "Jeszcze raz..."; | ||||
|     $lblUnziped = "wypakowano"; | ||||
|     $lblUp = "W górę"; | ||||
|     $lblUploadFile  = "Prześlij plik"; | ||||
|     $lblUser = "Użytkownik"; | ||||
|     $lblVersion ="Wersja"; | ||||
|     $lblWithUser = "with user"; | ||||
|     $lblUnZipFile = "Wypakuj plik"; | ||||
|     $lblZipFile = "Skompresuj plik"; | ||||
|     $lblPasive = "Pasywny"; | ||||
| ?>
 | ||||
| @ -1,78 +0,0 @@ | ||||
| <?php | ||||
| 	// TraduÆo para o Portugus: Rodrigo Felicio Adriano
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Dono"; | ||||
| 	$lblGroup="Grupo"; | ||||
| 	$lblPublic="Publico"; | ||||
| 	$lblRead="Leitura"; | ||||
| 	$lblWrite="Escrita"; | ||||
| 	$lblExecute="Execução"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Tamanho do arquivo muito grande"; | ||||
| 	$lblAnonymousAccess = "Acesso Anonimo"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binary"; | ||||
| 	$lblChangeMode = "Trocar Binary/ASCII"; | ||||
| 	$lblSetPermissions	= "Alterar Permissões"; | ||||
| 	$lblConnectToFTPServer = "Conectar ao Servidor de FTP"; | ||||
| 	$lblConnectedTo = "Conectado a"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Impossivel alterar permissões para"; | ||||
| 	$lblCouldNotConnectToServer = "Impossivel se conectar ao servidor"; | ||||
| 	$lblCouldNotCreate = "Impossivel criar"; | ||||
| 	$lblCouldNotDelete = "Impossivel apagar"; | ||||
| 	$lblCouldNotRename = "Impossivel renomear"; | ||||
| 	$lblCouldNotUnzip ="Impossivel descompactar"; | ||||
| 	$lblCreated = "criado"; | ||||
| 	$lblCreateDirectory	= "Diretorio Criado"; | ||||
| 	$lblCurrentDirectory="Diretorio atual"; | ||||
| 	$lblCurrentMode = "Modo atual"; | ||||
| 	$lblDate	= "Data"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Apagado"; | ||||
| 	$lblDeleted = "apagado"; | ||||
| 	$lblDeleteFile	= "Arquivo apagado"; | ||||
| 	$lblDetails = "Detalhes"; | ||||
| 	$lblDirectory = "Diretorio"; | ||||
| 	$lblDirectoryEmpty = "Diretorio esta vazio"; | ||||
| 	$lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| 	$lblErrorDownloadingFile = "Erro ao baixar arquivo"; | ||||
| 	$lblFileCouldNotBeUploaded = "Arquivo nao pode ser enviado"; | ||||
| 	$lblFilePermissionChanged="Permissao do arquivo alterada"; | ||||
| 	$lblCouldNotChangePermissions ="Permissao do arquivo não pode ser alterada"; | ||||
| 	$lblFileTasks = "Tarefas de Pastas e Arquivos"; | ||||
| 	$lblGoToDirectory = "Ir para o diretorio"; | ||||
| 	$lblIndexOf = "Index de"; | ||||
| 	$lblLogIn ="Log in"; | ||||
| 	$lblLogOff ="Log off"; | ||||
| 	$lblName = "Nome"; | ||||
| 	$lblNewName = "Novo name"; | ||||
| 	$lblNotConnected = "Nao conectado"; | ||||
| 	$lblNotice = "Noticia"; | ||||
| 	$lblPassword = "Password"; | ||||
| 	$lblLanguage= "Linguagem"; | ||||
| 	$lblPermissions = "Permissoes"; | ||||
| 	$lblPort = "Porta"; | ||||
| 	$lblRename	= "Renomear"; | ||||
| 	$lblRenamedTo = "renomeado para"; | ||||
| 	$lblRetry = "Tentar novamente"; | ||||
| 	$lblServer = "Servidor"; | ||||
| 	$lblSize = "Tamanho"; | ||||
| 	$lblFileType = "Tipo"; | ||||
| 	$lblTo = "para"; | ||||
| 	$lblTransferMode = "Modo de transferencia"; | ||||
| 	$lblTryAgain = "Tente novamente..."; | ||||
| 	$lblUnziped = "descompactado"; | ||||
| 	$lblUp = "Acima"; | ||||
| 	$lblUploadFile	= "Arquivo Enviado"; | ||||
| 	$lblUser = "Usuario"; | ||||
| 	$lblVersion ="Versao"; | ||||
| 	$lblWithUser = "com usuario"; | ||||
| 	$lblUnZipFile = "Arquivo Descompactado"; | ||||
| 	$lblZipFile = "Arquivo Compactado"; | ||||
| 	$lblPasive = "Passive"; | ||||
| ?>
 | ||||
| 
 | ||||
| 
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| // English translation by : azalio
 | ||||
| 
 | ||||
| // Change permissions
 | ||||
| $lblOwner="Тырфхыхі"; | ||||
| $lblGroup="У№ѓяяр"; | ||||
| $lblPublic="Яѓсышїэћщ"; | ||||
| $lblRead="зђхэшх"; | ||||
| $lblWrite="Чряшёќ"; | ||||
| $lblExecute="Тћяюыэхэшх."; | ||||
| 
 | ||||
| //Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "арчьх№ єрщыр ёышјъюь сюыќјющ"; | ||||
| $lblAnonymousAccess = "Рэюэшьэћщ фюёђѓя"; | ||||
| $lblASCIIMode = "ASCII"; | ||||
| $lblBinaryMode = "Binary"; | ||||
| $lblChangeMode = "Ях№хъыўїшђќ Binary/ASCII"; | ||||
| $lblSetPermissions = "Яюьхэџђќ я№ртр фюёђѓяр"; | ||||
| $lblConnectToFTPServer = "бюхфшэшђќёџ ё FTP-ёх№тх№юь"; | ||||
| $lblConnectedTo = "Яюъыўїхэ ъ"; | ||||
| $lblCouldNotChangePermissionsFor = "Эх ьюуѓ яюьхэџђќ я№ртр фыџ"; | ||||
| $lblCouldNotConnectToServer = "Эх ьюуѓ яюфъыўїшђќёџ ъ ёх№тх№ѓ"; | ||||
| $lblCouldNotCreate = "Эх ьюуѓ ёючфрђќ"; | ||||
| $lblCouldNotDelete = "Эх ьюуѓ ѓфрышђќ"; | ||||
| $lblCouldNotRename = "Эх ьюуѓ ях№хшьхэютрђќ"; | ||||
| $lblCouldNotUnzip ="Эх ьюуѓ №рчр№ѕштш№ютрђќ"; | ||||
| $lblCreated = "ёючфрэю"; | ||||
| $lblCreateDirectory = "бючфрэшх фш№хъђю№шш"; | ||||
| $lblCurrentDirectory="вхъѓљрџ фш№хъђю№шџ"; | ||||
| $lblCurrentMode = "вхъѓљшщ №хцшь"; | ||||
| $lblDate = "Фрђр"; | ||||
| $lblEditFile = "Edit"; | ||||
| $lblDelete = "гфрышђќ"; | ||||
| $lblDeleted = "гфрыхэю"; | ||||
| $lblDeleteFile = "гфрышђќ єрщы"; | ||||
| $lblDetails = "Яюф№юсэю"; | ||||
| $lblDirectory = "Фш№хъђю№шџ"; | ||||
| $lblDirectoryEmpty = "Фш№хъђю№шџ яѓёђр"; | ||||
| $lblDisclaimer = "phpWebFTP comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions. Read the full GPL license <A HREF='gpl.txt' style='font-size:7pt;'>here</A>"; | ||||
| $lblErrorDownloadingFile = "Юјшсър я№ш чру№ѓчъх єрщыр"; | ||||
| $lblFileCouldNotBeUploaded = "дрщы эх ьюцхђ сћђќ чру№ѓцхэ"; | ||||
| $lblFilePermissionChanged="Я№ртр фюёђѓяр ъ єрщыѓ шчьхэхэћ"; | ||||
| $lblCouldNotChangePermissions ="Я№ртр фюёђѓяр ъ єрщыѓ эх ьюуѓђ сћђќ шчьхэхэћ"; | ||||
| $lblFileTasks = "Чрфрэшџ фыџ єрщыют ш яряюъ"; | ||||
| $lblGoToDirectory = "Ях№хщђш т фш№хъђю№шў"; | ||||
| $lblIndexOf = "бяшёюъ"; | ||||
| $lblLogIn ="Тющђш"; | ||||
| $lblLogOff ="Тћщђш"; | ||||
| $lblName = "Шьџ"; | ||||
| $lblNewName = "Эютюх шьџ"; | ||||
| $lblNotConnected = "Эх яюфъыўїхэ"; | ||||
| $lblNotice = "гтхфюьыхэшх"; | ||||
| $lblPassword = "Яр№юыќ"; | ||||
| $lblLanguage= "пчћъ"; | ||||
| $lblPermissions = "Я№ртр фюёђѓяр"; | ||||
| $lblPort = "Яю№ђ"; | ||||
| $lblRename = "Ях№хшьхэютрђќ"; | ||||
| $lblRenamedTo = "ях№хшьхэютрђќ "; | ||||
| $lblRetry = "Яютђю№"; | ||||
| $lblServer = "бх№тх№"; | ||||
| $lblSize = "арчьх№"; | ||||
| $lblFileType = "вшя"; | ||||
| $lblTo = "т"; | ||||
| $lblTransferMode = "Ьхђюф ях№хфрїш"; | ||||
| $lblTryAgain = "Яюя№юсѓщђх ёэютр..."; | ||||
| $lblUnziped = "№рёяръютрээю"; | ||||
| $lblUp = "Ттх№ѕ"; | ||||
| $lblUploadFile = "Чру№ѓчър єрщыр"; | ||||
| $lblUser = "Яюыќчютрђхыќ"; | ||||
| $lblVersion ="Тх№ёшџ"; | ||||
| $lblWithUser = "ё яюыќчютрђхыхь"; | ||||
| $lblUnZipFile = "арёяръютрээћщ єрщы"; | ||||
| $lblZipFile = "Чряръютрээћщ єрщы"; | ||||
| $lblPasive = "Ярёёштэћщ"; | ||||
| ?>
 | ||||
| @ -1,79 +0,0 @@ | ||||
| <?php | ||||
| 	// Slovak translation by : Tomáš Hledík - www.arplus.sk
 | ||||
| 	// Date of creation      : 27.02.2005
 | ||||
| 	// Revision for 3.2:	 : 15.04.2006
 | ||||
| 	// Used charset		 : cp1250
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Majite¾"; | ||||
| 	$lblGroup="Skupina"; | ||||
| 	$lblPublic="Ostatní"; | ||||
| 	$lblRead="Èítanie"; | ||||
| 	$lblWrite="Zápis"; | ||||
| 	$lblExecute="Spúš<EFBFBD>."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Súbor je príliš ve¾ký"; | ||||
| 	$lblAnonymousAccess = "Anonymný prístup"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "binárny"; | ||||
| 	$lblChangeMode = "Zmena módu binárny/ASCII"; | ||||
| 	$lblSetPermissions	= "Zmeni<EFBFBD> práva"; | ||||
| 	$lblConnectToFTPServer = "Prihláste sa k FTP serveru"; | ||||
| 	$lblConnectedTo = "Pripojené k"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Nemôžem zmeni<6E> práva pre"; | ||||
| 	$lblCouldNotConnectToServer = "Nemôžem sa pripoji<6A> k serveru"; | ||||
| 	$lblCouldNotCreate = "Nemôžem vytvori<72>"; | ||||
| 	$lblCouldNotDelete = "Nemôžem zmaza<7A>"; | ||||
| 	$lblCouldNotRename = "Nemôžem premenova<76>"; | ||||
| 	$lblCouldNotUnzip ="Nemôžem dekomprimova<76>"; | ||||
| 	$lblCreated = "vytvorený"; | ||||
| 	$lblCreateDirectory	= "Vytvori<EFBFBD> adresár"; | ||||
| 	$lblCurrentDirectory="Aktuálny adresár"; | ||||
| 	$lblCurrentMode = "Aktuálny mód"; | ||||
| 	$lblDate	= "Dátum"; | ||||
| 	$lblDelete	= "Zmaza<EFBFBD>"; | ||||
| 	$lblEditFile = "Upravi<EFBFBD>"; | ||||
| 	$lblDeleted = "zmazaný"; | ||||
| 	$lblDeleteFile	= "Zmaza<EFBFBD>"; | ||||
| 	$lblDetails = "Podrobnosti"; | ||||
| 	$lblDirectory = "Adresár"; | ||||
| 	$lblDirectoryEmpty = "Adresár je prázdny"; | ||||
| 	$lblDisclaimer = "phpWebFTP je vyrobený BEZ AKEJKO¼VEK ZÁRUKY. Toto je vo¾ne šírite¾ný software. Budeme radi, ak ho budete šíri<72> za nezmenených podmienok. Preèítajte si plne znenie GPL licencie <A HREF='gpl.txt' style='font-size:7pt;'>tu.</A>"; | ||||
| 	$lblErrorDownloadingFile = "Chyba pri s<>ahovaní súboru"; | ||||
| 	$lblFileCouldNotBeUploaded = "Súbor nemôže by<62> nahratý"; | ||||
| 	$lblFilePermissionChanged="Súborové práva boli zmenené"; | ||||
| 	$lblCouldNotChangePermissions ="Súborové práva nemohli by<62> zmenené"; | ||||
| 	$lblFileTasks = "Práca so systémom"; | ||||
| 	$lblGoToDirectory = "Prejs<EFBFBD> do adresára"; | ||||
| 	$lblIndexOf = "Zoznam"; | ||||
| 	$lblLogIn ="Prihlási<EFBFBD> sa"; | ||||
| 	$lblLogOff ="Odhlási<EFBFBD> sa"; | ||||
| 	$lblName = "Názov"; | ||||
| 	$lblNewName = "Nový názov"; | ||||
| 	$lblNotConnected = "Nepripojené"; | ||||
| 	$lblNotice = "Oznámenie"; | ||||
| 	$lblPassword = "Heslo"; | ||||
| 	$lblLanguage= "Jazyk"; | ||||
| 	$lblPermissions = "Práva"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Premenova<EFBFBD>"; | ||||
| 	$lblRenamedTo = "premenované na"; | ||||
| 	$lblRetry = "Skúsi<EFBFBD> znovu"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Ve¾kos<EFBFBD>"; | ||||
| 	$lblFileType = "Typ"; | ||||
| 	$lblTo = "na"; | ||||
| 	$lblTransferMode = "Mód prenosu dát"; | ||||
| 	$lblTryAgain = "Skúste to znovu ..."; | ||||
| 	$lblUnziped = "dekomprimované"; | ||||
| 	$lblUp = "O úroveò vyššie"; | ||||
| 	$lblUploadFile	= "Nahra<EFBFBD> súbor"; | ||||
| 	$lblUser = "Užívate¾"; | ||||
| 	$lblVersion ="verzia"; | ||||
| 	$lblWithUser = "s užívate¾om"; | ||||
| 	$lblUnZipFile = "Dekomprimova<EFBFBD> súbor"; | ||||
| 	$lblZipFile = "Komprimova<EFBFBD> soubor"; | ||||
| 	$lblPasive = "Pasívny"; | ||||
| ?>
 | ||||
| @ -1,72 +0,0 @@ | ||||
| <?php | ||||
| 	// Spanish translation by : Diego Martínez Castañeda
 | ||||
| 	 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Propietario"; | ||||
| 	$lblGroup="Grupo"; | ||||
| 	$lblPublic="Público"; | ||||
| 	$lblRead="Lectura"; | ||||
| 	$lblWrite="Escritura"; | ||||
| 	$lblExecute="Ejecución"; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
| 	$lblFileSizeTooBig = "El fichero es demasiado grande"; | ||||
| 	$lblAnonymousAccess = "Acceso anónimo"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binario"; | ||||
| 	$lblChangeMode = "Intercambiar Binario/ASCII"; | ||||
| 	$lblChangePermissions	= "Cambiar permisos"; | ||||
| 	$lblConnectToFTPServer = "Conectar a un servidor FTP"; | ||||
| 	$lblConnectedTo = "Conectado a"; | ||||
| 	$lblCouldNotChangePermissionsFor = "No se pueden cambiar los permisos para"; | ||||
| 	$lblCouldNotConnectToServer = "No se pudo conectar al servidor"; | ||||
| 	$lblCouldNotCreate = "No se pudo crear"; | ||||
| 	$lblCouldNotDelete = "No se pudo borrar"; | ||||
| 	$lblCouldNotRename = "No se pudo renombrar"; | ||||
| 	$lblCouldNotUnzip ="No se pudo descomprimir"; | ||||
| 	$lblCreated = "creado"; | ||||
| 	$lblCreateDirectory	= "Crear directorio"; | ||||
| 	$lblCurrentDirectory="Directorio actual"; | ||||
| 	$lblCurrentMode = "Modo actual"; | ||||
| 	$lblDate	= "Fecha"; | ||||
| 	$lblEditFile = "Edit"; | ||||
| 	$lblDelete	= "Borrar"; | ||||
| 	$lblDeleted = "borrado"; | ||||
| 	$lblDeleteFile	= "Borrar fichero"; | ||||
| 	$lblDetails = "Detalles"; | ||||
| 	$lblDirectory = "Directorio"; | ||||
| 	$lblDirectoryEmpty = "El directorio está vació"; | ||||
| 	$lblDisclaimer = "phpWebFTP se distribuye SIN NINGUNA GARANTÍA. phpWebFTP es software libre y usted puede redistruirlo bajo ciertas condiciones. Lea la licencia GPL <A HREF='gpl.txt' style='font-size:7pt;'>aquí</A>"; | ||||
| 	$lblErrorDownloadingFile = "Error descargando el fichero"; | ||||
| 	$lblFileCouldNotBeUploaded = "El fichero no puede ser actualizado"; | ||||
| 	$lblFilePermissionChanged="Se han cambiado los permisos del fichero"; | ||||
| 	$lblFileTasks = "Tareas de ficheros y directorios"; | ||||
| 	$lblGoToDirectory = "Ir al directorio"; | ||||
| 	$lblLogIn ="Acceder"; | ||||
| 	$lblLogOff ="Salir"; | ||||
| 	$lblName = "Nombre"; | ||||
| 	$lblNewName = "Nuevo nombre"; | ||||
| 	$lblNotConnected = "No conectado"; | ||||
| 	$lblNotice = "Noticia"; | ||||
| 	$lblPassword = "Contraseña"; | ||||
| 	$lblLanguage = "Idioma"; | ||||
| 	$lblPermissions = "Permisos"; | ||||
| 	$lblPort = "Puerto"; | ||||
| 	$lblRename	= "Renombrar"; | ||||
| 	$lblRenamedTo = "renombrado a"; | ||||
| 	$lblRetry = "Reintentar"; | ||||
| 	$lblServer = "Servidor"; | ||||
| 	$lblSize = "Tamaño"; | ||||
| 	$lblFileType = "Tipo"; | ||||
| 	$lblTo = "a"; | ||||
| 	$lblTransferMode = "Modo de transferencia"; | ||||
| 	$lblTryAgain = "Intentar otra vez..."; | ||||
| 	$lblUnziped = "descomprimido"; | ||||
| 	$lblUp = "Arriba"; | ||||
| 	$lblUploadFile	= "Subir fichero"; | ||||
| 	$lblUser = "Usuario"; | ||||
| 	$lblVersion ="Versión"; | ||||
| 	$lblWithUser = "con usuario"; | ||||
| 	$lblPasive = "Passive"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| 	// Swedish translation by : vicec
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Ägare"; | ||||
| 	$lblGroup="Grupp"; | ||||
| 	$lblPublic="Publik"; | ||||
| 	$lblRead="Läs"; | ||||
| 	$lblWrite="Skriv"; | ||||
| 	$lblExecute="Kör."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
| 	$lblFileSizeTooBig = "Filen är för stor"; | ||||
| 	$lblAnonymousAccess = "Anonym åtkomst"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "Binär"; | ||||
| 	$lblChangeMode = "Ändra Binär/ASCII"; | ||||
| 	$lblSetPermissions	= "Ändra rättigheter"; | ||||
| 	$lblConnectToFTPServer = "Anslut till FTP Server"; | ||||
| 	$lblConnectedTo = "Ansluten till"; | ||||
| 	$lblCouldNotChangePermissionsFor = "Kunde inte ändra rättigheter för"; | ||||
| 	$lblCouldNotConnectToServer = "Kunde inte ansluta till servern"; | ||||
| 	$lblCouldNotCreate = "Kunde inte skapa"; | ||||
| 	$lblCouldNotDelete = "Kunde inte radera"; | ||||
| 	$lblCouldNotRename = "Kunde inte byta namn"; | ||||
| 	$lblCouldNotUnzip ="Kunde inte komprimera upp"; | ||||
| 	$lblCreated = "skapad"; | ||||
| 	$lblCreateDirectory	= "Skapa mapp"; | ||||
| 	$lblCurrentDirectory="Aktuell mapp"; | ||||
| 	$lblCurrentMode = "Aktuell inställning"; | ||||
| 	$lblDate	= "Datum"; | ||||
| 	$lblEditFile = "Editera"; | ||||
| 	$lblDelete	= "Radera"; | ||||
| 	$lblDeleted = "raderad"; | ||||
| 	$lblDeleteFile	= "Radera fil"; | ||||
| 	$lblDetails = "Detaljer"; | ||||
| 	$lblDirectory = "Mapp"; | ||||
| 	$lblDirectoryEmpty = "Mappen är tom"; | ||||
| 	$lblDisclaimer = "phpWebFTP kommer UTAN NÅGRA GARANTIER. Detta är ett fritt program, och du är välkommen att distribuera det på nytt under vissa bestämmelser. Läs den fulla GPL licensen <A HREF='gpl.txt' style='font-size:7pt;'>här</A>"; | ||||
| 	$lblErrorDownloadingFile = "Fel vid filnerladdning"; | ||||
| 	$lblFileCouldNotBeUploaded = "Filen kunde inte laddas upp"; | ||||
| 	$lblFilePermissionChanged="Filrättigheter ändrat"; | ||||
| 	$lblCouldNotChangePermissions ="Filrättigheterna kunde inte ändras"; | ||||
| 	$lblFileTasks = "Fil och Mapp uppgift"; | ||||
| 	$lblGoToDirectory = "Gå till mapp"; | ||||
| 	$lblIndexOf = "Indexering av"; | ||||
| 	$lblLogIn ="Logga in"; | ||||
| 	$lblLogOff ="Logga ut"; | ||||
| 	$lblName = "Namn"; | ||||
| 	$lblNewName = "Nytt namn"; | ||||
| 	$lblNotConnected = "Inte ansluten"; | ||||
| 	$lblNotice = "Notis"; | ||||
| 	$lblPassword = "Lösenord"; | ||||
| 	$lblLanguage= "Språk"; | ||||
| 	$lblPermissions = "Rättigheter"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Byt namn"; | ||||
| 	$lblRenamedTo = "omdöpt till"; | ||||
| 	$lblRetry = "Försök igen"; | ||||
| 	$lblServer = "Server"; | ||||
| 	$lblSize = "Storlek"; | ||||
| 	$lblFileType = "Typ"; | ||||
| 	$lblTo = "till"; | ||||
| 	$lblTransferMode = "Överföringssätt"; | ||||
| 	$lblTryAgain = "Försök igen..."; | ||||
| 	$lblUnziped = "unzippad"; | ||||
| 	$lblUp = "Upp"; | ||||
| 	$lblUploadFile	= "Ladda upp fil"; | ||||
| 	$lblUser = "Användare"; | ||||
| 	$lblVersion ="Version"; | ||||
| 	$lblWithUser = "med användaren"; | ||||
| 	$lblUnZipFile = "Unzippa fil"; | ||||
| 	$lblZipFile = "Komprimera fil"; | ||||
| 	$lblPasive = "Passiv"; | ||||
| ?>
 | ||||
| @ -1,77 +0,0 @@ | ||||
| <?php | ||||
| 	// Turkish translation by : Mehmet Cem BOZKIRAN
 | ||||
| 
 | ||||
| 	// Change permissions
 | ||||
| 	$lblOwner="Sahip"; | ||||
| 	$lblGroup="Grup"; | ||||
| 	$lblPublic="Yerel"; | ||||
| 	$lblRead="Okuma"; | ||||
| 	$lblWrite="Yazma"; | ||||
| 	$lblExecute="Exec."; | ||||
| 
 | ||||
| 	//Front End
 | ||||
| 
 | ||||
|     $lblFileSizeTooBig = "Dosya boyutu çok büyük"; | ||||
| 	$lblAnonymousAccess = "Misafir Girişi"; | ||||
| 	$lblASCIIMode = "ASCII"; | ||||
| 	$lblBinaryMode = "İkilik"; | ||||
| 	$lblChangeMode = "İkili Anahtar/ASCII"; | ||||
| 	$lblSetPermissions	= "Yetkileri değiştir"; | ||||
| 	$lblConnectToFTPServer = "FTP sunucuya bağlan"; | ||||
| 	$lblConnectedTo = "Bağlı"; | ||||
| 	$lblCouldNotChangePermissionsFor = "İçin yetki degiştirilemedi"; | ||||
| 	$lblCouldNotConnectToServer = "Servis sağlayıcıya bağlanılamadı"; | ||||
| 	$lblCouldNotCreate = "Yaratılamadı"; | ||||
| 	$lblCouldNotDelete = "Silinemedi"; | ||||
| 	$lblCouldNotRename = "Tekrar adlandırılamadı"; | ||||
| 	$lblCouldNotUnzip ="Açılamadı"; | ||||
| 	$lblCreated = "yaratıldı"; | ||||
| 	$lblCreateDirectory	= "Dizin Yarat"; | ||||
| 	$lblCurrentDirectory="Geçerli Dizin"; | ||||
| 	$lblCurrentMode = "Geçerli Biçim"; | ||||
| 	$lblDate	= "Tarih"; | ||||
| 	$lblEditFile = "Düzenle"; | ||||
| 	$lblDelete	= "Sil"; | ||||
| 	$lblDeleted = "silindi"; | ||||
| 	$lblDeleteFile	= "Dosyayi sil"; | ||||
| 	$lblDetails = "Ayrintilar"; | ||||
| 	$lblDirectory = "Dizin"; | ||||
| 	$lblDirectoryEmpty = "Dizin boş"; | ||||
| 	$lblDisclaimer = "phpWebFtp kesinlikle garanti belgesi içermez, belirli şartlar altında tekrar dağıtabilirsiniz. GPL izninin tamamını okuyunuz.
 | ||||
|  	<A HREF='gpl.txt' style='font-size:7pt;'>Burasi</A>";
 | ||||
| 	$lblErrorDownloadingFile = "Dosyayı yükleme hatası"; | ||||
| 	$lblFileCouldNotBeUploaded = "Dosya güncellenemedi"; | ||||
| 	$lblFilePermissionChanged="Dosya izni değiştirildi"; | ||||
| 	$lblCouldNotChangePermissions ="Dosya izni değiştirilemedi"; | ||||
| 	$lblFileTasks = "Dosya ve dosyaları içeren dosya görevleri"; | ||||
| 	$lblGoToDirectory = "Dizine git"; | ||||
| 	$lblIndexOf = "İçerigi"; | ||||
| 	$lblLogIn ="Giriş"; | ||||
| 	$lblLogOff ="Çıkış"; | ||||
| 	$lblName = "Ad"; | ||||
| 	$lblNewName = "Yeni Ad"; | ||||
| 	$lblNotConnected = "Bağlantı sağlanamadı"; | ||||
| 	$lblNotice = "Dikkat"; | ||||
| 	$lblPassword = "Şifre"; | ||||
| 	$lblLanguage= "Dil"; | ||||
| 	$lblPermissions = "Yetkiler"; | ||||
| 	$lblPort = "Port"; | ||||
| 	$lblRename	= "Tekrar isimlendir"; | ||||
| 	$lblRenamedTo = "Tekrar isimlendirilmiş"; | ||||
| 	$lblRetry = "Yeniden Dene"; | ||||
| 	$lblServer = "Sunucu"; | ||||
| 	$lblSize = "Boyut"; | ||||
| 	$lblFileType = "Tip"; | ||||
| 	$lblTo = "e"; | ||||
| 	$lblTransferMode = "Geçiş modu"; | ||||
| 	$lblTryAgain = "Tekrar dene..."; | ||||
| 	$lblUnziped = "sıkıştırılmamış"; | ||||
| 	$lblUp = "Yukarı"; | ||||
| 	$lblUploadFile	= "Dosyayı Güncelle"; | ||||
| 	$lblUser = "Kullanıcı"; | ||||
| 	$lblVersion ="Versiyon"; | ||||
| 	$lblWithUser = "Kullanıcı Adı:"; | ||||
| 	$lblUnZipFile = "Dosyayı Aç"; | ||||
| 	$lblZipFile = "Sıkıştırılmış Dosya"; | ||||
| 	$lblPasive = "Pasif"; | ||||
| ?>
 | ||||
| @ -1,76 +0,0 @@ | ||||
| <?php | ||||
| // Ukrainian translation by Alex Rotooff (rootoff at pisem dot net)
 | ||||
| 
 | ||||
| // Change permissions
 | ||||
| $lblOwner="Власник"; | ||||
| $lblGroup="Група"; | ||||
| $lblPublic="Публічний"; | ||||
| $lblRead="Читання"; | ||||
| $lblWrite="Запис"; | ||||
| $lblExecute="Виконанння"; | ||||
| 
 | ||||
| //Front End
 | ||||
| 
 | ||||
| $lblFileSizeTooBig = "Розмір файлу завеликий"; | ||||
| $lblAnonymousAccess = "Анонімний доступ"; | ||||
| $lblASCIIMode = "ASCII"; | ||||
| $lblBinaryMode = "Binary"; | ||||
| $lblChangeMode = "Перемкнути Binary/ASCII"; | ||||
| $lblSetPermissions = "Змінити права доступу"; | ||||
| $lblConnectToFTPServer = "З'єднатись із FTP-сервером"; | ||||
| $lblConnectedTo = "Під'єднано до"; | ||||
| $lblCouldNotChangePermissionsFor = "Неможливо змінити права для"; | ||||
| $lblCouldNotConnectToServer = "Неможливо під'єднатись до сервера"; | ||||
| $lblCouldNotCreate = "Неможливо створити"; | ||||
| $lblCouldNotDelete = "Неможливо видалити"; | ||||
| $lblCouldNotRename = "Неможливо перейменувати"; | ||||
| $lblCouldNotUnzip ="Неможливо розпакувати"; | ||||
| $lblCreated = "створено"; | ||||
| $lblCreateDirectory = "Створити директорію"; | ||||
| $lblCurrentDirectory="Поточна директорія"; | ||||
| $lblCurrentMode = "Поточний режим"; | ||||
| $lblDate = "Дата"; | ||||
| $lblEditFile = "Редагувати"; | ||||
| $lblDelete = "Видалити"; | ||||
| $lblDeleted = "Видалено"; | ||||
| $lblDeleteFile = "Видалити файл"; | ||||
| $lblDetails = "Докладно"; | ||||
| $lblDirectory = "Директорія"; | ||||
| $lblDirectoryEmpty = "Директорія порожня"; | ||||
| $lblDisclaimer = "phpWebFTP розповсюджується БЕЗ НІЯКИХ ГАРАНТІЙ. Це безкоштовне програмне забезпечення, Ви можете розповсюджувати його за тих же умов. Прочитайте повністю ліцензію GPL <A HREF='gpl.txt' style='font-size:7pt;'>тут</A>"; | ||||
| $lblErrorDownloadingFile = "Помилка при завантаженні файлу"; | ||||
| $lblFileCouldNotBeUploaded = "Файл неможливо завантажити"; | ||||
| $lblFilePermissionChanged="Права доступу до файлу змінено"; | ||||
| $lblCouldNotChangePermissions ="Права доступу до файлу неможливо змінити"; | ||||
| $lblFileTasks = "Завдання для файлів та директорій"; | ||||
| $lblGoToDirectory = "Перейти в директорію"; | ||||
| $lblIndexOf = "Список"; | ||||
| $lblLogIn ="Ввійти"; | ||||
| $lblLogOff ="Вийти"; | ||||
| $lblName = "Ім'я"; | ||||
| $lblNewName = "Нове ім'я"; | ||||
| $lblNotConnected = "Не під'єднано"; | ||||
| $lblNotice = "Повідомлення"; | ||||
| $lblPassword = "Пароль"; | ||||
| $lblLanguage= "Мова"; | ||||
| $lblPermissions = "Права доступу"; | ||||
| $lblPort = "Порт"; | ||||
| $lblRename = "Перейменувати"; | ||||
| $lblRenamedTo = "перейменувати "; | ||||
| $lblRetry = "Повторити"; | ||||
| $lblServer = "Сервер"; | ||||
| $lblSize = "Розмір"; | ||||
| $lblFileType = "Тип"; | ||||
| $lblTo = "на"; | ||||
| $lblTransferMode = "Метод передавання"; | ||||
| $lblTryAgain = "Спробуйте знову..."; | ||||
| $lblUnziped = "розпаковано"; | ||||
| $lblUp = "Вгору"; | ||||
| $lblUploadFile = "Завантаження файлу"; | ||||
| $lblUser = "Користувач"; | ||||
| $lblVersion ="Версія"; | ||||
| $lblWithUser = "з користувачем"; | ||||
| $lblUnZipFile = "Розпакований файл"; | ||||
| $lblZipFile = "Запакований файл"; | ||||
| $lblPasive = "Пасивний"; | ||||
| ?>
 | ||||
| @ -1,218 +0,0 @@ | ||||
| var selectItem = ""; | ||||
| var renameOn = false; | ||||
| var permissionsOn = false; | ||||
| permission=""; | ||||
| 
 | ||||
| function logOff() { | ||||
| 	document.actionform.actionType.value="logoff"; | ||||
| 	document.actionform.submit(); | ||||
| } | ||||
| 
 | ||||
| function submitForm(action, file, file2) | ||||
| { | ||||
|   document.actionform.actionType.value = action; | ||||
|   document.actionform.file.value = file; | ||||
|   document.actionform.file2.value = file2; | ||||
|   document.actionform.submit(); | ||||
| }; | ||||
| 
 | ||||
| function toggle(layer) { | ||||
| 	if (document.getElementById(layer).style.display=="none") | ||||
| 	{ | ||||
| 		document.getElementById(layer).style.display=""; | ||||
| 	} else { | ||||
| 		document.getElementById(layer).style.display="none"; | ||||
| 	} | ||||
| } | ||||
| function setNewFileName() | ||||
| { | ||||
| 	if(renameOn) { | ||||
| 		document.getElementById("renameFileEntry").style.display="none"; | ||||
| 		renameOn = false; | ||||
| 	} else { | ||||
| 		document.actionform.actionType.value="rename"; | ||||
| 		document.getElementById("renameFileEntry").style.display=""; | ||||
| 		document.renameFile.newName.value=document.actionform.file.value; | ||||
| 		document.renameFile.newName.focus(); | ||||
| 		renameOn=true; | ||||
| 	} | ||||
| }; | ||||
| 
 | ||||
| function renameItem() | ||||
| { | ||||
| 	oldName = document.actionform.file.value; | ||||
| 	newName = document.renameFile.newName.value | ||||
| 	if (confirm("rename " + document.actionform.file.value + " to " + document.renameFile.newName.value + "?\n")) | ||||
| 	{ | ||||
| 		submitForm("rename", oldName, newName) | ||||
| 	} | ||||
| }; | ||||
| 
 | ||||
| function setPermissions() | ||||
| { | ||||
| 	if(permissionsOn) { | ||||
| 		document.actionform.actionType.value=""; | ||||
| 		document.getElementById("setPermissions").style.display="none"; | ||||
| 		permissionsOn = false; | ||||
| 	} else { | ||||
| 		document.actionform.actionType.value="chmod"; | ||||
| 		document.getElementById("setPermissions").style.display=""; | ||||
| 		permission=document.actionform.permissions.value; | ||||
| 		permissionsOn = true; | ||||
| 
 | ||||
| 		Or=permission.substring(1,2); | ||||
| 		Gr=permission.substring(4,5); | ||||
| 		Pr=permission.substring(7,8); | ||||
| 
 | ||||
| 		Ow=permission.substring(2,3); | ||||
| 		Gw=permission.substring(5,6); | ||||
| 		Pw=permission.substring(8,9); | ||||
| 
 | ||||
| 		Ox=permission.substring(3,4); | ||||
| 		Gx=permission.substring(6,7); | ||||
| 		Px=permission.substring(9,10); | ||||
| 
 | ||||
| 		focus(); | ||||
| 		if(Or!="-") { permissions.iOr.checked = true } | ||||
| 		if(Gr!="-") { permissions.iGr.checked = true } | ||||
| 		if(Pr!="-") { permissions.iPr.checked = true } | ||||
| 
 | ||||
| 		if(Ow!="-") { permissions.iOw.checked = true } | ||||
| 		if(Gw!="-") { permissions.iGw.checked = true } | ||||
| 		if(Pw!="-") { permissions.iPw.checked = true } | ||||
| 
 | ||||
| 		if(Ox!="-") { permissions.iOx.checked = true } | ||||
| 		if(Gx!="-") { permissions.iGx.checked = true } | ||||
| 		if(Px!="-") { permissions.iPx.checked = true } | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| function resetEntries() | ||||
| { | ||||
| 	document.actionform.actionType.value = ""; | ||||
| 	document.actionform.delaction.value = ""; | ||||
| 	document.actionform.file.value = ""; | ||||
| 	document.actionform.file2.value = ""; | ||||
| 
 | ||||
| 	counter=0; | ||||
| 
 | ||||
| 	while(document.getElementById("filename" + counter)) { | ||||
| 	  document.getElementById("filename" + counter).style.background = "#F7F7F7"; | ||||
| 	  document.getElementById("filename" + counter).style.color = "black"; | ||||
| 	  counter++; | ||||
| 	} | ||||
| 
 | ||||
| 	document.getElementById("setPermissions").style.display="none"; | ||||
| 	permissionsOn = false; | ||||
| 
 | ||||
| 	document.getElementById("renameFileEntry").style.display="none"; | ||||
| 	renameOn = false; | ||||
| 
 | ||||
| 	document.getElementById("fileactions").style.display="none"; | ||||
| 
 | ||||
| } | ||||
| 
 | ||||
| function selectEntry(action, file, item, permissions, delaction) | ||||
| { | ||||
|   resetEntries() | ||||
|   document.actionform.actionType.value = action; | ||||
|   document.actionform.delaction.value = delaction; | ||||
|   document.actionform.file.value = file; | ||||
|   document.actionform.permissions.value = permissions; | ||||
|   document.actionform.extension.value = file.substr(file.length-3,3); | ||||
|   document.getElementById(item).style.color = "#FFFFFF"; | ||||
|   document.getElementById(item).style.background = "#316AC5"; | ||||
|   selectItem=item; | ||||
|   document.getElementById("fileactions").style.display=""; | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| function createDirectory(directory) | ||||
| { | ||||
|   if(directory) | ||||
|   {submitForm("createdir", directory);} | ||||
|   else | ||||
|   {alert('Enter a directory name first');} | ||||
| }; | ||||
| 
 | ||||
| function changeMode(mode) | ||||
| { | ||||
|   document.actionform.mode.value = mode; | ||||
|   document.actionform.submit(); | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| function deleteFile() | ||||
| { | ||||
| 	if (confirm("Really delete this Item ?\n")) | ||||
| 	{ | ||||
| 		document.actionform.actionType.value = document.actionform.delaction.value; | ||||
| 		document.actionform.submit(); | ||||
| 	} | ||||
| }; | ||||
| 
 | ||||
| function editFile() | ||||
| { | ||||
| 	if(document.actionform.delaction.value == "delfile") { | ||||
| 		document.actionform.actionType.value = "edit"; | ||||
| 		document.actionform.submit(); | ||||
| 	} else { | ||||
| 		alert("Sorry, this function is only available for files"); | ||||
| 	} | ||||
| }; | ||||
| 
 | ||||
| function zipFile() | ||||
| { | ||||
| 	if(document.actionform.delaction.value == "deldir") { | ||||
| 		document.actionform.actionType.value = "getzip"; | ||||
| 		document.actionform.submit(); | ||||
| 	} else { | ||||
| 		alert("Sorry, this function is only available for directories"); | ||||
| 	} | ||||
| }; | ||||
| 
 | ||||
| function cancelEditFile() | ||||
| { | ||||
| 	document.editFileForm.actionType.value = ""; | ||||
| 	document.editFileForm.submit(); | ||||
| } | ||||
| 
 | ||||
| function Confirmation(URL) | ||||
| { | ||||
|   if (confirm("Really delete this Item ?\n")) | ||||
|   {location = String(URL);} | ||||
|   else | ||||
|   { | ||||
| 	  //Do nothing
 | ||||
|   } | ||||
| }; | ||||
| 
 | ||||
| function ConfirmationUnzip(URL) | ||||
| { | ||||
|   if (confirm("Unzip File in the current dir ?\n")) | ||||
|   {location = String(URL);} | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| function changePermissions() | ||||
| { | ||||
| 	O=0; | ||||
| 	P=0; | ||||
| 	G=0; | ||||
| 
 | ||||
| 	if(permissions.iOr.checked == true) { O=O+4 } | ||||
| 	if(permissions.iGr.checked == true) { G=G+4 } | ||||
| 	if(permissions.iPr.checked == true) { P=P+4 } | ||||
| 
 | ||||
| 	if(permissions.iOw.checked == true) { O=O+2 } | ||||
| 	if(permissions.iGw.checked == true) { G=G+2 } | ||||
| 	if(permissions.iPw.checked == true) { P=P+2 } | ||||
| 
 | ||||
| 	if(permissions.iOx.checked == true) { O=O+1 } | ||||
| 	if(permissions.iGx.checked == true) { G=G+1 } | ||||
| 	if(permissions.iPx.checked == true) { P=P+1 } | ||||
| 
 | ||||
| 	document.actionform.permissions.value=O+""+G+""+P; | ||||
| 	document.actionform.action.value="chmod"; | ||||
| 	document.actionform.submit() | ||||
| } | ||||
| @ -1,289 +0,0 @@ | ||||
| <?PHP | ||||
| /** SS_ZIP class is designed to work with ZIP archives | ||||
| @author Yuriy Horobey, smiledsoft.com | ||||
| @email info@smiledsoft.com | ||||
| 
 | ||||
| Added zipDirTree function to add a directory recursively | ||||
| 
 | ||||
| */ | ||||
| class ss_zip{ | ||||
| 	/** contains whole zipfile | ||||
| 	@see ss_zip::archive() | ||||
| 	@see ss_zip::ss_zip() | ||||
| 	*/ | ||||
| 	var $zipfile=""; | ||||
| 	/** compression level	*/ | ||||
| 	var $complevel=6;  | ||||
| 	/** entry counter */ | ||||
| 	var $cnt=0; | ||||
| 	/** current offset in zipdata segment */ | ||||
| 	var $offset=0; | ||||
| 	/** index of current entry  | ||||
| 		@see ss_zip::read() | ||||
| 	*/ | ||||
| 	var $idx=0; | ||||
| 	/** | ||||
| 	ZipData segment, each element of this array contains local file header plus zipped data | ||||
| 	*/ | ||||
| 	var $zipdata=array(); | ||||
| 	/**	central directory array	*/ | ||||
| 	var $cdir=array(); | ||||
| 	/**	constructor | ||||
| 	@param string zipfile if not empty must contain path to valid zip file, ss_zip will try to open and parse it. | ||||
| 	If this parameter is empty, the new empty zip archive is created. This parameter has no meaning in LIGHT verion, please upgrade to PROfessional version. | ||||
| 	@param int complevel compression level, 1-minimal compression, 9-maximal, default is 6 | ||||
| 	*/ | ||||
| 	function ss_zip($zipfile="",$complevel=6){ | ||||
| 		$this->clear(); | ||||
| 		if($complevel<1)$complevel=1; | ||||
| 		if($complevel>9)$complevel=9; | ||||
| 		$this->complevel=$complevel; | ||||
| 		$this->open($zipfile); | ||||
| 	} | ||||
| 
 | ||||
| 	function zipDirTree($dir, $baseDir) { | ||||
| 	   $d = dir($dir); | ||||
| 	   while (false !== ($entry = $d->read())) { | ||||
| 		   //If entry is a directory zip this directory
 | ||||
| 		   if($entry != '.' && $entry != '..' && is_dir($dir.$entry)) { | ||||
| 			   //$arDir[$entry] = $this->zipDirTree($dir.$entry."/",$baseDir);
 | ||||
| 			   $this->zipDirTree($dir.$entry."/",$baseDir); | ||||
| 		   } | ||||
| 		   //Add file to zip
 | ||||
| 		   if($entry!="." and $entry!=".." and !is_dir($dir.$entry)) { | ||||
| 			    //print "Addding file $dir$entry to zip under name " . str_replace($baseDir, "/", $dir.$entry) . "<br>";
 | ||||
| 				$this -> add_file($dir.$entry, str_replace($baseDir, "/", $dir.$entry));    | ||||
| 		   } | ||||
| 	   } | ||||
| 	   $d->close(); | ||||
| 	   return; | ||||
| 	} | ||||
| 	 | ||||
| 	/**Resets the objec, clears all the structures | ||||
| 	*/ | ||||
| 	function clear(){ | ||||
| 		$this->zipfile=""; | ||||
| 		$this->complevel=6;  | ||||
| 		$this->cnt=0; | ||||
| 		$this->offset=0; | ||||
| 		$this->idx=0; | ||||
| 		$this->zipdata=array(); | ||||
| 		$this->cdir=array(); | ||||
| 	} | ||||
| 		/**opens zip file. | ||||
| 		<center><hr nashade>*** This functionality is available in PRO version only. ***<br><a href='http://smiledsoft.com/demos/phpzip/' target='_blank'>please upgrade </a><hr nashade></center> | ||||
| 	This function opens file pointed by zipfile parameter and creates all necessary structures | ||||
| 	@param str zipfile path to the file | ||||
| 	@param bool append if true the newlly opened archive will be appended to existing object structure | ||||
| 	*/	 | ||||
| 	function open($zipfile, $append=false){} | ||||
| 	 | ||||
| 	 | ||||
| 	/**saves to the disc or sends zipfile to the browser. | ||||
| 	@param str zipfile path under which to store the file on the server or file name under which the browser will receive it. | ||||
| 	If you are saving to the server, you are responsible to obtain appropriate write permissions for this operation. | ||||
| 	@param char where indicates where should the file be sent  | ||||
| 	<ul> | ||||
| 	<li>'f' -- filesystem </li> | ||||
| 	<li>'b' -- browser</li> | ||||
| 	</ul> | ||||
| 	Please remember that there should not be any other output before you call this function. The only exception is | ||||
| 	that other headers may be sent. See <a href='http://php.net/header' target='_blank'>http://php.net/header</a> | ||||
| 	*/ | ||||
| 	function save($zipfile, $where='f'){ | ||||
| 		if(!$this->zipfile)$this->archive(); | ||||
| 		$zipfile=trim($zipfile); | ||||
| 		 | ||||
| 		if(strtolower(trim($where))=='f'){ | ||||
| 			 $this->_write($zipfile,$this->zipfile); | ||||
| 		}else{ | ||||
| 			$zipfile = basename($zipfile); | ||||
| 			header("Content-type: application/octet-stream"); | ||||
| 			header("Content-disposition: attachment; filename=\"$zipfile\"");
 | ||||
| 			print $this->archive(); | ||||
| 		}	 | ||||
| 	} | ||||
| 	 | ||||
| 	/** adds data to zip file | ||||
| 	@param str filename path under which the content of data parameter will be stored into the zip archive | ||||
| 	@param str data content to be stored under name given by path parameter | ||||
| 	@see ss_zip::add_file() | ||||
| 	*/ | ||||
| 	function add_data($filename,$data=null){ | ||||
| 
 | ||||
| 		$filename=trim($filename); | ||||
| 		$filename=str_replace('\\', '/', $filename); | ||||
| 		if($filename[0]=='/') $filename=substr($filename,1); | ||||
| 
 | ||||
| 		if( ($attr=(($datasize = strlen($data))?32:16))==32 ){ | ||||
| 			$crc	=	crc32($data); | ||||
| 			$gzdata = gzdeflate($data,$this->complevel); | ||||
| 			$gzsize	=	strlen($gzdata); | ||||
| 			$dir=dirname($filename); | ||||
| //			if($dir!=".") $this->add_data("$dir/");
 | ||||
| 		}else{ | ||||
| 			$crc	=	0; | ||||
| 			$gzdata = 	""; | ||||
| 			$gzsize	=	0; | ||||
| 
 | ||||
| 		} | ||||
| 		$fnl=strlen($filename); | ||||
|         $fh = "\x14\x00";    // ver needed to extract 
 | ||||
|         $fh .= "\x00\x00";    // gen purpose bit flag 
 | ||||
|         $fh .= "\x08\x00";    // compression method 
 | ||||
|         $fh .= "\x00\x00\x00\x00"; // last mod time and date 
 | ||||
| 		$fh .=pack("V3v2", | ||||
| 			$crc, //crc
 | ||||
| 			$gzsize,//c size
 | ||||
| 			$datasize,//unc size
 | ||||
| 			$fnl, //fname lenght
 | ||||
| 			0 //extra field length
 | ||||
| 		); | ||||
| 		 | ||||
| 
 | ||||
| 		//local file header
 | ||||
| 		$lfh="PK\x03\x04"; | ||||
| 		$lfh .= $fh.$filename; | ||||
| 		$zipdata = $lfh; | ||||
| 		$zipdata .= $gzdata; | ||||
| 		$zipdata .= pack("V3",$crc,$gzsize,$datasize); | ||||
| 		$this->zipdata[]=$zipdata; | ||||
| 		//Central Directory Record
 | ||||
| 		$cdir="PK\x01\x02"; | ||||
| 		$cdir.=pack("va*v3V2", | ||||
| 		0, | ||||
| 		$fh, | ||||
|     	0, 		// file comment length 
 | ||||
|     	0,		// disk number start 
 | ||||
|     	0,		// internal file attributes 
 | ||||
|     	$attr,	// external file attributes - 'archive/directory' bit set 
 | ||||
| 		$this->offset | ||||
| 		).$filename; | ||||
| 
 | ||||
| 		$this->offset+= 42+$fnl+$gzsize; | ||||
| 		$this->cdir[]=$cdir; | ||||
| 		$this->cnt++; | ||||
| 		$this->idx = $this->cnt-1; | ||||
| 	} | ||||
| 	/** adds a file to the archive | ||||
| 	@param str filename contains valid path to file to be stored in the arcive.  | ||||
| 	@param str storedasname the path under which the file will be stored to the archive. If empty, the file will be stored under path given by filename parameter | ||||
| 	@see ss_zip::add_data() | ||||
| 	*/	 | ||||
| 	function add_file($filename, $storedasname=""){ | ||||
| 		$fh= fopen($filename,"r"); | ||||
| //		print filesize($filename);
 | ||||
| 		$data=fread($fh,filesize($filename)); | ||||
| 		if(!trim($storedasname))$storedasname=$filename; | ||||
| 		return $this->add_data($storedasname, $data); | ||||
| 	} | ||||
| 	/** compile the arcive.	 | ||||
| 	This function produces ZIP archive and returns it. | ||||
| 	@return str string with zipfile | ||||
| 	*/ | ||||
| 	function archive(){ | ||||
| 		if(!$this->zipdata) return ""; | ||||
| 		$zds=implode('',$this->zipdata); | ||||
| 		$cds=implode('',$this->cdir); | ||||
| 		$zdsl=strlen($zds); | ||||
| 		$cdsl=strlen($cds); | ||||
| 		$this->zipfile=  | ||||
| 			$zds | ||||
| 			.$cds | ||||
| 			."PK\x05\x06\x00\x00\x00\x00" | ||||
| 	        .pack('v2V2v' | ||||
|         	,$this->cnt			// total # of entries "on this disk" 
 | ||||
|         	,$this->cnt			// total # of entries overall 
 | ||||
|         	,$cdsl					// size of central dir 
 | ||||
|         	,$zdsl					// offset to start of central dir 
 | ||||
|         	,0);							// .zip file comment length 
 | ||||
| 		return $this->zipfile; | ||||
| 	} | ||||
| 	/** changes pointer to current entry. | ||||
| 	Most likely you will always use it to 'rewind' the archive and then using read() | ||||
| 	Checks for bopundaries, so will not allow index to be set to values < 0 ro > last element | ||||
| 	@param int idx the new index to which you want to rewind the archive curent pointer  | ||||
| 	@return int idx the index to which the curent pointer was actually set | ||||
| 	@see ss_zip::read() | ||||
| 	*/ | ||||
| 	function seek_idx($idx){ | ||||
| 		if($idx<0)$idx=0; | ||||
| 		if($idx>=$this->cnt)$idx=$this->cnt-1; | ||||
| 		$this->idx=$idx; | ||||
| 		return $idx; | ||||
| 	} | ||||
| 	/** Reads an entry from the arcive which is pointed by inner index pointer. | ||||
| 		<center><hr nashade>*** This functionality is available in PRO version only. ***<br><a href='http://smiledsoft.com/demos/phpzip/' target='_blank'>please upgrade </a><hr nashade></center> | ||||
| 	The curent index can be changed by seek_idx() method. | ||||
| 	@return array Returns associative array of the following structure | ||||
| 	<ul> | ||||
| 	<li>'idx'=>	index of the entry </li> | ||||
| 	<li>'name'=>full path to the entry </li> | ||||
| 	<li>'attr'=>integer file attribute of the entry </li> | ||||
| 	<li>'attrstr'=>string file attribute of the entry <br> | ||||
| 	This can be: | ||||
| 		 <ul> | ||||
| 			 <li>'file' if the integer attribute was 32</li> | ||||
| 			 <li>'dir'  if the integer attribute was 16 or 48</li> | ||||
| 			 <li>'unknown' for other values</li> | ||||
| 		 </ul> | ||||
| 	</li> | ||||
| 	</ul> | ||||
| 	@see ss_zip::seek_idx() | ||||
| 	*/ | ||||
| 	function read(){} | ||||
| 	 | ||||
| 	 | ||||
| 	 | ||||
| 	/** Removes entry from the archive. | ||||
| 	please be very carefull with this function, there is no undo after you save the archive | ||||
| 	@return bool true on success or false on failure | ||||
| 	@param int idx | ||||
| 	*/ | ||||
| 	function remove($idx){} | ||||
| 	 | ||||
| 	 | ||||
| 	 | ||||
| 	/** extracts data from the archive and return it as a string. | ||||
| 		<center><hr nashade>*** This functionality is available in PRO version only. ***<br><a href='http://smiledsoft.com/demos/phpzip/' target='_blank'>please upgrade </a><hr nashade></center> | ||||
| 	This function returns data identified by idx parameter.  | ||||
| 	@param int idx index of the entry | ||||
| 	@return array returns associative array of the folloving structure: | ||||
| 	 <ul> | ||||
| 		 <li>'file' path under which the entry is stored in the archive</li> | ||||
| 		 <li>'data' In case if the entry was file, contain its data. For directory entry this is empty</li> | ||||
| 		 <li>'size' size of the data</li> | ||||
| 		 <li>'error' the error if any has happened. The bit 0 indicates incorect datasize, bit 1 indicates CRC error</li> | ||||
| 	 </ul> | ||||
| 	@see ss_zip::extract_file | ||||
| 	*/ | ||||
| 	function extract_data($idx){} | ||||
| 	 | ||||
| 	 | ||||
| 	/** extracts the entry and creates it in the file system. | ||||
| 		<center><hr nashade>*** This functionality is available in PRO version only. ***<br><a href='http://smiledsoft.com/demos/phpzip/' target='_blank'>please upgrade </a><hr nashade></center> | ||||
| 	@param int idx Index of the entry | ||||
| 	@param string path the first part of the path where the entry will be stored. So if this  | ||||
| 	is '/my/server/path' and entry is arhived/file/path/file.txt then the function will attempt to | ||||
| 	store it under /my/server/path/arhived/file/path/file.txt You are responsible to ensure that you | ||||
| 	have write permissions for this operation under your operation system.  | ||||
| 	*/ | ||||
| 	function extract_file($idx,$path="."){} | ||||
| 	 | ||||
| 	 | ||||
| 	function _check_idx($idx){ | ||||
| 		return $idx>=0 and $idx<$this->cnt; | ||||
| 	} | ||||
| 	function _write($name,$data){ | ||||
| 		$fp=fopen($name,"w"); | ||||
| 		fwrite($fp,$data); | ||||
| 		fclose($fp); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| /** debug helper. | ||||
| the only job for this function is take parameter $v and ouput it with print_r() preceding with < xmp > etc | ||||
| The $l is a label like l=myvar | ||||
| */ | ||||
| function dbg($v,$l='var'){echo"<xmp>$l=";print_r($v);echo"</xmp>";} | ||||
| ?>
 | ||||
							
								
								
									
										784
									
								
								FTP/index.php
									
									
									
									
									
								
							
							
						
						| @ -1,784 +0,0 @@ | ||||
| <?php | ||||
| 	/* | ||||
| 	Copyright (C) 2002-2004 Edwin van Wijk, www.phpwebftp.com | ||||
| 
 | ||||
| 	This program is free software; you can redistribute it and/or | ||||
| 	modify it under the terms of the GNU General Public License | ||||
| 	as published by the Free Software Foundation; either version 2 | ||||
| 	of the License, or (at your option) any later version. | ||||
| 
 | ||||
| 	This program is distributed in the hope that it will be useful, | ||||
| 	but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
| 	GNU General Public License for more details. | ||||
| 
 | ||||
| 	You should have received a copy of the GNU General Public License | ||||
| 	along with this program; if not, write to the Free Software | ||||
| 	Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. | ||||
| 
 | ||||
| 	New in Version 3.3b | ||||
| 	- zip support for zipping and downloading an entire directory | ||||
| 	- moved all ftp functions into a ftp class | ||||
| 	- repaired ascii/binary mode button | ||||
| 	- set default mode to binary | ||||
| 	*/ | ||||
| 
 | ||||
| 	include('config.inc.php'); //load configuration
 | ||||
| 	$currentVersion = "3.3b"; | ||||
| 
 | ||||
| 	// Report simple running errors
 | ||||
| 	//error_reporting(E_ERROR | E_WARNING | E_PARSE);
 | ||||
| 	error_reporting(E_ERROR | E_PARSE); | ||||
| 
 | ||||
| 	//Procedure for emptying the tmp directory
 | ||||
| 	if($clearTemp==true) | ||||
| 	{ | ||||
| 		if ($handle = opendir($downloadDir)) { | ||||
| 			while (false !== ($delFile = readdir($handle))) { | ||||
| 				if($delFile!="." and $delFile!="..") { | ||||
| 					unlink($downloadDir . $delFile); | ||||
| 				} | ||||
| 			} | ||||
| 			closedir($handle); | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 
 | ||||
| 	include("include/functions.inc.php"); | ||||
| 	include("include/ftp.class.php"); | ||||
| 	session_start(); | ||||
| 
 | ||||
| 	// Get the POST, GET and SESSION variables (if register_globals=off (PHP4.2.1+))
 | ||||
| 	// It's a bit of a dirty hack but variables are sometimes GET and sometimes POST variables
 | ||||
| 	$goPassive=(isset($_POST['goPassive']))?$_POST['goPassive']:$_GET['goPassive']; | ||||
| 	$mode=(isset($_POST['mode']))?$_POST['mode']:$_GET['mode']; | ||||
| 	$actionType=(isset($_POST['actionType']))?$_POST['actionType']:$_GET['actionType']; | ||||
| 	$currentDir=stripSlashes((isset($_POST['currentDir']))?$_POST['currentDir']:$_GET['currentDir']); | ||||
| 	$file=(isset($_POST['file']))?$_POST['file']:$_GET['file']; | ||||
| 	$file2=(isset($_POST['file2']))?$_POST['file2']:$_GET['file2']; | ||||
| 	$permissions=(isset($_POST['permissions']))?$_POST['permissions']:$_GET['permissions']; | ||||
| 	$directory=(isset($_POST['directory']))?$_POST['directory']:$_GET['directory']; | ||||
| 	$fileContent=(isset($_POST['fileContent']))?$_POST['fileContent']:$_GET['fileContent']; | ||||
| 
 | ||||
| 	$file=StripSlashes($file); | ||||
| 	$file2=StripSlashes($file2); | ||||
| 
 | ||||
| 	$mode=(isset($mode))?$mode:1; | ||||
| 
 | ||||
| 	if(isset($_POST['user'])) { | ||||
| 		// we dont care if we are already logged or not in case user provides
 | ||||
| 		// login information. That allows relogging in without explicitly
 | ||||
| 		// loging out, eg with the "back" button.
 | ||||
| 		if ($editDefaultServer) | ||||
| 			$_SESSION['server']=$_POST['server']; | ||||
| 		else | ||||
| 			$_SESSION['server']=$defaultServer; | ||||
| 
 | ||||
| 		$_SESSION['user']=$_POST['user']; | ||||
| 		$_SESSION['password']=$_POST['password']; | ||||
| 		$_SESSION['language']=$_POST['language']; | ||||
| 		$_SESSION['port']=$_POST['port']; | ||||
| 		$_SESSION['passive']=$_POST['passive']; | ||||
| 	} | ||||
| 
 | ||||
| 
 | ||||
| 	if ($actionType=="logoff") | ||||
| 	{ | ||||
| 		unset($_SESSION['server']); | ||||
| 		unset($_SESSION['user']); | ||||
| 		unset($_SESSION['password']); | ||||
| 		unset($_SESSION['port']); | ||||
| 		unset($_SESSION['passive']); | ||||
| 
 | ||||
| 		session_destroy(); | ||||
| 	} | ||||
| 
 | ||||
| 	$server=$_SESSION['server']; | ||||
| 	$user=$_SESSION['user']; | ||||
| 	$password=$_SESSION['password']; | ||||
| 	$language=$_SESSION['language']; | ||||
| 	$port=$_SESSION['port']; | ||||
| 	$passive=$_SESSION['passive']; | ||||
| 
 | ||||
| 
 | ||||
| 	// If language is not yet set, check the default language or try to get the language from your browser.
 | ||||
| 	if($language==""){ | ||||
| 		if ($defaultLanguage !="") { | ||||
| 			$language = $defaultLanguage ; | ||||
| 		} else { | ||||
| 			$browser_lang = getenv("http_accept_language"); | ||||
| 			$tmplang = $languages[$browser_lang]; | ||||
| 			if(file_exists("include/language/" . $tmplang . ".lang.php")) { | ||||
| 				$language = $tmplang; | ||||
| 			} else { | ||||
| 				$language = "english"; | ||||
| 			} | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	//Include Language file
 | ||||
| 	include("include/language/" . $language . ".lang.php");   // Selected language
 | ||||
| 
 | ||||
| 	if ($server!="") | ||||
| 	{ | ||||
| 		$ftp = new ftp($server, $port, $user, $password, $passive); | ||||
| 		$ftp->setMode($mode); | ||||
| 		$ftp->setCurrentDir($currentDir); | ||||
| 
 | ||||
| 		// set some default values as defined in config.inc.php
 | ||||
| 		$ftp->setResumeDownload($resumeDownload); | ||||
| 		$ftp->setDownloadDir($downloadDir); | ||||
| 
 | ||||
| 		if ($ftp->loggedOn) | ||||
| 		{ | ||||
| 			$msg = $ftp->getCurrentDirectoryShort(); | ||||
| 			// what to do now ???
 | ||||
| 			if(isset($actionType)) { | ||||
| 				switch ($actionType) { | ||||
| 					case "chmod":	// Change permissions
 | ||||
| 						if($ftp->chmod($permissions, $file)){ | ||||
| 							print $lblFilePermissionChanged; | ||||
| 						} else { | ||||
| 							print $lblCouldNotChangePermissions; | ||||
| 						} | ||||
| 						break; | ||||
| 					case "cd":			// Change directory
 | ||||
| 						$ftp->cd($file); | ||||
| 						$msg = $lblndexOf . $ftp->getCurrentDirectoryShort(); | ||||
| 						break; | ||||
| 					case "get":			// Download file
 | ||||
| 						$ftp->download($file) or DIE($lblErrorDownloadingFile); | ||||
| 						break; | ||||
| 					case "put":			// Upload file
 | ||||
| 						$fileObject = $_FILES['file']; | ||||
| 						if($fileObject['size'] > $maxFileSize) { | ||||
| 							$msg = "<B>" . $lblFileSizeTooBig . "</B> (max. " . $maxFileSize . " bytes)<P>"; | ||||
| 						} elseif(!$ftp->upload($fileObject)) { | ||||
| 							$msg = $lblFileCouldNotBeUploaded; | ||||
| 						} | ||||
| 						break; | ||||
| 					case "deldir";		// Delete directory
 | ||||
| 						$ftp->deleteRecursive($file); | ||||
| 						break; | ||||
| 					case "delfile";		// Delete file
 | ||||
| 						$ftp->deleteFile($file); | ||||
| 						break; | ||||
| 					case "rename";		// Rename file
 | ||||
| 						if($ftp->rename($file, $file2))	{ | ||||
| 							$msg = $file . " " . $lblRenamedTo . " " . $file2; | ||||
| 						} else { | ||||
| 							$msg = $lblCouldNotRename . " " . $file . " " . $lblTo . " " . $file2; | ||||
| 						} | ||||
| 						break; | ||||
| 					case "createdir":  // Create a new directory
 | ||||
| 						if($ftp->makeDir($file)) { | ||||
| 							$msg = $file . " " . $lblCreated; | ||||
| 						} else { | ||||
| 							$msg = $lblCouldNotCreate . " " . $file; | ||||
| 						} | ||||
| 						break; | ||||
| 					case "edit": | ||||
| 						//First download the file to the server
 | ||||
| 						$ftp->get($file); | ||||
| 
 | ||||
| 						//Now open the content of the file in an edit window
 | ||||
| 					?>
 | ||||
| 						<html> | ||||
| 						<HEAD> | ||||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||||
| 							<TITLE>phpWebFTP <?php echo $currentVersion;?> By Edwin van Wijk</TITLE>
 | ||||
| 							<LINK REL=StyleSheet HREF="style/cm.css" TITLE=Contemporary TYPE="text/css"> | ||||
| 							<SCRIPT LANGUAGE="JavaScript" SRC="include/script.js"></SCRIPT> | ||||
| 						</HEAD> | ||||
| 						<body> | ||||
| 						<h2>Edit <?php echo $file;?></h2>
 | ||||
| 						<FORM METHOD=POST NAME='editFileForm' ACTION="<?php echo $php_self;?>"> | ||||
| 							<INPUT TYPE='hidden' NAME='actionType' VALUE='saveFile'> | ||||
| 							<INPUT TYPE='hidden' NAME='currentDir' VALUE='<?php echo $ftp->currentDir;?>'> | ||||
| 							<INPUT TYPE='hidden' NAME='file' VALUE='<?php echo $file;?>'> | ||||
| 							<INPUT TYPE='hidden' NAME='mode' VALUE='<?php echo $ftp->mode;?>'> | ||||
| 							<TEXTAREA NAME="fileContent" ROWS='30' COLS='80'><?php $data = stripslashes(readfile($ftp->downloadDir . $file));?></TEXTAREA>
 | ||||
| 							<br> | ||||
| 							<INPUT TYPE="submit" value="save"><INPUT TYPE=button OnClick='cancelEditFile();' VALUE="cancel" > | ||||
| 						</FORM> | ||||
| 						</body> | ||||
| 						</html> | ||||
| 					<?php | ||||
| 						unlink($ftp->downloadDir . $file); | ||||
| 						exit; | ||||
| 						break; | ||||
| 					case "saveFile": | ||||
| 						//Write content of fileContent to tempFile
 | ||||
| 						$tempFile = "tmpFile.txt"; | ||||
| 						$fp = fopen($ftp->downloadDir . $tempFile, "w+t"); | ||||
| 						if ($bytes=!fwrite($fp, stripslashes($fileContent))) { | ||||
| 						   $msg = $lblFileCouldNotBeUploaded; | ||||
| 						} | ||||
| 						fclose($fp); | ||||
| 
 | ||||
| 						//Upload the file to the server
 | ||||
| 						if(!$ftp->put($ftp->currentDir . "/" . filePart(StripSlashes($file)),$ftp->downloadDir . $tempFile)) $msg = $lblFileCouldNotBeUploaded; | ||||
| 
 | ||||
| 						//Delete temporary file
 | ||||
| 						unlink($ftp->downloadDir . $tempFile); | ||||
| 						break; | ||||
| 
 | ||||
| 					case "getzip": | ||||
| 						set_time_limit(3000); //for big archives
 | ||||
| 						$zipfile = $file . ".zip"; | ||||
| 						$dir = $ftp->downloadDir.$ftp->user . "/";   // a directory for every user, just in case...
 | ||||
| 
 | ||||
| 						header("Content-disposition: attachment; filename=\"$zipfile\"");
 | ||||
| 						header("Content-type: application/octetstream"); | ||||
| 						header("Pragma: "); | ||||
| 						header("Cache-Control: cache"); | ||||
| 						header("Expires: 0"); | ||||
| 
 | ||||
| 						$zipfile = $ftp->downloadDir . $zipfile; | ||||
| 
 | ||||
| 						//Create temporary diretory 
 | ||||
| 						mkdir($dir); | ||||
| 
 | ||||
| 						//Get entire directory and store to temporary directory
 | ||||
| 						$ftp->getRecursive($ftp->currentDir, $file); | ||||
| 
 | ||||
| 						//zip the directory
 | ||||
| 						$zip = new ss_zip('',6);  | ||||
| 						$zip->zipDirTree($dir, $dir); | ||||
| 						$zip->save($zipfile); | ||||
| 
 | ||||
| 						//send zipfile to the browser
 | ||||
| 						$filearray = explode("/",$zipfile); | ||||
| 						$file = $filearray[sizeof($filearray)-1]; | ||||
| 
 | ||||
| 						$data = readfile($zipfile); | ||||
| 						$i=0; | ||||
| 						while ($data[$i] != "") | ||||
| 						{ | ||||
| 							echo $data[$i]; | ||||
| 							$i++; | ||||
| 						} | ||||
| 
 | ||||
| 						//Delete zip file
 | ||||
| 						unlink($zipfile); | ||||
| 
 | ||||
| 						//Delete downloaded files from user specific directory
 | ||||
| 						deleteRecursive($dir); | ||||
| 						exit; | ||||
| 						break; | ||||
| 				} | ||||
| 			} | ||||
| ?>
 | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||||
| 	<TITLE>phpWebFTP <?php echo $currentVersion;?> By Edwin van Wijk</TITLE>
 | ||||
| 	<LINK REL=StyleSheet HREF="style/cm.css" TITLE=Contemporary TYPE="text/css"> | ||||
| 	<SCRIPT LANGUAGE="JavaScript" SRC="include/script.js"></SCRIPT> | ||||
| </HEAD> | ||||
| <BODY> | ||||
| <TABLE CELLPADDING=0 CELLSPACING=0 HEIGHT="100%"> | ||||
| <TR><TD> | ||||
| 	<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 WIDTH='100%'> | ||||
| 		<TR> | ||||
| 			<TD CLASS=titlebar COLSPAN=3> | ||||
| 				<B>phpWebFTP <?php echo $lblVersion;?> <?php echo $currentVersion;?></B>
 | ||||
| 			</TD> | ||||
| 		</TR> | ||||
| 		<TR> | ||||
| 			<TD CLASS=menu> | ||||
| 			<?php | ||||
| 			$newMode=($ftp->mode==1)?0:1; | ||||
| 			?>
 | ||||
| 				<?php if($ftp->loggedOn) { ?>
 | ||||
| 				<TABLE CELLPADDING=0 CELLSPACING=0><TR> | ||||
| 
 | ||||
| 				<TD VALIGN=CENTER> <A HREF='javascript:submitForm("cd","..")'><IMG SRC="img/parent.gif" HEIGHT=24 WIDTH=24 ALIGN=TOP BORDER=0></A></TD> | ||||
| 				<TD VALIGN=CENTER><nobr><A HREF='javascript:submitForm("cd","..")'> <?php echo $lblUp;?></A> </nobr></TD>
 | ||||
| 
 | ||||
| 				<TD VALIGN=CENTER> <A CLASS=menu HREF="javascript:changeMode('<?php echo $newMode;?>')"><IMG SRC="img/mode.gif" HEIGHT=24 BORDER=0 ALIGN=CENTER></A></TD> | ||||
| 				<TD VALIGN=CENTER><nobr><A CLASS=menu HREF="javascript:changeMode('<?php echo $newMode;?>')"> <?php echo $lblChangeMode;?></A> </nobr></TD>
 | ||||
| 
 | ||||
| 				<TD VALIGN=CENTER> <A CLASS=menu HREF="javascript:logOff()"><IMG SRC="img/logoff.gif" HEIGHT=24 BORDER=0 ALIGN=CENTER></A></TD> | ||||
| 				<TD VALIGN=CENTER><nobr><A CLASS=menu HREF="javascript:logOff()"> <?php echo $lblLogOff;?></A> </nobr></TD>
 | ||||
| 
 | ||||
| 				<TD COLSPAN=6 VALIGN=TOP class=statusbar width="100%" VALIGN=CENTER ALIGN=RIGHT> | ||||
| 					<?php echo directoryPath($ftp->currentDir, $server);?>
 | ||||
| 				</TD> | ||||
| 				</TR> | ||||
| </TABLE> | ||||
| 				<?php } else { ?>
 | ||||
| 				<TABLE CELLPADDING=0 CELLSPACING=0><TR> | ||||
| 				<TD VALIGN=CENTER> <A CLASS=menu HREF="javascript:logOff()"><IMG SRC="img/logoff.gif" HEIGHT=24 BORDER=0 ALIGN=CENTER></A> </TD> | ||||
| 				<TD VALIGN=CENTER> <A CLASS=menu HREF="javascript:logOff()"><?php echo $lblRetry;?></A> </TD>
 | ||||
| 				</TR></TABLE> | ||||
| 
 | ||||
| 				<?php } ?>
 | ||||
| 			</TD> | ||||
| 			</FORM> | ||||
| 		</TR> | ||||
| 	</TABLE> | ||||
| </TD></TR> | ||||
| <TR><TD HEIGHT="100%"> | ||||
| 	<FORM NAME="actionform" METHOD=POST ACTION='<?php echo $PHP_SELF;?>'> | ||||
| 		<INPUT TYPE='hidden' NAME='actionType' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='delaction' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='currentDir' VALUE='<?php echo $ftp->currentDir;?>'> | ||||
| 		<INPUT TYPE='hidden' NAME='file' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='file2' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='extension' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='permissions' VALUE=''> | ||||
| 		<INPUT TYPE='hidden' NAME='mode' VALUE='<?php echo $ftp->mode;?>' STYLE='border: none; background-color: #EFEFEF;'> | ||||
| 	</FORM> | ||||
| 	<HR> | ||||
| 
 | ||||
| 	<TABLE HEIGHT="100%"> | ||||
| 		<TR> | ||||
| 		<TD class=leftmenu VALIGN=TOP width=210> | ||||
| 			<DIV ALIGN=CENTER> | ||||
| 				<BR> | ||||
| 				<!-- File and folder --> | ||||
| 				<TABLE CELLPADDING=0 CELLSPACING=0 class=item> | ||||
| 					<TR> | ||||
| 						<TD VALIGN=TOP class=itemhead> | ||||
| 							<B><?php echo $lblFileTasks;?></B>
 | ||||
| 						</TD> | ||||
| 						</FORM> | ||||
| 					</TR> | ||||
| 					<TR> | ||||
| 						<TD VALIGN=TOP class=leftmenuitem> | ||||
| 
 | ||||
| 							<DIV id="fileactions" style='display:none;'> | ||||
| 							<TABLE> | ||||
| 								<!-- Delete File --> | ||||
| 								<TR> | ||||
| 									<TD VALIGN=CENTER><IMG SRC="img/menu_delete.gif"></TD> | ||||
| 									<TD VALIGN=CENTER> | ||||
| 										<A HREF='javascript:deleteFile()' class=leftmenulink><?php echo $lblDeleteFile;?></A>
 | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 
 | ||||
| 								<TR> | ||||
| 									<TD VALIGN=CENTER><IMG SRC="img/zip.gif"></TD> | ||||
| 									<TD VALIGN=CENTER> | ||||
| 										<A HREF='javascript:zipFile()' class=leftmenulink><?php echo "Zip & download";?></A>
 | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 
 | ||||
| 								<TR> | ||||
| 									<TD VALIGN=CENTER><IMG SRC="img/menu_edit.gif"></TD> | ||||
| 									<TD VALIGN=CENTER> | ||||
| 										<A HREF='javascript:editFile()' class=leftmenulink><?php echo $lblEditFile;?></A>
 | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 
 | ||||
| 								<TR> | ||||
| 									<TD VALIGN=top><IMG SRC="img/menu_rename.gif"></TD> | ||||
| 									<TD VALIGN=top> | ||||
| 										<A HREF='javascript:setNewFileName("<?php echo $myDir["name"];?>")' class=leftmenulink><?php echo $lblRename;?></A>
 | ||||
| 										<!-- Rename file --> | ||||
| 										<DIV ID='renameFileEntry' style='display:none;'> | ||||
| 											<FORM NAME=renameFile> | ||||
| 											<TABLE CELLSPACING=0 class=lined align=center> | ||||
| 												<TR> | ||||
| 													<TD class=tinyblue> | ||||
| 													<B><?php echo $lblNewName;?></B><BR>
 | ||||
| 													<INPUT TYPE="text" NAME="newName" value=""></TD> | ||||
| 												</TR> | ||||
| 												</TABLE> | ||||
| 											<BR> | ||||
| 											<DIV ALIGN=CENTER><INPUT TYPE=button OnClick='renameItem();' VALUE='<?php echo $lblRename;?>'></DIV> | ||||
| 											</FORM> | ||||
| 											<BR> | ||||
| 										</DIV> | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 
 | ||||
| 								<TR> | ||||
| 									<TD VALIGN=top><IMG SRC="img/menu_settings.gif"></TD> | ||||
| 									<TD VALIGN=top> | ||||
| 										<A HREF='javascript:;' OnClick='setPermissions()' class=leftmenulink><?php echo $lblSetPermissions;?></A>
 | ||||
| 										<!-- Change permissions --> | ||||
| 										<DIV ID='setPermissions' style='display:none;'> | ||||
| 											<FORM NAME=permissions> | ||||
| 											<TABLE CELLSPACING=0 class=lined align=center> | ||||
| 											<TR> | ||||
| 												<TD class=tinyblue ALIGN=CENTER><B><?php echo $lblOwner;?></B></TD>
 | ||||
| 												<TD class=tiny ALIGN=CENTER><B><?php echo $lblGroup;?></B></TD>
 | ||||
| 												<TD class=tinywhite ALIGN=CENTER><B><?php echo $lblPublic;?></B></TD>
 | ||||
| 											</TR> | ||||
| 											<TR> | ||||
| 												<TD class=tinyblue><INPUT TYPE="checkbox" NAME="iOr"> <?php echo $lblRead;?></TD>
 | ||||
| 												<TD class=tiny><INPUT TYPE="checkbox" NAME="iGr"> <?php echo $lblRead;?></TD>
 | ||||
| 												<TD class=tinywhite><INPUT TYPE="checkbox" NAME="iPr"> <?php echo $lblRead;?></TD>
 | ||||
| 											</TR> | ||||
| 											<TR> | ||||
| 												<TD class=tinyblue><INPUT TYPE="checkbox" NAME="iOw"> <?php echo $lblWrite;?></TD>
 | ||||
| 												<TD class=tiny><INPUT TYPE="checkbox" NAME="iGw"> <?php echo $lblWrite;?></TD>
 | ||||
| 												<TD class=tinywhite><INPUT TYPE="checkbox" NAME="iPw"> <?php echo $lblWrite;?></TD>
 | ||||
| 											</TR> | ||||
| 											<TR> | ||||
| 												<TD class=tinyblue><INPUT TYPE="checkbox" NAME="iOx"> <?php echo $lblExecute;?></TD>
 | ||||
| 												<TD class=tiny><INPUT TYPE="checkbox" NAME="iGx"> <?php echo $lblExecute;?></TD>
 | ||||
| 												<TD class=tinywhite><INPUT TYPE="checkbox" NAME="iPx"> <?php echo $lblExecute;?></TD>
 | ||||
| 											</TR> | ||||
| 
 | ||||
| 											</TABLE> | ||||
| 											<BR> | ||||
| 											<DIV ALIGN=CENTER><INPUT TYPE=button OnClick='changePermissions()' VALUE='<?php echo $lblSetPermissions;?>'></DIV> | ||||
| 											</FORM> | ||||
| 											<BR> | ||||
| 										</DIV> | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 							</TABLE> | ||||
| 							</DIV> | ||||
| 
 | ||||
| 
 | ||||
| 							<!-- Standaard actions --> | ||||
| 							<TABLE> | ||||
| 								<TR> | ||||
| 									<TD VALIGN=top><IMG SRC="img/upload.gif" BORDER="0" ALT=""></TD> | ||||
| 									<TD VALIGN=top> | ||||
| 										<A HREF="JavaScript:toggle('uploadform');" class=leftmenulink><?php echo $lblUploadFile;?></A>
 | ||||
| 											<FORM id="uploadform" style='display:none;' NAME='putForm' ENCTYPE="multipart/form-data" METHOD=POST ACTION="<?php echo $PHP_SELF;?>"> | ||||
| 												<INPUT TYPE="hidden" NAME="actionType" VALUE="put"> | ||||
| 												<INPUT TYPE='hidden' NAME='currentDir' VALUE='<?php echo $ftp->currentDir;?>'> | ||||
| 												<INPUT TYPE='hidden' NAME='mode' VALUE='<?php echo $ftp->mode;?>'> | ||||
| 												<INPUT TYPE="file" NAME="file" size=8 STYLE="width:10px; font-size:7pt;" onChange='document.uploadform.submit();'><BR> | ||||
| 												<INPUT TYPE="SUBMIT" VALUE="OK" STYLE='width=150px; font-size:7pt;'> | ||||
| 											</FORM> | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 								<TR> | ||||
| 									<TD VALIGN=top><IMG SRC="img/createdir.gif" BORDER="0" ALT=""></TD> | ||||
| 									<TD VALIGN=top> | ||||
| 										<A HREF="JavaScript:toggle('createform');" class=leftmenulink><?php echo $lblCreateDirectory;?></A>
 | ||||
| 										<FORM id="createform" style='display:none;' METHOD=POST NAME='dirinput' ACTION="<?php echo $PHP_SELF;?>"> | ||||
| 											<INPUT TYPE="text" NAME="directory" VALUE="" STYLE="width:100px; font-size:7pt;"> | ||||
| 											<INPUT TYPE="BUTTON" VALUE="OK" OnClick='javascript:createDirectory(dirinput.directory.value)' STYLE="width:40px; font-size:7pt;"> | ||||
| 										</FORM> | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 								<TR> | ||||
| 									<TD VALIGN=top><IMG SRC="img/gotodir.gif" BORDER="0" ALT=""></TD> | ||||
| 									<TD VALIGN=top> | ||||
| 										<A HREF="JavaScript:toggle('gotoform');" class=leftmenulink><?php echo $lblGoToDirectory;?></A>
 | ||||
| 										<FORM id="gotoform" style='display:none;' NAME='cdDirect' METHOD=POST ACTION='<?php echo $PHP_SELF;?>'> | ||||
| 											<INPUT TYPE='hidden' NAME='actionType' VALUE='cd'> | ||||
| 											<INPUT TYPE='hidden' NAME='currentDir' VALUE='<?php echo $ftp->currentDir;?>'> | ||||
| 											<INPUT TYPE="text" NAME="file" VALUE="" STYLE="width:100px; font-size:7pt;"> | ||||
| 											<INPUT TYPE="SUBMIT" VALUE="OK" STYLE="width:40px; font-size:7pt;"> | ||||
| 										</FORM> | ||||
| 									</TD> | ||||
| 								</TR> | ||||
| 							</TABLE> | ||||
| 						</TD> | ||||
| 					</TR> | ||||
| 				</TABLE> | ||||
| 				<P> | ||||
| 				<!-- Details --> | ||||
| 				<TABLE CELLPADDING=0 CELLSPACING=0 class=item> | ||||
| 					<TR> | ||||
| 						<TD VALIGN=TOP class=itemhead> | ||||
| 							<B><?php echo $lblDetails;?></B>
 | ||||
| 						</TD> | ||||
| 						</FORM> | ||||
| 					</TR> | ||||
| 					<TR> | ||||
| 						<TD VALIGN=TOP class=leftmenuitem style='color:black' > | ||||
| 							<BR> | ||||
| 							<B><?php echo $msg;?></B>
 | ||||
| 							<P> | ||||
| 							<?php echo ($ftp->loggedOn)?"$lblConnectedTo  $server:$port ($ftp->systype)":$lblNotConnected;?>
 | ||||
| 							<P> | ||||
| 							<?php echo $lblTransferMode;?> :<?php echo $ftp->mode==1?$lblBinaryMode:$lblASCIIMode;?>
 | ||||
| 							<BR><BR> | ||||
| 						</TD> | ||||
| 					</TR> | ||||
| 
 | ||||
| 				</TABLE> | ||||
| 
 | ||||
| 			</DIV> | ||||
| 		</TD> | ||||
| 		<TD VALIGN=TOP> | ||||
| 			<P> | ||||
| 			<TABLE WIDTH="650" CELLSPACING=0 CELLPADDING=0 onClick='resetEntries()'> | ||||
| 				<TR> | ||||
| 					<TD COLSPAN=2 class=listhead><?php echo $lblName;?></TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead align=right><?php echo $lblSize;?> </TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead><?php echo $lblFileType;?> </TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead><?php echo $lblDate;?></TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead><?php echo $lblPermissions;?></TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead><?php echo $lblOwner;?></TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 					<TD class=listhead><?php echo $lblGroup;?></TD>
 | ||||
| 					<TD class=listhead><IMG SRC="img/listheaddiv.gif"></TD> | ||||
| 				</TR> | ||||
| 	 		<?php | ||||
| 				$list = $ftp->ftpRawList(); | ||||
| 
 | ||||
| 				if (is_array($list)) | ||||
| 				{ | ||||
| 					// Directories
 | ||||
| 					$counter=0; | ||||
| 					foreach($list as $myDir) | ||||
| 					{ | ||||
| 						if ($myDir["is_dir"]==1) | ||||
| 						{ | ||||
| 							$fileAction = "cd"; | ||||
| 							$fileName = $myDir["name"]; | ||||
| 							$fileSize=""; | ||||
| 							$delAction = "deldir"; | ||||
| 							$fileType['description'] = 'File Folder'; | ||||
| 							$fileType['imgfilename'] = 'folder.gif'; | ||||
| 						} | ||||
| 
 | ||||
| 						if ($myDir["is_link"]==1) | ||||
| 						{ | ||||
| 							$fileAction = "cd"; | ||||
| 							$fileName = $myDir["target"]; | ||||
| 							$fileSize=""; | ||||
| 							$delAction = "delfile"; | ||||
| 							$fileType['description'] = 'Symbolic Link'; | ||||
| 							$fileType['imgfilename'] = 'link.gif'; | ||||
| 						} | ||||
| 
 | ||||
| 						if ($myDir["is_link"]!=1 && $myDir["is_dir"]!=1) | ||||
| 						{ | ||||
| 						    $fileType = fileDescription($myDir["name"]); | ||||
| 							$fileAction = "get"; | ||||
| 							$fileName = $myDir["name"]; | ||||
| 							$image = "file.gif"; | ||||
| 							if($myDir["size"]<1024) { | ||||
| 								$fileSize= $myDir["size"] . " bytes "; | ||||
| 									$fileSize=number_format($myDir["size"], 0, ',', '.') . " bytes"; | ||||
| 							} else { | ||||
| 								if($myDir["size"]<1073741824) { | ||||
| 									$fileSize=number_format($myDir["size"]/1024, 0, ',', '.') . " KB"; | ||||
| 								} else { | ||||
| 									$fileSize=number_format($myDir["size"]/1048576, 0, ',', '.') . " MB"; | ||||
| 								} | ||||
| 							} | ||||
| 
 | ||||
| 							 | ||||
| 							$delAction = "delfile"; | ||||
| 						} | ||||
| 				?>
 | ||||
| 
 | ||||
| 							<TR> | ||||
| 							<TD class=filenamecol width=20><A HREF='javascript:selectEntry("<?php echo $fileAction;?>","<?php echo $fileName;?>","filename<?php echo $counter;?>","<?php echo $myDir["perms"];?>","<?php echo $delAction;?>")' ondblclick='submitForm("<?php echo $fileAction;?>","<?php echo $fileName;?>")'><IMG SRC="img/<?php echo $fileType['imgfilename'];?>" ALIGN=TOP BORDER=0></A></TD> | ||||
| 							<TD class=filenamecol><span id='filename<?php echo $counter;?>'><A HREF='javascript:selectEntry("<?php echo $fileAction;?>","<?php echo $fileName;?>","filename<?php echo $counter;?>","<?php echo $myDir["perms"];?>","<?php echo $delAction;?>")' ondblclick='submitForm("<?php echo $fileAction;?>","<?php echo $fileName;?>")'><?php echo $fileName;?></A></span></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD ALIGN=RIGHT><?php echo $fileSize;?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD ALIGN=left><?php echo $fileType['description'];?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD><?php echo $myDir["date"];?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD><?php echo $myDir["perms"];?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD><?php echo $myDir["user"];?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							<TD><?php echo $myDir["group"];?></TD>
 | ||||
| 							<TD> </TD> | ||||
| 							</TR> | ||||
| 				<?php | ||||
| 						$counter++; | ||||
| 					} | ||||
| 				} else { | ||||
| 				?>
 | ||||
| 							<TR> | ||||
| 							<TD colspan=14><BR><B><?php echo $lblDirectoryEmpty;?>...</B></TD>
 | ||||
| 							</TR> | ||||
| 				<?php | ||||
| 				} | ||||
| 				print "	</TABLE></TD></TR></TABLE>"; | ||||
| 			} | ||||
| 			else | ||||
| 			{ | ||||
| 				if(!isset($msg)) | ||||
| 				{ | ||||
| 					$msg = "$lblCouldNotConnectToServer  $server:$port $lblWithUser $user<P><A HREF='" . $_SERVER["PHP_SELF"] . "'>$lblTryAgain</A>"; | ||||
| 					unset($_SESSION['server']); | ||||
| 					unset($_SESSION['user']); | ||||
| 					unset($_SESSION['password']); | ||||
| 					unset($_SESSION['port']); | ||||
| 					session_destroy(); | ||||
| 				} | ||||
| 	?>
 | ||||
| </TD></TR></TABLE> | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||||
| 	<TITLE>phpWebFTP <?php echo $currentVersion;?> By Edwin van Wijk</TITLE>
 | ||||
| 	<LINK REL=StyleSheet HREF="style/cm.css" TITLE=Contemporary TYPE="text/css"> | ||||
| 	<SCRIPT LANGUAGE="JavaScript" SRC="include/script.js"></SCRIPT> | ||||
| </HEAD> | ||||
| <BODY> | ||||
| <?php | ||||
| 			print $msg; | ||||
| 		} | ||||
| 	} | ||||
| 	else // Still need to logon...
 | ||||
| 	{ | ||||
| ?>
 | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||||
| 	<TITLE>phpWebFTP <?php echo $currentVersion;?> By Edwin van Wijk</TITLE>
 | ||||
| 	<LINK REL=StyleSheet HREF="style/cm.css" TITLE=Contemporary TYPE="text/css"> | ||||
| 	<SCRIPT LANGUAGE="JavaScript" SRC="include/script.js"></SCRIPT> | ||||
| </HEAD> | ||||
| <BODY> | ||||
| 		<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 WIDTH='100%'> | ||||
| 			<TR> | ||||
| 				<TD CLASS=titlebar> | ||||
| 					<B>phpWebFTP <?php echo $lblVersion;?> <?php echo $currentVersion;?></B>
 | ||||
| 				</TD> | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD CLASS=menu> | ||||
| 					<TABLE CELLPADDING=0 CELLSPACING=0><TR> | ||||
| 					<TD VALIGN=CENTER><IMG SRC="img/1px.gif" HEIGHT=24 BORDER=0 ALIGN=CENTER></TD> | ||||
| 					<TD VALIGN=CENTER> </TD> | ||||
| 					</TR></TABLE> | ||||
| 				</TD> | ||||
| 			</TR> | ||||
| 		</TABLE> | ||||
| 
 | ||||
| 		<FORM NAME=login action='<?php echo $_SERVER['PHP_SELF'];?>' METHOD=POST> | ||||
| 		<TABLE class=login cellpadding=3> | ||||
| 			<TR> | ||||
| 				<TD COLSPAN=3><B> <?php echo $lblLogIn;?></B></TD>
 | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD COLSPAN=3><IMG SRC="img/1px.gif" HEIGHT=60></TD> | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD COLSPAN=3> <?php echo $lblConnectToFTPServer;?></TD>
 | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD VALIGN=TOP> <?php echo $lblServer;?></TD>
 | ||||
| 				<TD VALIGN=TOP> | ||||
| 					<?php | ||||
| 						if($defaultServer == "") { | ||||
| 							print "<INPUT TYPE=TEXT NAME=server SIZE=15> "; | ||||
| 						} else { | ||||
| 							$inputType=($editDefaultServer==true)?"TEXT":"HIDDEN"; | ||||
| 							print "<INPUT TYPE=" . $inputType . " NAME=server VALUE=" . $defaultServer . ">"; | ||||
| 							if($editDefaultServer==false) { | ||||
| 								print "<B>" . $defaultServer . "</B> "; | ||||
| 							} | ||||
| 						} | ||||
| 					?>
 | ||||
| 				</TD> | ||||
| 				<TD VALIGN=TOP> | ||||
| 					<TABLE CELLSPACING=0> | ||||
| 						<TR> | ||||
| 							<TD><?php echo $lblPort;?></TD>
 | ||||
| 							<TD><INPUT TYPE=TEXT NAME=port SIZE=3 VALUE=21></TD> | ||||
| 						</TR> | ||||
| 						<TR> | ||||
| 							<TD><?php echo $lblPasive;?></TD>
 | ||||
| 							<TD><INPUT TYPE="checkbox" NAME="goPassive"></TD> | ||||
| 						</TR> | ||||
| 					</TABLE> | ||||
| 				</TD> | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD> <?php echo $lblUser;?></TD>
 | ||||
| 				<TD> | ||||
| 					<INPUT TYPE=TEXT NAME=user SIZE=18> | ||||
| 				</TD> | ||||
| 				<TD> </TD> | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 				<TD> <?php echo $lblPassword;?></TD>
 | ||||
| 				<TD><INPUT TYPE=PASSWORD NAME=password SIZE=18></TD> | ||||
| 				<TD><INPUT TYPE=SUBMIT VALUE="Log on"></TD> | ||||
| 			</TR> | ||||
| 
 | ||||
| 			<?php | ||||
| 				if($defaultLanguage == "") { | ||||
| 			?>
 | ||||
| 			<TR> | ||||
| 				<TD> <?php echo $lblLanguage;?></TD>
 | ||||
| 				<TD colspan=2> | ||||
| 					<?php | ||||
| 
 | ||||
| 					?>
 | ||||
| 					<SELECT NAME="language"> | ||||
| 					<?php | ||||
| 						if ($handle = opendir('include/language/')) { | ||||
| 							//Read file in directory and store them in an Array
 | ||||
| 							while (false !== ($file = readdir($handle))) { | ||||
| 								$fileArray[$file] = $file; | ||||
| 							} | ||||
| 							//Sort the array
 | ||||
| 							ksort($fileArray); | ||||
| 
 | ||||
| 							foreach($fileArray as $file) { | ||||
| 								if ($file != "." && $file != ".." ) { | ||||
| 								    $file=str_replace(".lang.php","",$file); | ||||
| 								    $counter=0; | ||||
| 								    foreach($languages as $thislang) | ||||
| 								    { | ||||
| 								        if($thislang==$file) | ||||
| 								        { | ||||
| 								            $counter++; | ||||
| 								        } | ||||
| 								    } | ||||
| 								    if($counter>0) { | ||||
| 										$langName=strtoupper(substr($file,0,1)) . substr($file,1); | ||||
| 					?>
 | ||||
| 										<OPTION VALUE="<?php echo $file;?>" <?php echo ($language==$file)?"selected":"";?>><?php echo $langName;?></OPTION>
 | ||||
| 					<?php | ||||
| 								    } | ||||
| 
 | ||||
| 								} | ||||
| 							} | ||||
| 							closedir($handle); | ||||
| 						} | ||||
| 			 				?>
 | ||||
| 					</SELECT> | ||||
| 			</TR> | ||||
| 			<?php | ||||
| 				} // End default server
 | ||||
| 			?>
 | ||||
| 			<TR> | ||||
| 				<TD COLSPAN=2><IMG SRC="img/1px.gif" HEIGHT=5></TD> | ||||
| 			</TR> | ||||
| 		</TABLE> | ||||
| 		<TABLE WIDTH=328> | ||||
| 		<TR> | ||||
| 				<TD COLSPAN=2 VALIGN=TOP class=leftmenuitem> | ||||
| 					<DIV style='font-size:7pt;'> | ||||
| 					<?php echo $lblDisclaimer;?>
 | ||||
| 					<BR><BR> | ||||
| 					phpWebFTP <?php echo $lblVersion;?> <?php echo $currentVersion;?><BR>
 | ||||
| 					© 2002-2006, Edwin van Wijk,<BR> | ||||
| 					<A HREF="http://www.phpwebftp.com" style='font-size:7pt;'>www.phpwebftp.com</A> | ||||
| 					</div> | ||||
| 					<P> | ||||
| 				</TD> | ||||
| 			</TR> | ||||
| 			<TR> | ||||
| 			<TD ALIGN=LEFT> </TD> | ||||
| 			<TD ALIGN=RIGHT> | ||||
| 				  | ||||
| 			</TD> | ||||
| 			</TR> | ||||
| 		</TABLE> | ||||
| 		</FORM> | ||||
| <?php | ||||
| 	} | ||||
| ?>
 | ||||
| <P> | ||||
| </BODY> | ||||
| </HTML> | ||||
| @ -1,3 +0,0 @@ | ||||
| /cm.css/1.1/Tue Feb 14 21:25:52 2006// | ||||
| /index.html/1.1/Tue Feb 14 21:25:52 2006// | ||||
| D | ||||
| @ -1,2 +0,0 @@ | ||||
| /cm.css/////// | ||||
| /index.html/////// | ||||
| @ -1,2 +0,0 @@ | ||||
| /index.html/////// | ||||
| /cm.css/////// | ||||
| @ -1,3 +0,0 @@ | ||||
| /index.html/1.1/Fri Feb 10 21:04:00 2006// | ||||
| /cm.css/1.1/Tue Feb 14 21:24:03 2006// | ||||
| D | ||||
| @ -1 +0,0 @@ | ||||
| webftp/style | ||||
| @ -1 +0,0 @@ | ||||
| :ext:evwijk@cvs.sf.net:/cvsroot/phpwebftp | ||||
| @ -1,2 +0,0 @@ | ||||
| DirStatus=In CVS | ||||
| DirStatusRecursive=In CVS | ||||
							
								
								
									
										123
									
								
								FTP/style/cm.css
									
									
									
									
									
								
							
							
						
						| @ -1,123 +0,0 @@ | ||||
| TD		{FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 8pt;} | ||||
| BODY	{FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 8pt; margin:5px; border:} | ||||
| DIV		{FONT-FAMILY: Verdana,Helvetica; FONT-SIZE: 8pt} | ||||
| A       {COLOR: #363636; TEXT-DECORATION: none} | ||||
| A:hover {COLOR: #363636; TEXT-DECORATION: none; cursor:default;} | ||||
| 
 | ||||
| .leftmenulink  | ||||
| {  | ||||
| 	color:#215DC6; | ||||
| 	font-size:8pt; | ||||
| } | ||||
| 
 | ||||
| A.leftmenulink:hover  | ||||
| {  | ||||
| 	color:#026AFE; | ||||
| 	text-decoration: underline; | ||||
| } | ||||
| 
 | ||||
| .header { | ||||
| 	width: 100%; | ||||
| 	background-color: #026AFE; | ||||
| 	font-variant: small-caps; | ||||
| 	font-size: 18px; | ||||
| 	font-style: italic; | ||||
| 	height: 20px; | ||||
| 	margin-top: 5px; | ||||
| 	margin-bottom: 5px; | ||||
| } | ||||
| 
 | ||||
| TD.titlebar | ||||
| { | ||||
| 	background-image: url(../img/titlebar.gif); | ||||
| 	border: solid 1px #0043CF;  | ||||
| 	border-left: 0px; | ||||
| 	border-right: 0px; | ||||
| 	background-color: #026AFE;  | ||||
| 	color: white; | ||||
| } | ||||
| 
 | ||||
| TD.menu | ||||
| { | ||||
| 	border: solid 1px #D8D2BD;  | ||||
| 	border-left: 0px; | ||||
| 	border-right: 0px; | ||||
| 	background-color: #F1EFE5;  | ||||
| 	color: black; | ||||
| } | ||||
| 
 | ||||
| TD.leftmenu | ||||
| { | ||||
| 	border: solid 1px #7393E1;  | ||||
| 	background-color: #7597E2;  | ||||
| 	color: black; | ||||
| 	background-image: url(../img/leftback.gif); | ||||
| 	background-attachment: fixed;  | ||||
| } | ||||
| 
 | ||||
| TD.tiny | ||||
| { | ||||
| font-size:6pt; | ||||
| } | ||||
| 
 | ||||
| TD.tinyblue | ||||
| { | ||||
| font-size:6pt; | ||||
| background-color:#7597E2; | ||||
| } | ||||
| 
 | ||||
| TD.tinywhite | ||||
| { | ||||
| font-size:6pt; | ||||
| background-color:white; | ||||
| } | ||||
| 
 | ||||
| .lined | ||||
| { | ||||
| 	border: solid 1px white;  | ||||
| } | ||||
| TD.leftmenuitem | ||||
| { | ||||
| 	border: solid 1px white;  | ||||
| 	background-color: #D6DFF7;  | ||||
| 	color: #215DC6; | ||||
| 	padding:2px; | ||||
| 	font-size:8pt; | ||||
| } | ||||
| 
 | ||||
| TD.itemhead | ||||
| { | ||||
| 	background-color: #7597E2;  | ||||
| 	color: #215DC6; | ||||
| 	background-image: url(../img/menuhead.gif); | ||||
| 	background-attachment: fixed;  | ||||
| 	width:185px; | ||||
| 	padding:2px; | ||||
| } | ||||
| 
 | ||||
| TABLE.item  | ||||
| { | ||||
| 	width:185px; | ||||
| 	padding:0px; | ||||
| } | ||||
| 
 | ||||
| TD.listhead | ||||
| {  | ||||
| 	background-color: #F1EFE5;  | ||||
| 	background-image: url(../img/listheader.gif); | ||||
| 	background-attachment: fixed;  | ||||
| 	padding:0px; | ||||
| 
 | ||||
| } | ||||
| 
 | ||||
| .filenamecol | ||||
| { | ||||
| 	background-color: #F7F7F7;  | ||||
| } | ||||
| 
 | ||||
| .login | ||||
| { | ||||
| 	background-image: url(../img/login.gif); | ||||
| 	height:291px; | ||||
| 	width:328px; | ||||
| } | ||||
| @ -1,14 +0,0 @@ | ||||
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> | ||||
| <HTML> | ||||
| <HEAD> | ||||
| <TITLE> New Document </TITLE> | ||||
| <META NAME="Generator" CONTENT="EditPlus"> | ||||
| <META NAME="Author" CONTENT=""> | ||||
| <META NAME="Keywords" CONTENT=""> | ||||
| <META NAME="Description" CONTENT=""> | ||||
| </HEAD> | ||||
| 
 | ||||
| <BODY> | ||||
| 
 | ||||
| </BODY> | ||||
| </HTML> | ||||