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>
38 lines
2.7 KiB
PHP
38 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Brazilian Portuguese PHPMailer language file: refer to English translation for definitive list
|
|
* @package PHPMailer
|
|
* @author Paulo Henrique Garcia <paulo@controllerweb.com.br>
|
|
* @author Lucas Guimarães <lucas@lucasguimaraes.com>
|
|
* @author Phelipe Alves <phelipealvesdesouza@gmail.com>
|
|
* @author Fabio Beneditto <fabiobeneditto@gmail.com>
|
|
* @author Geidson Benício Coelho <geidsonc@gmail.com>
|
|
*/
|
|
|
|
$PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.';
|
|
$PHPMAILER_LANG['buggy_php'] = 'Sua versão do PHP é afetada por um bug que por resultar em messagens corrompidas. Para corrigir, mude para enviar usando SMTP, desative a opção mail.add_x_header em seu php.ini, mude para MacOS ou Linux, ou atualize seu PHP para versão 7.0.17+ ou 7.1.3+ ';
|
|
$PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.';
|
|
$PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.';
|
|
$PHPMAILER_LANG['empty_message'] = 'Mensagem vazia';
|
|
$PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: ';
|
|
$PHPMAILER_LANG['execute'] = 'Não foi possível executar: ';
|
|
$PHPMAILER_LANG['extension_missing'] = 'Extensão não existe: ';
|
|
$PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: ';
|
|
$PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: ';
|
|
$PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: ';
|
|
$PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.';
|
|
$PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: ';
|
|
$PHPMAILER_LANG['invalid_header'] = 'Nome ou valor de cabeçalho inválido';
|
|
$PHPMAILER_LANG['invalid_hostentry'] = 'hostentry inválido: ';
|
|
$PHPMAILER_LANG['invalid_host'] = 'host inválido: ';
|
|
$PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.';
|
|
$PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.';
|
|
$PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: ';
|
|
$PHPMAILER_LANG['signing'] = 'Erro de Assinatura: ';
|
|
$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.';
|
|
$PHPMAILER_LANG['smtp_code'] = 'Código do servidor SMTP: ';
|
|
$PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: ';
|
|
$PHPMAILER_LANG['smtp_code_ex'] = 'Informações adicionais do servidor SMTP: ';
|
|
$PHPMAILER_LANG['smtp_detail'] = 'Detalhes do servidor SMTP: ';
|
|
$PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: ';
|