Merge branch 'kingu-main-patch-85823' into 'main'

Shortened profile strings

See merge request yaal/canaille!99
This commit is contained in:
Éloi Rivard 2023-01-31 08:25:23 +00:00
commit 75bca52050

View file

@ -3,10 +3,10 @@ from flask_babel import lazy_gettext as _
SCOPE_DETAILS = {
"profile": (
"id card outline",
_("Personnal information about yourself, such as your name or your gender."),
_("Info about yourself, such as your name."),
),
"email": ("at", _("Your email address.")),
"email": ("at", _("Your e-mail address.")),
"address": ("envelope open outline", _("Your postal address.")),
"phone": ("phone", _("Your phone number.")),
"groups": ("users", _("Groups you are belonging to")),
"groups": ("users", _("Groups you belong to")),
}