Projet

Général

Profil

0001-locale-update-french-translations-for-release-0.10-f.patch

Benjamin Dauvergne, 15 février 2018 14:39

Télécharger (5,51 ko)

Voir les différences:

Subject: [PATCH] locale: update french translations for release 0.10 (fixes
 #21874)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

email was replaced by « adresse de courriel » everywhere.
 .../locale/fr/LC_MESSAGES/django.po                | 44 ++++++++++++++--------
 src/authentic2_auth_fc/views.py                    |  7 ++--
 2 files changed, 33 insertions(+), 18 deletions(-)
src/authentic2_auth_fc/locale/fr/LC_MESSAGES/django.po
5 5
#
6 6
msgid ""
7 7
msgstr ""
8
"Project-Id-Version: authentic2-auth-fc 1.0\n"
8
"Project-Id-Version: authentic2-auth-fc\n"
9 9
"Report-Msgid-Bugs-To: \n"
10
"POT-Creation-Date: 2017-11-14 11:37+0100\n"
10
"POT-Creation-Date: 2018-02-15 14:38+0100\n"
11 11
"PO-Revision-Date: 2016-09-14 09:35+0200\n"
12 12
"Last-Translator: Benjamin Dauvergne <bdauvergne@entrouvert.com>\n"
13 13
"Language-Team: french <fr@li.org>\n"
......
123 123
msgid "Cancel"
124 124
msgstr "Annuler"
125 125

  
126
#: authentic2_auth_fc/views.py:231
126
#: authentic2_auth_fc/views.py:232
127 127
msgid "You refused the connection."
128 128
msgstr "Vous avez refusé la connexion."
129 129

  
130
#: authentic2_auth_fc/views.py:243 authentic2_auth_fc/views.py:252
131
#: authentic2_auth_fc/views.py:261 authentic2_auth_fc/views.py:268
132
#: authentic2_auth_fc/views.py:279
130
#: authentic2_auth_fc/views.py:244 authentic2_auth_fc/views.py:253
131
#: authentic2_auth_fc/views.py:262 authentic2_auth_fc/views.py:269
132
#: authentic2_auth_fc/views.py:281
133 133
msgid "Unable to connect to FranceConnect."
134 134
msgstr "Impossible de se connecter à FranceConnect."
135 135

  
136
#: authentic2_auth_fc/views.py:335
136
#: authentic2_auth_fc/views.py:338
137 137
msgid "The FranceConnect account {} is already linked with another account."
138 138
msgstr "Le compte FranceConnect {} est déjà associé à un autre compte."
139 139

  
140
#: authentic2_auth_fc/views.py:346
140
#: authentic2_auth_fc/views.py:349
141 141
msgid "Your account is already linked to a FranceConnect account"
142 142
msgstr "Votre compte est déjà associé à un compte FranceConnect."
143 143

  
144
#: authentic2_auth_fc/views.py:360
144
#: authentic2_auth_fc/views.py:362
145 145
msgid "Your FranceConnect account {} with email {} has been linked."
146 146
msgstr "Votre compte FranceConnect {} avec le courriel {} a été associé."
147 147

  
148
#: authentic2_auth_fc/views.py:364
148
#: authentic2_auth_fc/views.py:366
149 149
msgid "Your FranceConnect account {} has been linked."
150 150
msgstr "Votre compte FranceConnect {} a été associé."
151 151

  
152
#: authentic2_auth_fc/views.py:370
152
#: authentic2_auth_fc/views.py:374
153 153
msgid "Your local account has been updated."
154 154
msgstr "Votre compte local a été mis à jour."
155 155

  
156
#: authentic2_auth_fc/views.py:418
156
#: authentic2_auth_fc/views.py:410
157
#, python-format
158
msgid ""
159
"Your FranceConnect email address '%s' is already used by another account, so "
160
"we cannot create an account for you. Please create an account with another "
161
"email address then link it to FranceConnect using your account management "
162
"page."
163
msgstr ""
164
"L'adresse de courriel fournie par FranceConnect « %s » est déjà utilisée par "
165
"un compte, nous ne pouvons pas vous créer un nouveau compte en l'utilisant. "
166
"Vous pouvez vous créer un compte avec une autre adresse de courriel, puis "
167
"demander à lier ce compte avec FranceConnect depuis la page de votre compte."
168

  
169
#: authentic2_auth_fc/views.py:427
157 170
msgid ""
158 171
"If you already have an account, please log in, else create your account."
159 172
msgstr ""
160 173
"Si vous avez déjà un compte saisissez vos identifiants sinon créez votre "
161 174
"compte."
162 175

  
163
#: authentic2_auth_fc/views.py:449
176
#: authentic2_auth_fc/views.py:458
164 177
msgid "FranceConnect didn't provide your email address, please do."
165
msgstr "FranceConnect n'a pas fourni votre adresse email, merci de le faire."
178
msgstr ""
179
"FranceConnect n'a pas fourni votre adresse de courriel, merci de le faire."
166 180

  
167
#: authentic2_auth_fc/views.py:498
181
#: authentic2_auth_fc/views.py:508
168 182
msgid "The link with the FranceConnect account has been deleted."
169 183
msgstr "La liaison avec le compte FranceConnect a été supprimée."
src/authentic2_auth_fc/views.py
407 407
                    else:
408 408
                        messages.warning(
409 409
                            request,
410
                            _('Your FranceConnect email \'%s\' is already used by another account, '
411
                              'so we cannot create an account for you, please create an account '
412
                              'with another email then link your FranceConnect.') % email)
410
                            _('Your FranceConnect email address \'%s\' is already used by another '
411
                              'account, so we cannot create an account for you. Please create an '
412
                              'account with another email address then link it to FranceConnect '
413
                              'using your account management page.') % email)
413 414
                        return self.redirect(request)
414 415
        if user:
415 416
            a2_utils.login(request, user, 'france-connect', service_slug=self.service_slug)
416
-