udata 14.0.3.dev1__py3-none-any.whl → 14.7.3.dev4__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.
- udata/api/__init__.py +2 -0
- udata/api_fields.py +120 -19
- udata/app.py +18 -20
- udata/auth/__init__.py +4 -7
- udata/auth/forms.py +3 -3
- udata/auth/views.py +13 -6
- udata/commands/dcat.py +1 -1
- udata/commands/serve.py +3 -11
- udata/core/activity/api.py +5 -6
- udata/core/badges/tests/test_tasks.py +0 -2
- udata/core/csv.py +5 -0
- udata/core/dataservices/api.py +8 -1
- udata/core/dataservices/apiv2.py +3 -6
- udata/core/dataservices/models.py +5 -2
- udata/core/dataservices/rdf.py +2 -1
- udata/core/dataservices/tasks.py +6 -2
- udata/core/dataset/api.py +30 -4
- udata/core/dataset/api_fields.py +1 -1
- udata/core/dataset/apiv2.py +1 -1
- udata/core/dataset/constants.py +2 -9
- udata/core/dataset/models.py +21 -9
- udata/core/dataset/permissions.py +31 -0
- udata/core/dataset/rdf.py +18 -16
- udata/core/dataset/tasks.py +16 -7
- udata/core/discussions/api.py +15 -1
- udata/core/discussions/models.py +6 -0
- udata/core/legal/__init__.py +0 -0
- udata/core/legal/mails.py +128 -0
- udata/core/organization/api.py +16 -5
- udata/core/organization/api_fields.py +3 -3
- udata/core/organization/apiv2.py +3 -4
- udata/core/organization/mails.py +1 -1
- udata/core/organization/models.py +40 -7
- udata/core/organization/notifications.py +84 -0
- udata/core/organization/permissions.py +1 -1
- udata/core/organization/tasks.py +3 -0
- udata/core/pages/models.py +49 -0
- udata/core/pages/tests/test_api.py +165 -1
- udata/core/post/api.py +25 -70
- udata/core/post/constants.py +8 -0
- udata/core/post/models.py +109 -17
- udata/core/post/tests/test_api.py +140 -3
- udata/core/post/tests/test_models.py +24 -0
- udata/core/reports/api.py +18 -0
- udata/core/reports/models.py +42 -2
- udata/core/reuse/api.py +8 -0
- udata/core/reuse/apiv2.py +3 -6
- udata/core/reuse/models.py +1 -1
- udata/core/spatial/forms.py +2 -2
- udata/core/topic/models.py +8 -2
- udata/core/user/api.py +10 -3
- udata/core/user/api_fields.py +3 -3
- udata/core/user/models.py +33 -8
- udata/features/notifications/api.py +7 -18
- udata/features/notifications/models.py +59 -0
- udata/features/notifications/tasks.py +25 -0
- udata/features/transfer/actions.py +2 -0
- udata/features/transfer/models.py +17 -0
- udata/features/transfer/notifications.py +96 -0
- udata/flask_mongoengine/engine.py +0 -4
- udata/flask_mongoengine/pagination.py +1 -1
- udata/frontend/markdown.py +2 -1
- udata/harvest/actions.py +20 -0
- udata/harvest/api.py +24 -7
- udata/harvest/backends/base.py +27 -1
- udata/harvest/backends/ckan/harvesters.py +21 -4
- udata/harvest/backends/dcat.py +4 -1
- udata/harvest/commands.py +33 -0
- udata/harvest/filters.py +17 -6
- udata/harvest/models.py +16 -0
- udata/harvest/permissions.py +27 -0
- udata/harvest/tests/ckan/test_ckan_backend.py +33 -0
- udata/harvest/tests/test_actions.py +46 -2
- udata/harvest/tests/test_api.py +161 -6
- udata/harvest/tests/test_base_backend.py +86 -1
- udata/harvest/tests/test_dcat_backend.py +68 -3
- udata/harvest/tests/test_filters.py +6 -0
- udata/i18n.py +1 -4
- udata/mail.py +14 -0
- udata/migrations/2021-08-17-harvest-integrity.py +23 -16
- udata/migrations/2025-10-31-create-membership-request-notifications.py +55 -0
- udata/migrations/2025-12-04-add-uuid-to-discussion-messages.py +28 -0
- udata/migrations/2025-12-16-create-transfer-request-notifications.py +69 -0
- udata/migrations/2026-01-14-add-default-kind-to-posts.py +17 -0
- udata/mongo/slug_fields.py +1 -1
- udata/rdf.py +65 -11
- udata/routing.py +2 -2
- udata/settings.py +11 -0
- udata/tasks.py +2 -0
- udata/templates/mail/message.html +3 -1
- udata/tests/api/__init__.py +7 -17
- udata/tests/api/test_activities_api.py +36 -0
- udata/tests/api/test_datasets_api.py +69 -0
- udata/tests/api/test_organizations_api.py +0 -3
- udata/tests/api/test_reports_api.py +157 -0
- udata/tests/api/test_user_api.py +1 -1
- udata/tests/apiv2/test_dataservices.py +14 -0
- udata/tests/apiv2/test_organizations.py +9 -0
- udata/tests/apiv2/test_reuses.py +11 -0
- udata/tests/cli/test_cli_base.py +0 -1
- udata/tests/dataservice/test_dataservice_tasks.py +29 -0
- udata/tests/dataset/test_dataset_model.py +13 -1
- udata/tests/dataset/test_dataset_rdf.py +164 -5
- udata/tests/dataset/test_dataset_tasks.py +25 -0
- udata/tests/frontend/test_auth.py +58 -1
- udata/tests/frontend/test_csv.py +0 -3
- udata/tests/helpers.py +31 -27
- udata/tests/organization/test_notifications.py +67 -2
- udata/tests/search/test_search_integration.py +70 -0
- udata/tests/site/test_site_csv_exports.py +22 -10
- udata/tests/test_activity.py +9 -9
- udata/tests/test_api_fields.py +10 -0
- udata/tests/test_discussions.py +5 -5
- udata/tests/test_legal_mails.py +359 -0
- udata/tests/test_notifications.py +15 -57
- udata/tests/test_notifications_task.py +43 -0
- udata/tests/test_owned.py +81 -1
- udata/tests/test_transfer.py +181 -2
- udata/tests/test_uris.py +33 -0
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +309 -158
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +313 -160
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +312 -160
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +475 -202
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +317 -162
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +315 -161
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +323 -164
- udata/translations/udata.pot +169 -124
- udata/uris.py +0 -2
- udata/utils.py +23 -0
- udata-14.7.3.dev4.dist-info/METADATA +109 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/RECORD +142 -135
- udata/core/post/forms.py +0 -30
- udata/flask_mongoengine/json.py +0 -38
- udata/templates/mail/base.html +0 -105
- udata/templates/mail/base.txt +0 -6
- udata/templates/mail/button.html +0 -3
- udata/templates/mail/layouts/1-column.html +0 -19
- udata/templates/mail/layouts/2-columns.html +0 -20
- udata/templates/mail/layouts/center-panel.html +0 -16
- udata-14.0.3.dev1.dist-info/METADATA +0 -132
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/WHEEL +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/entry_points.txt +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/licenses/LICENSE +0 -0
- {udata-14.0.3.dev1.dist-info → udata-14.7.3.dev4.dist-info}/top_level.txt +0 -0
|
@@ -1,48 +1,44 @@
|
|
|
1
|
+
|
|
1
2
|
msgid ""
|
|
2
3
|
msgstr ""
|
|
3
|
-
"Project-Id-Version:
|
|
4
|
+
"Project-Id-Version: udata\n"
|
|
4
5
|
"Report-Msgid-Bugs-To: i18n@opendata.team\n"
|
|
5
|
-
"POT-Creation-Date:
|
|
6
|
-
"PO-Revision-Date: 2025-11-19 12:59\n"
|
|
6
|
+
"POT-Creation-Date: 2026-01-13 10:28+0100\n"
|
|
7
|
+
"PO-Revision-Date: 2025-11-19 12:59+0000\n"
|
|
7
8
|
"Last-Translator: Open Data Team <i18n@opendata.team>\n"
|
|
8
9
|
"Language: it\n"
|
|
9
10
|
"Language-Team: Italian\n"
|
|
10
11
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
11
12
|
"MIME-Version: 1.0\n"
|
|
12
|
-
"Content-Type: text/plain; charset=
|
|
13
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
13
14
|
"Content-Transfer-Encoding: 8bit\n"
|
|
14
15
|
"Generated-By: Babel 2.17.0\n"
|
|
15
|
-
"X-Crowdin-Project: udata\n"
|
|
16
|
-
"X-Crowdin-Project-ID: 291291\n"
|
|
17
|
-
"X-Crowdin-Language: it\n"
|
|
18
|
-
"X-Crowdin-File: /master/udata/translations/udata.pot\n"
|
|
19
|
-
"X-Crowdin-File-ID: 6\n"
|
|
20
16
|
|
|
21
|
-
#: udata/settings.py:
|
|
17
|
+
#: udata/settings.py:129
|
|
22
18
|
msgid "Welcome"
|
|
23
19
|
msgstr "Benvenutə"
|
|
24
20
|
|
|
25
|
-
#: udata/settings.py:
|
|
21
|
+
#: udata/settings.py:130
|
|
26
22
|
msgid "Please confirm your email"
|
|
27
23
|
msgstr "Per favore conferma la tua email"
|
|
28
24
|
|
|
29
|
-
#: udata/settings.py:
|
|
25
|
+
#: udata/settings.py:131
|
|
30
26
|
msgid "Login instructions"
|
|
31
27
|
msgstr "Istruzioni di accesso"
|
|
32
28
|
|
|
33
|
-
#: udata/auth/mails.py:125 udata/settings.py:
|
|
29
|
+
#: udata/auth/mails.py:125 udata/settings.py:132
|
|
34
30
|
msgid "Your password has been reset"
|
|
35
31
|
msgstr "La tua password è stata reimpostata"
|
|
36
32
|
|
|
37
|
-
#: udata/auth/mails.py:137 udata/settings.py:
|
|
33
|
+
#: udata/auth/mails.py:137 udata/settings.py:133
|
|
38
34
|
msgid "Your password has been changed"
|
|
39
35
|
msgstr "La tua password è stata modificata"
|
|
40
36
|
|
|
41
|
-
#: udata/settings.py:
|
|
37
|
+
#: udata/settings.py:134
|
|
42
38
|
msgid "Password reset instructions"
|
|
43
39
|
msgstr "Istruzioni per reimpostare la password"
|
|
44
40
|
|
|
45
|
-
#: udata/settings.py:
|
|
41
|
+
#: udata/settings.py:553
|
|
46
42
|
msgid "This dataset has been archived"
|
|
47
43
|
msgstr "Questo dataset è stato archiviato"
|
|
48
44
|
|
|
@@ -51,47 +47,52 @@ msgstr "Questo dataset è stato archiviato"
|
|
|
51
47
|
msgid "Invalid URL \"{url}\": {reason}"
|
|
52
48
|
msgstr ""
|
|
53
49
|
|
|
54
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
50
|
+
#: udata/tests/api/test_datasets_api.py:1187 udata/tests/test_model.py:402
|
|
55
51
|
#: udata/uris.py:56
|
|
56
52
|
#, python-brace-format
|
|
57
53
|
msgid "Invalid URL \"{url}\""
|
|
58
54
|
msgstr ""
|
|
59
55
|
|
|
60
|
-
#: udata/uris.py:
|
|
56
|
+
#: udata/uris.py:128
|
|
61
57
|
#, python-brace-format
|
|
62
58
|
msgid "Invalid scheme {0}, allowed schemes: {1}"
|
|
63
59
|
msgstr ""
|
|
64
60
|
|
|
65
|
-
#: udata/uris.py:
|
|
61
|
+
#: udata/uris.py:131
|
|
66
62
|
msgid "Credentials in URL are not allowed"
|
|
67
63
|
msgstr ""
|
|
68
64
|
|
|
69
|
-
#: udata/uris.py:
|
|
65
|
+
#: udata/uris.py:135
|
|
70
66
|
#, python-brace-format
|
|
71
67
|
msgid "Invalid TLD {0}"
|
|
72
68
|
msgstr ""
|
|
73
69
|
|
|
74
|
-
#: udata/uris.py:
|
|
70
|
+
#: udata/uris.py:144
|
|
75
71
|
#, python-brace-format
|
|
76
72
|
msgid "{0} is a multicast IP"
|
|
77
73
|
msgstr ""
|
|
78
74
|
|
|
79
|
-
#: udata/uris.py:
|
|
75
|
+
#: udata/uris.py:146
|
|
80
76
|
#, python-brace-format
|
|
81
77
|
msgid "{0} is a mask IP"
|
|
82
78
|
msgstr ""
|
|
83
79
|
|
|
84
|
-
#: udata/uris.py:
|
|
80
|
+
#: udata/uris.py:150
|
|
85
81
|
msgid "is a local URL"
|
|
86
82
|
msgstr ""
|
|
87
83
|
|
|
88
|
-
#: udata/tests/test_model.py:420 udata/uris.py:
|
|
84
|
+
#: udata/tests/test_model.py:420 udata/uris.py:157
|
|
89
85
|
msgid "is a private URL"
|
|
90
86
|
msgstr ""
|
|
91
87
|
|
|
92
88
|
#: udata/api/errors.py:4
|
|
93
|
-
msgid "
|
|
94
|
-
|
|
89
|
+
msgid ""
|
|
90
|
+
"Validation error: your data cannot be updated for now, we have been "
|
|
91
|
+
"notified of the error and we will fix it as soon as possible."
|
|
92
|
+
msgstr ""
|
|
93
|
+
"Errore di convalida: i tuoi dati non possono essere aggiornati per il "
|
|
94
|
+
"momento, siamo stati informati dell'errore e lo risolveremo il prima "
|
|
95
|
+
"possibile."
|
|
95
96
|
|
|
96
97
|
#: udata/api/oauth2.py:56
|
|
97
98
|
msgid "Bearer Token"
|
|
@@ -144,7 +145,7 @@ msgid "J'accepte les conditions générales d'utilisation"
|
|
|
144
145
|
msgstr ""
|
|
145
146
|
|
|
146
147
|
#: udata/auth/forms.py:52
|
|
147
|
-
msgid "
|
|
148
|
+
msgid "You must accept the terms of use to continue."
|
|
148
149
|
msgstr ""
|
|
149
150
|
|
|
150
151
|
#: udata/auth/forms.py:75 udata/tests/forms/test_current_user_field.py:192
|
|
@@ -310,35 +311,64 @@ msgid "Environmental protection"
|
|
|
310
311
|
msgstr ""
|
|
311
312
|
|
|
312
313
|
#: udata/core/access_type/constants.py:66
|
|
313
|
-
msgid "
|
|
314
|
+
msgid ""
|
|
315
|
+
"Public access to datasets and services would adversely affect the "
|
|
316
|
+
"confidentiality of the proceedings of public authorities, where such "
|
|
317
|
+
"confidentiality is provided for by law."
|
|
314
318
|
msgstr ""
|
|
315
319
|
|
|
316
320
|
#: udata/core/access_type/constants.py:70
|
|
317
|
-
msgid "
|
|
321
|
+
msgid ""
|
|
322
|
+
"Public access to datasets and services would adversely affect "
|
|
323
|
+
"international relations, public security or national defence."
|
|
318
324
|
msgstr ""
|
|
319
325
|
|
|
320
326
|
#: udata/core/access_type/constants.py:74
|
|
321
|
-
msgid "
|
|
327
|
+
msgid ""
|
|
328
|
+
"Public access to datasets and services would adversely affect the course "
|
|
329
|
+
"of justice, the ability of any person to receive a fair trial or the "
|
|
330
|
+
"ability of a public authority to conduct an enquiry of a criminal or "
|
|
331
|
+
"disciplinary nature."
|
|
322
332
|
msgstr ""
|
|
323
333
|
|
|
324
334
|
#: udata/core/access_type/constants.py:78
|
|
325
|
-
msgid "
|
|
335
|
+
msgid ""
|
|
336
|
+
"Public access to datasets and services would adversely affect the "
|
|
337
|
+
"confidentiality of commercial or industrial information, where such "
|
|
338
|
+
"confidentiality is provided for by national or Community law to protect a"
|
|
339
|
+
" legitimate economic interest, including the public interest in "
|
|
340
|
+
"maintaining statistical confidentiality and tax secrecy."
|
|
326
341
|
msgstr ""
|
|
327
342
|
|
|
328
343
|
#: udata/core/access_type/constants.py:82
|
|
329
|
-
msgid "
|
|
344
|
+
msgid ""
|
|
345
|
+
"Public access to datasets and services would adversely affect "
|
|
346
|
+
"intellectual property rights."
|
|
330
347
|
msgstr ""
|
|
331
348
|
|
|
332
349
|
#: udata/core/access_type/constants.py:86
|
|
333
|
-
msgid "
|
|
350
|
+
msgid ""
|
|
351
|
+
"Public access to datasets and services would adversely affect the "
|
|
352
|
+
"confidentiality of personal data and/or files relating to a natural "
|
|
353
|
+
"person where that person has not consented to the disclosure of the "
|
|
354
|
+
"information to the public, where such confidentiality is provided for by "
|
|
355
|
+
"national or Community law."
|
|
334
356
|
msgstr ""
|
|
335
357
|
|
|
336
358
|
#: udata/core/access_type/constants.py:90
|
|
337
|
-
msgid "
|
|
359
|
+
msgid ""
|
|
360
|
+
"Public access to datasets and services would adversely affect the "
|
|
361
|
+
"interests or protection of any person who supplied the information "
|
|
362
|
+
"requested on a voluntary basis without being under, or capable of being "
|
|
363
|
+
"put under, a legal obligation to do so, unless that person has consented "
|
|
364
|
+
"to the release of the information concerned."
|
|
338
365
|
msgstr ""
|
|
339
366
|
|
|
340
367
|
#: udata/core/access_type/constants.py:94
|
|
341
|
-
msgid "
|
|
368
|
+
msgid ""
|
|
369
|
+
"Public access to datasets and services would adversely affect the "
|
|
370
|
+
"protection of the environment to which such information relates, such as "
|
|
371
|
+
"the location of rare species."
|
|
342
372
|
msgstr ""
|
|
343
373
|
|
|
344
374
|
#: udata/core/access_type/models.py:25
|
|
@@ -358,8 +388,8 @@ msgid "An existing contact point already exists with these informations."
|
|
|
358
388
|
msgstr ""
|
|
359
389
|
|
|
360
390
|
#: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
|
|
361
|
-
#: udata/core/organization/forms.py:46 udata/core/
|
|
362
|
-
#: udata/
|
|
391
|
+
#: udata/core/organization/forms.py:46 udata/core/topic/forms.py:37
|
|
392
|
+
#: udata/harvest/forms.py:80
|
|
363
393
|
msgid "Name"
|
|
364
394
|
msgstr "Nome"
|
|
365
395
|
|
|
@@ -430,7 +460,8 @@ msgstr ""
|
|
|
430
460
|
msgid "User"
|
|
431
461
|
msgstr ""
|
|
432
462
|
|
|
433
|
-
#: udata/core/contact_point/models.py:34
|
|
463
|
+
#: udata/core/contact_point/models.py:34
|
|
464
|
+
#: udata/tests/api/test_contact_points.py:136
|
|
434
465
|
msgid "At least an email or a contact form is required for a contact point"
|
|
435
466
|
msgstr ""
|
|
436
467
|
|
|
@@ -446,7 +477,7 @@ msgstr ""
|
|
|
446
477
|
msgid "deleted a dataservice"
|
|
447
478
|
msgstr ""
|
|
448
479
|
|
|
449
|
-
#: udata/core/dataservices/api.py:
|
|
480
|
+
#: udata/core/dataservices/api.py:63
|
|
450
481
|
msgid "Latest APIs"
|
|
451
482
|
msgstr ""
|
|
452
483
|
|
|
@@ -458,12 +489,12 @@ msgstr ""
|
|
|
458
489
|
msgid "dataservice"
|
|
459
490
|
msgstr ""
|
|
460
491
|
|
|
461
|
-
#: udata/core/dataservices/models.py:
|
|
492
|
+
#: udata/core/dataservices/models.py:269 udata/core/dataset/models.py:595
|
|
462
493
|
#: udata/mongo/datetime_fields.py:60
|
|
463
494
|
msgid "Creation date"
|
|
464
495
|
msgstr "Data di creazione"
|
|
465
496
|
|
|
466
|
-
#: udata/core/dataservices/models.py:
|
|
497
|
+
#: udata/core/dataservices/models.py:275 udata/core/dataset/models.py:600
|
|
467
498
|
#: udata/mongo/datetime_fields.py:66
|
|
468
499
|
msgid "Last modification date"
|
|
469
500
|
msgstr "Data dell'ultima modifica"
|
|
@@ -492,7 +523,16 @@ msgstr ""
|
|
|
492
523
|
msgid "removed a resource from a dataset"
|
|
493
524
|
msgstr ""
|
|
494
525
|
|
|
495
|
-
#: udata/core/dataset/api.py:
|
|
526
|
+
#: udata/core/dataset/api.py:344
|
|
527
|
+
#, python-brace-format
|
|
528
|
+
msgid "Datasets search: {q}"
|
|
529
|
+
msgstr ""
|
|
530
|
+
|
|
531
|
+
#: udata/core/dataset/api.py:346
|
|
532
|
+
msgid "Filtered datasets"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
535
|
+
#: udata/core/dataset/api.py:348
|
|
496
536
|
msgid "Latest datasets"
|
|
497
537
|
msgstr ""
|
|
498
538
|
|
|
@@ -648,7 +688,7 @@ msgstr ""
|
|
|
648
688
|
msgid "Not planned"
|
|
649
689
|
msgstr ""
|
|
650
690
|
|
|
651
|
-
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:
|
|
691
|
+
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:149
|
|
652
692
|
#: udata/core/spatial/constants.py:5
|
|
653
693
|
msgid "Other"
|
|
654
694
|
msgstr "Altro"
|
|
@@ -661,31 +701,31 @@ msgstr "Altro"
|
|
|
661
701
|
msgid "Unknown"
|
|
662
702
|
msgstr "Sconosciuto"
|
|
663
703
|
|
|
664
|
-
#: udata/core/dataset/constants.py:
|
|
704
|
+
#: udata/core/dataset/constants.py:144
|
|
665
705
|
msgid "Main file"
|
|
666
706
|
msgstr "File principale"
|
|
667
707
|
|
|
668
|
-
#: udata/core/dataset/constants.py:
|
|
708
|
+
#: udata/core/dataset/constants.py:145
|
|
669
709
|
msgid "Documentation"
|
|
670
710
|
msgstr "Documentazione"
|
|
671
711
|
|
|
672
|
-
#: udata/core/dataset/constants.py:
|
|
712
|
+
#: udata/core/dataset/constants.py:146
|
|
673
713
|
msgid "Update"
|
|
674
714
|
msgstr "Aggiornamento"
|
|
675
715
|
|
|
676
|
-
#: udata/core/dataset/constants.py:
|
|
716
|
+
#: udata/core/dataset/constants.py:147 udata/core/reuse/constants.py:4
|
|
677
717
|
msgid "API"
|
|
678
718
|
msgstr "API"
|
|
679
719
|
|
|
680
|
-
#: udata/core/dataset/constants.py:
|
|
720
|
+
#: udata/core/dataset/constants.py:148
|
|
681
721
|
msgid "Code repository"
|
|
682
722
|
msgstr "Repository di codice"
|
|
683
723
|
|
|
684
|
-
#: udata/core/dataset/constants.py:
|
|
724
|
+
#: udata/core/dataset/constants.py:156
|
|
685
725
|
msgid "Uploaded file"
|
|
686
726
|
msgstr "File caricato"
|
|
687
727
|
|
|
688
|
-
#: udata/core/dataset/constants.py:
|
|
728
|
+
#: udata/core/dataset/constants.py:157
|
|
689
729
|
msgid "Remote file"
|
|
690
730
|
msgstr "File remoto"
|
|
691
731
|
|
|
@@ -762,7 +802,7 @@ msgstr "Dimensione del file in byte"
|
|
|
762
802
|
msgid "Related dataset"
|
|
763
803
|
msgstr "Dataset correlato"
|
|
764
804
|
|
|
765
|
-
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:
|
|
805
|
+
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1099
|
|
766
806
|
msgid "Wrong contact point id or contact point ownership mismatch"
|
|
767
807
|
msgstr ""
|
|
768
808
|
|
|
@@ -831,9 +871,8 @@ msgstr "Copertura spaziale"
|
|
|
831
871
|
msgid "The geographical area covered by the data."
|
|
832
872
|
msgstr "La zona geografica coperta dai dati."
|
|
833
873
|
|
|
834
|
-
#: udata/core/dataset/forms.py:211 udata/core/
|
|
835
|
-
#: udata/core/
|
|
836
|
-
#: udata/core/topic/forms.py:89
|
|
874
|
+
#: udata/core/dataset/forms.py:211 udata/core/site/forms.py:13
|
|
875
|
+
#: udata/core/topic/forms.py:15 udata/core/topic/forms.py:89
|
|
837
876
|
msgid "Tags"
|
|
838
877
|
msgstr "Tag"
|
|
839
878
|
|
|
@@ -849,65 +888,69 @@ msgstr "Privato"
|
|
|
849
888
|
msgid "Restrict the dataset visibility to you or your organization only."
|
|
850
889
|
msgstr "Limita la visibilità del dataset solo a te o alla tua organizzazione."
|
|
851
890
|
|
|
852
|
-
#: udata/core/dataset/models.py:
|
|
891
|
+
#: udata/core/dataset/models.py:71
|
|
853
892
|
msgid "Pivotal data"
|
|
854
893
|
msgstr "Dati cardine"
|
|
855
894
|
|
|
856
|
-
#: udata/core/dataset/models.py:
|
|
895
|
+
#: udata/core/dataset/models.py:72
|
|
857
896
|
msgid "Reference data public service"
|
|
858
897
|
msgstr ""
|
|
859
898
|
|
|
860
|
-
#: udata/core/dataset/models.py:
|
|
899
|
+
#: udata/core/dataset/models.py:73
|
|
861
900
|
msgid "Inspire"
|
|
862
901
|
msgstr ""
|
|
863
902
|
|
|
864
|
-
#: udata/core/dataset/models.py:
|
|
903
|
+
#: udata/core/dataset/models.py:74
|
|
865
904
|
msgid "High value datasets"
|
|
866
905
|
msgstr ""
|
|
867
906
|
|
|
868
|
-
#: udata/core/dataset/models.py:
|
|
907
|
+
#: udata/core/dataset/models.py:75
|
|
869
908
|
msgid "Certified statistic series"
|
|
870
909
|
msgstr ""
|
|
871
910
|
|
|
872
|
-
#: udata/core/dataset/models.py:
|
|
911
|
+
#: udata/core/dataset/models.py:76
|
|
873
912
|
msgid "Statistical series of general interest"
|
|
874
913
|
msgstr ""
|
|
875
914
|
|
|
876
|
-
#: udata/core/dataset/models.py:
|
|
915
|
+
#: udata/core/dataset/models.py:158
|
|
877
916
|
msgid "A schema must contains a name or an URL when a version is provided."
|
|
878
917
|
msgstr ""
|
|
879
918
|
|
|
880
|
-
#: udata/core/dataset/models.py:
|
|
881
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
919
|
+
#: udata/core/dataset/models.py:190 udata/tests/api/test_datasets_api.py:1195
|
|
920
|
+
#: udata/tests/api/test_datasets_api.py:1206
|
|
882
921
|
#, python-brace-format
|
|
883
922
|
msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
|
|
884
|
-
msgstr "
|
|
923
|
+
msgstr ""
|
|
924
|
+
"Il nome dello schema \"{schema}\" non è un valore consentito. Valori "
|
|
925
|
+
"consentiti: {values}"
|
|
885
926
|
|
|
886
|
-
#: udata/core/dataset/models.py:
|
|
927
|
+
#: udata/core/dataset/models.py:209 udata/tests/api/test_datasets_api.py:1218
|
|
887
928
|
#, python-brace-format
|
|
888
|
-
msgid "
|
|
929
|
+
msgid ""
|
|
930
|
+
"Version \"{version}\" is not an allowed value for the schema \"{name}\". "
|
|
931
|
+
"Allowed versions: {values}"
|
|
889
932
|
msgstr ""
|
|
890
933
|
|
|
891
|
-
#: udata/core/dataset/models.py:
|
|
892
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
893
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
934
|
+
#: udata/core/dataset/models.py:458 udata/core/dataset/rdf.py:596
|
|
935
|
+
#: udata/tests/dataset/test_dataset_rdf.py:1007
|
|
936
|
+
#: udata/tests/dataset/test_dataset_rdf.py:1020
|
|
894
937
|
msgid "Nameless resource"
|
|
895
938
|
msgstr "File senza nome"
|
|
896
939
|
|
|
897
|
-
#: udata/core/dataset/models.py:
|
|
940
|
+
#: udata/core/dataset/models.py:568
|
|
898
941
|
msgid "Future date of update"
|
|
899
942
|
msgstr "Data di aggiornamento futura"
|
|
900
943
|
|
|
901
|
-
#: udata/core/dataset/models.py:
|
|
944
|
+
#: udata/core/dataset/models.py:606
|
|
902
945
|
msgid "Last update of the dataset resources"
|
|
903
946
|
msgstr ""
|
|
904
947
|
|
|
905
|
-
#: udata/core/dataset/models.py:
|
|
948
|
+
#: udata/core/dataset/models.py:661
|
|
906
949
|
msgid "dataset"
|
|
907
950
|
msgstr "dataset"
|
|
908
951
|
|
|
909
|
-
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:
|
|
910
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
952
|
+
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:977
|
|
953
|
+
#: udata/tests/dataset/test_dataset_rdf.py:994
|
|
911
954
|
#, python-brace-format
|
|
912
955
|
msgid "{format} resource"
|
|
913
956
|
msgstr "File {format}"
|
|
@@ -961,13 +1004,23 @@ msgstr "Una discussione è stata chiusa"
|
|
|
961
1004
|
|
|
962
1005
|
#: udata/core/discussions/mails.py:53
|
|
963
1006
|
#, python-format
|
|
964
|
-
msgid "
|
|
1007
|
+
msgid ""
|
|
1008
|
+
"The discussion you participated in on the %(type)s %(object)s has been "
|
|
1009
|
+
"closed by %(user_or_org)s."
|
|
965
1010
|
msgstr ""
|
|
966
1011
|
|
|
967
1012
|
#: udata/core/discussions/mails.py:61
|
|
968
1013
|
msgid "View the discussion"
|
|
969
1014
|
msgstr ""
|
|
970
1015
|
|
|
1016
|
+
#: udata/core/discussions/models.py:18
|
|
1017
|
+
msgid "message"
|
|
1018
|
+
msgstr ""
|
|
1019
|
+
|
|
1020
|
+
#: udata/core/discussions/models.py:76
|
|
1021
|
+
msgid "discussion"
|
|
1022
|
+
msgstr ""
|
|
1023
|
+
|
|
971
1024
|
#: udata/core/jobs/forms.py:29
|
|
972
1025
|
msgid "Tasks"
|
|
973
1026
|
msgstr "Attività"
|
|
@@ -986,6 +1039,65 @@ msgstr "ogni {0.period_singular}"
|
|
|
986
1039
|
msgid "every {0.every} {0.period}"
|
|
987
1040
|
msgstr "ogni {0.every} {0.period}"
|
|
988
1041
|
|
|
1042
|
+
#: udata/core/legal/mails.py:81
|
|
1043
|
+
#, python-format
|
|
1044
|
+
msgid ""
|
|
1045
|
+
"Our %(terms_link)s specify in point %(article)s that the platform is not "
|
|
1046
|
+
"\"intended to disseminate advertising content, promotions of private "
|
|
1047
|
+
"interests, content contrary to public order, illegal content, spam and "
|
|
1048
|
+
"any contribution violating the applicable legal framework. The Editor "
|
|
1049
|
+
"reserves the right, without prior notice, to remove or make inaccessible "
|
|
1050
|
+
"content published on the Platform that has no connection with its "
|
|
1051
|
+
"Purpose. The Editor does not carry out \"a priori\" control over "
|
|
1052
|
+
"publications. As soon as the Editor becomes aware of content contrary to "
|
|
1053
|
+
"these terms of use, it acts quickly to remove or make it inaccessible\"."
|
|
1054
|
+
msgstr ""
|
|
1055
|
+
|
|
1056
|
+
#: udata/core/legal/mails.py:95
|
|
1057
|
+
msgid ""
|
|
1058
|
+
"The platform is not \"intended to disseminate advertising content, "
|
|
1059
|
+
"promotions of private interests, content contrary to public order, "
|
|
1060
|
+
"illegal content, spam and any contribution violating the applicable legal"
|
|
1061
|
+
" framework. The Editor reserves the right, without prior notice, to "
|
|
1062
|
+
"remove or make inaccessible content published on the Platform that has no"
|
|
1063
|
+
" connection with its Purpose. The Editor does not carry out \"a priori\" "
|
|
1064
|
+
"control over publications. As soon as the Editor becomes aware of content"
|
|
1065
|
+
" contrary to these terms of use, it acts quickly to remove or make it "
|
|
1066
|
+
"inaccessible\"."
|
|
1067
|
+
msgstr ""
|
|
1068
|
+
|
|
1069
|
+
#: udata/core/legal/mails.py:107
|
|
1070
|
+
#, python-format
|
|
1071
|
+
msgid ""
|
|
1072
|
+
"You may contest this decision within two months of its notification by "
|
|
1073
|
+
"filing an administrative appeal (recours gracieux ou hiérarchique). You "
|
|
1074
|
+
"may also bring the matter before the administrative court via the "
|
|
1075
|
+
"\"%(telerecours_link)s\" application."
|
|
1076
|
+
msgstr ""
|
|
1077
|
+
|
|
1078
|
+
#: udata/core/legal/mails.py:114
|
|
1079
|
+
msgid "You may contest this decision by contacting us."
|
|
1080
|
+
msgstr ""
|
|
1081
|
+
|
|
1082
|
+
#: udata/core/legal/mails.py:117
|
|
1083
|
+
#, python-format
|
|
1084
|
+
msgid "Your %(content_type)s has been deleted."
|
|
1085
|
+
msgstr ""
|
|
1086
|
+
|
|
1087
|
+
#: udata/core/legal/mails.py:120
|
|
1088
|
+
msgid "Best regards,"
|
|
1089
|
+
msgstr ""
|
|
1090
|
+
|
|
1091
|
+
#: udata/core/legal/mails.py:122
|
|
1092
|
+
#, python-format
|
|
1093
|
+
msgid "%(site)s team member"
|
|
1094
|
+
msgstr ""
|
|
1095
|
+
|
|
1096
|
+
#: udata/core/legal/mails.py:126
|
|
1097
|
+
#, python-format
|
|
1098
|
+
msgid "Deletion of your %(content_type)s"
|
|
1099
|
+
msgstr ""
|
|
1100
|
+
|
|
989
1101
|
#: udata/core/organization/activities.py:18
|
|
990
1102
|
msgid "created an organization"
|
|
991
1103
|
msgstr "ha creato un'organizzazione"
|
|
@@ -1002,18 +1114,19 @@ msgstr "Amministratore"
|
|
|
1002
1114
|
msgid "Editor"
|
|
1003
1115
|
msgstr "Editor"
|
|
1004
1116
|
|
|
1005
|
-
#: udata/core/organization/constants.py:11 udata/features/transfer/models.py:
|
|
1006
|
-
#: udata/harvest/models.py:28 udata/harvest/models.py:40
|
|
1117
|
+
#: udata/core/organization/constants.py:11 udata/features/transfer/models.py:16
|
|
1118
|
+
#: udata/harvest/models.py:28 udata/harvest/models.py:40
|
|
1119
|
+
#: udata/harvest/models.py:89
|
|
1007
1120
|
msgid "Pending"
|
|
1008
1121
|
msgstr "In attesa"
|
|
1009
1122
|
|
|
1010
|
-
#: udata/core/organization/constants.py:12 udata/features/transfer/models.py:
|
|
1011
|
-
#: udata/harvest/models.py:
|
|
1123
|
+
#: udata/core/organization/constants.py:12 udata/features/transfer/models.py:17
|
|
1124
|
+
#: udata/harvest/models.py:90
|
|
1012
1125
|
msgid "Accepted"
|
|
1013
1126
|
msgstr "Accettato"
|
|
1014
1127
|
|
|
1015
|
-
#: udata/core/organization/constants.py:13 udata/features/transfer/models.py:
|
|
1016
|
-
#: udata/harvest/models.py:
|
|
1128
|
+
#: udata/core/organization/constants.py:13 udata/features/transfer/models.py:18
|
|
1129
|
+
#: udata/harvest/models.py:91
|
|
1017
1130
|
msgid "Refused"
|
|
1018
1131
|
msgstr "Rifiutato"
|
|
1019
1132
|
|
|
@@ -1066,7 +1179,9 @@ msgstr "Nuova richiesta di adesione"
|
|
|
1066
1179
|
|
|
1067
1180
|
#: udata/core/organization/mails.py:13
|
|
1068
1181
|
#, python-format
|
|
1069
|
-
msgid "
|
|
1182
|
+
msgid ""
|
|
1183
|
+
"You received a membership request from %(user)s for your organization "
|
|
1184
|
+
"%(org)s"
|
|
1070
1185
|
msgstr ""
|
|
1071
1186
|
|
|
1072
1187
|
#: udata/core/organization/mails.py:18
|
|
@@ -1092,7 +1207,9 @@ msgstr ""
|
|
|
1092
1207
|
|
|
1093
1208
|
#: udata/core/organization/mails.py:44
|
|
1094
1209
|
#, python-format
|
|
1095
|
-
msgid "
|
|
1210
|
+
msgid ""
|
|
1211
|
+
"Good news! Your request to join the organization %(org)s has been "
|
|
1212
|
+
"approved."
|
|
1096
1213
|
msgstr ""
|
|
1097
1214
|
|
|
1098
1215
|
#: udata/core/organization/mails.py:49 udata/core/organization/mails.py:66
|
|
@@ -1117,7 +1234,9 @@ msgstr ""
|
|
|
1117
1234
|
|
|
1118
1235
|
#: udata/core/organization/mails.py:78
|
|
1119
1236
|
#, python-format
|
|
1120
|
-
msgid "
|
|
1237
|
+
msgid ""
|
|
1238
|
+
"Good news! Your organization %(org)s has been certified by our team. A "
|
|
1239
|
+
"badge is now associated with your organization."
|
|
1121
1240
|
msgstr ""
|
|
1122
1241
|
|
|
1123
1242
|
#: udata/core/organization/mails.py:89
|
|
@@ -1126,7 +1245,9 @@ msgstr ""
|
|
|
1126
1245
|
|
|
1127
1246
|
#: udata/core/organization/mails.py:93
|
|
1128
1247
|
#, python-format
|
|
1129
|
-
msgid "
|
|
1248
|
+
msgid ""
|
|
1249
|
+
"Good news! Your organization %(org)s has been identified by our team as a"
|
|
1250
|
+
" public service. A badge is now associated with your organization."
|
|
1130
1251
|
msgstr ""
|
|
1131
1252
|
|
|
1132
1253
|
#: udata/core/organization/mails.py:104
|
|
@@ -1135,7 +1256,9 @@ msgstr ""
|
|
|
1135
1256
|
|
|
1136
1257
|
#: udata/core/organization/mails.py:108
|
|
1137
1258
|
#, python-format
|
|
1138
|
-
msgid "
|
|
1259
|
+
msgid ""
|
|
1260
|
+
"Good news! Your organization %(org)s has been identified by our team as a"
|
|
1261
|
+
" local authority. A badge is now associated with your organization."
|
|
1139
1262
|
msgstr ""
|
|
1140
1263
|
|
|
1141
1264
|
#: udata/core/organization/mails.py:119
|
|
@@ -1144,7 +1267,9 @@ msgstr ""
|
|
|
1144
1267
|
|
|
1145
1268
|
#: udata/core/organization/mails.py:123
|
|
1146
1269
|
#, python-format
|
|
1147
|
-
msgid "
|
|
1270
|
+
msgid ""
|
|
1271
|
+
"Your organization %(org)s has been identified by our team as a company. A"
|
|
1272
|
+
" badge is now associated with your organization."
|
|
1148
1273
|
msgstr ""
|
|
1149
1274
|
|
|
1150
1275
|
#: udata/core/organization/mails.py:134
|
|
@@ -1153,30 +1278,36 @@ msgstr ""
|
|
|
1153
1278
|
|
|
1154
1279
|
#: udata/core/organization/mails.py:138
|
|
1155
1280
|
#, python-format
|
|
1156
|
-
msgid "
|
|
1281
|
+
msgid ""
|
|
1282
|
+
"Your organization %(org)s has been identified by our team as an "
|
|
1283
|
+
"association. A badge is now associated with your organization."
|
|
1157
1284
|
msgstr ""
|
|
1158
1285
|
|
|
1159
|
-
#: udata/core/organization/models.py:
|
|
1286
|
+
#: udata/core/organization/models.py:40
|
|
1160
1287
|
msgid "Public Service"
|
|
1161
1288
|
msgstr "Servizio Pubblico"
|
|
1162
1289
|
|
|
1163
|
-
#: udata/core/organization/models.py:
|
|
1290
|
+
#: udata/core/organization/models.py:41
|
|
1164
1291
|
msgid "Certified"
|
|
1165
1292
|
msgstr "Certificato"
|
|
1166
1293
|
|
|
1167
|
-
#: udata/core/organization/models.py:
|
|
1294
|
+
#: udata/core/organization/models.py:42
|
|
1168
1295
|
msgid "Association"
|
|
1169
1296
|
msgstr ""
|
|
1170
1297
|
|
|
1171
|
-
#: udata/core/organization/models.py:
|
|
1298
|
+
#: udata/core/organization/models.py:43
|
|
1172
1299
|
msgid "Company"
|
|
1173
1300
|
msgstr ""
|
|
1174
1301
|
|
|
1175
|
-
#: udata/core/organization/models.py:
|
|
1302
|
+
#: udata/core/organization/models.py:44
|
|
1176
1303
|
msgid "Local authority"
|
|
1177
1304
|
msgstr ""
|
|
1178
1305
|
|
|
1179
|
-
#: udata/core/
|
|
1306
|
+
#: udata/core/organization/models.py:183
|
|
1307
|
+
msgid "organization"
|
|
1308
|
+
msgstr ""
|
|
1309
|
+
|
|
1310
|
+
#: udata/core/post/api.py:73
|
|
1180
1311
|
msgid "Latests posts"
|
|
1181
1312
|
msgstr ""
|
|
1182
1313
|
|
|
@@ -1188,43 +1319,19 @@ msgstr "Markdown"
|
|
|
1188
1319
|
msgid "HTML"
|
|
1189
1320
|
msgstr "HTML"
|
|
1190
1321
|
|
|
1191
|
-
#: udata/core/post/
|
|
1192
|
-
msgid "
|
|
1193
|
-
msgstr "
|
|
1194
|
-
|
|
1195
|
-
#: udata/core/post/forms.py:17
|
|
1196
|
-
msgid "Content"
|
|
1197
|
-
msgstr "Contenuto"
|
|
1198
|
-
|
|
1199
|
-
#: udata/core/post/forms.py:19
|
|
1200
|
-
msgid "Associated datasets"
|
|
1201
|
-
msgstr "Dataset associati"
|
|
1202
|
-
|
|
1203
|
-
#: udata/core/post/forms.py:20
|
|
1204
|
-
msgid "Associated reuses"
|
|
1205
|
-
msgstr "Riusi associati"
|
|
1206
|
-
|
|
1207
|
-
#: udata/core/post/forms.py:22
|
|
1208
|
-
msgid "Image"
|
|
1209
|
-
msgstr "Immagine"
|
|
1210
|
-
|
|
1211
|
-
#: udata/core/post/forms.py:23
|
|
1212
|
-
msgid "Image credits"
|
|
1213
|
-
msgstr "Crediti dell'immagine"
|
|
1214
|
-
|
|
1215
|
-
#: udata/core/post/forms.py:24
|
|
1216
|
-
msgid "Credit URL"
|
|
1217
|
-
msgstr "URL dei crediti"
|
|
1322
|
+
#: udata/core/post/constants.py:11
|
|
1323
|
+
msgid "Blocs"
|
|
1324
|
+
msgstr ""
|
|
1218
1325
|
|
|
1219
|
-
#: udata/core/post/
|
|
1220
|
-
msgid "
|
|
1221
|
-
msgstr "
|
|
1326
|
+
#: udata/core/post/constants.py:17
|
|
1327
|
+
msgid "News"
|
|
1328
|
+
msgstr ""
|
|
1222
1329
|
|
|
1223
|
-
#: udata/core/post/
|
|
1224
|
-
msgid "
|
|
1225
|
-
msgstr "
|
|
1330
|
+
#: udata/core/post/constants.py:18
|
|
1331
|
+
msgid "Page"
|
|
1332
|
+
msgstr ""
|
|
1226
1333
|
|
|
1227
|
-
#: udata/core/post/models.py:
|
|
1334
|
+
#: udata/core/post/models.py:129
|
|
1228
1335
|
msgid "post"
|
|
1229
1336
|
msgstr "articolo"
|
|
1230
1337
|
|
|
@@ -1264,7 +1371,7 @@ msgstr "ha aggiornato un riuso"
|
|
|
1264
1371
|
msgid "deleted a reuse"
|
|
1265
1372
|
msgstr "ha eliminato un riuso"
|
|
1266
1373
|
|
|
1267
|
-
#: udata/core/reuse/api.py:
|
|
1374
|
+
#: udata/core/reuse/api.py:142
|
|
1268
1375
|
msgid "Latests reuses"
|
|
1269
1376
|
msgstr ""
|
|
1270
1377
|
|
|
@@ -1358,7 +1465,9 @@ msgstr ""
|
|
|
1358
1465
|
|
|
1359
1466
|
#: udata/core/reuse/mails.py:13
|
|
1360
1467
|
#, python-format
|
|
1361
|
-
msgid "
|
|
1468
|
+
msgid ""
|
|
1469
|
+
"A new reuse has been published by %(user_or_org)s on your dataset "
|
|
1470
|
+
"%(dataset)s"
|
|
1362
1471
|
msgstr ""
|
|
1363
1472
|
|
|
1364
1473
|
#: udata/core/reuse/mails.py:18
|
|
@@ -1579,7 +1688,10 @@ msgstr ""
|
|
|
1579
1688
|
|
|
1580
1689
|
#: udata/core/user/mails.py:36
|
|
1581
1690
|
#, python-format
|
|
1582
|
-
msgid "
|
|
1691
|
+
msgid ""
|
|
1692
|
+
"We have noticed that your account associated to (%(user_email)s) has been"
|
|
1693
|
+
" inactive for %(inactivity_years)d years or more on %(site)s, the open "
|
|
1694
|
+
"platform for public data."
|
|
1583
1695
|
msgstr ""
|
|
1584
1696
|
|
|
1585
1697
|
#: udata/core/user/mails.py:42
|
|
@@ -1588,12 +1700,20 @@ msgstr ""
|
|
|
1588
1700
|
|
|
1589
1701
|
#: udata/core/user/mails.py:46
|
|
1590
1702
|
#, python-format
|
|
1591
|
-
msgid "
|
|
1703
|
+
msgid ""
|
|
1704
|
+
"Without logging in, your account will be deleted within %(notify_delay)d "
|
|
1705
|
+
"days."
|
|
1592
1706
|
msgstr ""
|
|
1593
1707
|
|
|
1594
1708
|
#: udata/core/user/mails.py:50
|
|
1595
1709
|
#, python-format
|
|
1596
|
-
msgid "
|
|
1710
|
+
msgid ""
|
|
1711
|
+
"This account is not tied to your other administration accounts and you "
|
|
1712
|
+
"can always re-create an account on the %(site)s platform if necessary."
|
|
1713
|
+
msgstr ""
|
|
1714
|
+
|
|
1715
|
+
#: udata/core/user/models.py:130
|
|
1716
|
+
msgid "account"
|
|
1597
1717
|
msgstr ""
|
|
1598
1718
|
|
|
1599
1719
|
#: udata/core/user/permissions.py:5
|
|
@@ -1632,7 +1752,9 @@ msgstr "UUID non valido"
|
|
|
1632
1752
|
#: udata/forms/fields.py:421 udata/mongo/taglist_field.py:38
|
|
1633
1753
|
#, python-format
|
|
1634
1754
|
msgid "Tag \"%(tag)s\" must be between %(min)d and %(max)d characters long."
|
|
1635
|
-
msgstr "
|
|
1755
|
+
msgstr ""
|
|
1756
|
+
"Il tag \"%(tag)s\" deve essere di lunghezza compresa tra %(min)d e "
|
|
1757
|
+
"%(max)d caratteri."
|
|
1636
1758
|
|
|
1637
1759
|
#: udata/forms/fields.py:461 udata/forms/fields.py:520
|
|
1638
1760
|
#, python-brace-format
|
|
@@ -1682,7 +1804,7 @@ msgstr "Devi essere autenticatə"
|
|
|
1682
1804
|
msgid "This field requires \"%(name)s\" to be set"
|
|
1683
1805
|
msgstr "Questo campo richiede la definizione di \"%(name)s\""
|
|
1684
1806
|
|
|
1685
|
-
#: udata/frontend/markdown.py:
|
|
1807
|
+
#: udata/frontend/markdown.py:28
|
|
1686
1808
|
msgid "Source"
|
|
1687
1809
|
msgstr "Fonte"
|
|
1688
1810
|
|
|
@@ -1734,27 +1856,27 @@ msgstr "Ignorato"
|
|
|
1734
1856
|
msgid "Archived"
|
|
1735
1857
|
msgstr "Archiviato"
|
|
1736
1858
|
|
|
1737
|
-
#: udata/harvest/backends/dcat.py:
|
|
1859
|
+
#: udata/harvest/backends/dcat.py:437
|
|
1738
1860
|
msgid "Remote URL prefix"
|
|
1739
1861
|
msgstr ""
|
|
1740
1862
|
|
|
1741
|
-
#: udata/harvest/backends/dcat.py:
|
|
1863
|
+
#: udata/harvest/backends/dcat.py:440
|
|
1742
1864
|
msgid "A prefix used to build the remote URL of the harvested items."
|
|
1743
1865
|
msgstr ""
|
|
1744
1866
|
|
|
1745
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1867
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1746
1868
|
msgid "Organization"
|
|
1747
1869
|
msgstr ""
|
|
1748
1870
|
|
|
1749
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1871
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1750
1872
|
msgid "A CKAN Organization name"
|
|
1751
1873
|
msgstr ""
|
|
1752
1874
|
|
|
1753
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1875
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1754
1876
|
msgid "Tag"
|
|
1755
1877
|
msgstr ""
|
|
1756
1878
|
|
|
1757
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1879
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1758
1880
|
msgid "A CKAN tag name"
|
|
1759
1881
|
msgstr ""
|
|
1760
1882
|
|
|
@@ -1773,39 +1895,31 @@ msgid "Back to home"
|
|
|
1773
1895
|
msgstr ""
|
|
1774
1896
|
|
|
1775
1897
|
#: udata/templates/comments/dataset_archived.txt:1
|
|
1776
|
-
msgid "
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1898
|
+
msgid ""
|
|
1899
|
+
"This dataset has been archived by our administration team.\n"
|
|
1900
|
+
"\n"
|
|
1901
|
+
"An archived dataset is considered out of date by a combination of "
|
|
1902
|
+
"factors.\n"
|
|
1903
|
+
"It does not appear in the search results and has a special layout warning"
|
|
1904
|
+
" the site's users.\n"
|
|
1905
|
+
"\n"
|
|
1779
1906
|
"If you think this is a mistake, you can contact the site administrator."
|
|
1780
1907
|
msgstr ""
|
|
1781
1908
|
|
|
1782
|
-
#: udata/templates/mail/
|
|
1783
|
-
msgid "on your browser."
|
|
1784
|
-
msgstr ""
|
|
1785
|
-
|
|
1786
|
-
#: udata/templates/mail/base.html:48
|
|
1787
|
-
#, python-format
|
|
1788
|
-
msgid "View this email %(link)s"
|
|
1789
|
-
msgstr ""
|
|
1790
|
-
|
|
1791
|
-
#: udata/templates/mail/base.html:76 udata/templates/mail/message.html:41
|
|
1909
|
+
#: udata/templates/mail/message.html:15
|
|
1792
1910
|
#, python-format
|
|
1793
1911
|
msgid "Hi %(user)s"
|
|
1794
1912
|
msgstr ""
|
|
1795
1913
|
|
|
1796
|
-
#: udata/templates/mail/
|
|
1797
|
-
msgid "
|
|
1914
|
+
#: udata/templates/mail/message.html:36
|
|
1915
|
+
msgid "Have a great day"
|
|
1798
1916
|
msgstr ""
|
|
1799
1917
|
|
|
1800
|
-
#: udata/templates/mail/
|
|
1918
|
+
#: udata/templates/mail/message.html:37
|
|
1801
1919
|
#, python-format
|
|
1802
1920
|
msgid "The %(site)s team"
|
|
1803
1921
|
msgstr ""
|
|
1804
1922
|
|
|
1805
|
-
#: udata/templates/mail/message.html:62
|
|
1806
|
-
msgid "Have a great day"
|
|
1807
|
-
msgstr ""
|
|
1808
|
-
|
|
1809
1923
|
#: udata/templates/security/change_password.html:9
|
|
1810
1924
|
#: udata/templates/security/change_password.html:16
|
|
1811
1925
|
msgid "Change Password"
|
|
@@ -1819,7 +1933,9 @@ msgid "Reset Password"
|
|
|
1819
1933
|
msgstr ""
|
|
1820
1934
|
|
|
1821
1935
|
#: udata/templates/security/forgot_password.html:10
|
|
1822
|
-
msgid "
|
|
1936
|
+
msgid ""
|
|
1937
|
+
"Forgotten your password? Enter your email address below, and we'll email "
|
|
1938
|
+
"instructions for setting a new one."
|
|
1823
1939
|
msgstr ""
|
|
1824
1940
|
|
|
1825
1941
|
#: udata/templates/security/login_user.html:13
|
|
@@ -1915,3 +2031,42 @@ msgstr ""
|
|
|
1915
2031
|
msgid "Deletion of your inactive {site} account"
|
|
1916
2032
|
msgstr ""
|
|
1917
2033
|
|
|
2034
|
+
#~ msgid "Vous devez accepter les CGU pour continuer."
|
|
2035
|
+
#~ msgstr ""
|
|
2036
|
+
|
|
2037
|
+
#~ msgid "Headline"
|
|
2038
|
+
#~ msgstr "Intestazione"
|
|
2039
|
+
|
|
2040
|
+
#~ msgid "Content"
|
|
2041
|
+
#~ msgstr "Contenuto"
|
|
2042
|
+
|
|
2043
|
+
#~ msgid "Associated datasets"
|
|
2044
|
+
#~ msgstr "Dataset associati"
|
|
2045
|
+
|
|
2046
|
+
#~ msgid "Associated reuses"
|
|
2047
|
+
#~ msgstr "Riusi associati"
|
|
2048
|
+
|
|
2049
|
+
#~ msgid "Image"
|
|
2050
|
+
#~ msgstr "Immagine"
|
|
2051
|
+
|
|
2052
|
+
#~ msgid "Image credits"
|
|
2053
|
+
#~ msgstr "Crediti dell'immagine"
|
|
2054
|
+
|
|
2055
|
+
#~ msgid "Credit URL"
|
|
2056
|
+
#~ msgstr "URL dei crediti"
|
|
2057
|
+
|
|
2058
|
+
#~ msgid "body type"
|
|
2059
|
+
#~ msgstr "tipo di corpo"
|
|
2060
|
+
|
|
2061
|
+
#~ msgid "Specify your body type (HTML or markdown)"
|
|
2062
|
+
#~ msgstr "Specifica il tipo di corpo (HTML o markdown)"
|
|
2063
|
+
|
|
2064
|
+
#~ msgid "on your browser."
|
|
2065
|
+
#~ msgstr ""
|
|
2066
|
+
|
|
2067
|
+
#~ msgid "View this email %(link)s"
|
|
2068
|
+
#~ msgstr ""
|
|
2069
|
+
|
|
2070
|
+
#~ msgid "See you soon on the platform"
|
|
2071
|
+
#~ msgstr ""
|
|
2072
|
+
|