udata 10.3.1.dev34878__py2.py3-none-any.whl → 10.3.2__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of udata might be problematic. Click here for more details.

Files changed (49) hide show
  1. udata/__init__.py +1 -1
  2. udata/core/activity/api.py +1 -1
  3. udata/{frontend → core}/csv.py +1 -1
  4. udata/core/dataservices/csv.py +1 -1
  5. udata/core/dataset/api.py +11 -0
  6. udata/core/dataset/csv.py +1 -1
  7. udata/core/dataset/tasks.py +1 -2
  8. udata/core/discussions/csv.py +1 -1
  9. udata/core/organization/api.py +40 -0
  10. udata/core/organization/csv.py +1 -1
  11. udata/core/reuse/csv.py +1 -1
  12. udata/core/site/api.py +106 -1
  13. udata/core/tags/csv.py +1 -1
  14. udata/core/tags/views.py +1 -1
  15. udata/core/topic/models.py +1 -1
  16. udata/core/topic/parsers.py +4 -0
  17. udata/harvest/csv.py +1 -1
  18. udata/migrations/2025-04-24-topic-featured-default-false.py +15 -0
  19. udata/routing.py +3 -0
  20. udata/templates/mail/account_inactivity.html +15 -4
  21. udata/templates/mail/account_inactivity.txt +13 -4
  22. udata/tests/api/test_organizations_api.py +98 -1
  23. udata/tests/api/test_topics_api.py +13 -2
  24. udata/tests/apiv2/test_datasets.py +16 -0
  25. udata/tests/apiv2/test_topics.py +13 -2
  26. udata/tests/frontend/test_csv.py +1 -1
  27. udata/tests/site/test_site_csv_exports.py +464 -0
  28. udata/tests/test_tags.py +1 -1
  29. udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
  30. udata/translations/ar/LC_MESSAGES/udata.po +38 -32
  31. udata/translations/de/LC_MESSAGES/udata.mo +0 -0
  32. udata/translations/de/LC_MESSAGES/udata.po +38 -32
  33. udata/translations/es/LC_MESSAGES/udata.mo +0 -0
  34. udata/translations/es/LC_MESSAGES/udata.po +38 -32
  35. udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
  36. udata/translations/fr/LC_MESSAGES/udata.po +40 -34
  37. udata/translations/it/LC_MESSAGES/udata.mo +0 -0
  38. udata/translations/it/LC_MESSAGES/udata.po +38 -32
  39. udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
  40. udata/translations/pt/LC_MESSAGES/udata.po +38 -32
  41. udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
  42. udata/translations/sr/LC_MESSAGES/udata.po +38 -32
  43. udata/translations/udata.pot +43 -34
  44. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/METADATA +10 -2
  45. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/RECORD +49 -47
  46. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/LICENSE +0 -0
  47. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/WHEEL +0 -0
  48. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/entry_points.txt +0 -0
  49. {udata-10.3.1.dev34878.dist-info → udata-10.3.2.dist-info}/top_level.txt +0 -0
@@ -2,8 +2,8 @@ msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: udata\n"
4
4
  "Report-Msgid-Bugs-To: i18n@opendata.team\n"
5
- "POT-Creation-Date: 2025-04-01 17:30+0200\n"
6
- "PO-Revision-Date: 2025-04-01 15:33\n"
5
+ "POT-Creation-Date: 2025-04-30 14:18+0200\n"
6
+ "PO-Revision-Date: 2025-04-30 12:35\n"
7
7
  "Last-Translator: Open Data Team <i18n@opendata.team>\n"
8
8
  "Language: sr\n"
9
9
  "Language-Team: Serbian (Cyrillic)\n"
@@ -51,7 +51,7 @@ msgstr "Овај скуп података је архивиран"
51
51
  msgid "Invalid URL \"{url}\": {reason}"
52
52
  msgstr "Неисправан УРЛ \"{url}\": {reason}"
53
53
 
54
- #: udata/tests/api/test_datasets_api.py:935 udata/tests/test_model.py:403
54
+ #: udata/tests/api/test_datasets_api.py:1029 udata/tests/test_model.py:403
55
55
  #: udata/uris.py:55
56
56
  #, python-brace-format
57
57
  msgid "Invalid URL \"{url}\""
@@ -208,7 +208,7 @@ msgid "Your udata instance is ready!"
208
208
  msgstr "Ваша платформа ја спремна!"
209
209
 
210
210
  #: udata/core/owned.py:64 udata/forms/fields.py:752
211
- #: udata/tests/api/test_dataservices_api.py:476
211
+ #: udata/tests/api/test_dataservices_api.py:474
212
212
  msgid "You can only set yourself as owner"
213
213
  msgstr "Само себе можете да означите као власника"
214
214
 
@@ -217,7 +217,7 @@ msgid "Unknown organization"
217
217
  msgstr "Непозната организација"
218
218
 
219
219
  #: udata/core/owned.py:77 udata/forms/fields.py:784
220
- #: udata/tests/api/test_dataservices_api.py:490
220
+ #: udata/tests/api/test_dataservices_api.py:487
221
221
  msgid "Permission denied for this organization"
222
222
  msgstr "Дозвола ја ову организацију је одбијена"
223
223
 
@@ -249,7 +249,8 @@ msgid "The organization web contact form"
249
249
  msgstr ""
250
250
 
251
251
  #: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:116
252
- #: udata/core/dataset/forms.py:179 udata/core/topic/forms.py:14
252
+ #: udata/core/dataset/forms.py:179 udata/core/discussions/forms.py:13
253
+ #: udata/core/discussions/forms.py:29 udata/core/topic/forms.py:14
253
254
  #: udata/harvest/forms.py:87
254
255
  msgid "Publish as"
255
256
  msgstr "Објављено као"
@@ -278,12 +279,12 @@ msgstr ""
278
279
  msgid "dataservice"
279
280
  msgstr ""
280
281
 
281
- #: udata/core/dataservices/models.py:194 udata/core/dataset/models.py:573
282
+ #: udata/core/dataservices/models.py:194 udata/core/dataset/models.py:575
282
283
  #: udata/mongo/datetime_fields.py:60
283
284
  msgid "Creation date"
284
285
  msgstr "Датум креирања"
285
286
 
286
- #: udata/core/dataservices/models.py:200 udata/core/dataset/models.py:576
287
+ #: udata/core/dataservices/models.py:200 udata/core/dataset/models.py:578
287
288
  #: udata/mongo/datetime_fields.py:66
288
289
  msgid "Last modification date"
289
290
  msgstr "Датум последње измене"
@@ -449,8 +450,8 @@ msgid "Version of the schema"
449
450
  msgstr "Верзија шеме"
450
451
 
451
452
  #: udata/core/dataset/forms.py:65 udata/core/dataset/forms.py:146
452
- #: udata/core/discussions/forms.py:13 udata/core/site/forms.py:12
453
- #: udata/templates/mail/discussion_closed.html:26
453
+ #: udata/core/discussions/forms.py:14 udata/core/discussions/forms.py:25
454
+ #: udata/core/site/forms.py:12 udata/templates/mail/discussion_closed.html:26
454
455
  #: udata/templates/mail/new_discussion.html:25
455
456
  #: udata/templates/mail/new_discussion_comment.html:26
456
457
  msgid "Title"
@@ -506,7 +507,7 @@ msgstr "Величина датотеке у бајтовима"
506
507
  msgid "Related dataset"
507
508
  msgstr "Повезани скуп података"
508
509
 
509
- #: udata/core/dataset/forms.py:138 udata/tests/api/test_datasets_api.py:847
510
+ #: udata/core/dataset/forms.py:138 udata/tests/api/test_datasets_api.py:941
510
511
  msgid "Wrong contact point id or contact point ownership mismatch"
511
512
  msgstr ""
512
513
 
@@ -580,20 +581,20 @@ msgstr "Кључни подаци"
580
581
  msgid "A schema must contains a name or an URL when a version is provided."
581
582
  msgstr ""
582
583
 
583
- #: udata/core/dataset/models.py:169 udata/tests/api/test_datasets_api.py:943
584
- #: udata/tests/api/test_datasets_api.py:954
584
+ #: udata/core/dataset/models.py:169 udata/tests/api/test_datasets_api.py:1037
585
+ #: udata/tests/api/test_datasets_api.py:1048
585
586
  #, python-brace-format
586
587
  msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
587
588
  msgstr "Име шеме \"{schema}\" није дозвољена вредност. Дозвољене вредности: {values}"
588
589
 
589
- #: udata/core/dataset/models.py:188 udata/tests/api/test_datasets_api.py:966
590
+ #: udata/core/dataset/models.py:188 udata/tests/api/test_datasets_api.py:1060
590
591
  #, python-brace-format
591
592
  msgid "Version \"{version}\" is not an allowed value for the schema \"{name}\". Allowed versions: {values}"
592
593
  msgstr ""
593
594
 
594
595
  #: udata/core/dataset/models.py:467 udata/core/dataset/rdf.py:603
595
- #: udata/tests/dataset/test_dataset_rdf.py:669
596
- #: udata/tests/dataset/test_dataset_rdf.py:682
596
+ #: udata/tests/dataset/test_dataset_rdf.py:687
597
+ #: udata/tests/dataset/test_dataset_rdf.py:700
597
598
  msgid "Nameless resource"
598
599
  msgstr "Ресурс без имена"
599
600
 
@@ -601,11 +602,11 @@ msgstr "Ресурс без имена"
601
602
  msgid "Future date of update"
602
603
  msgstr "Будући датум ажурирања"
603
604
 
604
- #: udata/core/dataset/models.py:622
605
+ #: udata/core/dataset/models.py:624
605
606
  msgid "dataset"
606
607
  msgstr "скуп података"
607
608
 
608
- #: udata/core/dataset/rdf.py:601 udata/tests/dataset/test_dataset_rdf.py:656
609
+ #: udata/core/dataset/rdf.py:601 udata/tests/dataset/test_dataset_rdf.py:674
609
610
  #, python-brace-format
610
611
  msgid "{format} resource"
611
612
  msgstr "{format} ресурс"
@@ -614,13 +615,13 @@ msgstr "{format} ресурс"
614
615
  msgid "You need to update some frequency-based datasets"
615
616
  msgstr "Потребно је да ажурирате неке скупове података засноване на фреквенцији"
616
617
 
617
- #: udata/core/discussions/forms.py:15 udata/core/discussions/forms.py:23
618
- #: udata/core/organization/forms.py:83 udata/core/organization/forms.py:87
619
- #: udata/harvest/forms.py:97
618
+ #: udata/core/discussions/forms.py:16 udata/core/discussions/forms.py:31
619
+ #: udata/core/discussions/forms.py:37 udata/core/organization/forms.py:83
620
+ #: udata/core/organization/forms.py:87 udata/harvest/forms.py:97
620
621
  msgid "Comment"
621
622
  msgstr "Коментар"
622
623
 
623
- #: udata/core/discussions/forms.py:17
624
+ #: udata/core/discussions/forms.py:18
624
625
  msgid "Subject"
625
626
  msgstr "Тема"
626
627
 
@@ -956,11 +957,11 @@ msgstr "Закон и право"
956
957
  msgid "Open data tools"
957
958
  msgstr "Алати отворених података"
958
959
 
959
- #: udata/core/reuse/models.py:36
960
+ #: udata/core/reuse/models.py:37
960
961
  msgid "This URL is already registered"
961
962
  msgstr "Овај URL је већ регистрован"
962
963
 
963
- #: udata/core/reuse/models.py:176
964
+ #: udata/core/reuse/models.py:178
964
965
  msgid "reuse"
965
966
  msgstr "пример употребе"
966
967
 
@@ -1261,11 +1262,11 @@ msgstr "Прескочено"
1261
1262
  msgid "Archived"
1262
1263
  msgstr "Архивирано"
1263
1264
 
1264
- #: udata/harvest/backends/dcat.py:296
1265
+ #: udata/harvest/backends/dcat.py:338
1265
1266
  msgid "Remote URL prefix"
1266
1267
  msgstr ""
1267
1268
 
1268
- #: udata/harvest/backends/dcat.py:299
1269
+ #: udata/harvest/backends/dcat.py:341
1269
1270
  msgid "A prefix used to build the remote URL of the harvested items."
1270
1271
  msgstr ""
1271
1272
 
@@ -1358,19 +1359,24 @@ msgstr "Ваш налог је обрисан"
1358
1359
 
1359
1360
  #: udata/templates/mail/account_inactivity.html:6
1360
1361
  #, python-format
1361
- msgid "Your account (%(user_email)s) has been inactive for %(inactivity_years)d years or more."
1362
+ msgid "We have noticed that your account associated to (%(user_email)s) has been inactive for %(inactivity_years)d years or more on %(site)s, the open platform for public data."
1362
1363
  msgstr ""
1363
1364
 
1364
- #: udata/templates/mail/account_inactivity.html:15
1365
+ #: udata/templates/mail/account_inactivity.html:17
1365
1366
  #, python-format
1366
- msgid "If you want to keep your account, please log in with your account on %(site)s."
1367
+ msgid "If you want to keep your account, please log in with your account on %(home)s."
1367
1368
  msgstr ""
1368
1369
 
1369
- #: udata/templates/mail/account_inactivity.html:23
1370
+ #: udata/templates/mail/account_inactivity.html:25
1370
1371
  #, python-format
1371
1372
  msgid "Without logging in, your account will be deleted within %(notify_delay)d days."
1372
1373
  msgstr ""
1373
1374
 
1375
+ #: udata/templates/mail/account_inactivity.html:33
1376
+ #, python-format
1377
+ msgid "This account is not tied to your other administration accounts and you can always re-create an account on the %(site)s platform if necessary."
1378
+ msgstr ""
1379
+
1374
1380
  #: udata/templates/mail/badge_added_association.html:6
1375
1381
  #, python-format
1376
1382
  msgid "%(user)s has identified your organization \"%(name)s\" as an association"
@@ -1432,13 +1438,13 @@ msgstr "%(site)s - администратор"
1432
1438
  msgid "%(user)s closed an discussion on your %(type)s %(subject)s"
1433
1439
  msgstr "Корисник %(user)s је затворио дискусију на тему %(type)s %(subject)s"
1434
1440
 
1435
- #: udata/templates/mail/discussion_closed.html:31
1441
+ #: udata/templates/mail/discussion_closed.html:32
1436
1442
  #: udata/templates/mail/new_discussion.html:30
1437
1443
  #: udata/templates/mail/new_discussion_comment.html:31
1438
1444
  msgid "Message"
1439
1445
  msgstr "Порука"
1440
1446
 
1441
- #: udata/templates/mail/discussion_closed.html:40
1447
+ #: udata/templates/mail/discussion_closed.html:41
1442
1448
  #: udata/templates/mail/new_discussion.html:38
1443
1449
  #: udata/templates/mail/new_discussion_comment.html:39
1444
1450
  msgid "See the discussion"
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: udata 10.1.5.dev0\n"
9
+ "Project-Id-Version: udata 10.3.2.dev0\n"
10
10
  "Report-Msgid-Bugs-To: i18n@opendata.team\n"
11
- "POT-Creation-Date: 2025-04-01 17:30+0200\n"
12
- "PO-Revision-Date: 2025-04-01 17:30+0200\n"
11
+ "POT-Creation-Date: 2025-04-30 14:18+0200\n"
12
+ "PO-Revision-Date: 2025-04-30 14:18+0200\n"
13
13
  "Last-Translator: Open Data Team <i18n@opendata.team>\n"
14
14
  "Language: en\n"
15
15
  "Language-Team: Open Data Team <i18n@opendata.team>\n"
@@ -52,7 +52,7 @@ msgstr ""
52
52
  msgid "Invalid URL \"{url}\": {reason}"
53
53
  msgstr ""
54
54
 
55
- #: udata/tests/api/test_datasets_api.py:935 udata/tests/test_model.py:403
55
+ #: udata/tests/api/test_datasets_api.py:1029 udata/tests/test_model.py:403
56
56
  #: udata/uris.py:55
57
57
  #, python-brace-format
58
58
  msgid "Invalid URL \"{url}\""
@@ -215,7 +215,7 @@ msgid "Your udata instance is ready!"
215
215
  msgstr ""
216
216
 
217
217
  #: udata/core/owned.py:64 udata/forms/fields.py:752
218
- #: udata/tests/api/test_dataservices_api.py:476
218
+ #: udata/tests/api/test_dataservices_api.py:474
219
219
  msgid "You can only set yourself as owner"
220
220
  msgstr ""
221
221
 
@@ -224,7 +224,7 @@ msgid "Unknown organization"
224
224
  msgstr ""
225
225
 
226
226
  #: udata/core/owned.py:77 udata/forms/fields.py:784
227
- #: udata/tests/api/test_dataservices_api.py:490
227
+ #: udata/tests/api/test_dataservices_api.py:487
228
228
  msgid "Permission denied for this organization"
229
229
  msgstr ""
230
230
 
@@ -256,7 +256,8 @@ msgid "The organization web contact form"
256
256
  msgstr ""
257
257
 
258
258
  #: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:116
259
- #: udata/core/dataset/forms.py:179 udata/core/topic/forms.py:14
259
+ #: udata/core/dataset/forms.py:179 udata/core/discussions/forms.py:13
260
+ #: udata/core/discussions/forms.py:29 udata/core/topic/forms.py:14
260
261
  #: udata/harvest/forms.py:87
261
262
  msgid "Publish as"
262
263
  msgstr ""
@@ -285,12 +286,12 @@ msgstr ""
285
286
  msgid "dataservice"
286
287
  msgstr ""
287
288
 
288
- #: udata/core/dataservices/models.py:194 udata/core/dataset/models.py:573
289
+ #: udata/core/dataservices/models.py:194 udata/core/dataset/models.py:575
289
290
  #: udata/mongo/datetime_fields.py:60
290
291
  msgid "Creation date"
291
292
  msgstr ""
292
293
 
293
- #: udata/core/dataservices/models.py:200 udata/core/dataset/models.py:576
294
+ #: udata/core/dataservices/models.py:200 udata/core/dataset/models.py:578
294
295
  #: udata/mongo/datetime_fields.py:66
295
296
  msgid "Last modification date"
296
297
  msgstr ""
@@ -456,8 +457,8 @@ msgid "Version of the schema"
456
457
  msgstr ""
457
458
 
458
459
  #: udata/core/dataset/forms.py:65 udata/core/dataset/forms.py:146
459
- #: udata/core/discussions/forms.py:13 udata/core/site/forms.py:12
460
- #: udata/templates/mail/discussion_closed.html:26
460
+ #: udata/core/discussions/forms.py:14 udata/core/discussions/forms.py:25
461
+ #: udata/core/site/forms.py:12 udata/templates/mail/discussion_closed.html:26
461
462
  #: udata/templates/mail/new_discussion.html:25
462
463
  #: udata/templates/mail/new_discussion_comment.html:26
463
464
  msgid "Title"
@@ -513,7 +514,7 @@ msgstr ""
513
514
  msgid "Related dataset"
514
515
  msgstr ""
515
516
 
516
- #: udata/core/dataset/forms.py:138 udata/tests/api/test_datasets_api.py:847
517
+ #: udata/core/dataset/forms.py:138 udata/tests/api/test_datasets_api.py:941
517
518
  msgid "Wrong contact point id or contact point ownership mismatch"
518
519
  msgstr ""
519
520
 
@@ -587,13 +588,13 @@ msgstr ""
587
588
  msgid "A schema must contains a name or an URL when a version is provided."
588
589
  msgstr ""
589
590
 
590
- #: udata/core/dataset/models.py:169 udata/tests/api/test_datasets_api.py:943
591
- #: udata/tests/api/test_datasets_api.py:954
591
+ #: udata/core/dataset/models.py:169 udata/tests/api/test_datasets_api.py:1037
592
+ #: udata/tests/api/test_datasets_api.py:1048
592
593
  #, python-brace-format
593
594
  msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
594
595
  msgstr ""
595
596
 
596
- #: udata/core/dataset/models.py:188 udata/tests/api/test_datasets_api.py:966
597
+ #: udata/core/dataset/models.py:188 udata/tests/api/test_datasets_api.py:1060
597
598
  #, python-brace-format
598
599
  msgid ""
599
600
  "Version \"{version}\" is not an allowed value for the schema \"{name}\". "
@@ -601,8 +602,8 @@ msgid ""
601
602
  msgstr ""
602
603
 
603
604
  #: udata/core/dataset/models.py:467 udata/core/dataset/rdf.py:603
604
- #: udata/tests/dataset/test_dataset_rdf.py:669
605
- #: udata/tests/dataset/test_dataset_rdf.py:682
605
+ #: udata/tests/dataset/test_dataset_rdf.py:687
606
+ #: udata/tests/dataset/test_dataset_rdf.py:700
606
607
  msgid "Nameless resource"
607
608
  msgstr ""
608
609
 
@@ -610,11 +611,11 @@ msgstr ""
610
611
  msgid "Future date of update"
611
612
  msgstr ""
612
613
 
613
- #: udata/core/dataset/models.py:622
614
+ #: udata/core/dataset/models.py:624
614
615
  msgid "dataset"
615
616
  msgstr ""
616
617
 
617
- #: udata/core/dataset/rdf.py:601 udata/tests/dataset/test_dataset_rdf.py:656
618
+ #: udata/core/dataset/rdf.py:601 udata/tests/dataset/test_dataset_rdf.py:674
618
619
  #, python-brace-format
619
620
  msgid "{format} resource"
620
621
  msgstr ""
@@ -623,13 +624,13 @@ msgstr ""
623
624
  msgid "You need to update some frequency-based datasets"
624
625
  msgstr ""
625
626
 
626
- #: udata/core/discussions/forms.py:15 udata/core/discussions/forms.py:23
627
- #: udata/core/organization/forms.py:83 udata/core/organization/forms.py:87
628
- #: udata/harvest/forms.py:97
627
+ #: udata/core/discussions/forms.py:16 udata/core/discussions/forms.py:31
628
+ #: udata/core/discussions/forms.py:37 udata/core/organization/forms.py:83
629
+ #: udata/core/organization/forms.py:87 udata/harvest/forms.py:97
629
630
  msgid "Comment"
630
631
  msgstr ""
631
632
 
632
- #: udata/core/discussions/forms.py:17
633
+ #: udata/core/discussions/forms.py:18
633
634
  msgid "Subject"
634
635
  msgstr ""
635
636
 
@@ -965,11 +966,11 @@ msgstr ""
965
966
  msgid "Open data tools"
966
967
  msgstr ""
967
968
 
968
- #: udata/core/reuse/models.py:36
969
+ #: udata/core/reuse/models.py:37
969
970
  msgid "This URL is already registered"
970
971
  msgstr ""
971
972
 
972
- #: udata/core/reuse/models.py:176
973
+ #: udata/core/reuse/models.py:178
973
974
  msgid "reuse"
974
975
  msgstr ""
975
976
 
@@ -1270,11 +1271,11 @@ msgstr ""
1270
1271
  msgid "Archived"
1271
1272
  msgstr ""
1272
1273
 
1273
- #: udata/harvest/backends/dcat.py:296
1274
+ #: udata/harvest/backends/dcat.py:338
1274
1275
  msgid "Remote URL prefix"
1275
1276
  msgstr ""
1276
1277
 
1277
- #: udata/harvest/backends/dcat.py:299
1278
+ #: udata/harvest/backends/dcat.py:341
1278
1279
  msgid "A prefix used to build the remote URL of the harvested items."
1279
1280
  msgstr ""
1280
1281
 
@@ -1369,20 +1370,28 @@ msgstr ""
1369
1370
  #: udata/templates/mail/account_inactivity.html:6
1370
1371
  #, python-format
1371
1372
  msgid ""
1372
- "Your account (%(user_email)s) has been inactive for %(inactivity_years)d "
1373
- "years or more."
1373
+ "We have noticed that your account associated to (%(user_email)s) has been "
1374
+ "inactive for %(inactivity_years)d years or more on %(site)s, the open "
1375
+ "platform for public data."
1374
1376
  msgstr ""
1375
1377
 
1376
- #: udata/templates/mail/account_inactivity.html:15
1378
+ #: udata/templates/mail/account_inactivity.html:17
1377
1379
  #, python-format
1378
- msgid "If you want to keep your account, please log in with your account on %(site)s."
1380
+ msgid "If you want to keep your account, please log in with your account on %(home)s."
1379
1381
  msgstr ""
1380
1382
 
1381
- #: udata/templates/mail/account_inactivity.html:23
1383
+ #: udata/templates/mail/account_inactivity.html:25
1382
1384
  #, python-format
1383
1385
  msgid "Without logging in, your account will be deleted within %(notify_delay)d days."
1384
1386
  msgstr ""
1385
1387
 
1388
+ #: udata/templates/mail/account_inactivity.html:33
1389
+ #, python-format
1390
+ msgid ""
1391
+ "This account is not tied to your other administration accounts and you can "
1392
+ "always re-create an account on the %(site)s platform if necessary."
1393
+ msgstr ""
1394
+
1386
1395
  #: udata/templates/mail/badge_added_association.html:6
1387
1396
  #, python-format
1388
1397
  msgid "%(user)s has identified your organization \"%(name)s\" as an association"
@@ -1444,13 +1453,13 @@ msgstr ""
1444
1453
  msgid "%(user)s closed an discussion on your %(type)s %(subject)s"
1445
1454
  msgstr ""
1446
1455
 
1447
- #: udata/templates/mail/discussion_closed.html:31
1456
+ #: udata/templates/mail/discussion_closed.html:32
1448
1457
  #: udata/templates/mail/new_discussion.html:30
1449
1458
  #: udata/templates/mail/new_discussion_comment.html:31
1450
1459
  msgid "Message"
1451
1460
  msgstr ""
1452
1461
 
1453
- #: udata/templates/mail/discussion_closed.html:40
1462
+ #: udata/templates/mail/discussion_closed.html:41
1454
1463
  #: udata/templates/mail/new_discussion.html:38
1455
1464
  #: udata/templates/mail/new_discussion_comment.html:39
1456
1465
  msgid "See the discussion"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: udata
3
- Version: 10.3.1.dev34878
3
+ Version: 10.3.2
4
4
  Summary: Open data portal
5
5
  Home-page: https://github.com/opendatateam/udata
6
6
  Author: Opendata Team
@@ -139,13 +139,21 @@ It is collectively taken care of by members of the
139
139
 
140
140
  # Changelog
141
141
 
142
- ## Current (in progress)
142
+ ## 10.3.2 (2025-05-06)
143
+
144
+ - feat(topics): add featured filter in API [#3301](https://github.com/opendatateam/udata/pull/3301)
145
+ - Improve wording on account inactivity emails [#3304](https://github.com/opendatateam/udata/pull/3304)
146
+ - Migrate CSV exports from udata-front to udata (requires adding redirection to Nginx) [#3306](https://github.com/opendatateam/udata/pull/3306)
147
+ - Add reuse filter on datasets API [#3307](https://github.com/opendatateam/udata/pull/3307)
148
+
149
+ ## 10.3.1 (2025-04-29)
143
150
 
144
151
  - Add archived, deleted and private filter in dataset list api [#3298](https://github.com/opendatateam/udata/pull/3298)
145
152
  - Exclude deleted dataservices in csv queryset [#3297](https://github.com/opendatateam/udata/pull/3297)
146
153
  - Publish comments on behalf of org, close without message and edit/delete discussions comments [#3295](https://github.com/opendatateam/udata/pull/3295)
147
154
  - Migrate MAAF backend from udata-front [#3300](https://github.com/opendatateam/udata/pull/3300)
148
155
  - Follow: add user parser argument [#3302](https://github.com/opendatateam/udata/pull/3302)
156
+ - Allow trailing slash to activity route [#3303](https://github.com/opendatateam/udata/pull/3303)
149
157
 
150
158
  ## 10.3.0 (2025-04-11)
151
159