refactor(ui): renomear "Pagador/Pagadores" para "Pessoa/Pessoas" na interface

Todas as strings visíveis ao usuário (labels, títulos, toasts, mensagens
de erro, cabeçalhos de tabela, exportações) foram atualizadas. Acordos
de gênero em português corrigidos. Código, rotas (/payers) e schema do
banco (pagadores) permanecem inalterados — divergência intencional
documentada em CLAUDE.md e CHANGELOG.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Felipe Coutinho
2026-04-20 18:29:55 +00:00
parent 2f68bcf039
commit 0bc3f06b77
42 changed files with 101 additions and 99 deletions

View File

@@ -109,7 +109,7 @@ export function TransactionsExport({
"Valor",
"Category",
"Conta/Cartão",
"Payer",
"Pessoa",
];
const rows: string[][] = [];
@@ -169,7 +169,7 @@ export function TransactionsExport({
"Valor",
"Category",
"Conta/Cartão",
"Payer",
"Pessoa",
];
const rows: (string | number)[][] = [];
@@ -277,7 +277,7 @@ export function TransactionsExport({
"Valor",
"Categoria",
"Conta/Cartão",
"Payer",
"Pessoa",
],
];
@@ -317,7 +317,7 @@ export function TransactionsExport({
5: { cellWidth: 24 }, // Valor
6: { cellWidth: 30 }, // Categoria
7: { cellWidth: 30 }, // Conta/Cartão
8: { cellWidth: 31 }, // Payer
8: { cellWidth: 31 }, // Pessoa
},
didParseCell: (cellData) => {
if (cellData.section === "body" && cellData.column.index === 5) {