trypost/lang/pt-BR/usage.php
Paulo Castellano 6bd1e46f9a fix: rename lang/pt-br folder to lang/pt-BR to match locale code
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.
2026-04-16 10:47:24 -03:00

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',
];