invenio-app-rdm 13.0.0b3.dev1__py2.py3-none-any.whl → 13.0.0b3.dev2__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- invenio_app_rdm/__init__.py +1 -1
- invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js +69 -0
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/METADATA +5 -1
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/RECORD +8 -7
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/WHEEL +0 -0
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/entry_points.txt +0 -0
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/licenses/LICENSE +0 -0
- {invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/top_level.txt +0 -0
invenio_app_rdm/__init__.py
CHANGED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// This file is part of React-Invenio-Deposit
|
|
2
|
+
// Copyright (C) 2025 CERN
|
|
3
|
+
// Copyright (C) 2025 KTH Royal Institute of Technology
|
|
4
|
+
//
|
|
5
|
+
// Invenio-app-rdm is free software; you can redistribute it and/or modify it
|
|
6
|
+
// under the terms of the MIT License; see LICENSE file for more details.
|
|
7
|
+
//
|
|
8
|
+
|
|
9
|
+
import TRANSLATE_AR from "./ar/translations.json";
|
|
10
|
+
import TRANSLATE_BG from "./bg/translations.json";
|
|
11
|
+
import TRANSLATE_CA from "./ca/translations.json";
|
|
12
|
+
import TRANSLATE_CS from "./cs/translations.json";
|
|
13
|
+
import TRANSLATE_DA from "./da/translations.json";
|
|
14
|
+
import TRANSLATE_DE from "./de/translations.json";
|
|
15
|
+
import TRANSLATE_EL from "./el/translations.json";
|
|
16
|
+
import TRANSLATE_EN from "./en/translations.json";
|
|
17
|
+
import TRANSLATE_ES from "./es/translations.json";
|
|
18
|
+
import TRANSLATE_ET from "./et/translations.json";
|
|
19
|
+
import TRANSLATE_FA from "./fa/translations.json";
|
|
20
|
+
import TRANSLATE_FR from "./fr/translations.json";
|
|
21
|
+
import TRANSLATE_HR from "./hr/translations.json";
|
|
22
|
+
import TRANSLATE_HU from "./hu/translations.json";
|
|
23
|
+
import TRANSLATE_IT from "./it/translations.json";
|
|
24
|
+
import TRANSLATE_JA from "./ja/translations.json";
|
|
25
|
+
import TRANSLATE_KA from "./ka/translations.json";
|
|
26
|
+
import TRANSLATE_LT from "./lt/translations.json";
|
|
27
|
+
import TRANSLATE_NO from "./no/translations.json";
|
|
28
|
+
import TRANSLATE_PL from "./pl/translations.json";
|
|
29
|
+
import TRANSLATE_PT from "./pt/translations.json";
|
|
30
|
+
import TRANSLATE_RO from "./ro/translations.json";
|
|
31
|
+
import TRANSLATE_RU from "./ru/translations.json";
|
|
32
|
+
import TRANSLATE_SK from "./sk/translations.json";
|
|
33
|
+
import TRANSLATE_SV from "./sv/translations.json";
|
|
34
|
+
import TRANSLATE_TR from "./tr/translations.json";
|
|
35
|
+
import TRANSLATE_UK from "./uk/translations.json";
|
|
36
|
+
import TRANSLATE_ZH_CN from "./zh_CN/translations.json";
|
|
37
|
+
import TRANSLATE_ZH_TW from "./zh_TW/translations.json";
|
|
38
|
+
|
|
39
|
+
export const translations = {
|
|
40
|
+
ar: { translation: TRANSLATE_AR },
|
|
41
|
+
bg: { translation: TRANSLATE_BG },
|
|
42
|
+
ca: { translation: TRANSLATE_CA },
|
|
43
|
+
cs: { translation: TRANSLATE_CS },
|
|
44
|
+
da: { translation: TRANSLATE_DA },
|
|
45
|
+
de: { translation: TRANSLATE_DE },
|
|
46
|
+
el: { translation: TRANSLATE_EL },
|
|
47
|
+
en: { translation: TRANSLATE_EN },
|
|
48
|
+
es: { translation: TRANSLATE_ES },
|
|
49
|
+
et: { translation: TRANSLATE_ET },
|
|
50
|
+
fa: { translation: TRANSLATE_FA },
|
|
51
|
+
fr: { translation: TRANSLATE_FR },
|
|
52
|
+
hr: { translation: TRANSLATE_HR },
|
|
53
|
+
hu: { translation: TRANSLATE_HU },
|
|
54
|
+
it: { translation: TRANSLATE_IT },
|
|
55
|
+
ja: { translation: TRANSLATE_JA },
|
|
56
|
+
ka: { translation: TRANSLATE_KA },
|
|
57
|
+
lt: { translation: TRANSLATE_LT },
|
|
58
|
+
no: { translation: TRANSLATE_NO },
|
|
59
|
+
pl: { translation: TRANSLATE_PL },
|
|
60
|
+
pt: { translation: TRANSLATE_PT },
|
|
61
|
+
ro: { translation: TRANSLATE_RO },
|
|
62
|
+
ru: { translation: TRANSLATE_RU },
|
|
63
|
+
sk: { translation: TRANSLATE_SK },
|
|
64
|
+
sv: { translation: TRANSLATE_SV },
|
|
65
|
+
tr: { translation: TRANSLATE_TR },
|
|
66
|
+
uk: { translation: TRANSLATE_UK },
|
|
67
|
+
zh_CN: { translation: TRANSLATE_ZH_CN },
|
|
68
|
+
zh_TW: { translation: TRANSLATE_ZH_TW },
|
|
69
|
+
};
|
{invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: invenio-app-rdm
|
|
3
|
-
Version: 13.0.0b3.
|
|
3
|
+
Version: 13.0.0b3.dev2
|
|
4
4
|
Summary: Invenio Research Data Management.
|
|
5
5
|
Home-page: https://github.com/inveniosoftware/invenio-app-rdm
|
|
6
6
|
Author: CERN
|
|
@@ -97,6 +97,10 @@ https://inveniordm.docs.cern.ch
|
|
|
97
97
|
Changes
|
|
98
98
|
=======
|
|
99
99
|
|
|
100
|
+
Version v13.0.0b3.dev2 (released 2025-03-29)
|
|
101
|
+
|
|
102
|
+
- fix: restore messages index.js and remove unused imports
|
|
103
|
+
|
|
100
104
|
Version v13.0.0b3.dev1 (released 2025-03-27)
|
|
101
105
|
|
|
102
106
|
- deposit: align licenses modal with funders modal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
invenio_app_rdm/__init__.py,sha256=
|
|
1
|
+
invenio_app_rdm/__init__.py,sha256=RVHM8qmoe5D1-TMj4FV1rYRoxzmd720cAweiN0HmlFM,699
|
|
2
2
|
invenio_app_rdm/cli.py,sha256=G6QqNU2W6n6ICtTMnpeKFXIsdorncDmVXwwwsGH5F2k,2746
|
|
3
3
|
invenio_app_rdm/config.py,sha256=Sv6Q8VEP-KYNuvC6kASLOYC-gYRByYN-hwPmbCxQWKc,50624
|
|
4
4
|
invenio_app_rdm/ext.py,sha256=PkZhATGJDgYqBJQh41NdvBZWR83mgI3Eej6rj10UVJE,5278
|
|
@@ -277,6 +277,7 @@ invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/i18next.js
|
|
|
277
277
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package-lock.json,sha256=5A9oCU6BbPW4FH4uFR8fxMHzwEo3HnjWFohHs6J13Cw,58457
|
|
278
278
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/package.json,sha256=ITuri6tLK_zJr8eBrwVvQEBCnzzLnHSYrGYpsWUICco,945
|
|
279
279
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/translations.pot,sha256=S5c69QZYivrze2u_gPbz7jxr1CuilDfnsXvkQ6fRaDw,18625
|
|
280
|
+
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/index.js,sha256=9nLEfmBCv9z6skLd1nnOE8XEWugRbk_QHfimnFJBvzA,2898
|
|
280
281
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/messages.po,sha256=t0ijS-AHKe8xZL6FVmqcvlw6sSqyatfeI1ezE18MIzU,6654
|
|
281
282
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/ar/translations.json,sha256=HvP8xcmaspu71IJu7UIUwSCBJg9Mzug8hZdfgZU0j_c,11665
|
|
282
283
|
invenio_app_rdm/theme/assets/semantic-ui/translations/invenio_app_rdm/messages/bg/messages.po,sha256=DUmcx_GwRbCCUtPlQ6a224zZDsYqfe8bIzjdN7dbMf8,3822
|
|
@@ -467,7 +468,7 @@ invenio_app_rdm/users_ui/views/__init__.py,sha256=SMdY2NJj9GICfr3Xuok7qdNYVtA2bJ
|
|
|
467
468
|
invenio_app_rdm/users_ui/views/dashboard.py,sha256=iUn2PrODAwb8ugmMosJKAjPhUzjCiWiAWoXQr9RUFuc,1793
|
|
468
469
|
invenio_app_rdm/users_ui/views/ui.py,sha256=W_eXM8dLVIrNHQB2UEh37C9BYoHauft6RyvcDNFHovA,1742
|
|
469
470
|
invenio_app_rdm/utils/files.py,sha256=CruDyO2gDVadSlWEJD-WHpWHeOQ0juh-Ei9jz3D9yjc,3923
|
|
470
|
-
invenio_app_rdm-13.0.0b3.
|
|
471
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/licenses/LICENSE,sha256=AZXFHRrZa5s4m9DV7zZr4bPGTMUvcEPCodeV_AmFI8k,1204
|
|
471
472
|
tests/__init__.py,sha256=yKVf0yYRuxmXvyAtLjmfpHGVCsEkZOhs_FojAAM_w-8,244
|
|
472
473
|
tests/conftest.py,sha256=6iR-l-DIpQDxN2LLMu6kbHnLsmAW1m8Lq-j8rNNucf8,8956
|
|
473
474
|
tests/test_tasks.py,sha256=6l25lcMjL3ZuQr4hsxbAEjSTu_J1aKkOB3ZXqOZZIy0,3712
|
|
@@ -500,8 +501,8 @@ tests/ui/test_filters.py,sha256=Q90wsJffjMVir7wNX8taGf2KZleLtPbXZXHLTkBpzLA,284
|
|
|
500
501
|
tests/ui/test_signposting_ui.py,sha256=KCSjQlMD2VKlwQCyZYDwYjtVNL35x3u-ZC4ceD5y21w,3847
|
|
501
502
|
tests/ui/test_static.py,sha256=vO3OQAOhrQESJifnQfM1pw7JYz3J874O8BAb7Cc_PPA,868
|
|
502
503
|
tests/ui/test_stats_ui.py,sha256=LHa_0hjvpYvliSk_jknWy-90CO82jVElUfK5Ua_ZmfA,3554
|
|
503
|
-
invenio_app_rdm-13.0.0b3.
|
|
504
|
-
invenio_app_rdm-13.0.0b3.
|
|
505
|
-
invenio_app_rdm-13.0.0b3.
|
|
506
|
-
invenio_app_rdm-13.0.0b3.
|
|
507
|
-
invenio_app_rdm-13.0.0b3.
|
|
504
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/METADATA,sha256=JieFLy0silZDVRizy9hUGRXdzIHIqpd0_-13S4Y56g4,12231
|
|
505
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
|
|
506
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/entry_points.txt,sha256=r1vTqYNABeWqRMWitzyR9FnBsAy-KYZKZCp95IziyLY,2070
|
|
507
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/top_level.txt,sha256=NqTqrntInEAci7EXcNBvouXFMqwyjVQhEI0b7izYRBY,22
|
|
508
|
+
invenio_app_rdm-13.0.0b3.dev2.dist-info/RECORD,,
|
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{invenio_app_rdm-13.0.0b3.dev1.dist-info → invenio_app_rdm-13.0.0b3.dev2.dist-info}/top_level.txt
RENAMED
|
File without changes
|