fix(i18n): corrigir textos "Payer" para "Pagador" em mensagens de erro

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Felipe Coutinho
2026-04-11 17:51:21 +00:00
parent a7268d8f05
commit 3bd8117b65
3 changed files with 5 additions and 5 deletions

View File

@@ -130,7 +130,7 @@ export async function updatePayerAction(
if (!existing) {
return {
success: false,
error: "Payer não encontrado.",
error: "Pagador não encontrado.",
};
}
@@ -180,7 +180,7 @@ export async function deletePayerAction(
if (!existing) {
return {
success: false,
error: "Payer não encontrado.",
error: "Pagador não encontrado.",
};
}