diff --git a/CHANGELOG.md b/CHANGELOG.md index 271e5db..2eaaa60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ O formato segue [Keep a Changelog](https://keepachangelog.com/pt-BR/). Este projeto adota [Versionamento Semântico](https://semver.org/pt-BR/). +## [1.34.6] - 2025-12-15 + +### Fixed +- **i18n** - Adicionadas traduções para credit e debit + - Adicionado `transactions.credit` ("Crédito" / "Credit" / "Crédito") + - Adicionado `transactions.debit` ("Débito" / "Debit" / "Débito") + - Corrige exibição de tipo em Templates de Recorrência + - Traduções completas em pt-BR, en, es + ## [1.34.5] - 2025-12-15 ### Fixed diff --git a/VERSION b/VERSION index 8a7cc82..6fef6c5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.34.5 +1.34.6 diff --git a/frontend/src/i18n/locales/en.json b/frontend/src/i18n/locales/en.json index 00cfd70..f0d7f45 100644 --- a/frontend/src/i18n/locales/en.json +++ b/frontend/src/i18n/locales/en.json @@ -508,6 +508,8 @@ }, "expense": "Expense", "income": "Income", + "credit": "Credit", + "debit": "Debit", "credits": "Income", "debits": "Expenses", "balance": "Balance", diff --git a/frontend/src/i18n/locales/es.json b/frontend/src/i18n/locales/es.json index 4449b13..d7a1089 100644 --- a/frontend/src/i18n/locales/es.json +++ b/frontend/src/i18n/locales/es.json @@ -508,6 +508,8 @@ }, "expense": "Gasto", "income": "Ingreso", + "credit": "Crédito", + "debit": "Débito", "credits": "Ingresos", "debits": "Gastos", "balance": "Saldo", diff --git a/frontend/src/i18n/locales/pt-BR.json b/frontend/src/i18n/locales/pt-BR.json index e46fea4..7511d96 100644 --- a/frontend/src/i18n/locales/pt-BR.json +++ b/frontend/src/i18n/locales/pt-BR.json @@ -510,6 +510,8 @@ }, "expense": "Despesa", "income": "Receita", + "credit": "Crédito", + "debit": "Débito", "credits": "Entradas", "debits": "Saídas", "balance": "Saldo",