├── .gitignore ├── .gitmodules ├── .phan ├── config.php └── internal_stubs │ └── mysql.phan_php ├── README.md ├── composer.json ├── composer.lock ├── docker-compose.yml ├── docker ├── Dockerfile ├── controller.php └── test.sql ├── github-config.php.sample ├── include ├── email-templates.inc ├── email-validation.inc ├── functions.inc ├── login.inc ├── mailer.php ├── note-reasons.inc └── spam-lib.inc ├── public ├── entry │ ├── event.php │ ├── subscribe.php │ ├── svn-account.php │ ├── user-note.php │ └── user-notes-vote.php ├── favicon.ico ├── fetch │ ├── allusers.php │ ├── cvsauth.php │ ├── cvsforwarding.php │ ├── events.php │ ├── index.php │ ├── mirrordns.php │ ├── user-notes-rss.php │ ├── user-notes.php │ ├── user-profile.php │ └── user.php ├── forgot.php ├── github-webhook.php ├── images │ ├── Robin.ico │ ├── mirror_deactivated.png │ ├── mirror_edit.png │ ├── mirror_error.png │ ├── mirror_info.png │ ├── mirror_mail.png │ ├── mirror_notice.png │ ├── mirror_ok.png │ ├── mirror_search.png │ ├── mirror_special.png │ ├── mirror_stats.png │ ├── php-logo@2x.png │ └── php.gif ├── index.php ├── login.php ├── mail │ └── why.php ├── manage │ ├── event.php │ ├── github.php │ ├── js │ │ ├── animatedcollapse.js │ │ └── jquery.min.js │ ├── pinfo.php │ ├── user-notes.php │ └── users.php ├── network │ └── status │ │ ├── .htaccess │ │ ├── api.php │ │ └── index.php └── robots.txt ├── schema.sql ├── scripts ├── conference_teaser ├── countries.inc ├── email-note-summaries ├── event-weekly-email ├── event_listing ├── index.php ├── pregen_flickr ├── pregen_news ├── remove-low-rated-notes ├── rss_parser ├── update-backend ├── update-user-notes └── usergroups_update_infos ├── src ├── DB.php ├── Query.php └── cvs-auth.php └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php ├── michelf └── php-markdown │ ├── .editorconfig │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── License.md │ ├── Michelf │ ├── Markdown.inc.php │ ├── Markdown.php │ ├── MarkdownExtra.inc.php │ ├── MarkdownExtra.php │ ├── MarkdownInterface.inc.php │ └── MarkdownInterface.php │ ├── Readme.md │ ├── Readme.php │ ├── composer.json │ ├── phpunit.xml.dist │ └── test │ ├── bootstrap.php │ ├── helpers │ └── MarkdownTestHelper.php │ ├── integration │ └── PhpMarkdownTest.php │ ├── resources │ ├── markdown.mdtest │ │ ├── Amps and angle encoding.text │ │ ├── Amps and angle encoding.xhtml │ │ ├── Auto links.text │ │ ├── Auto links.xhtml │ │ ├── Backslash escapes.text │ │ ├── Backslash escapes.xhtml │ │ ├── Blockquotes with code blocks.text │ │ ├── Blockquotes with code blocks.xhtml │ │ ├── Code Blocks.text │ │ ├── Code Blocks.xhtml │ │ ├── Code Spans.text │ │ ├── Code Spans.xhtml │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ ├── Hard-wrapped paragraphs with list-like lines.xhtml │ │ ├── Horizontal rules.text │ │ ├── Horizontal rules.xhtml │ │ ├── Images.text │ │ ├── Images.xhtml │ │ ├── Inline HTML (Advanced).text │ │ ├── Inline HTML (Advanced).xhtml │ │ ├── Inline HTML (Simple).html │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML comments.html │ │ ├── Inline HTML comments.text │ │ ├── Links, inline style.text │ │ ├── Links, inline style.xhtml │ │ ├── Links, reference style.text │ │ ├── Links, reference style.xhtml │ │ ├── Links, shortcut references.text │ │ ├── Links, shortcut references.xhtml │ │ ├── Literal quotes in titles.text │ │ ├── Literal quotes in titles.xhtml │ │ ├── Markdown Documentation - Basics.text │ │ ├── Markdown Documentation - Basics.xhtml │ │ ├── Markdown Documentation - Syntax.text │ │ ├── Markdown Documentation - Syntax.xhtml │ │ ├── Nested blockquotes.text │ │ ├── Nested blockquotes.xhtml │ │ ├── Ordered and unordered lists.text │ │ ├── Ordered and unordered lists.xhtml │ │ ├── Strong and em together.text │ │ ├── Strong and em together.xhtml │ │ ├── Tabs.text │ │ ├── Tabs.xhtml │ │ ├── Tidyness.text │ │ └── Tidyness.xhtml │ ├── php-markdown-extra.mdtest │ │ ├── Abbr.text │ │ ├── Abbr.xhtml │ │ ├── Backtick Fenced Code Blocks Special Cases.text │ │ ├── Backtick Fenced Code Blocks Special Cases.xhtml │ │ ├── Backtick Fenced Code Blocks.text │ │ ├── Backtick Fenced Code Blocks.xhtml │ │ ├── Definition Lists.text │ │ ├── Definition Lists.xhtml │ │ ├── Emphasis.text │ │ ├── Emphasis.xhtml │ │ ├── Footnotes.text │ │ ├── Footnotes.xhtml │ │ ├── Headers with attributes.text │ │ ├── Headers with attributes.xhtml │ │ ├── Inline HTML with Markdown content.text │ │ ├── Inline HTML with Markdown content.xhtml │ │ ├── Link & Image Attributes.text │ │ ├── Link & Image Attributes.xhtml │ │ ├── Tables.text │ │ ├── Tables.xhtml │ │ ├── Tilde Fenced Code Blocks Special Cases.text │ │ ├── Tilde Fenced Code Blocks Special Cases.xhtml │ │ ├── Tilde Fenced Code Blocks.text │ │ └── Tilde Fenced Code Blocks.xhtml │ └── php-markdown.mdtest │ │ ├── Adjacent Lists.text │ │ ├── Adjacent Lists.xhtml │ │ ├── Auto Links.text │ │ ├── Auto Links.xhtml │ │ ├── Backslash escapes.text │ │ ├── Backslash escapes.xhtml │ │ ├── Code Spans.text │ │ ├── Code Spans.xhtml │ │ ├── Code block in a list item.text │ │ ├── Code block in a list item.xhtml │ │ ├── Code block on second line.text │ │ ├── Code block on second line.xhtml │ │ ├── Code block regressions.text │ │ ├── Code block regressions.xhtml │ │ ├── Email auto links.text │ │ ├── Email auto links.xhtml │ │ ├── Emphasis.text │ │ ├── Emphasis.xhtml │ │ ├── Empty List Item.text │ │ ├── Empty List Item.xhtml │ │ ├── Headers.text │ │ ├── Headers.xhtml │ │ ├── Horizontal Rules.text │ │ ├── Horizontal Rules.xhtml │ │ ├── Inline HTML (Simple).html │ │ ├── Inline HTML (Simple).text │ │ ├── Inline HTML (Span).text │ │ ├── Inline HTML (Span).xhtml │ │ ├── Inline HTML comments.html │ │ ├── Inline HTML comments.text │ │ ├── Ins & del.text │ │ ├── Ins & del.xhtml │ │ ├── Links, inline style.text │ │ ├── Links, inline style.xhtml │ │ ├── MD5 Hashes.text │ │ ├── MD5 Hashes.xhtml │ │ ├── Mixed OLs and ULs.text │ │ ├── Mixed OLs and ULs.xhtml │ │ ├── Nesting.text │ │ ├── Nesting.xhtml │ │ ├── PHP-Specific Bugs.text │ │ ├── PHP-Specific Bugs.xhtml │ │ ├── Parens in URL.text │ │ ├── Parens in URL.xhtml │ │ ├── Quotes in attributes.text │ │ ├── Quotes in attributes.xhtml │ │ ├── Tight blocks.text │ │ ├── Tight blocks.xhtml │ │ ├── XML empty tag.text │ │ └── XML empty tag.xhtml │ └── unit │ └── MarkdownExtraTest.php └── phpmailer └── phpmailer ├── COMMITMENT ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json ├── get_oauth_token.php ├── language ├── phpmailer.lang-af.php ├── phpmailer.lang-ar.php ├── phpmailer.lang-az.php ├── phpmailer.lang-ba.php ├── phpmailer.lang-be.php ├── phpmailer.lang-bg.php ├── phpmailer.lang-ca.php ├── phpmailer.lang-ch.php ├── phpmailer.lang-cs.php ├── phpmailer.lang-da.php ├── phpmailer.lang-de.php ├── phpmailer.lang-el.php ├── phpmailer.lang-eo.php ├── phpmailer.lang-es.php ├── phpmailer.lang-et.php ├── phpmailer.lang-fa.php ├── phpmailer.lang-fi.php ├── phpmailer.lang-fo.php ├── phpmailer.lang-fr.php ├── phpmailer.lang-gl.php ├── phpmailer.lang-he.php ├── phpmailer.lang-hi.php ├── phpmailer.lang-hr.php ├── phpmailer.lang-hu.php ├── phpmailer.lang-hy.php ├── phpmailer.lang-id.php ├── phpmailer.lang-it.php ├── phpmailer.lang-ja.php ├── phpmailer.lang-ka.php ├── phpmailer.lang-ko.php ├── phpmailer.lang-lt.php ├── phpmailer.lang-lv.php ├── phpmailer.lang-mg.php ├── phpmailer.lang-ms.php ├── phpmailer.lang-nb.php ├── phpmailer.lang-nl.php ├── phpmailer.lang-pl.php ├── phpmailer.lang-pt.php ├── phpmailer.lang-pt_br.php ├── phpmailer.lang-ro.php ├── phpmailer.lang-ru.php ├── phpmailer.lang-sk.php ├── phpmailer.lang-sl.php ├── phpmailer.lang-sr.php ├── phpmailer.lang-sr_latn.php ├── phpmailer.lang-sv.php ├── phpmailer.lang-tl.php ├── phpmailer.lang-tr.php ├── phpmailer.lang-uk.php ├── phpmailer.lang-vi.php ├── phpmailer.lang-zh.php └── phpmailer.lang-zh_cn.php ├── phpunit.xml.dist └── src ├── Exception.php ├── OAuth.php ├── PHPMailer.php ├── POP3.php └── SMTP.php /.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | .token 3 | .token_flickr 4 | tags 5 | github-config.php 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "shared"] 2 | path = shared 3 | url = git@github.com:php/web-shared.git 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PHP user management system 2 | ========================== 3 | 4 | #### Docker 5 | 6 | ```shell 7 | docker-compose up --build 8 | ``` 9 | 10 | You can reset the data volumes using `docker-compose down -v`. 11 | 12 | #### Manual 13 | 14 | ```shell 15 | git submodule update --init 16 | 17 | # Create database and users: 18 | CREATE DATABASE phpmasterdb; 19 | CREATE USER 'nobody'@'localhost'; 20 | GRANT ALL PRIVILEGES ON phpmasterdb.* TO 'nobody'@'localhost'; 21 | 22 | # Create tables 23 | mysql -unobody phpmasterdb < schema.sql 24 | 25 | # Create user test:test 26 | INSERT INTO users (username, svnpasswd, cvsaccess) VALUES ('test', '$2y$10$iGHyxmfHI62Xyr3DPf8faOPCvmU1UMVMlhJQ/FqooqgPJ3STMHTyG', 1); 27 | 28 | # Run server (must have mysql ext) 29 | php -S localhost:8000 -d include_path="$PWD/include/" -derror_reporting="E_ALL&~E_DEPRECATED" -t public 30 | ``` 31 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "php/web-master", 3 | "description": "The user management system", 4 | "keywords": [ 5 | "php" 6 | ], 7 | "type": "project", 8 | "homepage": "https://github.com/php/web-master", 9 | "require": { 10 | "php": ">=8.0", 11 | "ext-pdo": "*", 12 | "ext-json": "*", 13 | "ext-zlib": "*", 14 | "michelf/php-markdown": "^1.9", 15 | "phpmailer/phpmailer": "^6.4" 16 | }, 17 | "autoload": { 18 | "psr-4": { 19 | "App\\": "src/" 20 | }, 21 | "files": [ 22 | "src/cvs-auth.php" 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3' 2 | 3 | services: 4 | db: 5 | image: mysql:8.0.23 6 | volumes: 7 | - db_data:/var/lib/mysql 8 | - ${PWD}/schema.sql:/docker-entrypoint-initdb.d/001-schema.sql 9 | - ${PWD}/docker/test.sql:/docker-entrypoint-initdb.d/002-test.sql 10 | restart: always 11 | environment: 12 | MYSQL_RANDOM_ROOT_PASSWORD: '1' 13 | MYSQL_USER: 'php_main' 14 | MYSQL_PASSWORD: 'test_51ebe2993a2568c6fbb1cfb4c4277991' 15 | MYSQL_DATABASE: 'php_main' 16 | 17 | web: 18 | depends_on: 19 | - db 20 | image: php-web-main:latest 21 | build: 22 | context: ./docker 23 | restart: always 24 | command: php -S 0.0.0.0:8000 -d include_path="/app/include/" -derror_reporting="E_ALL&~E_DEPRECATED" -t /app/public /app/docker/controller.php 25 | ports: 26 | - "127.0.0.1:8000:8000" 27 | volumes: 28 | - ${PWD}:/app 29 | environment: 30 | DATABASE_HOST: 'db' 31 | DATABASE_USER: 'php_main' 32 | DATABASE_PASSWORD: 'test_51ebe2993a2568c6fbb1cfb4c4277991' 33 | DATABASE_NAME: 'php_main' 34 | 35 | static: 36 | image: caddy:2 37 | restart: always 38 | command: caddy file-server --listen :8002 --root /app 39 | ports: 40 | - "127.0.0.1:8002:8002" 41 | volumes: 42 | - ${PWD}/shared:/app 43 | 44 | volumes: 45 | db_data: {} 46 | -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.0-cli 2 | 3 | RUN apt-get update && apt-get install -y \ 4 | unzip \ 5 | && docker-php-source extract \ 6 | && docker-php-ext-install pdo_mysql \ 7 | && docker-php-source delete -------------------------------------------------------------------------------- /docker/controller.php: -------------------------------------------------------------------------------- 1 | email = $email; 11 | $this->name = $name; 12 | } 13 | 14 | public static function noReply($name = '') { 15 | return new self('noreply@php.net', $name); 16 | } 17 | } 18 | 19 | function mailer($to, $subject, $body, MailAddress $from, array $replyTos = []) { 20 | $mail = new PHPMailer; 21 | $mail->isSMTP(); 22 | $mail->SMTPDebug = 0; 23 | $mail->Host = 'mailout.php.net'; 24 | $mail->Port = 25; 25 | $mail->CharSet = 'utf-8'; 26 | foreach ($replyTos as $replyTo) { 27 | $mail->addReplyTo($replyTo->email, $replyTo->name); 28 | } 29 | $mail->setFrom($from->email, $from->name); 30 | $mail->addAddress($to); 31 | $mail->Subject = $subject; 32 | $mail->Body = $body; 33 | $mail_sent = $mail->send(); 34 | } 35 | -------------------------------------------------------------------------------- /include/note-reasons.inc: -------------------------------------------------------------------------------- 1 | $note_del_reasons_pad) { 15 | $note_del_reasons_pad = $l; 16 | } 17 | } 18 | ++$note_del_reasons_pad; -------------------------------------------------------------------------------- /public/entry/subscribe.php: -------------------------------------------------------------------------------- 1 | isSMTP(); 34 | $mail->SMTPDebug = 0; 35 | $mail->Host = 'mailout.php.net'; 36 | $mail->Port = 25; 37 | $mail->setFrom($_POST['email']); 38 | preg_match('/^(.*?)(-digest|-nomail)?$/', $_POST['maillist'], $matches); 39 | $maillist = $matches[1]; 40 | $digest = count($matches) > 2 ? $matches[2] : ""; 41 | $mail->addAddress("{$maillist}+{$_POST['request']}{$digest}@lists.php.net"); 42 | $mail->Subject = "PHP Mailing List Website Subscription"; 43 | $mail->Body = "This was a request generated from the form at {$_POST['referer']} by {$_POST['remoteip']}"; 44 | $mail_sent = $mail->send(); 45 | 46 | if (!$mail_sent) { 47 | die("Mailer Error: " . $mail->ErrorInfo); 48 | } 49 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/favicon.ico -------------------------------------------------------------------------------- /public/fetch/allusers.php: -------------------------------------------------------------------------------- 1 | $text]); 24 | exit; 25 | } 26 | 27 | (!isset($_GET['token']) || md5($_GET['token']) != "d3fbcabfcf3648095037175fdeef322f") && error("token not correct.", 401); 28 | 29 | $pdo = DB::connect(); 30 | 31 | $stmt = $pdo->prepare("SELECT name, username FROM users WHERE enable AND cvsaccess"); 32 | if (!$stmt->execute()) { 33 | error("This error should never happen", 500); 34 | } 35 | 36 | $results = $stmt->fetchAll(PDO::FETCH_ASSOC); 37 | if (!$results) { 38 | error("This should never happen either", 404); 39 | } 40 | 41 | echo json_encode($results); 42 | 43 | 44 | -------------------------------------------------------------------------------- /public/fetch/cvsforwarding.php: -------------------------------------------------------------------------------- 1 | safeQuery("SELECT username,email,spamprotect FROM users WHERE email != '' AND cvsaccess"); 14 | foreach ($res as $row) { 15 | echo "$row[username]@php.net: ", 16 | ($row['spamprotect'] ? "|/local/bin/automoderate," : ""), 17 | "$row[email];\n"; 18 | echo "$row[username]@pair2.php.net: ", 19 | ($row['spamprotect'] ? "|/local/bin/automoderate," : ""), 20 | "$row[email];\n"; 21 | } -------------------------------------------------------------------------------- /public/fetch/index.php: -------------------------------------------------------------------------------- 1 | safeQuery($query); 24 | 25 | // Print out a row for all notes, obfuscating the 26 | // email addresses as needed 27 | foreach ($result as $row) { 28 | $user = $row['user']; 29 | $row['rate'] = empty($row['rate']) ? 0 : $row['rate']; 30 | if ($user != "php-general@lists.php.net" && $user != "user@example.com") { 31 | if (preg_match("!(.+)@(.+)\.(.+)!", $user)) { 32 | $user = str_replace(['@', '.'], [' at ', ' dot '], $user); 33 | } 34 | } else { 35 | $user = ''; 36 | } 37 | // Output here 38 | echo "$row[id]|$row[sect]|$row[rate]|$row[ts]|$user|", 39 | base64_encode(gzcompress($row['note'],3)),"|$row[up]|$row[down]\n"; 40 | } 41 | -------------------------------------------------------------------------------- /public/fetch/user-profile.php: -------------------------------------------------------------------------------- 1 | $text]); 24 | exit; 25 | } 26 | 27 | function render($result) 28 | { 29 | $json = json_encode($result); 30 | header('Content-Type: application/json'); 31 | header('Content-Length: ' . strlen($json)); 32 | echo $json; 33 | } 34 | 35 | (!isset($_GET['token']) || md5($_GET['token']) != "d3fbcabfcf3648095037175fdeef322f") && error("token not correct.", 401); 36 | 37 | $USERNAME = filter_input(INPUT_GET, "username", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH); 38 | 39 | $pdo = DB::connect(); 40 | 41 | $stmt = $pdo->prepare(" 42 | SELECT u.username, COALESCE(up.markdown, '') AS markdown, COALESCE(up.html, '') AS html 43 | FROM users u 44 | LEFT JOIN users_profile up ON u.userid = up.userid 45 | WHERE u.username = ? AND cvsaccess 46 | LIMIT 1 47 | "); 48 | if (!$stmt->execute([$USERNAME])) { 49 | error("This error should never happen", 500); 50 | } 51 | 52 | $results = $stmt->fetch(PDO::FETCH_ASSOC); 53 | if (!$results) { 54 | error("No such user", 404); 55 | } 56 | 57 | render($results); 58 | -------------------------------------------------------------------------------- /public/fetch/user.php: -------------------------------------------------------------------------------- 1 | $text]); 24 | exit; 25 | } 26 | 27 | (!isset($_GET['token']) || md5($_GET['token']) != "d3fbcabfcf3648095037175fdeef322f") && error("token not correct.", 401); 28 | 29 | $USERNAME = filter_input(INPUT_GET, "username", FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH); 30 | 31 | $pdo = DB::connect(); 32 | 33 | $stmt = $pdo->prepare("SELECT userid, name, email, username, spamprotect, use_sa, greylist, enable FROM users WHERE username = ? AND cvsaccess LIMIT 1"); 34 | if (!$stmt->execute([$USERNAME])) { 35 | error("This error should never happen", 500); 36 | } 37 | 38 | $results = $stmt->fetch(PDO::FETCH_ASSOC); 39 | if (!$results) { 40 | error("No such user", 404); 41 | } 42 | 43 | $stmt = $pdo->prepare("SELECT note, entered FROM users_note WHERE userid = ?"); 44 | if (!$stmt->execute([$results["userid"]])) { 45 | error("This error should never happen", 500); 46 | } 47 | 48 | unset($results["userid"]); // Our internal ID has no meaning for anyone 49 | // @phan-suppress-next-line PhanTypeArraySuspicious 50 | $results["notes"] = $stmt->fetchAll(PDO::FETCH_ASSOC); 51 | 52 | echo json_encode($results); 53 | 54 | -------------------------------------------------------------------------------- /public/images/Robin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/Robin.ico -------------------------------------------------------------------------------- /public/images/mirror_deactivated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_deactivated.png -------------------------------------------------------------------------------- /public/images/mirror_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_edit.png -------------------------------------------------------------------------------- /public/images/mirror_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_error.png -------------------------------------------------------------------------------- /public/images/mirror_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_info.png -------------------------------------------------------------------------------- /public/images/mirror_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_mail.png -------------------------------------------------------------------------------- /public/images/mirror_notice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_notice.png -------------------------------------------------------------------------------- /public/images/mirror_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_ok.png -------------------------------------------------------------------------------- /public/images/mirror_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_search.png -------------------------------------------------------------------------------- /public/images/mirror_special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_special.png -------------------------------------------------------------------------------- /public/images/mirror_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/mirror_stats.png -------------------------------------------------------------------------------- /public/images/php-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/php-logo@2x.png -------------------------------------------------------------------------------- /public/images/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/web-master/bfa3b1793e7957ba523b1bdd8c7870d62a825590/public/images/php.gif -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | '.PHP_EOL; 9 | exit(0); 10 | } 11 | 12 | require 'login.inc'; 13 | 14 | head(); 15 | ?> 16 | 17 |

You are already logged in

18 | 21 | -------------------------------------------------------------------------------- /public/manage/pinfo.php: -------------------------------------------------------------------------------- 1 | registerXPathNamespace("php", "http://php.net/ns/news"); 19 | 20 | // Loop over the items and store them in a array 21 | $STORE = []; 22 | foreach($sxe->entry as $item) { 23 | $url = (string)$item->link["href"]; 24 | $subject = (string)$item->category["term"]; 25 | if($subject == "conferences") { 26 | $subject = "conference"; 27 | } 28 | elseif($subject != "cfp") { 29 | // This is neither a conf announcement nor cfp, skip it 30 | continue; 31 | } 32 | $title = (string)$item->title; 33 | $lastDate = current($item->xpath("php:finalTeaserDate")); 34 | if(strtotime($lastDate) < strtotime("tomorrow")) { 35 | // finalTeaserDate has passed, skip it 36 | continue; 37 | } 38 | $STORE[$subject][$url] = $title; 39 | } 40 | 41 | // Create PHP readable array 42 | $write = '$CONF_TEASER = ' .var_export($STORE, true); 43 | 44 | // Write & close 45 | fwrite($out, ""); 46 | fclose($out); 47 | 48 | // If we don't have new data, delete file 49 | if (!@filesize("$outfile~")) { 50 | echo "'$outfile~' was empty, skipping\n"; 51 | unlink("$outfile~"); 52 | return; 53 | } 54 | 55 | // Replace real file with temporary file 56 | return rename("$outfile~", $outfile); 57 | } 58 | 59 | -------------------------------------------------------------------------------- /scripts/event-weekly-email: -------------------------------------------------------------------------------- 1 | 0) { 14 | 15 | $subject = "Pending unapproved events notice"; 16 | $message = " 17 | Greetings PHP Webmasters; 18 | 19 | There are roughly [$count] unapproved events awaiting moderation. Please check the queue: 20 | 21 | https://main.php.net/manage/event.php?unapproved=1 22 | 23 | Thanks!"; 24 | 25 | $headers = "From: php-webmaster@lists.php.net"; 26 | 27 | mail('php-webmaster@lists.php.net', $subject, $message, $headers, "-fnoreply@php.net"); 28 | 29 | } 30 | -------------------------------------------------------------------------------- /scripts/index.php: -------------------------------------------------------------------------------- 1 | single($query); 15 | 16 | /** --[ the lowest rated notes ]------------------- **/ 17 | 18 | $date = date('Y-m-d', strtotime(AGE_THRESHOLD . ' ago')); 19 | $query = "SELECT sect, note.ts, note_id, SUM(if (vote = 0, -1, 1)) AS weight FROM note, votes WHERE note.ts < ? AND note.id = votes.note_id GROUP by note_id HAVING weight < ? ORDER BY weight"; 20 | $result = $pdo->safeQuery($query, [ $date, RATING_THRESHOLD ] ); 21 | 22 | $table = "Rating | Note\n" 23 | . "-------+---------------------------------------------------------\n"; 24 | 25 | $count = 0; 26 | $noteIDs = []; 27 | foreach ($result as $row) { 28 | $table .= sprintf("%5d | https://php.net/manual/en/%s.php#%s\n", $row['weight'], $row['sect'], $row['note_id']); 29 | $noteIDs[] = $row['note_id']; 30 | $count++; 31 | } 32 | 33 | $body = "Following were the {$count} notes with a rating less than " . RATING_THRESHOLD . " and\nare older than " . AGE_THRESHOLD. ".\n\n" 34 | . sprintf("These notes represented %.1f%% of the %d total user notes,\nand have now been removed.\n\n", ($count / $total) * 100, $total) 35 | . $table; 36 | 37 | $stmt = $pdo->prepare("DELETE FROM note WHERE id = ?"); 38 | foreach ($noteIDs as $noteID) { 39 | $result = $stmt->execute([ $noteID ]); 40 | } 41 | 42 | mail("phpdoc@lists.php.net, php-notes@lists.php.net", "Deleted $count old and low rated notes", $body, "From: noreply@php.net", "-fnoreply@php.net"); 43 | -------------------------------------------------------------------------------- /scripts/usergroups_update_infos: -------------------------------------------------------------------------------- 1 | setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 15 | $db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); 16 | 17 | return $db; 18 | } 19 | 20 | public static function getHost(): string 21 | { 22 | return \getenv("DATABASE_HOST") ?: "localhost"; 23 | } 24 | 25 | public static function getPort(): string 26 | { 27 | return \getenv("DATABASE_PORT") ?: "3306"; 28 | } 29 | 30 | public static function getUser(): string 31 | { 32 | return \getenv("DATABASE_USER") ?: "nobody"; 33 | } 34 | 35 | public static function getPassword(): string 36 | { 37 | return \getenv("DATABASE_PASSWORD") ?: ""; 38 | } 39 | 40 | public static function getDatabase(): string 41 | { 42 | return \getenv("DATABASE_NAME") ?: "phpmasterdb"; 43 | } 44 | 45 | public function safeQuery(string $sql, array $params = []): array 46 | { 47 | $stmt = $this->prepare($sql); 48 | $stmt->execute($params); 49 | return $stmt->fetchAll(); 50 | } 51 | 52 | public function safeQueryReturnsAffectedRows(string $sql, array $params = []): int 53 | { 54 | $stmt = $this->prepare($sql); 55 | $stmt->execute($params); 56 | return $stmt->rowCount(); 57 | } 58 | 59 | public function row(string $sql, array $params = []): array 60 | { 61 | $result = $this->safeQuery($sql, $params); 62 | return array_shift($result) ?? []; 63 | } 64 | 65 | public function single(string $sql, array $params = [], $column = 0) 66 | { 67 | $stmt = $this->prepare($sql); 68 | $stmt->execute($params); 69 | return $stmt->fetchColumn($column); 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /src/Query.php: -------------------------------------------------------------------------------- 1 | add($str, $params); 12 | } 13 | 14 | public function add($str, $params = []) { 15 | $this->query .= $str; 16 | $this->params = array_merge($this->params, $params); 17 | } 18 | 19 | public function addQuery(Query $q) { 20 | $this->query .= $q->get(); 21 | $this->params = array_merge($this->params, $q->getParams()); 22 | } 23 | 24 | public function get() { 25 | return $this->query; 26 | } 27 | 28 | public function getParams(): array { 29 | return $this->params; 30 | } 31 | } -------------------------------------------------------------------------------- /src/cvs-auth.php: -------------------------------------------------------------------------------- 1 | prepare("SELECT svnpasswd FROM users WHERE cvsaccess AND username = ?"); 11 | $stmt->execute([$user]); 12 | if (false === $row = $stmt->fetch()) { 13 | return false; 14 | } 15 | return password_verify($pass, $row['svnpasswd']); 16 | } 17 | 18 | function verify_username(DB $db, $user) { 19 | $stmt = $db->prepare("SELECT 1 FROM users WHERE cvsaccess AND username = ?"); 20 | $stmt->execute([$user]); 21 | return $stmt->fetch() !== false; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/composer/InstalledVersions.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $baseDir . '/src/cvs-auth.php', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/phpmailer/phpmailer/src'), 10 | 'Michelf\\' => array($vendorDir . '/michelf/php-markdown/Michelf'), 11 | 'App\\' => array($baseDir . '/src'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | __DIR__ . '/../..' . '/src/cvs-auth.php', 11 | ); 12 | 13 | public static $prefixLengthsPsr4 = array ( 14 | 'P' => 15 | array ( 16 | 'PHPMailer\\PHPMailer\\' => 20, 17 | ), 18 | 'M' => 19 | array ( 20 | 'Michelf\\' => 8, 21 | ), 22 | 'A' => 23 | array ( 24 | 'App\\' => 4, 25 | ), 26 | ); 27 | 28 | public static $prefixDirsPsr4 = array ( 29 | 'PHPMailer\\PHPMailer\\' => 30 | array ( 31 | 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src', 32 | ), 33 | 'Michelf\\' => 34 | array ( 35 | 0 => __DIR__ . '/..' . '/michelf/php-markdown/Michelf', 36 | ), 37 | 'App\\' => 38 | array ( 39 | 0 => __DIR__ . '/../..' . '/src', 40 | ), 41 | ); 42 | 43 | public static $classMap = array ( 44 | 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 45 | ); 46 | 47 | public static function getInitializer(ClassLoader $loader) 48 | { 49 | return \Closure::bind(function () use ($loader) { 50 | $loader->prefixLengthsPsr4 = ComposerStaticInit555eac2be6304e201001ec17b2028db4::$prefixLengthsPsr4; 51 | $loader->prefixDirsPsr4 = ComposerStaticInit555eac2be6304e201001ec17b2028db4::$prefixDirsPsr4; 52 | $loader->classMap = ComposerStaticInit555eac2be6304e201001ec17b2028db4::$classMap; 53 | 54 | }, null, ClassLoader::class); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- 1 | 3 | array ( 4 | 'pretty_version' => 'dev-main', 5 | 'version' => 'dev-main', 6 | 'aliases' => 7 | array ( 8 | ), 9 | 'reference' => 'f062ccb6ae876e33bdaebc5ccf5ec2dab53862e3', 10 | 'name' => 'php/web-master', 11 | ), 12 | 'versions' => 13 | array ( 14 | 'michelf/php-markdown' => 15 | array ( 16 | 'pretty_version' => '1.9.0', 17 | 'version' => '1.9.0.0', 18 | 'aliases' => 19 | array ( 20 | ), 21 | 'reference' => 'c83178d49e372ca967d1a8c77ae4e051b3a3c75c', 22 | ), 23 | 'php/web-master' => 24 | array ( 25 | 'pretty_version' => 'dev-main', 26 | 'version' => 'dev-main', 27 | 'aliases' => 28 | array ( 29 | ), 30 | 'reference' => 'f062ccb6ae876e33bdaebc5ccf5ec2dab53862e3', 31 | ), 32 | 'phpmailer/phpmailer' => 33 | array ( 34 | 'pretty_version' => 'v6.4.0', 35 | 'version' => '6.4.0.0', 36 | 'aliases' => 37 | array ( 38 | ), 39 | 'reference' => '050d430203105c27c30efd1dce7aa421ad882d01', 40 | ), 41 | ), 42 | ); 43 | -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- 1 | = 80000)) { 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 8.0.0". You are running ' . PHP_VERSION . '.'; 9 | } 10 | 11 | if ($issues) { 12 | if (!headers_sent()) { 13 | header('HTTP/1.1 500 Internal Server Error'); 14 | } 15 | if (!ini_get('display_errors')) { 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { 17 | fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); 18 | } elseif (!headers_sent()) { 19 | echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; 20 | } 21 | } 22 | trigger_error( 23 | 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 | E_USER_ERROR 25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://EditorConfig.org 2 | root = true 3 | 4 | [*] 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = false 8 | 9 | [*.php] 10 | indent_style = tab 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /composer.lock 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | build: 2 | environment: 3 | php: 4 | version: '7.0.20' 5 | nodes: 6 | analysis: 7 | project_setup: 8 | override: 9 | - 'true' 10 | tests: 11 | override: 12 | - 13 | command: 'vendor/bin/phpunit --coverage-clover=clover.xml' 14 | coverage: 15 | file: 'clover.xml' 16 | format: 'clover' 17 | - 18 | command: phpcs-run 19 | use_website_config: true 20 | environment: 21 | node: 22 | version: 6.0.0 23 | tests: true 24 | filter: 25 | excluded_paths: 26 | - 'test/*' 27 | checks: 28 | php: true 29 | coding_style: 30 | php: 31 | indentation: 32 | general: 33 | use_tabs: true 34 | spaces: 35 | around_operators: 36 | concatenation: true 37 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | sudo: false 4 | 5 | cache: 6 | directories: 7 | - $HOME/.composer/ 8 | 9 | # Run tests against all these PHP versions 10 | # TODO: When it becomes possible in TravisCI, switch 7.4snapshot to plain 7.4 11 | php: 12 | - 5.4 13 | - 5.5 14 | - 5.6 15 | - 7.0 16 | - 7.1 17 | - 7.2 18 | - 7.3 19 | - 7.4snapshot 20 | - hhvm 21 | 22 | before_script: 23 | - composer install --prefer-dist 24 | 25 | script: 26 | - vendor/bin/phpunit --log-junit=phpunit.log 27 | 28 | notifications: 29 | email: false 30 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/License.md: -------------------------------------------------------------------------------- 1 | PHP Markdown Lib 2 | Copyright (c) 2004-2019 Michel Fortin 3 | 4 | All rights reserved. 5 | 6 | Based on Markdown 7 | Copyright (c) 2003-2006 John Gruber 8 | 9 | All rights reserved. 10 | 11 | Redistribution and use in source and binary forms, with or without 12 | modification, are permitted provided that the following conditions are 13 | met: 14 | 15 | * Redistributions of source code must retain the above copyright notice, 16 | this list of conditions and the following disclaimer. 17 | 18 | * Redistributions in binary form must reproduce the above copyright 19 | notice, this list of conditions and the following disclaimer in the 20 | documentation and/or other materials provided with the distribution. 21 | 22 | * Neither the name "Markdown" nor the names of its contributors may 23 | be used to endorse or promote products derived from this software 24 | without specific prior written permission. 25 | 26 | This software is provided by the copyright holders and contributors "as 27 | is" and any express or implied warranties, including, but not limited 28 | to, the implied warranties of merchantability and fitness for a 29 | particular purpose are disclaimed. In no event shall the copyright owner 30 | or contributors be liable for any direct, indirect, incidental, special, 31 | exemplary, or consequential damages (including, but not limited to, 32 | procurement of substitute goods or services; loss of use, data, or 33 | profits; or business interruption) however caused and on any theory of 34 | liability, whether in contract, strict liability, or tort (including 35 | negligence or otherwise) arising in any way out of the use of this 36 | software, even if advised of the possibility of such damage. 37 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/Michelf/Markdown.inc.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright 2004-2019 Michel Fortin 8 | * @copyright (Original Markdown) 2004-2006 John Gruber 9 | */ 10 | 11 | namespace Michelf; 12 | 13 | /** 14 | * Markdown Parser Interface 15 | */ 16 | interface MarkdownInterface { 17 | /** 18 | * Initialize the parser and return the result of its transform method. 19 | * This will work fine for derived classes too. 20 | * 21 | * @api 22 | * 23 | * @param string $text 24 | * @return string 25 | */ 26 | public static function defaultTransform($text); 27 | 28 | /** 29 | * Main function. Performs some preprocessing on the input text 30 | * and pass it through the document gamut. 31 | * 32 | * @api 33 | * 34 | * @param string $text 35 | * @return string 36 | */ 37 | public function transform($text); 38 | } 39 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/Readme.php: -------------------------------------------------------------------------------- 1 | 22 | 23 | 24 | 25 | PHP Markdown Lib - Readme 26 | 27 | 28 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "michelf/php-markdown", 3 | "type": "library", 4 | "description": "PHP Markdown", 5 | "homepage": "https://michelf.ca/projects/php-markdown/", 6 | "keywords": ["markdown"], 7 | "license": "BSD-3-Clause", 8 | "authors": [ 9 | { 10 | "name": "Michel Fortin", 11 | "email": "michel.fortin@michelf.ca", 12 | "homepage": "https://michelf.ca/", 13 | "role": "Developer" 14 | }, 15 | { 16 | "name": "John Gruber", 17 | "homepage": "https://daringfireball.net/" 18 | } 19 | ], 20 | "require": { 21 | "php": ">=5.3.0" 22 | }, 23 | "autoload": { 24 | "psr-4": { "Michelf\\": "Michelf/" } 25 | }, 26 | "require-dev": { 27 | "phpunit/phpunit": ">=4.3 <5.8" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | ./test/unit/ 13 | 14 | 15 | ./test/integration/ 16 | 17 | 18 | 19 | 20 | 21 | Michelf 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/bootstrap.php: -------------------------------------------------------------------------------- 1 | 5. 10 | 11 | Here's a [link] [1] with an ampersand in the URL. 12 | 13 | Here's a link with an amersand in the link text: [AT&T] [2]. 14 | 15 | Here's an inline [link](/script?foo=1&bar=2). 16 | 17 | Here's an inline [link](). 18 | 19 | 20 | [1]: http://example.com/?foo=1&bar=2 21 | [2]: http://att.com/ "AT&T" -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Amps and angle encoding.xhtml: -------------------------------------------------------------------------------- 1 |

AT&T has an ampersand in their name.

2 | 3 |

AT&T is another way to write it.

4 | 5 |

This & that.

6 | 7 |

4 < 5.

8 | 9 |

6 > 5.

10 | 11 |

Here's a link with an ampersand in the URL.

12 | 13 |

Here's a link with an amersand in the link text: AT&T.

14 | 15 |

Here's an inline link.

16 | 17 |

Here's an inline link.

18 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Auto links.text: -------------------------------------------------------------------------------- 1 | Link: . 2 | 3 | With an ampersand: 4 | 5 | * In a list? 6 | * 7 | * It should. 8 | 9 | > Blockquoted: 10 | 11 | Auto-links should not occur here: `` 12 | 13 | or here: -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Auto links.xhtml: -------------------------------------------------------------------------------- 1 |

Link: http://example.com/.

2 | 3 |

With an ampersand: http://example.com/?foo=1&bar=2

4 | 5 | 10 | 11 |
12 |

Blockquoted: http://example.com/

13 |
14 | 15 |

Auto-links should not occur here: <http://example.com/>

16 | 17 |
or here: <http://example.com/>
18 | 
19 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Backslash escapes.text: -------------------------------------------------------------------------------- 1 | These should all get escaped: 2 | 3 | Backslash: \\ 4 | 5 | Backtick: \` 6 | 7 | Asterisk: \* 8 | 9 | Underscore: \_ 10 | 11 | Left brace: \{ 12 | 13 | Right brace: \} 14 | 15 | Left bracket: \[ 16 | 17 | Right bracket: \] 18 | 19 | Left paren: \( 20 | 21 | Right paren: \) 22 | 23 | Greater-than: \> 24 | 25 | Hash: \# 26 | 27 | Period: \. 28 | 29 | Bang: \! 30 | 31 | Plus: \+ 32 | 33 | Minus: \- 34 | 35 | 36 | 37 | These should not, because they occur within a code block: 38 | 39 | Backslash: \\ 40 | 41 | Backtick: \` 42 | 43 | Asterisk: \* 44 | 45 | Underscore: \_ 46 | 47 | Left brace: \{ 48 | 49 | Right brace: \} 50 | 51 | Left bracket: \[ 52 | 53 | Right bracket: \] 54 | 55 | Left paren: \( 56 | 57 | Right paren: \) 58 | 59 | Greater-than: \> 60 | 61 | Hash: \# 62 | 63 | Period: \. 64 | 65 | Bang: \! 66 | 67 | Plus: \+ 68 | 69 | Minus: \- 70 | 71 | 72 | Nor should these, which occur in code spans: 73 | 74 | Backslash: `\\` 75 | 76 | Backtick: `` \` `` 77 | 78 | Asterisk: `\*` 79 | 80 | Underscore: `\_` 81 | 82 | Left brace: `\{` 83 | 84 | Right brace: `\}` 85 | 86 | Left bracket: `\[` 87 | 88 | Right bracket: `\]` 89 | 90 | Left paren: `\(` 91 | 92 | Right paren: `\)` 93 | 94 | Greater-than: `\>` 95 | 96 | Hash: `\#` 97 | 98 | Period: `\.` 99 | 100 | Bang: `\!` 101 | 102 | Plus: `\+` 103 | 104 | Minus: `\-` 105 | 106 | 107 | These should get escaped, even though they're matching pairs for 108 | other Markdown constructs: 109 | 110 | \*asterisks\* 111 | 112 | \_underscores\_ 113 | 114 | \`backticks\` 115 | 116 | This is a code span with a literal backslash-backtick sequence: `` \` `` 117 | 118 | This is a tag with unescaped backticks bar. 119 | 120 | This is a tag with backslashes bar. 121 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Blockquotes with code blocks.text: -------------------------------------------------------------------------------- 1 | > Example: 2 | > 3 | > sub status { 4 | > print "working"; 5 | > } 6 | > 7 | > Or: 8 | > 9 | > sub status { 10 | > return "working"; 11 | > } 12 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Blockquotes with code blocks.xhtml: -------------------------------------------------------------------------------- 1 |
2 |

Example:

3 | 4 |
sub status {
 5 |     print "working";
 6 | }
 7 | 
8 | 9 |

Or:

10 | 11 |
sub status {
12 |     return "working";
13 | }
14 | 
15 |
16 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Code Blocks.text: -------------------------------------------------------------------------------- 1 | code block on the first line 2 | 3 | Regular text. 4 | 5 | code block indented by spaces 6 | 7 | Regular text. 8 | 9 | the lines in this block 10 | all contain trailing spaces 11 | 12 | Regular Text. 13 | 14 | code block on the last line -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Code Blocks.xhtml: -------------------------------------------------------------------------------- 1 |
code block on the first line
 2 | 
3 | 4 |

Regular text.

5 | 6 |
code block indented by spaces
 7 | 
8 | 9 |

Regular text.

10 | 11 |
the lines in this block  
12 | all contain trailing spaces  
13 | 
14 | 15 |

Regular Text.

16 | 17 |
code block on the last line
18 | 
19 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Code Spans.text: -------------------------------------------------------------------------------- 1 | `` 2 | 3 | Fix for backticks within HTML tag: like this 4 | 5 | Here's how you put `` `backticks` `` in a code span. -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Code Spans.xhtml: -------------------------------------------------------------------------------- 1 |

<test a=" content of attribute ">

2 | 3 |

Fix for backticks within HTML tag: like this

4 | 5 |

Here's how you put `backticks` in a code span.

6 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Hard-wrapped paragraphs with list-like lines.text: -------------------------------------------------------------------------------- 1 | In Markdown 1.0.0 and earlier. Version 2 | 8. This line turns into a list item. 3 | Because a hard-wrapped line in the 4 | middle of a paragraph looked like a 5 | list item. 6 | 7 | Here's one with a bullet. 8 | * criminey. 9 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Hard-wrapped paragraphs with list-like lines.xhtml: -------------------------------------------------------------------------------- 1 |

In Markdown 1.0.0 and earlier. Version 2 | 8. This line turns into a list item. 3 | Because a hard-wrapped line in the 4 | middle of a paragraph looked like a 5 | list item.

6 | 7 |

Here's one with a bullet. 8 | * criminey.

9 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Horizontal rules.text: -------------------------------------------------------------------------------- 1 | Dashes: 2 | 3 | --- 4 | 5 | --- 6 | 7 | --- 8 | 9 | --- 10 | 11 | --- 12 | 13 | - - - 14 | 15 | - - - 16 | 17 | - - - 18 | 19 | - - - 20 | 21 | - - - 22 | 23 | 24 | Asterisks: 25 | 26 | *** 27 | 28 | *** 29 | 30 | *** 31 | 32 | *** 33 | 34 | *** 35 | 36 | * * * 37 | 38 | * * * 39 | 40 | * * * 41 | 42 | * * * 43 | 44 | * * * 45 | 46 | 47 | Underscores: 48 | 49 | ___ 50 | 51 | ___ 52 | 53 | ___ 54 | 55 | ___ 56 | 57 | ___ 58 | 59 | _ _ _ 60 | 61 | _ _ _ 62 | 63 | _ _ _ 64 | 65 | _ _ _ 66 | 67 | _ _ _ 68 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Horizontal rules.xhtml: -------------------------------------------------------------------------------- 1 |

Dashes:

2 | 3 |
4 | 5 |
6 | 7 |
8 | 9 |
10 | 11 |
---
12 | 
13 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 |
- - -
23 | 
24 | 25 |

Asterisks:

26 | 27 |
28 | 29 |
30 | 31 |
32 | 33 |
34 | 35 |
***
36 | 
37 | 38 |
39 | 40 |
41 | 42 |
43 | 44 |
45 | 46 |
* * *
47 | 
48 | 49 |

Underscores:

50 | 51 |
52 | 53 |
54 | 55 |
56 | 57 |
58 | 59 |
___
60 | 
61 | 62 |
63 | 64 |
65 | 66 |
67 | 68 |
69 | 70 |
_ _ _
71 | 
72 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Images.text: -------------------------------------------------------------------------------- 1 | ![Alt text](/path/to/img.jpg) 2 | 3 | ![Alt text](/path/to/img.jpg "Optional title") 4 | 5 | Inline within a paragraph: [alt text](/url/). 6 | 7 | ![alt text](/url/ "title preceded by two spaces") 8 | 9 | ![alt text](/url/ "title has spaces afterward" ) 10 | 11 | ![alt text]() 12 | 13 | ![alt text]( "with a title"). 14 | 15 | ![Empty]() 16 | 17 | ![this is a stupid URL](http://example.com/(parens).jpg) 18 | 19 | 20 | ![alt text][foo] 21 | 22 | [foo]: /url/ 23 | 24 | ![alt text][bar] 25 | 26 | [bar]: /url/ "Title here" -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Images.xhtml: -------------------------------------------------------------------------------- 1 |

Alt text

2 | 3 |

Alt text

4 | 5 |

Inline within a paragraph: alt text.

6 | 7 |

alt text

8 | 9 |

alt text

10 | 11 |

alt text

12 | 13 |

alt text.

14 | 15 |

Empty

16 | 17 |

this is a stupid URL

18 | 19 |

alt text

20 | 21 |

alt text

22 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML (Advanced).text: -------------------------------------------------------------------------------- 1 | Simple block on one line: 2 | 3 |
foo
4 | 5 | And nested without indentation: 6 | 7 |
8 |
9 |
10 | foo 11 |
12 |
13 |
14 |
bar
15 |
16 | 17 | And with attributes: 18 | 19 |
20 |
21 |
22 |
23 | 24 | This was broken in 1.0.2b7: 25 | 26 |
27 |
28 | foo 29 |
30 |
31 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML (Advanced).xhtml: -------------------------------------------------------------------------------- 1 |

Simple block on one line:

2 | 3 |
foo
4 | 5 |

And nested without indentation:

6 | 7 |
8 |
9 |
10 | foo 11 |
12 |
13 |
14 |
bar
15 |
16 | 17 |

And with attributes:

18 | 19 |
20 |
21 |
22 |
23 | 24 |

This was broken in 1.0.2b7:

25 | 26 |
27 |
28 | foo 29 |
30 |
31 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML (Simple).html: -------------------------------------------------------------------------------- 1 |

Here's a simple block:

2 | 3 |
4 | foo 5 |
6 | 7 |

This should be a code block, though:

8 | 9 |
<div>
10 |     foo
11 | </div>
12 | 
13 | 14 |

As should this:

15 | 16 |
<div>foo</div>
17 | 
18 | 19 |

Now, nested:

20 | 21 |
22 |
23 |
24 | foo 25 |
26 |
27 |
28 | 29 |

This should just be an HTML comment:

30 | 31 | 32 | 33 |

Multiline:

34 | 35 | 39 | 40 |

Code block:

41 | 42 |
<!-- Comment -->
43 | 
44 | 45 |

Just plain comment, with trailing spaces on the line:

46 | 47 | 48 | 49 |

Code:

50 | 51 |
<hr />
52 | 
53 | 54 |

Hr's:

55 | 56 |
57 | 58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 | 66 |
67 | 68 |
69 | 70 |
71 | 72 |
73 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML (Simple).text: -------------------------------------------------------------------------------- 1 | Here's a simple block: 2 | 3 |
4 | foo 5 |
6 | 7 | This should be a code block, though: 8 | 9 |
10 | foo 11 |
12 | 13 | As should this: 14 | 15 |
foo
16 | 17 | Now, nested: 18 | 19 |
20 |
21 |
22 | foo 23 |
24 |
25 |
26 | 27 | This should just be an HTML comment: 28 | 29 | 30 | 31 | Multiline: 32 | 33 | 37 | 38 | Code block: 39 | 40 | 41 | 42 | Just plain comment, with trailing spaces on the line: 43 | 44 | 45 | 46 | Code: 47 | 48 |
49 | 50 | Hr's: 51 | 52 |
53 | 54 |
55 | 56 |
57 | 58 |
59 | 60 |
61 | 62 |
63 | 64 |
65 | 66 |
67 | 68 |
69 | 70 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML comments.html: -------------------------------------------------------------------------------- 1 |

Paragraph one.

2 | 3 | 4 | 5 | 8 | 9 |

Paragraph two.

10 | 11 | 12 | 13 |

The end.

14 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Inline HTML comments.text: -------------------------------------------------------------------------------- 1 | Paragraph one. 2 | 3 | 4 | 5 | 8 | 9 | Paragraph two. 10 | 11 | 12 | 13 | The end. 14 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, inline style.text: -------------------------------------------------------------------------------- 1 | Just a [URL](/url/). 2 | 3 | [URL and title](/url/ "title"). 4 | 5 | [URL and title](/url/ "title preceded by two spaces"). 6 | 7 | [URL and title](/url/ "title preceded by a tab"). 8 | 9 | [URL and title](/url/ "title has spaces afterward" ). 10 | 11 | [URL wrapped in angle brackets](). 12 | 13 | [URL w/ angle brackets + title]( "Here's the title"). 14 | 15 | [Empty](). 16 | 17 | [With parens in the URL](http://en.wikipedia.org/wiki/WIMP_(computing)) 18 | 19 | (With outer parens and [parens in url](/foo(bar))) 20 | 21 | 22 | [With parens in the URL](/foo(bar) "and a title") 23 | 24 | (With outer parens and [parens in url](/foo(bar) "and a title")) 25 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, inline style.xhtml: -------------------------------------------------------------------------------- 1 |

Just a URL.

2 | 3 |

URL and title.

4 | 5 |

URL and title.

6 | 7 |

URL and title.

8 | 9 |

URL and title.

10 | 11 |

URL wrapped in angle brackets.

12 | 13 |

URL w/ angle brackets + title.

14 | 15 |

Empty.

16 | 17 |

With parens in the URL

18 | 19 |

(With outer parens and parens in url)

20 | 21 |

With parens in the URL

22 | 23 |

(With outer parens and parens in url)

24 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, reference style.text: -------------------------------------------------------------------------------- 1 | Foo [bar] [1]. 2 | 3 | Foo [bar][1]. 4 | 5 | Foo [bar] 6 | [1]. 7 | 8 | [1]: /url/ "Title" 9 | 10 | 11 | With [embedded [brackets]] [b]. 12 | 13 | 14 | Indented [once][]. 15 | 16 | Indented [twice][]. 17 | 18 | Indented [thrice][]. 19 | 20 | Indented [four][] times. 21 | 22 | [once]: /url 23 | 24 | [twice]: /url 25 | 26 | [thrice]: /url 27 | 28 | [four]: /url 29 | 30 | 31 | [b]: /url/ 32 | 33 | * * * 34 | 35 | [this] [this] should work 36 | 37 | So should [this][this]. 38 | 39 | And [this] []. 40 | 41 | And [this][]. 42 | 43 | And [this]. 44 | 45 | But not [that] []. 46 | 47 | Nor [that][]. 48 | 49 | Nor [that]. 50 | 51 | [Something in brackets like [this][] should work] 52 | 53 | [Same with [this].] 54 | 55 | In this case, [this](/somethingelse/) points to something else. 56 | 57 | Backslashing should suppress \[this] and [this\]. 58 | 59 | [this]: foo 60 | 61 | 62 | * * * 63 | 64 | Here's one where the [link 65 | breaks] across lines. 66 | 67 | Here's another where the [link 68 | breaks] across lines, but with a line-ending space. 69 | 70 | 71 | [link breaks]: /url/ 72 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, reference style.xhtml: -------------------------------------------------------------------------------- 1 |

Foo bar.

2 | 3 |

Foo bar.

4 | 5 |

Foo bar.

6 | 7 |

With embedded [brackets].

8 | 9 |

Indented once.

10 | 11 |

Indented twice.

12 | 13 |

Indented thrice.

14 | 15 |

Indented [four][] times.

16 | 17 |
[four]: /url
18 | 
19 | 20 |
21 | 22 |

this should work

23 | 24 |

So should this.

25 | 26 |

And this.

27 | 28 |

And this.

29 | 30 |

And this.

31 | 32 |

But not [that] [].

33 | 34 |

Nor [that][].

35 | 36 |

Nor [that].

37 | 38 |

[Something in brackets like this should work]

39 | 40 |

[Same with this.]

41 | 42 |

In this case, this points to something else.

43 | 44 |

Backslashing should suppress [this] and [this].

45 | 46 |
47 | 48 |

Here's one where the link 49 | breaks across lines.

50 | 51 |

Here's another where the link 52 | breaks across lines, but with a line-ending space.

53 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, shortcut references.text: -------------------------------------------------------------------------------- 1 | This is the [simple case]. 2 | 3 | [simple case]: /simple 4 | 5 | 6 | 7 | This one has a [line 8 | break]. 9 | 10 | This one has a [line 11 | break] with a line-ending space. 12 | 13 | [line break]: /foo 14 | 15 | 16 | [this] [that] and the [other] 17 | 18 | [this]: /this 19 | [that]: /that 20 | [other]: /other 21 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Links, shortcut references.xhtml: -------------------------------------------------------------------------------- 1 |

This is the simple case.

2 | 3 |

This one has a line 4 | break.

5 | 6 |

This one has a line 7 | break with a line-ending space.

8 | 9 |

this and the other

10 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Literal quotes in titles.text: -------------------------------------------------------------------------------- 1 | Foo [bar][]. 2 | 3 | Foo [bar](/url/ "Title with "quotes" inside"). 4 | 5 | 6 | [bar]: /url/ "Title with "quotes" inside" 7 | 8 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Literal quotes in titles.xhtml: -------------------------------------------------------------------------------- 1 |

Foo bar.

2 | 3 |

Foo bar.

4 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.text: -------------------------------------------------------------------------------- 1 | > foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Nested blockquotes.xhtml: -------------------------------------------------------------------------------- 1 |
2 |

foo

3 | 4 |
5 |

bar

6 |
7 | 8 |

foo

9 |
10 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Ordered and unordered lists.text: -------------------------------------------------------------------------------- 1 | ## Unordered 2 | 3 | Asterisks tight: 4 | 5 | * asterisk 1 6 | * asterisk 2 7 | * asterisk 3 8 | 9 | 10 | Asterisks loose: 11 | 12 | * asterisk 1 13 | 14 | * asterisk 2 15 | 16 | * asterisk 3 17 | 18 | * * * 19 | 20 | Pluses tight: 21 | 22 | + Plus 1 23 | + Plus 2 24 | + Plus 3 25 | 26 | 27 | Pluses loose: 28 | 29 | + Plus 1 30 | 31 | + Plus 2 32 | 33 | + Plus 3 34 | 35 | * * * 36 | 37 | 38 | Minuses tight: 39 | 40 | - Minus 1 41 | - Minus 2 42 | - Minus 3 43 | 44 | 45 | Minuses loose: 46 | 47 | - Minus 1 48 | 49 | - Minus 2 50 | 51 | - Minus 3 52 | 53 | 54 | ## Ordered 55 | 56 | Tight: 57 | 58 | 1. First 59 | 2. Second 60 | 3. Third 61 | 62 | and: 63 | 64 | 1. One 65 | 2. Two 66 | 3. Three 67 | 68 | 69 | Loose using tabs: 70 | 71 | 1. First 72 | 73 | 2. Second 74 | 75 | 3. Third 76 | 77 | and using spaces: 78 | 79 | 1. One 80 | 81 | 2. Two 82 | 83 | 3. Three 84 | 85 | Multiple paragraphs: 86 | 87 | 1. Item 1, graf one. 88 | 89 | Item 2. graf two. The quick brown fox jumped over the lazy dog's 90 | back. 91 | 92 | 2. Item 2. 93 | 94 | 3. Item 3. 95 | 96 | 97 | 98 | ## Nested 99 | 100 | * Tab 101 | * Tab 102 | * Tab 103 | 104 | Here's another: 105 | 106 | 1. First 107 | 2. Second: 108 | * Fee 109 | * Fie 110 | * Foe 111 | 3. Third 112 | 113 | Same thing but with paragraphs: 114 | 115 | 1. First 116 | 117 | 2. Second: 118 | * Fee 119 | * Fie 120 | * Foe 121 | 122 | 3. Third 123 | 124 | 125 | This was an error in Markdown 1.0.1: 126 | 127 | * this 128 | 129 | * sub 130 | 131 | that 132 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Strong and em together.text: -------------------------------------------------------------------------------- 1 | ***This is strong and em.*** 2 | 3 | So is ***this*** word. 4 | 5 | ___This is strong and em.___ 6 | 7 | So is ___this___ word. 8 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Strong and em together.xhtml: -------------------------------------------------------------------------------- 1 |

This is strong and em.

2 | 3 |

So is this word.

4 | 5 |

This is strong and em.

6 | 7 |

So is this word.

8 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Tabs.text: -------------------------------------------------------------------------------- 1 | + this is a list item 2 | indented with tabs 3 | 4 | + this is a list item 5 | indented with spaces 6 | 7 | Code: 8 | 9 | this code block is indented by one tab 10 | 11 | And: 12 | 13 | this code block is indented by two tabs 14 | 15 | And: 16 | 17 | + this is an example list item 18 | indented with tabs 19 | 20 | + this is an example list item 21 | indented with spaces 22 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Tabs.xhtml: -------------------------------------------------------------------------------- 1 |
    2 |
  • this is a list item 3 | indented with tabs

  • 4 |
  • this is a list item 5 | indented with spaces

  • 6 |
7 | 8 |

Code:

9 | 10 |
this code block is indented by one tab
11 | 
12 | 13 |

And:

14 | 15 |
    this code block is indented by two tabs
16 | 
17 | 18 |

And:

19 | 20 |
+   this is an example list item
21 |     indented with tabs
22 | 
23 | +   this is an example list item
24 |     indented with spaces
25 | 
26 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Tidyness.text: -------------------------------------------------------------------------------- 1 | > A list within a blockquote: 2 | > 3 | > * asterisk 1 4 | > * asterisk 2 5 | > * asterisk 3 6 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/markdown.mdtest/Tidyness.xhtml: -------------------------------------------------------------------------------- 1 |
2 |

A list within a blockquote:

3 |
    4 |
  • asterisk 1
  • 5 |
  • asterisk 2
  • 6 |
  • asterisk 3
  • 7 |
8 |
9 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Abbr.text: -------------------------------------------------------------------------------- 1 | Some text about HTML, SGML and HTML4. 2 | 3 | Let's talk about the U.S.A., (É.U. or É.-U. d'A. in French). 4 | 5 | *[HTML4]: Hyper Text Markup Language version 4 6 | *[HTML]: Hyper Text Markup Language 7 | *[SGML]: Standard Generalized Markup Language 8 | *[U.S.A.]: United States of America 9 | *[É.U.] : États-Unis d'Amérique 10 | *[É.-U. d'A.] : États-Unis d'Amérique 11 | 12 | And here we have a CD, some CDs, and some other CD's. 13 | 14 | *[CD]: Compact Disk 15 | 16 | Let's transfert documents through TCP/IP, using TCP packets. 17 | 18 | *[IP]: Internet Protocol 19 | *[TCP]: Transmission Control Protocol 20 | 21 | --- 22 | 23 | Bienvenue sur [CMS](http://www.bidulecms.com "Bidule CMS"). 24 | 25 | *[CMS]: Content Management System 26 | 27 | --- 28 | 29 | ATCCE 30 | 31 | *[ATCCE]: Abbreviation "Testing" Correct 'Character' < Escapes > -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Abbr.xhtml: -------------------------------------------------------------------------------- 1 |

Some text about HTML, SGML and HTML4.

2 | 3 |

Let's talk about the U.S.A., (É.U. or É.-U. d'A. in French).

4 | 5 |

And here we have a CD, some CDs, and some other CD's.

6 | 7 |

Let's transfert documents through TCP/IP, using TCP packets.

8 | 9 |
10 | 11 |

Bienvenue sur CMS.

12 | 13 |
14 | 15 |

ATCCE

16 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Backtick Fenced Code Blocks Special Cases.text: -------------------------------------------------------------------------------- 1 | ``` .html 2 |
    3 |
  • Code block first in file
  • 4 |
  • doesn't work under some circumstances
  • 5 |
6 | ``` 7 | 8 | As above: checking for bad interractions with the HTML block parser: 9 | 10 | ``` html 11 |
12 | ``` 13 | 14 | Some *markdown* `formatting`. 15 | 16 | ``` html 17 |
18 | ``` 19 | 20 | Some *markdown* 21 | 22 | ``` 23 |
24 | 25 | ``` 26 | 27 | ``` 28 | function test(); 29 | ``` 30 | 31 |
32 | 33 | 34 | </div> 35 | 36 | <div markdown="1"> 37 | ``` 38 | <html> 39 | <title> 40 | ``` 41 | </div> 42 | 43 | Two code blocks with no blank line between them: 44 | 45 | ``` 46 | <div> 47 | ``` 48 | ``` 49 | <div> 50 | ``` 51 | 52 | Testing *confusion* with code spans at the HTML block parser: 53 | 54 | ``` 55 | <div>```</div> 56 | ``` 57 | 58 | Testing mixing with title code blocks 59 | 60 | ``` 61 | <p>``` 62 | ~~~ 63 | <p>``` 64 | ``` 65 | ~~~ 66 | <p>``` 67 | ``` 68 | <p>``` 69 | ~~~ 70 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Backtick Fenced Code Blocks Special Cases.xhtml: -------------------------------------------------------------------------------- 1 | <pre><code class="html"><ul> 2 | <li>Code block first in file</li> 3 | <li>doesn't work under some circumstances</li> 4 | </ul> 5 | </code></pre> 6 | 7 | <p>As above: checking for bad interractions with the HTML block parser:</p> 8 | 9 | <pre><code class="html"><div> 10 | </code></pre> 11 | 12 | <p>Some <em>markdown</em><code>formatting</code>.</p> 13 | 14 | <pre><code class="html"></div> 15 | </code></pre> 16 | 17 | <p>Some <em>markdown</em></p> 18 | 19 | <pre><code><div> 20 | <html> 21 | </code></pre> 22 | 23 | <pre><code>function test(); 24 | </code></pre> 25 | 26 | <div> 27 | <pre><code><html> 28 | <title> 29 | </code></pre> 30 | </div> 31 | 32 | <div> 33 | <pre><code><html> 34 | <title> 35 | </code></pre> 36 | </div> 37 | 38 | <p>Two code blocks with no blank line between them:</p> 39 | 40 | <pre><code><div> 41 | </code></pre> 42 | 43 | <pre><code><div> 44 | </code></pre> 45 | 46 | <p>Testing <em>confusion</em> with code spans at the HTML block parser:</p> 47 | 48 | <pre><code><div>```</div> 49 | </code></pre> 50 | 51 | <p>Testing mixing with title code blocks</p> 52 | 53 | <pre><code><p>``` 54 | ~~~ 55 | <p>``` 56 | </code></pre> 57 | 58 | <pre><code><p>``` 59 | ``` 60 | <p>``` 61 | </code></pre> 62 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Backtick Fenced Code Blocks.text: -------------------------------------------------------------------------------- 1 | ``` 2 | <Fenced> 3 | ``` 4 | 5 | Code block starting and ending with empty lines: 6 | ``` 7 | 8 | 9 | <Fenced> 10 | 11 | 12 | ``` 13 | 14 | Indented code block containing fenced code block sample: 15 | 16 | ``` 17 | <Fenced> 18 | ``` 19 | 20 | Fenced code block with indented code block sample: 21 | 22 | ``` 23 | Some text 24 | 25 | Indented code block sample code 26 | ``` 27 | 28 | Fenced code block with long markers: 29 | 30 | `````````````````` 31 | Fenced 32 | `````````````````` 33 | 34 | Fenced code block with fenced code block markers of different length in it: 35 | 36 | ```` 37 | In code block 38 | ``` 39 | Still in code block 40 | ````` 41 | Still in code block 42 | ```` 43 | 44 | Fenced code block with Markdown header and horizontal rule: 45 | 46 | ``` 47 | #test 48 | --- 49 | ``` 50 | 51 | Fenced code block with link definitions, footnote definition and 52 | abbreviation definitions: 53 | 54 | ``` 55 | [example]: http://example.com/ 56 | 57 | [^1]: Footnote def 58 | 59 | *[HTML]: HyperText Markup Language 60 | ``` 61 | 62 | * In a list item with smalish indent: 63 | 64 | ````` 65 | #!/bin/sh 66 | # 67 | # Preload driver binary 68 | LD_PRELOAD=libusb-driver.so $0.bin $* 69 | ````` 70 | 71 | With HTML content. 72 | 73 | ````` 74 | <b>bold</b> 75 | ````` 76 | 77 | Bug with block level elements in this case: 78 | ``` 79 | <div> 80 | </div> 81 | ``` 82 | 83 | Indented code block of a fenced code block: 84 | 85 | ``` 86 | haha! 87 | ``` 88 | 89 | With class: 90 | 91 | `````html 92 | <b>bold</b> 93 | ````` 94 | 95 | ````` html 96 | <b>bold</b> 97 | ````` 98 | 99 | `````.html 100 | <b>bold</b> 101 | ````` 102 | 103 | ````` .html 104 | <b>bold</b> 105 | ````` 106 | 107 | With extra attribute block: 108 | 109 | `````{.html} 110 | <b>bold</b> 111 | ````` 112 | 113 | ````` {.html #codeid} 114 | <b>bold</b> 115 | ````` 116 | 117 | ````` .html{.bold} 118 | <div> 119 | ````` 120 | 121 | `````` .html {#codeid} 122 | </div> 123 | `````` -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Emphasis.text: -------------------------------------------------------------------------------- 1 | Combined emphasis: 2 | 3 | 1. ***test test*** 4 | 2. ___test test___ 5 | 3. *test **test*** 6 | 4. **test *test*** 7 | 5. ***test* test** 8 | 6. ***test** test* 9 | 7. ***test* test** 10 | 8. **test *test*** 11 | 9. *test **test*** 12 | 10. _test __test___ 13 | 11. __test _test___ 14 | 12. ___test_ test__ 15 | 13. ___test__ test_ 16 | 14. ___test_ test__ 17 | 15. __test _test___ 18 | 16. _test __test___ 19 | 17. *test __test__* 20 | 18. **test _test_** 21 | 19. **_test_ test** 22 | 20. *__test__ test* 23 | 21. **_test_ test** 24 | 22. **test _test_** 25 | 23. *test __test__* 26 | 24. _test **test**_ 27 | 25. __test *test*__ 28 | 26. __*test* test__ 29 | 27. _**test** test_ 30 | 28. __*test* test__ 31 | 29. __test *test*__ 32 | 30. _test **test**_ 33 | 34 | 35 | Incorrect nesting: 36 | 37 | 1. *test **test* test** 38 | 2. _test __test_ test__ 39 | 3. **test *test** test* 40 | 4. __test _test__ test_ 41 | 5. *test *test* test* 42 | 6. _test _test_ test_ 43 | 7. **test **test** test** 44 | 8. __test __test__ test__ 45 | 9. _**some text_** 46 | 10. *__some text*__ 47 | 11. **_some text**_ 48 | 12. *__some text*__ 49 | 50 | No emphasis: 51 | 52 | 1. test* test *test 53 | 2. test** test **test 54 | 3. test_ test _test 55 | 4. test__ test __test 56 | 57 | 58 | 59 | Middle-word emphasis (asterisks): 60 | 61 | 1. *a*b 62 | 2. a*b* 63 | 3. a*b*c 64 | 4. **a**b 65 | 5. a**b** 66 | 6. a**b**c 67 | 68 | 69 | Middle-word emphasis (underscore): 70 | 71 | 1. _a_b 72 | 2. a_b_ 73 | 3. a_b_c 74 | 4. __a__b 75 | 5. a__b__ 76 | 6. a__b__c 77 | 78 | my_precious_file.txt 79 | 80 | 81 | ## Tricky Cases 82 | 83 | E**. **Test** TestTestTest 84 | 85 | E**. **Test** Test Test Test 86 | 87 | 88 | ## Overlong emphasis 89 | 90 | Name: ____________ 91 | Organization: ____ 92 | Region/Country: __ 93 | 94 | _____Cut here_____ 95 | 96 | ____Cut here____ 97 | 98 | # Regression 99 | 100 | _**Note**_: This _is emphasis_. 101 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Footnotes.text: -------------------------------------------------------------------------------- 1 | This is the first paragraph.[^first] 2 | 3 | [^first]: This is the first note. 4 | 5 | * List item one.[^second] 6 | * List item two.[^third] 7 | 8 | [^third]: This is the third note, defined out of order. 9 | [^second]: This is the second note. 10 | [^fourth]: This is the fourth note. 11 | 12 | # Header[^fourth] 13 | 14 | Some paragraph with a footnote[^1], and another[^2]. 15 | 16 | [^1]: Content for fifth footnote. 17 | [^2]: Content for sixth footnote spaning on 18 | three lines, with some span-level markup like 19 | _emphasis_, a [link][]. 20 | 21 | [link]: http://michelf.ca/ 22 | 23 | Another paragraph with a named footnote[^fn-name]. 24 | 25 | [^fn-name]: 26 | Footnote beginning on the line next to the marker. 27 | 28 | This paragraph should not have a footnote marker since 29 | the footnote is undefined.[^3] 30 | 31 | This paragraph has a second footnote marker to footnote number one.[^1] 32 | 33 | This paragraph links to a footnote with plenty of 34 | block-level content.[^block] 35 | 36 | [^block]: 37 | Paragraph. 38 | 39 | * List item 40 | 41 | > Blockquote 42 | 43 | Code block 44 | 45 | This paragraph host the footnote reference within a 46 | footnote test[^reference]. 47 | 48 | [^reference]: 49 | This footnote has a footnote of its own.[^nested] 50 | 51 | [^nested]: 52 | This footnote should appear even though it is referenced 53 | from another footnote. But [^reference] should be litteral 54 | since the footnote with that name has already been used. 55 | 56 | - - - 57 | 58 | Testing unusual footnote name[^1$^!"']. 59 | 60 | [^1$^!"']: Haha! 61 | 62 | - - - 63 | 64 | Footnotes mixed with images[^image-mixed] 65 | ![1800 Travel][img6] 66 | ![1830 Travel][img7] 67 | 68 | [img6]: images/MGR-1800-travel.jpeg "Travel Speeds in 1800" 69 | [^image-mixed]: Footnote Content 70 | [img7]: images/MGR-1830-travel.jpeg "Travel Speeds in 1830" 71 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Headers with attributes.text: -------------------------------------------------------------------------------- 1 | Header {#id1} 2 | ====== 3 | 4 | Header { #id2} 5 | ------ 6 | 7 | ### Header {#id3 } 8 | #### Header ## { #id4 } 9 | 10 | - - - 11 | 12 | Header {.cl} 13 | ====== 14 | 15 | Header { .cl} 16 | ------ 17 | 18 | ### Header {.cl } 19 | #### Header ## { .cl } 20 | 21 | - - - 22 | 23 | Header {.cl.class} 24 | ====== 25 | 26 | Header { .cl .class} 27 | ------ 28 | 29 | ### Header {.cl .class } 30 | #### Header ## { .cl.class } 31 | 32 | - - - 33 | 34 | Header {#id5.cl.class} 35 | ====== 36 | 37 | Header { #id6 .cl .class} 38 | ------ 39 | 40 | ### Header {.cl.class#id7 } 41 | #### Header ## { .cl.class#id8 } 42 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Headers with attributes.xhtml: -------------------------------------------------------------------------------- 1 | <h1 id="id1">Header</h1> 2 | 3 | <h2 id="id2">Header</h2> 4 | 5 | <h3 id="id3">Header</h3> 6 | 7 | <h4 id="id4">Header</h4> 8 | 9 | <hr /> 10 | 11 | <h1 class="cl">Header</h1> 12 | 13 | <h2 class="cl">Header</h2> 14 | 15 | <h3 class="cl">Header</h3> 16 | 17 | <h4 class="cl">Header</h4> 18 | 19 | <hr /> 20 | 21 | <h1 class="cl class">Header</h1> 22 | 23 | <h2 class="cl class">Header</h2> 24 | 25 | <h3 class="cl class">Header</h3> 26 | 27 | <h4 class="cl class">Header</h4> 28 | 29 | <hr /> 30 | 31 | <h1 class="cl class" id="id5">Header</h1> 32 | 33 | <h2 class="cl class" id="id6">Header</h2> 34 | 35 | <h3 class="cl class" id="id7">Header</h3> 36 | 37 | <h4 class="cl class" id="id8">Header</h4> 38 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text: -------------------------------------------------------------------------------- 1 | This is an [inline link](/url "title"){.class #inline-link}. 2 | 3 | This is a [reference link][refid]. 4 | 5 | This is an ![inline image](/img "title"){.class #inline-img}. 6 | 7 | This is a ![reference image][refid]. 8 | 9 | [refid]: /path/to/something (Title) { .class #ref data-key=val } 10 | 11 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml: -------------------------------------------------------------------------------- 1 | <p>This is an <a href="/url" title="title" class="class" id="inline-link">inline link</a>.</p> 2 | 3 | <p>This is a <a href="/path/to/something" title="Title" class="class" id="ref" data-key="val">reference link</a>.</p> 4 | 5 | <p>This is an <img alt="inline image" src="/img" title="title" class="class" id="inline-img" />.</p> 6 | 7 | <p>This is a <img alt="reference image" src="/path/to/something" title="Title" class="class" id="ref" data-key="val" />.</p> 8 | 9 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks Special Cases.text: -------------------------------------------------------------------------------- 1 | ~~~ .html 2 | <ul> 3 | <li>Code block first in file</li> 4 | <li>doesn't work under some circumstances</li> 5 | </ul> 6 | ~~~ 7 | 8 | As above: checking for bad interractions with the HTML block parser: 9 | 10 | ~~~ html 11 | <div> 12 | ~~~ 13 | 14 | Some *markdown* `formatting`. 15 | 16 | ~~~ html 17 | </div> 18 | ~~~ 19 | 20 | Some *markdown* 21 | 22 | ~~~ 23 | <div> 24 | <html> 25 | ~~~ 26 | 27 | ~~~ 28 | function test(); 29 | ~~~ 30 | 31 | <div markdown="1"> 32 | <html> 33 | <title> 34 | </div> 35 | 36 | <div markdown="1"> 37 | ~~~ 38 | <html> 39 | <title> 40 | ~~~ 41 | </div> 42 | 43 | Two code blocks with no blank line between them: 44 | 45 | ~~~ 46 | <div> 47 | ~~~ 48 | ~~~ 49 | <div> 50 | ~~~ 51 | 52 | Testing *confusion* with markers in the middle: 53 | 54 | ~~~ 55 | <div>~~~</div> 56 | ~~~ 57 | 58 | Testing mixing with title code blocks 59 | 60 | ~~~ 61 | <p>``` 62 | ``` 63 | <p>``` 64 | ~~~ 65 | ``` 66 | <p>``` 67 | ~~~ 68 | <p>``` 69 | ``` 70 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks Special Cases.xhtml: -------------------------------------------------------------------------------- 1 | <pre><code class="html"><ul> 2 | <li>Code block first in file</li> 3 | <li>doesn't work under some circumstances</li> 4 | </ul> 5 | </code></pre> 6 | 7 | <p>As above: checking for bad interractions with the HTML block parser:</p> 8 | 9 | <pre><code class="html"><div> 10 | </code></pre> 11 | 12 | <p>Some <em>markdown</em><code>formatting</code>.</p> 13 | 14 | <pre><code class="html"></div> 15 | </code></pre> 16 | 17 | <p>Some <em>markdown</em></p> 18 | 19 | <pre><code><div> 20 | <html> 21 | </code></pre> 22 | 23 | <pre><code>function test(); 24 | </code></pre> 25 | 26 | <div> 27 | <pre><code><html> 28 | <title> 29 | </code></pre> 30 | </div> 31 | 32 | <div> 33 | <pre><code><html> 34 | <title> 35 | </code></pre> 36 | </div> 37 | 38 | <p>Two code blocks with no blank line between them:</p> 39 | 40 | <pre><code><div> 41 | </code></pre> 42 | 43 | <pre><code><div> 44 | </code></pre> 45 | 46 | <p>Testing <em>confusion</em> with markers in the middle:</p> 47 | 48 | <pre><code><div>~~~</div> 49 | </code></pre> 50 | 51 | <p>Testing mixing with title code blocks</p> 52 | 53 | <pre><code><p>``` 54 | ``` 55 | <p>``` 56 | </code></pre> 57 | 58 | <pre><code><p>``` 59 | ~~~ 60 | <p>``` 61 | </code></pre> 62 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks.text: -------------------------------------------------------------------------------- 1 | ~~~ 2 | <Fenced> 3 | ~~~ 4 | 5 | Code block starting and ending with empty lines: 6 | ~~~ 7 | 8 | 9 | <Fenced> 10 | 11 | 12 | ~~~ 13 | 14 | Indented code block containing fenced code block sample: 15 | 16 | ~~~ 17 | <Fenced> 18 | ~~~ 19 | 20 | Fenced code block with indented code block sample: 21 | 22 | ~~~ 23 | Some text 24 | 25 | Indented code block sample code 26 | ~~~ 27 | 28 | Fenced code block with long markers: 29 | 30 | ~~~~~~~~~~~~~~~~~~ 31 | Fenced 32 | ~~~~~~~~~~~~~~~~~~ 33 | 34 | Fenced code block with fenced code block markers of different length in it: 35 | 36 | ~~~~ 37 | In code block 38 | ~~~ 39 | Still in code block 40 | ~~~~~ 41 | Still in code block 42 | ~~~~ 43 | 44 | Fenced code block with Markdown header and horizontal rule: 45 | 46 | ~~~ 47 | #test 48 | --- 49 | ~~~ 50 | 51 | Fenced code block with link definitions, footnote definition and 52 | abbreviation definitions: 53 | 54 | ~~~ 55 | [example]: http://example.com/ 56 | 57 | [^1]: Footnote def 58 | 59 | *[HTML]: HyperText Markup Language 60 | ~~~ 61 | 62 | * In a list item with smalish indent: 63 | 64 | ~~~~~ 65 | #!/bin/sh 66 | # 67 | # Preload driver binary 68 | LD_PRELOAD=libusb-driver.so $0.bin $* 69 | ~~~~~ 70 | 71 | With HTML content. 72 | 73 | ~~~~~ 74 | <b>bold</b> 75 | ~~~~~ 76 | 77 | Bug with block level elements in this case: 78 | ~~~ 79 | <div> 80 | </div> 81 | ~~~ 82 | 83 | Indented code block of a fenced code block: 84 | 85 | ~~~ 86 | haha! 87 | ~~~ 88 | 89 | With class: 90 | 91 | ~~~~~html 92 | <b>bold</b> 93 | ~~~~~ 94 | 95 | ~~~~~ html 96 | <b>bold</b> 97 | ~~~~~ 98 | 99 | ~~~~~.html 100 | <b>bold</b> 101 | ~~~~~ 102 | 103 | ~~~~~ .html 104 | <b>bold</b> 105 | ~~~~~ 106 | 107 | With extra attribute block: 108 | 109 | ~~~~~{.html} 110 | <b>bold</b> 111 | ~~~~~ 112 | 113 | ~~~~~ {.html #codeid} 114 | <b>bold</b> 115 | ~~~~~ 116 | 117 | ~~~~~ .html{.bold} 118 | <div> 119 | ~~~~~ 120 | 121 | ~~~~~ .html {#codeid} 122 | </div> 123 | ~~~~~ -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.text: -------------------------------------------------------------------------------- 1 | * one 2 | * two 3 | 4 | 1. three 5 | 2. four 6 | 7 | * one 8 | * two 9 | 1. three 10 | 2. four -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Adjacent Lists.xhtml: -------------------------------------------------------------------------------- 1 | <ul> 2 | <li>one</li> 3 | <li>two</li> 4 | </ul> 5 | 6 | <ol> 7 | <li>three</li> 8 | <li>four</li> 9 | </ol> 10 | 11 | <ul> 12 | <li>one</li> 13 | <li>two</li> 14 | </ul> 15 | 16 | <ol> 17 | <li>three</li> 18 | <li>four</li> 19 | </ol> 20 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text: -------------------------------------------------------------------------------- 1 | <HTTP://WWW.SOMEURL.COM> 2 | 3 | <hr@company.com> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml: -------------------------------------------------------------------------------- 1 | <p><a href="HTTP://WWW.SOMEURL.COM">HTTP://WWW.SOMEURL.COM</a></p> 2 | 3 | <p><a href="mailto:hr@company.com">hr@company.com</a></p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.text: -------------------------------------------------------------------------------- 1 | Tricky combinaisons: backslash with \\-- two dashes backslash with \\> greater than \\\[test](not a link) \\\*no emphasis* -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Backslash escapes.xhtml: -------------------------------------------------------------------------------- 1 | <p>Tricky combinaisons:</p> <p>backslash with \-- two dashes</p> <p>backslash with \> greater than</p> <p>\[test](not a link)</p> <p>\*no emphasis*</p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.text: -------------------------------------------------------------------------------- 1 | From `<!--` to `-->` 2 | on two lines. 3 | 4 | From `<!--` 5 | to `-->` 6 | on three lines. 7 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml: -------------------------------------------------------------------------------- 1 | <p>From <code><!--</code> to <code>--></code> 2 | on two lines.</p> 3 | 4 | <p>From <code><!--</code> 5 | to <code>--></code> 6 | on three lines.</p> 7 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.text: -------------------------------------------------------------------------------- 1 | 2 | * List Item: 3 | 4 | code block 5 | 6 | with a blank line 7 | 8 | within a list item. 9 | 10 | * code block 11 | as first element of a list item 12 | 13 | * List Item: 14 | 15 | code block with whitespace on preceding line -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block in a list item.xhtml: -------------------------------------------------------------------------------- 1 | <ul> 2 | <li><p>List Item:</p> 3 | 4 | <pre><code>code block 5 | 6 | with a blank line 7 | </code></pre> 8 | 9 | <p>within a list item.</p></li> 10 | <li><pre><code>code block 11 | as first element of a list item 12 | </code></pre></li> 13 | 14 | <li><p>List Item:</p> 15 | 16 | <pre><code>code block with whitespace on preceding line 17 | </code></pre></li> 18 | </ul> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.text: -------------------------------------------------------------------------------- 1 | 2 | Codeblock on second line 3 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block on second line.xhtml: -------------------------------------------------------------------------------- 1 | <pre><code>Codeblock on second line 2 | </code></pre> 3 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text: -------------------------------------------------------------------------------- 1 | <?php 2 | echo "hello!"; 3 | ?> 4 | 5 | foo `bar` 6 | 7 | <?php 8 | echo "hello!"; 9 | 10 | lorem ipsum 11 | 12 | echo "hello!"; 13 | ?> 14 | 15 | lorem ipsum -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml: -------------------------------------------------------------------------------- 1 | <pre><code><?php 2 | echo "hello!"; 3 | ?> 4 | </code></pre> 5 | 6 | <p>foo <code>bar</code></p> 7 | 8 | <pre><code><?php 9 | echo "hello!"; 10 | </code></pre> 11 | 12 | <p>lorem ipsum</p> 13 | 14 | <pre><code>echo "hello!"; 15 | ?> 16 | </code></pre> 17 | 18 | <p>lorem ipsum</p> 19 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text: -------------------------------------------------------------------------------- 1 | <michel.fortin@michelf.ca> 2 | 3 | International domain names: <help@tūdaliņ.lv> 4 | 5 | 6 | ## Some weird valid email addresses 7 | 8 | <abc.123@example.com> 9 | 10 | <1234567890@example.com> 11 | 12 | <_______@example.com> 13 | 14 | <abc+mailbox/department=shipping@example.com> 15 | 16 | <!#$%&'*+-/=?^_`.{|}~@example.com> (all of these characters are allowed) 17 | 18 | <"abc@def"@example.com> (anything goes inside quotation marks) 19 | 20 | <"Fred Bloggs"@example.com> 21 | 22 | <jsmith@[192.0.2.1]> 23 | 24 | <"A"@example.com> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Emphasis.text: -------------------------------------------------------------------------------- 1 | Combined emphasis: 2 | 3 | 1. ***test test*** 4 | 2. ___test test___ 5 | 3. *test **test*** 6 | 4. **test *test*** 7 | 5. ***test* test** 8 | 6. ***test** test* 9 | 7. ***test* test** 10 | 8. **test *test*** 11 | 9. *test **test*** 12 | 10. _test __test___ 13 | 11. __test _test___ 14 | 12. ___test_ test__ 15 | 13. ___test__ test_ 16 | 14. ___test_ test__ 17 | 15. __test _test___ 18 | 16. _test __test___ 19 | 17. *test __test__* 20 | 18. **test _test_** 21 | 19. **_test_ test** 22 | 20. *__test__ test* 23 | 21. **_test_ test** 24 | 22. **test _test_** 25 | 23. *test __test__* 26 | 24. _test **test**_ 27 | 25. __test *test*__ 28 | 26. __*test* test__ 29 | 27. _**test** test_ 30 | 28. __*test* test__ 31 | 29. __test *test*__ 32 | 30. _test **test**_ 33 | 34 | 35 | Incorrect nesting: 36 | 37 | 1. *test **test* test** 38 | 2. _test __test_ test__ 39 | 3. **test *test** test* 40 | 4. __test _test__ test_ 41 | 5. *test *test* test* 42 | 6. _test _test_ test_ 43 | 7. **test **test** test** 44 | 8. __test __test__ test__ 45 | 9. _**some text_** 46 | 10. *__some text*__ 47 | 11. **_some text**_ 48 | 12. *__some text*__ 49 | 50 | 51 | No emphasis: 52 | 53 | 1. test* test *test 54 | 2. test** test **test 55 | 3. test_ test _test 56 | 4. test__ test __test 57 | 58 | 59 | 60 | Middle-word emphasis (asterisks): 61 | 62 | 1. *a*b 63 | 2. a*b* 64 | 3. a*b*c 65 | 4. **a**b 66 | 5. a**b** 67 | 6. a**b**c 68 | 69 | 70 | Middle-word emphasis (underscore): 71 | 72 | 1. _a_b 73 | 2. a_b_ 74 | 3. a_b_c 75 | 4. __a__b 76 | 5. a__b__ 77 | 6. a__b__c 78 | 79 | my_precious_file.txt 80 | 81 | 82 | ## Tricky Cases 83 | 84 | E**. **Test** TestTestTest 85 | 86 | E**. **Test** Test Test Test 87 | 88 | 89 | ## Overlong emphasis 90 | 91 | Name: ____________ 92 | Organization: ____ 93 | Region/Country: __ 94 | 95 | _____Cut here_____ 96 | 97 | ____Cut here____ 98 | 99 | # Regression 100 | 101 | _**Note**_: This _is emphasis_. 102 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.text: -------------------------------------------------------------------------------- 1 | With asterisks 2 | 3 | * List item 4 | * 5 | * List item 6 | 7 | With numbers 8 | 9 | 1. List item 10 | 2. 11 | 3. List item 12 | 13 | With hyphens 14 | 15 | - List item 16 | - 17 | - List item 18 | 19 | With asterisks 20 | 21 | * List item 22 | * List item 23 | * 24 | 25 | With numbers 26 | 27 | 1. List item 28 | 2. List item 29 | 3. 30 | 31 | With hyphens 32 | 33 | - List item 34 | - List item 35 | - 36 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Empty List Item.xhtml: -------------------------------------------------------------------------------- 1 | <p>With asterisks</p> 2 | 3 | <ul> 4 | <li>List item</li> 5 | <li></li> 6 | <li>List item</li> 7 | </ul> 8 | 9 | <p>With numbers</p> 10 | 11 | <ol> 12 | <li>List item</li> 13 | <li></li> 14 | <li>List item</li> 15 | </ol> 16 | 17 | <p>With hyphens</p> 18 | 19 | <ul> 20 | <li>List item</li> 21 | <li></li> 22 | <li>List item</li> 23 | </ul> 24 | 25 | <p>With asterisks</p> 26 | 27 | <ul> 28 | <li>List item</li> 29 | <li>List item</li> 30 | <li></li> 31 | </ul> 32 | 33 | <p>With numbers</p> 34 | 35 | <ol> 36 | <li>List item</li> 37 | <li>List item</li> 38 | <li></li> 39 | </ol> 40 | 41 | <p>With hyphens</p> 42 | 43 | <ul> 44 | <li>List item</li> 45 | <li>List item</li> 46 | <li></li> 47 | </ul> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.text: -------------------------------------------------------------------------------- 1 | Header ====== Header ------ ### Header 2 | 3 | - - - 4 | 5 | Header ====== Paragraph Header ------ Paragraph ### Header Paragraph 6 | 7 | - - - 8 | 9 | Paragraph Header ====== Paragraph Paragraph Header ------ Paragraph Paragraph ### Header Paragraph -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Headers.xhtml: -------------------------------------------------------------------------------- 1 | <h1>Header</h1> 2 | 3 | <h2>Header</h2> 4 | 5 | <h3>Header</h3> 6 | 7 | <hr /> 8 | 9 | <h1>Header</h1> 10 | 11 | <p>Paragraph</p> 12 | 13 | <h2>Header</h2> 14 | 15 | <p>Paragraph</p> 16 | 17 | <h3>Header</h3> 18 | 19 | <p>Paragraph</p> 20 | 21 | <hr /> 22 | 23 | <p>Paragraph</p> 24 | 25 | <h1>Header</h1> 26 | 27 | <p>Paragraph</p> 28 | 29 | <p>Paragraph</p> 30 | 31 | <h2>Header</h2> 32 | 33 | <p>Paragraph</p> 34 | 35 | <p>Paragraph</p> 36 | 37 | <h3>Header</h3> 38 | 39 | <p>Paragraph</p> 40 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.text: -------------------------------------------------------------------------------- 1 | Horizontal rules: 2 | 3 | - - - 4 | 5 | * * * 6 | 7 | *** 8 | 9 | --- 10 | 11 | ___ 12 | 13 | Not horizontal rules (testing for a bug in 1.0.1j): 14 | 15 | +++ 16 | 17 | ,,, 18 | 19 | === 20 | 21 | ??? 22 | 23 | AAA 24 | 25 | jjj 26 | 27 | j j j 28 | 29 | n n n 30 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Horizontal Rules.xhtml: -------------------------------------------------------------------------------- 1 | <p>Horizontal rules:</p> 2 | 3 | <hr /> 4 | 5 | <hr /> 6 | 7 | <hr /> 8 | 9 | <hr /> 10 | 11 | <hr /> 12 | 13 | <p>Not horizontal rules (testing for a bug in 1.0.1j):</p> 14 | 15 | <p>+++</p> 16 | 17 | <p>,,,</p> 18 | 19 | <p>===</p> 20 | 21 | <p>???</p> 22 | 23 | <p>AAA</p> 24 | 25 | <p>jjj</p> 26 | 27 | <p>j j j</p> 28 | 29 | <p>n n n</p> 30 | 31 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html: -------------------------------------------------------------------------------- 1 | <p>With some attributes:</p> 2 | 3 | <div id="test"> 4 | foo 5 | </div> 6 | 7 | <div id="test" 8 | class="nono"> 9 | foo 10 | </div> 11 | 12 | <p>Hr's:</p> 13 | 14 | <hr class="foo" 15 | id="bar" > 16 | 17 | <p>Regression:</p> 18 | 19 | <pre> 20 | #test 21 | </pre> 22 | 23 | <p>Hello</p> 24 | <p>Michael</p> 25 | <p>E.</p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text: -------------------------------------------------------------------------------- 1 | With some attributes: 2 | 3 | <div id="test"> 4 | foo 5 | </div> 6 | 7 | <div id="test" 8 | class="nono"> 9 | foo 10 | </div> 11 | 12 | Hr's: 13 | 14 | <hr class="foo" 15 | id="bar" > 16 | 17 | Regression: 18 | 19 | <pre> 20 | #test 21 | </pre> 22 | 23 | <p>Hello</p> 24 | <p>Michael</p> 25 | <p>E.</p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text: -------------------------------------------------------------------------------- 1 | <abbr title="` **Attribute Content Is Not A Code Span** `">ACINACS</abbr> 2 | 3 | <abbr title="`first backtick!">SB</abbr> 4 | <abbr title="`second backtick!">SB</abbr> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml: -------------------------------------------------------------------------------- 1 | <p><abbr title="` **Attribute Content Is Not A Code Span** `">ACINACS</abbr></p> 2 | 3 | <p><abbr title="`first backtick!">SB</abbr> 4 | <abbr title="`second backtick!">SB</abbr></p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html: -------------------------------------------------------------------------------- 1 | <p>Paragraph one.</p> 2 | 3 | <!-- double--dash (invalid SGML comment) --> 4 | 5 | <p>Paragraph two.</p> 6 | 7 | <!-- enclosed tag </div> --> 8 | 9 | <p>The end.</p> 10 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text: -------------------------------------------------------------------------------- 1 | Paragraph one. 2 | 3 | <!-- double--dash (invalid SGML comment) --> 4 | 5 | Paragraph two. 6 | 7 | <!-- enclosed tag </div> --> 8 | 9 | The end. 10 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.text: -------------------------------------------------------------------------------- 1 | Here is a block tag ins: 2 | 3 | <ins> 4 | <p>Some text</p> 5 | </ins> 6 | 7 | <ins>And here it is inside a paragraph.</ins> 8 | 9 | And here it is <ins>in the middle of</ins> a paragraph. 10 | 11 | <del> 12 | <p>Some text</p> 13 | </del> 14 | 15 | <del>And here is ins as a paragraph.</del> 16 | 17 | And here it is <del>in the middle of</del> a paragraph. 18 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml: -------------------------------------------------------------------------------- 1 | <p>Here is a block tag ins:</p> 2 | 3 | <ins> 4 | <p>Some text</p> 5 | </ins> 6 | 7 | <p><ins>And here it is inside a paragraph.</ins></p> 8 | 9 | <p>And here it is <ins>in the middle of</ins> a paragraph.</p> 10 | 11 | <del> 12 | <p>Some text</p> 13 | </del> 14 | 15 | <p><del>And here is ins as a paragraph.</del></p> 16 | 17 | <p>And here it is <del>in the middle of</del> a paragraph.</p> 18 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](<?}]*+|&)>). 2 | 3 | [link](<url://with spaces> "title"). 4 | 5 | [link][]. 6 | 7 | [link]: <url with spaces> "title" 8 | 9 | [link](<s p a c e s>) -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml: -------------------------------------------------------------------------------- 1 | <p><a href="?}]*+|&)">silly URL w/ angle brackets</a>.</p> 2 | 3 | <p><a href="url://with spaces" title="title">link</a>.</p> 4 | 5 | <p><a href="url with spaces" title="title">link</a>.</p> 6 | 7 | <p><a href="s p a c e s">link</a></p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.text: -------------------------------------------------------------------------------- 1 | # Character Escapes 2 | 3 | The MD5 value for `+` is "26b17225b626fb9238849fd60eabdf60". 4 | 5 | # HTML Blocks 6 | 7 | <p>test</p> 8 | 9 | The MD5 value for `<p>test</p>` is: 10 | 11 | 6205333b793f34273d75379350b36826 -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml: -------------------------------------------------------------------------------- 1 | <h1>Character Escapes</h1> 2 | 3 | <p>The MD5 value for <code>+</code> is "26b17225b626fb9238849fd60eabdf60".</p> 4 | 5 | <h1>HTML Blocks</h1> 6 | 7 | <p>test</p> 8 | 9 | <p>The MD5 value for <code><p>test</p></code> is:</p> 10 | 11 | <p>6205333b793f34273d75379350b36826</p> 12 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.text: -------------------------------------------------------------------------------- 1 | * test 2 | + test 3 | - test 4 | 5 | 1. test 6 | 2. test 7 | 8 | * test 9 | + test 10 | - test 11 | 12 | 1. test 13 | 2. test 14 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Mixed OLs and ULs.xhtml: -------------------------------------------------------------------------------- 1 | <ul> 2 | <li>test</li> 3 | <li>test</li> 4 | <li>test</li> 5 | </ul> 6 | 7 | <ol> 8 | <li>test</li> 9 | <li>test</li> 10 | </ol> 11 | 12 | <ul> 13 | <li>test</li> 14 | <li>test</li> 15 | <li>test</li> 16 | </ul> 17 | 18 | <ol> 19 | <li>test</li> 20 | <li>test</li> 21 | </ol> 22 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.text: -------------------------------------------------------------------------------- 1 | Valid nesting: 2 | 3 | **[Link](url)** 4 | 5 | [**Link**](url) 6 | 7 | **[**Link**](url)** 8 | 9 | Invalid nesting: 10 | 11 | [[Link](url)](url) -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Nesting.xhtml: -------------------------------------------------------------------------------- 1 | <p>Valid nesting:</p> 2 | 3 | <p><strong><a href="url">Link</a></strong></p> 4 | 5 | <p><a href="url"><strong>Link</strong></a></p> 6 | 7 | <p><strong><a href="url"><strong>Link</strong></a></strong></p> 8 | 9 | <p>Invalid nesting:</p> 10 | 11 | <p><a href="url">[Link](url)</a></p> 12 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.text: -------------------------------------------------------------------------------- 1 | This tests for a bug where quotes escaped by PHP when using 2 | `preg_replace` with the `/e` modifier must be correctly unescaped 3 | (hence the `_UnslashQuotes` function found only in PHP Markdown). 4 | 5 | 6 | 7 | Headers below should appear exactly as they are typed (no backslash 8 | added or removed). 9 | 10 | Header "quoted\" again \\"" 11 | =========================== 12 | 13 | Header "quoted\" again \\"" 14 | --------------------------- 15 | 16 | ### Header "quoted\" again \\"" ### 17 | 18 | 19 | 20 | Test with tabs for `_Detab`: 21 | 22 | Code 'block' with some "tabs" and "quotes" 23 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/PHP-Specific Bugs.xhtml: -------------------------------------------------------------------------------- 1 | <p>This tests for a bug where quotes escaped by PHP when using 2 | <code>preg_replace</code> with the <code>/e</code> modifier must be correctly unescaped 3 | (hence the <code>_UnslashQuotes</code> function found only in PHP Markdown).</p> 4 | 5 | <p>Headers below should appear exactly as they are typed (no backslash 6 | added or removed).</p> 7 | 8 | <h1>Header "quoted\" again \""</h1> 9 | 10 | <h2>Header "quoted\" again \""</h2> 11 | 12 | <h3>Header "quoted\" again \""</h3> 13 | 14 | <p>Test with tabs for <code>_Detab</code>:</p> 15 | 16 | <pre><code>Code 'block' with some "tabs" and "quotes" 17 | </code></pre> 18 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.text: -------------------------------------------------------------------------------- 1 | [Inline link 1 with parens](/url\(test\) "title"). 2 | 3 | [Inline link 2 with parens](</url\(test\)> "title"). 4 | 5 | [Inline link 3 with non-escaped parens](/url(test) "title"). 6 | 7 | [Inline link 4 with non-escaped parens](</url(test)> "title"). 8 | 9 | [Reference link 1 with parens][1]. 10 | 11 | [Reference link 2 with parens][2]. 12 | 13 | [1]: /url(test) "title" 14 | [2]: </url(test)> "title" 15 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml: -------------------------------------------------------------------------------- 1 | <p><a href="/url(test)" title="title">Inline link 1 with parens</a>.</p> 2 | 3 | <p><a href="/url(test)" title="title">Inline link 2 with parens</a>.</p> 4 | 5 | <p><a href="/url(test)" title="title">Inline link 3 with non-escaped parens</a>.</p> 6 | 7 | <p><a href="/url(test)" title="title">Inline link 4 with non-escaped parens</a>.</p> 8 | 9 | <p><a href="/url(test)" title="title">Reference link 1 with parens</a>.</p> 10 | 11 | <p><a href="/url(test)" title="title">Reference link 2 with parens</a>.</p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.text: -------------------------------------------------------------------------------- 1 | [Test](/"style="color:red) 2 | [Test](/'style='color:red) 3 | 4 | ![](/"style="border-color:red;border-size:1px;border-style:solid) 5 | ![](/'style='border-color:red;border-size:1px;border-style:solid) 6 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml: -------------------------------------------------------------------------------- 1 | <p><a href="/"style="color:red">Test</a> 2 | <a href="/'style='color:red">Test</a></p> 3 | 4 | <p><img src="/"style="border-color:red;border-size:1px;border-style:solid" alt="" /> 5 | <img src="/'style='border-color:red;border-size:1px;border-style:solid" alt="" /></p> 6 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.text: -------------------------------------------------------------------------------- 1 | Paragraph and no space: * ciao Paragraph and 1 space: * ciao Paragraph and 3 spaces: * ciao Paragraph and 4 spaces: * ciao Paragraph before header: #Header Paragraph before blockquote: >Some quote. -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Tight blocks.xhtml: -------------------------------------------------------------------------------- 1 | <p>Paragraph and no space: 2 | * ciao</p> 3 | 4 | <p>Paragraph and 1 space: 5 | * ciao</p> 6 | 7 | <p>Paragraph and 3 spaces: 8 | * ciao</p> 9 | 10 | <p>Paragraph and 4 spaces: 11 | * ciao</p> 12 | 13 | <p>Paragraph before header:</p> 14 | 15 | <h1>Header</h1> 16 | 17 | <p>Paragraph before blockquote:</p> 18 | 19 | <blockquote> 20 | <p>Some quote.</p> 21 | </blockquote> 22 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text: -------------------------------------------------------------------------------- 1 | First line. <br/> 2 | Second line. 3 | -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml: -------------------------------------------------------------------------------- 1 | <p>First line. <br/> 2 | Second line.</p> -------------------------------------------------------------------------------- /vendor/michelf/php-markdown/test/unit/MarkdownExtraTest.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | class MarkdownExtraTest extends \PHPUnit\Framework\TestCase 4 | { 5 | public function testSetupOfPredefinedAttributes() 6 | { 7 | $obj = new \Michelf\MarkdownExtra(); 8 | 9 | // Allows custom expansions of arreviations to their full version with the abbr tag 10 | $obj->predef_abbr = array( 11 | 'foo' => 'foobar-test', 12 | ); 13 | $result = $obj->transform('**Hello world, foo**'); 14 | 15 | $this->assertSame( 16 | '<p><strong>Hello world, <abbr title="foobar-test">foo</abbr></strong></p>', 17 | trim($result) 18 | ); 19 | } 20 | 21 | public function testSetupOfMultiplePredefinedAttributes() 22 | { 23 | $obj = new \Michelf\MarkdownExtra(); 24 | 25 | // Allows custom expansions of arreviations to their full version with the abbr tag 26 | $obj->predef_abbr = array( 27 | 'foo' => 'foobar-test', 28 | 'ISP' => 'Internet Service Provider', 29 | ); 30 | $result = $obj->transform('**I get internet from an ISP. foo.**'); 31 | 32 | $this->assertSame( 33 | '<p><strong>I get internet from an <abbr title="Internet Service Provider">ISP' . 34 | '</abbr>. <abbr title="foobar-test">foo</abbr>.</strong></p>', 35 | trim($result) 36 | ); 37 | } 38 | 39 | public function testTransformWithNoMarkup() 40 | { 41 | $obj = new \Michelf\MarkdownExtra(); 42 | $obj->no_markup = true; 43 | 44 | $result = $obj->transform('This is a <strong class="custom">no markup</strong> test.'); 45 | 46 | $this->assertSame( 47 | '<p>This is a <strong class="custom">no markup</strong> test.</p>', 48 | trim($result) 49 | ); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.4.0 -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpmailer/phpmailer", 3 | "type": "library", 4 | "description": "PHPMailer is a full-featured email creation and transfer class for PHP", 5 | "authors": [ 6 | { 7 | "name": "Marcus Bointon", 8 | "email": "phpmailer@synchromedia.co.uk" 9 | }, 10 | { 11 | "name": "Jim Jagielski", 12 | "email": "jimjag@gmail.com" 13 | }, 14 | { 15 | "name": "Andy Prevost", 16 | "email": "codeworxtech@users.sourceforge.net" 17 | }, 18 | { 19 | "name": "Brent R. Matzelle" 20 | } 21 | ], 22 | "funding": [ 23 | { 24 | "url": "https://github.com/Synchro", 25 | "type": "github" 26 | } 27 | ], 28 | "require": { 29 | "php": ">=5.5.0", 30 | "ext-ctype": "*", 31 | "ext-filter": "*", 32 | "ext-hash": "*" 33 | }, 34 | "require-dev": { 35 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", 36 | "doctrine/annotations": "^1.2", 37 | "phpcompatibility/php-compatibility": "^9.3.5", 38 | "roave/security-advisories": "dev-latest", 39 | "squizlabs/php_codesniffer": "^3.5.6", 40 | "yoast/phpunit-polyfills": "^0.2.0" 41 | }, 42 | "suggest": { 43 | "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", 44 | "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", 45 | "league/oauth2-google": "Needed for Google XOAUTH2 authentication", 46 | "psr/log": "For optional PSR-3 debug logging", 47 | "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", 48 | "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" 49 | }, 50 | "autoload": { 51 | "psr-4": { 52 | "PHPMailer\\PHPMailer\\": "src/" 53 | } 54 | }, 55 | "autoload-dev": { 56 | "psr-4": { 57 | "PHPMailer\\Test\\": "test/" 58 | } 59 | }, 60 | "license": "LGPL-2.1-only" 61 | } 62 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-af.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Afrikaans PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: kon nie geverifieer word nie.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon nie aan SMTP-verbind nie.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data nie aanvaar nie.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Boodskapliggaam leeg.'; 12 | $PHPMAILER_LANG['encoding'] = 'Onbekende kodering: '; 13 | $PHPMAILER_LANG['execute'] = 'Kon nie uitvoer nie: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kon nie lêer oopmaak nie: '; 15 | $PHPMAILER_LANG['file_open'] = 'Lêerfout: Kon nie lêer oopmaak nie: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Die volgende Van adres misluk: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kon nie posfunksie instansieer nie.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldige adres: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer word nie ondersteun nie.'; 20 | $PHPMAILER_LANG['provide_address'] = 'U moet ten minste een ontvanger e-pos adres verskaf.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: Die volgende ontvangers het misluk: '; 22 | $PHPMAILER_LANG['signing'] = 'Ondertekening Fout: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP-verbinding () misluk.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-bediener fout: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kan nie veranderlike instel of herstel nie: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Uitbreiding ontbreek: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Arabic PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author bahjat al mostafa <bahjat983@hotmail.com> 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 | 'فشل في الارسال لكل من : '; 24 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; 27 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Azerbaijani PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author @mirjalal 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP xətası: Giriş uğursuz oldu.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP xətası: SMTP serverinə qoşulma uğursuz oldu.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP xətası: Verilənlər qəbul edilməyib.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Boş mesaj göndərilə bilməz.'; 13 | $PHPMAILER_LANG['encoding'] = 'Qeyri-müəyyən kodlaşdırma: '; 14 | $PHPMAILER_LANG['execute'] = 'Əmr yerinə yetirilmədi: '; 15 | $PHPMAILER_LANG['file_access'] = 'Fayla giriş yoxdur: '; 16 | $PHPMAILER_LANG['file_open'] = 'Fayl xətası: Fayl açıla bilmədi: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Göstərilən poçtlara göndərmə uğursuz oldu: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Mail funksiyası işə salına bilmədi.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Düzgün olmayan e-mail adresi: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - e-mail kitabxanası dəstəklənmir.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Ən azı bir e-mail adresi daxil edilməlidir.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP xətası: Aşağıdakı ünvanlar üzrə alıcılara göndərmə uğursuzdur: '; 23 | $PHPMAILER_LANG['signing'] = 'İmzalama xətası: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP serverinə qoşulma uğursuz oldu.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri xətası: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Dəyişənin quraşdırılması uğursuz oldu: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Bosnian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Ermin Islamagić <ermin@islamagic.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Belarusian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Aleksander Maksymiuk <info@setpro.pl> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Bulgarian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Mikhail Kyosev <mialygk@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Catalan PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Ivan <web AT microstudi DOT com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Chinese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author LiuXin <http://www.80x86.cn/blog/> 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'] = 'Message body empty'; 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'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 21 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Czech PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Chyba SMTP: Autentizace selhala.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Chyba SMTP: Nelze navázat spojení se SMTP serverem.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Chyba SMTP: Data nebyla přijata.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Prázdné tělo zprávy'; 12 | $PHPMAILER_LANG['encoding'] = 'Neznámé kódování: '; 13 | $PHPMAILER_LANG['execute'] = 'Nelze provést: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nelze získat přístup k souboru: '; 15 | $PHPMAILER_LANG['file_open'] = 'Chyba souboru: Nelze otevřít soubor pro čtení: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Následující adresa odesílatele je nesprávná: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nelze vytvořit instanci emailové funkce.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neplatná adresa: '; 19 | $PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostitele je nesprávný: '; 20 | $PHPMAILER_LANG['invalid_host'] = 'Hostitel je nesprávný: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer není podporován.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadat alespoň jednu emailovou adresu příjemce.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'Chyba SMTP: Následující adresy příjemců nejsou správně: '; 24 | $PHPMAILER_LANG['signing'] = 'Chyba přihlašování: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() selhal.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Chyba SMTP serveru: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Nelze nastavit nebo změnit proměnnou: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Chybí rozšíření: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Danish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author John Sebastian <jms@iwb.dk> 7 | * Rewrite and extension of the work by Mikael Stokkebro <info@stokkebro.dk> 8 | * 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Login mislykkedes.'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Forbindelse til SMTP serveren kunne ikke oprettes.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data blev ikke accepteret.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Meddelelsen er uden indhold'; 15 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 16 | $PHPMAILER_LANG['execute'] = 'Kunne ikke afvikle: '; 17 | $PHPMAILER_LANG['file_access'] = 'Kunne ikke tilgå filen: '; 18 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Email funktionen kunne ikke initialiseres.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Udgyldig adresse: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Indtast mindst en modtagers email adresse.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 25 | $PHPMAILER_LANG['signing'] = 'Signeringsfejl: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fejlede.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server fejl: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Kunne ikke definere eller nulstille variablen: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Udvidelse mangler: '; 30 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * German PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP-Fehler: Authentifizierung fehlgeschlagen.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP-Fehler: Konnte keine Verbindung zum SMTP-Host herstellen.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-Fehler: Daten werden nicht akzeptiert.'; 11 | $PHPMAILER_LANG['empty_message'] = 'E-Mail-Inhalt ist leer.'; 12 | $PHPMAILER_LANG['encoding'] = 'Unbekannte Kodierung: '; 13 | $PHPMAILER_LANG['execute'] = 'Konnte folgenden Befehl nicht ausführen: '; 14 | $PHPMAILER_LANG['file_access'] = 'Zugriff auf folgende Datei fehlgeschlagen: '; 15 | $PHPMAILER_LANG['file_open'] = 'Dateifehler: Konnte folgende Datei nicht öffnen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Die folgende Absenderadresse ist nicht korrekt: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Mail-Funktion konnte nicht initialisiert werden.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Die Adresse ist ungültig: '; 19 | $PHPMAILER_LANG['invalid_hostentry'] = 'Ungültiger Hosteintrag: '; 20 | $PHPMAILER_LANG['invalid_host'] = 'Ungültiger Host: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wird nicht unterstützt.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Bitte geben Sie mindestens eine Empfängeradresse an.'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-Fehler: Die folgenden Empfänger sind nicht korrekt: '; 24 | $PHPMAILER_LANG['signing'] = 'Fehler beim Signieren: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Verbindung zum SMTP-Server fehlgeschlagen.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Fehler vom SMTP-Server: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Kann Variable nicht setzen oder zurücksetzen: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Fehlende Erweiterung: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Greek PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Σφάλμα: Αδυναμία πιστοποίησης (authentication).'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Σφάλμα: Αδυναμία σύνδεσης στον SMTP-Host.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Σφάλμα: Τα δεδομένα δεν έγιναν αποδεκτά.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Το E-Mail δεν έχει περιεχόμενο .'; 12 | $PHPMAILER_LANG['encoding'] = 'Αγνωστο Encoding-Format: '; 13 | $PHPMAILER_LANG['execute'] = 'Αδυναμία εκτέλεσης ακόλουθης εντολής: '; 14 | $PHPMAILER_LANG['file_access'] = 'Αδυναμία προσπέλασης του αρχείου: '; 15 | $PHPMAILER_LANG['file_open'] = 'Σφάλμα Αρχείου: Δεν είναι δυνατό το άνοιγμα του ακόλουθου αρχείου: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Η παρακάτω διεύθυνση αποστολέα δεν είναι σωστή: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Αδυναμία εκκίνησης Mail function.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Το μήνυμα δεν εστάλη, η διεύθυνση δεν είναι έγκυρη: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer δεν υποστηρίζεται.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Παρακαλούμε δώστε τουλάχιστον μια e-mail διεύθυνση παραλήπτη.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Σφάλμα: Οι παρακάτω διευθύνσεις παραλήπτη δεν είναι έγκυρες: '; 22 | $PHPMAILER_LANG['signing'] = 'Σφάλμα υπογραφής: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Αποτυχία σύνδεσης στον SMTP Server.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Σφάλμα από τον SMTP Server: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Αδυναμία ορισμού ή αρχικοποίησης μεταβλητής: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Esperanto PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Eraro de servilo SMTP : aŭtentigo malsukcesis.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Eraro de servilo SMTP : konektado al servilo malsukcesis.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Eraro de servilo SMTP : neĝustaj datumoj.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Teksto de mesaĝo mankas.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nekonata kodoprezento: '; 13 | $PHPMAILER_LANG['execute'] = 'Lanĉi rulumadon ne eblis: '; 14 | $PHPMAILER_LANG['file_access'] = 'Aliro al dosiero ne sukcesis: '; 15 | $PHPMAILER_LANG['file_open'] = 'Eraro de dosiero: malfermo neeblas: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Jena adreso de sendinto malsukcesis: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Genero de retmesaĝa funkcio neeblis.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Retadreso ne validas: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mesaĝilo ne subtenata.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Vi devas tajpi almenaŭ unu recevontan retadreson.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Eraro de servilo SMTP : la jenaj poŝtrecivuloj kaŭzis eraron: '; 22 | $PHPMAILER_LANG['signing'] = 'Eraro de subskribo: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP konektado malsukcesis.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Eraro de servilo SMTP : '; 25 | $PHPMAILER_LANG['variable_set'] = 'Variablo ne pravalorizeblas aŭ ne repravalorizeblas: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Mankas etendo: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Spanish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Matt Sturdy <matt.sturdy@gmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; 12 | $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; 14 | $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; 15 | $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; 16 | $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; 17 | $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; 23 | $PHPMAILER_LANG['signing'] = 'Error al firmar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Estonian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Indrek Päri 7 | * @author Elan Ruusamäe <glen@delfi.ee> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Persian/Farsi PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Ali Jazayeri <jaza.ali@gmail.com> 7 | * @author Mohammad Hossein Mojtahedi <mhm5000@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Finnish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Jyry Kuukanen 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP-virhe: käyttäjätunnistus epäonnistui.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP-virhe: yhteys palvelimeen ei onnistu.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-virhe: data on virheellinen.'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = 'Tuntematon koodaustyyppi: '; 14 | $PHPMAILER_LANG['execute'] = 'Suoritus epäonnistui: '; 15 | $PHPMAILER_LANG['file_access'] = 'Seuraavaan tiedostoon ei ole oikeuksia: '; 16 | $PHPMAILER_LANG['file_open'] = 'Tiedostovirhe: Ei voida avata tiedostoa: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Seuraava lähettäjän osoite on virheellinen: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail-funktion luonti epäonnistui.'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = 'postivälitintyyppiä ei tueta.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Aseta vähintään yksi vastaanottajan sähköpostiosoite.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-virhe: seuraava vastaanottaja osoite on virheellinen.'; 23 | $PHPMAILER_LANG['encoding'] = 'Tuntematon koodaustyyppi: '; 24 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 25 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 26 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 27 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 28 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Faroese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Dávur Sørensen <http://www.profo-webdesign.dk> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Galician PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author by Donato Rouco <donatorouco@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Hebrew PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Ronny Sherer <ronny@hoojima.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Hindi PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Yash Karanke <mr.karanke@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Croatian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Hrvoj3e <hrvoj3e@gmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; 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'] = 'Nepoznati encoding: '; 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 s navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa 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'] = 'Definirajte barem jednu adresu primatelja.'; 23 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Hungarian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author @dominicus-75 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP hiba: az azonosítás sikertelen.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP hiba: nem lehet kapcsolódni az SMTP-szerverhez.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP hiba: adatok visszautasítva.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Üres az üzenettörzs.'; 13 | $PHPMAILER_LANG['encoding'] = 'Ismeretlen kódolás: '; 14 | $PHPMAILER_LANG['execute'] = 'Nem lehet végrehajtani: '; 15 | $PHPMAILER_LANG['file_access'] = 'A következő fájl nem elérhető: '; 16 | $PHPMAILER_LANG['file_open'] = 'Fájl hiba: a következő fájlt nem lehet megnyitni: '; 17 | $PHPMAILER_LANG['from_failed'] = 'A feladóként megadott következő cím hibás: '; 18 | $PHPMAILER_LANG['instantiate'] = 'A PHP mail() függvényt nem sikerült végrehajtani.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Érvénytelen cím: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' a mailer-osztály nem támogatott.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Legalább egy címzettet fel kell tüntetni.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP hiba: a címzettként megadott következő címek hibásak: '; 23 | $PHPMAILER_LANG['signing'] = 'Hibás aláírás: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Hiba az SMTP-kapcsolatban.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-szerver hiba: '; 26 | $PHPMAILER_LANG['variable_set'] = 'A következő változók beállítása nem sikerült: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Bővítmény hiányzik: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hy.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Armenian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Hrayr Grigoryan <hrayr@bits.am> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Indonesian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Cecep Prawiro <cecep.prawiro@gmail.com> 7 | * @author @januridp 8 | * @author Ian Mustafa <mail@ianmustafa.com> 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; 12 | $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; 15 | $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; 16 | $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses: '; 17 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas: '; 18 | $PHPMAILER_LANG['file_open'] = 'Kesalahan Berkas: Berkas tidak dapat dibuka: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak sesuai: '; 22 | $PHPMAILER_LANG['invalid_hostentry'] = 'Gagal terkirim, entri host tidak sesuai: '; 23 | $PHPMAILER_LANG['invalid_host'] = 'Gagal terkirim, host tidak sesuai: '; 24 | $PHPMAILER_LANG['provide_address'] = 'Harus tersedia minimal satu alamat tujuan'; 25 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; 26 | $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menyebabkan kesalahan: '; 27 | $PHPMAILER_LANG['signing'] = 'Kesalahan dalam penandatangan SSL: '; 28 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; 29 | $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP: '; 30 | $PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variabel: '; 31 | $PHPMAILER_LANG['extension_missing'] = 'Ekstensi PHP tidak tersedia: '; 32 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Italian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Ilias Bartolini <brain79@inwind.it> 7 | * @author Stefano Sabatini <sabas88@gmail.com> 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; 14 | $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; 15 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 16 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 17 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 18 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; 21 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; 24 | $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Japanese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Mitsuhiro Yoshida <http://mitstek.com/> 7 | * @author Yoshi Sakai <http://bluemooninc.jp/> 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'] = 'Message body empty'; 14 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 15 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 16 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 17 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 19 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 20 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 21 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 24 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 25 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 26 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 27 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 28 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Georgian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Avtandil Kikabidze aka LONGMAN <akalongman@gmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; 12 | $PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; 13 | $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; 14 | $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; 15 | $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; 16 | $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; 18 | $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; 21 | $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; 22 | $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Korean PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author ChalkPE <amato0617@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Lithuanian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Dainius Kaupaitis <dk@sum.lt> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Latvian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Eduards M. <e@npd.lv> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Malagasy PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Hackinet <piyushjha8164@gmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; 13 | $PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; 15 | $PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; 16 | $PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; 23 | $PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Malaysian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Nawawi Jamili <nawawi@rutweb.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; 13 | $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; 14 | $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; 15 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; 16 | $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; 23 | $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Norwegian Bokmål PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Feil: Kunne ikke autentisere.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Feil: Kunne ikke koble til SMTP tjener.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Feil: Datainnhold ikke akseptert.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Meldingsinnhold mangler'; 12 | $PHPMAILER_LANG['encoding'] = 'Ukjent koding: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunne ikke utføre: '; 14 | $PHPMAILER_LANG['file_access'] = 'Får ikke tilgang til filen: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil Feil: Kunne ikke åpne filen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Følgende Frå adresse feilet: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere post funksjon.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Ugyldig adresse: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' sender er ikke støttet.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Du må opppgi minst en mottakeradresse.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feil: Følgende mottakeradresse feilet: '; 22 | $PHPMAILER_LANG['signing'] = 'Signering Feil: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP connect() feilet.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server feil: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kan ikke skrive eller omskrive variabel: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Utvidelse mangler: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Dutch PHPMailer language file: refer to PHPMailer.php for definitive list. 5 | * @package PHPMailer 6 | * @author Tuxion <team@tuxion.nl> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; 13 | $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; 14 | $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; 15 | $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; 16 | $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; 20 | $PHPMAILER_LANG['invalid_hostentry'] = 'Ongeldige hostentry: '; 21 | $PHPMAILER_LANG['invalid_host'] = 'Ongeldige host: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; 25 | $PHPMAILER_LANG['signing'] = 'Signeerfout: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; 30 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Polish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Błąd SMTP: Nie można przeprowadzić uwierzytelnienia.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Błąd SMTP: Nie można połączyć się z wybranym hostem.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Błąd SMTP: Dane nie zostały przyjęte.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Wiadomość jest pusta.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nieznany sposób kodowania znaków: '; 13 | $PHPMAILER_LANG['execute'] = 'Nie można uruchomić: '; 14 | $PHPMAILER_LANG['file_access'] = 'Brak dostępu do pliku: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nie można otworzyć pliku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Następujący adres Nadawcy jest nieprawidłowy: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nie można wywołać funkcji mail(). Sprawdź konfigurację serwera.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Nie można wysłać wiadomości, ' . 19 | 'następujący adres Odbiorcy jest nieprawidłowy: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Należy podać prawidłowy adres email Odbiorcy.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Wybrana metoda wysyłki wiadomości nie jest obsługiwana.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Błąd SMTP: Następujący odbiorcy są nieprawidłowi: '; 23 | $PHPMAILER_LANG['signing'] = 'Błąd podpisywania wiadomości: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zakończone niepowodzeniem.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Błąd SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nie można ustawić lub zmodyfikować zmiennej: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Brakujące rozszerzenie: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Portuguese (European) PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Jonadabe <jonadabe@hotmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; 12 | $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; 13 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 14 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 15 | $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; 16 | $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; 23 | $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Brazilian Portuguese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Paulo Henrique Garcia <paulo@controllerweb.com.br> 7 | * @author Lucas Guimarães <lucas@lucasguimaraes.com> 8 | * @author Phelipe Alves <phelipealvesdesouza@gmail.com> 9 | * @author Fabio Beneditto <fabiobeneditto@gmail.com> 10 | */ 11 | 12 | $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; 13 | $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; 14 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; 15 | $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; 16 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 17 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 18 | $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; 19 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; 20 | $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; 21 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; 23 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 24 | $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; 25 | $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; 26 | $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; 27 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 28 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 29 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 30 | $PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: '; 31 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Romanian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Alex Florea <alecz.fia@gmail.com> 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Autentificarea a eșuat.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Conectarea la serverul SMTP a eșuat.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Datele nu au fost acceptate.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Mesajul este gol.'; 13 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscută: '; 14 | $PHPMAILER_LANG['execute'] = 'Nu se poate executa următoarea comandă: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nu se poate accesa următorul fișier: '; 16 | $PHPMAILER_LANG['file_open'] = 'Eroare fișier: Nu se poate deschide următorul fișier: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Următoarele adrese From au dat eroare: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Funcția mail nu a putut fi inițializată.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Adresa de email nu este validă: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Trebuie să adăugați cel puțin o adresă de email.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Următoarele adrese de email au eșuat: '; 23 | $PHPMAILER_LANG['signing'] = 'A aparut o problemă la semnarea emailului. '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Conectarea la serverul SMTP a eșuat.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Eroare server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nu se poate seta/reseta variabila. '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Lipsește extensia: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Russian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Alexey Chumakov <alex@chumakov.ru> 7 | * @author Foster Snowhill <i18n@forstwoof.ru> 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 11 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к SMTP-серверу.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 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['provide_address'] = 'Пожалуйста, введите хотя бы один email-адрес получателя.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: не удалась отправка таким адресатам: '; 22 | $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; 23 | $PHPMAILER_LANG['invalid_address'] = 'Не отправлено из-за неправильного формата email-адреса: '; 24 | $PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или сбросить переменную: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Slovak PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Michal Tinka <michaltinka@gmail.com> 7 | * @author Peter Orlický <pcmanik91@gmail.com> 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 13 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 14 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 15 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 16 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 17 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 18 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 21 | $PHPMAILER_LANG['invalid_hostentry'] = 'Záznam hostiteľa je nesprávny: '; 22 | $PHPMAILER_LANG['invalid_host'] = 'Hostiteľ je nesprávny: '; 23 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 24 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 25 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 26 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 27 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 28 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 29 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 30 | $PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; 31 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Slovene PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Klemen Tušar <techouse@gmail.com> 7 | * @author Filip Š <projects@filips.si> 8 | * @author Blaž Oražem <blaz@orazem.si> 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; 12 | $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; 14 | $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; 15 | $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; 16 | $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; 17 | $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; 18 | $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; 22 | $PHPMAILER_LANG['invalid_hostentry'] = 'Neveljaven vnos gostitelja: '; 23 | $PHPMAILER_LANG['invalid_host'] = 'Neveljaven gostitelj: '; 24 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; 25 | $PHPMAILER_LANG['provide_address'] = 'Prosimo, vnesite vsaj enega naslovnika.'; 26 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; 27 | $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; 28 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; 29 | $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; 30 | $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; 31 | $PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; 32 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Serbian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Александар Јевремовић <ajevremovic@gmail.com> 7 | * @author Miloš Milanović <mmilanovic016@gmail.com> 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'] = 'Није могуће отворити датотеку: '; 18 | $PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; 24 | $PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr_latn.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Serbian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Александар Јевремовић <ajevremovic@gmail.com> 7 | * @author Miloš Milanović <mmilanovic016@gmail.com> 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP greška: autentifikacija nije uspela.'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP greška: povezivanje sa SMTP serverom nije uspelo.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP greška: podaci nisu prihvaćeni.'; 13 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 14 | $PHPMAILER_LANG['encoding'] = 'Nepoznato kodiranje: '; 15 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 16 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 17 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 18 | $PHPMAILER_LANG['from_failed'] = 'SMTP greška: slanje sa sledećih adresa nije uspelo: '; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP greška: slanje na sledeće adrese nije uspelo: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Nije moguće pokrenuti mail funkciju.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Poruka nije poslata. Neispravna adresa: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' majler nije podržan.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Definišite bar jednu adresu primaoca.'; 24 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Povezivanje sa SMTP serverom nije uspelo.'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP servera: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće zadati niti resetovati promenljivu: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Swedish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Johan Linnér <johan@linner.biz> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Tagalog PHPMailer language file: refer to English translation for definitive list 5 | * 6 | * @package PHPMailer 7 | * @author Adriane Justine Tan <eidoriantan@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Turkish PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Elçin Özel 7 | * @author Can Yılmaz 8 | * @author Mehmet Benlioğlu 9 | * @author @yasinaydin 10 | * @author Ogün Karakuş 11 | */ 12 | 13 | $PHPMAILER_LANG['authenticate'] = 'SMTP Hatası: Oturum açılamadı.'; 14 | $PHPMAILER_LANG['connect_host'] = 'SMTP Hatası: SMTP sunucusuna bağlanılamadı.'; 15 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Hatası: Veri kabul edilmedi.'; 16 | $PHPMAILER_LANG['empty_message'] = 'Mesajın içeriği boş'; 17 | $PHPMAILER_LANG['encoding'] = 'Bilinmeyen karakter kodlama: '; 18 | $PHPMAILER_LANG['execute'] = 'Çalıştırılamadı: '; 19 | $PHPMAILER_LANG['file_access'] = 'Dosyaya erişilemedi: '; 20 | $PHPMAILER_LANG['file_open'] = 'Dosya Hatası: Dosya açılamadı: '; 21 | $PHPMAILER_LANG['from_failed'] = 'Belirtilen adreslere gönderme başarısız: '; 22 | $PHPMAILER_LANG['instantiate'] = 'Örnek e-posta fonksiyonu oluşturulamadı.'; 23 | $PHPMAILER_LANG['invalid_address'] = 'Geçersiz e-posta adresi: '; 24 | $PHPMAILER_LANG['mailer_not_supported'] = ' e-posta kütüphanesi desteklenmiyor.'; 25 | $PHPMAILER_LANG['provide_address'] = 'En az bir alıcı e-posta adresi belirtmelisiniz.'; 26 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Hatası: Belirtilen alıcılara ulaşılamadı: '; 27 | $PHPMAILER_LANG['signing'] = 'İmzalama hatası: '; 28 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP connect() fonksiyonu başarısız.'; 29 | $PHPMAILER_LANG['smtp_error'] = 'SMTP sunucu hatası: '; 30 | $PHPMAILER_LANG['variable_set'] = 'Değişken ayarlanamadı ya da sıfırlanamadı: '; 31 | $PHPMAILER_LANG['extension_missing'] = 'Eklenti bulunamadı: '; 32 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Ukrainian PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author Yuriy Rudyy <yrudyy@prs.net.ua> 7 | * @fixed by Boris Yurchenko <boris@yurchenko.pp.ua> 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; 11 | $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до SMTP-серверу.'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийнято.'; 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['provide_address'] = 'Будь-ласка, введіть хоча б одну email-адресу отримувача.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: не вдалося відправлення для таких отримувачів: '; 22 | $PHPMAILER_LANG['empty_message'] = 'Пусте повідомлення'; 23 | $PHPMAILER_LANG['invalid_address'] = 'Не відправлено через невірний формат email-адреси: '; 24 | $PHPMAILER_LANG['signing'] = 'Помилка підпису: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання з SMTP-сервером'; 26 | $PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; 27 | $PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або скинути змінну: '; 28 | $PHPMAILER_LANG['extension_missing'] = 'Розширення відсутнє: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Vietnamese (Tiếng Việt) PHPMailer language file: refer to English translation for definitive list. 5 | * @package PHPMailer 6 | * @author VINADES.,JSC <contact@vinades.vn> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Traditional Chinese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author liqwei <liqwei@liqwei.com> 7 | * @author Peter Dave Hello <@PeterDaveHello/> 8 | * @author Jason Chiang <xcojad@gmail.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * Simplified Chinese PHPMailer language file: refer to English translation for definitive list 5 | * @package PHPMailer 6 | * @author liqwei <liqwei@liqwei.com> 7 | * @author young <masxy@foxmail.com> 8 | * @author Teddysun <i@teddysun.com> 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 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <phpunit 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 | xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd" 5 | backupGlobals="true" 6 | bootstrap="vendor/autoload.php" 7 | verbose="true" 8 | colors="true" 9 | forceCoversAnnotation="false" 10 | > 11 | <testsuites> 12 | <testsuite name="PHPMailerTests"> 13 | <directory>./test/</directory> 14 | </testsuite> 15 | </testsuites> 16 | <listeners> 17 | <listener class="PHPMailer\Test\DebugLogTestListener" /> 18 | </listeners> 19 | <groups> 20 | <exclude> 21 | <group>languages</group> 22 | <group>pop3</group> 23 | </exclude> 24 | </groups> 25 | <filter> 26 | <whitelist addUncoveredFilesFromWhitelist="true"> 27 | <directory suffix=".php">./src</directory> 28 | </whitelist> 29 | </filter> 30 | <logging> 31 | <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> 32 | <log type="coverage-clover" target="build/logs/clover.xml"/> 33 | <log type="junit" target="build/logs/junit.xml"/> 34 | </logging> 35 | </phpunit> 36 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- 1 | <?php 2 | 3 | /** 4 | * PHPMailer Exception class. 5 | * PHP Version 5.5. 6 | * 7 | * @see https://github.com/PHPMailer/PHPMailer/ The PHPMailer GitHub project 8 | * 9 | * @author Marcus Bointon (Synchro/coolbru) <phpmailer@synchromedia.co.uk> 10 | * @author Jim Jagielski (jimjag) <jimjag@gmail.com> 11 | * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net> 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 http://www.gnu.org/copyleft/lesser.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 <phpmailer@synchromedia.co.uk> 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 '<strong>' . htmlspecialchars($this->getMessage()) . "</strong><br />\n"; 39 | } 40 | } 41 | --------------------------------------------------------------------------------