51 行
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			51 行
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * CodeIgniter
 | 
						|
 *
 | 
						|
 * An open source application development framework for PHP
 | 
						|
 *
 | 
						|
 * This content is released under the MIT License (MIT)
 | 
						|
 *
 | 
						|
 * Copyright (c) 2014 - 2017, British Columbia Institute of Technology
 | 
						|
 *
 | 
						|
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
 * of this software and associated documentation files (the "Software"), to deal
 | 
						|
 * in the Software without restriction, including without limitation the rights
 | 
						|
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
 * copies of the Software, and to permit persons to whom the Software is
 | 
						|
 * furnished to do so, subject to the following conditions:
 | 
						|
 *
 | 
						|
 * The above copyright notice and this permission notice shall be included in
 | 
						|
 * all copies or substantial portions of the Software.
 | 
						|
 *
 | 
						|
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
 * THE SOFTWARE.
 | 
						|
 *
 | 
						|
 * @package	CodeIgniter
 | 
						|
 * @author	EllisLab Dev Team
 | 
						|
 * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
 | 
						|
 * @copyright	Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
 | 
						|
 * @license	http://opensource.org/licenses/MIT	MIT License
 | 
						|
 * @link	https://codeigniter.com
 | 
						|
 * @since	Version 1.0.0
 | 
						|
 * @filesource
 | 
						|
 */
 | 
						|
defined('BASEPATH') OR exit('Direkter Skriptzugriff ist nicht erlaubt');
 | 
						|
 | 
						|
$lang['ftp_no_connection']          = 'Es konnte keine gültige Verbindungs-ID gefunden werden. Stellen Sie sicher, dass eine Verbindung besteht, bevor Dateioperationen ausgeführt werden.';
 | 
						|
$lang['ftp_unable_to_connect']      = 'Es konnte keine Verbindung zum angegebenen Server hergestellt werden.';
 | 
						|
$lang['ftp_unable_to_login']     = 'Es konnte keine Verbindung zum angegebenen Server hergestellt werden. Bitte prüfen Sie Benutzernamen und Passwort.';
 | 
						|
$lang['ftp_unable_to_makdir']       = 'Das Verzeichnis konnte nicht erstellt werden.';
 | 
						|
$lang['ftp_unable_to_changedir']    = 'Es konnte nicht zu dem Verzeichnis gewechselt werden.';
 | 
						|
$lang['ftp_unable_to_chmod']     = 'Die Dateirechte konnten nicht gesetzt werden. Bitte prüfen Sie den Pfad. Hinweis: Diese Funktion ist nur in PHP 5 oder höher verfügbar.';
 | 
						|
$lang['ftp_unable_to_upload']       = 'Die Datei konnte nicht hochgeladen werden. Bitte prüfen Sie den Pfad.';
 | 
						|
$lang['ftp_unable_to_download']  = 'Die Dateie konnte nicht heruntergeladen werden. Bitte prüfen Sie den Pfad.';
 | 
						|
$lang['ftp_no_source_file']      = 'Die Quelldatei konnte nicht gefunden werden. Bitte prüfen Sie den Pfad.';
 | 
						|
$lang['ftp_unable_to_rename']       = 'Die Datei konnte nicht umbenannt werden.';
 | 
						|
$lang['ftp_unable_to_delete']       = 'Die Datei konnte nicht gelöscht werden.';
 | 
						|
$lang['ftp_unable_to_move']      = 'Die Datei konnte nicht verschoben werden. Bitte stellen Sie sicher, dass das Zielverzeichnis existiert.';
 |