Projet

Général

Profil

0001-misc-use-translatable-labels-for-SAML-homepage-actio.patch

Frédéric Péters, 07 mai 2020 20:56

Télécharger (1,38 ko)

Voir les différences:

Subject: [PATCH] misc: use translatable labels for SAML homepage actions
 (#42643)

 src/authentic2/idp/saml/backend.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
src/authentic2/idp/saml/backend.py
90 90
                if policy.idp_initiated_sso:
91 91
                    actions.append(
92 92
                        (
93
                            'login', 'POST',
93
                            _('Login'), 'POST',
94 94
                            '/idp/%s/idp_sso/' % protocol,
95 95
                            (
96 96
                                ('provider_id', entity_id),
......
100 100
                if policy.accept_slo and entity_id in sessions_eids:
101 101
                    actions.append(
102 102
                        (
103
                            'logout', 'POST',
103
                            _('Logout'), 'POST',
104 104
                            '/idp/%s/idp_slo/' % protocol,
105 105
                            (
106 106
                                ('provider_id', entity_id),
107
-