first commit
Some checks failed
CI / build-test (push) Has been cancelled

This commit is contained in:
2025-05-31 18:56:37 +02:00
commit 8c4798a5fd
1240 changed files with 190468 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<?php
/**
* CodeIgniter
*
* An open source application development framework for PHP
*
* This content is released under the MIT License (MIT)
*
* Copyright (c) 2014 - 2019, 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 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
* @license https://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
* @since Version 1.0.0
* @filesource
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['upload_userfile_not_set'] = 'Nuk mund të gjendet një variabël postimi e quajtur userfile.';
$lang['upload_file_exceeds_limit'] = 'Skedari i ngarkuar tejkalon madhësinë maksimale të lejuar në skedarin e konfigurimit të PHP-së tuaj.';
$lang['upload_file_exceeds_form_limit'] = 'Skedari i ngarkuar tejkalon madhësinë maksimale të lejuar nga formulari i dorëzimit.';
$lang['upload_file_partial'] = 'Skedari u ngarkua vetëm pjesërisht.';
$lang['upload_no_temp_directory'] = 'Dosja e përkohshme mungon.';
$lang['upload_unable_to_write_file'] = 'Skedari nuk mund të shkruhet në disk.';
$lang['upload_stopped_by_extension'] = 'Ngarkimi i skedarit u ndalua nga një zgjerim.';
$lang['upload_no_file_selected'] = 'Ju nuk zgjodhët një skedar për të ngarkuar.';
$lang['upload_invalid_filetype'] = 'Lloji i skedarit që po përpiqeni të ngarkoni nuk lejohet.';
$lang['upload_invalid_filesize'] = 'Skedari që po përpiqeni të ngarkoni është më i madh se madhësia e lejuar.';
$lang['upload_invalid_dimensions'] = 'Imazhi që po përpiqeni të ngarkoni nuk përputhet me dimensionet e lejuara.';
$lang['upload_destination_error'] = 'Ndodhi një problem gjatë përpjekjes për të lëvizur skedarin e ngarkuar në destinacionin përfundimtar.';
$lang['upload_no_filepath'] = 'Shtegu i ngarkimit nuk duket të jetë i vlefshëm.';
$lang['upload_no_file_types'] = 'Ju nuk keni specifikuar ndonjë lloj skedari të lejuar.';
$lang['upload_bad_filename'] = 'Emri i skedarit që keni dorëzuar tashmë ekziston në server.';
$lang['upload_not_writable'] = 'Dosja e destinacionit të ngarkimit nuk duket të jetë e shkrueshme.';