├── .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 | 
2 |
3 | 
4 |
5 | Inline within a paragraph: [alt text](/url/).
6 |
7 | 
8 |
9 | 
10 |
11 | ![alt text]()
12 |
13 | .
14 |
15 | ![Empty]()
16 |
17 | .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 | 
2 |
3 | 
4 |
5 | Inline within a paragraph: alt text.
6 |
7 | 
8 |
9 | 
10 |
11 | 
12 |
13 |
.
14 |
15 | ![Empty]()
16 |
17 | .jpg)
18 |
19 | 
20 |
21 | 
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 |
23 |
24 | This was broken in 1.0.2b7:
25 |
26 |
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 |
23 |
24 | This was broken in 1.0.2b7:
25 |
26 |
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 |
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 |
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 |
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 |
35 |
36 |
37 | ```
38 |
39 |
40 | ```
41 |
42 |
43 | Two code blocks with no blank line between them:
44 |
45 | ```
46 |
47 | ```
48 | ```
49 |
50 | ```
51 |
52 | Testing *confusion* with code spans at the HTML block parser:
53 |
54 | ```
55 |
```
56 | ```
57 |
58 | Testing mixing with title code blocks
59 |
60 | ```
61 |
```
62 | ~~~
63 |
```
64 | ```
65 | ~~~
66 |
```
67 | ```
68 |
```
69 | ~~~
70 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Backtick Fenced Code Blocks Special Cases.xhtml:
--------------------------------------------------------------------------------
1 |
<ul>
2 | <li>Code block first in file</li>
3 | <li>doesn't work under some circumstances</li>
4 | </ul>
5 |
6 |
7 |
As above: checking for bad interractions with the HTML block parser:
8 |
9 |
<div>
10 |
11 |
12 |
Some markdownformatting
.
13 |
14 |
</div>
15 |
16 |
17 |
Some markdown
18 |
19 |
<div>
20 | <html>
21 |
22 |
23 |
function test();
24 |
25 |
26 |
27 |
<html>
28 | <title>
29 |
30 |
31 |
32 |
33 |
<html>
34 | <title>
35 |
36 |
37 |
38 |
Two code blocks with no blank line between them:
39 |
40 |
<div>
41 |
42 |
43 |
<div>
44 |
45 |
46 |
Testing confusion with code spans at the HTML block parser:
47 |
48 |
<div>```</div>
49 |
50 |
51 |
Testing mixing with title code blocks
52 |
53 |
<p>```
54 | ~~~
55 | <p>```
56 |
57 |
58 |
<p>```
59 | ```
60 | <p>```
61 |
62 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Backtick Fenced Code Blocks.text:
--------------------------------------------------------------------------------
1 | ```
2 |
3 | ```
4 |
5 | Code block starting and ending with empty lines:
6 | ```
7 |
8 |
9 |
10 |
11 |
12 | ```
13 |
14 | Indented code block containing fenced code block sample:
15 |
16 | ```
17 |
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 | bold
75 | `````
76 |
77 | Bug with block level elements in this case:
78 | ```
79 |
80 |
81 | ```
82 |
83 | Indented code block of a fenced code block:
84 |
85 | ```
86 | haha!
87 | ```
88 |
89 | With class:
90 |
91 | `````html
92 | bold
93 | `````
94 |
95 | ````` html
96 | bold
97 | `````
98 |
99 | `````.html
100 | bold
101 | `````
102 |
103 | ````` .html
104 | bold
105 | `````
106 |
107 | With extra attribute block:
108 |
109 | `````{.html}
110 | bold
111 | `````
112 |
113 | ````` {.html #codeid}
114 | bold
115 | `````
116 |
117 | ````` .html{.bold}
118 |
119 | `````
120 |
121 | `````` .html {#codeid}
122 |
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 | Header
2 |
3 | Header
4 |
5 | Header
6 |
7 | Header
8 |
9 |
10 |
11 | Header
12 |
13 | Header
14 |
15 | Header
16 |
17 | Header
18 |
19 |
20 |
21 | Header
22 |
23 | Header
24 |
25 | Header
26 |
27 | Header
28 |
29 |
30 |
31 | Header
32 |
33 | Header
34 |
35 | Header
36 |
37 | Header
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 {.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 | This is an inline link.
2 |
3 | This is a reference link.
4 |
5 | This is an
.
6 |
7 | This is a
.
8 |
9 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde 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 |
35 |
36 |
37 | ~~~
38 |
39 |
40 | ~~~
41 |
42 |
43 | Two code blocks with no blank line between them:
44 |
45 | ~~~
46 |
47 | ~~~
48 | ~~~
49 |
50 | ~~~
51 |
52 | Testing *confusion* with markers in the middle:
53 |
54 | ~~~
55 |
~~~
56 | ~~~
57 |
58 | Testing mixing with title code blocks
59 |
60 | ~~~
61 |
```
62 | ```
63 |
```
64 | ~~~
65 | ```
66 |
```
67 | ~~~
68 |
```
69 | ```
70 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks Special Cases.xhtml:
--------------------------------------------------------------------------------
1 |
<ul>
2 | <li>Code block first in file</li>
3 | <li>doesn't work under some circumstances</li>
4 | </ul>
5 |
6 |
7 |
As above: checking for bad interractions with the HTML block parser:
8 |
9 |
<div>
10 |
11 |
12 |
Some markdownformatting
.
13 |
14 |
</div>
15 |
16 |
17 |
Some markdown
18 |
19 |
<div>
20 | <html>
21 |
22 |
23 |
function test();
24 |
25 |
26 |
27 |
<html>
28 | <title>
29 |
30 |
31 |
32 |
33 |
<html>
34 | <title>
35 |
36 |
37 |
38 |
Two code blocks with no blank line between them:
39 |
40 |
<div>
41 |
42 |
43 |
<div>
44 |
45 |
46 |
Testing confusion with markers in the middle:
47 |
48 |
<div>~~~</div>
49 |
50 |
51 |
Testing mixing with title code blocks
52 |
53 |
<p>```
54 | ```
55 | <p>```
56 |
57 |
58 |
<p>```
59 | ~~~
60 | <p>```
61 |
62 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Tilde Fenced Code Blocks.text:
--------------------------------------------------------------------------------
1 | ~~~
2 |
3 | ~~~
4 |
5 | Code block starting and ending with empty lines:
6 | ~~~
7 |
8 |
9 |
10 |
11 |
12 | ~~~
13 |
14 | Indented code block containing fenced code block sample:
15 |
16 | ~~~
17 |
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 | bold
75 | ~~~~~
76 |
77 | Bug with block level elements in this case:
78 | ~~~
79 |
80 |
81 | ~~~
82 |
83 | Indented code block of a fenced code block:
84 |
85 | ~~~
86 | haha!
87 | ~~~
88 |
89 | With class:
90 |
91 | ~~~~~html
92 | bold
93 | ~~~~~
94 |
95 | ~~~~~ html
96 | bold
97 | ~~~~~
98 |
99 | ~~~~~.html
100 | bold
101 | ~~~~~
102 |
103 | ~~~~~ .html
104 | bold
105 | ~~~~~
106 |
107 | With extra attribute block:
108 |
109 | ~~~~~{.html}
110 | bold
111 | ~~~~~
112 |
113 | ~~~~~ {.html #codeid}
114 | bold
115 | ~~~~~
116 |
117 | ~~~~~ .html{.bold}
118 |
119 | ~~~~~
120 |
121 | ~~~~~ .html {#codeid}
122 |
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 |
5 |
6 |
7 | - three
8 | - four
9 |
10 |
11 |
15 |
16 |
17 | - three
18 | - four
19 |
20 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.text:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Auto Links.xhtml:
--------------------------------------------------------------------------------
1 | HTTP://WWW.SOMEURL.COM
2 |
3 | hr@company.com
--------------------------------------------------------------------------------
/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 | 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/Code Spans.text:
--------------------------------------------------------------------------------
1 | From ``
2 | on two lines.
3 |
4 | From ``
6 | on three lines.
7 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code Spans.xhtml:
--------------------------------------------------------------------------------
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 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 |
2 | List Item:
3 |
4 | code block
5 |
6 | with a blank line
7 |
8 |
9 | within a list item.
10 | code block
11 | as first element of a list item
12 |
13 |
14 | List Item:
15 |
16 | code block with whitespace on preceding line
17 |
18 |
--------------------------------------------------------------------------------
/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 | Codeblock on second line
2 |
3 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.text:
--------------------------------------------------------------------------------
1 |
4 |
5 | foo `bar`
6 |
7 |
14 |
15 | lorem ipsum
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Code block regressions.xhtml:
--------------------------------------------------------------------------------
1 | <?php
2 | echo "hello!";
3 | ?>
4 |
5 |
6 | foo bar
7 |
8 | <?php
9 | echo "hello!";
10 |
11 |
12 | lorem ipsum
13 |
14 | echo "hello!";
15 | ?>
16 |
17 |
18 | lorem ipsum
19 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Email auto links.text:
--------------------------------------------------------------------------------
1 |
2 |
3 | International domain names:
4 |
5 |
6 | ## Some weird valid email addresses
7 |
8 |
9 |
10 | <1234567890@example.com>
11 |
12 | <_______@example.com>
13 |
14 |
15 |
16 | (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 |
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 | With asterisks
2 |
3 |
4 | - List item
5 |
6 | - List item
7 |
8 |
9 | With numbers
10 |
11 |
12 | - List item
13 |
14 | - List item
15 |
16 |
17 | With hyphens
18 |
19 |
20 | - List item
21 |
22 | - List item
23 |
24 |
25 | With asterisks
26 |
27 |
28 | - List item
29 | - List item
30 |
31 |
32 |
33 | With numbers
34 |
35 |
36 | - List item
37 | - List item
38 |
39 |
40 |
41 | With hyphens
42 |
43 |
44 | - List item
45 | - List item
46 |
47 |
--------------------------------------------------------------------------------
/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 | Header
2 |
3 | Header
4 |
5 | Header
6 |
7 |
8 |
9 | Header
10 |
11 | Paragraph
12 |
13 | Header
14 |
15 | Paragraph
16 |
17 | Header
18 |
19 | Paragraph
20 |
21 |
22 |
23 | Paragraph
24 |
25 | Header
26 |
27 | Paragraph
28 |
29 | Paragraph
30 |
31 | Header
32 |
33 | Paragraph
34 |
35 | Paragraph
36 |
37 | Header
38 |
39 | Paragraph
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 | 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 |
31 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).html:
--------------------------------------------------------------------------------
1 | With some attributes:
2 |
3 |
4 | foo
5 |
6 |
7 |
9 | foo
10 |
11 |
12 | Hr's:
13 |
14 |
16 |
17 | Regression:
18 |
19 |
20 | #test
21 |
22 |
23 | Hello
24 | Michael
25 | E.
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Simple).text:
--------------------------------------------------------------------------------
1 | With some attributes:
2 |
3 |
4 | foo
5 |
6 |
7 |
9 | foo
10 |
11 |
12 | Hr's:
13 |
14 |
16 |
17 | Regression:
18 |
19 |
20 | #test
21 |
22 |
23 | Hello
24 | Michael
25 | E.
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).text:
--------------------------------------------------------------------------------
1 | ACINACS
2 |
3 | SB
4 | SB
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML (Span).xhtml:
--------------------------------------------------------------------------------
1 | ACINACS
2 |
3 | SB
4 | SB
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.html:
--------------------------------------------------------------------------------
1 | Paragraph one.
2 |
3 |
4 |
5 | Paragraph two.
6 |
7 |
8 |
9 | The end.
10 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Inline HTML comments.text:
--------------------------------------------------------------------------------
1 | Paragraph one.
2 |
3 |
4 |
5 | Paragraph two.
6 |
7 |
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 |
4 | Some text
5 |
6 |
7 | And here it is inside a paragraph.
8 |
9 | And here it is in the middle of a paragraph.
10 |
11 |
12 | Some text
13 |
14 |
15 | And here is ins as a paragraph.
16 |
17 | And here it is in the middle of a paragraph.
18 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Ins & del.xhtml:
--------------------------------------------------------------------------------
1 | Here is a block tag ins:
2 |
3 |
4 | Some text
5 |
6 |
7 | And here it is inside a paragraph.
8 |
9 | And here it is in the middle of a paragraph.
10 |
11 |
12 | Some text
13 |
14 |
15 | And here is ins as a paragraph.
16 |
17 | And here it is in the middle of a paragraph.
18 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.text:
--------------------------------------------------------------------------------
1 | [silly URL w/ angle brackets](}]*+|&)>).
2 |
3 | [link]( "title").
4 |
5 | [link][].
6 |
7 | [link]: "title"
8 |
9 | [link]()
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Links, inline style.xhtml:
--------------------------------------------------------------------------------
1 | silly URL w/ angle brackets.
2 |
3 | link.
4 |
5 | link.
6 |
7 | link
--------------------------------------------------------------------------------
/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 | test
8 |
9 | The MD5 value for `test
` is:
10 |
11 | 6205333b793f34273d75379350b36826
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/MD5 Hashes.xhtml:
--------------------------------------------------------------------------------
1 | Character Escapes
2 |
3 | The MD5 value for +
is "26b17225b626fb9238849fd60eabdf60".
4 |
5 | HTML Blocks
6 |
7 | test
8 |
9 | The MD5 value for <p>test</p>
is:
10 |
11 | 6205333b793f34273d75379350b36826
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 |
2 | - test
3 | - test
4 | - test
5 |
6 |
7 |
8 | - test
9 | - test
10 |
11 |
12 |
13 | - test
14 | - test
15 | - test
16 |
17 |
18 |
19 | - test
20 | - test
21 |
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 | Valid nesting:
2 |
3 | Link
4 |
5 | Link
6 |
7 | Link
8 |
9 | Invalid nesting:
10 |
11 | [Link](url)
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 | 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 | Headers below should appear exactly as they are typed (no backslash
6 | added or removed).
7 |
8 | Header "quoted\" again \""
9 |
10 | Header "quoted\" again \""
11 |
12 | Header "quoted\" again \""
13 |
14 | Test with tabs for _Detab
:
15 |
16 | Code 'block' with some "tabs" and "quotes"
17 |
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]( "title").
4 |
5 | [Inline link 3 with non-escaped parens](/url(test) "title").
6 |
7 | [Inline link 4 with non-escaped parens]( "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]: "title"
15 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Parens in URL.xhtml:
--------------------------------------------------------------------------------
1 | Inline link 1 with parens.
2 |
3 | Inline link 2 with parens.
4 |
5 | Inline link 3 with non-escaped parens.
6 |
7 | Inline link 4 with non-escaped parens.
8 |
9 | Reference link 1 with parens.
10 |
11 | Reference link 2 with parens.
--------------------------------------------------------------------------------
/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 | 
5 | 
6 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/Quotes in attributes.xhtml:
--------------------------------------------------------------------------------
1 | Test
2 | Test
3 |
4 |
5 | 
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 | Paragraph and no space:
2 | * ciao
3 |
4 | Paragraph and 1 space:
5 | * ciao
6 |
7 | Paragraph and 3 spaces:
8 | * ciao
9 |
10 | Paragraph and 4 spaces:
11 | * ciao
12 |
13 | Paragraph before header:
14 |
15 | Header
16 |
17 | Paragraph before blockquote:
18 |
19 |
20 | Some quote.
21 |
22 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.text:
--------------------------------------------------------------------------------
1 | First line.
2 | Second line.
3 |
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/resources/php-markdown.mdtest/XML empty tag.xhtml:
--------------------------------------------------------------------------------
1 | First line.
2 | Second line.
--------------------------------------------------------------------------------
/vendor/michelf/php-markdown/test/unit/MarkdownExtraTest.php:
--------------------------------------------------------------------------------
1 | predef_abbr = array(
11 | 'foo' => 'foobar-test',
12 | );
13 | $result = $obj->transform('**Hello world, foo**');
14 |
15 | $this->assertSame(
16 | 'Hello world, foo
',
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 | 'I get internet from an ISP' .
34 | '. foo.
',
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 no markup test.');
45 |
46 | $this->assertSame(
47 | 'This is a <strong class="custom">no markup</strong> test.
',
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 |
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 |
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 |
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 |
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 |
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 |
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 |
7 | * Rewrite and extension of the work by Mikael Stokkebro
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 |
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 |
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 |
7 | * @author Mohammad Hossein Mojtahedi
8 | */
9 |
10 | $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.';
11 | $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.';
12 | $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: دادهها نادرست هستند.';
13 | $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.';
14 | $PHPMAILER_LANG['encoding'] = 'کدگذاری ناشناخته: ';
15 | $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: ';
16 | $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: ';
17 | $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: ';
18 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: ';
19 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.';
20 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: ';
21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمیشود.';
22 | $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.';
23 | $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: ';
24 | $PHPMAILER_LANG['signing'] = 'خطا در امضا: ';
25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.';
26 | $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: ';
27 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیرها وجود ندارد: ';
28 | $PHPMAILER_LANG['extension_missing'] = 'افزونه موجود نیست: ';
29 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.';
12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty';
13 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: ';
14 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: ';
15 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: ';
16 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: ';
17 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.';
19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.';
21 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: ';
23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: ';
24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: ';
26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.';
10 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.';
12 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía';
13 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: ';
14 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: ';
15 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: ';
16 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: ';
17 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: ';
18 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.';
19 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.';
21 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: ';
23 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.';
25 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.';
10 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.';
12 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק';
13 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: ';
14 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: ';
15 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: ';
16 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: ';
17 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: ';
18 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: ';
19 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.';
20 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.';
21 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.';
22 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: ';
23 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.';
25 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: ';
26 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: ';
27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
28 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php:
--------------------------------------------------------------------------------
1 |
7 | */
8 |
9 | $PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। ';
10 | $PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। ';
11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। ';
12 | $PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। ';
13 | $PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। ';
14 | $PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। ';
15 | $PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। ';
16 | $PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। ';
17 | $PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। ';
18 | $PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।';
19 | $PHPMAILER_LANG['invalid_address'] = 'पता गलत है। ';
20 | $PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। ';
21 | $PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।';
22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। ';
23 | $PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। ';
24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। ';
25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। ';
26 | $PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। ';
27 | $PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: ';
28 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php:
--------------------------------------------------------------------------------
1 |
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 |
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 |
7 | * @author @januridp
8 | * @author Ian Mustafa
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 |
7 | * @author Stefano Sabatini
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 |
7 | * @author Yoshi Sakai
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
7 | * @author Lucas Guimarães
8 | * @author Phelipe Alves
9 | * @author Fabio Beneditto
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 |
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 |
7 | * @author Foster Snowhill
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 |
7 | * @author Peter Orlický
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 |
7 | * @author Filip Š
8 | * @author Blaž Oražem
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 |
7 | * @author Miloš Milanović
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 |
7 | * @author Miloš Milanović
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 |
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 |
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 |
7 | * @fixed by Boris Yurchenko
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 |
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 |
7 | * @author Peter Dave Hello <@PeterDaveHello/>
8 | * @author Jason Chiang
9 | */
10 |
11 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。';
12 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。';
13 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。';
14 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空';
15 | $PHPMAILER_LANG['encoding'] = '未知編碼: ';
16 | $PHPMAILER_LANG['execute'] = '無法執行:';
17 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:';
18 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:';
19 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:';
20 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。';
21 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: ';
22 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。';
23 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。';
24 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:';
25 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: ';
26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗';
27 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: ';
28 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: ';
29 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: ';
30 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php:
--------------------------------------------------------------------------------
1 |
7 | * @author young
8 | * @author Teddysun
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 |
2 |
11 |
12 |
13 | ./test/
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | languages
22 | pop3
23 |
24 |
25 |
26 |
27 | ./src
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/src/Exception.php:
--------------------------------------------------------------------------------
1 |
10 | * @author Jim Jagielski (jimjag)
11 | * @author Andy Prevost (codeworxtech)
12 | * @author Brent R. Matzelle (original founder)
13 | * @copyright 2012 - 2020 Marcus Bointon
14 | * @copyright 2010 - 2012 Jim Jagielski
15 | * @copyright 2004 - 2009 Andy Prevost
16 | * @license 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
28 | */
29 | class Exception extends \Exception
30 | {
31 | /**
32 | * Prettify error message output.
33 | *
34 | * @return string
35 | */
36 | public function errorMessage()
37 | {
38 | return '' . htmlspecialchars($this->getMessage()) . "
\n";
39 | }
40 | }
41 |
--------------------------------------------------------------------------------