The Laravel locale is declared as 'pt-BR' (uppercase BR) in config/languages.php, but the translations lived in lang/pt-br/ (lowercase). The laravel-vue-i18n Vite plugin names its output bundle after the folder — php_pt-br.json — so when the frontend resolved lang/php_pt-BR.json (from page.props.locale), the lookup failed silently and strings fell back to the raw keys which render as English-looking text. Renaming the folder to lang/pt-BR/ aligns bundle name, file system path, and Laravel locale code, so translations load correctly again for users with locale=pt-BR.
24 lines
709 B
PHP
24 lines
709 B
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Uso',
|
|
|
|
'section_account' => 'Conta',
|
|
'section_account_description' => 'Cotas e limites do seu plano :plan.',
|
|
'section_ai' => 'Geração AI',
|
|
'section_ai_description' => 'Uso de geração de imagens e vídeos AI do mês atual.',
|
|
'section_data' => 'Dados',
|
|
'section_data_description' => 'Retenção de dados e armazenamento do seu plano.',
|
|
|
|
'workspaces' => 'Workspaces',
|
|
'social_accounts' => 'Contas Sociais',
|
|
'members' => 'Membros',
|
|
'ai_images' => 'Imagens',
|
|
'ai_videos' => 'Vídeos',
|
|
'data_retention' => 'Retenção de Dados',
|
|
|
|
'unlimited' => 'Ilimitado',
|
|
'days' => 'dias',
|
|
'year' => 'ano',
|
|
'years' => 'anos',
|
|
];
|