--------------------------------------------------------------------------------
/uploady/vendor/filp/whoops/src/Whoops/Util/HtmlDumperOutput.php:
--------------------------------------------------------------------------------
1 |
5 | */
6 |
7 | namespace Whoops\Util;
8 |
9 | /**
10 | * Used as output callable for Symfony\Component\VarDumper\Dumper\HtmlDumper::dump()
11 | *
12 | * @see TemplateHelper::dump()
13 | */
14 | class HtmlDumperOutput
15 | {
16 | private $output;
17 |
18 | public function __invoke($line, $depth)
19 | {
20 | // A negative depth means "end of dump"
21 | if ($depth >= 0) {
22 | // Adds a two spaces indentation to the line
23 | $this->output .= str_repeat(' ', $depth) . $line . "\n";
24 | }
25 | }
26 |
27 | public function getOutput()
28 | {
29 | return $this->output;
30 | }
31 |
32 | public function clear()
33 | {
34 | $this->output = null;
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/uploady/vendor/google/recaptcha/LICENSE:
--------------------------------------------------------------------------------
1 | BSD 3-Clause License
2 |
3 | Copyright (c) 2019, Google Inc.
4 | All rights reserved.
5 |
6 | Redistribution and use in source and binary forms, with or without
7 | modification, are permitted provided that the following conditions are met:
8 |
9 | 1. Redistributions of source code must retain the above copyright notice, this
10 | list of conditions and the following disclaimer.
11 |
12 | 2. Redistributions in binary form must reproduce the above copyright notice,
13 | this list of conditions and the following disclaimer in the documentation
14 | and/or other materials provided with the distribution.
15 |
16 | 3. Neither the name of the copyright holder nor the names of its
17 | contributors may be used to endorse or promote products derived from
18 | this software without specific prior written permission.
19 |
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 |
--------------------------------------------------------------------------------
/uploady/vendor/google/recaptcha/app.yaml:
--------------------------------------------------------------------------------
1 | runtime: php
2 | env: flex
3 |
4 | skip_files:
5 | - tests
6 |
7 | runtime_config:
8 | document_root: examples
9 |
--------------------------------------------------------------------------------
/uploady/vendor/google/recaptcha/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "google/recaptcha",
3 | "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
4 | "type": "library",
5 | "keywords": ["recaptcha", "captcha", "spam", "abuse"],
6 | "homepage": "https://www.google.com/recaptcha/",
7 | "license": "BSD-3-Clause",
8 | "support": {
9 | "forum": "https://groups.google.com/forum/#!forum/recaptcha",
10 | "source": "https://github.com/google/recaptcha"
11 | },
12 | "require": {
13 | "php": ">=8"
14 | },
15 | "require-dev": {
16 | "phpunit/phpunit": "^10",
17 | "friendsofphp/php-cs-fixer": "^3.14",
18 | "php-coveralls/php-coveralls": "^2.5"
19 | },
20 | "autoload": {
21 | "psr-4": {
22 | "ReCaptcha\\": "src/ReCaptcha"
23 | }
24 | },
25 | "extra": {
26 | "branch-alias": {
27 | "dev-master": "1.3.x-dev"
28 | }
29 | },
30 | "scripts": {
31 | "lint": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run .",
32 | "lint-fix": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer -vvv fix --using-cache=no .",
33 | "test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
34 | "serve-examples": "@php -S localhost:8080 -t examples"
35 | },
36 | "config": {
37 | "process-timeout": 0
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/uploady/vendor/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | 403 - Access Denied
7 |
8 |
9 |
10 |
Access Denied!
11 |
You don't have permission to view this page
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_size = 4
6 | indent_style = space
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
11 | [*.md]
12 | trim_trailing_whitespace = false
13 |
14 | [*.{yml,yaml}]
15 | indent_size = 2
16 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/VERSION:
--------------------------------------------------------------------------------
1 | 6.9.3
2 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.';
10 | $PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .';
12 | $PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ';
13 | $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: ';
14 | $PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : ';
15 | $PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: ';
16 | $PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: ';
17 | $PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : ';
18 | $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.';
19 | $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.';
21 | $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية فشل في الارسال لكل من : ';
23 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.';
25 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.';
12 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.';
13 | $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: ';
14 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: ';
15 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: ';
16 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: ';
17 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: ';
18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: ';
19 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.';
20 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: ';
21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.';
22 | $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.';
23 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.';
10 | $PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.';
12 | $PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.';
13 | $PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: ';
14 | $PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: ';
15 | $PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: ';
16 | $PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().';
19 | $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: ';
20 | $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.';
21 | $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: ';
23 | $PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.';
25 | $PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.';
12 | $PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно';
13 | $PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: ';
14 | $PHPMAILER_LANG['execute'] = 'Не може да се изпълни: ';
15 | $PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: ';
16 | $PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.';
21 | $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: ';
23 | $PHPMAILER_LANG['signing'] = 'Грешка при подписване: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.';
10 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.';
12 | $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.';
13 | $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: ';
14 | $PHPMAILER_LANG['execute'] = 'No es pot executar: ';
15 | $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: ';
16 | $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: ';
17 | $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: ';
18 | $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat';
21 | $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: ';
23 | $PHPMAILER_LANG['signing'] = 'Error al signar: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().';
25 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.';
11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.';
12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.';
13 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu';
14 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: ';
15 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: ';
16 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: ';
17 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: ';
18 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: ';
19 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.';
20 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: ';
21 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.';
22 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.';
23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: ';
24 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: ';
25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.';
26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: ';
27 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: ';
28 | $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: ';
29 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php:
--------------------------------------------------------------------------------
1 |
7 | * @author Mohammad Hossein Mojtahedi
8 | */
9 |
10 | $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.';
11 | $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.';
12 | $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: دادهها نادرست هستند.';
13 | $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.';
14 | $PHPMAILER_LANG['encoding'] = 'کدگذاری ناشناخته: ';
15 | $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: ';
16 | $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: ';
17 | $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: ';
18 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: ';
19 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.';
20 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: ';
21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمیشود.';
22 | $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.';
23 | $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: ';
24 | $PHPMAILER_LANG['signing'] = 'خطا در امضا: ';
25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.';
26 | $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: ';
27 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیرها وجود ندارد: ';
28 | $PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: ';
29 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.';
12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
13 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: ';
14 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: ';
15 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: ';
16 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: ';
17 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.';
19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.';
21 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: ';
23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.';
10 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.';
12 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía';
13 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: ';
14 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: ';
15 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: ';
16 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: ';
17 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.';
21 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: ';
23 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.';
25 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.';
10 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.';
12 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק';
13 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: ';
14 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: ';
15 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: ';
16 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: ';
17 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: ';
18 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: ';
19 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.';
21 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: ';
23 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.';
12 | $PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է';
13 | $PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: ';
14 | $PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: ';
15 | $PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: ';
16 | $PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.';
21 | $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: ';
23 | $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.';
12 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다';
13 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: ';
14 | $PHPMAILER_LANG['execute'] = '실행 불가: ';
15 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: ';
16 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: ';
17 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: ';
18 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다';
19 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.';
21 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: ';
23 | $PHPMAILER_LANG['signing'] = '서명 오류: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: ';
26 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: ';
27 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-ku.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'هەڵەی SMTP : نەتوانرا کۆدەکە پشتڕاست بکرێتەوە ';
10 | $PHPMAILER_LANG['connect_host'] = 'هەڵەی SMTP: نەتوانرا پەیوەندی بە سێرڤەرەوە بکات SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'هەڵەی SMTP: ئەو زانیاریانە قبوڵ نەکرا.';
12 | $PHPMAILER_LANG['empty_message'] = 'پەیامەکە بەتاڵە';
13 | $PHPMAILER_LANG['encoding'] = 'کۆدکردنی نەزانراو : ';
14 | $PHPMAILER_LANG['execute'] = 'ناتوانرێت جێبەجێ بکرێت: ';
15 | $PHPMAILER_LANG['file_access'] = 'ناتوانرێت دەستت بگات بە فایلەکە: ';
16 | $PHPMAILER_LANG['file_open'] = 'هەڵەی پەڕگە(فایل): ناتوانرێت بکرێتەوە: ';
17 | $PHPMAILER_LANG['from_failed'] = 'هەڵە لە ئاستی ناونیشانی نێرەر: ';
18 | $PHPMAILER_LANG['instantiate'] = 'ناتوانرێت خزمەتگوزاری پۆستە پێشکەش بکرێت.';
19 | $PHPMAILER_LANG['invalid_address'] = 'نەتوانرا بنێردرێت ، چونکە ناونیشانی ئیمەیڵەکە نادروستە: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' مەیلەر پشتگیری ناکات';
21 | $PHPMAILER_LANG['provide_address'] = 'دەبێت ناونیشانی ئیمەیڵی لانیکەم یەک وەرگر دابین بکرێت.';
22 | $PHPMAILER_LANG['recipients_failed'] = ' هەڵەی SMTP: ئەم هەڵانەی خوارەوەشکستی هێنا لە ناردن بۆ هەردووکیان: ';
23 | $PHPMAILER_LANG['signing'] = 'هەڵەی واژۆ: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect()پەیوەندی شکستی هێنا .';
25 | $PHPMAILER_LANG['smtp_error'] = 'هەڵەی ئاستی سێرڤەری SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'ناتوانرێت بیگۆڕیت یان دوبارە بینێریتەوە: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'درێژکراوە نەماوە: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.';
12 | $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias';
13 | $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: ';
14 | $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: ';
15 | $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: ';
16 | $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.';
21 | $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: ';
23 | $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.';
12 | $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs';
13 | $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: ';
14 | $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: ';
15 | $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: ';
16 | $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.';
21 | $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: ';
23 | $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-mn.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.';
12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
13 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: ';
14 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: ';
15 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: ';
16 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: ';
20 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.';
21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: ';
23 | $PHPMAILER_LANG['signing'] = 'Signeringsfel: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serverfel: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: ';
27 | $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.';
11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.';
12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi naitanggap.';
13 | $PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe';
14 | $PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: ';
15 | $PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: ';
16 | $PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: ';
17 | $PHPMAILER_LANG['file_open'] = 'File Error: Hindi mabuksan ang file: ';
18 | $PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: ';
19 | $PHPMAILER_LANG['instantiate'] = 'Hindi maisimulan ang instance ng mail function.';
20 | $PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: ';
21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado.';
22 | $PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap.';
23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: ';
24 | $PHPMAILER_LANG['signing'] = 'Hindi ma-sign: ';
25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo.';
26 | $PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo: ';
27 | $PHPMAILER_LANG['variable_set'] = 'Hindi matatakda o ma-reset ang mga variables: ';
28 | $PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension: ';
29 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.';
10 | $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.';
12 | $PHPMAILER_LANG['empty_message'] = 'Không có nội dung';
13 | $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: ';
14 | $PHPMAILER_LANG['execute'] = 'Không thực hiện được: ';
15 | $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin ';
16 | $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: ';
17 | $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.';
21 | $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: ';
23 | $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP';
25 | $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp ';
26 | $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php:
--------------------------------------------------------------------------------
1 |
7 | * @author Peter Dave Hello <@PeterDaveHello/>
8 | * @author Jason Chiang
9 | */
10 |
11 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。';
12 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。';
13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。';
14 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空';
15 | $PHPMAILER_LANG['encoding'] = '未知編碼: ';
16 | $PHPMAILER_LANG['execute'] = '無法執行:';
17 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:';
18 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:';
19 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:';
20 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。';
21 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: ';
22 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。';
23 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。';
24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:';
25 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: ';
26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗';
27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: ';
28 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: ';
29 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: ';
30 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/src/Exception.php:
--------------------------------------------------------------------------------
1 |
10 | * @author Jim Jagielski (jimjag)
11 | * @author Andy Prevost (codeworxtech)
12 | * @author Brent R. Matzelle (original founder)
13 | * @copyright 2012 - 2020 Marcus Bointon
14 | * @copyright 2010 - 2012 Jim Jagielski
15 | * @copyright 2004 - 2009 Andy Prevost
16 | * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License
17 | * @note This program is distributed in the hope that it will be useful - WITHOUT
18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 | * FITNESS FOR A PARTICULAR PURPOSE.
20 | */
21 |
22 | namespace PHPMailer\PHPMailer;
23 |
24 | /**
25 | * PHPMailer exception handler.
26 | *
27 | * @author Marcus Bointon
28 | */
29 | class Exception extends \Exception
30 | {
31 | /**
32 | * Prettify error message output.
33 | *
34 | * @return string
35 | */
36 | public function errorMessage()
37 | {
38 | return '' . htmlspecialchars($this->getMessage(), ENT_COMPAT | ENT_HTML401) . " \n";
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/uploady/vendor/phpmailer/phpmailer/src/OAuthTokenProvider.php:
--------------------------------------------------------------------------------
1 |
10 | * @author Jim Jagielski (jimjag)
11 | * @author Andy Prevost (codeworxtech)
12 | * @author Brent R. Matzelle (original founder)
13 | * @copyright 2012 - 2020 Marcus Bointon
14 | * @copyright 2010 - 2012 Jim Jagielski
15 | * @copyright 2004 - 2009 Andy Prevost
16 | * @license https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html GNU Lesser General Public License
17 | * @note This program is distributed in the hope that it will be useful - WITHOUT
18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 | * FITNESS FOR A PARTICULAR PURPOSE.
20 | */
21 |
22 | namespace PHPMailer\PHPMailer;
23 |
24 | /**
25 | * OAuthTokenProvider - OAuth2 token provider interface.
26 | * Provides base64 encoded OAuth2 auth strings for SMTP authentication.
27 | *
28 | * @see OAuth
29 | * @see SMTP::authenticate()
30 | *
31 | * @author Peter Scopes (pdscopes)
32 | * @author Marcus Bointon (Synchro/coolbru)
33 | */
34 | interface OAuthTokenProvider
35 | {
36 | /**
37 | * Generate a base64-encoded OAuth token ensuring that the access token has not expired.
38 | * The string to be base 64 encoded should be in the form:
39 | * "user=\001auth=Bearer \001\001"
40 | *
41 | * @return string
42 | */
43 | public function getOauth64();
44 | }
45 |
--------------------------------------------------------------------------------
/uploady/vendor/psr/log/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2012 PHP Framework Interoperability Group
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in
11 | all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 | THE SOFTWARE.
20 |
--------------------------------------------------------------------------------
/uploady/vendor/psr/log/README.md:
--------------------------------------------------------------------------------
1 | PSR Log
2 | =======
3 |
4 | This repository holds all interfaces/classes/traits related to
5 | [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md).
6 |
7 | Note that this is not a logger of its own. It is merely an interface that
8 | describes a logger. See the specification for more details.
9 |
10 | Installation
11 | ------------
12 |
13 | ```bash
14 | composer require psr/log
15 | ```
16 |
17 | Usage
18 | -----
19 |
20 | If you need a logger, you can use the interface like this:
21 |
22 | ```php
23 | logger = $logger;
34 | }
35 |
36 | public function doSomething()
37 | {
38 | if ($this->logger) {
39 | $this->logger->info('Doing work');
40 | }
41 |
42 | try {
43 | $this->doSomethingElse();
44 | } catch (Exception $exception) {
45 | $this->logger->error('Oh no!', array('exception' => $exception));
46 | }
47 |
48 | // do something useful
49 | }
50 | }
51 | ```
52 |
53 | You can then pick one of the implementations of the interface to get a logger.
54 |
55 | If you want to implement the interface, you can require this package and
56 | implement `Psr\Log\LoggerInterface` in your code. Please read the
57 | [specification text](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
58 | for details.
59 |
--------------------------------------------------------------------------------
/uploady/vendor/psr/log/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "psr/log",
3 | "description": "Common interface for logging libraries",
4 | "keywords": ["psr", "psr-3", "log"],
5 | "homepage": "https://github.com/php-fig/log",
6 | "license": "MIT",
7 | "authors": [
8 | {
9 | "name": "PHP-FIG",
10 | "homepage": "https://www.php-fig.org/"
11 | }
12 | ],
13 | "require": {
14 | "php": ">=8.0.0"
15 | },
16 | "autoload": {
17 | "psr-4": {
18 | "Psr\\Log\\": "src"
19 | }
20 | },
21 | "extra": {
22 | "branch-alias": {
23 | "dev-master": "3.x-dev"
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/uploady/vendor/psr/log/src/AbstractLogger.php:
--------------------------------------------------------------------------------
1 | logger = $logger;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/uploady/vendor/psr/log/src/NullLogger.php:
--------------------------------------------------------------------------------
1 | logger) { }`
11 | * blocks.
12 | */
13 | class NullLogger extends AbstractLogger
14 | {
15 | /**
16 | * Logs with an arbitrary level.
17 | *
18 | * @param mixed[] $context
19 | *
20 | * @throws \Psr\Log\InvalidArgumentException
21 | */
22 | public function log($level, string|\Stringable $message, array $context = []): void
23 | {
24 | // noop
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014-2021 Rob Janssen and contributors
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Algorithm.php:
--------------------------------------------------------------------------------
1 | $url,
17 | CURLOPT_RETURNTRANSFER => true,
18 | CURLOPT_CONNECTTIMEOUT => 10,
19 | CURLOPT_DNS_CACHE_TIMEOUT => 10,
20 | CURLOPT_TIMEOUT => 10,
21 | CURLOPT_SSL_VERIFYPEER => $this->verifyssl,
22 | CURLOPT_USERAGENT => 'TwoFactorAuth',
23 | ));
24 | $data = curl_exec($curlhandle);
25 | if ($data === false) {
26 | throw new QRException(curl_error($curlhandle));
27 | }
28 |
29 | curl_close($curlhandle);
30 | return $data;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Providers/Qr/GoogleChartsQrCodeProvider.php:
--------------------------------------------------------------------------------
1 | getContent($this->getUrl($qrText, $size));
22 | }
23 |
24 | public function getUrl(string $qrText, int $size): string
25 | {
26 | $queryParameters = array(
27 | 'chs' => $size . 'x' . $size,
28 | 'chld' => strtoupper($this->errorcorrectionlevel) . '|' . $this->margin,
29 | 'cht' => 'qr',
30 | 'choe' => $this->encoding,
31 | 'chl' => $qrText,
32 | );
33 |
34 | return 'https://chart.googleapis.com/chart?' . http_build_query($queryParameters);
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Providers/Qr/HandlesDataUri.php:
--------------------------------------------------------------------------------
1 | |null
14 | */
15 | private function DecodeDataUri(string $datauri): ?array
16 | {
17 | if (preg_match('/data:(?P[\w\.\-\+\/]+);(?P\w+),(?P.*)/', $datauri, $m) === 1) {
18 | return array(
19 | 'mimetype' => $m['mimetype'],
20 | 'encoding' => $m['encoding'],
21 | 'data' => base64_decode($m['data'], true),
22 | );
23 | }
24 |
25 | return null;
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Providers/Qr/IQRCodeProvider.php:
--------------------------------------------------------------------------------
1 | getContent($this->getUrl($qrText, $size));
24 | }
25 |
26 | public function getUrl(string $qrText, int $size): string
27 | {
28 | $queryParameters = array(
29 | 'cht' => 'qr',
30 | 'chs' => ceil($size / 2) . 'x' . ceil($size / 2),
31 | 'chld' => $this->errorcorrectionlevel . '|' . $this->margin,
32 | 'chl' => $qrText,
33 | );
34 |
35 | return 'https://image-charts.com/chart?' . http_build_query($queryParameters);
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Providers/Qr/QRException.php:
--------------------------------------------------------------------------------
1 | format)) {
19 | case 'p':
20 | return 'image/png';
21 | case 'g':
22 | return 'image/gif';
23 | case 'j':
24 | return 'image/jpeg';
25 | }
26 | throw new QRException(sprintf('Unknown MIME-type: %s', $this->format));
27 | }
28 |
29 | public function getQRCodeImage(string $qrText, int $size): string
30 | {
31 | return $this->getContent($this->getUrl($qrText, $size));
32 | }
33 |
34 | public function getUrl(string $qrText, int $size): string
35 | {
36 | $queryParameters = array(
37 | 'qrsize' => $size,
38 | 'e' => strtolower($this->errorcorrectionlevel),
39 | 'bgdcolor' => $this->bgcolor,
40 | 'fgdcolor' => $this->color,
41 | 't' => strtolower($this->format),
42 | 'd' => $qrText,
43 | );
44 |
45 | return 'https://qrickit.com/api/qr?' . http_build_query($queryParameters);
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/uploady/vendor/robthree/twofactorauth/lib/Providers/Rng/CSRNGProvider.php:
--------------------------------------------------------------------------------
1 | =5.3.0"
17 | },
18 | "autoload": {
19 | "classmap": [
20 | "lib/BrowserDetection.php"
21 | ]
22 | }
23 | }
--------------------------------------------------------------------------------
/uploady/vendor/wolfcast/browser-detection/docs/js/template.js:
--------------------------------------------------------------------------------
1 | (function(){
2 | window.addEventListener('load', () => {
3 | const el = document.querySelector('.phpdocumentor-on-this-page__content')
4 | if (!el) {
5 | return;
6 | }
7 |
8 | const observer = new IntersectionObserver(
9 | ([e]) => {
10 | e.target.classList.toggle("-stuck", e.intersectionRatio < 1);
11 | },
12 | {threshold: [1]}
13 | );
14 |
15 | observer.observe(el);
16 | })
17 | })();
18 | function openSvg(svg) {
19 | // convert to a valid XML source
20 | const as_text = new XMLSerializer().serializeToString(svg);
21 | // store in a Blob
22 | const blob = new Blob([as_text], { type: "image/svg+xml" });
23 | // create an URI pointing to that blob
24 | const url = URL.createObjectURL(blob);
25 | const win = open(url);
26 | // so the Garbage Collector can collect the blob
27 | win.onload = (evt) => URL.revokeObjectURL(url);
28 | };
29 |
30 |
31 | var svgs = document.querySelectorAll(".phpdocumentor-uml-diagram svg");
32 | for( var i=0,il = svgs.length; i< il; i ++ ) {
33 | svgs[i].onclick = (evt) => openSvg(evt.target);
34 | }
--------------------------------------------------------------------------------
/uploady_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/farisc0de/Uploady/48ec4ba544673a5990af8199a755280ad756ed23/uploady_logo.png
--------------------------------------------------------------------------------