udata 14.0.0__py3-none-any.whl → 14.4.1.dev7__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.
- udata/api_fields.py +35 -4
- udata/app.py +18 -20
- udata/auth/__init__.py +29 -6
- udata/auth/forms.py +2 -2
- udata/auth/views.py +6 -3
- udata/commands/serve.py +3 -11
- udata/commands/tests/test_fixtures.py +9 -9
- udata/core/access_type/api.py +1 -1
- udata/core/access_type/constants.py +12 -8
- udata/core/activity/api.py +5 -6
- udata/core/badges/tests/test_commands.py +6 -6
- udata/core/csv.py +5 -0
- udata/core/dataservices/models.py +1 -1
- udata/core/dataservices/tasks.py +7 -0
- udata/core/dataset/api.py +2 -0
- udata/core/dataset/models.py +2 -2
- udata/core/dataset/permissions.py +31 -0
- udata/core/dataset/tasks.py +17 -5
- udata/core/discussions/models.py +1 -0
- udata/core/organization/api.py +8 -5
- udata/core/organization/mails.py +1 -1
- udata/core/organization/models.py +9 -1
- udata/core/organization/notifications.py +84 -0
- udata/core/organization/permissions.py +1 -1
- udata/core/organization/tasks.py +3 -0
- udata/core/pages/tests/test_api.py +32 -0
- udata/core/post/api.py +24 -69
- udata/core/post/models.py +84 -16
- udata/core/post/tests/test_api.py +24 -1
- udata/core/reports/api.py +18 -0
- udata/core/reports/models.py +42 -2
- udata/core/reuse/models.py +1 -1
- udata/core/reuse/tasks.py +7 -0
- udata/core/spatial/forms.py +2 -2
- udata/core/user/models.py +5 -1
- udata/features/notifications/api.py +7 -18
- udata/features/notifications/models.py +56 -0
- udata/features/notifications/tasks.py +25 -0
- udata/flask_mongoengine/engine.py +0 -4
- udata/frontend/markdown.py +2 -1
- udata/harvest/actions.py +21 -1
- udata/harvest/api.py +25 -8
- udata/harvest/backends/base.py +27 -1
- udata/harvest/backends/ckan/harvesters.py +11 -2
- 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 +58 -5
- udata/harvest/tests/test_api.py +276 -122
- udata/harvest/tests/test_base_backend.py +86 -1
- udata/harvest/tests/test_dcat_backend.py +57 -10
- udata/harvest/tests/test_filters.py +6 -0
- udata/i18n.py +1 -4
- udata/mail.py +5 -1
- 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/mongo/slug_fields.py +1 -1
- udata/rdf.py +45 -6
- udata/routing.py +2 -2
- udata/settings.py +7 -0
- udata/tasks.py +1 -0
- udata/templates/mail/message.html +5 -31
- udata/tests/__init__.py +27 -2
- udata/tests/api/__init__.py +108 -21
- udata/tests/api/test_activities_api.py +36 -0
- udata/tests/api/test_auth_api.py +121 -95
- udata/tests/api/test_base_api.py +7 -4
- udata/tests/api/test_datasets_api.py +44 -19
- udata/tests/api/test_organizations_api.py +192 -197
- udata/tests/api/test_reports_api.py +157 -0
- udata/tests/api/test_reuses_api.py +147 -147
- udata/tests/api/test_security_api.py +12 -12
- udata/tests/api/test_swagger.py +4 -4
- udata/tests/api/test_tags_api.py +8 -8
- udata/tests/api/test_user_api.py +1 -1
- udata/tests/apiv2/test_swagger.py +4 -4
- udata/tests/cli/test_cli_base.py +8 -9
- udata/tests/dataset/test_dataset_commands.py +4 -4
- udata/tests/dataset/test_dataset_model.py +66 -26
- udata/tests/dataset/test_dataset_rdf.py +99 -5
- udata/tests/frontend/test_auth.py +24 -1
- udata/tests/frontend/test_csv.py +0 -3
- udata/tests/helpers.py +25 -27
- udata/tests/organization/test_notifications.py +67 -2
- udata/tests/plugin.py +6 -261
- udata/tests/site/test_site_csv_exports.py +22 -10
- udata/tests/test_activity.py +9 -9
- udata/tests/test_dcat_commands.py +2 -2
- udata/tests/test_discussions.py +5 -5
- udata/tests/test_migrations.py +21 -21
- 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_storages.py +25 -19
- udata/tests/test_topics.py +77 -61
- udata/tests/test_uris.py +33 -0
- udata/tests/workers/test_jobs_commands.py +23 -23
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +187 -108
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +187 -108
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +187 -108
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +188 -109
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +187 -108
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +187 -108
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +187 -108
- udata/translations/udata.pot +215 -106
- udata/uris.py +0 -2
- udata-14.4.1.dev7.dist-info/METADATA +109 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/RECORD +121 -123
- 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.0.dist-info/METADATA +0 -132
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/WHEEL +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/entry_points.txt +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/licenses/LICENSE +0 -0
- {udata-14.0.0.dist-info → udata-14.4.1.dev7.dist-info}/top_level.txt +0 -0
udata/translations/udata.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PROJECT VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: i18n@opendata.team\n"
|
|
11
|
-
"POT-Creation-Date: 2025-11-
|
|
12
|
-
"PO-Revision-Date: 2025-11-
|
|
11
|
+
"POT-Creation-Date: 2025-11-19 11:00+0100\n"
|
|
12
|
+
"PO-Revision-Date: 2025-11-19 11:00+0100\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"
|
|
@@ -19,31 +19,31 @@ msgstr ""
|
|
|
19
19
|
"Content-Transfer-Encoding: 8bit\n"
|
|
20
20
|
"Generated-By: Babel 2.17.0\n"
|
|
21
21
|
|
|
22
|
-
#: udata/settings.py:
|
|
22
|
+
#: udata/settings.py:127
|
|
23
23
|
msgid "Welcome"
|
|
24
24
|
msgstr ""
|
|
25
25
|
|
|
26
|
-
#: udata/settings.py:
|
|
26
|
+
#: udata/settings.py:128
|
|
27
27
|
msgid "Please confirm your email"
|
|
28
28
|
msgstr ""
|
|
29
29
|
|
|
30
|
-
#: udata/settings.py:
|
|
30
|
+
#: udata/settings.py:129
|
|
31
31
|
msgid "Login instructions"
|
|
32
32
|
msgstr ""
|
|
33
33
|
|
|
34
|
-
#: udata/auth/mails.py:125 udata/settings.py:
|
|
34
|
+
#: udata/auth/mails.py:125 udata/settings.py:130
|
|
35
35
|
msgid "Your password has been reset"
|
|
36
36
|
msgstr ""
|
|
37
37
|
|
|
38
|
-
#: udata/auth/mails.py:137 udata/settings.py:
|
|
38
|
+
#: udata/auth/mails.py:137 udata/settings.py:131
|
|
39
39
|
msgid "Your password has been changed"
|
|
40
40
|
msgstr ""
|
|
41
41
|
|
|
42
|
-
#: udata/settings.py:
|
|
42
|
+
#: udata/settings.py:132
|
|
43
43
|
msgid "Password reset instructions"
|
|
44
44
|
msgstr ""
|
|
45
45
|
|
|
46
|
-
#: udata/settings.py:
|
|
46
|
+
#: udata/settings.py:542
|
|
47
47
|
msgid "This dataset has been archived"
|
|
48
48
|
msgstr ""
|
|
49
49
|
|
|
@@ -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:
|
|
55
|
+
#: udata/tests/api/test_datasets_api.py:1174 udata/tests/test_model.py:402
|
|
56
56
|
#: udata/uris.py:56
|
|
57
57
|
#, python-brace-format
|
|
58
58
|
msgid "Invalid URL \"{url}\""
|
|
@@ -150,29 +150,29 @@ msgstr ""
|
|
|
150
150
|
msgid "Vous devez accepter les CGU pour continuer."
|
|
151
151
|
msgstr ""
|
|
152
152
|
|
|
153
|
-
#: udata/auth/forms.py:
|
|
153
|
+
#: udata/auth/forms.py:75 udata/tests/forms/test_current_user_field.py:192
|
|
154
154
|
msgid "Password must be changed for security reasons"
|
|
155
155
|
msgstr ""
|
|
156
156
|
|
|
157
|
-
#: udata/auth/forms.py:
|
|
157
|
+
#: udata/auth/forms.py:106
|
|
158
158
|
msgid "New email"
|
|
159
159
|
msgstr ""
|
|
160
160
|
|
|
161
|
-
#: udata/auth/forms.py:
|
|
161
|
+
#: udata/auth/forms.py:108
|
|
162
162
|
msgid "Retype email"
|
|
163
163
|
msgstr ""
|
|
164
164
|
|
|
165
|
-
#: udata/auth/forms.py:
|
|
165
|
+
#: udata/auth/forms.py:109
|
|
166
166
|
msgid "Email does not match"
|
|
167
167
|
msgstr ""
|
|
168
168
|
|
|
169
|
-
#: udata/auth/forms.py:
|
|
169
|
+
#: udata/auth/forms.py:111 udata/templates/security/change_email.html:10
|
|
170
170
|
#: udata/templates/security/change_email.html:16
|
|
171
171
|
msgid "Change email"
|
|
172
172
|
msgstr ""
|
|
173
173
|
|
|
174
174
|
#: udata/auth/mails.py:67 udata/auth/mails.py:71 udata/auth/mails.py:96
|
|
175
|
-
#: udata/auth/mails.py:99
|
|
175
|
+
#: udata/auth/mails.py:99 udata/tests/api/test_security_api.py:109
|
|
176
176
|
msgid "Confirm your email address"
|
|
177
177
|
msgstr ""
|
|
178
178
|
|
|
@@ -267,7 +267,7 @@ msgid "Your udata instance is ready!"
|
|
|
267
267
|
msgstr ""
|
|
268
268
|
|
|
269
269
|
#: udata/core/owned.py:64 udata/forms/fields.py:759
|
|
270
|
-
#: udata/tests/api/test_dataservices_api.py:
|
|
270
|
+
#: udata/tests/api/test_dataservices_api.py:569
|
|
271
271
|
msgid "You can only set yourself as owner"
|
|
272
272
|
msgstr ""
|
|
273
273
|
|
|
@@ -276,10 +276,107 @@ msgid "Unknown organization"
|
|
|
276
276
|
msgstr ""
|
|
277
277
|
|
|
278
278
|
#: udata/core/owned.py:77 udata/forms/fields.py:791
|
|
279
|
-
#: udata/tests/api/test_dataservices_api.py:
|
|
279
|
+
#: udata/tests/api/test_dataservices_api.py:582
|
|
280
280
|
msgid "Permission denied for this organization"
|
|
281
281
|
msgstr ""
|
|
282
282
|
|
|
283
|
+
#: udata/core/access_type/constants.py:42
|
|
284
|
+
msgid "Confidentiality of public authorities proceedings"
|
|
285
|
+
msgstr ""
|
|
286
|
+
|
|
287
|
+
#: udata/core/access_type/constants.py:44
|
|
288
|
+
msgid "International relations, public security or national defence"
|
|
289
|
+
msgstr ""
|
|
290
|
+
|
|
291
|
+
#: udata/core/access_type/constants.py:46
|
|
292
|
+
msgid "Course of justice"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
295
|
+
#: udata/core/access_type/constants.py:48
|
|
296
|
+
msgid "Commercial or industrial confidentiality"
|
|
297
|
+
msgstr ""
|
|
298
|
+
|
|
299
|
+
#: udata/core/access_type/constants.py:50
|
|
300
|
+
msgid "Intellectual property rights"
|
|
301
|
+
msgstr ""
|
|
302
|
+
|
|
303
|
+
#: udata/core/access_type/constants.py:52
|
|
304
|
+
msgid "Personal data confidentiality"
|
|
305
|
+
msgstr ""
|
|
306
|
+
|
|
307
|
+
#: udata/core/access_type/constants.py:54
|
|
308
|
+
msgid "Protection of voluntary information suppliers"
|
|
309
|
+
msgstr ""
|
|
310
|
+
|
|
311
|
+
#: udata/core/access_type/constants.py:56
|
|
312
|
+
msgid "Environmental protection"
|
|
313
|
+
msgstr ""
|
|
314
|
+
|
|
315
|
+
#: udata/core/access_type/constants.py:66
|
|
316
|
+
msgid ""
|
|
317
|
+
"Public access to datasets and services would adversely affect the "
|
|
318
|
+
"confidentiality of the proceedings of public authorities, where such "
|
|
319
|
+
"confidentiality is provided for by law."
|
|
320
|
+
msgstr ""
|
|
321
|
+
|
|
322
|
+
#: udata/core/access_type/constants.py:70
|
|
323
|
+
msgid ""
|
|
324
|
+
"Public access to datasets and services would adversely affect international "
|
|
325
|
+
"relations, public security or national defence."
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
#: udata/core/access_type/constants.py:74
|
|
329
|
+
msgid ""
|
|
330
|
+
"Public access to datasets and services would adversely affect the course of "
|
|
331
|
+
"justice, the ability of any person to receive a fair trial or the ability of "
|
|
332
|
+
"a public authority to conduct an enquiry of a criminal or disciplinary "
|
|
333
|
+
"nature."
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: udata/core/access_type/constants.py:78
|
|
337
|
+
msgid ""
|
|
338
|
+
"Public access to datasets and services would adversely affect the "
|
|
339
|
+
"confidentiality of commercial or industrial information, where such "
|
|
340
|
+
"confidentiality is provided for by national or Community law to protect a "
|
|
341
|
+
"legitimate economic interest, including the public interest in maintaining "
|
|
342
|
+
"statistical confidentiality and tax secrecy."
|
|
343
|
+
msgstr ""
|
|
344
|
+
|
|
345
|
+
#: udata/core/access_type/constants.py:82
|
|
346
|
+
msgid ""
|
|
347
|
+
"Public access to datasets and services would adversely affect intellectual "
|
|
348
|
+
"property rights."
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: udata/core/access_type/constants.py:86
|
|
352
|
+
msgid ""
|
|
353
|
+
"Public access to datasets and services would adversely affect the "
|
|
354
|
+
"confidentiality of personal data and/or files relating to a natural person "
|
|
355
|
+
"where that person has not consented to the disclosure of the information to "
|
|
356
|
+
"the public, where such confidentiality is provided for by national or "
|
|
357
|
+
"Community law."
|
|
358
|
+
msgstr ""
|
|
359
|
+
|
|
360
|
+
#: udata/core/access_type/constants.py:90
|
|
361
|
+
msgid ""
|
|
362
|
+
"Public access to datasets and services would adversely affect the interests "
|
|
363
|
+
"or protection of any person who supplied the information requested on a "
|
|
364
|
+
"voluntary basis without being under, or capable of being put under, a legal "
|
|
365
|
+
"obligation to do so, unless that person has consented to the release of the "
|
|
366
|
+
"information concerned."
|
|
367
|
+
msgstr ""
|
|
368
|
+
|
|
369
|
+
#: udata/core/access_type/constants.py:94
|
|
370
|
+
msgid ""
|
|
371
|
+
"Public access to datasets and services would adversely affect the protection "
|
|
372
|
+
"of the environment to which such information relates, such as the location of"
|
|
373
|
+
" rare species."
|
|
374
|
+
msgstr ""
|
|
375
|
+
|
|
376
|
+
#: udata/core/access_type/models.py:25
|
|
377
|
+
msgid "You can only set one condition for a given access audience role"
|
|
378
|
+
msgstr ""
|
|
379
|
+
|
|
283
380
|
#: udata/core/badges/forms.py:12
|
|
284
381
|
msgid "Kind"
|
|
285
382
|
msgstr ""
|
|
@@ -294,7 +391,7 @@ msgstr ""
|
|
|
294
391
|
|
|
295
392
|
#: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
|
|
296
393
|
#: udata/core/organization/forms.py:46 udata/core/post/forms.py:15
|
|
297
|
-
#: udata/core/topic/forms.py:37 udata/harvest/forms.py:
|
|
394
|
+
#: udata/core/topic/forms.py:37 udata/harvest/forms.py:80
|
|
298
395
|
msgid "Name"
|
|
299
396
|
msgstr ""
|
|
300
397
|
|
|
@@ -310,10 +407,10 @@ msgstr ""
|
|
|
310
407
|
msgid "The organization web contact form"
|
|
311
408
|
msgstr ""
|
|
312
409
|
|
|
313
|
-
#: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:
|
|
314
|
-
#: udata/core/dataset/forms.py:
|
|
410
|
+
#: udata/core/contact_point/forms.py:20 udata/core/dataset/forms.py:122
|
|
411
|
+
#: udata/core/dataset/forms.py:218 udata/core/discussions/forms.py:13
|
|
315
412
|
#: udata/core/discussions/forms.py:29 udata/core/topic/forms.py:35
|
|
316
|
-
#: udata/harvest/forms.py:
|
|
413
|
+
#: udata/harvest/forms.py:90
|
|
317
414
|
msgid "Publish as"
|
|
318
415
|
msgstr ""
|
|
319
416
|
|
|
@@ -385,20 +482,20 @@ msgstr ""
|
|
|
385
482
|
msgid "Latest APIs"
|
|
386
483
|
msgstr ""
|
|
387
484
|
|
|
388
|
-
#: udata/core/dataservices/models.py:
|
|
389
|
-
msgid "
|
|
485
|
+
#: udata/core/dataservices/models.py:27
|
|
486
|
+
msgid "Dataservice serving high value datasets"
|
|
390
487
|
msgstr ""
|
|
391
488
|
|
|
392
|
-
#: udata/core/dataservices/models.py:
|
|
489
|
+
#: udata/core/dataservices/models.py:185
|
|
393
490
|
msgid "dataservice"
|
|
394
491
|
msgstr ""
|
|
395
492
|
|
|
396
|
-
#: udata/core/dataservices/models.py:
|
|
493
|
+
#: udata/core/dataservices/models.py:266 udata/core/dataset/models.py:580
|
|
397
494
|
#: udata/mongo/datetime_fields.py:60
|
|
398
495
|
msgid "Creation date"
|
|
399
496
|
msgstr ""
|
|
400
497
|
|
|
401
|
-
#: udata/core/dataservices/models.py:
|
|
498
|
+
#: udata/core/dataservices/models.py:272 udata/core/dataset/models.py:585
|
|
402
499
|
#: udata/mongo/datetime_fields.py:66
|
|
403
500
|
msgid "Last modification date"
|
|
404
501
|
msgstr ""
|
|
@@ -583,7 +680,7 @@ msgstr ""
|
|
|
583
680
|
msgid "Not planned"
|
|
584
681
|
msgstr ""
|
|
585
682
|
|
|
586
|
-
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:
|
|
683
|
+
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:156
|
|
587
684
|
#: udata/core/spatial/constants.py:5
|
|
588
685
|
msgid "Other"
|
|
589
686
|
msgstr ""
|
|
@@ -596,250 +693,262 @@ msgstr ""
|
|
|
596
693
|
msgid "Unknown"
|
|
597
694
|
msgstr ""
|
|
598
695
|
|
|
599
|
-
#: udata/core/dataset/constants.py:
|
|
696
|
+
#: udata/core/dataset/constants.py:151
|
|
600
697
|
msgid "Main file"
|
|
601
698
|
msgstr ""
|
|
602
699
|
|
|
603
|
-
#: udata/core/dataset/constants.py:
|
|
700
|
+
#: udata/core/dataset/constants.py:152
|
|
604
701
|
msgid "Documentation"
|
|
605
702
|
msgstr ""
|
|
606
703
|
|
|
607
|
-
#: udata/core/dataset/constants.py:
|
|
704
|
+
#: udata/core/dataset/constants.py:153
|
|
608
705
|
msgid "Update"
|
|
609
706
|
msgstr ""
|
|
610
707
|
|
|
611
|
-
#: udata/core/dataset/constants.py:
|
|
708
|
+
#: udata/core/dataset/constants.py:154 udata/core/reuse/constants.py:4
|
|
612
709
|
msgid "API"
|
|
613
710
|
msgstr ""
|
|
614
711
|
|
|
615
|
-
#: udata/core/dataset/constants.py:
|
|
712
|
+
#: udata/core/dataset/constants.py:155
|
|
616
713
|
msgid "Code repository"
|
|
617
714
|
msgstr ""
|
|
618
715
|
|
|
619
|
-
#: udata/core/dataset/constants.py:
|
|
716
|
+
#: udata/core/dataset/constants.py:163
|
|
620
717
|
msgid "Uploaded file"
|
|
621
718
|
msgstr ""
|
|
622
719
|
|
|
623
|
-
#: udata/core/dataset/constants.py:
|
|
720
|
+
#: udata/core/dataset/constants.py:164
|
|
624
721
|
msgid "Remote file"
|
|
625
722
|
msgstr ""
|
|
626
723
|
|
|
627
|
-
#: udata/core/dataset/forms.py:
|
|
724
|
+
#: udata/core/dataset/forms.py:39
|
|
628
725
|
msgid "Checksum value"
|
|
629
726
|
msgstr ""
|
|
630
727
|
|
|
631
|
-
#: udata/core/dataset/forms.py:
|
|
728
|
+
#: udata/core/dataset/forms.py:50
|
|
632
729
|
msgid "URL of the schema"
|
|
633
730
|
msgstr ""
|
|
634
731
|
|
|
635
|
-
#: udata/core/dataset/forms.py:
|
|
732
|
+
#: udata/core/dataset/forms.py:51
|
|
636
733
|
msgid "Name of the schema"
|
|
637
734
|
msgstr ""
|
|
638
735
|
|
|
639
|
-
#: udata/core/dataset/forms.py:
|
|
736
|
+
#: udata/core/dataset/forms.py:52
|
|
640
737
|
msgid "Version of the schema"
|
|
641
738
|
msgstr ""
|
|
642
739
|
|
|
643
|
-
#: udata/core/dataset/forms.py:
|
|
740
|
+
#: udata/core/dataset/forms.py:71 udata/core/dataset/forms.py:162
|
|
644
741
|
#: udata/core/discussions/forms.py:14 udata/core/discussions/forms.py:25
|
|
645
742
|
#: udata/core/site/forms.py:12 udata/core/topic/forms.py:13
|
|
646
743
|
msgid "Title"
|
|
647
744
|
msgstr ""
|
|
648
745
|
|
|
649
|
-
#: udata/core/dataset/forms.py:
|
|
746
|
+
#: udata/core/dataset/forms.py:74 udata/core/dataset/forms.py:166
|
|
650
747
|
#: udata/core/jobs/forms.py:28 udata/core/organization/forms.py:50
|
|
651
748
|
#: udata/core/topic/forms.py:14 udata/core/topic/forms.py:38
|
|
652
|
-
#: udata/harvest/forms.py:
|
|
749
|
+
#: udata/harvest/forms.py:82
|
|
653
750
|
msgid "Description"
|
|
654
751
|
msgstr ""
|
|
655
752
|
|
|
656
|
-
#: udata/core/dataset/forms.py:
|
|
753
|
+
#: udata/core/dataset/forms.py:77
|
|
657
754
|
msgid "File type"
|
|
658
755
|
msgstr ""
|
|
659
756
|
|
|
660
|
-
#: udata/core/dataset/forms.py:
|
|
757
|
+
#: udata/core/dataset/forms.py:81
|
|
661
758
|
msgid "Whether the resource is an uploaded file, a remote file or an API"
|
|
662
759
|
msgstr ""
|
|
663
760
|
|
|
664
|
-
#: udata/core/dataset/forms.py:
|
|
761
|
+
#: udata/core/dataset/forms.py:84
|
|
665
762
|
msgid "Type"
|
|
666
763
|
msgstr ""
|
|
667
764
|
|
|
668
|
-
#: udata/core/dataset/forms.py:
|
|
765
|
+
#: udata/core/dataset/forms.py:88
|
|
669
766
|
msgid "Resource type (documentation, API...)"
|
|
670
767
|
msgstr ""
|
|
671
768
|
|
|
672
|
-
#: udata/core/dataset/forms.py:
|
|
769
|
+
#: udata/core/dataset/forms.py:90 udata/harvest/forms.py:84
|
|
673
770
|
msgid "URL"
|
|
674
771
|
msgstr ""
|
|
675
772
|
|
|
676
|
-
#: udata/core/dataset/forms.py:
|
|
773
|
+
#: udata/core/dataset/forms.py:92
|
|
677
774
|
msgid "Format"
|
|
678
775
|
msgstr ""
|
|
679
776
|
|
|
680
|
-
#: udata/core/dataset/forms.py:
|
|
777
|
+
#: udata/core/dataset/forms.py:97
|
|
681
778
|
msgid "Mime type"
|
|
682
779
|
msgstr ""
|
|
683
780
|
|
|
684
|
-
#: udata/core/dataset/forms.py:
|
|
781
|
+
#: udata/core/dataset/forms.py:98
|
|
685
782
|
msgid "The mime type associated to the extension. (ex: text/plain)"
|
|
686
783
|
msgstr ""
|
|
687
784
|
|
|
688
|
-
#: udata/core/dataset/forms.py:
|
|
785
|
+
#: udata/core/dataset/forms.py:101
|
|
689
786
|
msgid "Size"
|
|
690
787
|
msgstr ""
|
|
691
788
|
|
|
692
|
-
#: udata/core/dataset/forms.py:
|
|
789
|
+
#: udata/core/dataset/forms.py:101
|
|
693
790
|
msgid "The file size in bytes"
|
|
694
791
|
msgstr ""
|
|
695
792
|
|
|
696
|
-
#: udata/core/dataset/forms.py:
|
|
793
|
+
#: udata/core/dataset/forms.py:120
|
|
697
794
|
msgid "Related dataset"
|
|
698
795
|
msgstr ""
|
|
699
796
|
|
|
700
|
-
#: udata/core/dataset/forms.py:
|
|
797
|
+
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1086
|
|
701
798
|
msgid "Wrong contact point id or contact point ownership mismatch"
|
|
702
799
|
msgstr ""
|
|
703
800
|
|
|
704
|
-
#: udata/core/dataset/forms.py:
|
|
801
|
+
#: udata/core/dataset/forms.py:164 udata/core/organization/forms.py:48
|
|
705
802
|
msgid "Acronym"
|
|
706
803
|
msgstr ""
|
|
707
804
|
|
|
708
|
-
#: udata/core/dataset/forms.py:
|
|
805
|
+
#: udata/core/dataset/forms.py:164
|
|
709
806
|
msgid "An optional acronym"
|
|
710
807
|
msgstr ""
|
|
711
808
|
|
|
712
|
-
#: udata/core/dataset/forms.py:
|
|
809
|
+
#: udata/core/dataset/forms.py:168
|
|
713
810
|
msgid "The details about the dataset (collection process, specifics...)."
|
|
714
811
|
msgstr ""
|
|
715
812
|
|
|
716
|
-
#: udata/core/dataset/forms.py:
|
|
813
|
+
#: udata/core/dataset/forms.py:171
|
|
717
814
|
msgid "Short description"
|
|
718
815
|
msgstr ""
|
|
719
816
|
|
|
720
|
-
#: udata/core/dataset/forms.py:
|
|
817
|
+
#: udata/core/dataset/forms.py:173
|
|
721
818
|
msgid "A short description of the dataset."
|
|
722
819
|
msgstr ""
|
|
723
820
|
|
|
724
|
-
#: udata/core/dataset/forms.py:
|
|
821
|
+
#: udata/core/dataset/forms.py:175
|
|
725
822
|
msgid "License"
|
|
726
823
|
msgstr ""
|
|
727
824
|
|
|
728
|
-
#: udata/core/dataset/forms.py:
|
|
825
|
+
#: udata/core/dataset/forms.py:182
|
|
826
|
+
msgid "Authorization request URL"
|
|
827
|
+
msgstr ""
|
|
828
|
+
|
|
829
|
+
#: udata/core/dataset/forms.py:184
|
|
830
|
+
msgid "Access type reason category"
|
|
831
|
+
msgstr ""
|
|
832
|
+
|
|
833
|
+
#: udata/core/dataset/forms.py:188
|
|
834
|
+
msgid "Access type reason"
|
|
835
|
+
msgstr ""
|
|
836
|
+
|
|
837
|
+
#: udata/core/dataset/forms.py:190
|
|
729
838
|
msgid "Update frequency"
|
|
730
839
|
msgstr ""
|
|
731
840
|
|
|
732
|
-
#: udata/core/dataset/forms.py:
|
|
841
|
+
#: udata/core/dataset/forms.py:200
|
|
733
842
|
msgid "The frequency at which data are updated."
|
|
734
843
|
msgstr ""
|
|
735
844
|
|
|
736
|
-
#: udata/core/dataset/forms.py:
|
|
845
|
+
#: udata/core/dataset/forms.py:202
|
|
737
846
|
msgid "Expected frequency date"
|
|
738
847
|
msgstr ""
|
|
739
848
|
|
|
740
|
-
#: udata/core/dataset/forms.py:
|
|
849
|
+
#: udata/core/dataset/forms.py:206
|
|
741
850
|
msgid "Temporal coverage"
|
|
742
851
|
msgstr ""
|
|
743
852
|
|
|
744
|
-
#: udata/core/dataset/forms.py:
|
|
853
|
+
#: udata/core/dataset/forms.py:206
|
|
745
854
|
msgid "The period covered by the data"
|
|
746
855
|
msgstr ""
|
|
747
856
|
|
|
748
|
-
#: udata/core/dataset/forms.py:
|
|
857
|
+
#: udata/core/dataset/forms.py:209 udata/core/spatial/forms.py:85
|
|
749
858
|
#: udata/core/topic/forms.py:86
|
|
750
859
|
msgid "Spatial coverage"
|
|
751
860
|
msgstr ""
|
|
752
861
|
|
|
753
|
-
#: udata/core/dataset/forms.py:
|
|
862
|
+
#: udata/core/dataset/forms.py:209 udata/core/topic/forms.py:86
|
|
754
863
|
msgid "The geographical area covered by the data."
|
|
755
864
|
msgstr ""
|
|
756
865
|
|
|
757
|
-
#: udata/core/dataset/forms.py:
|
|
866
|
+
#: udata/core/dataset/forms.py:211 udata/core/post/forms.py:26
|
|
758
867
|
#: udata/core/site/forms.py:13 udata/core/topic/forms.py:15
|
|
759
868
|
#: udata/core/topic/forms.py:89
|
|
760
869
|
msgid "Tags"
|
|
761
870
|
msgstr ""
|
|
762
871
|
|
|
763
|
-
#: udata/core/dataset/forms.py:
|
|
872
|
+
#: udata/core/dataset/forms.py:211
|
|
764
873
|
msgid "Some taxonomy keywords"
|
|
765
874
|
msgstr ""
|
|
766
875
|
|
|
767
|
-
#: udata/core/dataset/forms.py:
|
|
876
|
+
#: udata/core/dataset/forms.py:213 udata/core/topic/forms.py:90
|
|
768
877
|
msgid "Private"
|
|
769
878
|
msgstr ""
|
|
770
879
|
|
|
771
|
-
#: udata/core/dataset/forms.py:
|
|
880
|
+
#: udata/core/dataset/forms.py:214
|
|
772
881
|
msgid "Restrict the dataset visibility to you or your organization only."
|
|
773
882
|
msgstr ""
|
|
774
883
|
|
|
775
|
-
#: udata/core/dataset/models.py:
|
|
884
|
+
#: udata/core/dataset/models.py:69
|
|
776
885
|
msgid "Pivotal data"
|
|
777
886
|
msgstr ""
|
|
778
887
|
|
|
779
|
-
#: udata/core/dataset/models.py:
|
|
888
|
+
#: udata/core/dataset/models.py:70
|
|
780
889
|
msgid "Reference data public service"
|
|
781
890
|
msgstr ""
|
|
782
891
|
|
|
783
|
-
#: udata/core/dataset/models.py:
|
|
892
|
+
#: udata/core/dataset/models.py:71
|
|
784
893
|
msgid "Inspire"
|
|
785
894
|
msgstr ""
|
|
786
895
|
|
|
787
|
-
#: udata/core/dataset/models.py:
|
|
896
|
+
#: udata/core/dataset/models.py:72
|
|
788
897
|
msgid "High value datasets"
|
|
789
898
|
msgstr ""
|
|
790
899
|
|
|
791
|
-
#: udata/core/dataset/models.py:
|
|
900
|
+
#: udata/core/dataset/models.py:73
|
|
792
901
|
msgid "Certified statistic series"
|
|
793
902
|
msgstr ""
|
|
794
903
|
|
|
795
|
-
#: udata/core/dataset/models.py:
|
|
904
|
+
#: udata/core/dataset/models.py:74
|
|
796
905
|
msgid "Statistical series of general interest"
|
|
797
906
|
msgstr ""
|
|
798
907
|
|
|
799
|
-
#: udata/core/dataset/models.py:
|
|
908
|
+
#: udata/core/dataset/models.py:154
|
|
800
909
|
msgid "A schema must contains a name or an URL when a version is provided."
|
|
801
910
|
msgstr ""
|
|
802
911
|
|
|
803
|
-
#: udata/core/dataset/models.py:
|
|
804
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
912
|
+
#: udata/core/dataset/models.py:186 udata/tests/api/test_datasets_api.py:1182
|
|
913
|
+
#: udata/tests/api/test_datasets_api.py:1193
|
|
805
914
|
#, python-brace-format
|
|
806
915
|
msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
|
|
807
916
|
msgstr ""
|
|
808
917
|
|
|
809
|
-
#: udata/core/dataset/models.py:
|
|
918
|
+
#: udata/core/dataset/models.py:205 udata/tests/api/test_datasets_api.py:1205
|
|
810
919
|
#, python-brace-format
|
|
811
920
|
msgid ""
|
|
812
921
|
"Version \"{version}\" is not an allowed value for the schema \"{name}\". "
|
|
813
922
|
"Allowed versions: {values}"
|
|
814
923
|
msgstr ""
|
|
815
924
|
|
|
816
|
-
#: udata/core/dataset/models.py:
|
|
817
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
818
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
925
|
+
#: udata/core/dataset/models.py:454 udata/core/dataset/rdf.py:596
|
|
926
|
+
#: udata/tests/dataset/test_dataset_rdf.py:912
|
|
927
|
+
#: udata/tests/dataset/test_dataset_rdf.py:925
|
|
819
928
|
msgid "Nameless resource"
|
|
820
929
|
msgstr ""
|
|
821
930
|
|
|
822
|
-
#: udata/core/dataset/models.py:
|
|
931
|
+
#: udata/core/dataset/models.py:559
|
|
823
932
|
msgid "Future date of update"
|
|
824
933
|
msgstr ""
|
|
825
934
|
|
|
826
|
-
#: udata/core/dataset/models.py:
|
|
935
|
+
#: udata/core/dataset/models.py:591
|
|
827
936
|
msgid "Last update of the dataset resources"
|
|
828
937
|
msgstr ""
|
|
829
938
|
|
|
830
|
-
#: udata/core/dataset/models.py:
|
|
939
|
+
#: udata/core/dataset/models.py:646
|
|
831
940
|
msgid "dataset"
|
|
832
941
|
msgstr ""
|
|
833
942
|
|
|
834
|
-
#: udata/core/dataset/rdf.py:
|
|
835
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
943
|
+
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:882
|
|
944
|
+
#: udata/tests/dataset/test_dataset_rdf.py:899
|
|
836
945
|
#, python-brace-format
|
|
837
946
|
msgid "{format} resource"
|
|
838
947
|
msgstr ""
|
|
839
948
|
|
|
840
949
|
#: udata/core/discussions/forms.py:16 udata/core/discussions/forms.py:31
|
|
841
950
|
#: udata/core/discussions/forms.py:37 udata/core/organization/forms.py:83
|
|
842
|
-
#: udata/core/organization/forms.py:87 udata/harvest/forms.py:
|
|
951
|
+
#: udata/core/organization/forms.py:87 udata/harvest/forms.py:100
|
|
843
952
|
msgid "Comment"
|
|
844
953
|
msgstr ""
|
|
845
954
|
|
|
@@ -1093,23 +1202,23 @@ msgid ""
|
|
|
1093
1202
|
"A badge is now associated with your organization."
|
|
1094
1203
|
msgstr ""
|
|
1095
1204
|
|
|
1096
|
-
#: udata/core/organization/models.py:
|
|
1205
|
+
#: udata/core/organization/models.py:39
|
|
1097
1206
|
msgid "Public Service"
|
|
1098
1207
|
msgstr ""
|
|
1099
1208
|
|
|
1100
|
-
#: udata/core/organization/models.py:
|
|
1209
|
+
#: udata/core/organization/models.py:40
|
|
1101
1210
|
msgid "Certified"
|
|
1102
1211
|
msgstr ""
|
|
1103
1212
|
|
|
1104
|
-
#: udata/core/organization/models.py:
|
|
1213
|
+
#: udata/core/organization/models.py:41
|
|
1105
1214
|
msgid "Association"
|
|
1106
1215
|
msgstr ""
|
|
1107
1216
|
|
|
1108
|
-
#: udata/core/organization/models.py:
|
|
1217
|
+
#: udata/core/organization/models.py:42
|
|
1109
1218
|
msgid "Company"
|
|
1110
1219
|
msgstr ""
|
|
1111
1220
|
|
|
1112
|
-
#: udata/core/organization/models.py:
|
|
1221
|
+
#: udata/core/organization/models.py:43
|
|
1113
1222
|
msgid "Local authority"
|
|
1114
1223
|
msgstr ""
|
|
1115
1224
|
|
|
@@ -1201,7 +1310,7 @@ msgstr ""
|
|
|
1201
1310
|
msgid "deleted a reuse"
|
|
1202
1311
|
msgstr ""
|
|
1203
1312
|
|
|
1204
|
-
#: udata/core/reuse/api.py:
|
|
1313
|
+
#: udata/core/reuse/api.py:141
|
|
1205
1314
|
msgid "Latests reuses"
|
|
1206
1315
|
msgstr ""
|
|
1207
1316
|
|
|
@@ -1306,11 +1415,11 @@ msgstr ""
|
|
|
1306
1415
|
msgid "View the reuse"
|
|
1307
1416
|
msgstr ""
|
|
1308
1417
|
|
|
1309
|
-
#: udata/core/reuse/models.py:
|
|
1418
|
+
#: udata/core/reuse/models.py:40
|
|
1310
1419
|
msgid "This URL is already registered"
|
|
1311
1420
|
msgstr ""
|
|
1312
1421
|
|
|
1313
|
-
#: udata/core/reuse/models.py:
|
|
1422
|
+
#: udata/core/reuse/models.py:194
|
|
1314
1423
|
msgid "reuse"
|
|
1315
1424
|
msgstr ""
|
|
1316
1425
|
|
|
@@ -1628,11 +1737,11 @@ msgstr ""
|
|
|
1628
1737
|
msgid "Source"
|
|
1629
1738
|
msgstr ""
|
|
1630
1739
|
|
|
1631
|
-
#: udata/harvest/forms.py:
|
|
1740
|
+
#: udata/harvest/forms.py:82
|
|
1632
1741
|
msgid "Some optional details about this harvester"
|
|
1633
1742
|
msgstr ""
|
|
1634
1743
|
|
|
1635
|
-
#: udata/harvest/forms.py:
|
|
1744
|
+
#: udata/harvest/forms.py:86
|
|
1636
1745
|
msgid "Backend"
|
|
1637
1746
|
msgstr ""
|
|
1638
1747
|
|
|
@@ -1676,27 +1785,27 @@ msgstr ""
|
|
|
1676
1785
|
msgid "Archived"
|
|
1677
1786
|
msgstr ""
|
|
1678
1787
|
|
|
1679
|
-
#: udata/harvest/backends/dcat.py:
|
|
1788
|
+
#: udata/harvest/backends/dcat.py:434
|
|
1680
1789
|
msgid "Remote URL prefix"
|
|
1681
1790
|
msgstr ""
|
|
1682
1791
|
|
|
1683
|
-
#: udata/harvest/backends/dcat.py:
|
|
1792
|
+
#: udata/harvest/backends/dcat.py:437
|
|
1684
1793
|
msgid "A prefix used to build the remote URL of the harvested items."
|
|
1685
1794
|
msgstr ""
|
|
1686
1795
|
|
|
1687
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1796
|
+
#: udata/harvest/backends/ckan/harvesters.py:31
|
|
1688
1797
|
msgid "Organization"
|
|
1689
1798
|
msgstr ""
|
|
1690
1799
|
|
|
1691
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1800
|
+
#: udata/harvest/backends/ckan/harvesters.py:31
|
|
1692
1801
|
msgid "A CKAN Organization name"
|
|
1693
1802
|
msgstr ""
|
|
1694
1803
|
|
|
1695
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1804
|
+
#: udata/harvest/backends/ckan/harvesters.py:32
|
|
1696
1805
|
msgid "Tag"
|
|
1697
1806
|
msgstr ""
|
|
1698
1807
|
|
|
1699
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1808
|
+
#: udata/harvest/backends/ckan/harvesters.py:32
|
|
1700
1809
|
msgid "A CKAN tag name"
|
|
1701
1810
|
msgstr ""
|
|
1702
1811
|
|