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,45 @@
|
|
|
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: sr\n"
|
|
9
10
|
"Language-Team: Serbian (Cyrillic)\n"
|
|
10
|
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 &&
|
|
11
|
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
12
|
+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
|
11
13
|
"MIME-Version: 1.0\n"
|
|
12
|
-
"Content-Type: text/plain; charset=
|
|
14
|
+
"Content-Type: text/plain; charset=utf-8\n"
|
|
13
15
|
"Content-Transfer-Encoding: 8bit\n"
|
|
14
16
|
"Generated-By: Babel 2.17.0\n"
|
|
15
|
-
"X-Crowdin-Project: udata\n"
|
|
16
|
-
"X-Crowdin-Project-ID: 291291\n"
|
|
17
|
-
"X-Crowdin-Language: sr\n"
|
|
18
|
-
"X-Crowdin-File: /main/udata/translations/udata.pot\n"
|
|
19
|
-
"X-Crowdin-File-ID: 6\n"
|
|
20
17
|
|
|
21
|
-
#: udata/settings.py:
|
|
18
|
+
#: udata/settings.py:129
|
|
22
19
|
msgid "Welcome"
|
|
23
20
|
msgstr "Добродошли"
|
|
24
21
|
|
|
25
|
-
#: udata/settings.py:
|
|
22
|
+
#: udata/settings.py:130
|
|
26
23
|
msgid "Please confirm your email"
|
|
27
24
|
msgstr "Молимо, потврдите Ваш е-mail "
|
|
28
25
|
|
|
29
|
-
#: udata/settings.py:
|
|
26
|
+
#: udata/settings.py:131
|
|
30
27
|
msgid "Login instructions"
|
|
31
28
|
msgstr "Инструкције за приступ"
|
|
32
29
|
|
|
33
|
-
#: udata/auth/mails.py:125 udata/settings.py:
|
|
30
|
+
#: udata/auth/mails.py:125 udata/settings.py:132
|
|
34
31
|
msgid "Your password has been reset"
|
|
35
32
|
msgstr "Ваша лозинка је ресетована"
|
|
36
33
|
|
|
37
|
-
#: udata/auth/mails.py:137 udata/settings.py:
|
|
34
|
+
#: udata/auth/mails.py:137 udata/settings.py:133
|
|
38
35
|
msgid "Your password has been changed"
|
|
39
36
|
msgstr "Ваша лозинка је промењена"
|
|
40
37
|
|
|
41
|
-
#: udata/settings.py:
|
|
38
|
+
#: udata/settings.py:134
|
|
42
39
|
msgid "Password reset instructions"
|
|
43
40
|
msgstr "Инструкције за ресетовање лозинке"
|
|
44
41
|
|
|
45
|
-
#: udata/settings.py:
|
|
42
|
+
#: udata/settings.py:553
|
|
46
43
|
msgid "This dataset has been archived"
|
|
47
44
|
msgstr "Овај скуп података је архивиран"
|
|
48
45
|
|
|
@@ -51,47 +48,51 @@ msgstr "Овај скуп података је архивиран"
|
|
|
51
48
|
msgid "Invalid URL \"{url}\": {reason}"
|
|
52
49
|
msgstr "Неисправан УРЛ \"{url}\": {reason}"
|
|
53
50
|
|
|
54
|
-
#: udata/tests/api/test_datasets_api.py:
|
|
51
|
+
#: udata/tests/api/test_datasets_api.py:1187 udata/tests/test_model.py:402
|
|
55
52
|
#: udata/uris.py:56
|
|
56
53
|
#, python-brace-format
|
|
57
54
|
msgid "Invalid URL \"{url}\""
|
|
58
55
|
msgstr "Неисправан УРЛ \"{url}\""
|
|
59
56
|
|
|
60
|
-
#: udata/uris.py:
|
|
57
|
+
#: udata/uris.py:128
|
|
61
58
|
#, python-brace-format
|
|
62
59
|
msgid "Invalid scheme {0}, allowed schemes: {1}"
|
|
63
60
|
msgstr "Неисправна шема {0}, дозвољена шема: {1}"
|
|
64
61
|
|
|
65
|
-
#: udata/uris.py:
|
|
62
|
+
#: udata/uris.py:131
|
|
66
63
|
msgid "Credentials in URL are not allowed"
|
|
67
64
|
msgstr ""
|
|
68
65
|
|
|
69
|
-
#: udata/uris.py:
|
|
66
|
+
#: udata/uris.py:135
|
|
70
67
|
#, python-brace-format
|
|
71
68
|
msgid "Invalid TLD {0}"
|
|
72
69
|
msgstr "Неисправан ТЛД {0}"
|
|
73
70
|
|
|
74
|
-
#: udata/uris.py:
|
|
71
|
+
#: udata/uris.py:144
|
|
75
72
|
#, python-brace-format
|
|
76
73
|
msgid "{0} is a multicast IP"
|
|
77
74
|
msgstr ""
|
|
78
75
|
|
|
79
|
-
#: udata/uris.py:
|
|
76
|
+
#: udata/uris.py:146
|
|
80
77
|
#, python-brace-format
|
|
81
78
|
msgid "{0} is a mask IP"
|
|
82
79
|
msgstr ""
|
|
83
80
|
|
|
84
|
-
#: udata/uris.py:
|
|
81
|
+
#: udata/uris.py:150
|
|
85
82
|
msgid "is a local URL"
|
|
86
83
|
msgstr ""
|
|
87
84
|
|
|
88
|
-
#: udata/tests/test_model.py:420 udata/uris.py:
|
|
85
|
+
#: udata/tests/test_model.py:420 udata/uris.py:157
|
|
89
86
|
msgid "is a private URL"
|
|
90
87
|
msgstr ""
|
|
91
88
|
|
|
92
89
|
#: udata/api/errors.py:4
|
|
93
|
-
msgid "
|
|
94
|
-
|
|
90
|
+
msgid ""
|
|
91
|
+
"Validation error: your data cannot be updated for now, we have been "
|
|
92
|
+
"notified of the error and we will fix it as soon as possible."
|
|
93
|
+
msgstr ""
|
|
94
|
+
"Грешка у валидацији: податке тренутно није могуће ажурирати. Обавештени "
|
|
95
|
+
"смо о грешци и отклонићемо је чим то буде могуће."
|
|
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 "Име"
|
|
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 "Датум креирања"
|
|
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 "Датум последње измене"
|
|
@@ -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 "Друго"
|
|
@@ -661,31 +701,31 @@ msgstr "Друго"
|
|
|
661
701
|
msgid "Unknown"
|
|
662
702
|
msgstr "Непознато"
|
|
663
703
|
|
|
664
|
-
#: udata/core/dataset/constants.py:
|
|
704
|
+
#: udata/core/dataset/constants.py:144
|
|
665
705
|
msgid "Main file"
|
|
666
706
|
msgstr "Главна датотека"
|
|
667
707
|
|
|
668
|
-
#: udata/core/dataset/constants.py:
|
|
708
|
+
#: udata/core/dataset/constants.py:145
|
|
669
709
|
msgid "Documentation"
|
|
670
710
|
msgstr "Документација"
|
|
671
711
|
|
|
672
|
-
#: udata/core/dataset/constants.py:
|
|
712
|
+
#: udata/core/dataset/constants.py:146
|
|
673
713
|
msgid "Update"
|
|
674
714
|
msgstr "Ажурирање"
|
|
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 "Складиште кода"
|
|
683
723
|
|
|
684
|
-
#: udata/core/dataset/constants.py:
|
|
724
|
+
#: udata/core/dataset/constants.py:156
|
|
685
725
|
msgid "Uploaded file"
|
|
686
726
|
msgstr "Отпремљена датотека"
|
|
687
727
|
|
|
688
|
-
#: udata/core/dataset/constants.py:
|
|
728
|
+
#: udata/core/dataset/constants.py:157
|
|
689
729
|
msgid "Remote file"
|
|
690
730
|
msgstr "Удаљена датотека"
|
|
691
731
|
|
|
@@ -762,7 +802,7 @@ msgstr "Величина датотеке у бајтовима"
|
|
|
762
802
|
msgid "Related dataset"
|
|
763
803
|
msgstr "Повезани скуп података"
|
|
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 "Просторна покривеност"
|
|
|
831
871
|
msgid "The geographical area covered by the data."
|
|
832
872
|
msgstr "Географска област покривена подацима."
|
|
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 "Ознаке"
|
|
839
878
|
|
|
@@ -849,65 +888,69 @@ msgstr "Приватно"
|
|
|
849
888
|
msgid "Restrict the dataset visibility to you or your organization only."
|
|
850
889
|
msgstr "Ограничите видљивост скупа података само на себе или своју организацију."
|
|
851
890
|
|
|
852
|
-
#: udata/core/dataset/models.py:
|
|
891
|
+
#: udata/core/dataset/models.py:71
|
|
853
892
|
msgid "Pivotal data"
|
|
854
893
|
msgstr "Кључни подаци"
|
|
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
|
+
"Име шеме \"{schema}\" није дозвољена вредност. Дозвољене вредности: "
|
|
925
|
+
"{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 "Ресурс без имена"
|
|
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 "Будући датум ажурирања"
|
|
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 "скуп података"
|
|
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 "{format} ресурс"
|
|
@@ -961,13 +1004,23 @@ msgstr "Дискусија је затворена"
|
|
|
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 "Задаци"
|
|
@@ -986,6 +1039,65 @@ msgstr "сваки {0.period_singular}"
|
|
|
986
1039
|
msgid "every {0.every} {0.period}"
|
|
987
1040
|
msgstr "сваки {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 "организација је направљена"
|
|
@@ -1002,18 +1114,19 @@ msgstr "Администратор"
|
|
|
1002
1114
|
msgid "Editor"
|
|
1003
1115
|
msgstr "Уредник"
|
|
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 "На чекању"
|
|
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 "Прихваћено"
|
|
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 "Одбијено"
|
|
1019
1132
|
|
|
@@ -1066,7 +1179,9 @@ msgstr "Нови захтев за чланство"
|
|
|
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 "Јавни сервис"
|
|
1162
1289
|
|
|
1163
|
-
#: udata/core/organization/models.py:
|
|
1290
|
+
#: udata/core/organization/models.py:41
|
|
1164
1291
|
msgid "Certified"
|
|
1165
1292
|
msgstr "Сертификовано"
|
|
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 ""
|
|
|
1188
1319
|
msgid "HTML"
|
|
1189
1320
|
msgstr "ХТМЛ"
|
|
1190
1321
|
|
|
1191
|
-
#: udata/core/post/
|
|
1192
|
-
msgid "
|
|
1193
|
-
msgstr "
|
|
1194
|
-
|
|
1195
|
-
#: udata/core/post/forms.py:17
|
|
1196
|
-
msgid "Content"
|
|
1197
|
-
msgstr "Садржај"
|
|
1198
|
-
|
|
1199
|
-
#: udata/core/post/forms.py:19
|
|
1200
|
-
msgid "Associated datasets"
|
|
1201
|
-
msgstr "Повезани скупови података"
|
|
1202
|
-
|
|
1203
|
-
#: udata/core/post/forms.py:20
|
|
1204
|
-
msgid "Associated reuses"
|
|
1205
|
-
msgstr "Повезани примери употребе"
|
|
1206
|
-
|
|
1207
|
-
#: udata/core/post/forms.py:22
|
|
1208
|
-
msgid "Image"
|
|
1209
|
-
msgstr "Слика"
|
|
1210
|
-
|
|
1211
|
-
#: udata/core/post/forms.py:23
|
|
1212
|
-
msgid "Image credits"
|
|
1213
|
-
msgstr "Акредитација слике"
|
|
1214
|
-
|
|
1215
|
-
#: udata/core/post/forms.py:24
|
|
1216
|
-
msgid "Credit URL"
|
|
1217
|
-
msgstr "URL акредитације"
|
|
1322
|
+
#: udata/core/post/constants.py:11
|
|
1323
|
+
msgid "Blocs"
|
|
1324
|
+
msgstr ""
|
|
1218
1325
|
|
|
1219
|
-
#: udata/core/post/
|
|
1220
|
-
msgid "
|
|
1326
|
+
#: udata/core/post/constants.py:17
|
|
1327
|
+
msgid "News"
|
|
1221
1328
|
msgstr ""
|
|
1222
1329
|
|
|
1223
|
-
#: udata/core/post/
|
|
1224
|
-
msgid "
|
|
1330
|
+
#: udata/core/post/constants.py:18
|
|
1331
|
+
msgid "Page"
|
|
1225
1332
|
msgstr ""
|
|
1226
1333
|
|
|
1227
|
-
#: udata/core/post/models.py:
|
|
1334
|
+
#: udata/core/post/models.py:129
|
|
1228
1335
|
msgid "post"
|
|
1229
1336
|
msgstr "Објава"
|
|
1230
1337
|
|
|
@@ -1264,7 +1371,7 @@ msgstr "пример употребе је ажуриран"
|
|
|
1264
1371
|
msgid "deleted a reuse"
|
|
1265
1372
|
msgstr "пример употребе је избрисан"
|
|
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
|
|
@@ -1682,7 +1802,7 @@ msgstr "Морате потврдити свој идентитет"
|
|
|
1682
1802
|
msgid "This field requires \"%(name)s\" to be set"
|
|
1683
1803
|
msgstr "Ово поље захтева да се подесе \"%(name)s\""
|
|
1684
1804
|
|
|
1685
|
-
#: udata/frontend/markdown.py:
|
|
1805
|
+
#: udata/frontend/markdown.py:28
|
|
1686
1806
|
msgid "Source"
|
|
1687
1807
|
msgstr "Извор"
|
|
1688
1808
|
|
|
@@ -1734,27 +1854,27 @@ msgstr "Прескочено"
|
|
|
1734
1854
|
msgid "Archived"
|
|
1735
1855
|
msgstr "Архивирано"
|
|
1736
1856
|
|
|
1737
|
-
#: udata/harvest/backends/dcat.py:
|
|
1857
|
+
#: udata/harvest/backends/dcat.py:437
|
|
1738
1858
|
msgid "Remote URL prefix"
|
|
1739
1859
|
msgstr ""
|
|
1740
1860
|
|
|
1741
|
-
#: udata/harvest/backends/dcat.py:
|
|
1861
|
+
#: udata/harvest/backends/dcat.py:440
|
|
1742
1862
|
msgid "A prefix used to build the remote URL of the harvested items."
|
|
1743
1863
|
msgstr ""
|
|
1744
1864
|
|
|
1745
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1865
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1746
1866
|
msgid "Organization"
|
|
1747
1867
|
msgstr ""
|
|
1748
1868
|
|
|
1749
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1869
|
+
#: udata/harvest/backends/ckan/harvesters.py:33
|
|
1750
1870
|
msgid "A CKAN Organization name"
|
|
1751
1871
|
msgstr ""
|
|
1752
1872
|
|
|
1753
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1873
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1754
1874
|
msgid "Tag"
|
|
1755
1875
|
msgstr ""
|
|
1756
1876
|
|
|
1757
|
-
#: udata/harvest/backends/ckan/harvesters.py:
|
|
1877
|
+
#: udata/harvest/backends/ckan/harvesters.py:34
|
|
1758
1878
|
msgid "A CKAN tag name"
|
|
1759
1879
|
msgstr ""
|
|
1760
1880
|
|
|
@@ -1773,42 +1893,38 @@ msgid "Back to home"
|
|
|
1773
1893
|
msgstr ""
|
|
1774
1894
|
|
|
1775
1895
|
#: udata/templates/comments/dataset_archived.txt:1
|
|
1776
|
-
msgid "
|
|
1777
|
-
"
|
|
1778
|
-
"
|
|
1896
|
+
msgid ""
|
|
1897
|
+
"This dataset has been archived by our administration team.\n"
|
|
1898
|
+
"\n"
|
|
1899
|
+
"An archived dataset is considered out of date by a combination of "
|
|
1900
|
+
"factors.\n"
|
|
1901
|
+
"It does not appear in the search results and has a special layout warning"
|
|
1902
|
+
" the site's users.\n"
|
|
1903
|
+
"\n"
|
|
1779
1904
|
"If you think this is a mistake, you can contact the site administrator."
|
|
1780
|
-
msgstr "
|
|
1905
|
+
msgstr ""
|
|
1906
|
+
"Овај скуп података су архивирали наши администратори.\n"
|
|
1907
|
+
"\n"
|
|
1781
1908
|
"Аривирани скуп података се сматрао застарелим из више разлога.\n"
|
|
1782
|
-
"Не појављује се у резултатима претраге и има упозорење упућено
|
|
1909
|
+
"Не појављује се у резултатима претраге и има упозорење упућено "
|
|
1910
|
+
"корисницима сајта.\n"
|
|
1911
|
+
"\n"
|
|
1783
1912
|
"Ако сматрате да је ово грешка контактирајте администратора портала."
|
|
1784
1913
|
|
|
1785
|
-
#: udata/templates/mail/
|
|
1786
|
-
msgid "on your browser."
|
|
1787
|
-
msgstr "на вашем претраживачу."
|
|
1788
|
-
|
|
1789
|
-
#: udata/templates/mail/base.html:48
|
|
1790
|
-
#, python-format
|
|
1791
|
-
msgid "View this email %(link)s"
|
|
1792
|
-
msgstr "Видети од овог мејла %(link)s"
|
|
1793
|
-
|
|
1794
|
-
#: udata/templates/mail/base.html:76 udata/templates/mail/message.html:41
|
|
1914
|
+
#: udata/templates/mail/message.html:15
|
|
1795
1915
|
#, python-format
|
|
1796
1916
|
msgid "Hi %(user)s"
|
|
1797
1917
|
msgstr "Здраво, %(user)s"
|
|
1798
1918
|
|
|
1799
|
-
#: udata/templates/mail/
|
|
1800
|
-
msgid "
|
|
1801
|
-
msgstr "
|
|
1919
|
+
#: udata/templates/mail/message.html:36
|
|
1920
|
+
msgid "Have a great day"
|
|
1921
|
+
msgstr ""
|
|
1802
1922
|
|
|
1803
|
-
#: udata/templates/mail/
|
|
1923
|
+
#: udata/templates/mail/message.html:37
|
|
1804
1924
|
#, python-format
|
|
1805
1925
|
msgid "The %(site)s team"
|
|
1806
1926
|
msgstr "%(site)s - администратор"
|
|
1807
1927
|
|
|
1808
|
-
#: udata/templates/mail/message.html:62
|
|
1809
|
-
msgid "Have a great day"
|
|
1810
|
-
msgstr ""
|
|
1811
|
-
|
|
1812
1928
|
#: udata/templates/security/change_password.html:9
|
|
1813
1929
|
#: udata/templates/security/change_password.html:16
|
|
1814
1930
|
msgid "Change Password"
|
|
@@ -1822,8 +1938,12 @@ msgid "Reset Password"
|
|
|
1822
1938
|
msgstr "Ресетовање лозинке"
|
|
1823
1939
|
|
|
1824
1940
|
#: udata/templates/security/forgot_password.html:10
|
|
1825
|
-
msgid "
|
|
1826
|
-
|
|
1941
|
+
msgid ""
|
|
1942
|
+
"Forgotten your password? Enter your email address below, and we'll email "
|
|
1943
|
+
"instructions for setting a new one."
|
|
1944
|
+
msgstr ""
|
|
1945
|
+
"Заборавили сте лозинку? Унесите е-адресу у наставку, а ми ћемо вам "
|
|
1946
|
+
"послати упутства за постављање нове."
|
|
1827
1947
|
|
|
1828
1948
|
#: udata/templates/security/login_user.html:13
|
|
1829
1949
|
msgid "Sign In"
|
|
@@ -1917,3 +2037,43 @@ msgstr "Популарно"
|
|
|
1917
2037
|
#, python-brace-format
|
|
1918
2038
|
msgid "Deletion of your inactive {site} account"
|
|
1919
2039
|
msgstr ""
|
|
2040
|
+
|
|
2041
|
+
#~ msgid "Vous devez accepter les CGU pour continuer."
|
|
2042
|
+
#~ msgstr ""
|
|
2043
|
+
|
|
2044
|
+
#~ msgid "Headline"
|
|
2045
|
+
#~ msgstr "Наслов"
|
|
2046
|
+
|
|
2047
|
+
#~ msgid "Content"
|
|
2048
|
+
#~ msgstr "Садржај"
|
|
2049
|
+
|
|
2050
|
+
#~ msgid "Associated datasets"
|
|
2051
|
+
#~ msgstr "Повезани скупови података"
|
|
2052
|
+
|
|
2053
|
+
#~ msgid "Associated reuses"
|
|
2054
|
+
#~ msgstr "Повезани примери употребе"
|
|
2055
|
+
|
|
2056
|
+
#~ msgid "Image"
|
|
2057
|
+
#~ msgstr "Слика"
|
|
2058
|
+
|
|
2059
|
+
#~ msgid "Image credits"
|
|
2060
|
+
#~ msgstr "Акредитација слике"
|
|
2061
|
+
|
|
2062
|
+
#~ msgid "Credit URL"
|
|
2063
|
+
#~ msgstr "URL акредитације"
|
|
2064
|
+
|
|
2065
|
+
#~ msgid "body type"
|
|
2066
|
+
#~ msgstr ""
|
|
2067
|
+
|
|
2068
|
+
#~ msgid "Specify your body type (HTML or markdown)"
|
|
2069
|
+
#~ msgstr ""
|
|
2070
|
+
|
|
2071
|
+
#~ msgid "on your browser."
|
|
2072
|
+
#~ msgstr "на вашем претраживачу."
|
|
2073
|
+
|
|
2074
|
+
#~ msgid "View this email %(link)s"
|
|
2075
|
+
#~ msgstr "Видети од овог мејла %(link)s"
|
|
2076
|
+
|
|
2077
|
+
#~ msgid "See you soon on the platform"
|
|
2078
|
+
#~ msgstr "Видимо се ускоро на порталу"
|
|
2079
|
+
|