diff options
| author | zorun <github@bitsofnetworks.org> | 2020-04-25 11:55:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-25 11:55:20 +0200 |
| commit | d6d084f26a9de543527486e3c1fbc4e9100fddbd (patch) | |
| tree | 3546f4c5043d22ae984a05e6a07e919944514c1f /ihatemoney/web.py | |
| parent | c2afed269a2f0785852f5ffd0ae9ac840b56927c (diff) | |
| download | ihatemoney-mirror-d6d084f26a9de543527486e3c1fbc4e9100fddbd.zip ihatemoney-mirror-d6d084f26a9de543527486e3c1fbc4e9100fddbd.tar.gz ihatemoney-mirror-d6d084f26a9de543527486e3c1fbc4e9100fddbd.tar.bz2 | |
Fix translations (#575)
* Fix user-facing string and update translation catalog
In the flash message confirming member creation, change "member had been
added" into the correct form "member has been added".
No translation has been changed. Some translators seem to have already
spotted the mistake while translating, but I can't tell for all languages.
* Change "Person" to "Participant" in history view
Currently, the main user-facing term is "Participant", as seen for
instance in the "Add participant" form. "Person" is not used anywhere in
the interface.
See #302 for a more general discussion on choosing the right terminology.
* Fix obsolete translations.
Co-authored-by: Baptiste Jonglez <git@bitsofnetworks.org>
Co-authored-by: Rémy HUBSCHER <hubscher.remy@gmail.com>
Diffstat (limited to 'ihatemoney/web.py')
| -rw-r--r-- | ihatemoney/web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/web.py b/ihatemoney/web.py index a2f25e2..d799420 100644 --- a/ihatemoney/web.py +++ b/ihatemoney/web.py @@ -618,7 +618,7 @@ def add_member(): if form.validate(): member = form.save(g.project, Person()) db.session.commit() - flash(_("%(member)s had been added", member=member.name)) + flash(_("%(member)s has been added", member=member.name)) return redirect(url_for(".list_bills")) return render_template("add_member.html", form=form) |
