From d6d084f26a9de543527486e3c1fbc4e9100fddbd Mon Sep 17 00:00:00 2001 From: zorun Date: Sat, 25 Apr 2020 11:55:20 +0200 Subject: Fix translations (#575) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 Co-authored-by: Rémy HUBSCHER --- ihatemoney/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ihatemoney/history.py') diff --git a/ihatemoney/history.py b/ihatemoney/history.py index 40aa761..9dda3de 100644 --- a/ihatemoney/history.py +++ b/ihatemoney/history.py @@ -70,7 +70,7 @@ def get_history(project, human_readable_names=True): for version_list in [person_query.all(), project_query.all(), bill_query.all()]: for version in version_list: object_type = { - "Person": _("Person"), + "Person": _("Participant"), "Bill": _("Bill"), "Project": _("Project"), }[parent_class(type(version)).__name__] -- cgit v1.1