From 3743a46bc522b7789b462baa2c6f66d7603fed47 Mon Sep 17 00:00:00 2001 From: Laouen Fernet Date: Sat, 16 Nov 2019 14:01:07 +0000 Subject: [PATCH] Mark strings for translation in api --- api/acl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/acl.py b/api/acl.py index c2db9862..490b88c7 100644 --- a/api/acl.py +++ b/api/acl.py @@ -74,6 +74,6 @@ def can_view(user): can = user.has_perm(permission) return ( can, - None if can else _("You don't have the right to see this" " application."), + None if can else _("You don't have the right to view this application."), (permission,), )