Skip to content

Commit b1fa679

Browse files
authored
Add missing translations (#94)
* Add missing translations * Add message for liability account * Prevent archived accounts from leaking Fixes #95
1 parent 856cbef commit b1fa679

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

fintrack-api/src/main/resources/i18n/messages.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,4 +587,7 @@ validation.budget.expense.exceeds.income=The expenses for the budget exceed the
587587
validation.budget.income.too.low=The provided income cannot be below 0.
588588
validation.transaction.schedule.end.before.start=Start of the scheduled transaction cannot be greater than the end date.
589589
page.user.profile.import.account.lookup.info=During the import an account was found that is not mapped to an account in Pledger.io. Please either add it manually or correct the mapping below.
590-
page.settings.import.details.transactions.rules.run=Run transaction rules
590+
page.settings.import.details.transactions.rules.run=Run transaction rules
591+
page.settings.currencies.edit=Edit currency
592+
page.setting.overview.setting.ImportOutdated=Import outdated entries
593+
page.accounts.liability.created.failed=Failed to create the liability account.

jpa-repository/src/main/java/com/jongsoft/finance/jpa/account/AccountFilterCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public class AccountFilterCommand extends JpaFilterBuilder<AccountJpa> implement
1313
public AccountFilterCommand() {
1414
orderAscending = true;
1515
orderBy = FIELD_NAME;
16+
query().fieldEq("archived", false);
1617
}
1718

1819
@Override

0 commit comments

Comments
 (0)