Codebase list django-mailman3 / 314f203
Import upstream version 1.3.5+git20210726.1.f25164c Debian Janitor 2 years ago
164 changed file(s) with 7099 addition(s) and 5475 deletion(s). Raw diff Collapse all Expand all
1818
1919 NEWS
2020 ====
21
22 1.3.6 (2021-XX-XX)
23 ------------------
24 * ``django_mailman3.lib.mailman.get_mailman_client()`` now supports
25 Mailmanclient request hooks to be added using a new
26 ``@mailmanclient_request_hook`` decorator.
27 * Scrubber now removes null bytes from the scrubbed message body.
28 * Update the Display Name of a user and it's associated addresses in Mailman
29 when the display name is updated in Django.
30 * Sync a Django user's email address to Core even if it is not verified.
31 * Add an allauth account adapter to disable signups.
2132
2233 1.3.5 (2021-01-15)
2334 ------------------
1010
1111 NEWS
1212 ====
13
14 1.3.6 (2021-XX-XX)
15 ------------------
16 * ``django_mailman3.lib.mailman.get_mailman_client()`` now supports
17 Mailmanclient request hooks to be added using a new
18 ``@mailmanclient_request_hook`` decorator.
19 * Scrubber now removes null bytes from the scrubbed message body.
20 * Update the Display Name of a user and it's associated addresses in Mailman
21 when the display name is updated in Django.
22 * Sync a Django user's email address to Core even if it is not verified.
23 * Add an allauth account adapter to disable signups.
1324
1425 1.3.5 (2021-01-15)
1526 ------------------
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
1818 #
1919 # Author: Aurelien Bompard <abompard@fedoraproject.org>
2020 #
21 import logging
2122
2223 from django.apps import AppConfig
24
25
26 # For a library, adding a NullHandler is a good idea. If the Django project
27 # wants, they can configure the handler in LOGGING config for `django_mailman3`
28 # logger.
29 log = logging.getLogger(__name__)
30 log.addHandler(logging.NullHandler())
2331
2432
2533 class DjangoMailman3Config(AppConfig):
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2012-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2012-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2012-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2012-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2012-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2012-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
1919 #
2020
2121
22 from django.conf.urls import url
22 from django.urls import re_path
2323
2424 from . import views
2525
2626
2727 urlpatterns = [
28 url('^fedora/login/$', views.LoginView.as_view(),
29 name="fedora_login"),
30 url('^fedora/callback/$', views.CallbackView.as_view(),
31 name='fedora_callback'),
28 re_path('^fedora/login/$', views.LoginView.as_view(),
29 name="fedora_login"),
30 re_path('^fedora/callback/$', views.CallbackView.as_view(),
31 name='fedora_callback'),
3232 ]
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2012-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2012-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
3333
3434 logger = logging.getLogger(__name__)
3535
36 _REQUEST_HOOKS = []
37 #: List of hooks that can into request parameter of Mailmanclient.
38
39
40 def mailmanclient_request_hook(fn):
41 """Decorator that converts a method into Mailmanclient request hook."""
42 if fn not in _REQUEST_HOOKS:
43 _REQUEST_HOOKS.append(fn)
44 return fn
45
46
47 def get_request_hooks():
48 """Get a list of default request hooks.
49
50 Returns default hooks, but only in DEBUG mode.
51 """
52 return _REQUEST_HOOKS
53
3654
3755 def get_mailman_client(api_version='3.1'):
3856 """Return an instance of Mailman Client.
4563 client = MailmanClient(
4664 '{}/{}'.format(settings.MAILMAN_REST_API_URL, api_version),
4765 settings.MAILMAN_REST_API_USER,
48 settings.MAILMAN_REST_API_PASS)
66 settings.MAILMAN_REST_API_PASS,
67 get_request_hooks())
4968 return client
5069
5170
183202 mm_address = mailman_addresses.find_by_email(django_address.email)
184203 if mm_address is not None:
185204 check_verified(django_address, mm_address)
186 elif django_address.verified: # only add if verified
205 else:
187206 mm_address = mm_user.add_address(
188207 django_address.email, absorb_existing=True)
189 mm_address.verify()
208 if django_address.verified:
209 mm_address.verify()
190210 # Mailman
191211 for mm_address in mailman_addresses:
192212 if not mm_address.verified:
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2017-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2017-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
247247 next_part_match = NEXT_PART.search(result)
248248 if next_part_match:
249249 result = result[0:next_part_match.start(0)]
250 # MAS Remove any null butes from the result.
251 result = re.sub('\x00', '', result)
250252 return result
251253
252254 def _get_text(self):
275277 if not part_content.endswith('\n'):
276278 part_content += '\n'
277279 text.append(part_content)
278 return '\n'.join(text)
280 # MAS remove any null bytes from the text.
281 return re.sub('\x00', '', '\n'.join(text))
279282 else:
280283 return self._get_text_one_part(self.msg)
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2020 by the Free Software Foundation, Inc.
2 # Copyright (C) 2020-2021 by the Free Software Foundation, Inc.
33 #
44 # This program is free software; you can redistribute it and/or
55 # modify it under the terms of the GNU General Public License
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
1919 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1919 "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
2020 "%100>=11 && n%100<=14)? 2 : 3);\n"
2121
22 #: forms.py:32
23 msgid "Username"
24 msgstr ""
25
26 #: forms.py:33
27 msgid "First name"
28 msgstr ""
29
30 #: forms.py:34
31 msgid "Last name"
32 msgstr ""
33
34 #: forms.py:36
35 msgid "Time zone"
36 msgstr ""
37
2238 #: forms.py:43
2339 msgid "A user with that username already exists."
2440 msgstr ""
2541
2642 #: templates/account/email.html:6
27 #: templates/django_mailman3/profile/base.html:16
2843 #: templates/django_mailman3/profile/base.html:17
2944 msgid "Account"
3045 msgstr ""
117132 msgstr ""
118133
119134 #: templates/account/login.html:30
120 #: templates/django_mailman3/profile/profile.html:67
135 #: templates/django_mailman3/profile/profile.html:72
121136 msgid "or"
122137 msgstr ""
123138
145160 #: templates/account/password_reset_from_key.html:6
146161 #: templates/account/password_reset_from_key.html:9
147162 #: templates/django_mailman3/profile/base.html:20
148 #: templates/django_mailman3/profile/base.html:21
149163 msgid "Change Password"
150164 msgstr ""
151165
207221 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
208222 msgstr ""
209223
210 #: templates/django_mailman3/paginator/pagination.html:41
224 #: templates/django_mailman3/paginator/pagination.html:43
211225 msgid "Jump to page:"
212226 msgstr ""
213227
214 #: templates/django_mailman3/paginator/pagination.html:59
228 #: templates/django_mailman3/paginator/pagination.html:61
215229 msgid "Results per page:"
216230 msgstr ""
217231
218 #: templates/django_mailman3/paginator/pagination.html:75
219 #: templates/django_mailman3/profile/profile.html:66
232 #: templates/django_mailman3/paginator/pagination.html:77
233 #: templates/django_mailman3/profile/profile.html:71
220234 msgid "Update"
221235 msgstr ""
222236
223 #: templates/django_mailman3/profile/base.html:5
237 #: templates/django_mailman3/profile/base.html:6
224238 msgid "User Profile"
225239 msgstr ""
226240
227 #: templates/django_mailman3/profile/base.html:12
241 #: templates/django_mailman3/profile/base.html:13
228242 msgid "User profile"
229243 msgstr ""
230244
231 #: templates/django_mailman3/profile/base.html:12
245 #: templates/django_mailman3/profile/base.html:13
232246 msgid "for"
233247 msgstr ""
234248
235 #: templates/django_mailman3/profile/base.html:24
236 #: templates/django_mailman3/profile/base.html:25
249 #: templates/django_mailman3/profile/base.html:23
237250 msgid "E-mail Addresses"
238251 msgstr ""
239252
240 #: templates/django_mailman3/profile/base.html:29
241253 #: templates/django_mailman3/profile/base.html:30
242254 msgid "Account Connections"
243255 msgstr ""
244256
245 #: templates/django_mailman3/profile/base.html:33
246 #: templates/django_mailman3/profile/base.html:34
247 #: templates/django_mailman3/profile/delete_profile.html:18
257 #: templates/django_mailman3/profile/base.html:35
258 #: templates/django_mailman3/profile/delete_profile.html:17
248259 msgid "Delete Account"
249260 msgstr ""
250261
251 #: templates/django_mailman3/profile/delete_profile.html:13
262 #: templates/django_mailman3/profile/delete_profile.html:12
252263 msgid ""
253264 "Are you sure you want to delete your account? This will remove your account "
254265 "along with all your subscriptions."
255266 msgstr ""
256267
257 #: templates/django_mailman3/profile/profile.html:18
268 #: templates/django_mailman3/profile/profile.html:20
269 #: templates/django_mailman3/profile/profile.html:57
270 msgid "Edit on"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:28
274 msgid "Primary email:"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:34
278 msgid "Other emails:"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:40
282 msgid "(no other email)"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:45
286 msgid "Link another address"
287 msgstr ""
288
258289 #: templates/django_mailman3/profile/profile.html:53
259 msgid "Edit on"
260 msgstr ""
261
262 #: templates/django_mailman3/profile/profile.html:25
263 msgid "Primary email:"
264 msgstr ""
265
266 #: templates/django_mailman3/profile/profile.html:31
267 msgid "Other emails:"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:37
271 msgid "(no other email)"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:42
275 msgid "Link another address"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:49
279290 msgid "Avatar:"
280291 msgstr ""
281292
282 #: templates/django_mailman3/profile/profile.html:58
293 #: templates/django_mailman3/profile/profile.html:63
283294 msgid "Joined on:"
284295 msgstr ""
285296
286 #: templates/django_mailman3/profile/profile.html:67
297 #: templates/django_mailman3/profile/profile.html:72
287298 msgid "cancel"
288299 msgstr ""
289300
329340 msgid "Next"
330341 msgstr ""
331342
332 #: views/profile.py:73
343 #: views/profile.py:72
333344 msgid "The profile was successfully updated."
334345 msgstr ""
335346
336 #: views/profile.py:75
347 #: views/profile.py:74
337348 msgid "No change detected."
338349 msgstr ""
339350
340 #: views/profile.py:108
351 #: views/profile.py:110
341352 msgid "Successfully deleted account"
342353 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-03-31 20:13+0000\n"
1111 "Last-Translator: Jaume Ortolà i Font <jaumeortola@gmail.com>\n"
1212 "Language-Team: Catalan <https://hosted.weblate.org/projects/gnu-mailman/"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
1919 "X-Generator: Weblate 4.0-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Ja existeix un usuari amb aquest nom."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Compte"
129144 "per a un compte en %(site_name)s i entreu a sota:"
130145
131146 #: templates/account/login.html:30
132 #: templates/django_mailman3/profile/profile.html:67
147 #: templates/django_mailman3/profile/profile.html:72
133148 msgid "or"
134149 msgstr "o"
135150
159174 #: templates/account/password_reset_from_key.html:6
160175 #: templates/account/password_reset_from_key.html:9
161176 #: templates/django_mailman3/profile/base.html:20
162 #: templates/django_mailman3/profile/base.html:21
163177 msgid "Change Password"
164178 msgstr "Canviar contrasenya"
165179
226240 msgid ""
227241 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
228242 msgstr ""
229 "Ja té compte? En aquest cas, si us plau, <a href=\"%(login_url)s\""
230 ">accedeixi</a>."
231
232 #: templates/django_mailman3/paginator/pagination.html:41
243 "Ja té compte? En aquest cas, si us plau, <a href=\"%(login_url)s"
244 "\">accedeixi</a>."
245
246 #: templates/django_mailman3/paginator/pagination.html:43
233247 msgid "Jump to page:"
234248 msgstr "Anar a la pàgina:"
235249
236 #: templates/django_mailman3/paginator/pagination.html:59
250 #: templates/django_mailman3/paginator/pagination.html:61
237251 msgid "Results per page:"
238252 msgstr "Resultats per pàgina:"
239253
240 #: templates/django_mailman3/paginator/pagination.html:75
241 #: templates/django_mailman3/profile/profile.html:66
254 #: templates/django_mailman3/paginator/pagination.html:77
255 #: templates/django_mailman3/profile/profile.html:71
242256 msgid "Update"
243257 msgstr "Actualitzar"
244258
245 #: templates/django_mailman3/profile/base.html:5
259 #: templates/django_mailman3/profile/base.html:6
246260 msgid "User Profile"
247261 msgstr "Perfil d'usuari"
248262
249 #: templates/django_mailman3/profile/base.html:12
263 #: templates/django_mailman3/profile/base.html:13
250264 msgid "User profile"
251265 msgstr "Perfil d'usuari"
252266
253 #: templates/django_mailman3/profile/base.html:12
267 #: templates/django_mailman3/profile/base.html:13
254268 msgid "for"
255269 msgstr "per"
256270
257 #: templates/django_mailman3/profile/base.html:24
258 #: templates/django_mailman3/profile/base.html:25
271 #: templates/django_mailman3/profile/base.html:23
259272 msgid "E-mail Addresses"
260273 msgstr "Adreces de correu"
261274
262 #: templates/django_mailman3/profile/base.html:29
263275 #: templates/django_mailman3/profile/base.html:30
264276 msgid "Account Connections"
265277 msgstr "Connexions del compte"
266278
267 #: templates/django_mailman3/profile/base.html:33
268 #: templates/django_mailman3/profile/base.html:34
269 #: templates/django_mailman3/profile/delete_profile.html:18
279 #: templates/django_mailman3/profile/base.html:35
280 #: templates/django_mailman3/profile/delete_profile.html:17
270281 msgid "Delete Account"
271282 msgstr "Esborra el compte"
272283
273 #: templates/django_mailman3/profile/delete_profile.html:13
284 #: templates/django_mailman3/profile/delete_profile.html:12
274285 msgid ""
275286 "Are you sure you want to delete your account? This will remove your account "
276287 "along with all your subscriptions."
278289 "Esteu segur que voleu eliminar el compte? Això eliminarà el seu compte "
279290 "juntament amb totes les seves subscripcions."
280291
281 #: templates/django_mailman3/profile/profile.html:18
282 #: templates/django_mailman3/profile/profile.html:53
292 #: templates/django_mailman3/profile/profile.html:20
293 #: templates/django_mailman3/profile/profile.html:57
283294 msgid "Edit on"
284295 msgstr "Editar a"
285296
286 #: templates/django_mailman3/profile/profile.html:25
297 #: templates/django_mailman3/profile/profile.html:28
287298 msgid "Primary email:"
288299 msgstr "Adreça principal:"
289300
290 #: templates/django_mailman3/profile/profile.html:31
301 #: templates/django_mailman3/profile/profile.html:34
291302 msgid "Other emails:"
292303 msgstr "Altres adreces:"
293304
294 #: templates/django_mailman3/profile/profile.html:37
305 #: templates/django_mailman3/profile/profile.html:40
295306 msgid "(no other email)"
296307 msgstr "(No hi han altres direccions)"
297308
298 #: templates/django_mailman3/profile/profile.html:42
309 #: templates/django_mailman3/profile/profile.html:45
299310 msgid "Link another address"
300311 msgstr "Afegir una altra direcció"
301312
302 #: templates/django_mailman3/profile/profile.html:49
313 #: templates/django_mailman3/profile/profile.html:53
303314 msgid "Avatar:"
304315 msgstr "Avatar:"
305316
306 #: templates/django_mailman3/profile/profile.html:58
317 #: templates/django_mailman3/profile/profile.html:63
307318 msgid "Joined on:"
308319 msgstr "Subscrit el:"
309320
310 #: templates/django_mailman3/profile/profile.html:67
321 #: templates/django_mailman3/profile/profile.html:72
311322 msgid "cancel"
312323 msgstr "cancel·lar"
313324
359370 msgid "Next"
360371 msgstr "Següent"
361372
362 #: views/profile.py:73
373 #: views/profile.py:72
363374 msgid "The profile was successfully updated."
364375 msgstr "El perfil s'ha actualitzat correctament."
365376
366 #: views/profile.py:75
377 #: views/profile.py:74
367378 msgid "No change detected."
368379 msgstr "No s'han detectat canvis."
369380
370 #: views/profile.py:108
381 #: views/profile.py:110
371382 msgid "Successfully deleted account"
372383 msgstr "El compte s'ha esborrat"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
1919 "11) ? 2 : 3;\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
00 # SOME DESCRIPTIVE TITLE.
1 # Copyright (C) 2018
1 # Copyright (C) 2018-2021 by the Free Software Foundation, Inc.
22 # This file is distributed under the same license as the PACKAGE package.
33 # Daniel <dsd.trash@gmail.com>, 2018
44 #
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: \n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2018-04-26 20:05+0200\n"
10 "PO-Revision-Date: 2020-12-01 15:09+0000\n"
11 "Last-Translator: Michael Lorenzen <ml@m-lorenzen.de>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-15 11:27+0000\n"
11 "Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
1212 "Language-Team: German <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/de/>\n"
1414 "Language: de\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.4-dev\n"
19 "X-Generator: Weblate 4.6-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
2024
2125 #: forms.py:33
2226 msgid "First name"
3539 msgstr "Ein Benutzer mit diesem Namen existiert bereits."
3640
3741 #: templates/account/email.html:6
38 #: templates/django_mailman3/profile/base.html:16
3942 #: templates/django_mailman3/profile/base.html:17
4043 msgid "Account"
4144 msgstr "Konto"
5053
5154 #: templates/account/email.html:27
5255 msgid "Unverified"
53 msgstr "Unverifiziert"
56 msgstr "Nicht verifiziert"
5457
5558 #: templates/account/email.html:29
5659 msgid "Primary"
123126 #: templates/account/login.html:7 templates/account/login.html:11
124127 #: templates/account/login.html:48
125128 msgid "Sign In"
126 msgstr "Einloggen"
129 msgstr "Anmelden"
127130
128131 #: templates/account/login.html:18
129132 #, python-format
134137 "for a %(site_name)s account and sign in below:"
135138 msgstr ""
136139 "Bitte melden Sie sich mit einem\n"
137 "Ihrer bestehenden Konten Dritter an. Oder <a href=\"%(signup_url)s\">"
138 "registrieren Sie</a>\n"
140 "Ihrer bestehenden Konten Dritter an. Oder <a href=\"%(signup_url)s"
141 "\">registrieren Sie</a>\n"
139142 "ein %(site_name)s-Konto und melden sich unten an:"
140143
141144 #: templates/account/login.html:30
142 #: templates/django_mailman3/profile/profile.html:67
145 #: templates/django_mailman3/profile/profile.html:72
143146 msgid "or"
144147 msgstr "oder"
145148
169172 #: templates/account/password_reset_from_key.html:6
170173 #: templates/account/password_reset_from_key.html:9
171174 #: templates/django_mailman3/profile/base.html:20
172 #: templates/django_mailman3/profile/base.html:21
173175 msgid "Change Password"
174176 msgstr "Passwort ändern"
175177
208210 "a>."
209211 msgstr ""
210212 "Der Link zum Zurücksetzen des Passworts war ungültig, möglicherweise weil er "
211 "bereits benutzt wurde. Bitte fordere einen neuen <a href=\""
212 "%(passwd_reset_url)s\">Link </a> zum Zurücksetzen des Passworts an."
213 "bereits benutzt wurde. Bitte fordere einen neuen <a href="
214 "\"%(passwd_reset_url)s\">Link </a> zum Zurücksetzen des Passworts an."
213215
214216 #: templates/account/password_reset_from_key.html:20
215217 msgid "change password"
240242 "Du hast bereits ein Konto? Dann <a href=\"%(login_url)s\">melde dich bitte "
241243 "an</a>."
242244
243 #: templates/django_mailman3/paginator/pagination.html:41
245 #: templates/django_mailman3/paginator/pagination.html:43
244246 msgid "Jump to page:"
245247 msgstr "Springe zur Seite:"
246248
247 #: templates/django_mailman3/paginator/pagination.html:59
249 #: templates/django_mailman3/paginator/pagination.html:61
248250 msgid "Results per page:"
249251 msgstr "Ergebnisse pro Seite:"
250252
251 #: templates/django_mailman3/paginator/pagination.html:75
252 #: templates/django_mailman3/profile/profile.html:66
253 #: templates/django_mailman3/paginator/pagination.html:77
254 #: templates/django_mailman3/profile/profile.html:71
253255 msgid "Update"
254256 msgstr "Aktualisieren"
255257
256 #: templates/django_mailman3/profile/base.html:5
258 #: templates/django_mailman3/profile/base.html:6
257259 msgid "User Profile"
258260 msgstr "Benutzerprofil"
259261
260 #: templates/django_mailman3/profile/base.html:12
262 #: templates/django_mailman3/profile/base.html:13
261263 msgid "User profile"
262264 msgstr "Benutzerprofil"
263265
264 #: templates/django_mailman3/profile/base.html:12
266 #: templates/django_mailman3/profile/base.html:13
265267 msgid "for"
266268 msgstr "für"
267269
268 #: templates/django_mailman3/profile/base.html:24
269 #: templates/django_mailman3/profile/base.html:25
270 #: templates/django_mailman3/profile/base.html:23
270271 msgid "E-mail Addresses"
271272 msgstr "E-Mail-Adressen"
272273
273 #: templates/django_mailman3/profile/base.html:29
274274 #: templates/django_mailman3/profile/base.html:30
275275 msgid "Account Connections"
276276 msgstr "Kontoverbindungen"
277277
278 #: templates/django_mailman3/profile/base.html:33
279 #: templates/django_mailman3/profile/base.html:34
280 #: templates/django_mailman3/profile/delete_profile.html:18
278 #: templates/django_mailman3/profile/base.html:35
279 #: templates/django_mailman3/profile/delete_profile.html:17
281280 msgid "Delete Account"
282281 msgstr "Konto löschen"
283282
284 #: templates/django_mailman3/profile/delete_profile.html:13
283 #: templates/django_mailman3/profile/delete_profile.html:12
285284 msgid ""
286285 "Are you sure you want to delete your account? This will remove your account "
287286 "along with all your subscriptions."
289288 "Bist du dir sicher, dass du dein Konto löschen möchtest? Dies wird dein "
290289 "Konto mitsamt all deiner Mitgliedschaften entfernen."
291290
292 #: templates/django_mailman3/profile/profile.html:18
293 #: templates/django_mailman3/profile/profile.html:53
291 #: templates/django_mailman3/profile/profile.html:20
292 #: templates/django_mailman3/profile/profile.html:57
294293 msgid "Edit on"
295294 msgstr "Bearbeiten auf"
296295
297 #: templates/django_mailman3/profile/profile.html:25
296 #: templates/django_mailman3/profile/profile.html:28
298297 msgid "Primary email:"
299298 msgstr "Haupt-E-Mail-Adresse:"
300299
301 #: templates/django_mailman3/profile/profile.html:31
300 #: templates/django_mailman3/profile/profile.html:34
302301 msgid "Other emails:"
303302 msgstr "Andere E-Mail-Adressen:"
304303
305 #: templates/django_mailman3/profile/profile.html:37
304 #: templates/django_mailman3/profile/profile.html:40
306305 msgid "(no other email)"
307306 msgstr "(keine andere E-Mail-Adresse)"
308307
309 #: templates/django_mailman3/profile/profile.html:42
308 #: templates/django_mailman3/profile/profile.html:45
310309 msgid "Link another address"
311310 msgstr "Eine andere Adresse verknüpfen"
312311
313 #: templates/django_mailman3/profile/profile.html:49
312 #: templates/django_mailman3/profile/profile.html:53
314313 msgid "Avatar:"
315314 msgstr "Avatar:"
316315
317 #: templates/django_mailman3/profile/profile.html:58
316 #: templates/django_mailman3/profile/profile.html:63
318317 msgid "Joined on:"
319318 msgstr "Beigetreten am:"
320319
321 #: templates/django_mailman3/profile/profile.html:67
320 #: templates/django_mailman3/profile/profile.html:72
322321 msgid "cancel"
323322 msgstr "abbrechen"
324323
378377 msgid "No change detected."
379378 msgstr "Keine Änderung festgestellt."
380379
381 #: views/profile.py:107
380 #: views/profile.py:110
382381 msgid "Successfully deleted account"
383382 msgstr "Konto erfolgreich gelöscht"
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 #, fuzzy
65 msgid ""
76 msgstr ""
87 "Project-Id-Version: PACKAGE VERSION\n"
98 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-05-04 13:32+0000\n"
11 "Last-Translator: Eugenia Russell <eugenia.russell2019@gmail.com>\n"
12 "Language-Team: Greek <https://hosted.weblate.org/projects/gnu-mailman/django-"
13 "mailman3/el/>\n"
14 "Language: el\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
1936
2037 #: forms.py:43
2138 msgid "A user with that username already exists."
22 msgstr ""
39 msgstr "Υπάρχει ήδη ένας χρήστης με αυτό το όνομα χρήστη."
2340
2441 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2642 #: templates/django_mailman3/profile/base.html:17
2743 msgid "Account"
2844 msgstr ""
115131 msgstr ""
116132
117133 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
119135 msgid "or"
120136 msgstr ""
121137
143159 #: templates/account/password_reset_from_key.html:6
144160 #: templates/account/password_reset_from_key.html:9
145161 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147162 msgid "Change Password"
148163 msgstr ""
149164
205220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206221 msgstr ""
207222
208 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
209224 msgid "Jump to page:"
210225 msgstr ""
211226
212 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
213228 msgid "Results per page:"
214229 msgstr ""
215230
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
218233 msgid "Update"
219234 msgstr ""
220235
221 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
222237 msgid "User Profile"
223238 msgstr ""
224239
225 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
226241 msgid "User profile"
227242 msgstr ""
228243
229 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
230245 msgid "for"
231246 msgstr ""
232247
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
235249 msgid "E-mail Addresses"
236250 msgstr ""
237251
238 #: templates/django_mailman3/profile/base.html:29
239252 #: templates/django_mailman3/profile/base.html:30
240253 msgid "Account Connections"
241254 msgstr ""
242255
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
246258 msgid "Delete Account"
247259 msgstr ""
248260
249 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
250262 msgid ""
251263 "Are you sure you want to delete your account? This will remove your account "
252264 "along with all your subscriptions."
253265 msgstr ""
254266
255 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
256288 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277289 msgid "Avatar:"
278290 msgstr ""
279291
280 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
281293 msgid "Joined on:"
282294 msgstr ""
283295
284 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
285297 msgid "cancel"
286298 msgstr ""
287299
327339 msgid "Next"
328340 msgstr ""
329341
330 #: views/profile.py:73
342 #: views/profile.py:72
331343 msgid "The profile was successfully updated."
332344 msgstr ""
333345
334 #: views/profile.py:75
346 #: views/profile.py:74
335347 msgid "No change detected."
336348 msgstr ""
337349
338 #: views/profile.py:108
350 #: views/profile.py:110
339351 msgid "Successfully deleted account"
340352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2020-02-05 22:50+0000\n"
11 "Last-Translator: Paco <pacoc@pangea.org>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-15 11:27+0000\n"
11 "Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
1212 "Language-Team: Spanish <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/es/>\n"
1414 "Language: es\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 3.11-dev\n"
19 "X-Generator: Weblate 4.6-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Ya existe otro usuario con ese nombre de usuario."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Cuenta"
7489
7590 #: templates/account/email.html:55
7691 msgid "Add E-mail"
77 msgstr "Agregar e-mail"
92 msgstr "Añadir un correo electrónico"
7893
7994 #: templates/account/email.html:66
8095 msgid "Do you really want to remove the selected e-mail address?"
81 msgstr "¿Está seguro de que quiere remover la dirección seleccionada?"
96 msgstr "¿Está seguro de que quiere borrar la dirección seleccionada?"
8297
8398 #: templates/account/email_confirm.html:6
8499 #: templates/account/email_confirm.html:10
92107 "address for user %(user_display)s."
93108 msgstr ""
94109 "Por favor confirme que <a href=\"mailto:%(email)s\">%(email)s</a> es una "
95 "dirección de e-mail del usuario %(user_display)s."
110 "dirección de correo electrónico del usuario %(user_display)s."
96111
97112 #: templates/account/email_confirm.html:20
98113 msgid "Confirm"
104119 "This e-mail confirmation link expired or is invalid. Please <a href="
105120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
106121 msgstr ""
107 "El link de confirmación de corre electrónico ha expirado o no es válido. Por "
108 "favor <a href=\"%(email_url)s\">Solicite una nueva confirmación de correo "
109 "electrónico</a>."
122 "Este enlace de confirmación de corre electrónico ha expirado o no es válido. "
123 "Por favor <a href=\"%(email_url)s\">Solicite una nueva confirmación de "
124 "correo electrónico</a>."
110125
111126 #: templates/account/login.html:7 templates/account/login.html:11
112127 #: templates/account/login.html:48
126141 "en %(site_name)s y luego ingrese abajo:"
127142
128143 #: templates/account/login.html:30
129 #: templates/django_mailman3/profile/profile.html:67
144 #: templates/django_mailman3/profile/profile.html:72
130145 msgid "or"
131146 msgstr "o"
132147
137152 "<a href=\"%(signup_url)s\">sign up</a> first."
138153 msgstr ""
139154 "Si todavía no ha creado una cuenta, por favor \n"
140 "<a href=\"%(signup_url)s\">regístrese</a> first."
155 "<a href=\"%(signup_url)s\">regístrese</a> antes."
141156
142157 #: templates/account/login.html:50
143158 msgid "Forgot Password?"
156171 #: templates/account/password_reset_from_key.html:6
157172 #: templates/account/password_reset_from_key.html:9
158173 #: templates/django_mailman3/profile/base.html:20
159 #: templates/django_mailman3/profile/base.html:21
160174 msgid "Change Password"
161175 msgstr "Cambiar contraseña"
162176
193207 "a>."
194208 msgstr ""
195209 "El enlace para restablecer la contraseña no era válido, es posible que ya se "
196 "hubiera usado. Por favor, solicite un<a href=\"%(passwd_reset_url)s\">"
197 "nuevo restablecimiento de contraseña</a>."
210 "hubiera usado. Por favor, solicite un<a href=\"%(passwd_reset_url)s"
211 "\">nuevo restablecimiento de contraseña</a>."
198212
199213 #: templates/account/password_reset_from_key.html:20
200214 msgid "change password"
222236 msgid ""
223237 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
224238 msgstr ""
225 "¿Ya tiene cuenta? En ese caso, por favor, <a href=\"%(login_url)s\""
226 ">acceda</a>."
227
228 #: templates/django_mailman3/paginator/pagination.html:41
239 "¿Ya tiene cuenta? En ese caso, por favor, <a href=\"%(login_url)s\">acceda</"
240 "a>."
241
242 #: templates/django_mailman3/paginator/pagination.html:43
229243 msgid "Jump to page:"
230244 msgstr "Ir a la página:"
231245
232 #: templates/django_mailman3/paginator/pagination.html:59
246 #: templates/django_mailman3/paginator/pagination.html:61
233247 msgid "Results per page:"
234248 msgstr "Resultados por página:"
235249
236 #: templates/django_mailman3/paginator/pagination.html:75
237 #: templates/django_mailman3/profile/profile.html:66
250 #: templates/django_mailman3/paginator/pagination.html:77
251 #: templates/django_mailman3/profile/profile.html:71
238252 msgid "Update"
239253 msgstr "Actualizar"
240254
241 #: templates/django_mailman3/profile/base.html:5
255 #: templates/django_mailman3/profile/base.html:6
242256 msgid "User Profile"
243257 msgstr "Perfil de usuario"
244258
245 #: templates/django_mailman3/profile/base.html:12
259 #: templates/django_mailman3/profile/base.html:13
246260 msgid "User profile"
247261 msgstr "Perfil de usuario"
248262
249 #: templates/django_mailman3/profile/base.html:12
263 #: templates/django_mailman3/profile/base.html:13
250264 msgid "for"
251265 msgstr "para"
252266
253 #: templates/django_mailman3/profile/base.html:24
254 #: templates/django_mailman3/profile/base.html:25
267 #: templates/django_mailman3/profile/base.html:23
255268 msgid "E-mail Addresses"
256269 msgstr "Direcciones de correo-e"
257270
258 #: templates/django_mailman3/profile/base.html:29
259271 #: templates/django_mailman3/profile/base.html:30
260272 msgid "Account Connections"
261273 msgstr "Conexiones de la cuenta"
262274
263 #: templates/django_mailman3/profile/base.html:33
264 #: templates/django_mailman3/profile/base.html:34
265 #: templates/django_mailman3/profile/delete_profile.html:18
275 #: templates/django_mailman3/profile/base.html:35
276 #: templates/django_mailman3/profile/delete_profile.html:17
266277 msgid "Delete Account"
267278 msgstr "Eliminar cuenta"
268279
269 #: templates/django_mailman3/profile/delete_profile.html:13
280 #: templates/django_mailman3/profile/delete_profile.html:12
270281 msgid ""
271282 "Are you sure you want to delete your account? This will remove your account "
272283 "along with all your subscriptions."
274285 "¿Está seguro que quiere eliminar la cuenta? Esto eliminará su cuenta junto "
275286 "con todas sus suscripciones."
276287
277 #: templates/django_mailman3/profile/profile.html:18
278 #: templates/django_mailman3/profile/profile.html:53
288 #: templates/django_mailman3/profile/profile.html:20
289 #: templates/django_mailman3/profile/profile.html:57
279290 msgid "Edit on"
280291 msgstr "Editar en"
281292
282 #: templates/django_mailman3/profile/profile.html:25
293 #: templates/django_mailman3/profile/profile.html:28
283294 msgid "Primary email:"
284295 msgstr "Dirección principal:"
285296
286 #: templates/django_mailman3/profile/profile.html:31
297 #: templates/django_mailman3/profile/profile.html:34
287298 msgid "Other emails:"
288299 msgstr "Otras direcciones:"
289300
290 #: templates/django_mailman3/profile/profile.html:37
301 #: templates/django_mailman3/profile/profile.html:40
291302 msgid "(no other email)"
292303 msgstr "(no hay otras direcciones)"
293304
294 #: templates/django_mailman3/profile/profile.html:42
305 #: templates/django_mailman3/profile/profile.html:45
295306 msgid "Link another address"
296307 msgstr "Añadir otra dirección"
297308
298 #: templates/django_mailman3/profile/profile.html:49
309 #: templates/django_mailman3/profile/profile.html:53
299310 msgid "Avatar:"
300311 msgstr "Avatar:"
301312
302 #: templates/django_mailman3/profile/profile.html:58
313 #: templates/django_mailman3/profile/profile.html:63
303314 msgid "Joined on:"
304315 msgstr "Suscrito el:"
305316
306 #: templates/django_mailman3/profile/profile.html:67
317 #: templates/django_mailman3/profile/profile.html:72
307318 msgid "cancel"
308319 msgstr "cancelar"
309320
354365 msgid "Next"
355366 msgstr "Siguiente"
356367
357 #: views/profile.py:73
368 #: views/profile.py:72
358369 msgid "The profile was successfully updated."
359370 msgstr "El perfil se ha actualizado con éxito."
360371
361 #: views/profile.py:75
372 #: views/profile.py:74
362373 msgid "No change detected."
363374 msgstr "No se han detectado cambios."
364375
365 #: views/profile.py:108
376 #: views/profile.py:110
366377 msgid "Successfully deleted account"
367378 msgstr "La cuenta se ha eliminado"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2020-10-18 03:21+0000\n"
11 "Last-Translator: iiron <iiro.nummela@nkl.fi>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-15 11:27+0000\n"
11 "Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
1212 "Language-Team: Finnish <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/fi/>\n"
1414 "Language: fi\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.3.1-dev\n"
19 "X-Generator: Weblate 4.6-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Käyttäjätunnus on jo käytössä."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
29 msgstr "Tili"
44 msgstr "Käyttäjätili"
3045
3146 #: templates/account/email.html:11
3247 msgid "The following e-mail addresses are associated with your account:"
33 msgstr "Seuraavat sähköpostiosoitteet on liitetty tiliisi:"
48 msgstr "Seuraavat sähköpostiosoitteet ovat sidonnaisia käyttäjätiliisi:"
3449
3550 #: templates/account/email.html:25
3651 msgid "Verified"
104119 "This e-mail confirmation link expired or is invalid. Please <a href="
105120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
106121 msgstr ""
122 "Sähköpostin vahvistuslinkki on vanhentunut tai muuten sopimaton. Pyydä <a "
123 "href=\"%(email_url)s\">uutta sähköpostivahvistusta</a>."
107124
108125 #: templates/account/login.html:7 templates/account/login.html:11
109126 #: templates/account/login.html:48
110127 msgid "Sign In"
111 msgstr ""
128 msgstr "Kirjaudu sisään"
112129
113130 #: templates/account/login.html:18
114131 #, python-format
120137 msgstr ""
121138
122139 #: templates/account/login.html:30
123 #: templates/django_mailman3/profile/profile.html:67
140 #: templates/django_mailman3/profile/profile.html:72
124141 msgid "or"
125 msgstr ""
142 msgstr "tai"
126143
127144 #: templates/account/login.html:37
128145 #, python-format
133150
134151 #: templates/account/login.html:50
135152 msgid "Forgot Password?"
136 msgstr ""
153 msgstr "Unohditko salasanan?"
137154
138155 #: templates/account/logout.html:5 templates/account/logout.html:8
139156 #: templates/account/logout.html:17
140157 msgid "Sign Out"
141 msgstr ""
158 msgstr "Kirjaudu ulos"
142159
143160 #: templates/account/logout.html:10
144161 msgid "Are you sure you want to sign out?"
145 msgstr ""
162 msgstr "Oletko varma, että haluat kirjautua ulos?"
146163
147164 #: templates/account/password_change.html:12
148165 #: templates/account/password_reset_from_key.html:6
149166 #: templates/account/password_reset_from_key.html:9
150167 #: templates/django_mailman3/profile/base.html:20
151 #: templates/django_mailman3/profile/base.html:21
152168 msgid "Change Password"
153 msgstr ""
169 msgstr "Vaihda salasana"
154170
155171 #: templates/account/password_reset.html:7
156172 #: templates/account/password_reset.html:11
157173 msgid "Password Reset"
158 msgstr ""
174 msgstr "Salasanan palauttaminen"
159175
160176 #: templates/account/password_reset.html:16
161177 msgid ""
162178 "Forgotten your password? Enter your e-mail address below, and we'll send you "
163179 "an e-mail allowing you to reset it."
164180 msgstr ""
181 "Unohditko salasanasi? Anna sähköpostiosoitteesi alla, niin lähetämme sinulle "
182 "sähköpostiviestin, jonka avulla voit palauttaa salasanasi."
165183
166184 #: templates/account/password_reset.html:22
167185 msgid "Reset My Password"
168 msgstr ""
186 msgstr "Palauta salasanani"
169187
170188 #: templates/account/password_reset.html:27
171189 msgid "Please contact us if you have any trouble resetting your password."
185203
186204 #: templates/account/password_reset_from_key.html:20
187205 msgid "change password"
188 msgstr ""
206 msgstr "vaihda salasana"
189207
190208 #: templates/account/password_reset_from_key.html:25
191209 msgid "Your password is now changed."
192 msgstr ""
210 msgstr "Salasanasi on nyt vaihdettu."
193211
194212 #: templates/account/password_set.html:12
195213 msgid "Set Password"
196 msgstr ""
214 msgstr "Aseta salasana"
197215
198216 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
199217 msgid "Signup"
200 msgstr ""
218 msgstr "Rekisteröidy"
201219
202220 #: templates/account/signup.html:9 templates/account/signup.html:20
203221 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
204222 msgid "Sign Up"
205 msgstr ""
223 msgstr "Rekisteröidy"
206224
207225 #: templates/account/signup.html:11
208226 #, python-format
210228 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
211229 msgstr ""
212230
213 #: templates/django_mailman3/paginator/pagination.html:41
231 #: templates/django_mailman3/paginator/pagination.html:43
214232 msgid "Jump to page:"
215233 msgstr ""
216234
217 #: templates/django_mailman3/paginator/pagination.html:59
235 #: templates/django_mailman3/paginator/pagination.html:61
218236 msgid "Results per page:"
219237 msgstr ""
220238
221 #: templates/django_mailman3/paginator/pagination.html:75
222 #: templates/django_mailman3/profile/profile.html:66
239 #: templates/django_mailman3/paginator/pagination.html:77
240 #: templates/django_mailman3/profile/profile.html:71
223241 msgid "Update"
224 msgstr ""
225
226 #: templates/django_mailman3/profile/base.html:5
242 msgstr "Päivitä"
243
244 #: templates/django_mailman3/profile/base.html:6
227245 msgid "User Profile"
228 msgstr ""
229
230 #: templates/django_mailman3/profile/base.html:12
246 msgstr "Käyttäjäprofiili"
247
248 #: templates/django_mailman3/profile/base.html:13
231249 msgid "User profile"
232 msgstr ""
233
234 #: templates/django_mailman3/profile/base.html:12
250 msgstr "Käyttäjäprofiili"
251
252 #: templates/django_mailman3/profile/base.html:13
235253 msgid "for"
236254 msgstr ""
237255
238 #: templates/django_mailman3/profile/base.html:24
239 #: templates/django_mailman3/profile/base.html:25
256 #: templates/django_mailman3/profile/base.html:23
240257 msgid "E-mail Addresses"
241 msgstr ""
242
243 #: templates/django_mailman3/profile/base.html:29
258 msgstr "Sähköpostiosoitteet"
259
244260 #: templates/django_mailman3/profile/base.html:30
245261 msgid "Account Connections"
246 msgstr ""
247
248 #: templates/django_mailman3/profile/base.html:33
249 #: templates/django_mailman3/profile/base.html:34
250 #: templates/django_mailman3/profile/delete_profile.html:18
262 msgstr "Tiliyhteydet"
263
264 #: templates/django_mailman3/profile/base.html:35
265 #: templates/django_mailman3/profile/delete_profile.html:17
251266 msgid "Delete Account"
252 msgstr ""
253
254 #: templates/django_mailman3/profile/delete_profile.html:13
267 msgstr "Poista tili"
268
269 #: templates/django_mailman3/profile/delete_profile.html:12
255270 msgid ""
256271 "Are you sure you want to delete your account? This will remove your account "
257272 "along with all your subscriptions."
258273 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:18
274 "Haluatko varmasti poistaa tilisi? Tämä poistaa tilisi ja kaikki tilauksesi."
275
276 #: templates/django_mailman3/profile/profile.html:20
277 #: templates/django_mailman3/profile/profile.html:57
278 msgid "Edit on"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:28
282 msgid "Primary email:"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:34
286 msgid "Other emails:"
287 msgstr "Muut sähköpostiosoitteet:"
288
289 #: templates/django_mailman3/profile/profile.html:40
290 msgid "(no other email)"
291 msgstr "(ei muuta sähköpostiosoiteetta)"
292
293 #: templates/django_mailman3/profile/profile.html:45
294 msgid "Link another address"
295 msgstr ""
296
261297 #: templates/django_mailman3/profile/profile.html:53
262 msgid "Edit on"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:25
266 msgid "Primary email:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:31
270 msgid "Other emails:"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:37
274 msgid "(no other email)"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:42
278 msgid "Link another address"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:49
282298 msgid "Avatar:"
283299 msgstr ""
284300
285 #: templates/django_mailman3/profile/profile.html:58
301 #: templates/django_mailman3/profile/profile.html:63
286302 msgid "Joined on:"
287303 msgstr ""
288304
289 #: templates/django_mailman3/profile/profile.html:67
305 #: templates/django_mailman3/profile/profile.html:72
290306 msgid "cancel"
291 msgstr ""
307 msgstr "peruuta"
292308
293309 #: templates/openid/login.html:10
294310 msgid "OpenID Sign In"
330346
331347 #: templatetags/pagination.py:47
332348 msgid "Next"
333 msgstr ""
334
335 #: views/profile.py:73
349 msgstr "Seuraava"
350
351 #: views/profile.py:72
336352 msgid "The profile was successfully updated."
337 msgstr ""
338
339 #: views/profile.py:75
353 msgstr "Profiili päivitettiin onnistuneesti."
354
355 #: views/profile.py:74
340356 msgid "No change detected."
341 msgstr ""
342
343 #: views/profile.py:108
357 msgstr "Ei havaittu muutosta."
358
359 #: views/profile.py:110
344360 msgid "Successfully deleted account"
345 msgstr ""
361 msgstr "Tilin poistaminen onnistui"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2020-04-04 22:09+0000\n"
11 "Last-Translator: Frédéric Lehobey <weblate@proxience.com>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-15 11:27+0000\n"
11 "Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
1212 "Language-Team: French <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/fr/>\n"
1414 "Language: fr\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 "X-Generator: Weblate 4.0-dev\n"
19 "X-Generator: Weblate 4.6-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Un utilisateur de même nom existe déjà."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Compte"
3045
3146 #: templates/account/email.html:11
3247 msgid "The following e-mail addresses are associated with your account:"
33 msgstr "Les adresses e-mail suivantes sont associées à votre compte :"
48 msgstr "Les adresses courriel suivantes sont associées à votre compte :"
3449
3550 #: templates/account/email.html:25
3651 msgid "Verified"
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
6782 msgstr ""
68 "Vous n'avez actuellement aucune adresse e-mail de configurée. Vous devriez "
69 "vraiment ajouter une adresse e-mail afin de recevoir les notifications, "
83 "Vous n'avez actuellement aucune adresse courriel de configurée. Vous devriez "
84 "vraiment ajouter une adresse courriel afin de recevoir les notifications, "
7085 "réinitialiser votre mot de passe, etc."
7186
7287 #: templates/account/email.html:49
7388 msgid "Add E-mail Address"
74 msgstr "Ajouter une adresse e-mail"
89 msgstr "Ajouter une adresse courriel"
7590
7691 #: templates/account/email.html:55
7792 msgid "Add E-mail"
78 msgstr "Ajouter un e-mail"
93 msgstr "Ajouter un courriel"
7994
8095 #: templates/account/email.html:66
8196 msgid "Do you really want to remove the selected e-mail address?"
82 msgstr "Voulez vous vraiment supprimer l'adresse e-mail sélectionnée ?"
97 msgstr "Voulez vous vraiment supprimer l'adresse courriel sélectionnée ?"
8398
8499 #: templates/account/email_confirm.html:6
85100 #: templates/account/email_confirm.html:10
86101 msgid "Confirm E-mail Address"
87 msgstr "Confirmer l'adresse e-mail"
102 msgstr "Confirmer l'adresse courriel"
88103
89104 #: templates/account/email_confirm.html:16
90105 #, python-format
93108 "address for user %(user_display)s."
94109 msgstr ""
95110 "Veuillez confirmer que <a href=\"mailto:%(email)s\">%(email)s</a> est une "
96 "adresse e-mail pour l'utilisateur %(user_display)s."
111 "adresse courriel pour l'utilisateur %(user_display)s."
97112
98113 #: templates/account/email_confirm.html:20
99114 msgid "Confirm"
105120 "This e-mail confirmation link expired or is invalid. Please <a href="
106121 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
107122 msgstr ""
108 "Ce lien de confirmation d’adresse e-mail est invalide ou a expiré. Veuillez <"
109 "a href=\"%(email_url)s\"> émettre une nouvelle requête de confirmation d’"
110 "adresse e-mail</a>."
123 "Ce lien de confirmation d’adresse courriel est invalide ou a expiré. "
124 "Veuillez <a href=\"%(email_url)s\"> émettre une nouvelle requête de "
125 "confirmation d’adresse courriel</a>."
111126
112127 #: templates/account/login.html:7 templates/account/login.html:11
113128 #: templates/account/login.html:48
123138 "for a %(site_name)s account and sign in below:"
124139 msgstr ""
125140 "Veuillez vous connecter avec l’un\n"
126 "de vos compte d’application tierce existant. Ou, <a href=\"%(signup_url)s\""
127 ">créez</a>\n"
141 "de vos compte d’application tierce existant. Ou, <a href=\"%(signup_url)s"
142 "\">créez</a>\n"
128143 "un %(site_name)s compte et connectez-vous ci-dessous :"
129144
130145 #: templates/account/login.html:30
131 #: templates/django_mailman3/profile/profile.html:67
146 #: templates/django_mailman3/profile/profile.html:72
132147 msgid "or"
133148 msgstr "ou"
134149
152167
153168 #: templates/account/logout.html:10
154169 msgid "Are you sure you want to sign out?"
155 msgstr "Êtes-vous sur de vouloir vous déconnecter ?"
170 msgstr "Êtes-vous sûr·e de vouloir vous déconnecter ?"
156171
157172 #: templates/account/password_change.html:12
158173 #: templates/account/password_reset_from_key.html:6
159174 #: templates/account/password_reset_from_key.html:9
160175 #: templates/django_mailman3/profile/base.html:20
161 #: templates/django_mailman3/profile/base.html:21
162176 msgid "Change Password"
163177 msgstr "Changer le mot de passe"
164178
172186 "Forgotten your password? Enter your e-mail address below, and we'll send you "
173187 "an e-mail allowing you to reset it."
174188 msgstr ""
175 "Mot de passe oublié ? Entrez votre adresse e-mail ci-dessous et nous vous "
176 "enverrons un e-mail afin de le réinitialiser."
189 "Mot de passe oublié ? Entrez votre adresse courriel ci-dessous et nous vous "
190 "enverrons un courriel afin de le réinitialiser."
177191
178192 #: templates/account/password_reset.html:22
179193 msgid "Reset My Password"
197211 "a>."
198212 msgstr ""
199213 "Le lien de réinitialisation du mot de passe n’était pas valide, peut-être "
200 "parce qu’il a déjà été utilisé. Veuillez demander une <a href=\""
201 "%(passwd_reset_url)s\">nouvelle réinitialisation du mot de passe</a>."
214 "parce qu’il a déjà été utilisé. Veuillez demander une <a href="
215 "\"%(passwd_reset_url)s\">nouvelle réinitialisation du mot de passe</a>."
202216
203217 #: templates/account/password_reset_from_key.html:20
204218 msgid "change password"
229243 "Vous avez déjà un compte ? Alors veuillez <a href=\"%(login_url)s\">vous "
230244 "connecter </a>."
231245
232 #: templates/django_mailman3/paginator/pagination.html:41
246 #: templates/django_mailman3/paginator/pagination.html:43
233247 msgid "Jump to page:"
234248 msgstr "Aller à la page :"
235249
236 #: templates/django_mailman3/paginator/pagination.html:59
250 #: templates/django_mailman3/paginator/pagination.html:61
237251 msgid "Results per page:"
238 msgstr "Résultats par page :"
239
240 #: templates/django_mailman3/paginator/pagination.html:75
241 #: templates/django_mailman3/profile/profile.html:66
252 msgstr "Résultats par page :"
253
254 #: templates/django_mailman3/paginator/pagination.html:77
255 #: templates/django_mailman3/profile/profile.html:71
242256 msgid "Update"
243 msgstr "Mise à jour"
244
245 #: templates/django_mailman3/profile/base.html:5
257 msgstr "Mettre à jour"
258
259 #: templates/django_mailman3/profile/base.html:6
246260 msgid "User Profile"
247261 msgstr "Profil d'utilisateur"
248262
249 #: templates/django_mailman3/profile/base.html:12
263 #: templates/django_mailman3/profile/base.html:13
250264 msgid "User profile"
251265 msgstr "Profil d'utilisateur"
252266
253 #: templates/django_mailman3/profile/base.html:12
267 #: templates/django_mailman3/profile/base.html:13
254268 msgid "for"
255269 msgstr "pour"
256270
257 #: templates/django_mailman3/profile/base.html:24
258 #: templates/django_mailman3/profile/base.html:25
271 #: templates/django_mailman3/profile/base.html:23
259272 msgid "E-mail Addresses"
260 msgstr "Adresses e-mail"
261
262 #: templates/django_mailman3/profile/base.html:29
273 msgstr "Adresses courriel"
274
263275 #: templates/django_mailman3/profile/base.html:30
264276 msgid "Account Connections"
265277 msgstr "Connexions du compte"
266278
267 #: templates/django_mailman3/profile/base.html:33
268 #: templates/django_mailman3/profile/base.html:34
269 #: templates/django_mailman3/profile/delete_profile.html:18
279 #: templates/django_mailman3/profile/base.html:35
280 #: templates/django_mailman3/profile/delete_profile.html:17
270281 msgid "Delete Account"
271282 msgstr "Supprimer le compte"
272283
273 #: templates/django_mailman3/profile/delete_profile.html:13
284 #: templates/django_mailman3/profile/delete_profile.html:12
274285 msgid ""
275286 "Are you sure you want to delete your account? This will remove your account "
276287 "along with all your subscriptions."
277288 msgstr ""
278 "Êtes-vous sur de vouloir supprimer votre compte ? Cela supprimera votre "
289 "Êtes-vous sûr·e de vouloir supprimer votre compte ? Ceci supprimera votre "
279290 "compte et tous ses abonnements."
280291
281 #: templates/django_mailman3/profile/profile.html:18
282 #: templates/django_mailman3/profile/profile.html:53
292 #: templates/django_mailman3/profile/profile.html:20
293 #: templates/django_mailman3/profile/profile.html:57
283294 msgid "Edit on"
284295 msgstr "Édition activée"
285296
286 #: templates/django_mailman3/profile/profile.html:25
297 #: templates/django_mailman3/profile/profile.html:28
287298 msgid "Primary email:"
288 msgstr "Courriel principal :"
289
290 #: templates/django_mailman3/profile/profile.html:31
299 msgstr "Courriel principal :"
300
301 #: templates/django_mailman3/profile/profile.html:34
291302 msgid "Other emails:"
292303 msgstr "Autres courriels :"
293304
294 #: templates/django_mailman3/profile/profile.html:37
305 #: templates/django_mailman3/profile/profile.html:40
295306 msgid "(no other email)"
296307 msgstr "(aucun autre courriel)"
297308
298 #: templates/django_mailman3/profile/profile.html:42
309 #: templates/django_mailman3/profile/profile.html:45
299310 msgid "Link another address"
300311 msgstr "Lier une autre adresse"
301312
302 #: templates/django_mailman3/profile/profile.html:49
313 #: templates/django_mailman3/profile/profile.html:53
303314 msgid "Avatar:"
304315 msgstr "Avatar :"
305316
306 #: templates/django_mailman3/profile/profile.html:58
317 #: templates/django_mailman3/profile/profile.html:63
307318 msgid "Joined on:"
308319 msgstr "Inscrit le :"
309320
310 #: templates/django_mailman3/profile/profile.html:67
321 #: templates/django_mailman3/profile/profile.html:72
311322 msgid "cancel"
312323 msgstr "annuler"
313324
326337 #: templates/socialaccount/connections.html:42
327338 msgid ""
328339 "You currently have no social network accounts connected to this account."
329 msgstr "Vous n'avez actuellement aucun compte de réseau social lié à ce compte."
340 msgstr ""
341 "Vous n'avez actuellement aucun compte de réseau social lié à ce compte."
330342
331343 #: templates/socialaccount/connections.html:45
332344 msgid "Add a 3rd Party Account"
358370 msgid "Next"
359371 msgstr "Suivant"
360372
361 #: views/profile.py:73
373 #: views/profile.py:72
362374 msgid "The profile was successfully updated."
363375 msgstr "Le profil a bien été mis à jour."
364376
365 #: views/profile.py:75
377 #: views/profile.py:74
366378 msgid "No change detected."
367379 msgstr "Aucun changement détecté."
368380
369 #: views/profile.py:108
381 #: views/profile.py:110
370382 msgid "Successfully deleted account"
371383 msgstr "La compte a bien été supprimé"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
1919 "4);\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : "
1919 "(n > 2 && n < 20) ? 2 : 3;\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2019-12-26 08:21+0000\n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-07-25 22:24+0000\n"
1111 "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
1212 "Language-Team: Hebrew <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/he/>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 "X-Generator: Weblate 3.10\n"
19 "X-Generator: Weblate 4.7.2-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr "שם משתמש"
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr "שם פרטי"
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr "שם משפחה"
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr "אזור זמן"
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "כבר קיים משתמש עם שם המשתמש הזה."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "חשבון"
125140 "לקבלת חשבון אצל %(site_name)s ולהיכנס להלן:"
126141
127142 #: templates/account/login.html:30
128 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
129144 msgid "or"
130145 msgstr "או"
131146
155170 #: templates/account/password_reset_from_key.html:6
156171 #: templates/account/password_reset_from_key.html:9
157172 #: templates/django_mailman3/profile/base.html:20
158 #: templates/django_mailman3/profile/base.html:21
159173 msgid "Change Password"
160174 msgstr "החלפת ססמה"
161175
221235 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
222236 msgstr "כבר יש לך חשבון? אז נא <a href=\"%(login_url)s\">להיכנס</a>."
223237
224 #: templates/django_mailman3/paginator/pagination.html:41
238 #: templates/django_mailman3/paginator/pagination.html:43
225239 msgid "Jump to page:"
226240 msgstr "קפיצה לעמוד:"
227241
228 #: templates/django_mailman3/paginator/pagination.html:59
242 #: templates/django_mailman3/paginator/pagination.html:61
229243 msgid "Results per page:"
230244 msgstr "תוצאות לעמוד:"
231245
232 #: templates/django_mailman3/paginator/pagination.html:75
233 #: templates/django_mailman3/profile/profile.html:66
246 #: templates/django_mailman3/paginator/pagination.html:77
247 #: templates/django_mailman3/profile/profile.html:71
234248 msgid "Update"
235249 msgstr "עדכון"
236250
237 #: templates/django_mailman3/profile/base.html:5
251 #: templates/django_mailman3/profile/base.html:6
238252 msgid "User Profile"
239253 msgstr "פרופיל משתמש"
240254
241 #: templates/django_mailman3/profile/base.html:12
255 #: templates/django_mailman3/profile/base.html:13
242256 msgid "User profile"
243257 msgstr "פרופיל משתמש"
244258
245 #: templates/django_mailman3/profile/base.html:12
259 #: templates/django_mailman3/profile/base.html:13
246260 msgid "for"
247261 msgstr "למשך"
248262
249 #: templates/django_mailman3/profile/base.html:24
250 #: templates/django_mailman3/profile/base.html:25
263 #: templates/django_mailman3/profile/base.html:23
251264 msgid "E-mail Addresses"
252265 msgstr "כתובות דוא״ל"
253266
254 #: templates/django_mailman3/profile/base.html:29
255267 #: templates/django_mailman3/profile/base.html:30
256268 msgid "Account Connections"
257269 msgstr "חיבורים לחשבון"
258270
259 #: templates/django_mailman3/profile/base.html:33
260 #: templates/django_mailman3/profile/base.html:34
261 #: templates/django_mailman3/profile/delete_profile.html:18
271 #: templates/django_mailman3/profile/base.html:35
272 #: templates/django_mailman3/profile/delete_profile.html:17
262273 msgid "Delete Account"
263274 msgstr "מחיקת חשבון"
264275
265 #: templates/django_mailman3/profile/delete_profile.html:13
276 #: templates/django_mailman3/profile/delete_profile.html:12
266277 msgid ""
267278 "Are you sure you want to delete your account? This will remove your account "
268279 "along with all your subscriptions."
269280 msgstr ""
270281 "למחוק את החשבון שלך? פעולה זו תסיר את החשבון שלך יחד עם כל המינויים שלך."
271282
272 #: templates/django_mailman3/profile/profile.html:18
273 #: templates/django_mailman3/profile/profile.html:53
283 #: templates/django_mailman3/profile/profile.html:20
284 #: templates/django_mailman3/profile/profile.html:57
274285 msgid "Edit on"
275286 msgstr "עריכה תחת"
276287
277 #: templates/django_mailman3/profile/profile.html:25
288 #: templates/django_mailman3/profile/profile.html:28
278289 msgid "Primary email:"
279290 msgstr "כתובת דוא״ל עיקרית:"
280291
281 #: templates/django_mailman3/profile/profile.html:31
292 #: templates/django_mailman3/profile/profile.html:34
282293 msgid "Other emails:"
283294 msgstr "כתובת דוא״ל אחרות:"
284295
285 #: templates/django_mailman3/profile/profile.html:37
296 #: templates/django_mailman3/profile/profile.html:40
286297 msgid "(no other email)"
287298 msgstr "(אין כתובות דוא״ל אחרות)"
288299
289 #: templates/django_mailman3/profile/profile.html:42
300 #: templates/django_mailman3/profile/profile.html:45
290301 msgid "Link another address"
291302 msgstr "קישור כתובת נוספת"
292303
293 #: templates/django_mailman3/profile/profile.html:49
304 #: templates/django_mailman3/profile/profile.html:53
294305 msgid "Avatar:"
295306 msgstr "תמונת משתמש:"
296307
297 #: templates/django_mailman3/profile/profile.html:58
308 #: templates/django_mailman3/profile/profile.html:63
298309 msgid "Joined on:"
299310 msgstr "מועד ההצטרפות:"
300311
301 #: templates/django_mailman3/profile/profile.html:67
312 #: templates/django_mailman3/profile/profile.html:72
302313 msgid "cancel"
303314 msgstr "ביטול"
304315
346357 msgid "Next"
347358 msgstr "הבא"
348359
349 #: views/profile.py:73
360 #: views/profile.py:72
350361 msgid "The profile was successfully updated."
351362 msgstr "הפרופיל עודכן בהצלחה."
352363
353 #: views/profile.py:75
364 #: views/profile.py:74
354365 msgid "No change detected."
355366 msgstr "לא התגלה אף שינוי."
356367
357 #: views/profile.py:108
368 #: views/profile.py:110
358369 msgid "Successfully deleted account"
359370 msgstr "החשבון נמחק בהצלחה"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-02-18 19:33+0000\n"
1111 "Last-Translator: Milo Ivir <mail@milotype.de>\n"
1212 "Language-Team: Croatian <https://hosted.weblate.org/projects/gnu-mailman/"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
19 "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
2020 "X-Generator: Weblate 3.11\n"
21
22 #: forms.py:32
23 msgid "Username"
24 msgstr ""
25
26 #: forms.py:33
27 msgid "First name"
28 msgstr ""
29
30 #: forms.py:34
31 msgid "Last name"
32 msgstr ""
33
34 #: forms.py:36
35 msgid "Time zone"
36 msgstr ""
2137
2238 #: forms.py:43
2339 msgid "A user with that username already exists."
2440 msgstr "Korisnik s tim korisničkim imenom već postoji."
2541
2642 #: templates/account/email.html:6
27 #: templates/django_mailman3/profile/base.html:16
2843 #: templates/django_mailman3/profile/base.html:17
2944 msgid "Account"
3045 msgstr "Račun"
105120 "This e-mail confirmation link expired or is invalid. Please <a href="
106121 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
107122 msgstr ""
108 "Ova poveznica za potvrdu e-pošte istekla je ili je nevažeća. <a href=\""
109 "%(email_url)s\">Pošalji novi zahtjev za potvrdu e-pošte </a>."
123 "Ova poveznica za potvrdu e-pošte istekla je ili je nevažeća. <a href="
124 "\"%(email_url)s\">Pošalji novi zahtjev za potvrdu e-pošte </a>."
110125
111126 #: templates/account/login.html:7 templates/account/login.html:11
112127 #: templates/account/login.html:48
122137 "for a %(site_name)s account and sign in below:"
123138 msgstr ""
124139 "Prijavi se s jednim\n"
125 "od postojećih računa trećih strana. Ili se <a href=\"%(signup_url)s\""
126 ">registriraj</a>\n"
140 "od postojećih računa trećih strana. Ili se <a href=\"%(signup_url)s"
141 "\">registriraj</a>\n"
127142 "na %(site_name)s i dolje se prijavi:"
128143
129144 #: templates/account/login.html:30
130 #: templates/django_mailman3/profile/profile.html:67
145 #: templates/django_mailman3/profile/profile.html:72
131146 msgid "or"
132147 msgstr "ili"
133148
157172 #: templates/account/password_reset_from_key.html:6
158173 #: templates/account/password_reset_from_key.html:9
159174 #: templates/django_mailman3/profile/base.html:20
160 #: templates/django_mailman3/profile/base.html:21
161175 msgid "Change Password"
162176 msgstr "Promijeni lozinku"
163177
225239 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
226240 msgstr "Već imaš račun? Onda se <a href=\"%(login_url)s\"> prijavi </a>."
227241
228 #: templates/django_mailman3/paginator/pagination.html:41
242 #: templates/django_mailman3/paginator/pagination.html:43
229243 msgid "Jump to page:"
230244 msgstr "Skoči na stranicu:"
231245
232 #: templates/django_mailman3/paginator/pagination.html:59
246 #: templates/django_mailman3/paginator/pagination.html:61
233247 msgid "Results per page:"
234248 msgstr "Broj rezultata po stranici:"
235249
236 #: templates/django_mailman3/paginator/pagination.html:75
237 #: templates/django_mailman3/profile/profile.html:66
250 #: templates/django_mailman3/paginator/pagination.html:77
251 #: templates/django_mailman3/profile/profile.html:71
238252 msgid "Update"
239253 msgstr "Aktualiziraj"
240254
241 #: templates/django_mailman3/profile/base.html:5
255 #: templates/django_mailman3/profile/base.html:6
242256 msgid "User Profile"
243257 msgstr "Korisnički profil"
244258
245 #: templates/django_mailman3/profile/base.html:12
259 #: templates/django_mailman3/profile/base.html:13
246260 msgid "User profile"
247261 msgstr "Korisnički profil"
248262
249 #: templates/django_mailman3/profile/base.html:12
263 #: templates/django_mailman3/profile/base.html:13
250264 msgid "for"
251265 msgstr "za"
252266
253 #: templates/django_mailman3/profile/base.html:24
254 #: templates/django_mailman3/profile/base.html:25
267 #: templates/django_mailman3/profile/base.html:23
255268 msgid "E-mail Addresses"
256269 msgstr "E-mail adresa"
257270
258 #: templates/django_mailman3/profile/base.html:29
259271 #: templates/django_mailman3/profile/base.html:30
260272 msgid "Account Connections"
261273 msgstr "Veze računa"
262274
263 #: templates/django_mailman3/profile/base.html:33
264 #: templates/django_mailman3/profile/base.html:34
265 #: templates/django_mailman3/profile/delete_profile.html:18
275 #: templates/django_mailman3/profile/base.html:35
276 #: templates/django_mailman3/profile/delete_profile.html:17
266277 msgid "Delete Account"
267278 msgstr "Izbriši račun"
268279
269 #: templates/django_mailman3/profile/delete_profile.html:13
280 #: templates/django_mailman3/profile/delete_profile.html:12
270281 msgid ""
271282 "Are you sure you want to delete your account? This will remove your account "
272283 "along with all your subscriptions."
274285 "Sigurno želiš izbrisati svoj račun? Time će se ukloniti tvoj račun zajedno "
275286 "sa svim pretplatama."
276287
277 #: templates/django_mailman3/profile/profile.html:18
278 #: templates/django_mailman3/profile/profile.html:53
288 #: templates/django_mailman3/profile/profile.html:20
289 #: templates/django_mailman3/profile/profile.html:57
279290 msgid "Edit on"
280291 msgstr "Uredi na"
281292
282 #: templates/django_mailman3/profile/profile.html:25
293 #: templates/django_mailman3/profile/profile.html:28
283294 msgid "Primary email:"
284295 msgstr "Primarna e-adresa:"
285296
286 #: templates/django_mailman3/profile/profile.html:31
297 #: templates/django_mailman3/profile/profile.html:34
287298 msgid "Other emails:"
288299 msgstr "Ostale e-adrese:"
289300
290 #: templates/django_mailman3/profile/profile.html:37
301 #: templates/django_mailman3/profile/profile.html:40
291302 msgid "(no other email)"
292303 msgstr "(nema druge e-adrese)"
293304
294 #: templates/django_mailman3/profile/profile.html:42
305 #: templates/django_mailman3/profile/profile.html:45
295306 msgid "Link another address"
296307 msgstr "Poveži drugu adresu"
297308
298 #: templates/django_mailman3/profile/profile.html:49
309 #: templates/django_mailman3/profile/profile.html:53
299310 msgid "Avatar:"
300311 msgstr "Avatar:"
301312
302 #: templates/django_mailman3/profile/profile.html:58
313 #: templates/django_mailman3/profile/profile.html:63
303314 msgid "Joined on:"
304315 msgstr "Pridružio/la se:"
305316
306 #: templates/django_mailman3/profile/profile.html:67
317 #: templates/django_mailman3/profile/profile.html:72
307318 msgid "cancel"
308319 msgstr "odustani"
309320
353364 msgid "Next"
354365 msgstr "Sljedeće"
355366
356 #: views/profile.py:73
367 #: views/profile.py:72
357368 msgid "The profile was successfully updated."
358369 msgstr "Profil je uspješno aktualiziran."
359370
360 #: views/profile.py:75
371 #: views/profile.py:74
361372 msgid "No change detected."
362373 msgstr "Nijedna promjena nije otkrivena."
363374
364 #: views/profile.py:108
375 #: views/profile.py:110
365376 msgid "Successfully deleted account"
366377 msgstr "Račun je uspješno izbrisan"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2021-01-12 15:32+0000\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-02-12 10:50+0000\n"
1111 "Last-Translator: Peter Donka <peter.donka@gmail.com>\n"
1212 "Language-Team: Hungarian <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/hu/>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.4.1-dev\n"
19 "X-Generator: Weblate 4.5-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Már létezik egy felhasználó evvel a felhasználónévvel."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Fiók"
125140 "a %(site_name)s listára és lépjen be lejjebb:"
126141
127142 #: templates/account/login.html:30
128 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
129144 msgid "or"
130145 msgstr "vagy"
131146
155170 #: templates/account/password_reset_from_key.html:6
156171 #: templates/account/password_reset_from_key.html:9
157172 #: templates/django_mailman3/profile/base.html:20
158 #: templates/django_mailman3/profile/base.html:21
159173 msgid "Change Password"
160174 msgstr "Jelszó módosítása"
161175
178192
179193 #: templates/account/password_reset.html:27
180194 msgid "Please contact us if you have any trouble resetting your password."
181 msgstr "Keressen meg minket amennyiben nem sikerül visszaállítania a jelszavát."
195 msgstr ""
196 "Keressen meg minket amennyiben nem sikerül visszaállítania a jelszavát."
182197
183198 #: templates/account/password_reset_from_key.html:9
184199 msgid "Bad Token"
192207 "a>."
193208 msgstr ""
194209 "A jelszó visszaállító hivatkozás érvénytelen, valószínűleg mert már "
195 "használva volt. Kérjen egy új <a href=\"%(passwd_reset_url)s\""
196 ">jelszóvisszaállítást</a>."
210 "használva volt. Kérjen egy új <a href=\"%(passwd_reset_url)s"
211 "\">jelszóvisszaállítást</a>."
197212
198213 #: templates/account/password_reset_from_key.html:20
199214 msgid "change password"
222237 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
223238 msgstr "Már van fiókja? Akkor <a href=\"%(login_url)s\">jelentkezzen be</a>."
224239
225 #: templates/django_mailman3/paginator/pagination.html:41
240 #: templates/django_mailman3/paginator/pagination.html:43
226241 msgid "Jump to page:"
227242 msgstr "Ugrás az oldalra:"
228243
229 #: templates/django_mailman3/paginator/pagination.html:59
244 #: templates/django_mailman3/paginator/pagination.html:61
230245 msgid "Results per page:"
231246 msgstr "Találatok az oldalon:"
232247
233 #: templates/django_mailman3/paginator/pagination.html:75
234 #: templates/django_mailman3/profile/profile.html:66
248 #: templates/django_mailman3/paginator/pagination.html:77
249 #: templates/django_mailman3/profile/profile.html:71
235250 msgid "Update"
236251 msgstr "Frissítés"
237252
238 #: templates/django_mailman3/profile/base.html:5
253 #: templates/django_mailman3/profile/base.html:6
239254 msgid "User Profile"
240255 msgstr "Felhasználóprofil"
241256
242 #: templates/django_mailman3/profile/base.html:12
257 #: templates/django_mailman3/profile/base.html:13
243258 msgid "User profile"
244259 msgstr "Felhasználóprofil"
245260
246 #: templates/django_mailman3/profile/base.html:12
261 #: templates/django_mailman3/profile/base.html:13
247262 msgid "for"
248 msgstr "-ért"
249
250 #: templates/django_mailman3/profile/base.html:24
251 #: templates/django_mailman3/profile/base.html:25
263 msgstr "a következőnek"
264
265 #: templates/django_mailman3/profile/base.html:23
252266 msgid "E-mail Addresses"
253267 msgstr "E-mail cím"
254268
255 #: templates/django_mailman3/profile/base.html:29
256269 #: templates/django_mailman3/profile/base.html:30
257270 msgid "Account Connections"
258271 msgstr "Fiókkapcsolatok"
259272
260 #: templates/django_mailman3/profile/base.html:33
261 #: templates/django_mailman3/profile/base.html:34
262 #: templates/django_mailman3/profile/delete_profile.html:18
273 #: templates/django_mailman3/profile/base.html:35
274 #: templates/django_mailman3/profile/delete_profile.html:17
263275 msgid "Delete Account"
264276 msgstr "Fiók törlése"
265277
266 #: templates/django_mailman3/profile/delete_profile.html:13
278 #: templates/django_mailman3/profile/delete_profile.html:12
267279 msgid ""
268280 "Are you sure you want to delete your account? This will remove your account "
269281 "along with all your subscriptions."
271283 "Biztos benne, hogy törli a fiókját? Evvel törli a fiókot és az összes "
272284 "feliratkozását."
273285
274 #: templates/django_mailman3/profile/profile.html:18
275 #: templates/django_mailman3/profile/profile.html:53
286 #: templates/django_mailman3/profile/profile.html:20
287 #: templates/django_mailman3/profile/profile.html:57
276288 msgid "Edit on"
277289 msgstr "Szerkesztés"
278290
279 #: templates/django_mailman3/profile/profile.html:25
291 #: templates/django_mailman3/profile/profile.html:28
280292 msgid "Primary email:"
281293 msgstr "Elsődleges e-mail:"
282294
283 #: templates/django_mailman3/profile/profile.html:31
295 #: templates/django_mailman3/profile/profile.html:34
284296 msgid "Other emails:"
285297 msgstr "Más e-mail:"
286298
287 #: templates/django_mailman3/profile/profile.html:37
299 #: templates/django_mailman3/profile/profile.html:40
288300 msgid "(no other email)"
289301 msgstr "(nincs más e-mail)"
290302
291 #: templates/django_mailman3/profile/profile.html:42
303 #: templates/django_mailman3/profile/profile.html:45
292304 msgid "Link another address"
293305 msgstr "Más cím kapcsolása"
294306
295 #: templates/django_mailman3/profile/profile.html:49
307 #: templates/django_mailman3/profile/profile.html:53
296308 msgid "Avatar:"
297309 msgstr "Avatar:"
298310
299 #: templates/django_mailman3/profile/profile.html:58
311 #: templates/django_mailman3/profile/profile.html:63
300312 msgid "Joined on:"
301313 msgstr "Csatlakozva:"
302314
303 #: templates/django_mailman3/profile/profile.html:67
315 #: templates/django_mailman3/profile/profile.html:72
304316 msgid "cancel"
305317 msgstr "mégsem"
306318
350362 msgid "Next"
351363 msgstr "Következő"
352364
353 #: views/profile.py:73
365 #: views/profile.py:72
354366 msgid "The profile was successfully updated."
355367 msgstr "A profil sikeresen frissítve."
356368
357 #: views/profile.py:75
369 #: views/profile.py:74
358370 msgid "No change detected."
359371 msgstr "Nem találtunk változást."
360372
361 #: views/profile.py:108
373 #: views/profile.py:110
362374 msgid "Successfully deleted account"
363375 msgstr "A fiók sikeresen törölve"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 #, fuzzy
65 msgid ""
76 msgstr ""
87 "Project-Id-Version: PACKAGE VERSION\n"
98 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-06-12 00:44+0000\n"
11 "Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
12 "Language-Team: Indonesian <https://hosted.weblate.org/projects/gnu-mailman/"
13 "django-mailman3/id/>\n"
14 "Language: id\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
1936
2037 #: forms.py:43
2138 msgid "A user with that username already exists."
2239 msgstr ""
2340
2441 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2642 #: templates/django_mailman3/profile/base.html:17
2743 msgid "Account"
28 msgstr ""
44 msgstr "Akun"
2945
3046 #: templates/account/email.html:11
3147 msgid "The following e-mail addresses are associated with your account:"
103119 #: templates/account/login.html:7 templates/account/login.html:11
104120 #: templates/account/login.html:48
105121 msgid "Sign In"
106 msgstr ""
122 msgstr "Masuk"
107123
108124 #: templates/account/login.html:18
109125 #, python-format
115131 msgstr ""
116132
117133 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
119135 msgid "or"
120136 msgstr ""
121137
143159 #: templates/account/password_reset_from_key.html:6
144160 #: templates/account/password_reset_from_key.html:9
145161 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147162 msgid "Change Password"
148163 msgstr ""
149164
197212 #: templates/account/signup.html:9 templates/account/signup.html:20
198213 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
199214 msgid "Sign Up"
200 msgstr ""
215 msgstr "Daftar"
201216
202217 #: templates/account/signup.html:11
203218 #, python-format
205220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206221 msgstr ""
207222
208 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
209224 msgid "Jump to page:"
210225 msgstr ""
211226
212 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
213228 msgid "Results per page:"
214229 msgstr ""
215230
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
218233 msgid "Update"
219234 msgstr ""
220235
221 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
222237 msgid "User Profile"
223238 msgstr ""
224239
225 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
226241 msgid "User profile"
227242 msgstr ""
228243
229 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
230245 msgid "for"
231246 msgstr ""
232247
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
235249 msgid "E-mail Addresses"
236250 msgstr ""
237251
238 #: templates/django_mailman3/profile/base.html:29
239252 #: templates/django_mailman3/profile/base.html:30
240253 msgid "Account Connections"
241254 msgstr ""
242255
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
246258 msgid "Delete Account"
247259 msgstr ""
248260
249 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
250262 msgid ""
251263 "Are you sure you want to delete your account? This will remove your account "
252264 "along with all your subscriptions."
253265 msgstr ""
254266
255 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
256288 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277289 msgid "Avatar:"
278290 msgstr ""
279291
280 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
281293 msgid "Joined on:"
282294 msgstr ""
283295
284 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
285297 msgid "cancel"
286298 msgstr ""
287299
327339 msgid "Next"
328340 msgstr ""
329341
330 #: views/profile.py:73
342 #: views/profile.py:72
331343 msgid "The profile was successfully updated."
332344 msgstr ""
333345
334 #: views/profile.py:75
346 #: views/profile.py:74
335347 msgid "No change detected."
336348 msgstr ""
337349
338 #: views/profile.py:108
350 #: views/profile.py:110
339351 msgid "Successfully deleted account"
340352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2020-08-16 03:46+0000\n"
11 "Last-Translator: Massimo Zappalà <maszap@tin.it>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-15 11:27+0000\n"
11 "Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
1212 "Language-Team: Italian <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/it/>\n"
1414 "Language: it\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.2-dev\n"
19 "X-Generator: Weblate 4.6-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Un utente con questo nome esiste già."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Account"
104119 "This e-mail confirmation link expired or is invalid. Please <a href="
105120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
106121 msgstr ""
107 "Questo link di conferma non è più valido o è sbagliato. <a href=\""
108 "%(email_url)s\">Spedisci una nuova e-mail di richiesta validazione</a>."
122 "Questo collegamento di conferma non è più valido o è sbagliato. <a href="
123 "\"%(email_url)s\">Spedisci una nuova e-mail di richiesta validazione</a>."
109124
110125 #: templates/account/login.html:7 templates/account/login.html:11
111126 #: templates/account/login.html:48
125140 "al sito %(site_name)s ed accedi più in basso:"
126141
127142 #: templates/account/login.html:30
128 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
129144 msgid "or"
130145 msgstr "o"
131146
149164
150165 #: templates/account/logout.html:10
151166 msgid "Are you sure you want to sign out?"
152 msgstr "Sicuro di uscire?"
167 msgstr "Sei sicuro/a di uscire?"
153168
154169 #: templates/account/password_change.html:12
155170 #: templates/account/password_reset_from_key.html:6
156171 #: templates/account/password_reset_from_key.html:9
157172 #: templates/django_mailman3/profile/base.html:20
158 #: templates/django_mailman3/profile/base.html:21
159173 msgid "Change Password"
160174 msgstr "Cambia password"
161175
192206 "a>."
193207 msgstr ""
194208 "Il collegamento alla reimpostazione password non è valido, probabilmente "
195 "perché è già stato usato. Richiedi una <a href=\"%(passwd_reset_url)s\""
196 ">nuova reimpostazione password</a>."
209 "perché è già stato usato. Richiedi una <a href=\"%(passwd_reset_url)s"
210 "\">nuova reimpostazione password</a>."
197211
198212 #: templates/account/password_reset_from_key.html:20
199213 msgid "change password"
222236 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
223237 msgstr "Hai già un account? Clicca per <a href=\"%(login_url)s\">accedere</a>."
224238
225 #: templates/django_mailman3/paginator/pagination.html:41
239 #: templates/django_mailman3/paginator/pagination.html:43
226240 msgid "Jump to page:"
227241 msgstr "Salta alla pagina:"
228242
229 #: templates/django_mailman3/paginator/pagination.html:59
243 #: templates/django_mailman3/paginator/pagination.html:61
230244 msgid "Results per page:"
231245 msgstr "Risultati per pagina:"
232246
233 #: templates/django_mailman3/paginator/pagination.html:75
234 #: templates/django_mailman3/profile/profile.html:66
247 #: templates/django_mailman3/paginator/pagination.html:77
248 #: templates/django_mailman3/profile/profile.html:71
235249 msgid "Update"
236250 msgstr "Aggiorna"
237251
238 #: templates/django_mailman3/profile/base.html:5
252 #: templates/django_mailman3/profile/base.html:6
239253 msgid "User Profile"
240254 msgstr "Profilo utente"
241255
242 #: templates/django_mailman3/profile/base.html:12
256 #: templates/django_mailman3/profile/base.html:13
243257 msgid "User profile"
244258 msgstr "Profilo utente"
245259
246 #: templates/django_mailman3/profile/base.html:12
260 #: templates/django_mailman3/profile/base.html:13
247261 msgid "for"
248262 msgstr "di"
249263
250 #: templates/django_mailman3/profile/base.html:24
251 #: templates/django_mailman3/profile/base.html:25
264 #: templates/django_mailman3/profile/base.html:23
252265 msgid "E-mail Addresses"
253266 msgstr "Indirizzo e-mail"
254267
255 #: templates/django_mailman3/profile/base.html:29
256268 #: templates/django_mailman3/profile/base.html:30
257269 msgid "Account Connections"
258270 msgstr "Connessioni ad altri account"
259271
260 #: templates/django_mailman3/profile/base.html:33
261 #: templates/django_mailman3/profile/base.html:34
262 #: templates/django_mailman3/profile/delete_profile.html:18
272 #: templates/django_mailman3/profile/base.html:35
273 #: templates/django_mailman3/profile/delete_profile.html:17
263274 msgid "Delete Account"
264275 msgstr "Elimina account"
265276
266 #: templates/django_mailman3/profile/delete_profile.html:13
277 #: templates/django_mailman3/profile/delete_profile.html:12
267278 msgid ""
268279 "Are you sure you want to delete your account? This will remove your account "
269280 "along with all your subscriptions."
270281 msgstr ""
271 "Sei sicuro di eliminare il tuo account? Eliminerai l'account e tutte le tue "
272 "iscrizioni."
273
274 #: templates/django_mailman3/profile/profile.html:18
275 #: templates/django_mailman3/profile/profile.html:53
282 "Sei sicuro/a di eliminare il tuo account? Eliminerai l'account e tutte le "
283 "tue iscrizioni."
284
285 #: templates/django_mailman3/profile/profile.html:20
286 #: templates/django_mailman3/profile/profile.html:57
276287 msgid "Edit on"
277288 msgstr "Modifiche a"
278289
279 #: templates/django_mailman3/profile/profile.html:25
290 #: templates/django_mailman3/profile/profile.html:28
280291 msgid "Primary email:"
281292 msgstr "E-mail principale:"
282293
283 #: templates/django_mailman3/profile/profile.html:31
294 #: templates/django_mailman3/profile/profile.html:34
284295 msgid "Other emails:"
285296 msgstr "Altre e-mail:"
286297
287 #: templates/django_mailman3/profile/profile.html:37
298 #: templates/django_mailman3/profile/profile.html:40
288299 msgid "(no other email)"
289300 msgstr "(altre e-mail non presenti)"
290301
291 #: templates/django_mailman3/profile/profile.html:42
302 #: templates/django_mailman3/profile/profile.html:45
292303 msgid "Link another address"
293304 msgstr "Collega altri indirizzi"
294305
295 #: templates/django_mailman3/profile/profile.html:49
306 #: templates/django_mailman3/profile/profile.html:53
296307 msgid "Avatar:"
297308 msgstr "Avatar:"
298309
299 #: templates/django_mailman3/profile/profile.html:58
310 #: templates/django_mailman3/profile/profile.html:63
300311 msgid "Joined on:"
301312 msgstr "Associato il:"
302313
303 #: templates/django_mailman3/profile/profile.html:67
314 #: templates/django_mailman3/profile/profile.html:72
304315 msgid "cancel"
305316 msgstr "annulla"
306317
352363 msgid "Next"
353364 msgstr "Successivo"
354365
355 #: views/profile.py:73
366 #: views/profile.py:72
356367 msgid "The profile was successfully updated."
357368 msgstr "Il profilo è stato aggiornato con successo."
358369
359 #: views/profile.py:75
370 #: views/profile.py:74
360371 msgid "No change detected."
361372 msgstr "Non sono stati trovati cambiamenti."
362373
363 #: views/profile.py:108
374 #: views/profile.py:110
364375 msgid "Successfully deleted account"
365376 msgstr "Account eliminato con successo"
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "PO-Revision-Date: 2020-09-24 02:39+0000\n"
11 "Last-Translator: Shuuji TAKAHASHI (shuuji3) <shuuji3@gmail.com>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-07-07 15:32+0000\n"
11 "Last-Translator: Shohei Kusakata <shohei@kusakata.com>\n"
1212 "Language-Team: Japanese <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/ja/>\n"
1414 "Language: ja\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
19 "X-Generator: Weblate 4.3-dev\n"
19 "X-Generator: Weblate 4.8-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "そのユーザー名のユーザーはすでに存在します。"
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "アカウント"
6479 msgid ""
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
67 msgstr "現在、セットアップ済みのメールアドレスがありません。通知の受信やパスワードのリセットなどを行うには、メールアドレスを追加する必要があります。"
82 msgstr ""
83 "現在、セットアップ済みのメールアドレスがありません。通知の受信やパスワードの"
84 "リセットなどを行うには、メールアドレスを追加する必要があります。"
6885
6986 #: templates/account/email.html:49
7087 msgid "Add E-mail Address"
89106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
90107 "address for user %(user_display)s."
91108 msgstr ""
92 "<a href=\"mailto:%(email)s\">%(email)s</a> がユーザー %(user_display)s "
93 "のメールアドレスであることを確認してください。"
109 "<a href=\"mailto:%(email)s\">%(email)s</a> がユーザー %(user_display)s のメー"
110 "ルアドレスであることを確認してください。"
94111
95112 #: templates/account/email_confirm.html:20
96113 msgid "Confirm"
102119 "This e-mail confirmation link expired or is invalid. Please <a href="
103120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
104121 msgstr ""
105 "このメールの確認リンクは期限切れまたは無効です。<a href=\"%(email_url)s\""
106 ">新しいメールの確認リクエストを発行</a>してください。"
122 "このメールの確認リンクは期限切れまたは無効です。<a href=\"%(email_url)s\">新"
123 "しいメールの確認リクエストを発行</a>してください。"
107124
108125 #: templates/account/login.html:7 templates/account/login.html:11
109126 #: templates/account/login.html:48
118135 "up</a>\n"
119136 "for a %(site_name)s account and sign in below:"
120137 msgstr ""
121 "既存のサードパーティアカウントの1つでサインインしてください。または、%(site_name)s のアカウントの<a href=\""
122 "%(signup_url)s\">登録</a>を行い、以下からサインインしてください。"
138 "既存のサードパーティアカウントの1つでサインインしてください。また"
139 "は、%(site_name)s のアカウントの<a href=\"%(signup_url)s\">登録</a>を行い、以"
140 "下からサインインしてください。"
123141
124142 #: templates/account/login.html:30
125 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
126144 msgid "or"
127145 msgstr "または"
128146
131149 msgid ""
132150 "If you have not created an account yet, then please\n"
133151 "<a href=\"%(signup_url)s\">sign up</a> first."
134 msgstr "まだアカウントを作成していない場合は、はじめに<a href=\"%(signup_url)s\">登録</a>を行ってください。"
152 msgstr ""
153 "まだアカウントを作成していない場合は、はじめに<a href=\"%(signup_url)s\">登録"
154 "</a>を行ってください。"
135155
136156 #: templates/account/login.html:50
137157 msgid "Forgot Password?"
150170 #: templates/account/password_reset_from_key.html:6
151171 #: templates/account/password_reset_from_key.html:9
152172 #: templates/django_mailman3/profile/base.html:20
153 #: templates/django_mailman3/profile/base.html:21
154173 msgid "Change Password"
155174 msgstr "パスワードの変更"
156175
163182 msgid ""
164183 "Forgotten your password? Enter your e-mail address below, and we'll send you "
165184 "an e-mail allowing you to reset it."
166 msgstr "パスワードを忘れましたか? 以下にメールアドレスを入力すると、パスワードをリセットするためのメールを送信します。"
185 msgstr ""
186 "パスワードを忘れましたか? 以下にメールアドレスを入力すると、パスワードをリ"
187 "セットするためのメールを送信します。"
167188
168189 #: templates/account/password_reset.html:22
169190 msgid "Reset My Password"
184205 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
185206 "a>."
186207 msgstr ""
187 "パスワードリセットのリンクが無効です。すでに使用済みである可能性があります。<a href=\"%(passwd_reset_url)s\""
188 ">新しいパスワードリセット</a>をリクエストしてください。"
208 "パスワードリセットのリンクが無効です。すでに使用済みである可能性があります。"
209 "<a href=\"%(passwd_reset_url)s\">新しいパスワードリセット</a>をリクエストして"
210 "ください。"
189211
190212 #: templates/account/password_reset_from_key.html:20
191213 msgid "change password"
213235 msgid ""
214236 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
215237 msgstr ""
216
217 #: templates/django_mailman3/paginator/pagination.html:41
238 "既にアカウントを持っていますか?その場合は<a href=\"%(login_url)s\">サインイ"
239 "ン</a>してください。"
240
241 #: templates/django_mailman3/paginator/pagination.html:43
218242 msgid "Jump to page:"
219 msgstr ""
220
221 #: templates/django_mailman3/paginator/pagination.html:59
243 msgstr "ページに飛ぶ:"
244
245 #: templates/django_mailman3/paginator/pagination.html:61
222246 msgid "Results per page:"
223 msgstr ""
224
225 #: templates/django_mailman3/paginator/pagination.html:75
226 #: templates/django_mailman3/profile/profile.html:66
247 msgstr "1ページに表示する結果:"
248
249 #: templates/django_mailman3/paginator/pagination.html:77
250 #: templates/django_mailman3/profile/profile.html:71
227251 msgid "Update"
228252 msgstr ""
229253
230 #: templates/django_mailman3/profile/base.html:5
254 #: templates/django_mailman3/profile/base.html:6
231255 msgid "User Profile"
232256 msgstr "ユーザープロフィール"
233257
234 #: templates/django_mailman3/profile/base.html:12
258 #: templates/django_mailman3/profile/base.html:13
235259 msgid "User profile"
236260 msgstr "ユーザープロフィール"
237261
238 #: templates/django_mailman3/profile/base.html:12
262 #: templates/django_mailman3/profile/base.html:13
239263 msgid "for"
240264 msgstr ""
241265
242 #: templates/django_mailman3/profile/base.html:24
243 #: templates/django_mailman3/profile/base.html:25
266 #: templates/django_mailman3/profile/base.html:23
244267 msgid "E-mail Addresses"
245 msgstr ""
246
247 #: templates/django_mailman3/profile/base.html:29
268 msgstr "メールアドレス"
269
248270 #: templates/django_mailman3/profile/base.html:30
249271 msgid "Account Connections"
250 msgstr ""
251
252 #: templates/django_mailman3/profile/base.html:33
253 #: templates/django_mailman3/profile/base.html:34
254 #: templates/django_mailman3/profile/delete_profile.html:18
272 msgstr "アカウント接続"
273
274 #: templates/django_mailman3/profile/base.html:35
275 #: templates/django_mailman3/profile/delete_profile.html:17
255276 msgid "Delete Account"
256 msgstr ""
257
258 #: templates/django_mailman3/profile/delete_profile.html:13
277 msgstr "アカウント削除"
278
279 #: templates/django_mailman3/profile/delete_profile.html:12
259280 msgid ""
260281 "Are you sure you want to delete your account? This will remove your account "
261282 "along with all your subscriptions."
262283 msgstr ""
263284
264 #: templates/django_mailman3/profile/profile.html:18
285 #: templates/django_mailman3/profile/profile.html:20
286 #: templates/django_mailman3/profile/profile.html:57
287 msgid "Edit on"
288 msgstr ""
289
290 #: templates/django_mailman3/profile/profile.html:28
291 msgid "Primary email:"
292 msgstr ""
293
294 #: templates/django_mailman3/profile/profile.html:34
295 msgid "Other emails:"
296 msgstr ""
297
298 #: templates/django_mailman3/profile/profile.html:40
299 msgid "(no other email)"
300 msgstr ""
301
302 #: templates/django_mailman3/profile/profile.html:45
303 msgid "Link another address"
304 msgstr ""
305
265306 #: templates/django_mailman3/profile/profile.html:53
266 msgid "Edit on"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:25
270 msgid "Primary email:"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:31
274 msgid "Other emails:"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:37
278 msgid "(no other email)"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:42
282 msgid "Link another address"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:49
286307 msgid "Avatar:"
287 msgstr ""
288
289 #: templates/django_mailman3/profile/profile.html:58
308 msgstr "アバター:"
309
310 #: templates/django_mailman3/profile/profile.html:63
290311 msgid "Joined on:"
291312 msgstr ""
292313
293 #: templates/django_mailman3/profile/profile.html:67
314 #: templates/django_mailman3/profile/profile.html:72
294315 msgid "cancel"
295316 msgstr "キャンセル"
296317
297318 #: templates/openid/login.html:10
298319 msgid "OpenID Sign In"
299 msgstr ""
320 msgstr "OpenID サインイン"
300321
301322 #: templates/socialaccount/connections.html:9
302323 msgid ""
303324 "You can sign in to your account using any of the following third party "
304325 "accounts:"
305 msgstr ""
326 msgstr "以下のサードパーティのアカウントを使ってサインインすることができます:"
306327
307328 #: templates/socialaccount/connections.html:42
308329 msgid ""
309330 "You currently have no social network accounts connected to this account."
310331 msgstr ""
332 "このアカウントに接続されているソーシャルネットワークアカウントは存在しませ"
333 "ん。"
311334
312335 #: templates/socialaccount/connections.html:45
313336 msgid "Add a 3rd Party Account"
314 msgstr ""
337 msgstr "サードパーティアカウントの追加"
315338
316339 #: templates/socialaccount/signup.html:11
317340 #, python-format
330353
331354 #: templatetags/pagination.py:46
332355 msgid "Previous"
333 msgstr ""
356 msgstr "前へ"
334357
335358 #: templatetags/pagination.py:47
336359 msgid "Next"
337 msgstr ""
338
339 #: views/profile.py:73
360 msgstr "次へ"
361
362 #: views/profile.py:72
340363 msgid "The profile was successfully updated."
341364 msgstr ""
342365
343 #: views/profile.py:75
366 #: views/profile.py:74
344367 msgid "No change detected."
345368 msgstr ""
346369
347 #: views/profile.py:108
370 #: views/profile.py:110
348371 msgid "Successfully deleted account"
349372 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:58+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "PO-Revision-Date: 2019-10-03 14:39+0000\n"
11 "Last-Translator: 김상남 <ksn7491@naver.com>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-05-14 08:32+0000\n"
11 "Last-Translator: Lens0021 <lorentz0021@gmail.com>\n"
1212 "Language-Team: Korean <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/ko/>\n"
1414 "Language: ko\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
19 "X-Generator: Weblate 3.9-dev\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
23 msgstr "그 사용자명은 이미 존재하는 이름입니다."
39 msgstr "그 사용자명을 싸는 사용자가 이미 존재합니다."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "계정"
3853
3954 #: templates/account/email.html:27
4055 msgid "Unverified"
41 msgstr "검증되지않음"
56 msgstr "검증되지 않음"
4257
4358 #: templates/account/email.html:29
4459 msgid "Primary"
45 msgstr "최우선의"
60 msgstr "최우선"
4661
4762 #: templates/account/email.html:35
4863 msgid "Make Primary"
5065
5166 #: templates/account/email.html:36
5267 msgid "Re-send Verification"
53 msgstr "증명서를 다시 보냅니다"
68 msgstr "인증을 다시 보냅니다"
5469
5570 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5671 msgid "Remove"
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
6782 msgstr ""
68 "당신은 최근에 이메일 주소 설정을 하지 않았습니다. 당신이 알림을 받거나 비밀번호를 초기화 하기 위해서는 정말로 이메일 주소를 추가해야 "
69 "합니다."
83 "현재 이메일 주소 설정을 하지 않았습니다. 알림을 받거나 비밀번호를 재설정하기 "
84 "위해서는 정말로 이메일 주소를 추가해야 합니다."
7085
7186 #: templates/account/email.html:49
7287 msgid "Add E-mail Address"
91106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
92107 "address for user %(user_display)s."
93108 msgstr ""
94 "<a href=\"mailto:%(email)s\">%(email)s</a>가 사용자 %(user_display)s의 이메일 주소인지 "
95 "확인하십시오."
109 "<a href=\"mailto:%(email)s\">%(email)s</a>가 사용자 %(user_display)s의 이메"
110 "일 주소인지 확인하십시오."
96111
97112 #: templates/account/email_confirm.html:20
98113 msgid "Confirm"
104119 "This e-mail confirmation link expired or is invalid. Please <a href="
105120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
106121 msgstr ""
107 "이 이메일 확인 링크가 만료되었거나 유효하지 않습니다.<a href=\"%(email_url)s\"> 새로운 이메일 확인 요청을 "
108 "발행</a>하십시오."
122 "이 이메일 확인 링크가 만료되었거나 유효하지 않습니다.<a href=\"%(email_url)s"
123 "\"> 새로운 이메일 확인 요청을 발행</a>하십시오."
109124
110125 #: templates/account/login.html:7 templates/account/login.html:11
111126 #: templates/account/login.html:48
120135 "up</a>\n"
121136 "for a %(site_name)s account and sign in below:"
122137 msgstr ""
123 "하나로 로그인하십시오\n"
124 "기존 제 3 자 계정 중 또는 <a href=\"%(signup_url)s\"> 가입</a>\n"
125 "%(site_name)s계정의 경우 아래에서 로그인하십시오:"
138 "다음 중 하나로 로그인하십시오\n"
139 "기존 서드 파티 계정 또는 <a href=\"%(signup_url)s\">가입</a>\n"
140 "%(site_name)s 계정의 경우 아래에서 로그인하십시오:"
126141
127142 #: templates/account/login.html:30
128 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
129144 msgid "or"
130145 msgstr "또는"
131146
135150 "If you have not created an account yet, then please\n"
136151 "<a href=\"%(signup_url)s\">sign up</a> first."
137152 msgstr ""
138 "아직 계정을 만들지 않았다면 제발\n"
139 "먼저 <a href=\"%(signup_url)s\">가입</a>하십시오."
153 "아직 계정을 만들지 않았다면\n"
154 "먼저 <a href=\"%(signup_url)s\">회원가입</a>하십시오."
140155
141156 #: templates/account/login.html:50
142157 msgid "Forgot Password?"
155170 #: templates/account/password_reset_from_key.html:6
156171 #: templates/account/password_reset_from_key.html:9
157172 #: templates/django_mailman3/profile/base.html:20
158 #: templates/django_mailman3/profile/base.html:21
159173 msgid "Change Password"
160174 msgstr "비밀번호 변경"
161175
162176 #: templates/account/password_reset.html:7
163177 #: templates/account/password_reset.html:11
164178 msgid "Password Reset"
165 msgstr "비밀번호 초기화"
179 msgstr "비밀번호 재설정"
166180
167181 #: templates/account/password_reset.html:16
168182 msgid ""
169183 "Forgotten your password? Enter your e-mail address below, and we'll send you "
170184 "an e-mail allowing you to reset it."
171 msgstr "비밀번호를 잊으셨습니까? 아래에 이메일 주소를 입력하면 재설정 할 수있는 이메일을 보내드립니다."
185 msgstr ""
186 "비밀번호를 잊으셨습니까? 아래에 이메일 주소를 입력하면 재설정 할 수 있는 이메"
187 "일을 보내드립니다."
172188
173189 #: templates/account/password_reset.html:22
174190 msgid "Reset My Password"
175 msgstr "내 비밀번호 초기화"
191 msgstr "내 비밀번호 재설정"
176192
177193 #: templates/account/password_reset.html:27
178194 msgid "Please contact us if you have any trouble resetting your password."
179 msgstr "당신의 비밀번호를 초기화하는데 문제가 발생하면 우리에게 연락주세요."
195 msgstr "당신의 비밀번호를 재설정하는 데 문제가 발생하면 우리에게 연락주세요."
180196
181197 #: templates/account/password_reset_from_key.html:9
182198 msgid "Bad Token"
189205 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
190206 "a>."
191207 msgstr ""
192 "비밀번호 재설정 링크가 이미 사용 되었기 때문에 유효하지 않습니다. <a href=\"%(passwd_reset_url)s\"> 새 "
193 "비밀번호 재설정 </a>을 요청하십시오."
208 "비밀번호 재설정 링크는 이미 사용된 등의 이유로 유효하지 않습니다. <a href="
209 "\"%(passwd_reset_url)s\"> 새 비밀번호 재설정 </a>을 요청하십시오."
194210
195211 #: templates/account/password_reset_from_key.html:20
196212 msgid "change password"
206222
207223 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
208224 msgid "Signup"
209 msgstr "서명"
225 msgstr "회원가입"
210226
211227 #: templates/account/signup.html:9 templates/account/signup.html:20
212228 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
213229 msgid "Sign Up"
214 msgstr "서명하다"
230 msgstr "회원가입"
215231
216232 #: templates/account/signup.html:11
217233 #, python-format
218234 msgid ""
219235 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
220 msgstr "계정이 있으신가요? 그렇다면 </a>에 <a href=\"%(login_url)s\">를 입력해주세요."
221
222 #: templates/django_mailman3/paginator/pagination.html:41
236 msgstr ""
237 "계정이 있으신가요? 그렇다면 <a href=\"%(login_url)s\">로그인</a>해 주세요."
238
239 #: templates/django_mailman3/paginator/pagination.html:43
223240 msgid "Jump to page:"
224 msgstr "다음페이지로 넘어갑니다:"
225
226 #: templates/django_mailman3/paginator/pagination.html:59
241 msgstr "페이지로 이동:"
242
243 #: templates/django_mailman3/paginator/pagination.html:61
227244 msgid "Results per page:"
228245 msgstr "페이지 당 결과:"
229246
230 #: templates/django_mailman3/paginator/pagination.html:75
231 #: templates/django_mailman3/profile/profile.html:66
247 #: templates/django_mailman3/paginator/pagination.html:77
248 #: templates/django_mailman3/profile/profile.html:71
232249 msgid "Update"
233250 msgstr "업데이트"
234251
235 #: templates/django_mailman3/profile/base.html:5
252 #: templates/django_mailman3/profile/base.html:6
236253 msgid "User Profile"
237254 msgstr "사용자 프로필"
238255
239 #: templates/django_mailman3/profile/base.html:12
256 #: templates/django_mailman3/profile/base.html:13
240257 msgid "User profile"
241258 msgstr "사용자 프로필"
242259
243 #: templates/django_mailman3/profile/base.html:12
260 #: templates/django_mailman3/profile/base.html:13
244261 msgid "for"
245 msgstr "위해"
246
247 #: templates/django_mailman3/profile/base.html:24
248 #: templates/django_mailman3/profile/base.html:25
262 msgstr "-"
263
264 #: templates/django_mailman3/profile/base.html:23
249265 msgid "E-mail Addresses"
250266 msgstr "이메일 주소"
251267
252 #: templates/django_mailman3/profile/base.html:29
253268 #: templates/django_mailman3/profile/base.html:30
254269 msgid "Account Connections"
255270 msgstr "계정 연결"
256271
257 #: templates/django_mailman3/profile/base.html:33
258 #: templates/django_mailman3/profile/base.html:34
259 #: templates/django_mailman3/profile/delete_profile.html:18
272 #: templates/django_mailman3/profile/base.html:35
273 #: templates/django_mailman3/profile/delete_profile.html:17
260274 msgid "Delete Account"
261275 msgstr "계정 삭제"
262276
263 #: templates/django_mailman3/profile/delete_profile.html:13
277 #: templates/django_mailman3/profile/delete_profile.html:12
264278 msgid ""
265279 "Are you sure you want to delete your account? This will remove your account "
266280 "along with all your subscriptions."
267 msgstr "계정을 삭제 하시겠습니까? 모든 구독과 함께 계정이 제거됩니다."
268
269 #: templates/django_mailman3/profile/profile.html:18
270 #: templates/django_mailman3/profile/profile.html:53
281 msgstr "계정을 삭제 하시겠습니까? 모든 가입목록과 함께 계정이 제거됩니다."
282
283 #: templates/django_mailman3/profile/profile.html:20
284 #: templates/django_mailman3/profile/profile.html:57
271285 msgid "Edit on"
272286 msgstr "편집하세요"
273287
274 #: templates/django_mailman3/profile/profile.html:25
288 #: templates/django_mailman3/profile/profile.html:28
275289 msgid "Primary email:"
276290 msgstr "이전 이메일:"
277291
278 #: templates/django_mailman3/profile/profile.html:31
292 #: templates/django_mailman3/profile/profile.html:34
279293 msgid "Other emails:"
280294 msgstr "다른 이메일:"
281295
282 #: templates/django_mailman3/profile/profile.html:37
296 #: templates/django_mailman3/profile/profile.html:40
283297 msgid "(no other email)"
284298 msgstr "(다른 이메일 없음)"
285299
286 #: templates/django_mailman3/profile/profile.html:42
300 #: templates/django_mailman3/profile/profile.html:45
287301 msgid "Link another address"
288302 msgstr "다른 주소 링크하기"
289303
290 #: templates/django_mailman3/profile/profile.html:49
304 #: templates/django_mailman3/profile/profile.html:53
291305 msgid "Avatar:"
292306 msgstr "아바타:"
293307
294 #: templates/django_mailman3/profile/profile.html:58
308 #: templates/django_mailman3/profile/profile.html:63
295309 msgid "Joined on:"
296310 msgstr "가입됨:"
297311
298 #: templates/django_mailman3/profile/profile.html:67
312 #: templates/django_mailman3/profile/profile.html:72
299313 msgid "cancel"
300314 msgstr "취소"
301315
307321 msgid ""
308322 "You can sign in to your account using any of the following third party "
309323 "accounts:"
310 msgstr "다음 계정을 사용하여 계정에 로그인할 수 있습니다:"
324 msgstr "다음 서드 파티 계정을 사용하여 계정에 로그인할 수 있습니다:"
311325
312326 #: templates/socialaccount/connections.html:42
313327 msgid ""
316330
317331 #: templates/socialaccount/connections.html:45
318332 msgid "Add a 3rd Party Account"
319 msgstr "타사 계정 추가"
333 msgstr "서드 파티 계정 추가"
320334
321335 #: templates/socialaccount/signup.html:11
322336 #, python-format
324338 "You are about to use your %(provider_name)s account to login to\n"
325339 "%(site_name)s. As a final step, please complete the following form:"
326340 msgstr ""
327 "귀하의 %(provider_name)s계정에 로그인하려고 합니다.\n"
328 "%(site_name)s를 사용합니다. 마지막 단계로 다음 양식을 작성하십시오:"
341 "귀하의 %(provider_name)s 계정을 이용하여\n"
342 "%(site_name)s에 로그인하려 합니다. 다음 양식을 완성하십시오:"
329343
330344 #: templatetags/pagination.py:43
331345 msgid "Newer"
332 msgstr "신가입자"
346 msgstr "새로운"
333347
334348 #: templatetags/pagination.py:44
335349 msgid "Older"
336 msgstr "어른"
350 msgstr "오래된"
337351
338352 #: templatetags/pagination.py:46
339353 msgid "Previous"
340 msgstr "이전의"
354 msgstr "이전"
341355
342356 #: templatetags/pagination.py:47
343357 msgid "Next"
344358 msgstr "다음"
345359
346 #: views/profile.py:73
360 #: views/profile.py:72
347361 msgid "The profile was successfully updated."
348 msgstr "프로파일이 성공적으로 업데이트되었습니다."
349
350 #: views/profile.py:75
362 msgstr "프로필이 성공적으로 업데이트되었습니다."
363
364 #: views/profile.py:74
351365 msgid "No change detected."
352366 msgstr "변경 사항이 감지되지 않았습니다."
353367
354 #: views/profile.py:108
368 #: views/profile.py:110
355369 msgid "Successfully deleted account"
356370 msgstr "성공적으로 삭제된 계정"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-09-22 02:48+0000\n"
1111 "Last-Translator: Kornelijus Tvarijanavičius <kornelitvari@protonmail.com>\n"
1212 "Language-Team: Lithuanian <https://hosted.weblate.org/projects/gnu-mailman/"
2020 "1 : 2);\n"
2121 "X-Generator: Weblate 4.3-dev\n"
2222
23 #: forms.py:32
24 msgid "Username"
25 msgstr ""
26
27 #: forms.py:33
28 msgid "First name"
29 msgstr ""
30
31 #: forms.py:34
32 msgid "Last name"
33 msgstr ""
34
35 #: forms.py:36
36 msgid "Time zone"
37 msgstr ""
38
2339 #: forms.py:43
2440 msgid "A user with that username already exists."
2541 msgstr "Vartotojas su šiuo slapyvardžiu jau egzistuoja."
2642
2743 #: templates/account/email.html:6
28 #: templates/django_mailman3/profile/base.html:16
2944 #: templates/django_mailman3/profile/base.html:17
3045 msgid "Account"
3146 msgstr "Paskyra"
120135 msgstr ""
121136
122137 #: templates/account/login.html:30
123 #: templates/django_mailman3/profile/profile.html:67
138 #: templates/django_mailman3/profile/profile.html:72
124139 msgid "or"
125140 msgstr "arba"
126141
148163 #: templates/account/password_reset_from_key.html:6
149164 #: templates/account/password_reset_from_key.html:9
150165 #: templates/django_mailman3/profile/base.html:20
151 #: templates/django_mailman3/profile/base.html:21
152166 msgid "Change Password"
153167 msgstr "Pakeisti slaptažodį"
154168
214228 msgstr ""
215229 "Jau turite paskyrą? Tada prašome <a href=\"%(login_url)s\">prisijungti</a>."
216230
217 #: templates/django_mailman3/paginator/pagination.html:41
231 #: templates/django_mailman3/paginator/pagination.html:43
218232 msgid "Jump to page:"
219233 msgstr "Nusikelti į puslapį:"
220234
221 #: templates/django_mailman3/paginator/pagination.html:59
235 #: templates/django_mailman3/paginator/pagination.html:61
222236 msgid "Results per page:"
223237 msgstr "Rezultatai per puslapį:"
224238
225 #: templates/django_mailman3/paginator/pagination.html:75
226 #: templates/django_mailman3/profile/profile.html:66
239 #: templates/django_mailman3/paginator/pagination.html:77
240 #: templates/django_mailman3/profile/profile.html:71
227241 msgid "Update"
228242 msgstr "Atnaujinti"
229243
230 #: templates/django_mailman3/profile/base.html:5
244 #: templates/django_mailman3/profile/base.html:6
231245 msgid "User Profile"
232246 msgstr "Vartotojo profilis"
233247
234 #: templates/django_mailman3/profile/base.html:12
248 #: templates/django_mailman3/profile/base.html:13
235249 msgid "User profile"
236250 msgstr "Vartotojo profilis"
237251
238 #: templates/django_mailman3/profile/base.html:12
252 #: templates/django_mailman3/profile/base.html:13
239253 msgid "for"
240254 msgstr "skirta"
241255
242 #: templates/django_mailman3/profile/base.html:24
243 #: templates/django_mailman3/profile/base.html:25
256 #: templates/django_mailman3/profile/base.html:23
244257 msgid "E-mail Addresses"
245258 msgstr "El. pašto adresai"
246259
247 #: templates/django_mailman3/profile/base.html:29
248260 #: templates/django_mailman3/profile/base.html:30
249261 msgid "Account Connections"
250262 msgstr "Paskyros sąryšiai"
251263
252 #: templates/django_mailman3/profile/base.html:33
253 #: templates/django_mailman3/profile/base.html:34
254 #: templates/django_mailman3/profile/delete_profile.html:18
264 #: templates/django_mailman3/profile/base.html:35
265 #: templates/django_mailman3/profile/delete_profile.html:17
255266 msgid "Delete Account"
256267 msgstr "Panaikinti paskyrą"
257268
258 #: templates/django_mailman3/profile/delete_profile.html:13
269 #: templates/django_mailman3/profile/delete_profile.html:12
259270 msgid ""
260271 "Are you sure you want to delete your account? This will remove your account "
261272 "along with all your subscriptions."
262273 msgstr ""
263274
264 #: templates/django_mailman3/profile/profile.html:18
275 #: templates/django_mailman3/profile/profile.html:20
276 #: templates/django_mailman3/profile/profile.html:57
277 msgid "Edit on"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:28
281 msgid "Primary email:"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:34
285 msgid "Other emails:"
286 msgstr ""
287
288 #: templates/django_mailman3/profile/profile.html:40
289 msgid "(no other email)"
290 msgstr ""
291
292 #: templates/django_mailman3/profile/profile.html:45
293 msgid "Link another address"
294 msgstr ""
295
265296 #: templates/django_mailman3/profile/profile.html:53
266 msgid "Edit on"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:25
270 msgid "Primary email:"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:31
274 msgid "Other emails:"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:37
278 msgid "(no other email)"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:42
282 msgid "Link another address"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:49
286297 msgid "Avatar:"
287298 msgstr ""
288299
289 #: templates/django_mailman3/profile/profile.html:58
300 #: templates/django_mailman3/profile/profile.html:63
290301 msgid "Joined on:"
291302 msgstr ""
292303
293 #: templates/django_mailman3/profile/profile.html:67
304 #: templates/django_mailman3/profile/profile.html:72
294305 msgid "cancel"
295306 msgstr ""
296307
336347 msgid "Next"
337348 msgstr ""
338349
339 #: views/profile.py:73
350 #: views/profile.py:72
340351 msgid "The profile was successfully updated."
341352 msgstr ""
342353
343 #: views/profile.py:75
354 #: views/profile.py:74
344355 msgid "No change detected."
345356 msgstr ""
346357
347 #: views/profile.py:108
358 #: views/profile.py:110
348359 msgid "Successfully deleted account"
349360 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
1919 "2);\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-01-08 16:21+0000\n"
1111 "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
1212 "Language-Team: Marathi <https://hosted.weblate.org/projects/gnu-mailman/"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
1919 "X-Generator: Weblate 3.10.1-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "त्या वापरकर्तानावाचा वापरकर्ता आधीपासून विद्यमान आहे."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "खाते"
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
6782 msgstr ""
68 "आपल्याकडे सध्या कोणताही ई-मेल पत्ता सेट अप केलेला नाही. आपण खरोखर एक ई-मेल "
69 "पत्ता जोडावा जेणेकरुन आपण सूचना प्राप्त करू शकता, आपला संकेतशब्द रीसेट करू "
70 "शकता इ."
83 "आपल्याकडे सध्या कोणताही ई-मेल पत्ता सेट अप केलेला नाही. आपण खरोखर एक ई-मेल पत्ता "
84 "जोडावा जेणेकरुन आपण सूचना प्राप्त करू शकता, आपला संकेतशब्द रीसेट करू शकता इ."
7185
7286 #: templates/account/email.html:49
7387 msgid "Add E-mail Address"
119133 msgstr ""
120134
121135 #: templates/account/login.html:30
122 #: templates/django_mailman3/profile/profile.html:67
136 #: templates/django_mailman3/profile/profile.html:72
123137 msgid "or"
124138 msgstr ""
125139
147161 #: templates/account/password_reset_from_key.html:6
148162 #: templates/account/password_reset_from_key.html:9
149163 #: templates/django_mailman3/profile/base.html:20
150 #: templates/django_mailman3/profile/base.html:21
151164 msgid "Change Password"
152165 msgstr ""
153166
209222 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
210223 msgstr ""
211224
212 #: templates/django_mailman3/paginator/pagination.html:41
225 #: templates/django_mailman3/paginator/pagination.html:43
213226 msgid "Jump to page:"
214227 msgstr ""
215228
216 #: templates/django_mailman3/paginator/pagination.html:59
229 #: templates/django_mailman3/paginator/pagination.html:61
217230 msgid "Results per page:"
218231 msgstr ""
219232
220 #: templates/django_mailman3/paginator/pagination.html:75
221 #: templates/django_mailman3/profile/profile.html:66
233 #: templates/django_mailman3/paginator/pagination.html:77
234 #: templates/django_mailman3/profile/profile.html:71
222235 msgid "Update"
223236 msgstr ""
224237
225 #: templates/django_mailman3/profile/base.html:5
238 #: templates/django_mailman3/profile/base.html:6
226239 msgid "User Profile"
227240 msgstr ""
228241
229 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
230243 msgid "User profile"
231244 msgstr ""
232245
233 #: templates/django_mailman3/profile/base.html:12
246 #: templates/django_mailman3/profile/base.html:13
234247 msgid "for"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:24
238 #: templates/django_mailman3/profile/base.html:25
250 #: templates/django_mailman3/profile/base.html:23
239251 msgid "E-mail Addresses"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:29
243254 #: templates/django_mailman3/profile/base.html:30
244255 msgid "Account Connections"
245256 msgstr ""
246257
247 #: templates/django_mailman3/profile/base.html:33
248 #: templates/django_mailman3/profile/base.html:34
249 #: templates/django_mailman3/profile/delete_profile.html:18
258 #: templates/django_mailman3/profile/base.html:35
259 #: templates/django_mailman3/profile/delete_profile.html:17
250260 msgid "Delete Account"
251261 msgstr ""
252262
253 #: templates/django_mailman3/profile/delete_profile.html:13
263 #: templates/django_mailman3/profile/delete_profile.html:12
254264 msgid ""
255265 "Are you sure you want to delete your account? This will remove your account "
256266 "along with all your subscriptions."
257267 msgstr ""
258268
259 #: templates/django_mailman3/profile/profile.html:18
269 #: templates/django_mailman3/profile/profile.html:20
270 #: templates/django_mailman3/profile/profile.html:57
271 msgid "Edit on"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:28
275 msgid "Primary email:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:34
279 msgid "Other emails:"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:40
283 msgid "(no other email)"
284 msgstr ""
285
286 #: templates/django_mailman3/profile/profile.html:45
287 msgid "Link another address"
288 msgstr ""
289
260290 #: templates/django_mailman3/profile/profile.html:53
261 msgid "Edit on"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:25
265 msgid "Primary email:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:31
269 msgid "Other emails:"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:37
273 msgid "(no other email)"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:42
277 msgid "Link another address"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:49
281291 msgid "Avatar:"
282292 msgstr ""
283293
284 #: templates/django_mailman3/profile/profile.html:58
294 #: templates/django_mailman3/profile/profile.html:63
285295 msgid "Joined on:"
286296 msgstr ""
287297
288 #: templates/django_mailman3/profile/profile.html:67
298 #: templates/django_mailman3/profile/profile.html:72
289299 msgid "cancel"
290300 msgstr ""
291301
331341 msgid "Next"
332342 msgstr ""
333343
334 #: views/profile.py:73
344 #: views/profile.py:72
335345 msgid "The profile was successfully updated."
336346 msgstr ""
337347
338 #: views/profile.py:75
348 #: views/profile.py:74
339349 msgid "No change detected."
340350 msgstr ""
341351
342 #: views/profile.py:108
352 #: views/profile.py:110
343353 msgid "Successfully deleted account"
344354 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-12-11 04:16+0000\n"
1111 "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
12 "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/"
13 "gnu-mailman/django-mailman3/nb_NO/>\n"
12 "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/gnu-"
13 "mailman/django-mailman3/nb_NO/>\n"
1414 "Language: nb_NO\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
1919 "X-Generator: Weblate 4.4-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "En bruker med det brukernavnet finnes allerede."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Konto"
105120 "This e-mail confirmation link expired or is invalid. Please <a href="
106121 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
107122 msgstr ""
108 "E-postbekreftelseslenken er utløpt eller ugyldig. <a href=\"%(email_url)s\""
109 ">Send en ny bekreftelsesforespørsel</a>."
123 "E-postbekreftelseslenken er utløpt eller ugyldig. <a href=\"%(email_url)s"
124 "\">Send en ny bekreftelsesforespørsel</a>."
110125
111126 #: templates/account/login.html:7 templates/account/login.html:11
112127 #: templates/account/login.html:48
127142 "med en %(site_name)s-konto og logg inn nedenfor:"
128143
129144 #: templates/account/login.html:30
130 #: templates/django_mailman3/profile/profile.html:67
145 #: templates/django_mailman3/profile/profile.html:72
131146 msgid "or"
132147 msgstr "eller"
133148
157172 #: templates/account/password_reset_from_key.html:6
158173 #: templates/account/password_reset_from_key.html:9
159174 #: templates/django_mailman3/profile/base.html:20
160 #: templates/django_mailman3/profile/base.html:21
161175 msgid "Change Password"
162176 msgstr "Endre passord"
163177
194208 "a>."
195209 msgstr ""
196210 "Passordstilbakestillingslenken var ugyldig, muligens fordi den allerede har "
197 "blitt brukt. Forespør en<a href=\"%(passwd_reset_url)s\""
198 ">passordstilbakestilling</a>."
211 "blitt brukt. Forespør en<a href=\"%(passwd_reset_url)s"
212 "\">passordstilbakestilling</a>."
199213
200214 #: templates/account/password_reset_from_key.html:20
201215 msgid "change password"
226240 msgstr ""
227241 "Du kan <a href=\"%(login_url)s\">logge inn</a> hvis du allerede har en konto."
228242
229 #: templates/django_mailman3/paginator/pagination.html:41
243 #: templates/django_mailman3/paginator/pagination.html:43
230244 msgid "Jump to page:"
231245 msgstr "Hopp til side:"
232246
233 #: templates/django_mailman3/paginator/pagination.html:59
247 #: templates/django_mailman3/paginator/pagination.html:61
234248 msgid "Results per page:"
235249 msgstr "Resultater per side:"
236250
237 #: templates/django_mailman3/paginator/pagination.html:75
238 #: templates/django_mailman3/profile/profile.html:66
251 #: templates/django_mailman3/paginator/pagination.html:77
252 #: templates/django_mailman3/profile/profile.html:71
239253 msgid "Update"
240254 msgstr "Oppdater"
241255
242 #: templates/django_mailman3/profile/base.html:5
256 #: templates/django_mailman3/profile/base.html:6
243257 msgid "User Profile"
244258 msgstr "Brukerprofil"
245259
246 #: templates/django_mailman3/profile/base.html:12
260 #: templates/django_mailman3/profile/base.html:13
247261 msgid "User profile"
248262 msgstr "Brukerprofil"
249263
250 #: templates/django_mailman3/profile/base.html:12
264 #: templates/django_mailman3/profile/base.html:13
251265 msgid "for"
252266 msgstr "for"
253267
254 #: templates/django_mailman3/profile/base.html:24
255 #: templates/django_mailman3/profile/base.html:25
268 #: templates/django_mailman3/profile/base.html:23
256269 msgid "E-mail Addresses"
257270 msgstr "E-postadresser"
258271
259 #: templates/django_mailman3/profile/base.html:29
260272 #: templates/django_mailman3/profile/base.html:30
261273 msgid "Account Connections"
262274 msgstr "Kontotilknytninger"
263275
264 #: templates/django_mailman3/profile/base.html:33
265 #: templates/django_mailman3/profile/base.html:34
266 #: templates/django_mailman3/profile/delete_profile.html:18
276 #: templates/django_mailman3/profile/base.html:35
277 #: templates/django_mailman3/profile/delete_profile.html:17
267278 msgid "Delete Account"
268279 msgstr "Slett konto"
269280
270 #: templates/django_mailman3/profile/delete_profile.html:13
281 #: templates/django_mailman3/profile/delete_profile.html:12
271282 msgid ""
272283 "Are you sure you want to delete your account? This will remove your account "
273284 "along with all your subscriptions."
275286 "Er du sikker på at du vil slette kontoen din? Dette vil fjerne kontoen, "
276287 "sammen med alle dine abonnementer."
277288
278 #: templates/django_mailman3/profile/profile.html:18
279 #: templates/django_mailman3/profile/profile.html:53
289 #: templates/django_mailman3/profile/profile.html:20
290 #: templates/django_mailman3/profile/profile.html:57
280291 msgid "Edit on"
281292 msgstr "Rediger på"
282293
283 #: templates/django_mailman3/profile/profile.html:25
294 #: templates/django_mailman3/profile/profile.html:28
284295 msgid "Primary email:"
285296 msgstr "Hoved-e-post:"
286297
287 #: templates/django_mailman3/profile/profile.html:31
298 #: templates/django_mailman3/profile/profile.html:34
288299 msgid "Other emails:"
289300 msgstr "Andre e-poster:"
290301
291 #: templates/django_mailman3/profile/profile.html:37
302 #: templates/django_mailman3/profile/profile.html:40
292303 msgid "(no other email)"
293304 msgstr "(ingen annen e-post)"
294305
295 #: templates/django_mailman3/profile/profile.html:42
306 #: templates/django_mailman3/profile/profile.html:45
296307 msgid "Link another address"
297308 msgstr "Tilknytt en annen adresse"
298309
299 #: templates/django_mailman3/profile/profile.html:49
310 #: templates/django_mailman3/profile/profile.html:53
300311 msgid "Avatar:"
301312 msgstr "Avatar:"
302313
303 #: templates/django_mailman3/profile/profile.html:58
314 #: templates/django_mailman3/profile/profile.html:63
304315 msgid "Joined on:"
305316 msgstr "Tok del den:"
306317
307 #: templates/django_mailman3/profile/profile.html:67
318 #: templates/django_mailman3/profile/profile.html:72
308319 msgid "cancel"
309320 msgstr "avbryt"
310321
353364 msgid "Next"
354365 msgstr "Neste"
355366
356 #: views/profile.py:73
367 #: views/profile.py:72
357368 msgid "The profile was successfully updated."
358369 msgstr "Profil oppdatert."
359370
360 #: views/profile.py:75
371 #: views/profile.py:74
361372 msgid "No change detected."
362373 msgstr "Ingen endring oppdaget."
363374
364 #: views/profile.py:108
375 #: views/profile.py:110
365376 msgid "Successfully deleted account"
366377 msgstr "Konto slettet."
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 #, fuzzy
65 msgid ""
76 msgstr ""
87 "Project-Id-Version: PACKAGE VERSION\n"
98 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-07-09 16:47+0000\n"
11 "Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
12 "Language-Team: Occitan <https://hosted.weblate.org/projects/gnu-mailman/"
13 "django-mailman3/oc/>\n"
14 "Language: oc\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 "X-Generator: Weblate 4.8-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
1836
1937 #: forms.py:43
2038 msgid "A user with that username already exists."
2139 msgstr ""
2240
2341 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2542 #: templates/django_mailman3/profile/base.html:17
2643 msgid "Account"
27 msgstr ""
44 msgstr "Compte"
2845
2946 #: templates/account/email.html:11
3047 msgid "The following e-mail addresses are associated with your account:"
3249
3350 #: templates/account/email.html:25
3451 msgid "Verified"
35 msgstr ""
52 msgstr "Verificat"
3653
3754 #: templates/account/email.html:27
3855 msgid "Unverified"
39 msgstr ""
56 msgstr "Pas verificat"
4057
4158 #: templates/account/email.html:29
4259 msgid "Primary"
43 msgstr ""
60 msgstr "Principal"
4461
4562 #: templates/account/email.html:35
4663 msgid "Make Primary"
47 msgstr ""
64 msgstr "Causir coma principal"
4865
4966 #: templates/account/email.html:36
5067 msgid "Re-send Verification"
5269
5370 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5471 msgid "Remove"
55 msgstr ""
72 msgstr "Suprimir"
5673
5774 #: templates/account/email.html:44
5875 msgid "Warning:"
59 msgstr ""
76 msgstr "Avertiment :"
6077
6178 #: templates/account/email.html:44
6279 msgid ""
90107
91108 #: templates/account/email_confirm.html:20
92109 msgid "Confirm"
93 msgstr ""
110 msgstr "Confirmar"
94111
95112 #: templates/account/email_confirm.html:27
96113 #, python-format
114131 msgstr ""
115132
116133 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
118135 msgid "or"
119136 msgstr ""
120137
127144
128145 #: templates/account/login.html:50
129146 msgid "Forgot Password?"
130 msgstr ""
147 msgstr "Senhal oblidat ?"
131148
132149 #: templates/account/logout.html:5 templates/account/logout.html:8
133150 #: templates/account/logout.html:17
134151 msgid "Sign Out"
135 msgstr ""
152 msgstr "Desconnexion"
136153
137154 #: templates/account/logout.html:10
138155 msgid "Are you sure you want to sign out?"
139 msgstr ""
156 msgstr "Volètz vertadièrament vos desconnectar ?"
140157
141158 #: templates/account/password_change.html:12
142159 #: templates/account/password_reset_from_key.html:6
143160 #: templates/account/password_reset_from_key.html:9
144161 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146162 msgid "Change Password"
147 msgstr ""
163 msgstr "Cambiar lo senhal"
148164
149165 #: templates/account/password_reset.html:7
150166 #: templates/account/password_reset.html:11
151167 msgid "Password Reset"
152 msgstr ""
168 msgstr "Reïnicializar lo senhal"
153169
154170 #: templates/account/password_reset.html:16
155171 msgid ""
204220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205221 msgstr ""
206222
207 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
208224 msgid "Jump to page:"
209225 msgstr ""
210226
211 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
212228 msgid "Results per page:"
213229 msgstr ""
214230
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
217233 msgid "Update"
218234 msgstr ""
219235
220 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
221237 msgid "User Profile"
222238 msgstr ""
223239
224 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
225241 msgid "User profile"
226242 msgstr ""
227243
228 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
229245 msgid "for"
230246 msgstr ""
231247
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
234249 msgid "E-mail Addresses"
235250 msgstr ""
236251
237 #: templates/django_mailman3/profile/base.html:29
238252 #: templates/django_mailman3/profile/base.html:30
239253 msgid "Account Connections"
240254 msgstr ""
241255
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
245258 msgid "Delete Account"
246259 msgstr ""
247260
248 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
249262 msgid ""
250263 "Are you sure you want to delete your account? This will remove your account "
251264 "along with all your subscriptions."
252265 msgstr ""
253266
254 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
255288 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276289 msgid "Avatar:"
277290 msgstr ""
278291
279 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
280293 msgid "Joined on:"
281294 msgstr ""
282295
283 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
284297 msgid "cancel"
285298 msgstr ""
286299
326339 msgid "Next"
327340 msgstr ""
328341
329 #: views/profile.py:73
342 #: views/profile.py:72
330343 msgid "The profile was successfully updated."
331344 msgstr ""
332345
333 #: views/profile.py:75
346 #: views/profile.py:74
334347 msgid "No change detected."
335348 msgstr ""
336349
337 #: views/profile.py:108
350 #: views/profile.py:110
338351 msgid "Successfully deleted account"
339352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-05-13 19:20+0000\n"
1111 "Last-Translator: Szylu <chipolade@gmail.com>\n"
1212 "Language-Team: Polish <https://hosted.weblate.org/projects/gnu-mailman/"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<"
19 "12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) "
20 "|| (n%100>=12 && n%100<=14) ? 2 : 3);\n"
18 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
19 "%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
20 "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
2121 "X-Generator: Weblate 4.1-dev\n"
22
23 #: forms.py:32
24 msgid "Username"
25 msgstr ""
26
27 #: forms.py:33
28 msgid "First name"
29 msgstr ""
30
31 #: forms.py:34
32 msgid "Last name"
33 msgstr ""
34
35 #: forms.py:36
36 msgid "Time zone"
37 msgstr ""
2238
2339 #: forms.py:43
2440 msgid "A user with that username already exists."
2541 msgstr "Użytkownik z tą nazwą już istnieje."
2642
2743 #: templates/account/email.html:6
28 #: templates/django_mailman3/profile/base.html:16
2944 #: templates/django_mailman3/profile/base.html:17
3045 msgid "Account"
3146 msgstr "Konto"
106121 "This e-mail confirmation link expired or is invalid. Please <a href="
107122 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
108123 msgstr ""
109 "Ten link potwierdzający e-mail wygasł lub jest nieprawidłowy. <a href=\""
110 "%(email_url)s\">wystaw nową prośbę o potwierdzenie e-mailem</a>."
124 "Ten link potwierdzający e-mail wygasł lub jest nieprawidłowy. <a href="
125 "\"%(email_url)s\">wystaw nową prośbę o potwierdzenie e-mailem</a>."
111126
112127 #: templates/account/login.html:7 templates/account/login.html:11
113128 #: templates/account/login.html:48
123138 "for a %(site_name)s account and sign in below:"
124139 msgstr ""
125140 "Zaloguj się za pomocą jednego\n"
126 "z twoich istniejących kont stron trzecich. Lub <a href=\"%(signup_url)s\">"
127 "zarejestruj się</a>\n"
141 "z twoich istniejących kont stron trzecich. Lub <a href=\"%(signup_url)s"
142 "\">zarejestruj się</a>\n"
128143 "dla konta %(site_name)s i zaloguj się poniżej:"
129144
130145 #: templates/account/login.html:30
131 #: templates/django_mailman3/profile/profile.html:67
146 #: templates/django_mailman3/profile/profile.html:72
132147 msgid "or"
133148 msgstr "lub"
134149
158173 #: templates/account/password_reset_from_key.html:6
159174 #: templates/account/password_reset_from_key.html:9
160175 #: templates/django_mailman3/profile/base.html:20
161 #: templates/django_mailman3/profile/base.html:21
162176 msgid "Change Password"
163177 msgstr "Zmień hasło"
164178
227241 msgstr ""
228242 "Posiadasz już konto? W takim razie <a href=\"%(login_url)s\">zaloguj się</a>."
229243
230 #: templates/django_mailman3/paginator/pagination.html:41
244 #: templates/django_mailman3/paginator/pagination.html:43
231245 msgid "Jump to page:"
232246 msgstr "Przeskocz do strony:"
233247
234 #: templates/django_mailman3/paginator/pagination.html:59
248 #: templates/django_mailman3/paginator/pagination.html:61
235249 msgid "Results per page:"
236250 msgstr "Wyników na stronę:"
237251
238 #: templates/django_mailman3/paginator/pagination.html:75
239 #: templates/django_mailman3/profile/profile.html:66
252 #: templates/django_mailman3/paginator/pagination.html:77
253 #: templates/django_mailman3/profile/profile.html:71
240254 msgid "Update"
241255 msgstr "Aktualizuj"
242256
243 #: templates/django_mailman3/profile/base.html:5
257 #: templates/django_mailman3/profile/base.html:6
244258 msgid "User Profile"
245259 msgstr "Profil użytkownika"
246260
247 #: templates/django_mailman3/profile/base.html:12
261 #: templates/django_mailman3/profile/base.html:13
248262 msgid "User profile"
249263 msgstr "Profil użytkownika"
250264
251 #: templates/django_mailman3/profile/base.html:12
265 #: templates/django_mailman3/profile/base.html:13
252266 msgid "for"
253267 msgstr "dla"
254268
255 #: templates/django_mailman3/profile/base.html:24
256 #: templates/django_mailman3/profile/base.html:25
269 #: templates/django_mailman3/profile/base.html:23
257270 msgid "E-mail Addresses"
258271 msgstr "Adresy email"
259272
260 #: templates/django_mailman3/profile/base.html:29
261273 #: templates/django_mailman3/profile/base.html:30
262274 msgid "Account Connections"
263275 msgstr "Połączenia konta"
264276
265 #: templates/django_mailman3/profile/base.html:33
266 #: templates/django_mailman3/profile/base.html:34
267 #: templates/django_mailman3/profile/delete_profile.html:18
277 #: templates/django_mailman3/profile/base.html:35
278 #: templates/django_mailman3/profile/delete_profile.html:17
268279 msgid "Delete Account"
269280 msgstr "Usuń konto"
270281
271 #: templates/django_mailman3/profile/delete_profile.html:13
282 #: templates/django_mailman3/profile/delete_profile.html:12
272283 msgid ""
273284 "Are you sure you want to delete your account? This will remove your account "
274285 "along with all your subscriptions."
276287 "Jesteś pewny, że chcesz usunąć konto? Usuniesz konto wraz ze wszystkimi "
277288 "swoimi subskrypcjami."
278289
279 #: templates/django_mailman3/profile/profile.html:18
280 #: templates/django_mailman3/profile/profile.html:53
290 #: templates/django_mailman3/profile/profile.html:20
291 #: templates/django_mailman3/profile/profile.html:57
281292 msgid "Edit on"
282293 msgstr "Edytuj"
283294
284 #: templates/django_mailman3/profile/profile.html:25
295 #: templates/django_mailman3/profile/profile.html:28
285296 msgid "Primary email:"
286297 msgstr "Główny email:"
287298
288 #: templates/django_mailman3/profile/profile.html:31
299 #: templates/django_mailman3/profile/profile.html:34
289300 msgid "Other emails:"
290301 msgstr "Inne emaile:"
291302
292 #: templates/django_mailman3/profile/profile.html:37
303 #: templates/django_mailman3/profile/profile.html:40
293304 msgid "(no other email)"
294305 msgstr "(brak innych email)"
295306
296 #: templates/django_mailman3/profile/profile.html:42
307 #: templates/django_mailman3/profile/profile.html:45
297308 msgid "Link another address"
298309 msgstr "Połącz inny adres"
299310
300 #: templates/django_mailman3/profile/profile.html:49
311 #: templates/django_mailman3/profile/profile.html:53
301312 msgid "Avatar:"
302313 msgstr "Awatar:"
303314
304 #: templates/django_mailman3/profile/profile.html:58
315 #: templates/django_mailman3/profile/profile.html:63
305316 msgid "Joined on:"
306317 msgstr "Dołączono:"
307318
308 #: templates/django_mailman3/profile/profile.html:67
319 #: templates/django_mailman3/profile/profile.html:72
309320 msgid "cancel"
310321 msgstr "anuluj"
311322
354365 msgid "Next"
355366 msgstr "Następny"
356367
357 #: views/profile.py:73
368 #: views/profile.py:72
358369 msgid "The profile was successfully updated."
359370 msgstr "Profil został pomyślnie zaktualizowany."
360371
361 #: views/profile.py:75
372 #: views/profile.py:74
362373 msgid "No change detected."
363374 msgstr "Nie wykryto zmian."
364375
365 #: views/profile.py:108
376 #: views/profile.py:110
366377 msgid "Successfully deleted account"
367378 msgstr "Pomyślnie usunięto konto"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "PO-Revision-Date: 2020-01-05 15:21+0000\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-05-09 06:32+0000\n"
1111 "Last-Translator: ssantos <ssantos@web.de>\n"
1212 "Language-Team: Portuguese <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/pt/>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 3.10\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
23 msgstr ""
39 msgstr "Já existe um utilizador com esse nome."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Conta"
3045
3146 #: templates/account/email.html:11
3247 msgid "The following e-mail addresses are associated with your account:"
33 msgstr ""
48 msgstr "Os seguintes endereços de e-mail estão associados à sua conta:"
3449
3550 #: templates/account/email.html:25
3651 msgid "Verified"
37 msgstr ""
52 msgstr "Verificado"
3853
3954 #: templates/account/email.html:27
4055 msgid "Unverified"
41 msgstr ""
56 msgstr "Não verificado"
4257
4358 #: templates/account/email.html:29
4459 msgid "Primary"
45 msgstr ""
60 msgstr "Primário"
4661
4762 #: templates/account/email.html:35
4863 msgid "Make Primary"
49 msgstr ""
64 msgstr "Tornar primário"
5065
5166 #: templates/account/email.html:36
5267 msgid "Re-send Verification"
53 msgstr ""
68 msgstr "Reenviar verificação"
5469
5570 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5671 msgid "Remove"
5873
5974 #: templates/account/email.html:44
6075 msgid "Warning:"
61 msgstr ""
76 msgstr "Aviso:"
6277
6378 #: templates/account/email.html:44
6479 msgid ""
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
6782 msgstr ""
83 "Ainda não configurou um endereço de e-mail. Deve adicionar um endereço de e-"
84 "mail para receber notificações, redefinir a sua palavra-passe etc."
6885
6986 #: templates/account/email.html:49
7087 msgid "Add E-mail Address"
71 msgstr ""
88 msgstr "Adicionar endereço de e-mail"
7289
7390 #: templates/account/email.html:55
7491 msgid "Add E-mail"
75 msgstr ""
92 msgstr "Adicionar e-mail"
7693
7794 #: templates/account/email.html:66
7895 msgid "Do you really want to remove the selected e-mail address?"
79 msgstr ""
96 msgstr "Deseja remover o endereço de e-mail selecionado?"
8097
8198 #: templates/account/email_confirm.html:6
8299 #: templates/account/email_confirm.html:10
83100 msgid "Confirm E-mail Address"
84 msgstr ""
101 msgstr "Confirmar endereço de e-mail"
85102
86103 #: templates/account/email_confirm.html:16
87104 #, python-format
89106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
90107 "address for user %(user_display)s."
91108 msgstr ""
109 "Por favor, confirme que <a href=\"mailto:%(email)s\">%(email)s</a> é um "
110 "endereço de e-mail do utilizador %(user_display)s."
92111
93112 #: templates/account/email_confirm.html:20
94113 msgid "Confirm"
95 msgstr ""
114 msgstr "Confirmar"
96115
97116 #: templates/account/email_confirm.html:27
98117 #, python-format
100119 "This e-mail confirmation link expired or is invalid. Please <a href="
101120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
102121 msgstr ""
122 "Esta ligação de confirmação de e-mail expirou ou é inválida. Por favor <a "
123 "href=\"%(email_url)s\">emita uma nova solicitação de confirmação por e-mail</"
124 "a>."
103125
104126 #: templates/account/login.html:7 templates/account/login.html:11
105127 #: templates/account/login.html:48
114136 "up</a>\n"
115137 "for a %(site_name)s account and sign in below:"
116138 msgstr ""
139 "Entre com uma das suas\n"
140 "contas de terceiros existentes. Ou <a href=\"%(signup_url)s\">inscreva-se</"
141 "a>\n"
142 "para uma conta do %(site_name)s e entre abaixo:"
117143
118144 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
145 #: templates/django_mailman3/profile/profile.html:72
120146 msgid "or"
121147 msgstr "ou"
122148
126152 "If you have not created an account yet, then please\n"
127153 "<a href=\"%(signup_url)s\">sign up</a> first."
128154 msgstr ""
155 "Se ainda não criou uma conta, por favor,\n"
156 "<a href=\"%(signup_url)s\">registe-se</a> primeiro."
129157
130158 #: templates/account/login.html:50
131159 msgid "Forgot Password?"
132 msgstr ""
160 msgstr "Esqueceu-se da palavra-passe?"
133161
134162 #: templates/account/logout.html:5 templates/account/logout.html:8
135163 #: templates/account/logout.html:17
136164 msgid "Sign Out"
137 msgstr ""
165 msgstr "Sair"
138166
139167 #: templates/account/logout.html:10
140168 msgid "Are you sure you want to sign out?"
141 msgstr ""
169 msgstr "Tem certeza que deseja sair?"
142170
143171 #: templates/account/password_change.html:12
144172 #: templates/account/password_reset_from_key.html:6
145173 #: templates/account/password_reset_from_key.html:9
146174 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148175 msgid "Change Password"
149 msgstr ""
176 msgstr "Alterar palavra-passe"
150177
151178 #: templates/account/password_reset.html:7
152179 #: templates/account/password_reset.html:11
153180 msgid "Password Reset"
154 msgstr ""
181 msgstr "Redefinição de palavra-passe"
155182
156183 #: templates/account/password_reset.html:16
157184 msgid ""
158185 "Forgotten your password? Enter your e-mail address below, and we'll send you "
159186 "an e-mail allowing you to reset it."
160187 msgstr ""
188 "Esqueceu-se da sua palavra-passe? Digite o seu endereço de e-mail abaixo e "
189 "enviaremos um e-mail para que possa redefini-la."
161190
162191 #: templates/account/password_reset.html:22
163192 msgid "Reset My Password"
164 msgstr ""
193 msgstr "Redefinir minha palavra-passe"
165194
166195 #: templates/account/password_reset.html:27
167196 msgid "Please contact us if you have any trouble resetting your password."
168197 msgstr ""
198 "Entre em contato conosco se tiver algum problema para redefinir a sua "
199 "palavra-passe."
169200
170201 #: templates/account/password_reset_from_key.html:9
171202 msgid "Bad Token"
172 msgstr ""
203 msgstr "Token ruim"
173204
174205 #: templates/account/password_reset_from_key.html:13
175206 #, python-format
178209 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
179210 "a>."
180211 msgstr ""
212 "A ligação de redefinição de palavra-passe era inválido, possivelmente porque "
213 "já foi usado. Solicite <a href=\"%(passwd_reset_url)s\">nova redefinição de "
214 "palavra-passe</a>."
181215
182216 #: templates/account/password_reset_from_key.html:20
183217 msgid "change password"
184 msgstr ""
218 msgstr "alterar palavra-passe"
185219
186220 #: templates/account/password_reset_from_key.html:25
187221 msgid "Your password is now changed."
188 msgstr ""
222 msgstr "A sua palavra-passe foi alterada."
189223
190224 #: templates/account/password_set.html:12
191225 msgid "Set Password"
192 msgstr ""
226 msgstr "Definir palavra-passe"
193227
194228 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
195229 msgid "Signup"
196 msgstr ""
230 msgstr "Registar-se"
197231
198232 #: templates/account/signup.html:9 templates/account/signup.html:20
199233 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
204238 #, python-format
205239 msgid ""
206240 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207 msgstr ""
208
209 #: templates/django_mailman3/paginator/pagination.html:41
241 msgstr "já tem uma conta? Então <a href=\"%(login_url)s\">entre</a>."
242
243 #: templates/django_mailman3/paginator/pagination.html:43
210244 msgid "Jump to page:"
211 msgstr ""
212
213 #: templates/django_mailman3/paginator/pagination.html:59
245 msgstr "Pular para página:"
246
247 #: templates/django_mailman3/paginator/pagination.html:61
214248 msgid "Results per page:"
215 msgstr ""
216
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
249 msgstr "Resultados por página:"
250
251 #: templates/django_mailman3/paginator/pagination.html:77
252 #: templates/django_mailman3/profile/profile.html:71
219253 msgid "Update"
220254 msgstr "Atualizar"
221255
222 #: templates/django_mailman3/profile/base.html:5
256 #: templates/django_mailman3/profile/base.html:6
223257 msgid "User Profile"
224258 msgstr "Perfil do Utilizador"
225259
226 #: templates/django_mailman3/profile/base.html:12
260 #: templates/django_mailman3/profile/base.html:13
227261 msgid "User profile"
228262 msgstr "Perfil do utilizador"
229263
230 #: templates/django_mailman3/profile/base.html:12
264 #: templates/django_mailman3/profile/base.html:13
231265 msgid "for"
232266 msgstr "para"
233267
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
268 #: templates/django_mailman3/profile/base.html:23
236269 msgid "E-mail Addresses"
237 msgstr ""
238
239 #: templates/django_mailman3/profile/base.html:29
270 msgstr "Endereços de e-mail"
271
240272 #: templates/django_mailman3/profile/base.html:30
241273 msgid "Account Connections"
242 msgstr ""
243
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
274 msgstr "Conexões da conta"
275
276 #: templates/django_mailman3/profile/base.html:35
277 #: templates/django_mailman3/profile/delete_profile.html:17
247278 msgid "Delete Account"
248 msgstr ""
249
250 #: templates/django_mailman3/profile/delete_profile.html:13
279 msgstr "Apagar conta"
280
281 #: templates/django_mailman3/profile/delete_profile.html:12
251282 msgid ""
252283 "Are you sure you want to delete your account? This will remove your account "
253284 "along with all your subscriptions."
254285 msgstr ""
255
256 #: templates/django_mailman3/profile/profile.html:18
257 #: templates/django_mailman3/profile/profile.html:53
286 "Tem certeza que deseja apagar a sua conta? Isso removerá a sua conta com "
287 "todas as suas inscrições."
288
289 #: templates/django_mailman3/profile/profile.html:20
290 #: templates/django_mailman3/profile/profile.html:57
258291 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
292 msgstr "Editar em"
293
294 #: templates/django_mailman3/profile/profile.html:28
262295 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
296 msgstr "E-mail primário:"
297
298 #: templates/django_mailman3/profile/profile.html:34
266299 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
300 msgstr "Outros e-mails:"
301
302 #: templates/django_mailman3/profile/profile.html:40
270303 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
304 msgstr "(nenhum outro e-mail)"
305
306 #: templates/django_mailman3/profile/profile.html:45
274307 msgid "Link another address"
275308 msgstr "Vincular outro endereço"
276309
277 #: templates/django_mailman3/profile/profile.html:49
310 #: templates/django_mailman3/profile/profile.html:53
278311 msgid "Avatar:"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:58
312 msgstr "Avatar:"
313
314 #: templates/django_mailman3/profile/profile.html:63
282315 msgid "Joined on:"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:67
316 msgstr "Juntou-se em:"
317
318 #: templates/django_mailman3/profile/profile.html:72
286319 msgid "cancel"
287320 msgstr "cancelar"
288321
289322 #: templates/openid/login.html:10
290323 msgid "OpenID Sign In"
291 msgstr ""
324 msgstr "Entrar com OpenID"
292325
293326 #: templates/socialaccount/connections.html:9
294327 msgid ""
295328 "You can sign in to your account using any of the following third party "
296329 "accounts:"
297330 msgstr ""
331 "Pode entrar na sua conta a usar qualquer uma das seguintes contas de "
332 "terceiros:"
298333
299334 #: templates/socialaccount/connections.html:42
300335 msgid ""
301336 "You currently have no social network accounts connected to this account."
302 msgstr ""
337 msgstr "Atualmente, não tem contas de redes sociais conectadas a esta conta."
303338
304339 #: templates/socialaccount/connections.html:45
305340 msgid "Add a 3rd Party Account"
306 msgstr ""
341 msgstr "Adicionar uma conta de terceiros"
307342
308343 #: templates/socialaccount/signup.html:11
309344 #, python-format
311346 "You are about to use your %(provider_name)s account to login to\n"
312347 "%(site_name)s. As a final step, please complete the following form:"
313348 msgstr ""
349 "Usará a sua a conta %(provider_name)s para entrar em\n"
350 "%(site_name)s. Como etapa final, preencha o seguinte formulário:"
314351
315352 #: templatetags/pagination.py:43
316353 msgid "Newer"
317 msgstr ""
354 msgstr "Mais novos"
318355
319356 #: templatetags/pagination.py:44
320357 msgid "Older"
321 msgstr ""
358 msgstr "Mais velhos"
322359
323360 #: templatetags/pagination.py:46
324361 msgid "Previous"
325 msgstr ""
362 msgstr "Anterior"
326363
327364 #: templatetags/pagination.py:47
328365 msgid "Next"
329 msgstr ""
330
331 #: views/profile.py:73
366 msgstr "Próximo"
367
368 #: views/profile.py:72
332369 msgid "The profile was successfully updated."
333 msgstr ""
334
335 #: views/profile.py:75
370 msgstr "O perfil foi atualizado com sucesso."
371
372 #: views/profile.py:74
336373 msgid "No change detected."
337 msgstr ""
338
339 #: views/profile.py:108
374 msgstr "Nenhuma mudança detectada."
375
376 #: views/profile.py:110
340377 msgid "Successfully deleted account"
341 msgstr ""
378 msgstr "Conta apagada com sucesso"
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "PO-Revision-Date: 2020-06-08 13:41+0000\n"
11 "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-07-25 22:24+0000\n"
11 "Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
1212 "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
1313 "gnu-mailman/django-mailman3/pt_BR/>\n"
1414 "Language: pt_BR\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 "X-Generator: Weblate 4.1-dev\n"
19 "X-Generator: Weblate 4.7.2-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr "Nome de usuário"
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr "Primeiro nome"
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr "Sobrenome"
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr "Fuso horário"
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Já existe um usuário com esse nome."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Conta"
5065
5166 #: templates/account/email.html:36
5267 msgid "Re-send Verification"
53 msgstr ""
68 msgstr "Reenviar verificação"
5469
5570 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5671 msgid "Remove"
57 msgstr ""
72 msgstr "Remover"
5873
5974 #: templates/account/email.html:44
6075 msgid "Warning:"
61 msgstr ""
76 msgstr "Aviso:"
6277
6378 #: templates/account/email.html:44
6479 msgid ""
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
6782 msgstr ""
83 "Você ainda não configurou um endereço de e-mail. Você deve adicionar um "
84 "endereço de e-mail para receber notificações, redefinir sua senha etc."
6885
6986 #: templates/account/email.html:49
7087 msgid "Add E-mail Address"
71 msgstr ""
88 msgstr "Adicionar endereço de e-mail"
7289
7390 #: templates/account/email.html:55
7491 msgid "Add E-mail"
75 msgstr ""
92 msgstr "Adicionar e-mail"
7693
7794 #: templates/account/email.html:66
7895 msgid "Do you really want to remove the selected e-mail address?"
79 msgstr ""
96 msgstr "Deseja remover o endereço de e-mail selecionado?"
8097
8198 #: templates/account/email_confirm.html:6
8299 #: templates/account/email_confirm.html:10
83100 msgid "Confirm E-mail Address"
84 msgstr ""
101 msgstr "Confirmar endereço de e-mail"
85102
86103 #: templates/account/email_confirm.html:16
87104 #, python-format
89106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
90107 "address for user %(user_display)s."
91108 msgstr ""
109 "Por favor, confirme que <a href=\"mailto:%(email)s\">%(email)s</a> é um "
110 "endereço de e-mail do usuário %(user_display)s."
92111
93112 #: templates/account/email_confirm.html:20
94113 msgid "Confirm"
100119 "This e-mail confirmation link expired or is invalid. Please <a href="
101120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
102121 msgstr ""
122 "Este link de confirmação de e-mail expirou ou é inválido. Por favor <a href="
123 "\"%(email_url)s\">emita uma nova solicitação de confirmação por e-mail</a>."
103124
104125 #: templates/account/login.html:7 templates/account/login.html:11
105126 #: templates/account/login.html:48
106127 msgid "Sign In"
107 msgstr ""
128 msgstr "Entrar"
108129
109130 #: templates/account/login.html:18
110131 #, python-format
114135 "up</a>\n"
115136 "for a %(site_name)s account and sign in below:"
116137 msgstr ""
138 "Entre com uma de suas\n"
139 "contas de terceiros existentes. Ou <a href=\"%(signup_url)s\">inscreva-se</"
140 "a>\n"
141 "para uma conta do %(site_name)s e entre abaixo:"
117142
118143 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
144 #: templates/django_mailman3/profile/profile.html:72
120145 msgid "or"
121 msgstr ""
146 msgstr "ou"
122147
123148 #: templates/account/login.html:37
124149 #, python-format
126151 "If you have not created an account yet, then please\n"
127152 "<a href=\"%(signup_url)s\">sign up</a> first."
128153 msgstr ""
154 "Se você ainda não criou uma conta, por favor,\n"
155 "<a href=\"%(signup_url)s\">registre-se</a> primeiro."
129156
130157 #: templates/account/login.html:50
131158 msgid "Forgot Password?"
132 msgstr ""
159 msgstr "Esqueceu a senha?"
133160
134161 #: templates/account/logout.html:5 templates/account/logout.html:8
135162 #: templates/account/logout.html:17
136163 msgid "Sign Out"
137 msgstr ""
164 msgstr "Sair"
138165
139166 #: templates/account/logout.html:10
140167 msgid "Are you sure you want to sign out?"
141 msgstr ""
168 msgstr "Tem certeza que deseja sair?"
142169
143170 #: templates/account/password_change.html:12
144171 #: templates/account/password_reset_from_key.html:6
145172 #: templates/account/password_reset_from_key.html:9
146173 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148174 msgid "Change Password"
149 msgstr ""
175 msgstr "Alterar senha"
150176
151177 #: templates/account/password_reset.html:7
152178 #: templates/account/password_reset.html:11
153179 msgid "Password Reset"
154 msgstr ""
180 msgstr "Redefinição de senha"
155181
156182 #: templates/account/password_reset.html:16
157183 msgid ""
158184 "Forgotten your password? Enter your e-mail address below, and we'll send you "
159185 "an e-mail allowing you to reset it."
160186 msgstr ""
187 "Esqueceu sua senha? Digite seu endereço de e-mail abaixo e enviaremos um e-"
188 "mail para que possa redefini-la."
161189
162190 #: templates/account/password_reset.html:22
163191 msgid "Reset My Password"
164 msgstr ""
192 msgstr "Redefinir minha senha"
165193
166194 #: templates/account/password_reset.html:27
167195 msgid "Please contact us if you have any trouble resetting your password."
168196 msgstr ""
197 "Entre em contato conosco se tiver algum problema para redefinir sua senha."
169198
170199 #: templates/account/password_reset_from_key.html:9
171200 msgid "Bad Token"
172 msgstr ""
201 msgstr "Token ruim"
173202
174203 #: templates/account/password_reset_from_key.html:13
175204 #, python-format
178207 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
179208 "a>."
180209 msgstr ""
210 "O link de redefinição de senha era inválido, possivelmente porque já foi "
211 "usado. Solicite <a href=\"%(passwd_reset_url)s\">nova redefinição de senha</"
212 "a>."
181213
182214 #: templates/account/password_reset_from_key.html:20
183215 msgid "change password"
184 msgstr ""
216 msgstr "alterar senha"
185217
186218 #: templates/account/password_reset_from_key.html:25
187219 msgid "Your password is now changed."
188 msgstr ""
220 msgstr "Sua senha foi alterada."
189221
190222 #: templates/account/password_set.html:12
191223 msgid "Set Password"
192 msgstr ""
224 msgstr "Definir senha"
193225
194226 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
195227 msgid "Signup"
196 msgstr ""
228 msgstr "Registrar-se"
197229
198230 #: templates/account/signup.html:9 templates/account/signup.html:20
199231 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
200232 msgid "Sign Up"
201 msgstr ""
233 msgstr "Inscrever-se"
202234
203235 #: templates/account/signup.html:11
204236 #, python-format
205237 msgid ""
206238 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207 msgstr ""
208
209 #: templates/django_mailman3/paginator/pagination.html:41
239 msgstr "já tem uma conta? Então <a href=\"%(login_url)s\">entre</a>."
240
241 #: templates/django_mailman3/paginator/pagination.html:43
210242 msgid "Jump to page:"
211 msgstr ""
212
213 #: templates/django_mailman3/paginator/pagination.html:59
243 msgstr "Pular para página:"
244
245 #: templates/django_mailman3/paginator/pagination.html:61
214246 msgid "Results per page:"
215 msgstr ""
216
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
247 msgstr "Resultados por página:"
248
249 #: templates/django_mailman3/paginator/pagination.html:77
250 #: templates/django_mailman3/profile/profile.html:71
219251 msgid "Update"
220 msgstr ""
221
222 #: templates/django_mailman3/profile/base.html:5
252 msgstr "Atualizar"
253
254 #: templates/django_mailman3/profile/base.html:6
223255 msgid "User Profile"
224 msgstr ""
225
226 #: templates/django_mailman3/profile/base.html:12
256 msgstr "Perfil do usuário"
257
258 #: templates/django_mailman3/profile/base.html:13
227259 msgid "User profile"
228 msgstr ""
229
230 #: templates/django_mailman3/profile/base.html:12
260 msgstr "Perfil do usuário"
261
262 #: templates/django_mailman3/profile/base.html:13
231263 msgid "for"
232 msgstr ""
233
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
264 msgstr "para"
265
266 #: templates/django_mailman3/profile/base.html:23
236267 msgid "E-mail Addresses"
237 msgstr ""
238
239 #: templates/django_mailman3/profile/base.html:29
268 msgstr "Endereços de e-mail"
269
240270 #: templates/django_mailman3/profile/base.html:30
241271 msgid "Account Connections"
242 msgstr ""
243
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
272 msgstr "Conexões da conta"
273
274 #: templates/django_mailman3/profile/base.html:35
275 #: templates/django_mailman3/profile/delete_profile.html:17
247276 msgid "Delete Account"
248 msgstr ""
249
250 #: templates/django_mailman3/profile/delete_profile.html:13
277 msgstr "Excluir conta"
278
279 #: templates/django_mailman3/profile/delete_profile.html:12
251280 msgid ""
252281 "Are you sure you want to delete your account? This will remove your account "
253282 "along with all your subscriptions."
254283 msgstr ""
255
256 #: templates/django_mailman3/profile/profile.html:18
284 "Tem certeza que deseja excluir sua conta? Isso removerá sua conta junto com "
285 "todas as suas inscrições."
286
287 #: templates/django_mailman3/profile/profile.html:20
288 #: templates/django_mailman3/profile/profile.html:57
289 msgid "Edit on"
290 msgstr "Editar em"
291
292 #: templates/django_mailman3/profile/profile.html:28
293 msgid "Primary email:"
294 msgstr "E-mail primário:"
295
296 #: templates/django_mailman3/profile/profile.html:34
297 msgid "Other emails:"
298 msgstr "Outros e-mails:"
299
300 #: templates/django_mailman3/profile/profile.html:40
301 msgid "(no other email)"
302 msgstr "(nenhum outro e-mail)"
303
304 #: templates/django_mailman3/profile/profile.html:45
305 msgid "Link another address"
306 msgstr "Vincular outro endereço"
307
257308 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278309 msgid "Avatar:"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:58
310 msgstr "Avatar:"
311
312 #: templates/django_mailman3/profile/profile.html:63
282313 msgid "Joined on:"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:67
314 msgstr "Juntou-se em:"
315
316 #: templates/django_mailman3/profile/profile.html:72
286317 msgid "cancel"
287 msgstr ""
318 msgstr "cancelar"
288319
289320 #: templates/openid/login.html:10
290321 msgid "OpenID Sign In"
291 msgstr ""
322 msgstr "Entrar com OpenID"
292323
293324 #: templates/socialaccount/connections.html:9
294325 msgid ""
295326 "You can sign in to your account using any of the following third party "
296327 "accounts:"
297328 msgstr ""
329 "Você pode entrar na sua conta usando qualquer uma das seguintes contas de "
330 "terceiros:"
298331
299332 #: templates/socialaccount/connections.html:42
300333 msgid ""
301334 "You currently have no social network accounts connected to this account."
302335 msgstr ""
336 "Atualmente, você não tem contas de redes sociais conectadas a esta conta."
303337
304338 #: templates/socialaccount/connections.html:45
305339 msgid "Add a 3rd Party Account"
306 msgstr ""
340 msgstr "Adicionar uma conta de terceiros"
307341
308342 #: templates/socialaccount/signup.html:11
309343 #, python-format
311345 "You are about to use your %(provider_name)s account to login to\n"
312346 "%(site_name)s. As a final step, please complete the following form:"
313347 msgstr ""
348 "Você usará sua a conta %(provider_name)s para entrar em\n"
349 "%(site_name)s. Como etapa final, preencha o seguinte formulário:"
314350
315351 #: templatetags/pagination.py:43
316352 msgid "Newer"
317 msgstr ""
353 msgstr "Mais novos"
318354
319355 #: templatetags/pagination.py:44
320356 msgid "Older"
321 msgstr ""
357 msgstr "Mais velhos"
322358
323359 #: templatetags/pagination.py:46
324360 msgid "Previous"
325 msgstr ""
361 msgstr "Anterior"
326362
327363 #: templatetags/pagination.py:47
328364 msgid "Next"
329 msgstr ""
330
331 #: views/profile.py:73
365 msgstr "Próximo"
366
367 #: views/profile.py:72
332368 msgid "The profile was successfully updated."
333 msgstr ""
334
335 #: views/profile.py:75
369 msgstr "O perfil foi atualizado com sucesso."
370
371 #: views/profile.py:74
336372 msgid "No change detected."
337 msgstr ""
338
339 #: views/profile.py:108
373 msgstr "Nenhuma mudança detectada."
374
375 #: views/profile.py:110
340376 msgid "Successfully deleted account"
341 msgstr ""
377 msgstr "Conta excluída com sucesso"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
1919 "2:1));\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-09-03 01:50+0000\n"
1111 "Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n"
1212 "Language-Team: Russian <https://hosted.weblate.org/projects/gnu-mailman/"
2020 "%100>=11 && n%100<=14)? 2 : 3);\n"
2121 "X-Generator: Weblate 4.3-dev\n"
2222
23 #: forms.py:32
24 msgid "Username"
25 msgstr ""
26
27 #: forms.py:33
28 msgid "First name"
29 msgstr ""
30
31 #: forms.py:34
32 msgid "Last name"
33 msgstr ""
34
35 #: forms.py:36
36 msgid "Time zone"
37 msgstr ""
38
2339 #: forms.py:43
2440 msgid "A user with that username already exists."
2541 msgstr "Пользователь с таким именем уже существует."
2642
2743 #: templates/account/email.html:6
28 #: templates/django_mailman3/profile/base.html:16
2944 #: templates/django_mailman3/profile/base.html:17
3045 msgid "Account"
3146 msgstr "Аккаунт"
118133 msgstr ""
119134
120135 #: templates/account/login.html:30
121 #: templates/django_mailman3/profile/profile.html:67
136 #: templates/django_mailman3/profile/profile.html:72
122137 msgid "or"
123138 msgstr "или"
124139
146161 #: templates/account/password_reset_from_key.html:6
147162 #: templates/account/password_reset_from_key.html:9
148163 #: templates/django_mailman3/profile/base.html:20
149 #: templates/django_mailman3/profile/base.html:21
150164 msgid "Change Password"
151165 msgstr "Изменить пароль"
152166
212226 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:41
229 #: templates/django_mailman3/paginator/pagination.html:43
216230 msgid "Jump to page:"
217231 msgstr "Перейти к странице:"
218232
219 #: templates/django_mailman3/paginator/pagination.html:59
233 #: templates/django_mailman3/paginator/pagination.html:61
220234 msgid "Results per page:"
221235 msgstr "Результатов на странице:"
222236
223 #: templates/django_mailman3/paginator/pagination.html:75
224 #: templates/django_mailman3/profile/profile.html:66
237 #: templates/django_mailman3/paginator/pagination.html:77
238 #: templates/django_mailman3/profile/profile.html:71
225239 msgid "Update"
226240 msgstr "Обновление"
227241
228 #: templates/django_mailman3/profile/base.html:5
242 #: templates/django_mailman3/profile/base.html:6
229243 msgid "User Profile"
230244 msgstr "Профиль Пользователя"
231245
232 #: templates/django_mailman3/profile/base.html:12
246 #: templates/django_mailman3/profile/base.html:13
233247 msgid "User profile"
234248 msgstr "Профиль пользователя"
235249
236 #: templates/django_mailman3/profile/base.html:12
250 #: templates/django_mailman3/profile/base.html:13
237251 msgid "for"
238252 msgstr "для"
239253
240 #: templates/django_mailman3/profile/base.html:24
241 #: templates/django_mailman3/profile/base.html:25
254 #: templates/django_mailman3/profile/base.html:23
242255 msgid "E-mail Addresses"
243256 msgstr "Адреса электронной почты"
244257
245 #: templates/django_mailman3/profile/base.html:29
246258 #: templates/django_mailman3/profile/base.html:30
247259 msgid "Account Connections"
248260 msgstr "Подключения Учетной Записи"
249261
250 #: templates/django_mailman3/profile/base.html:33
251 #: templates/django_mailman3/profile/base.html:34
252 #: templates/django_mailman3/profile/delete_profile.html:18
262 #: templates/django_mailman3/profile/base.html:35
263 #: templates/django_mailman3/profile/delete_profile.html:17
253264 msgid "Delete Account"
254265 msgstr "Удалить аккаунт"
255266
256 #: templates/django_mailman3/profile/delete_profile.html:13
267 #: templates/django_mailman3/profile/delete_profile.html:12
257268 msgid ""
258269 "Are you sure you want to delete your account? This will remove your account "
259270 "along with all your subscriptions."
260271 msgstr ""
261272
262 #: templates/django_mailman3/profile/profile.html:18
263 #: templates/django_mailman3/profile/profile.html:53
273 #: templates/django_mailman3/profile/profile.html:20
274 #: templates/django_mailman3/profile/profile.html:57
264275 msgid "Edit on"
265276 msgstr "Редактировать на"
266277
267 #: templates/django_mailman3/profile/profile.html:25
278 #: templates/django_mailman3/profile/profile.html:28
268279 msgid "Primary email:"
269280 msgstr "Основной адрес электронной почты:"
270281
271 #: templates/django_mailman3/profile/profile.html:31
282 #: templates/django_mailman3/profile/profile.html:34
272283 msgid "Other emails:"
273284 msgstr "Другая электронная почта:"
274285
275 #: templates/django_mailman3/profile/profile.html:37
286 #: templates/django_mailman3/profile/profile.html:40
276287 msgid "(no other email)"
277288 msgstr "(нет другой электронной почты)"
278289
279 #: templates/django_mailman3/profile/profile.html:42
290 #: templates/django_mailman3/profile/profile.html:45
280291 msgid "Link another address"
281292 msgstr "Ссылка на другой адрес"
282293
283 #: templates/django_mailman3/profile/profile.html:49
294 #: templates/django_mailman3/profile/profile.html:53
284295 msgid "Avatar:"
285296 msgstr "Аватар:"
286297
287 #: templates/django_mailman3/profile/profile.html:58
298 #: templates/django_mailman3/profile/profile.html:63
288299 msgid "Joined on:"
289300 msgstr "Присоединился:"
290301
291 #: templates/django_mailman3/profile/profile.html:67
302 #: templates/django_mailman3/profile/profile.html:72
292303 msgid "cancel"
293304 msgstr "отмена"
294305
336347 msgid "Next"
337348 msgstr "Следующий"
338349
339 #: views/profile.py:73
350 #: views/profile.py:72
340351 msgid "The profile was successfully updated."
341352 msgstr "Профиль был успешно обновлен."
342353
343 #: views/profile.py:75
354 #: views/profile.py:74
344355 msgid "No change detected."
345356 msgstr "Изменений не обнаружено."
346357
347 #: views/profile.py:108
358 #: views/profile.py:110
348359 msgid "Successfully deleted account"
349360 msgstr "Успешно удален аккаунт"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 #, fuzzy
65 msgid ""
76 msgstr ""
87 "Project-Id-Version: PACKAGE VERSION\n"
98 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-04-20 14:29+0000\n"
11 "Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
12 "Language-Team: Sinhala <https://hosted.weblate.org/projects/gnu-mailman/"
13 "django-mailman3/si/>\n"
14 "Language: si\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
1836
1937 #: forms.py:43
2038 msgid "A user with that username already exists."
2139 msgstr ""
2240
2341 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2542 #: templates/django_mailman3/profile/base.html:17
2643 msgid "Account"
2744 msgstr ""
5269
5370 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5471 msgid "Remove"
55 msgstr ""
72 msgstr "ඉවත් කරන්න"
5673
5774 #: templates/account/email.html:44
5875 msgid "Warning:"
59 msgstr ""
76 msgstr "අවවාදයයි:"
6077
6178 #: templates/account/email.html:44
6279 msgid ""
114131 msgstr ""
115132
116133 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
118135 msgid "or"
119136 msgstr ""
120137
142159 #: templates/account/password_reset_from_key.html:6
143160 #: templates/account/password_reset_from_key.html:9
144161 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146162 msgid "Change Password"
147163 msgstr ""
148164
204220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205221 msgstr ""
206222
207 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
208224 msgid "Jump to page:"
209225 msgstr ""
210226
211 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
212228 msgid "Results per page:"
213229 msgstr ""
214230
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
217233 msgid "Update"
218234 msgstr ""
219235
220 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
221237 msgid "User Profile"
222238 msgstr ""
223239
224 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
225241 msgid "User profile"
226242 msgstr ""
227243
228 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
229245 msgid "for"
230246 msgstr ""
231247
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
234249 msgid "E-mail Addresses"
235250 msgstr ""
236251
237 #: templates/django_mailman3/profile/base.html:29
238252 #: templates/django_mailman3/profile/base.html:30
239253 msgid "Account Connections"
240254 msgstr ""
241255
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
245258 msgid "Delete Account"
246259 msgstr ""
247260
248 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
249262 msgid ""
250263 "Are you sure you want to delete your account? This will remove your account "
251264 "along with all your subscriptions."
252265 msgstr ""
253266
254 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
255288 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276289 msgid "Avatar:"
277290 msgstr ""
278291
279 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
280293 msgid "Joined on:"
281294 msgstr ""
282295
283 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
284297 msgid "cancel"
285298 msgstr ""
286299
326339 msgid "Next"
327340 msgstr ""
328341
329 #: views/profile.py:73
342 #: views/profile.py:72
330343 msgid "The profile was successfully updated."
331344 msgstr ""
332345
333 #: views/profile.py:75
346 #: views/profile.py:74
334347 msgid "No change detected."
335348 msgstr ""
336349
337 #: views/profile.py:108
350 #: views/profile.py:110
338351 msgid "Successfully deleted account"
339352 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
1919 "%100==4 ? 2 : 3);\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1010 "PO-Revision-Date: 2020-04-16 10:11+0000\n"
1111 "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
1212 "Language-Team: Albanian <https://hosted.weblate.org/projects/gnu-mailman/"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
1919 "X-Generator: Weblate 4.0.1-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Ka tashmë një emër të tillë përdoruesi."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Llogari"
121136 "for a %(site_name)s account and sign in below:"
122137 msgstr ""
123138 "Ju lutemi, hyni me një\n"
124 "nga llogaritë tuaja ekzistuese prej palësh të treta. Ose, <a href=\""
125 "%(signup_url)s\">regjistrohuni</a>\n"
139 "nga llogaritë tuaja ekzistuese prej palësh të treta. Ose, <a href="
140 "\"%(signup_url)s\">regjistrohuni</a>\n"
126141 "për një llogari %(site_name)s dhe bëni hyrjen më poshtë:"
127142
128143 #: templates/account/login.html:30
129 #: templates/django_mailman3/profile/profile.html:67
144 #: templates/django_mailman3/profile/profile.html:72
130145 msgid "or"
131146 msgstr "ose"
132147
156171 #: templates/account/password_reset_from_key.html:6
157172 #: templates/account/password_reset_from_key.html:9
158173 #: templates/django_mailman3/profile/base.html:20
159 #: templates/django_mailman3/profile/base.html:21
160174 msgid "Change Password"
161175 msgstr "Ndryshoni Fjalëkalimin"
162176
195209 "a>."
196210 msgstr ""
197211 "Lidhja e ricaktimit të fjalëkalimit qe e pavlefshme, mundet ngaqë qe "
198 "përdorur tashmë një herë. Ju lutemi, kërkoni një <a href=\""
199 "%(passwd_reset_url)s\">ricaktim të ri fjalëkalimi</a>."
212 "përdorur tashmë një herë. Ju lutemi, kërkoni një <a href="
213 "\"%(passwd_reset_url)s\">ricaktim të ri fjalëkalimi</a>."
200214
201215 #: templates/account/password_reset_from_key.html:20
202216 msgid "change password"
227241 "Keni tashmë një llogari? Atëherë, ju lutemi, <a href=\"%(login_url)s\">bëni "
228242 "hyrjen</a>."
229243
230 #: templates/django_mailman3/paginator/pagination.html:41
244 #: templates/django_mailman3/paginator/pagination.html:43
231245 msgid "Jump to page:"
232246 msgstr "Shko te faqja e fundit:"
233247
234 #: templates/django_mailman3/paginator/pagination.html:59
248 #: templates/django_mailman3/paginator/pagination.html:61
235249 msgid "Results per page:"
236250 msgstr "Përfundime për faqe:"
237251
238 #: templates/django_mailman3/paginator/pagination.html:75
239 #: templates/django_mailman3/profile/profile.html:66
252 #: templates/django_mailman3/paginator/pagination.html:77
253 #: templates/django_mailman3/profile/profile.html:71
240254 msgid "Update"
241255 msgstr "Përditësoje"
242256
243 #: templates/django_mailman3/profile/base.html:5
257 #: templates/django_mailman3/profile/base.html:6
244258 msgid "User Profile"
245259 msgstr "Profil Përdoruesi"
246260
247 #: templates/django_mailman3/profile/base.html:12
261 #: templates/django_mailman3/profile/base.html:13
248262 msgid "User profile"
249263 msgstr "Profil përdoruesi"
250264
251 #: templates/django_mailman3/profile/base.html:12
265 #: templates/django_mailman3/profile/base.html:13
252266 msgid "for"
253267 msgstr "për"
254268
255 #: templates/django_mailman3/profile/base.html:24
256 #: templates/django_mailman3/profile/base.html:25
269 #: templates/django_mailman3/profile/base.html:23
257270 msgid "E-mail Addresses"
258271 msgstr "Adresa Email"
259272
260 #: templates/django_mailman3/profile/base.html:29
261273 #: templates/django_mailman3/profile/base.html:30
262274 msgid "Account Connections"
263275 msgstr "Lidhje Llogarie"
264276
265 #: templates/django_mailman3/profile/base.html:33
266 #: templates/django_mailman3/profile/base.html:34
267 #: templates/django_mailman3/profile/delete_profile.html:18
277 #: templates/django_mailman3/profile/base.html:35
278 #: templates/django_mailman3/profile/delete_profile.html:17
268279 msgid "Delete Account"
269280 msgstr "Fshini Llogari"
270281
271 #: templates/django_mailman3/profile/delete_profile.html:13
282 #: templates/django_mailman3/profile/delete_profile.html:12
272283 msgid ""
273284 "Are you sure you want to delete your account? This will remove your account "
274285 "along with all your subscriptions."
276287 "Jeni i sigurt se doni të fshihet llogaria juaj? Kjo do të heqë llogarinë "
277288 "tuaj tok me krejt pajtimet tuaja."
278289
279 #: templates/django_mailman3/profile/profile.html:18
280 #: templates/django_mailman3/profile/profile.html:53
290 #: templates/django_mailman3/profile/profile.html:20
291 #: templates/django_mailman3/profile/profile.html:57
281292 msgid "Edit on"
282293 msgstr "Përpunojeni në"
283294
284 #: templates/django_mailman3/profile/profile.html:25
295 #: templates/django_mailman3/profile/profile.html:28
285296 msgid "Primary email:"
286297 msgstr "Email parësor:"
287298
288 #: templates/django_mailman3/profile/profile.html:31
299 #: templates/django_mailman3/profile/profile.html:34
289300 msgid "Other emails:"
290301 msgstr "Email-e të tjerë:"
291302
292 #: templates/django_mailman3/profile/profile.html:37
303 #: templates/django_mailman3/profile/profile.html:40
293304 msgid "(no other email)"
294305 msgstr "(pa email tjetër)"
295306
296 #: templates/django_mailman3/profile/profile.html:42
307 #: templates/django_mailman3/profile/profile.html:45
297308 msgid "Link another address"
298309 msgstr "Lidhni një tjetër adresë"
299310
300 #: templates/django_mailman3/profile/profile.html:49
311 #: templates/django_mailman3/profile/profile.html:53
301312 msgid "Avatar:"
302313 msgstr "Avatar:"
303314
304 #: templates/django_mailman3/profile/profile.html:58
315 #: templates/django_mailman3/profile/profile.html:63
305316 msgid "Joined on:"
306317 msgstr "U bë pjesë më:"
307318
308 #: templates/django_mailman3/profile/profile.html:67
319 #: templates/django_mailman3/profile/profile.html:72
309320 msgid "cancel"
310321 msgstr "anuloje"
311322
324335 #: templates/socialaccount/connections.html:42
325336 msgid ""
326337 "You currently have no social network accounts connected to this account."
327 msgstr "Aktualisht s’keni llogari rrjetesh shoqërorë të lidhur me këtë llogari."
338 msgstr ""
339 "Aktualisht s’keni llogari rrjetesh shoqërorë të lidhur me këtë llogari."
328340
329341 #: templates/socialaccount/connections.html:45
330342 msgid "Add a 3rd Party Account"
355367 msgid "Next"
356368 msgstr "Pasues"
357369
358 #: views/profile.py:73
370 #: views/profile.py:72
359371 msgid "The profile was successfully updated."
360372 msgstr "Profili u përditësua me sukses."
361373
362 #: views/profile.py:75
374 #: views/profile.py:74
363375 msgid "No change detected."
364376 msgstr "S’u pikas ndryshim."
365377
366 #: views/profile.py:108
378 #: views/profile.py:110
367379 msgid "Successfully deleted account"
368380 msgstr "Llogaria u fshi me sukses"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1818 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
1919 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr ""
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr ""
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr ""
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr ""
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "PO-Revision-Date: 2020-03-31 20:13+0000\n"
11 "Last-Translator: Andreas Johansson <andjo@lysator.liu.se>\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-05-30 22:30+0000\n"
11 "Last-Translator: Jonas B <joonas-b@hotmail.se>\n"
1212 "Language-Team: Swedish <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/sv/>\n"
1414 "Language: sv\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 "X-Generator: Weblate 4.0-dev\n"
19 "X-Generator: Weblate 4.7-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "En användare med det namnet finns redan."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Konto"
91106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
92107 "address for user %(user_display)s."
93108 msgstr ""
109 "Godkänn att <a href=\"mailto:%(email)s\">%(email)s</a> är en e-postadress "
110 "för användaren %(user_display)s."
94111
95112 #: templates/account/email_confirm.html:20
96113 msgid "Confirm"
102119 "This e-mail confirmation link expired or is invalid. Please <a href="
103120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
104121 msgstr ""
122 "E-postbekräftelselänken har löpt ut eller är ogiltig. <a href=\"%(email_url)s"
123 "\">Skicka en ny bekräftelselänk.</a>."
105124
106125 #: templates/account/login.html:7 templates/account/login.html:11
107126 #: templates/account/login.html:48
116135 "up</a>\n"
117136 "for a %(site_name)s account and sign in below:"
118137 msgstr ""
138 "Logga in med ett\n"
139 "av dina befintliga konton. Eller <a href=\"%(signup_url)s\">registrera dig</"
140 "a>\n"
141 "med ett %(site_name)s-konto och logga in här under:"
119142
120143 #: templates/account/login.html:30
121 #: templates/django_mailman3/profile/profile.html:67
144 #: templates/django_mailman3/profile/profile.html:72
122145 msgid "or"
123146 msgstr "eller"
124147
148171 #: templates/account/password_reset_from_key.html:6
149172 #: templates/account/password_reset_from_key.html:9
150173 #: templates/django_mailman3/profile/base.html:20
151 #: templates/django_mailman3/profile/base.html:21
152174 msgid "Change Password"
153175 msgstr "Ändra lösenord"
154176
175197
176198 #: templates/account/password_reset_from_key.html:9
177199 msgid "Bad Token"
178 msgstr ""
200 msgstr "Fel token"
179201
180202 #: templates/account/password_reset_from_key.html:13
181203 #, python-format
184206 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
185207 "a>."
186208 msgstr ""
209 "Lösenordsåterställningslänken var ogiltig, kanske för att den redan använts. "
210 "Var god begär <a href=\"%(passwd_reset_url)s\">lösenordsåterställning</a> på "
211 "nytt."
187212
188213 #: templates/account/password_reset_from_key.html:20
189214 msgid "change password"
199224
200225 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
201226 msgid "Signup"
202 msgstr ""
227 msgstr "Registrera"
203228
204229 #: templates/account/signup.html:9 templates/account/signup.html:20
205230 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
206231 msgid "Sign Up"
207 msgstr ""
232 msgstr "Registrera"
208233
209234 #: templates/account/signup.html:11
210235 #, python-format
211236 msgid ""
212237 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
213238 msgstr ""
214
215 #: templates/django_mailman3/paginator/pagination.html:41
239 "Du kan <a href=\"%(login_url)s\">logga in</a> om du redan har ett konto."
240
241 #: templates/django_mailman3/paginator/pagination.html:43
216242 msgid "Jump to page:"
217 msgstr ""
218
219 #: templates/django_mailman3/paginator/pagination.html:59
243 msgstr "Gå till sida:"
244
245 #: templates/django_mailman3/paginator/pagination.html:61
220246 msgid "Results per page:"
221 msgstr ""
222
223 #: templates/django_mailman3/paginator/pagination.html:75
224 #: templates/django_mailman3/profile/profile.html:66
247 msgstr "Resultat per sida:"
248
249 #: templates/django_mailman3/paginator/pagination.html:77
250 #: templates/django_mailman3/profile/profile.html:71
225251 msgid "Update"
226 msgstr ""
227
228 #: templates/django_mailman3/profile/base.html:5
252 msgstr "Uppdatera"
253
254 #: templates/django_mailman3/profile/base.html:6
229255 msgid "User Profile"
230 msgstr ""
231
232 #: templates/django_mailman3/profile/base.html:12
256 msgstr "Användarprofil"
257
258 #: templates/django_mailman3/profile/base.html:13
233259 msgid "User profile"
234 msgstr ""
235
236 #: templates/django_mailman3/profile/base.html:12
260 msgstr "Användarprofil"
261
262 #: templates/django_mailman3/profile/base.html:13
237263 msgid "for"
238 msgstr ""
239
240 #: templates/django_mailman3/profile/base.html:24
241 #: templates/django_mailman3/profile/base.html:25
264 msgstr "för"
265
266 #: templates/django_mailman3/profile/base.html:23
242267 msgid "E-mail Addresses"
243 msgstr ""
244
245 #: templates/django_mailman3/profile/base.html:29
268 msgstr "E-postadress"
269
246270 #: templates/django_mailman3/profile/base.html:30
247271 msgid "Account Connections"
248 msgstr ""
249
250 #: templates/django_mailman3/profile/base.html:33
251 #: templates/django_mailman3/profile/base.html:34
252 #: templates/django_mailman3/profile/delete_profile.html:18
272 msgstr "Kontokopplingar"
273
274 #: templates/django_mailman3/profile/base.html:35
275 #: templates/django_mailman3/profile/delete_profile.html:17
253276 msgid "Delete Account"
254 msgstr ""
255
256 #: templates/django_mailman3/profile/delete_profile.html:13
277 msgstr "Radera konto"
278
279 #: templates/django_mailman3/profile/delete_profile.html:12
257280 msgid ""
258281 "Are you sure you want to delete your account? This will remove your account "
259282 "along with all your subscriptions."
260283 msgstr ""
261
262 #: templates/django_mailman3/profile/profile.html:18
284 "Är du säker på att du vill radera ditt konto? Detta kommer ta bort ditt "
285 "konto och alla dina abonnenter."
286
287 #: templates/django_mailman3/profile/profile.html:20
288 #: templates/django_mailman3/profile/profile.html:57
289 msgid "Edit on"
290 msgstr "Redigera på"
291
292 #: templates/django_mailman3/profile/profile.html:28
293 msgid "Primary email:"
294 msgstr "Huvud-e-post:"
295
296 #: templates/django_mailman3/profile/profile.html:34
297 msgid "Other emails:"
298 msgstr "Andra e-poster:"
299
300 #: templates/django_mailman3/profile/profile.html:40
301 msgid "(no other email)"
302 msgstr "(ingen annan e-post)"
303
304 #: templates/django_mailman3/profile/profile.html:45
305 msgid "Link another address"
306 msgstr "Koppla samman en annan adress"
307
263308 #: templates/django_mailman3/profile/profile.html:53
264 msgid "Edit on"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:25
268 msgid "Primary email:"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:31
272 msgid "Other emails:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:37
276 msgid "(no other email)"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:42
280 msgid "Link another address"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:49
284309 msgid "Avatar:"
285 msgstr ""
286
287 #: templates/django_mailman3/profile/profile.html:58
310 msgstr "Avatar:"
311
312 #: templates/django_mailman3/profile/profile.html:63
288313 msgid "Joined on:"
289 msgstr ""
290
291 #: templates/django_mailman3/profile/profile.html:67
314 msgstr "Gick med:"
315
316 #: templates/django_mailman3/profile/profile.html:72
292317 msgid "cancel"
293 msgstr ""
318 msgstr "avbryt"
294319
295320 #: templates/openid/login.html:10
296321 msgid "OpenID Sign In"
297 msgstr ""
322 msgstr "OpenID-inloggning"
298323
299324 #: templates/socialaccount/connections.html:9
300325 msgid ""
301326 "You can sign in to your account using any of the following third party "
302327 "accounts:"
303 msgstr ""
328 msgstr "Du kan logga in på ditt konto med följande tredjepartskonton:"
304329
305330 #: templates/socialaccount/connections.html:42
306331 msgid ""
307332 "You currently have no social network accounts connected to this account."
308 msgstr ""
333 msgstr "Du har inga sociala nätverkskonton kopplade till det här kontot."
309334
310335 #: templates/socialaccount/connections.html:45
311336 msgid "Add a 3rd Party Account"
312 msgstr ""
337 msgstr "Lägg till ett tredjepartskonto"
313338
314339 #: templates/socialaccount/signup.html:11
315340 #, python-format
317342 "You are about to use your %(provider_name)s account to login to\n"
318343 "%(site_name)s. As a final step, please complete the following form:"
319344 msgstr ""
345 "Du håller på att använda ditt %(provider_name)s-konto för att logga in på\n"
346 "%(site_name)s. Som ett sista steg , fyll i följande formulär:"
320347
321348 #: templatetags/pagination.py:43
322349 msgid "Newer"
323 msgstr ""
350 msgstr "Nyare"
324351
325352 #: templatetags/pagination.py:44
326353 msgid "Older"
327 msgstr ""
354 msgstr "Äldre"
328355
329356 #: templatetags/pagination.py:46
330357 msgid "Previous"
331 msgstr ""
358 msgstr "Tidigare"
332359
333360 #: templatetags/pagination.py:47
334361 msgid "Next"
335 msgstr ""
336
337 #: views/profile.py:73
362 msgstr "Nästa"
363
364 #: views/profile.py:72
338365 msgid "The profile was successfully updated."
339 msgstr ""
340
341 #: views/profile.py:75
366 msgstr "Profilen uppdaterades."
367
368 #: views/profile.py:74
342369 msgid "No change detected."
343 msgstr ""
344
345 #: views/profile.py:108
370 msgstr "Ingen ändring hittades."
371
372 #: views/profile.py:110
346373 msgid "Successfully deleted account"
347 msgstr ""
374 msgstr "Kontot raderades"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
88 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "PO-Revision-Date: 2021-01-02 14:22+0000\n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-07-25 22:24+0000\n"
1111 "Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n"
1212 "Language-Team: Turkish <https://hosted.weblate.org/projects/gnu-mailman/"
1313 "django-mailman3/tr/>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 "X-Generator: Weblate 4.4.1-dev\n"
19 "X-Generator: Weblate 4.7.2-dev\n"
20
21 #: forms.py:32
22 msgid "Username"
23 msgstr "Kullanıcı adı"
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr "Adı"
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr "Soyadı"
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr "Saat dilimi"
2036
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "Bu isimde bir kullanıcı zaten var."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "Hesap"
126141 "hesabı için <a href=\"%(signup_url)s\">kaydolun</a> ve aşağıda oturum açın:"
127142
128143 #: templates/account/login.html:30
129 #: templates/django_mailman3/profile/profile.html:67
144 #: templates/django_mailman3/profile/profile.html:72
130145 msgid "or"
131146 msgstr "veya"
132147
156171 #: templates/account/password_reset_from_key.html:6
157172 #: templates/account/password_reset_from_key.html:9
158173 #: templates/django_mailman3/profile/base.html:20
159 #: templates/django_mailman3/profile/base.html:21
160174 msgid "Change Password"
161175 msgstr "Parolayı Değiştir"
162176
225239 "Zaten bir hesabınız var mı? Öyleyse lütfen <a href=\"%(login_url)s\">oturum "
226240 "açın</a>."
227241
228 #: templates/django_mailman3/paginator/pagination.html:41
242 #: templates/django_mailman3/paginator/pagination.html:43
229243 msgid "Jump to page:"
230244 msgstr "Sayfaya atla:"
231245
232 #: templates/django_mailman3/paginator/pagination.html:59
246 #: templates/django_mailman3/paginator/pagination.html:61
233247 msgid "Results per page:"
234248 msgstr "Sayfa başına sonuç:"
235249
236 #: templates/django_mailman3/paginator/pagination.html:75
237 #: templates/django_mailman3/profile/profile.html:66
250 #: templates/django_mailman3/paginator/pagination.html:77
251 #: templates/django_mailman3/profile/profile.html:71
238252 msgid "Update"
239253 msgstr "Güncelle"
240254
241 #: templates/django_mailman3/profile/base.html:5
255 #: templates/django_mailman3/profile/base.html:6
242256 msgid "User Profile"
243257 msgstr "Kullanıcı Profili"
244258
245 #: templates/django_mailman3/profile/base.html:12
259 #: templates/django_mailman3/profile/base.html:13
246260 msgid "User profile"
247261 msgstr "Kullanıcı profili"
248262
249 #: templates/django_mailman3/profile/base.html:12
263 #: templates/django_mailman3/profile/base.html:13
250264 msgid "for"
251265 msgstr "için"
252266
253 #: templates/django_mailman3/profile/base.html:24
254 #: templates/django_mailman3/profile/base.html:25
267 #: templates/django_mailman3/profile/base.html:23
255268 msgid "E-mail Addresses"
256269 msgstr "E-posta Adresleri"
257270
258 #: templates/django_mailman3/profile/base.html:29
259271 #: templates/django_mailman3/profile/base.html:30
260272 msgid "Account Connections"
261273 msgstr "Hesap Bağlantıları"
262274
263 #: templates/django_mailman3/profile/base.html:33
264 #: templates/django_mailman3/profile/base.html:34
265 #: templates/django_mailman3/profile/delete_profile.html:18
275 #: templates/django_mailman3/profile/base.html:35
276 #: templates/django_mailman3/profile/delete_profile.html:17
266277 msgid "Delete Account"
267278 msgstr "Hesabı Sil"
268279
269 #: templates/django_mailman3/profile/delete_profile.html:13
280 #: templates/django_mailman3/profile/delete_profile.html:12
270281 msgid ""
271282 "Are you sure you want to delete your account? This will remove your account "
272283 "along with all your subscriptions."
274285 "Hesabınızı silmek istediğinizden emin misiniz? Bu, hesabınızı tüm "
275286 "aboneliklerinizle birlikte kaldıracaktır."
276287
277 #: templates/django_mailman3/profile/profile.html:18
278 #: templates/django_mailman3/profile/profile.html:53
288 #: templates/django_mailman3/profile/profile.html:20
289 #: templates/django_mailman3/profile/profile.html:57
279290 msgid "Edit on"
280291 msgstr "Düzenle"
281292
282 #: templates/django_mailman3/profile/profile.html:25
293 #: templates/django_mailman3/profile/profile.html:28
283294 msgid "Primary email:"
284295 msgstr "Birincil e-posta:"
285296
286 #: templates/django_mailman3/profile/profile.html:31
297 #: templates/django_mailman3/profile/profile.html:34
287298 msgid "Other emails:"
288299 msgstr "Diğer e-postalar:"
289300
290 #: templates/django_mailman3/profile/profile.html:37
301 #: templates/django_mailman3/profile/profile.html:40
291302 msgid "(no other email)"
292303 msgstr "(başka e-posta yok)"
293304
294 #: templates/django_mailman3/profile/profile.html:42
305 #: templates/django_mailman3/profile/profile.html:45
295306 msgid "Link another address"
296307 msgstr "Başka bir adres bağla"
297308
298 #: templates/django_mailman3/profile/profile.html:49
309 #: templates/django_mailman3/profile/profile.html:53
299310 msgid "Avatar:"
300311 msgstr "Avatar:"
301312
302 #: templates/django_mailman3/profile/profile.html:58
313 #: templates/django_mailman3/profile/profile.html:63
303314 msgid "Joined on:"
304315 msgstr "Katıldığı tarih:"
305316
306 #: templates/django_mailman3/profile/profile.html:67
317 #: templates/django_mailman3/profile/profile.html:72
307318 msgid "cancel"
308319 msgstr "iptal et"
309320
353364 msgid "Next"
354365 msgstr "Sonraki"
355366
356 #: views/profile.py:73
367 #: views/profile.py:72
357368 msgid "The profile was successfully updated."
358369 msgstr "Profil başarıyla güncellendi."
359370
360 #: views/profile.py:75
371 #: views/profile.py:74
361372 msgid "No change detected."
362373 msgstr "Herhangi bir değişiklik tespit edilmedi."
363374
364 #: views/profile.py:108
375 #: views/profile.py:110
365376 msgid "Successfully deleted account"
366377 msgstr "Hesap başarıyla silindi"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
22 # This file is distributed under the same license as the PACKAGE package.
33 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
44 #
5 #, fuzzy
65 msgid ""
76 msgstr ""
87 "Project-Id-Version: PACKAGE VERSION\n"
98 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
9 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
10 "PO-Revision-Date: 2021-06-08 17:33+0000\n"
11 "Last-Translator: AtaZh <ipomoea@hilarious.com>\n"
12 "Language-Team: Ukrainian <https://hosted.weblate.org/projects/gnu-mailman/"
13 "django-mailman3/uk/>\n"
14 "Language: uk\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
18 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
20 "X-Generator: Weblate 4.7-dev\n"
21
22 #: forms.py:32
23 msgid "Username"
24 msgstr ""
25
26 #: forms.py:33
27 msgid "First name"
28 msgstr ""
29
30 #: forms.py:34
31 msgid "Last name"
32 msgstr ""
33
34 #: forms.py:36
35 msgid "Time zone"
36 msgstr ""
2037
2138 #: forms.py:43
2239 msgid "A user with that username already exists."
2340 msgstr ""
2441
2542 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2743 #: templates/django_mailman3/profile/base.html:17
2844 msgid "Account"
29 msgstr ""
45 msgstr "Обліковий запис"
3046
3147 #: templates/account/email.html:11
3248 msgid "The following e-mail addresses are associated with your account:"
5470
5571 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
5672 msgid "Remove"
57 msgstr ""
73 msgstr "Вилучити"
5874
5975 #: templates/account/email.html:44
6076 msgid "Warning:"
92108
93109 #: templates/account/email_confirm.html:20
94110 msgid "Confirm"
95 msgstr ""
111 msgstr "Підтвердження"
96112
97113 #: templates/account/email_confirm.html:27
98114 #, python-format
104120 #: templates/account/login.html:7 templates/account/login.html:11
105121 #: templates/account/login.html:48
106122 msgid "Sign In"
107 msgstr ""
123 msgstr "Увійти"
108124
109125 #: templates/account/login.html:18
110126 #, python-format
116132 msgstr ""
117133
118134 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
135 #: templates/django_mailman3/profile/profile.html:72
120136 msgid "or"
121 msgstr ""
137 msgstr "або"
122138
123139 #: templates/account/login.html:37
124140 #, python-format
144160 #: templates/account/password_reset_from_key.html:6
145161 #: templates/account/password_reset_from_key.html:9
146162 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148163 msgid "Change Password"
149164 msgstr ""
150165
198213 #: templates/account/signup.html:9 templates/account/signup.html:20
199214 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
200215 msgid "Sign Up"
201 msgstr ""
216 msgstr "Зареєструватися"
202217
203218 #: templates/account/signup.html:11
204219 #, python-format
206221 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207222 msgstr ""
208223
209 #: templates/django_mailman3/paginator/pagination.html:41
224 #: templates/django_mailman3/paginator/pagination.html:43
210225 msgid "Jump to page:"
211226 msgstr ""
212227
213 #: templates/django_mailman3/paginator/pagination.html:59
228 #: templates/django_mailman3/paginator/pagination.html:61
214229 msgid "Results per page:"
215230 msgstr ""
216231
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
232 #: templates/django_mailman3/paginator/pagination.html:77
233 #: templates/django_mailman3/profile/profile.html:71
219234 msgid "Update"
220235 msgstr ""
221236
222 #: templates/django_mailman3/profile/base.html:5
237 #: templates/django_mailman3/profile/base.html:6
223238 msgid "User Profile"
224 msgstr ""
225
226 #: templates/django_mailman3/profile/base.html:12
239 msgstr "Профіль користувача"
240
241 #: templates/django_mailman3/profile/base.html:13
227242 msgid "User profile"
228 msgstr ""
229
230 #: templates/django_mailman3/profile/base.html:12
243 msgstr "Профіль користувача"
244
245 #: templates/django_mailman3/profile/base.html:13
231246 msgid "for"
232 msgstr ""
233
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
247 msgstr "для"
248
249 #: templates/django_mailman3/profile/base.html:23
236250 msgid "E-mail Addresses"
237251 msgstr ""
238252
239 #: templates/django_mailman3/profile/base.html:29
240253 #: templates/django_mailman3/profile/base.html:30
241254 msgid "Account Connections"
242255 msgstr ""
243256
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
257 #: templates/django_mailman3/profile/base.html:35
258 #: templates/django_mailman3/profile/delete_profile.html:17
247259 msgid "Delete Account"
248260 msgstr ""
249261
250 #: templates/django_mailman3/profile/delete_profile.html:13
262 #: templates/django_mailman3/profile/delete_profile.html:12
251263 msgid ""
252264 "Are you sure you want to delete your account? This will remove your account "
253265 "along with all your subscriptions."
254266 msgstr ""
255267
256 #: templates/django_mailman3/profile/profile.html:18
268 #: templates/django_mailman3/profile/profile.html:20
269 #: templates/django_mailman3/profile/profile.html:57
270 msgid "Edit on"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:28
274 msgid "Primary email:"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:34
278 msgid "Other emails:"
279 msgstr ""
280
281 #: templates/django_mailman3/profile/profile.html:40
282 msgid "(no other email)"
283 msgstr ""
284
285 #: templates/django_mailman3/profile/profile.html:45
286 msgid "Link another address"
287 msgstr "Прив'язати іншу адресу"
288
257289 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278290 msgid "Avatar:"
279291 msgstr ""
280292
281 #: templates/django_mailman3/profile/profile.html:58
293 #: templates/django_mailman3/profile/profile.html:63
282294 msgid "Joined on:"
283295 msgstr ""
284296
285 #: templates/django_mailman3/profile/profile.html:67
297 #: templates/django_mailman3/profile/profile.html:72
286298 msgid "cancel"
287 msgstr ""
299 msgstr "скасувати"
288300
289301 #: templates/openid/login.html:10
290302 msgid "OpenID Sign In"
328340 msgid "Next"
329341 msgstr ""
330342
331 #: views/profile.py:73
343 #: views/profile.py:72
332344 msgid "The profile was successfully updated."
333345 msgstr ""
334346
335 #: views/profile.py:75
347 #: views/profile.py:74
336348 msgid "No change detected."
337349 msgstr ""
338350
339 #: views/profile.py:108
351 #: views/profile.py:110
340352 msgid "Successfully deleted account"
341353 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919
20 #: forms.py:32
21 msgid "Username"
22 msgstr ""
23
24 #: forms.py:33
25 msgid "First name"
26 msgstr ""
27
28 #: forms.py:34
29 msgid "Last name"
30 msgstr ""
31
32 #: forms.py:36
33 msgid "Time zone"
34 msgstr ""
35
2036 #: forms.py:43
2137 msgid "A user with that username already exists."
2238 msgstr ""
2339
2440 #: templates/account/email.html:6
25 #: templates/django_mailman3/profile/base.html:16
2641 #: templates/django_mailman3/profile/base.html:17
2742 msgid "Account"
2843 msgstr ""
115130 msgstr ""
116131
117132 #: templates/account/login.html:30
118 #: templates/django_mailman3/profile/profile.html:67
133 #: templates/django_mailman3/profile/profile.html:72
119134 msgid "or"
120135 msgstr ""
121136
143158 #: templates/account/password_reset_from_key.html:6
144159 #: templates/account/password_reset_from_key.html:9
145160 #: templates/django_mailman3/profile/base.html:20
146 #: templates/django_mailman3/profile/base.html:21
147161 msgid "Change Password"
148162 msgstr ""
149163
205219 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
206220 msgstr ""
207221
208 #: templates/django_mailman3/paginator/pagination.html:41
222 #: templates/django_mailman3/paginator/pagination.html:43
209223 msgid "Jump to page:"
210224 msgstr ""
211225
212 #: templates/django_mailman3/paginator/pagination.html:59
226 #: templates/django_mailman3/paginator/pagination.html:61
213227 msgid "Results per page:"
214228 msgstr ""
215229
216 #: templates/django_mailman3/paginator/pagination.html:75
217 #: templates/django_mailman3/profile/profile.html:66
230 #: templates/django_mailman3/paginator/pagination.html:77
231 #: templates/django_mailman3/profile/profile.html:71
218232 msgid "Update"
219233 msgstr ""
220234
221 #: templates/django_mailman3/profile/base.html:5
235 #: templates/django_mailman3/profile/base.html:6
222236 msgid "User Profile"
223237 msgstr ""
224238
225 #: templates/django_mailman3/profile/base.html:12
239 #: templates/django_mailman3/profile/base.html:13
226240 msgid "User profile"
227241 msgstr ""
228242
229 #: templates/django_mailman3/profile/base.html:12
243 #: templates/django_mailman3/profile/base.html:13
230244 msgid "for"
231245 msgstr ""
232246
233 #: templates/django_mailman3/profile/base.html:24
234 #: templates/django_mailman3/profile/base.html:25
247 #: templates/django_mailman3/profile/base.html:23
235248 msgid "E-mail Addresses"
236249 msgstr ""
237250
238 #: templates/django_mailman3/profile/base.html:29
239251 #: templates/django_mailman3/profile/base.html:30
240252 msgid "Account Connections"
241253 msgstr ""
242254
243 #: templates/django_mailman3/profile/base.html:33
244 #: templates/django_mailman3/profile/base.html:34
245 #: templates/django_mailman3/profile/delete_profile.html:18
255 #: templates/django_mailman3/profile/base.html:35
256 #: templates/django_mailman3/profile/delete_profile.html:17
246257 msgid "Delete Account"
247258 msgstr ""
248259
249 #: templates/django_mailman3/profile/delete_profile.html:13
260 #: templates/django_mailman3/profile/delete_profile.html:12
250261 msgid ""
251262 "Are you sure you want to delete your account? This will remove your account "
252263 "along with all your subscriptions."
253264 msgstr ""
254265
255 #: templates/django_mailman3/profile/profile.html:18
266 #: templates/django_mailman3/profile/profile.html:20
267 #: templates/django_mailman3/profile/profile.html:57
268 msgid "Edit on"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:28
272 msgid "Primary email:"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:34
276 msgid "Other emails:"
277 msgstr ""
278
279 #: templates/django_mailman3/profile/profile.html:40
280 msgid "(no other email)"
281 msgstr ""
282
283 #: templates/django_mailman3/profile/profile.html:45
284 msgid "Link another address"
285 msgstr ""
286
256287 #: templates/django_mailman3/profile/profile.html:53
257 msgid "Edit on"
258 msgstr ""
259
260 #: templates/django_mailman3/profile/profile.html:25
261 msgid "Primary email:"
262 msgstr ""
263
264 #: templates/django_mailman3/profile/profile.html:31
265 msgid "Other emails:"
266 msgstr ""
267
268 #: templates/django_mailman3/profile/profile.html:37
269 msgid "(no other email)"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:42
273 msgid "Link another address"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:49
277288 msgid "Avatar:"
278289 msgstr ""
279290
280 #: templates/django_mailman3/profile/profile.html:58
291 #: templates/django_mailman3/profile/profile.html:63
281292 msgid "Joined on:"
282293 msgstr ""
283294
284 #: templates/django_mailman3/profile/profile.html:67
295 #: templates/django_mailman3/profile/profile.html:72
285296 msgid "cancel"
286297 msgstr ""
287298
327338 msgid "Next"
328339 msgstr ""
329340
330 #: views/profile.py:73
341 #: views/profile.py:72
331342 msgid "The profile was successfully updated."
332343 msgstr ""
333344
334 #: views/profile.py:75
345 #: views/profile.py:74
335346 msgid "No change detected."
336347 msgstr ""
337348
338 #: views/profile.py:108
349 #: views/profile.py:110
339350 msgid "Successfully deleted account"
340351 msgstr ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:21-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:22-0700\n"
1010 "PO-Revision-Date: 2020-04-01 23:49+0000\n"
1111 "Last-Translator: Derek Zhou <derek@3qin.us>\n"
12 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
13 "gnu-mailman/django-mailman3/zh_Hans/>\n"
12 "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/gnu-"
13 "mailman/django-mailman3/zh_Hans/>\n"
1414 "Language: zh_CN\n"
1515 "MIME-Version: 1.0\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Weblate 4.0-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr "此用户名已存在."
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "账户"
6479 msgid ""
6580 "You currently do not have any e-mail address set up. You should really add "
6681 "an e-mail address so you can receive notifications, reset your password, etc."
67 msgstr "你现在尚未设定任何电子邮件地址. 你需要添加电子邮件地址来接收通知, 重置密码, 等等."
82 msgstr ""
83 "你现在尚未设定任何电子邮件地址. 你需要添加电子邮件地址来接收通知, 重置密码, "
84 "等等."
6885
6986 #: templates/account/email.html:49
7087 msgid "Add E-mail Address"
89106 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
90107 "address for user %(user_display)s."
91108 msgstr ""
92 "请确认 <a href=\"mailto:%(email)s\">%(email)s</a> 是用户 %(user_display)s "
93 "的一个电子邮件地址."
109 "请确认 <a href=\"mailto:%(email)s\">%(email)s</a> 是用户 %(user_display)s 的"
110 "一个电子邮件地址."
94111
95112 #: templates/account/email_confirm.html:20
96113 msgid "Confirm"
101118 msgid ""
102119 "This e-mail confirmation link expired or is invalid. Please <a href="
103120 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
104 msgstr "这份电子邮件确认链接已过期或无效. 请 <a href=\"%(email_url)s\">重新请求新的电子邮件确认信</a>."
121 msgstr ""
122 "这份电子邮件确认链接已过期或无效. 请 <a href=\"%(email_url)s\">重新请求新的电"
123 "子邮件确认信</a>."
105124
106125 #: templates/account/login.html:7 templates/account/login.html:11
107126 #: templates/account/login.html:48
121140 "一个%(site_name)s账户再登录:"
122141
123142 #: templates/account/login.html:30
124 #: templates/django_mailman3/profile/profile.html:67
143 #: templates/django_mailman3/profile/profile.html:72
125144 msgid "or"
126145 msgstr "或"
127146
151170 #: templates/account/password_reset_from_key.html:6
152171 #: templates/account/password_reset_from_key.html:9
153172 #: templates/django_mailman3/profile/base.html:20
154 #: templates/django_mailman3/profile/base.html:21
155173 msgid "Change Password"
156174 msgstr "更改密码"
157175
164182 msgid ""
165183 "Forgotten your password? Enter your e-mail address below, and we'll send you "
166184 "an e-mail allowing you to reset it."
167 msgstr "忘记密码了吗? 请输入你的电子邮件地址, 我们会发送一封电子邮件来帮助你重置你的密码."
185 msgstr ""
186 "忘记密码了吗? 请输入你的电子邮件地址, 我们会发送一封电子邮件来帮助你重置你的"
187 "密码."
168188
169189 #: templates/account/password_reset.html:22
170190 msgid "Reset My Password"
184204 "The password reset link was invalid, possibly because it has already been "
185205 "used. Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
186206 "a>."
187 msgstr "此密码重置链接无效, 可能已经使用过. 请重新要求一个<a href=\"%(passwd_reset_url)s\">新的密码重置</a>."
207 msgstr ""
208 "此密码重置链接无效, 可能已经使用过. 请重新要求一个<a href="
209 "\"%(passwd_reset_url)s\">新的密码重置</a>."
188210
189211 #: templates/account/password_reset_from_key.html:20
190212 msgid "change password"
213235 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
214236 msgstr "已经有账户了吗? 请<a href=\"%(login_url)s\">登录</a>."
215237
216 #: templates/django_mailman3/paginator/pagination.html:41
238 #: templates/django_mailman3/paginator/pagination.html:43
217239 msgid "Jump to page:"
218240 msgstr "跳转到页面:"
219241
220 #: templates/django_mailman3/paginator/pagination.html:59
242 #: templates/django_mailman3/paginator/pagination.html:61
221243 msgid "Results per page:"
222244 msgstr "每页显示的结果个数:"
223245
224 #: templates/django_mailman3/paginator/pagination.html:75
225 #: templates/django_mailman3/profile/profile.html:66
246 #: templates/django_mailman3/paginator/pagination.html:77
247 #: templates/django_mailman3/profile/profile.html:71
226248 msgid "Update"
227249 msgstr "更新"
228250
229 #: templates/django_mailman3/profile/base.html:5
251 #: templates/django_mailman3/profile/base.html:6
230252 msgid "User Profile"
231253 msgstr "用户信息"
232254
233 #: templates/django_mailman3/profile/base.html:12
255 #: templates/django_mailman3/profile/base.html:13
234256 msgid "User profile"
235257 msgstr "用户信息"
236258
237 #: templates/django_mailman3/profile/base.html:12
259 #: templates/django_mailman3/profile/base.html:13
238260 msgid "for"
239261 msgstr "为了"
240262
241 #: templates/django_mailman3/profile/base.html:24
242 #: templates/django_mailman3/profile/base.html:25
263 #: templates/django_mailman3/profile/base.html:23
243264 msgid "E-mail Addresses"
244265 msgstr "电子邮件地址"
245266
246 #: templates/django_mailman3/profile/base.html:29
247267 #: templates/django_mailman3/profile/base.html:30
248268 msgid "Account Connections"
249269 msgstr "账户的关联"
250270
251 #: templates/django_mailman3/profile/base.html:33
252 #: templates/django_mailman3/profile/base.html:34
253 #: templates/django_mailman3/profile/delete_profile.html:18
271 #: templates/django_mailman3/profile/base.html:35
272 #: templates/django_mailman3/profile/delete_profile.html:17
254273 msgid "Delete Account"
255274 msgstr "删除账户"
256275
257 #: templates/django_mailman3/profile/delete_profile.html:13
276 #: templates/django_mailman3/profile/delete_profile.html:12
258277 msgid ""
259278 "Are you sure you want to delete your account? This will remove your account "
260279 "along with all your subscriptions."
261280 msgstr "你确信要删除你的账户吗? 这会同时删除你所有的订阅."
262281
263 #: templates/django_mailman3/profile/profile.html:18
264 #: templates/django_mailman3/profile/profile.html:53
282 #: templates/django_mailman3/profile/profile.html:20
283 #: templates/django_mailman3/profile/profile.html:57
265284 msgid "Edit on"
266285 msgstr "编辑"
267286
268 #: templates/django_mailman3/profile/profile.html:25
287 #: templates/django_mailman3/profile/profile.html:28
269288 msgid "Primary email:"
270289 msgstr "首要的电子邮件地址:"
271290
272 #: templates/django_mailman3/profile/profile.html:31
291 #: templates/django_mailman3/profile/profile.html:34
273292 msgid "Other emails:"
274293 msgstr "其他电子邮件地址:"
275294
276 #: templates/django_mailman3/profile/profile.html:37
295 #: templates/django_mailman3/profile/profile.html:40
277296 msgid "(no other email)"
278297 msgstr "(无其他电子邮件)"
279298
280 #: templates/django_mailman3/profile/profile.html:42
299 #: templates/django_mailman3/profile/profile.html:45
281300 msgid "Link another address"
282301 msgstr "再链接一个地址"
283302
284 #: templates/django_mailman3/profile/profile.html:49
303 #: templates/django_mailman3/profile/profile.html:53
285304 msgid "Avatar:"
286305 msgstr "头像:"
287306
288 #: templates/django_mailman3/profile/profile.html:58
307 #: templates/django_mailman3/profile/profile.html:63
289308 msgid "Joined on:"
290309 msgstr "加入日期:"
291310
292 #: templates/django_mailman3/profile/profile.html:67
311 #: templates/django_mailman3/profile/profile.html:72
293312 msgid "cancel"
294313 msgstr "中止"
295314
337356 msgid "Next"
338357 msgstr "之后的"
339358
340 #: views/profile.py:73
359 #: views/profile.py:72
341360 msgid "The profile was successfully updated."
342361 msgstr "用户信息已成功更新."
343362
344 #: views/profile.py:75
363 #: views/profile.py:74
345364 msgid "No change detected."
346365 msgstr "没检测到更新."
347366
348 #: views/profile.py:108
367 #: views/profile.py:110
349368 msgid "Successfully deleted account"
350369 msgstr "已成功删除账户"
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
10 "POT-Creation-Date: 2021-07-24 20:22-0700\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
1616 "Content-Type: text/plain; charset=UTF-8\n"
1717 "Content-Transfer-Encoding: 8bit\n"
1818
19 #: forms.py:32
20 msgid "Username"
21 msgstr ""
22
23 #: forms.py:33
24 msgid "First name"
25 msgstr ""
26
27 #: forms.py:34
28 msgid "Last name"
29 msgstr ""
30
31 #: forms.py:36
32 msgid "Time zone"
33 msgstr ""
34
1935 #: forms.py:43
2036 msgid "A user with that username already exists."
2137 msgstr ""
2238
2339 #: templates/account/email.html:6
24 #: templates/django_mailman3/profile/base.html:16
2540 #: templates/django_mailman3/profile/base.html:17
2641 msgid "Account"
2742 msgstr ""
114129 msgstr ""
115130
116131 #: templates/account/login.html:30
117 #: templates/django_mailman3/profile/profile.html:67
132 #: templates/django_mailman3/profile/profile.html:72
118133 msgid "or"
119134 msgstr ""
120135
142157 #: templates/account/password_reset_from_key.html:6
143158 #: templates/account/password_reset_from_key.html:9
144159 #: templates/django_mailman3/profile/base.html:20
145 #: templates/django_mailman3/profile/base.html:21
146160 msgid "Change Password"
147161 msgstr ""
148162
204218 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
205219 msgstr ""
206220
207 #: templates/django_mailman3/paginator/pagination.html:41
221 #: templates/django_mailman3/paginator/pagination.html:43
208222 msgid "Jump to page:"
209223 msgstr ""
210224
211 #: templates/django_mailman3/paginator/pagination.html:59
225 #: templates/django_mailman3/paginator/pagination.html:61
212226 msgid "Results per page:"
213227 msgstr ""
214228
215 #: templates/django_mailman3/paginator/pagination.html:75
216 #: templates/django_mailman3/profile/profile.html:66
229 #: templates/django_mailman3/paginator/pagination.html:77
230 #: templates/django_mailman3/profile/profile.html:71
217231 msgid "Update"
218232 msgstr ""
219233
220 #: templates/django_mailman3/profile/base.html:5
234 #: templates/django_mailman3/profile/base.html:6
221235 msgid "User Profile"
222236 msgstr ""
223237
224 #: templates/django_mailman3/profile/base.html:12
238 #: templates/django_mailman3/profile/base.html:13
225239 msgid "User profile"
226240 msgstr ""
227241
228 #: templates/django_mailman3/profile/base.html:12
242 #: templates/django_mailman3/profile/base.html:13
229243 msgid "for"
230244 msgstr ""
231245
232 #: templates/django_mailman3/profile/base.html:24
233 #: templates/django_mailman3/profile/base.html:25
246 #: templates/django_mailman3/profile/base.html:23
234247 msgid "E-mail Addresses"
235248 msgstr ""
236249
237 #: templates/django_mailman3/profile/base.html:29
238250 #: templates/django_mailman3/profile/base.html:30
239251 msgid "Account Connections"
240252 msgstr ""
241253
242 #: templates/django_mailman3/profile/base.html:33
243 #: templates/django_mailman3/profile/base.html:34
244 #: templates/django_mailman3/profile/delete_profile.html:18
254 #: templates/django_mailman3/profile/base.html:35
255 #: templates/django_mailman3/profile/delete_profile.html:17
245256 msgid "Delete Account"
246257 msgstr ""
247258
248 #: templates/django_mailman3/profile/delete_profile.html:13
259 #: templates/django_mailman3/profile/delete_profile.html:12
249260 msgid ""
250261 "Are you sure you want to delete your account? This will remove your account "
251262 "along with all your subscriptions."
252263 msgstr ""
253264
254 #: templates/django_mailman3/profile/profile.html:18
265 #: templates/django_mailman3/profile/profile.html:20
266 #: templates/django_mailman3/profile/profile.html:57
267 msgid "Edit on"
268 msgstr ""
269
270 #: templates/django_mailman3/profile/profile.html:28
271 msgid "Primary email:"
272 msgstr ""
273
274 #: templates/django_mailman3/profile/profile.html:34
275 msgid "Other emails:"
276 msgstr ""
277
278 #: templates/django_mailman3/profile/profile.html:40
279 msgid "(no other email)"
280 msgstr ""
281
282 #: templates/django_mailman3/profile/profile.html:45
283 msgid "Link another address"
284 msgstr ""
285
255286 #: templates/django_mailman3/profile/profile.html:53
256 msgid "Edit on"
257 msgstr ""
258
259 #: templates/django_mailman3/profile/profile.html:25
260 msgid "Primary email:"
261 msgstr ""
262
263 #: templates/django_mailman3/profile/profile.html:31
264 msgid "Other emails:"
265 msgstr ""
266
267 #: templates/django_mailman3/profile/profile.html:37
268 msgid "(no other email)"
269 msgstr ""
270
271 #: templates/django_mailman3/profile/profile.html:42
272 msgid "Link another address"
273 msgstr ""
274
275 #: templates/django_mailman3/profile/profile.html:49
276287 msgid "Avatar:"
277288 msgstr ""
278289
279 #: templates/django_mailman3/profile/profile.html:58
290 #: templates/django_mailman3/profile/profile.html:63
280291 msgid "Joined on:"
281292 msgstr ""
282293
283 #: templates/django_mailman3/profile/profile.html:67
294 #: templates/django_mailman3/profile/profile.html:72
284295 msgid "cancel"
285296 msgstr ""
286297
326337 msgid "Next"
327338 msgstr ""
328339
329 #: views/profile.py:73
340 #: views/profile.py:72
330341 msgid "The profile was successfully updated."
331342 msgstr ""
332343
333 #: views/profile.py:75
344 #: views/profile.py:74
334345 msgid "No change detected."
335346 msgstr ""
336347
337 #: views/profile.py:108
348 #: views/profile.py:110
338349 msgid "Successfully deleted account"
339350 msgstr ""
55 msgid ""
66 msgstr ""
77 "Project-Id-Version: PACKAGE VERSION\n"
8 "Report-Msgid-Bugs-To: mailman-developers@python.org\n"
9 "POT-Creation-Date: 2019-06-22 10:59+0200\n"
8 "Report-Msgid-Bugs-To: \n"
9 "POT-Creation-Date: 2021-07-24 20:22-0700\n"
1010 "PO-Revision-Date: 2020-08-26 03:31+0000\n"
1111 "Last-Translator: marklin0913da248e4cdada422a <marklin0913@protonmail.com>\n"
1212 "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
1818 "Plural-Forms: nplurals=1; plural=0;\n"
1919 "X-Generator: Weblate 4.2.1-dev\n"
2020
21 #: forms.py:32
22 msgid "Username"
23 msgstr ""
24
25 #: forms.py:33
26 msgid "First name"
27 msgstr ""
28
29 #: forms.py:34
30 msgid "Last name"
31 msgstr ""
32
33 #: forms.py:36
34 msgid "Time zone"
35 msgstr ""
36
2137 #: forms.py:43
2238 msgid "A user with that username already exists."
2339 msgstr ""
2440
2541 #: templates/account/email.html:6
26 #: templates/django_mailman3/profile/base.html:16
2742 #: templates/django_mailman3/profile/base.html:17
2843 msgid "Account"
2944 msgstr "帳號"
116131 msgstr ""
117132
118133 #: templates/account/login.html:30
119 #: templates/django_mailman3/profile/profile.html:67
134 #: templates/django_mailman3/profile/profile.html:72
120135 msgid "or"
121136 msgstr "或"
122137
144159 #: templates/account/password_reset_from_key.html:6
145160 #: templates/account/password_reset_from_key.html:9
146161 #: templates/django_mailman3/profile/base.html:20
147 #: templates/django_mailman3/profile/base.html:21
148162 msgid "Change Password"
149163 msgstr ""
150164
206220 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
207221 msgstr ""
208222
209 #: templates/django_mailman3/paginator/pagination.html:41
223 #: templates/django_mailman3/paginator/pagination.html:43
210224 msgid "Jump to page:"
211225 msgstr ""
212226
213 #: templates/django_mailman3/paginator/pagination.html:59
227 #: templates/django_mailman3/paginator/pagination.html:61
214228 msgid "Results per page:"
215229 msgstr ""
216230
217 #: templates/django_mailman3/paginator/pagination.html:75
218 #: templates/django_mailman3/profile/profile.html:66
231 #: templates/django_mailman3/paginator/pagination.html:77
232 #: templates/django_mailman3/profile/profile.html:71
219233 msgid "Update"
220234 msgstr "更新"
221235
222 #: templates/django_mailman3/profile/base.html:5
236 #: templates/django_mailman3/profile/base.html:6
223237 msgid "User Profile"
224238 msgstr ""
225239
226 #: templates/django_mailman3/profile/base.html:12
240 #: templates/django_mailman3/profile/base.html:13
227241 msgid "User profile"
228242 msgstr ""
229243
230 #: templates/django_mailman3/profile/base.html:12
244 #: templates/django_mailman3/profile/base.html:13
231245 msgid "for"
232246 msgstr ""
233247
234 #: templates/django_mailman3/profile/base.html:24
235 #: templates/django_mailman3/profile/base.html:25
248 #: templates/django_mailman3/profile/base.html:23
236249 msgid "E-mail Addresses"
237250 msgstr ""
238251
239 #: templates/django_mailman3/profile/base.html:29
240252 #: templates/django_mailman3/profile/base.html:30
241253 msgid "Account Connections"
242254 msgstr ""
243255
244 #: templates/django_mailman3/profile/base.html:33
245 #: templates/django_mailman3/profile/base.html:34
246 #: templates/django_mailman3/profile/delete_profile.html:18
256 #: templates/django_mailman3/profile/base.html:35
257 #: templates/django_mailman3/profile/delete_profile.html:17
247258 msgid "Delete Account"
248259 msgstr ""
249260
250 #: templates/django_mailman3/profile/delete_profile.html:13
261 #: templates/django_mailman3/profile/delete_profile.html:12
251262 msgid ""
252263 "Are you sure you want to delete your account? This will remove your account "
253264 "along with all your subscriptions."
254265 msgstr ""
255266
256 #: templates/django_mailman3/profile/profile.html:18
267 #: templates/django_mailman3/profile/profile.html:20
268 #: templates/django_mailman3/profile/profile.html:57
269 msgid "Edit on"
270 msgstr ""
271
272 #: templates/django_mailman3/profile/profile.html:28
273 msgid "Primary email:"
274 msgstr ""
275
276 #: templates/django_mailman3/profile/profile.html:34
277 msgid "Other emails:"
278 msgstr ""
279
280 #: templates/django_mailman3/profile/profile.html:40
281 msgid "(no other email)"
282 msgstr ""
283
284 #: templates/django_mailman3/profile/profile.html:45
285 msgid "Link another address"
286 msgstr ""
287
257288 #: templates/django_mailman3/profile/profile.html:53
258 msgid "Edit on"
259 msgstr ""
260
261 #: templates/django_mailman3/profile/profile.html:25
262 msgid "Primary email:"
263 msgstr ""
264
265 #: templates/django_mailman3/profile/profile.html:31
266 msgid "Other emails:"
267 msgstr ""
268
269 #: templates/django_mailman3/profile/profile.html:37
270 msgid "(no other email)"
271 msgstr ""
272
273 #: templates/django_mailman3/profile/profile.html:42
274 msgid "Link another address"
275 msgstr ""
276
277 #: templates/django_mailman3/profile/profile.html:49
278289 msgid "Avatar:"
279290 msgstr ""
280291
281 #: templates/django_mailman3/profile/profile.html:58
292 #: templates/django_mailman3/profile/profile.html:63
282293 msgid "Joined on:"
283294 msgstr ""
284295
285 #: templates/django_mailman3/profile/profile.html:67
296 #: templates/django_mailman3/profile/profile.html:72
286297 msgid "cancel"
287298 msgstr "取消"
288299
328339 msgid "Next"
329340 msgstr ""
330341
331 #: views/profile.py:73
342 #: views/profile.py:72
332343 msgid "The profile was successfully updated."
333344 msgstr ""
334345
335 #: views/profile.py:75
346 #: views/profile.py:74
336347 msgid "No change detected."
337348 msgstr ""
338349
339 #: views/profile.py:108
350 #: views/profile.py:110
340351 msgid "Successfully deleted account"
341352 msgstr ""
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
4242
4343 logger = logging.getLogger(__name__)
4444
45 # Fields for settings.AUTH_USER_MODEL. These are for the default Django's
46 # contrib.auth.User model object.
47 FIELD_FIRST_NAME = 'first_name'
48 FIELD_LAST_NAME = 'last_name'
4549
4650 #
4751 # Defined signals
4852 #
49
50
5153 domain_created = Signal(providing_args=["mail_host"])
5254 domain_deleted = Signal(providing_args=["mail_host"])
5355 mailinglist_created = Signal(providing_args=["list_id"])
5658 user_subscribed = Signal(providing_args=["list_id", "user_email", "role"])
5759 user_unsubscribed = Signal(providing_args=["list_id", "user_email", "role"])
5860
59
6061 #
6162 # Signals listened to
6263 #
6364
6465
65 # Clear the subscriptions cache when a user is subscribed or unsubscribed.
6666 @receiver([user_subscribed, user_unsubscribed])
6767 def on_user_subscribed(sender, **kwargs):
68 """Clear the subscriptions cache when a user is subscribed or unsubscribed.
69 """
6870 user_email = kwargs["user_email"]
6971 User = get_user_model()
7072 try:
7981 get_subscriptions(user)
8082
8183
82 # Create a Profile when a User is created
8384 @receiver(post_save, sender=settings.AUTH_USER_MODEL)
8485 def create_profile(sender, **kwargs):
86 """Create a Profile when a User is created"""
8587 user = kwargs["instance"]
8688 if not Profile.objects.filter(user=user).exists():
8789 Profile.objects.create(user=user)
88
90 # If the current user's first or last name is not None, then update them in
91 # Core.
92 if user.first_name or user.last_name:
93 mm_user = get_mailman_user(user)
94 new_display_name = "{} {}".format(user.first_name, user.last_name)
95 if mm_user and mm_user.display_name != new_display_name:
96 mm_user.display_name = new_display_name
97 mm_user.save()
98 # Also, update the names in the address objects.
99 for address in mm_user.addresses:
100 address.display_name = new_display_name
101 address.save()
89102
90103 # Allauth
91104
92105
93106 @receiver(user_logged_in)
94107 def on_user_logged_in(sender, **kwargs):
95 # Sent when a user logs in.
108 """Sync a user's address with Core when they logs in."""
96109 user = kwargs["user"]
97110 if not Profile.objects.filter(user=user).exists():
98111 Profile.objects.create(user=user)
00 {% extends "django_mailman3/profile/base.html" %}
11 {% load i18n %}
2 {% load gravatar %}
32 {% load static %}
43 {% load bootstrap_tags %}
54
00 {% extends "django_mailman3/profile/base.html" %}
11 {% load i18n %}
2 {% load gravatar %}
2 {% load d_gravatar %}
33 {% load static %}
44 {% load bootstrap_tags %}
55
1313 <div class="row">
1414 {% csrf_token %}
1515 <div class="d-none d-md-block col-md-4 order-2">
16 {% if gravatar_url is not None %}
1617 <div class="gravatar">
1718 <a href="{{ gravatar_url }}">{% gravatar user.email 100 %}</a>
1819 <p><a href="{{ gravatar_url }}">{% trans "Edit on" %} {{ gravatar_shortname }}</a></p>
1920 </div>
21 {% endif %}
2022 </div>
2123
2224 <div class="col-md-6 offset-md-1">
4648 </div>
4749 </div>
4850 <div class="form-group d-md-none row">
51 {% if gravatar_url is not None %}
4952 <label class="col-md-3 control-label">{% trans 'Avatar:' %}</label>
5053 <div class="col-md-9">
5154 <p class="form-control-static">
5356 <a href="{{ gravatar_url }}">{% trans "Edit on" %} {{ gravatar_shortname }}</a>
5457 </p>
5558 </div>
59 {% endif %}
5660 </div>
5761 <div class="form-group row">
5862 <label class="col-md-3 control-label">{% trans 'Joined on:' %}</label>
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2012-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2012-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Postorius.
44 #
0 # -*- coding: utf-8 -*-
1 # Copyright (C) 2019-2021 by the Free Software Foundation, Inc.
2 #
3 # This file is part of Django_Mailman3.
4 #
5 # Postorius is free software: you can redistribute it and/or modify it under
6 # the terms of the GNU General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option)
8 # any later version.
9 #
10 # Postorius is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 # more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Postorius. If not, see <http://www.gnu.org/licenses/>.
17
18 from django import template
19 from django.conf import settings
20 from django.utils.safestring import mark_safe
21
22 from django_gravatar.templatetags.gravatar import gravatar as gravatar_orig
23
24
25 register = template.Library()
26
27
28 @register.simple_tag()
29 def gravatar(*args, **kw):
30 """A proxy for django-gravatar's template.
31
32 This templatetag allows disabling Gravatar altogether using
33 HYPERKITTY_ENABLE_GRAVATAR setting, which is True by default.
34 """
35 if not getattr(settings, 'HYPERKITTY_ENABLE_GRAVATAR', True):
36 return mark_safe('')
37 return gravatar_orig(*args, **kw)
0 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
0 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
11 #
22 # This file is part of Django-Mailman.
33 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2017-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2017-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2018-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2018-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
3232 def setUp(self):
3333 self.mm_user = Mock()
3434 self.mm_user.user_id = "dummy"
35 self.mm_user.addresses = [Mock()]
3536 self.mailman_client.get_user.side_effect = lambda e: self.mm_user
3637 self.user = User.objects.create_user(
3738 'testuser', 'test@example.com', 'testPass',
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2017-2019 by the Free Software Foundation, Inc.
1 # Copyright (C) 2017-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman3.
44 #
00 # -*- coding: utf-8 -*-
1 # Copyright (C) 2020 by the Free Software Foundation, Inc.
1 # Copyright (C) 2020-2021 by the Free Software Foundation, Inc.
22 #
33 # This file is part of Django-Mailman.
44 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
2525 from django.contrib.auth.models import User
2626 from django.core.cache import cache
2727 from django.db import IntegrityError
28 from django.test import override_settings
2829
2930 from allauth.account.models import EmailAddress
3031
4041 'testuser', 'test@example.com', 'testPass')
4142 self.mm_user = Mock()
4243 self.mm_user.user_id = "dummy"
44 self.mm_user.addresses = [Mock()]
4345 self.mailman_client.get_user.side_effect = lambda e: self.mm_user
4446
4547 def test_get_user(self):
248250 user=self.user, email=self.user.email, verified=True)
249251 self.mm_user = Mock()
250252 self.mm_user.user_id = "dummy"
253 self.mm_user.addresses = FakeMMAddressList()
251254 self.mailman_client.get_user.side_effect = lambda e: self.mm_user
252255
253256 def test_get_subscriptions(self):
313316 self.mm_user.preferred_address, 'not-added@example.com')
314317 self.mm_user.add_address.assert_called_once_with(
315318 'not-added@example.com', absorb_existing=True)
319
320
321 class TestGetMailmanclient(TestCase):
322
323 @override_settings(DEBUG=True)
324 def test_get_mailman_client_hooks(self):
325
326 @mailman.mailmanclient_request_hook
327 def hook(params):
328 return params
329
330 # When not in debug mode, the hooks aren't added to Client.
331 self.assertTrue(hook in mailman.get_request_hooks())
332 self.assertEqual(len(mailman.get_request_hooks()), 1)
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2017-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2017-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
256256 name = attachment[1]
257257 self.assertTrue(isinstance(name, str),
258258 "attachment %r must be unicode" % name)
259
260 def test_msg_with_null_byte(self):
261 with open(get_test_file("null_byte.txt")) as email_file:
262 msg = message_from_file(email_file, policy=policy.SMTP)
263 scrubber = Scrubber(msg)
264 body = scrubber.scrub()[0]
265 self.assertEqual(body, 'The body with a -><- null byte\n')
266
267 def test_multipart_msg_with_null_byte(self):
268 with open(get_test_file("null_byte_multipart.txt")) as email_file:
269 msg = message_from_file(email_file, policy=policy.SMTP)
270 scrubber = Scrubber(msg)
271 body, attachments = scrubber.scrub()
272 self.assertEqual(body, """The body with a -><- null byte
273
274 -- \nA sig with a -><- null byte
275 """)
276 self.assertEqual(attachments[0][4],
277 b'The attachment with a ->\x00<- null byte')
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
124124 user_unsubscribed.send(
125125 sender="Postorius", user_email="test-2@example.com")
126126 self.assertEqual(gs.call_count, 2)
127
128 def test_create_profile(self):
129 # Test that when a user is saved, we create a Profile if one doesn't
130 # exist for the User. Also, we update the display name for the user and
131 # their all addresses.
132 mm_user = Mock()
133 mm_user.display_name = None
134 # Mock user has two addresses.
135 mm_user.addresses = [Mock(), Mock()]
136
137 with patch('django_mailman3.signals.get_mailman_user') as gmu:
138 gmu.return_value = mm_user
139 user = User.objects.create_user(
140 'myuser', 'testing@example.com', 'testPass')
141 # Initially, the name of user is null, so we don't update the
142 # display_name in Core.
143 gmu.assert_not_called()
144 # Now lets update the name of the user and see if it is reflected.
145 user.first_name = 'Anne'
146 user.last_name = 'Person'
147 user.save()
148 # Assert that the mock user was fetched and that the display name
149 # was set.
150 gmu.assert_called_once_with(user)
151 mm_user.save.assert_called_once()
152 self.assertEqual(mm_user.display_name, 'Anne Person')
153 for addr in mm_user.addresses:
154 self.assertEqual(addr.display_name, 'Anne Person')
155 addr.save.assert_called_once()
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
3434 def setUp(self):
3535 self.mm_user = Mock()
3636 self.mm_user.user_id = "dummy"
37 self.mm_user.addresses = [Mock()]
3738 self.mailman_client.get_user.side_effect = lambda e: self.mm_user
3839 self.user = User.objects.create_user(
3940 'testuser', 'test@example.com', 'testPass',
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
2020 This file is the main URL config for a Django website including Django-Mailman.
2121 """
2222
23 from django.conf.urls import include, url
23
24 from django.conf.urls import include
25 from django.urls import re_path
2426
2527
2628 urlpatterns = [
27 url(r'', include('django_mailman3.urls')),
28 url(r'^accounts/', include('allauth.urls')),
29 url(r'', include('django.contrib.auth.urls')),
29 re_path(r'', include('django_mailman3.urls')),
30 re_path(r'^accounts/', include('allauth.urls')),
31 re_path(r'', include('django.contrib.auth.urls')),
3032 ]
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
6666 "created_at": now().isoformat(),
6767 "archive_policy": "public",
6868 "advertised": False,
69 "archive_rendering_mode": "text",
6970 }
7071 self.owners = []
7172 self.moderators = []
115116
116117 def verify(self):
117118 self.verified = True
119
120 def save(self):
121 pass
118122
119123
120124 class FakeMMAddressList(list):
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
2020 #
2121
2222
23 from django.conf.urls import url
23 from django.urls import re_path
2424
2525 from django_mailman3.views.profile import delete_account, user_profile
2626
2727
2828 urlpatterns = [
29 url(r'^user-profile/delete$', delete_account,
30 name='mm_user_account_delete'),
31 url(r'^user-profile/$', user_profile, name='mm_user_profile'),
29 re_path(r'^user-profile/delete$', delete_account,
30 name='mm_user_account_delete'),
31 re_path(r'^user-profile/$', user_profile, name='mm_user_profile'),
3232 ]
00 # -*- coding: utf-8 -*-
11 #
2 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
2 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
33 #
44 # This file is part of Django-Mailman.
55 #
8383
8484 # Extract the gravatar_url used by django_gravatar2. The site
8585 # administrator could alternatively set this to http://cdn.libravatar.org/
86 gravatar_url = getattr(settings, 'GRAVATAR_URL', 'http://www.gravatar.com')
87 gravatar_shortname = '.'.join(gravatar_url.split('.')[-2:]).strip('/')
88
86 if getattr(settings, 'HYPERKITTY_ENABLE_GRAVATAR', True):
87 gravatar_url = getattr(settings, 'GRAVATAR_URL',
88 'http://www.gravatar.com')
89 gravatar_shortname = '.'.join(gravatar_url.split('.')[-2:]).strip('/')
90 else:
91 gravatar_url = gravatar_shortname = None
8992 context = {
9093 'user_profile': profile,
9194 'form': form,
0 # -*- coding: utf-8 -*-
1 # Copyright (C) 2021 by the Free Software Foundation, Inc.
2 #
3 # This file is part of Django-Mailman.
4 #
5 # Django-Mailman3 is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # Django-Mailman3 is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 # more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Django-Mailman. If not, see <http://www.gnu.org/licenses/>.
17
18
19 from allauth.account.adapter import DefaultAccountAdapter
20 from allauth.socialaccount.adapter import DefaultSocialAccountAdapter
21
22
23 class DisableSignupAdapter(DefaultAccountAdapter):
24 """Account adapter that disables signups.
25
26 To use this, just set this in your settings.py::
27
28 ACCOUNT_ADAPTER = \
29 'django_mailman3.views.user_adapter.DisableSignupAdapter'
30 """
31
32 def is_open_for_signup(self, req):
33 return False
34
35
36 class DisableSocialSignupAdapter(DefaultSocialAccountAdapter):
37 """Social account adapter that disables signup.
38
39 To use this, just set this in your settings.py::
40
41 SOCIALACCOUNT_ADAPTER = \
42 'django_mailman3.views.user_adapter.DisableSocialSignupAdapter'
43 """
44
45 def is_open_for_signup(self, req, socialaccount):
46 return False
1818
1919 NEWS
2020 ====
21
22 1.3.6 (2021-XX-XX)
23 ------------------
24 * ``django_mailman3.lib.mailman.get_mailman_client()`` now supports
25 Mailmanclient request hooks to be added using a new
26 ``@mailmanclient_request_hook`` decorator.
27 * Scrubber now removes null bytes from the scrubbed message body.
28 * Update the Display Name of a user and it's associated addresses in Mailman
29 when the display name is updated in Django.
30 * Sync a Django user's email address to Core even if it is not verified.
31 * Add an allauth account adapter to disable signups.
2132
2233 1.3.5 (2021-01-15)
2334 ------------------
182182 django_mailman3/templates/socialaccount/snippets/provider_list.html
183183 django_mailman3/templatetags/__init__.py
184184 django_mailman3/templatetags/bootstrap_tags.py
185 django_mailman3/templatetags/d_gravatar.py
185186 django_mailman3/templatetags/pagination.py
186187 django_mailman3/tests/__init__.py
187188 django_mailman3/tests/settings_test.py
209210 django_mailman3/tests/testdata/email-bad-filename.txt
210211 django_mailman3/tests/testdata/html-email-1.txt
211212 django_mailman3/tests/testdata/html-email-2.txt
213 django_mailman3/tests/testdata/null_byte.txt
214 django_mailman3/tests/testdata/null_byte_multipart.txt
212215 django_mailman3/tests/testdata/payload-iso8859.txt
213216 django_mailman3/tests/testdata/payload-unknown.txt
214217 django_mailman3/tests/testdata/payload-utf8.txt
215218 django_mailman3/tests/testdata/pipermail_nextpart.txt
216219 django_mailman3/views/__init__.py
217 django_mailman3/views/profile.py
220 django_mailman3/views/profile.py
221 django_mailman3/views/user_adapter.py
0 Django<3.2,>=2.0
10 django-allauth
21 django-gravatar2>=1.0.6
2 django<3.3,>=2.2
33 mailmanclient>=3.3.2
44 pytz
0 # Copyright (C) 2016-2019 by the Free Software Foundation, Inc.
0 # Copyright (C) 2016-2021 by the Free Software Foundation, Inc.
11 #
22 # This file is part of Django-Mailman.
33 #
3737 packages=find_packages(),
3838 include_package_data=True,
3939 install_requires=[
40 'Django>=2.0,<3.2',
40 'django>=2.2,<3.3',
4141 'mailmanclient>=3.3.2',
4242 'django-allauth',
4343 'django-gravatar2 >= 1.0.6',
00 [tox]
1 envlist = py{37,38,39}-django{21,22,30,31},lint
1 envlist = py{36,37,38,39}-django{22,31,32,latest},lint
22
33
44 [testenv]
55 usedevelop = True
66 deps =
77 dev: -e../mailmanclient
8 head: git+https://gitlab.com/mailman/mailmanclient.git
9 django21: Django>=2.1,<2.2
8 git+https://gitlab.com/mailman/mailmanclient.git
109 django22: Django>=2.2,<2.3
1110 django30: Django>=3.0,<3.1
1211 django31: Django>=3.1,<3.2
13 djangolatest: https://github.com/django/django/archive/master.tar.gz
12 django32: Django>=3.2,<3.3
13 djangolatest: https://github.com/django/django/archive/main.tar.gz
1414 coverage: coverage
1515 commands =
1616 django-admin.py test --settings=django_mailman3.tests.settings_test {posargs:django_mailman3}