The client's hosting (All-Inkl) has no GitHub integration, so the two-branch model - source on main, CI force-pushing the built hifi/ folder to a machine-generated deploy branch for Plesk to pull - doesn't work there. main is now simultaneously the source of truth and the deployable artifact: - hifi/index.html, hifi/assets/, favicon, robots.txt and hifi/api/vendor are committed instead of git-ignored. Secrets (db.php, setup.php, ga-service-account.json) stay ignored as before. - A prebuild script wipes hifi/assets + index.html before every vite build, so the tree always holds exactly the current build - this was the stale-hash-chunk problem that originally justified ignoring the output (emptyOutDir stays false to protect hifi/api). Builds are deterministic: rebuilding without source changes yields zero diffs. - .github/workflows/build-deploy.yml is deleted; nothing writes to the deploy branch anymore. The convention is to run npm run build before committing (DEPLOY.md documents the workflow, the All-Inkl setup via SSH clone/pull with docroot on <checkout>/hifi, and the Plesk test server switch from deploy to main). The remote deploy branch is left in place for now so the Plesk test server keeps working until its Git source is switched to main; it can be deleted afterwards. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
27 lines
1.8 KiB
PHP
27 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Vietnamese (Tiếng Việt) PHPMailer language file: refer to English translation for definitive list.
|
|
* @package PHPMailer
|
|
* @author VINADES.,JSC <contact@vinades.vn>
|
|
*/
|
|
|
|
$PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.';
|
|
$PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.';
|
|
$PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.';
|
|
$PHPMAILER_LANG['empty_message'] = 'Không có nội dung';
|
|
$PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: ';
|
|
$PHPMAILER_LANG['execute'] = 'Không thực hiện được: ';
|
|
$PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin ';
|
|
$PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: ';
|
|
$PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: ';
|
|
$PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.';
|
|
$PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: ';
|
|
$PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.';
|
|
$PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.';
|
|
$PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: ';
|
|
$PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: ';
|
|
$PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP';
|
|
$PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp ';
|
|
$PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: ';
|
|
//$PHPMAILER_LANG['extension_missing'] = 'Extension missing: ';
|