udata 14.5.1.dev9__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_fields.py +85 -15
- udata/auth/forms.py +1 -1
- udata/core/badges/tests/test_tasks.py +0 -2
- udata/core/dataservices/apiv2.py +1 -1
- udata/core/dataset/models.py +15 -3
- udata/core/dataset/rdf.py +10 -14
- udata/core/organization/apiv2.py +1 -1
- udata/core/organization/models.py +25 -5
- udata/core/pages/models.py +49 -0
- udata/core/pages/tests/test_api.py +165 -1
- udata/core/post/api.py +1 -1
- udata/core/post/constants.py +8 -0
- udata/core/post/models.py +27 -3
- udata/core/post/tests/test_api.py +116 -2
- udata/core/post/tests/test_models.py +24 -0
- udata/core/reuse/apiv2.py +1 -1
- udata/core/user/models.py +21 -6
- udata/features/notifications/models.py +4 -1
- udata/features/transfer/actions.py +2 -0
- udata/features/transfer/models.py +17 -0
- udata/features/transfer/notifications.py +96 -0
- udata/harvest/backends/ckan/harvesters.py +10 -2
- udata/migrations/2021-08-17-harvest-integrity.py +23 -16
- 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/tasks.py +1 -0
- 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/dataset/test_dataset_rdf.py +49 -0
- udata/tests/search/test_search_integration.py +37 -0
- udata/tests/test_transfer.py +181 -2
- udata/translations/ar/LC_MESSAGES/udata.mo +0 -0
- udata/translations/ar/LC_MESSAGES/udata.po +310 -158
- udata/translations/de/LC_MESSAGES/udata.mo +0 -0
- udata/translations/de/LC_MESSAGES/udata.po +314 -160
- udata/translations/es/LC_MESSAGES/udata.mo +0 -0
- udata/translations/es/LC_MESSAGES/udata.po +313 -160
- udata/translations/fr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/fr/LC_MESSAGES/udata.po +476 -202
- udata/translations/it/LC_MESSAGES/udata.mo +0 -0
- udata/translations/it/LC_MESSAGES/udata.po +318 -162
- udata/translations/pt/LC_MESSAGES/udata.mo +0 -0
- udata/translations/pt/LC_MESSAGES/udata.po +316 -161
- udata/translations/sr/LC_MESSAGES/udata.mo +0 -0
- udata/translations/sr/LC_MESSAGES/udata.po +324 -164
- udata/translations/udata.pot +169 -124
- udata/utils.py +23 -0
- {udata-14.5.1.dev9.dist-info → udata-14.7.3.dev4.dist-info}/METADATA +2 -2
- {udata-14.5.1.dev9.dist-info → udata-14.7.3.dev4.dist-info}/RECORD +54 -50
- udata/tests/apiv2/test_search.py +0 -30
- {udata-14.5.1.dev9.dist-info → udata-14.7.3.dev4.dist-info}/WHEEL +0 -0
- {udata-14.5.1.dev9.dist-info → udata-14.7.3.dev4.dist-info}/entry_points.txt +0 -0
- {udata-14.5.1.dev9.dist-info → udata-14.7.3.dev4.dist-info}/licenses/LICENSE +0 -0
- {udata-14.5.1.dev9.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: es\n"
|
|
9
10
|
"Language-Team: Spanish\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: es-ES\n"
|
|
18
|
-
"X-Crowdin-File: /main/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 ""
|
|
24
20
|
|
|
25
|
-
#: udata/settings.py:
|
|
21
|
+
#: udata/settings.py:130
|
|
26
22
|
msgid "Please confirm your email"
|
|
27
23
|
msgstr ""
|
|
28
24
|
|
|
29
|
-
#: udata/settings.py:
|
|
25
|
+
#: udata/settings.py:131
|
|
30
26
|
msgid "Login instructions"
|
|
31
27
|
msgstr ""
|
|
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 ""
|
|
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 ""
|
|
40
36
|
|
|
41
|
-
#: udata/settings.py:
|
|
37
|
+
#: udata/settings.py:134
|
|
42
38
|
msgid "Password reset instructions"
|
|
43
39
|
msgstr ""
|
|
44
40
|
|
|
45
|
-
#: udata/settings.py:
|
|
41
|
+
#: udata/settings.py:553
|
|
46
42
|
msgid "This dataset has been archived"
|
|
47
43
|
msgstr ""
|
|
48
44
|
|
|
@@ -51,46 +47,48 @@ msgstr ""
|
|
|
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 "
|
|
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."
|
|
94
92
|
msgstr ""
|
|
95
93
|
|
|
96
94
|
#: udata/api/oauth2.py:56
|
|
@@ -144,7 +142,7 @@ msgid "J'accepte les conditions générales d'utilisation"
|
|
|
144
142
|
msgstr ""
|
|
145
143
|
|
|
146
144
|
#: udata/auth/forms.py:52
|
|
147
|
-
msgid "
|
|
145
|
+
msgid "You must accept the terms of use to continue."
|
|
148
146
|
msgstr ""
|
|
149
147
|
|
|
150
148
|
#: udata/auth/forms.py:75 udata/tests/forms/test_current_user_field.py:192
|
|
@@ -310,35 +308,64 @@ msgid "Environmental protection"
|
|
|
310
308
|
msgstr ""
|
|
311
309
|
|
|
312
310
|
#: udata/core/access_type/constants.py:66
|
|
313
|
-
msgid "
|
|
311
|
+
msgid ""
|
|
312
|
+
"Public access to datasets and services would adversely affect the "
|
|
313
|
+
"confidentiality of the proceedings of public authorities, where such "
|
|
314
|
+
"confidentiality is provided for by law."
|
|
314
315
|
msgstr ""
|
|
315
316
|
|
|
316
317
|
#: udata/core/access_type/constants.py:70
|
|
317
|
-
msgid "
|
|
318
|
+
msgid ""
|
|
319
|
+
"Public access to datasets and services would adversely affect "
|
|
320
|
+
"international relations, public security or national defence."
|
|
318
321
|
msgstr ""
|
|
319
322
|
|
|
320
323
|
#: udata/core/access_type/constants.py:74
|
|
321
|
-
msgid "
|
|
324
|
+
msgid ""
|
|
325
|
+
"Public access to datasets and services would adversely affect the course "
|
|
326
|
+
"of justice, the ability of any person to receive a fair trial or the "
|
|
327
|
+
"ability of a public authority to conduct an enquiry of a criminal or "
|
|
328
|
+
"disciplinary nature."
|
|
322
329
|
msgstr ""
|
|
323
330
|
|
|
324
331
|
#: udata/core/access_type/constants.py:78
|
|
325
|
-
msgid "
|
|
332
|
+
msgid ""
|
|
333
|
+
"Public access to datasets and services would adversely affect the "
|
|
334
|
+
"confidentiality of commercial or industrial information, where such "
|
|
335
|
+
"confidentiality is provided for by national or Community law to protect a"
|
|
336
|
+
" legitimate economic interest, including the public interest in "
|
|
337
|
+
"maintaining statistical confidentiality and tax secrecy."
|
|
326
338
|
msgstr ""
|
|
327
339
|
|
|
328
340
|
#: udata/core/access_type/constants.py:82
|
|
329
|
-
msgid "
|
|
341
|
+
msgid ""
|
|
342
|
+
"Public access to datasets and services would adversely affect "
|
|
343
|
+
"intellectual property rights."
|
|
330
344
|
msgstr ""
|
|
331
345
|
|
|
332
346
|
#: udata/core/access_type/constants.py:86
|
|
333
|
-
msgid "
|
|
347
|
+
msgid ""
|
|
348
|
+
"Public access to datasets and services would adversely affect the "
|
|
349
|
+
"confidentiality of personal data and/or files relating to a natural "
|
|
350
|
+
"person where that person has not consented to the disclosure of the "
|
|
351
|
+
"information to the public, where such confidentiality is provided for by "
|
|
352
|
+
"national or Community law."
|
|
334
353
|
msgstr ""
|
|
335
354
|
|
|
336
355
|
#: udata/core/access_type/constants.py:90
|
|
337
|
-
msgid "
|
|
356
|
+
msgid ""
|
|
357
|
+
"Public access to datasets and services would adversely affect the "
|
|
358
|
+
"interests or protection of any person who supplied the information "
|
|
359
|
+
"requested on a voluntary basis without being under, or capable of being "
|
|
360
|
+
"put under, a legal obligation to do so, unless that person has consented "
|
|
361
|
+
"to the release of the information concerned."
|
|
338
362
|
msgstr ""
|
|
339
363
|
|
|
340
364
|
#: udata/core/access_type/constants.py:94
|
|
341
|
-
msgid "
|
|
365
|
+
msgid ""
|
|
366
|
+
"Public access to datasets and services would adversely affect the "
|
|
367
|
+
"protection of the environment to which such information relates, such as "
|
|
368
|
+
"the location of rare species."
|
|
342
369
|
msgstr ""
|
|
343
370
|
|
|
344
371
|
#: udata/core/access_type/models.py:25
|
|
@@ -358,8 +385,8 @@ msgid "An existing contact point already exists with these informations."
|
|
|
358
385
|
msgstr ""
|
|
359
386
|
|
|
360
387
|
#: udata/core/contact_point/forms.py:12 udata/core/jobs/forms.py:27
|
|
361
|
-
#: udata/core/organization/forms.py:46 udata/core/
|
|
362
|
-
#: udata/
|
|
388
|
+
#: udata/core/organization/forms.py:46 udata/core/topic/forms.py:37
|
|
389
|
+
#: udata/harvest/forms.py:80
|
|
363
390
|
msgid "Name"
|
|
364
391
|
msgstr "Nombre"
|
|
365
392
|
|
|
@@ -430,7 +457,8 @@ msgstr ""
|
|
|
430
457
|
msgid "User"
|
|
431
458
|
msgstr ""
|
|
432
459
|
|
|
433
|
-
#: udata/core/contact_point/models.py:34
|
|
460
|
+
#: udata/core/contact_point/models.py:34
|
|
461
|
+
#: udata/tests/api/test_contact_points.py:136
|
|
434
462
|
msgid "At least an email or a contact form is required for a contact point"
|
|
435
463
|
msgstr ""
|
|
436
464
|
|
|
@@ -446,7 +474,7 @@ msgstr ""
|
|
|
446
474
|
msgid "deleted a dataservice"
|
|
447
475
|
msgstr ""
|
|
448
476
|
|
|
449
|
-
#: udata/core/dataservices/api.py:
|
|
477
|
+
#: udata/core/dataservices/api.py:63
|
|
450
478
|
msgid "Latest APIs"
|
|
451
479
|
msgstr ""
|
|
452
480
|
|
|
@@ -458,12 +486,12 @@ msgstr ""
|
|
|
458
486
|
msgid "dataservice"
|
|
459
487
|
msgstr ""
|
|
460
488
|
|
|
461
|
-
#: udata/core/dataservices/models.py:
|
|
489
|
+
#: udata/core/dataservices/models.py:269 udata/core/dataset/models.py:595
|
|
462
490
|
#: udata/mongo/datetime_fields.py:60
|
|
463
491
|
msgid "Creation date"
|
|
464
492
|
msgstr "Fecha de creación"
|
|
465
493
|
|
|
466
|
-
#: udata/core/dataservices/models.py:
|
|
494
|
+
#: udata/core/dataservices/models.py:275 udata/core/dataset/models.py:600
|
|
467
495
|
#: udata/mongo/datetime_fields.py:66
|
|
468
496
|
msgid "Last modification date"
|
|
469
497
|
msgstr "Ultima fecha de creación "
|
|
@@ -492,7 +520,16 @@ msgstr ""
|
|
|
492
520
|
msgid "removed a resource from a dataset"
|
|
493
521
|
msgstr ""
|
|
494
522
|
|
|
495
|
-
#: udata/core/dataset/api.py:
|
|
523
|
+
#: udata/core/dataset/api.py:344
|
|
524
|
+
#, python-brace-format
|
|
525
|
+
msgid "Datasets search: {q}"
|
|
526
|
+
msgstr ""
|
|
527
|
+
|
|
528
|
+
#: udata/core/dataset/api.py:346
|
|
529
|
+
msgid "Filtered datasets"
|
|
530
|
+
msgstr ""
|
|
531
|
+
|
|
532
|
+
#: udata/core/dataset/api.py:348
|
|
496
533
|
msgid "Latest datasets"
|
|
497
534
|
msgstr ""
|
|
498
535
|
|
|
@@ -648,7 +685,7 @@ msgstr ""
|
|
|
648
685
|
msgid "Not planned"
|
|
649
686
|
msgstr ""
|
|
650
687
|
|
|
651
|
-
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:
|
|
688
|
+
#: udata/core/dataset/constants.py:73 udata/core/dataset/constants.py:149
|
|
652
689
|
#: udata/core/spatial/constants.py:5
|
|
653
690
|
msgid "Other"
|
|
654
691
|
msgstr "Otro"
|
|
@@ -661,31 +698,31 @@ msgstr "Otro"
|
|
|
661
698
|
msgid "Unknown"
|
|
662
699
|
msgstr "Desconocido"
|
|
663
700
|
|
|
664
|
-
#: udata/core/dataset/constants.py:
|
|
701
|
+
#: udata/core/dataset/constants.py:144
|
|
665
702
|
msgid "Main file"
|
|
666
703
|
msgstr ""
|
|
667
704
|
|
|
668
|
-
#: udata/core/dataset/constants.py:
|
|
705
|
+
#: udata/core/dataset/constants.py:145
|
|
669
706
|
msgid "Documentation"
|
|
670
707
|
msgstr ""
|
|
671
708
|
|
|
672
|
-
#: udata/core/dataset/constants.py:
|
|
709
|
+
#: udata/core/dataset/constants.py:146
|
|
673
710
|
msgid "Update"
|
|
674
711
|
msgstr ""
|
|
675
712
|
|
|
676
|
-
#: udata/core/dataset/constants.py:
|
|
713
|
+
#: udata/core/dataset/constants.py:147 udata/core/reuse/constants.py:4
|
|
677
714
|
msgid "API"
|
|
678
715
|
msgstr "IPA"
|
|
679
716
|
|
|
680
|
-
#: udata/core/dataset/constants.py:
|
|
717
|
+
#: udata/core/dataset/constants.py:148
|
|
681
718
|
msgid "Code repository"
|
|
682
719
|
msgstr ""
|
|
683
720
|
|
|
684
|
-
#: udata/core/dataset/constants.py:
|
|
721
|
+
#: udata/core/dataset/constants.py:156
|
|
685
722
|
msgid "Uploaded file"
|
|
686
723
|
msgstr "Archivo cargado"
|
|
687
724
|
|
|
688
|
-
#: udata/core/dataset/constants.py:
|
|
725
|
+
#: udata/core/dataset/constants.py:157
|
|
689
726
|
msgid "Remote file"
|
|
690
727
|
msgstr "Archivo eliminado"
|
|
691
728
|
|
|
@@ -762,7 +799,7 @@ msgstr "Tamño del archivo en bytes"
|
|
|
762
799
|
msgid "Related dataset"
|
|
763
800
|
msgstr "Conjunto de datos relacionado"
|
|
764
801
|
|
|
765
|
-
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:
|
|
802
|
+
#: udata/core/dataset/forms.py:147 udata/tests/api/test_datasets_api.py:1099
|
|
766
803
|
msgid "Wrong contact point id or contact point ownership mismatch"
|
|
767
804
|
msgstr ""
|
|
768
805
|
|
|
@@ -776,7 +813,9 @@ msgstr ""
|
|
|
776
813
|
|
|
777
814
|
#: udata/core/dataset/forms.py:168
|
|
778
815
|
msgid "The details about the dataset (collection process, specifics...)."
|
|
779
|
-
msgstr "
|
|
816
|
+
msgstr ""
|
|
817
|
+
"Los detalles sobre el conjunto de datos (proceso de colección, "
|
|
818
|
+
"específicos...)."
|
|
780
819
|
|
|
781
820
|
#: udata/core/dataset/forms.py:171
|
|
782
821
|
msgid "Short description"
|
|
@@ -831,9 +870,8 @@ msgstr "Cobertura espacial"
|
|
|
831
870
|
msgid "The geographical area covered by the data."
|
|
832
871
|
msgstr "El área geográfica cubierta por los datos. "
|
|
833
872
|
|
|
834
|
-
#: udata/core/dataset/forms.py:211 udata/core/
|
|
835
|
-
#: udata/core/
|
|
836
|
-
#: udata/core/topic/forms.py:89
|
|
873
|
+
#: udata/core/dataset/forms.py:211 udata/core/site/forms.py:13
|
|
874
|
+
#: udata/core/topic/forms.py:15 udata/core/topic/forms.py:89
|
|
837
875
|
msgid "Tags"
|
|
838
876
|
msgstr "Etiquetas"
|
|
839
877
|
|
|
@@ -847,67 +885,71 @@ msgstr "Privado"
|
|
|
847
885
|
|
|
848
886
|
#: udata/core/dataset/forms.py:214
|
|
849
887
|
msgid "Restrict the dataset visibility to you or your organization only."
|
|
850
|
-
msgstr "
|
|
888
|
+
msgstr ""
|
|
889
|
+
"Restringa la visibilidad del conjunto de datos solo para usted o su "
|
|
890
|
+
"organización."
|
|
851
891
|
|
|
852
|
-
#: udata/core/dataset/models.py:
|
|
892
|
+
#: udata/core/dataset/models.py:71
|
|
853
893
|
msgid "Pivotal data"
|
|
854
894
|
msgstr "Datos centrales"
|
|
855
895
|
|
|
856
|
-
#: udata/core/dataset/models.py:
|
|
896
|
+
#: udata/core/dataset/models.py:72
|
|
857
897
|
msgid "Reference data public service"
|
|
858
898
|
msgstr ""
|
|
859
899
|
|
|
860
|
-
#: udata/core/dataset/models.py:
|
|
900
|
+
#: udata/core/dataset/models.py:73
|
|
861
901
|
msgid "Inspire"
|
|
862
902
|
msgstr ""
|
|
863
903
|
|
|
864
|
-
#: udata/core/dataset/models.py:
|
|
904
|
+
#: udata/core/dataset/models.py:74
|
|
865
905
|
msgid "High value datasets"
|
|
866
906
|
msgstr ""
|
|
867
907
|
|
|
868
|
-
#: udata/core/dataset/models.py:
|
|
908
|
+
#: udata/core/dataset/models.py:75
|
|
869
909
|
msgid "Certified statistic series"
|
|
870
910
|
msgstr ""
|
|
871
911
|
|
|
872
|
-
#: udata/core/dataset/models.py:
|
|
912
|
+
#: udata/core/dataset/models.py:76
|
|
873
913
|
msgid "Statistical series of general interest"
|
|
874
914
|
msgstr ""
|
|
875
915
|
|
|
876
|
-
#: udata/core/dataset/models.py:
|
|
916
|
+
#: udata/core/dataset/models.py:158
|
|
877
917
|
msgid "A schema must contains a name or an URL when a version is provided."
|
|
878
918
|
msgstr ""
|
|
879
919
|
|
|
880
|
-
#: udata/core/dataset/models.py:
|
|
881
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
920
|
+
#: udata/core/dataset/models.py:190 udata/tests/api/test_datasets_api.py:1195
|
|
921
|
+
#: udata/tests/api/test_datasets_api.py:1206
|
|
882
922
|
#, python-brace-format
|
|
883
923
|
msgid "Schema name \"{schema}\" is not an allowed value. Allowed values: {values}"
|
|
884
924
|
msgstr ""
|
|
885
925
|
|
|
886
|
-
#: udata/core/dataset/models.py:
|
|
926
|
+
#: udata/core/dataset/models.py:209 udata/tests/api/test_datasets_api.py:1218
|
|
887
927
|
#, python-brace-format
|
|
888
|
-
msgid "
|
|
928
|
+
msgid ""
|
|
929
|
+
"Version \"{version}\" is not an allowed value for the schema \"{name}\". "
|
|
930
|
+
"Allowed versions: {values}"
|
|
889
931
|
msgstr ""
|
|
890
932
|
|
|
891
|
-
#: udata/core/dataset/models.py:
|
|
892
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
893
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
933
|
+
#: udata/core/dataset/models.py:458 udata/core/dataset/rdf.py:596
|
|
934
|
+
#: udata/tests/dataset/test_dataset_rdf.py:1007
|
|
935
|
+
#: udata/tests/dataset/test_dataset_rdf.py:1020
|
|
894
936
|
msgid "Nameless resource"
|
|
895
937
|
msgstr "Expedientes sin nombre"
|
|
896
938
|
|
|
897
|
-
#: udata/core/dataset/models.py:
|
|
939
|
+
#: udata/core/dataset/models.py:568
|
|
898
940
|
msgid "Future date of update"
|
|
899
941
|
msgstr "La futura fecha de actualización"
|
|
900
942
|
|
|
901
|
-
#: udata/core/dataset/models.py:
|
|
943
|
+
#: udata/core/dataset/models.py:606
|
|
902
944
|
msgid "Last update of the dataset resources"
|
|
903
945
|
msgstr ""
|
|
904
946
|
|
|
905
|
-
#: udata/core/dataset/models.py:
|
|
947
|
+
#: udata/core/dataset/models.py:661
|
|
906
948
|
msgid "dataset"
|
|
907
949
|
msgstr "conjunto de datos"
|
|
908
950
|
|
|
909
|
-
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:
|
|
910
|
-
#: udata/tests/dataset/test_dataset_rdf.py:
|
|
951
|
+
#: udata/core/dataset/rdf.py:594 udata/tests/dataset/test_dataset_rdf.py:977
|
|
952
|
+
#: udata/tests/dataset/test_dataset_rdf.py:994
|
|
911
953
|
#, python-brace-format
|
|
912
954
|
msgid "{format} resource"
|
|
913
955
|
msgstr ""
|
|
@@ -961,13 +1003,23 @@ msgstr "Una discusión fue cerrada"
|
|
|
961
1003
|
|
|
962
1004
|
#: udata/core/discussions/mails.py:53
|
|
963
1005
|
#, python-format
|
|
964
|
-
msgid "
|
|
1006
|
+
msgid ""
|
|
1007
|
+
"The discussion you participated in on the %(type)s %(object)s has been "
|
|
1008
|
+
"closed by %(user_or_org)s."
|
|
965
1009
|
msgstr ""
|
|
966
1010
|
|
|
967
1011
|
#: udata/core/discussions/mails.py:61
|
|
968
1012
|
msgid "View the discussion"
|
|
969
1013
|
msgstr ""
|
|
970
1014
|
|
|
1015
|
+
#: udata/core/discussions/models.py:18
|
|
1016
|
+
msgid "message"
|
|
1017
|
+
msgstr ""
|
|
1018
|
+
|
|
1019
|
+
#: udata/core/discussions/models.py:76
|
|
1020
|
+
msgid "discussion"
|
|
1021
|
+
msgstr ""
|
|
1022
|
+
|
|
971
1023
|
#: udata/core/jobs/forms.py:29
|
|
972
1024
|
msgid "Tasks"
|
|
973
1025
|
msgstr "Tareas"
|
|
@@ -986,6 +1038,65 @@ msgstr "cada {0.period_singular}"
|
|
|
986
1038
|
msgid "every {0.every} {0.period}"
|
|
987
1039
|
msgstr "cada {0.every} {0.period} "
|
|
988
1040
|
|
|
1041
|
+
#: udata/core/legal/mails.py:81
|
|
1042
|
+
#, python-format
|
|
1043
|
+
msgid ""
|
|
1044
|
+
"Our %(terms_link)s specify in point %(article)s that the platform is not "
|
|
1045
|
+
"\"intended to disseminate advertising content, promotions of private "
|
|
1046
|
+
"interests, content contrary to public order, illegal content, spam and "
|
|
1047
|
+
"any contribution violating the applicable legal framework. The Editor "
|
|
1048
|
+
"reserves the right, without prior notice, to remove or make inaccessible "
|
|
1049
|
+
"content published on the Platform that has no connection with its "
|
|
1050
|
+
"Purpose. The Editor does not carry out \"a priori\" control over "
|
|
1051
|
+
"publications. As soon as the Editor becomes aware of content contrary to "
|
|
1052
|
+
"these terms of use, it acts quickly to remove or make it inaccessible\"."
|
|
1053
|
+
msgstr ""
|
|
1054
|
+
|
|
1055
|
+
#: udata/core/legal/mails.py:95
|
|
1056
|
+
msgid ""
|
|
1057
|
+
"The platform is not \"intended to disseminate advertising content, "
|
|
1058
|
+
"promotions of private interests, content contrary to public order, "
|
|
1059
|
+
"illegal content, spam and any contribution violating the applicable legal"
|
|
1060
|
+
" framework. The Editor reserves the right, without prior notice, to "
|
|
1061
|
+
"remove or make inaccessible content published on the Platform that has no"
|
|
1062
|
+
" connection with its Purpose. The Editor does not carry out \"a priori\" "
|
|
1063
|
+
"control over publications. As soon as the Editor becomes aware of content"
|
|
1064
|
+
" contrary to these terms of use, it acts quickly to remove or make it "
|
|
1065
|
+
"inaccessible\"."
|
|
1066
|
+
msgstr ""
|
|
1067
|
+
|
|
1068
|
+
#: udata/core/legal/mails.py:107
|
|
1069
|
+
#, python-format
|
|
1070
|
+
msgid ""
|
|
1071
|
+
"You may contest this decision within two months of its notification by "
|
|
1072
|
+
"filing an administrative appeal (recours gracieux ou hiérarchique). You "
|
|
1073
|
+
"may also bring the matter before the administrative court via the "
|
|
1074
|
+
"\"%(telerecours_link)s\" application."
|
|
1075
|
+
msgstr ""
|
|
1076
|
+
|
|
1077
|
+
#: udata/core/legal/mails.py:114
|
|
1078
|
+
msgid "You may contest this decision by contacting us."
|
|
1079
|
+
msgstr ""
|
|
1080
|
+
|
|
1081
|
+
#: udata/core/legal/mails.py:117
|
|
1082
|
+
#, python-format
|
|
1083
|
+
msgid "Your %(content_type)s has been deleted."
|
|
1084
|
+
msgstr ""
|
|
1085
|
+
|
|
1086
|
+
#: udata/core/legal/mails.py:120
|
|
1087
|
+
msgid "Best regards,"
|
|
1088
|
+
msgstr ""
|
|
1089
|
+
|
|
1090
|
+
#: udata/core/legal/mails.py:122
|
|
1091
|
+
#, python-format
|
|
1092
|
+
msgid "%(site)s team member"
|
|
1093
|
+
msgstr ""
|
|
1094
|
+
|
|
1095
|
+
#: udata/core/legal/mails.py:126
|
|
1096
|
+
#, python-format
|
|
1097
|
+
msgid "Deletion of your %(content_type)s"
|
|
1098
|
+
msgstr ""
|
|
1099
|
+
|
|
989
1100
|
#: udata/core/organization/activities.py:18
|
|
990
1101
|
msgid "created an organization"
|
|
991
1102
|
msgstr "ha creado una organización"
|
|
@@ -1002,18 +1113,19 @@ msgstr "Administrador"
|
|
|
1002
1113
|
msgid "Editor"
|
|
1003
1114
|
msgstr ""
|
|
1004
1115
|
|
|
1005
|
-
#: udata/core/organization/constants.py:11 udata/features/transfer/models.py:
|
|
1006
|
-
#: udata/harvest/models.py:28 udata/harvest/models.py:40
|
|
1116
|
+
#: udata/core/organization/constants.py:11 udata/features/transfer/models.py:16
|
|
1117
|
+
#: udata/harvest/models.py:28 udata/harvest/models.py:40
|
|
1118
|
+
#: udata/harvest/models.py:89
|
|
1007
1119
|
msgid "Pending"
|
|
1008
1120
|
msgstr "Pendiente"
|
|
1009
1121
|
|
|
1010
|
-
#: udata/core/organization/constants.py:12 udata/features/transfer/models.py:
|
|
1011
|
-
#: udata/harvest/models.py:
|
|
1122
|
+
#: udata/core/organization/constants.py:12 udata/features/transfer/models.py:17
|
|
1123
|
+
#: udata/harvest/models.py:90
|
|
1012
1124
|
msgid "Accepted"
|
|
1013
1125
|
msgstr "Aceptado"
|
|
1014
1126
|
|
|
1015
|
-
#: udata/core/organization/constants.py:13 udata/features/transfer/models.py:
|
|
1016
|
-
#: udata/harvest/models.py:
|
|
1127
|
+
#: udata/core/organization/constants.py:13 udata/features/transfer/models.py:18
|
|
1128
|
+
#: udata/harvest/models.py:91
|
|
1017
1129
|
msgid "Refused"
|
|
1018
1130
|
msgstr "Rechazado"
|
|
1019
1131
|
|
|
@@ -1066,7 +1178,9 @@ msgstr "Nueva membresía solicitada"
|
|
|
1066
1178
|
|
|
1067
1179
|
#: udata/core/organization/mails.py:13
|
|
1068
1180
|
#, python-format
|
|
1069
|
-
msgid "
|
|
1181
|
+
msgid ""
|
|
1182
|
+
"You received a membership request from %(user)s for your organization "
|
|
1183
|
+
"%(org)s"
|
|
1070
1184
|
msgstr ""
|
|
1071
1185
|
|
|
1072
1186
|
#: udata/core/organization/mails.py:18
|
|
@@ -1092,7 +1206,9 @@ msgstr ""
|
|
|
1092
1206
|
|
|
1093
1207
|
#: udata/core/organization/mails.py:44
|
|
1094
1208
|
#, python-format
|
|
1095
|
-
msgid "
|
|
1209
|
+
msgid ""
|
|
1210
|
+
"Good news! Your request to join the organization %(org)s has been "
|
|
1211
|
+
"approved."
|
|
1096
1212
|
msgstr ""
|
|
1097
1213
|
|
|
1098
1214
|
#: udata/core/organization/mails.py:49 udata/core/organization/mails.py:66
|
|
@@ -1117,7 +1233,9 @@ msgstr ""
|
|
|
1117
1233
|
|
|
1118
1234
|
#: udata/core/organization/mails.py:78
|
|
1119
1235
|
#, python-format
|
|
1120
|
-
msgid "
|
|
1236
|
+
msgid ""
|
|
1237
|
+
"Good news! Your organization %(org)s has been certified by our team. A "
|
|
1238
|
+
"badge is now associated with your organization."
|
|
1121
1239
|
msgstr ""
|
|
1122
1240
|
|
|
1123
1241
|
#: udata/core/organization/mails.py:89
|
|
@@ -1126,7 +1244,9 @@ msgstr ""
|
|
|
1126
1244
|
|
|
1127
1245
|
#: udata/core/organization/mails.py:93
|
|
1128
1246
|
#, python-format
|
|
1129
|
-
msgid "
|
|
1247
|
+
msgid ""
|
|
1248
|
+
"Good news! Your organization %(org)s has been identified by our team as a"
|
|
1249
|
+
" public service. A badge is now associated with your organization."
|
|
1130
1250
|
msgstr ""
|
|
1131
1251
|
|
|
1132
1252
|
#: udata/core/organization/mails.py:104
|
|
@@ -1135,7 +1255,9 @@ msgstr ""
|
|
|
1135
1255
|
|
|
1136
1256
|
#: udata/core/organization/mails.py:108
|
|
1137
1257
|
#, python-format
|
|
1138
|
-
msgid "
|
|
1258
|
+
msgid ""
|
|
1259
|
+
"Good news! Your organization %(org)s has been identified by our team as a"
|
|
1260
|
+
" local authority. A badge is now associated with your organization."
|
|
1139
1261
|
msgstr ""
|
|
1140
1262
|
|
|
1141
1263
|
#: udata/core/organization/mails.py:119
|
|
@@ -1144,7 +1266,9 @@ msgstr ""
|
|
|
1144
1266
|
|
|
1145
1267
|
#: udata/core/organization/mails.py:123
|
|
1146
1268
|
#, python-format
|
|
1147
|
-
msgid "
|
|
1269
|
+
msgid ""
|
|
1270
|
+
"Your organization %(org)s has been identified by our team as a company. A"
|
|
1271
|
+
" badge is now associated with your organization."
|
|
1148
1272
|
msgstr ""
|
|
1149
1273
|
|
|
1150
1274
|
#: udata/core/organization/mails.py:134
|
|
@@ -1153,30 +1277,36 @@ msgstr ""
|
|
|
1153
1277
|
|
|
1154
1278
|
#: udata/core/organization/mails.py:138
|
|
1155
1279
|
#, python-format
|
|
1156
|
-
msgid "
|
|
1280
|
+
msgid ""
|
|
1281
|
+
"Your organization %(org)s has been identified by our team as an "
|
|
1282
|
+
"association. A badge is now associated with your organization."
|
|
1157
1283
|
msgstr ""
|
|
1158
1284
|
|
|
1159
|
-
#: udata/core/organization/models.py:
|
|
1285
|
+
#: udata/core/organization/models.py:40
|
|
1160
1286
|
msgid "Public Service"
|
|
1161
1287
|
msgstr "Servicio público"
|
|
1162
1288
|
|
|
1163
|
-
#: udata/core/organization/models.py:
|
|
1289
|
+
#: udata/core/organization/models.py:41
|
|
1164
1290
|
msgid "Certified"
|
|
1165
1291
|
msgstr "Certificado"
|
|
1166
1292
|
|
|
1167
|
-
#: udata/core/organization/models.py:
|
|
1293
|
+
#: udata/core/organization/models.py:42
|
|
1168
1294
|
msgid "Association"
|
|
1169
1295
|
msgstr ""
|
|
1170
1296
|
|
|
1171
|
-
#: udata/core/organization/models.py:
|
|
1297
|
+
#: udata/core/organization/models.py:43
|
|
1172
1298
|
msgid "Company"
|
|
1173
1299
|
msgstr ""
|
|
1174
1300
|
|
|
1175
|
-
#: udata/core/organization/models.py:
|
|
1301
|
+
#: udata/core/organization/models.py:44
|
|
1176
1302
|
msgid "Local authority"
|
|
1177
1303
|
msgstr ""
|
|
1178
1304
|
|
|
1179
|
-
#: udata/core/
|
|
1305
|
+
#: udata/core/organization/models.py:183
|
|
1306
|
+
msgid "organization"
|
|
1307
|
+
msgstr ""
|
|
1308
|
+
|
|
1309
|
+
#: udata/core/post/api.py:73
|
|
1180
1310
|
msgid "Latests posts"
|
|
1181
1311
|
msgstr ""
|
|
1182
1312
|
|
|
@@ -1188,43 +1318,19 @@ msgstr ""
|
|
|
1188
1318
|
msgid "HTML"
|
|
1189
1319
|
msgstr ""
|
|
1190
1320
|
|
|
1191
|
-
#: udata/core/post/
|
|
1192
|
-
msgid "
|
|
1193
|
-
msgstr "
|
|
1194
|
-
|
|
1195
|
-
#: udata/core/post/forms.py:17
|
|
1196
|
-
msgid "Content"
|
|
1197
|
-
msgstr "Contenido"
|
|
1198
|
-
|
|
1199
|
-
#: udata/core/post/forms.py:19
|
|
1200
|
-
msgid "Associated datasets"
|
|
1201
|
-
msgstr "Conjuntos de datos asociados"
|
|
1202
|
-
|
|
1203
|
-
#: udata/core/post/forms.py:20
|
|
1204
|
-
msgid "Associated reuses"
|
|
1205
|
-
msgstr "Reutilizaciones asociadas"
|
|
1206
|
-
|
|
1207
|
-
#: udata/core/post/forms.py:22
|
|
1208
|
-
msgid "Image"
|
|
1209
|
-
msgstr "Imagen"
|
|
1210
|
-
|
|
1211
|
-
#: udata/core/post/forms.py:23
|
|
1212
|
-
msgid "Image credits"
|
|
1213
|
-
msgstr "Créditos de la imagen"
|
|
1214
|
-
|
|
1215
|
-
#: udata/core/post/forms.py:24
|
|
1216
|
-
msgid "Credit URL"
|
|
1217
|
-
msgstr "Créditos de la URL"
|
|
1321
|
+
#: udata/core/post/constants.py:11
|
|
1322
|
+
msgid "Blocs"
|
|
1323
|
+
msgstr ""
|
|
1218
1324
|
|
|
1219
|
-
#: udata/core/post/
|
|
1220
|
-
msgid "
|
|
1325
|
+
#: udata/core/post/constants.py:17
|
|
1326
|
+
msgid "News"
|
|
1221
1327
|
msgstr ""
|
|
1222
1328
|
|
|
1223
|
-
#: udata/core/post/
|
|
1224
|
-
msgid "
|
|
1329
|
+
#: udata/core/post/constants.py:18
|
|
1330
|
+
msgid "Page"
|
|
1225
1331
|
msgstr ""
|
|
1226
1332
|
|
|
1227
|
-
#: udata/core/post/models.py:
|
|
1333
|
+
#: udata/core/post/models.py:129
|
|
1228
1334
|
msgid "post"
|
|
1229
1335
|
msgstr ""
|
|
1230
1336
|
|
|
@@ -1264,7 +1370,7 @@ msgstr "ha actualizado una reutilización"
|
|
|
1264
1370
|
msgid "deleted a reuse"
|
|
1265
1371
|
msgstr "ha eliminado una reutilización"
|
|
1266
1372
|
|
|
1267
|
-
#: udata/core/reuse/api.py:
|
|
1373
|
+
#: udata/core/reuse/api.py:142
|
|
1268
1374
|
msgid "Latests reuses"
|
|
1269
1375
|
msgstr ""
|
|
1270
1376
|
|
|
@@ -1358,7 +1464,9 @@ msgstr ""
|
|
|
1358
1464
|
|
|
1359
1465
|
#: udata/core/reuse/mails.py:13
|
|
1360
1466
|
#, python-format
|
|
1361
|
-
msgid "
|
|
1467
|
+
msgid ""
|
|
1468
|
+
"A new reuse has been published by %(user_or_org)s on your dataset "
|
|
1469
|
+
"%(dataset)s"
|
|
1362
1470
|
msgstr ""
|
|
1363
1471
|
|
|
1364
1472
|
#: udata/core/reuse/mails.py:18
|
|
@@ -1579,7 +1687,10 @@ msgstr ""
|
|
|
1579
1687
|
|
|
1580
1688
|
#: udata/core/user/mails.py:36
|
|
1581
1689
|
#, python-format
|
|
1582
|
-
msgid "
|
|
1690
|
+
msgid ""
|
|
1691
|
+
"We have noticed that your account associated to (%(user_email)s) has been"
|
|
1692
|
+
" inactive for %(inactivity_years)d years or more on %(site)s, the open "
|
|
1693
|
+
"platform for public data."
|
|
1583
1694
|
msgstr ""
|
|
1584
1695
|
|
|
1585
1696
|
#: udata/core/user/mails.py:42
|
|
@@ -1588,12 +1699,20 @@ msgstr ""
|
|
|
1588
1699
|
|
|
1589
1700
|
#: udata/core/user/mails.py:46
|
|
1590
1701
|
#, python-format
|
|
1591
|
-
msgid "
|
|
1702
|
+
msgid ""
|
|
1703
|
+
"Without logging in, your account will be deleted within %(notify_delay)d "
|
|
1704
|
+
"days."
|
|
1592
1705
|
msgstr ""
|
|
1593
1706
|
|
|
1594
1707
|
#: udata/core/user/mails.py:50
|
|
1595
1708
|
#, python-format
|
|
1596
|
-
msgid "
|
|
1709
|
+
msgid ""
|
|
1710
|
+
"This account is not tied to your other administration accounts and you "
|
|
1711
|
+
"can always re-create an account on the %(site)s platform if necessary."
|
|
1712
|
+
msgstr ""
|
|
1713
|
+
|
|
1714
|
+
#: udata/core/user/models.py:130
|
|
1715
|
+
msgid "account"
|
|
1597
1716
|
msgstr ""
|
|
1598
1717
|
|
|
1599
1718
|
#: udata/core/user/permissions.py:5
|
|
@@ -1682,7 +1801,7 @@ msgstr "Usted debe estar autentificado"
|
|
|
1682
1801
|
msgid "This field requires \"%(name)s\" to be set"
|
|
1683
1802
|
msgstr "Este campo requiere de \"%(name)s\" que deben ser ajustados"
|
|
1684
1803
|
|
|
1685
|
-
#: udata/frontend/markdown.py:
|
|
1804
|
+
#: udata/frontend/markdown.py:28
|
|
1686
1805
|
msgid "Source"
|
|
1687
1806
|
msgstr ""
|
|
1688
1807
|
|
|
@@ -1734,27 +1853,27 @@ msgstr "Salteado"
|
|
|
1734
1853
|
msgid "Archived"
|
|
1735
1854
|
msgstr ""
|
|
1736
1855
|
|
|
1737
|
-
#: udata/harvest/backends/dcat.py:
|
|
1856
|
+
#: udata/harvest/backends/dcat.py:437
|
|
1738
1857
|
msgid "Remote URL prefix"
|
|
1739
1858
|
msgstr ""
|
|
1740
1859
|
|
|
1741
|
-
#: udata/harvest/backends/dcat.py:
|
|
1860
|
+
#: udata/harvest/backends/dcat.py:440
|
|
1742
1861
|
msgid "A prefix used to build the remote URL of the harvested items."
|
|
1743
1862
|
msgstr ""
|
|
1744
1863
|
|
|
1745
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1864
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1746
1865
|
msgid "Organization"
|
|
1747
1866
|
msgstr ""
|
|
1748
1867
|
|
|
1749
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1868
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1750
1869
|
msgid "A CKAN Organization name"
|
|
1751
1870
|
msgstr ""
|
|
1752
1871
|
|
|
1753
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1872
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1754
1873
|
msgid "Tag"
|
|
1755
1874
|
msgstr ""
|
|
1756
1875
|
|
|
1757
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1876
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1758
1877
|
msgid "A CKAN tag name"
|
|
1759
1878
|
msgstr ""
|
|
1760
1879
|
|
|
@@ -1773,39 +1892,31 @@ msgid "Back to home"
|
|
|
1773
1892
|
msgstr ""
|
|
1774
1893
|
|
|
1775
1894
|
#: udata/templates/comments/dataset_archived.txt:1
|
|
1776
|
-
msgid "
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1895
|
+
msgid ""
|
|
1896
|
+
"This dataset has been archived by our administration team.\n"
|
|
1897
|
+
"\n"
|
|
1898
|
+
"An archived dataset is considered out of date by a combination of "
|
|
1899
|
+
"factors.\n"
|
|
1900
|
+
"It does not appear in the search results and has a special layout warning"
|
|
1901
|
+
" the site's users.\n"
|
|
1902
|
+
"\n"
|
|
1779
1903
|
"If you think this is a mistake, you can contact the site administrator."
|
|
1780
1904
|
msgstr ""
|
|
1781
1905
|
|
|
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
|
|
1906
|
+
#: udata/templates/mail/message.html:15
|
|
1792
1907
|
#, python-format
|
|
1793
1908
|
msgid "Hi %(user)s"
|
|
1794
1909
|
msgstr "Hola %(user)s"
|
|
1795
1910
|
|
|
1796
|
-
#: udata/templates/mail/
|
|
1797
|
-
msgid "
|
|
1798
|
-
msgstr "
|
|
1911
|
+
#: udata/templates/mail/message.html:36
|
|
1912
|
+
msgid "Have a great day"
|
|
1913
|
+
msgstr ""
|
|
1799
1914
|
|
|
1800
|
-
#: udata/templates/mail/
|
|
1915
|
+
#: udata/templates/mail/message.html:37
|
|
1801
1916
|
#, python-format
|
|
1802
1917
|
msgid "The %(site)s team"
|
|
1803
1918
|
msgstr "El equipo %(site)s"
|
|
1804
1919
|
|
|
1805
|
-
#: udata/templates/mail/message.html:62
|
|
1806
|
-
msgid "Have a great day"
|
|
1807
|
-
msgstr ""
|
|
1808
|
-
|
|
1809
1920
|
#: udata/templates/security/change_password.html:9
|
|
1810
1921
|
#: udata/templates/security/change_password.html:16
|
|
1811
1922
|
msgid "Change Password"
|
|
@@ -1819,7 +1930,9 @@ msgid "Reset Password"
|
|
|
1819
1930
|
msgstr ""
|
|
1820
1931
|
|
|
1821
1932
|
#: udata/templates/security/forgot_password.html:10
|
|
1822
|
-
msgid "
|
|
1933
|
+
msgid ""
|
|
1934
|
+
"Forgotten your password? Enter your email address below, and we'll email "
|
|
1935
|
+
"instructions for setting a new one."
|
|
1823
1936
|
msgstr ""
|
|
1824
1937
|
|
|
1825
1938
|
#: udata/templates/security/login_user.html:13
|
|
@@ -1914,3 +2027,43 @@ msgstr ""
|
|
|
1914
2027
|
#, python-brace-format
|
|
1915
2028
|
msgid "Deletion of your inactive {site} account"
|
|
1916
2029
|
msgstr ""
|
|
2030
|
+
|
|
2031
|
+
#~ msgid "Vous devez accepter les CGU pour continuer."
|
|
2032
|
+
#~ msgstr ""
|
|
2033
|
+
|
|
2034
|
+
#~ msgid "Headline"
|
|
2035
|
+
#~ msgstr "Encabezado"
|
|
2036
|
+
|
|
2037
|
+
#~ msgid "Content"
|
|
2038
|
+
#~ msgstr "Contenido"
|
|
2039
|
+
|
|
2040
|
+
#~ msgid "Associated datasets"
|
|
2041
|
+
#~ msgstr "Conjuntos de datos asociados"
|
|
2042
|
+
|
|
2043
|
+
#~ msgid "Associated reuses"
|
|
2044
|
+
#~ msgstr "Reutilizaciones asociadas"
|
|
2045
|
+
|
|
2046
|
+
#~ msgid "Image"
|
|
2047
|
+
#~ msgstr "Imagen"
|
|
2048
|
+
|
|
2049
|
+
#~ msgid "Image credits"
|
|
2050
|
+
#~ msgstr "Créditos de la imagen"
|
|
2051
|
+
|
|
2052
|
+
#~ msgid "Credit URL"
|
|
2053
|
+
#~ msgstr "Créditos de la URL"
|
|
2054
|
+
|
|
2055
|
+
#~ msgid "body type"
|
|
2056
|
+
#~ msgstr ""
|
|
2057
|
+
|
|
2058
|
+
#~ msgid "Specify your body type (HTML or markdown)"
|
|
2059
|
+
#~ msgstr ""
|
|
2060
|
+
|
|
2061
|
+
#~ msgid "on your browser."
|
|
2062
|
+
#~ msgstr ""
|
|
2063
|
+
|
|
2064
|
+
#~ msgid "View this email %(link)s"
|
|
2065
|
+
#~ msgstr ""
|
|
2066
|
+
|
|
2067
|
+
#~ msgid "See you soon on the platform"
|
|
2068
|
+
#~ msgstr "Hasts pronto en la plataforma "
|
|
2069
|
+
|