From 4151ab3f10ad6a69a61ea9820fed6b231502b52c Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Mon, 4 Jun 2018 13:03:05 +0530 Subject: [PATCH] users: internationalize a string Signed-off-by: Joseph Nuthalapati Reviewed-by: Sunil Mohan Adapa --- plinth/modules/users/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index 0efb537a8..2b7188ca8 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -181,7 +181,7 @@ class UserUpdateForm(ValidNewUsernameCheckMixin, # Replace group names with descriptions choices.append((c[0], group_choices[c[1]])) - self.fields['groups'].label = 'Permissions' + self.fields['groups'].label = _('Permissions') self.fields['groups'].choices = choices if not is_user_admin(request):