mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
Made "Settlement" translatable
This commit is contained in:
parent
adba0efad0
commit
ee12618b3b
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ from ihatemoney.forms import (
|
|||
get_billform_for,
|
||||
)
|
||||
from ihatemoney.history import get_history, get_history_queries, purge_history
|
||||
from ihatemoney.models import Bill, LoggingMode, Person, Project, db
|
||||
from ihatemoney.models import Bill, BillType, LoggingMode, Person, Project, db
|
||||
from ihatemoney.utils import (
|
||||
Redirect303,
|
||||
csv2list_of_dicts,
|
||||
|
@ -861,7 +861,7 @@ def settle(amount, ower_id, payer_id):
|
|||
payer_id=ower_id,
|
||||
project_default_currency=g.project.default_currency,
|
||||
bill_type=BillType.REIMBURSEMENT,
|
||||
what="Settlement",
|
||||
what=_("Settlement"),
|
||||
)
|
||||
session.update()
|
||||
|
||||
|
|
Loading…
Reference in a new issue