invenio-banners 5.2.1__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.
Files changed (91) hide show
  1. invenio_banners/__init__.py +16 -0
  2. invenio_banners/administration/__init__.py +8 -0
  3. invenio_banners/administration/banners.py +183 -0
  4. invenio_banners/alembic/5e02314da32e_create_invenio_banners_db_table.py +43 -0
  5. invenio_banners/alembic/e40d93d99040_create_invenio_banners_branch.py +27 -0
  6. invenio_banners/config.py +54 -0
  7. invenio_banners/ext.py +60 -0
  8. invenio_banners/proxies.py +19 -0
  9. invenio_banners/records/__init__.py +13 -0
  10. invenio_banners/records/models.py +143 -0
  11. invenio_banners/resources/__init__.py +16 -0
  12. invenio_banners/resources/config.py +51 -0
  13. invenio_banners/resources/errors.py +52 -0
  14. invenio_banners/resources/resource.py +107 -0
  15. invenio_banners/services/__init__.py +20 -0
  16. invenio_banners/services/config.py +85 -0
  17. invenio_banners/services/permissions.py +23 -0
  18. invenio_banners/services/results.py +124 -0
  19. invenio_banners/services/schemas.py +39 -0
  20. invenio_banners/services/service.py +170 -0
  21. invenio_banners/templates/semantic-ui/invenio_banners/banner.html +26 -0
  22. invenio_banners/translations/ar/LC_MESSAGES/messages.mo +0 -0
  23. invenio_banners/translations/ar/LC_MESSAGES/messages.po +193 -0
  24. invenio_banners/translations/bg/LC_MESSAGES/messages.mo +0 -0
  25. invenio_banners/translations/bg/LC_MESSAGES/messages.po +177 -0
  26. invenio_banners/translations/ca/LC_MESSAGES/messages.mo +0 -0
  27. invenio_banners/translations/ca/LC_MESSAGES/messages.po +178 -0
  28. invenio_banners/translations/cs/LC_MESSAGES/messages.mo +0 -0
  29. invenio_banners/translations/cs/LC_MESSAGES/messages.po +198 -0
  30. invenio_banners/translations/da/LC_MESSAGES/messages.mo +0 -0
  31. invenio_banners/translations/da/LC_MESSAGES/messages.po +173 -0
  32. invenio_banners/translations/de/LC_MESSAGES/messages.mo +0 -0
  33. invenio_banners/translations/de/LC_MESSAGES/messages.po +202 -0
  34. invenio_banners/translations/el/LC_MESSAGES/messages.mo +0 -0
  35. invenio_banners/translations/el/LC_MESSAGES/messages.po +178 -0
  36. invenio_banners/translations/es/LC_MESSAGES/messages.mo +0 -0
  37. invenio_banners/translations/es/LC_MESSAGES/messages.po +197 -0
  38. invenio_banners/translations/et/LC_MESSAGES/messages.mo +0 -0
  39. invenio_banners/translations/et/LC_MESSAGES/messages.po +177 -0
  40. invenio_banners/translations/fa/LC_MESSAGES/messages.mo +0 -0
  41. invenio_banners/translations/fa/LC_MESSAGES/messages.po +173 -0
  42. invenio_banners/translations/fi/LC_MESSAGES/messages.mo +0 -0
  43. invenio_banners/translations/fi/LC_MESSAGES/messages.po +194 -0
  44. invenio_banners/translations/fr/LC_MESSAGES/messages.mo +0 -0
  45. invenio_banners/translations/fr/LC_MESSAGES/messages.po +180 -0
  46. invenio_banners/translations/hr/LC_MESSAGES/messages.mo +0 -0
  47. invenio_banners/translations/hr/LC_MESSAGES/messages.po +177 -0
  48. invenio_banners/translations/hu/LC_MESSAGES/messages.mo +0 -0
  49. invenio_banners/translations/hu/LC_MESSAGES/messages.po +196 -0
  50. invenio_banners/translations/it/LC_MESSAGES/messages.mo +0 -0
  51. invenio_banners/translations/it/LC_MESSAGES/messages.po +179 -0
  52. invenio_banners/translations/ja/LC_MESSAGES/messages.mo +0 -0
  53. invenio_banners/translations/ja/LC_MESSAGES/messages.po +177 -0
  54. invenio_banners/translations/ka/LC_MESSAGES/messages.mo +0 -0
  55. invenio_banners/translations/ka/LC_MESSAGES/messages.po +177 -0
  56. invenio_banners/translations/ko/LC_MESSAGES/messages.mo +0 -0
  57. invenio_banners/translations/ko/LC_MESSAGES/messages.po +173 -0
  58. invenio_banners/translations/lt/LC_MESSAGES/messages.mo +0 -0
  59. invenio_banners/translations/lt/LC_MESSAGES/messages.po +177 -0
  60. invenio_banners/translations/messages.pot +174 -0
  61. invenio_banners/translations/no/LC_MESSAGES/messages.mo +0 -0
  62. invenio_banners/translations/no/LC_MESSAGES/messages.po +177 -0
  63. invenio_banners/translations/pl/LC_MESSAGES/messages.mo +0 -0
  64. invenio_banners/translations/pl/LC_MESSAGES/messages.po +177 -0
  65. invenio_banners/translations/pt/LC_MESSAGES/messages.mo +0 -0
  66. invenio_banners/translations/pt/LC_MESSAGES/messages.po +177 -0
  67. invenio_banners/translations/ro/LC_MESSAGES/messages.mo +0 -0
  68. invenio_banners/translations/ro/LC_MESSAGES/messages.po +179 -0
  69. invenio_banners/translations/ru/LC_MESSAGES/messages.mo +0 -0
  70. invenio_banners/translations/ru/LC_MESSAGES/messages.po +179 -0
  71. invenio_banners/translations/sk/LC_MESSAGES/messages.mo +0 -0
  72. invenio_banners/translations/sk/LC_MESSAGES/messages.po +178 -0
  73. invenio_banners/translations/sv/LC_MESSAGES/messages.mo +0 -0
  74. invenio_banners/translations/sv/LC_MESSAGES/messages.po +197 -0
  75. invenio_banners/translations/tr/LC_MESSAGES/messages.mo +0 -0
  76. invenio_banners/translations/tr/LC_MESSAGES/messages.po +196 -0
  77. invenio_banners/translations/uk/LC_MESSAGES/messages.mo +0 -0
  78. invenio_banners/translations/uk/LC_MESSAGES/messages.po +177 -0
  79. invenio_banners/translations/zh_CN/LC_MESSAGES/messages.mo +0 -0
  80. invenio_banners/translations/zh_CN/LC_MESSAGES/messages.po +179 -0
  81. invenio_banners/translations/zh_TW/LC_MESSAGES/messages.mo +0 -0
  82. invenio_banners/translations/zh_TW/LC_MESSAGES/messages.po +177 -0
  83. invenio_banners/utils.py +52 -0
  84. invenio_banners/views.py +14 -0
  85. invenio_banners-5.2.1.dist-info/METADATA +157 -0
  86. invenio_banners-5.2.1.dist-info/RECORD +91 -0
  87. invenio_banners-5.2.1.dist-info/WHEEL +6 -0
  88. invenio_banners-5.2.1.dist-info/entry_points.txt +23 -0
  89. invenio_banners-5.2.1.dist-info/licenses/AUTHORS.rst +12 -0
  90. invenio_banners-5.2.1.dist-info/licenses/LICENSE +21 -0
  91. invenio_banners-5.2.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,177 @@
1
+ # Translations template for invenio-banners.
2
+ # Copyright (C) 2025 CERN
3
+ # This file is distributed under the same license as the invenio-banners
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Tibor Simko <tibor.simko@cern.ch>, 2025
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: invenio-banners 5.0.0\n"
14
+ "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
15
+ "POT-Creation-Date: 2025-07-08 19:41+0000\n"
16
+ "PO-Revision-Date: 2023-06-30 09:38+0000\n"
17
+ "Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2025\n"
18
+ "Language-Team: Polish (https://app.transifex.com/inveniosoftware/teams/23537/pl/)\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Generated-By: Babel 2.17.0\n"
23
+ "Language: pl\n"
24
+ "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25
+
26
+ #: invenio_banners/config.py:16
27
+ msgid "Info"
28
+ msgstr ""
29
+
30
+ #: invenio_banners/config.py:17
31
+ msgid "Warning"
32
+ msgstr "Ostrzeżenie"
33
+
34
+ #: invenio_banners/config.py:18
35
+ msgid "Other"
36
+ msgstr ""
37
+
38
+ #: invenio_banners/administration/banners.py:43
39
+ #: invenio_banners/administration/banners.py:86
40
+ #: invenio_banners/administration/banners.py:178 invenio_banners/config.py:38
41
+ msgid "URL path"
42
+ msgstr ""
43
+
44
+ #: invenio_banners/config.py:42
45
+ msgid "Start DateTime"
46
+ msgstr ""
47
+
48
+ #: invenio_banners/config.py:46
49
+ msgid "End DateTime"
50
+ msgstr ""
51
+
52
+ #: invenio_banners/administration/banners.py:42
53
+ #: invenio_banners/administration/banners.py:113
54
+ #: invenio_banners/administration/banners.py:180 invenio_banners/config.py:50
55
+ #: invenio_banners/services/config.py:60
56
+ msgid "Active"
57
+ msgstr ""
58
+
59
+ #: invenio_banners/administration/banners.py:26
60
+ #: invenio_banners/administration/banners.py:27
61
+ msgid "Banners"
62
+ msgstr ""
63
+
64
+ #: invenio_banners/administration/banners.py:28
65
+ msgid "Site management"
66
+ msgstr ""
67
+
68
+ #: invenio_banners/administration/banners.py:38
69
+ msgid "Id"
70
+ msgstr "ID"
71
+
72
+ #: invenio_banners/administration/banners.py:39
73
+ msgid "Start time (UTC)"
74
+ msgstr ""
75
+
76
+ #: invenio_banners/administration/banners.py:40
77
+ msgid "End time (UTC)"
78
+ msgstr ""
79
+
80
+ #: invenio_banners/administration/banners.py:41
81
+ #: invenio_banners/administration/banners.py:78
82
+ #: invenio_banners/administration/banners.py:177
83
+ msgid "Message"
84
+ msgstr ""
85
+
86
+ #: invenio_banners/administration/banners.py:44
87
+ #: invenio_banners/administration/banners.py:98
88
+ #: invenio_banners/administration/banners.py:179
89
+ msgid "Category"
90
+ msgstr ""
91
+
92
+ #: invenio_banners/administration/banners.py:56
93
+ #: invenio_banners/administration/banners.py:175
94
+ #: invenio_banners/services/config.py:52
95
+ msgid "Start time"
96
+ msgstr ""
97
+
98
+ #: invenio_banners/administration/banners.py:58
99
+ msgid ""
100
+ "Date/time to make the banner active. Input format: yyyy-mm-dd hh:mm:ss. Set "
101
+ "to future date/time to delay the banner. Note: specify time in UTC time "
102
+ "standard."
103
+ msgstr ""
104
+
105
+ #: invenio_banners/administration/banners.py:63
106
+ #: invenio_banners/administration/banners.py:74
107
+ msgid "YYYY-MM-DD hh:mm:ss"
108
+ msgstr ""
109
+
110
+ #: invenio_banners/administration/banners.py:67
111
+ #: invenio_banners/administration/banners.py:176
112
+ #: invenio_banners/services/config.py:56
113
+ msgid "End time"
114
+ msgstr ""
115
+
116
+ #: invenio_banners/administration/banners.py:69
117
+ msgid ""
118
+ "Date/time to make the banner inactive. Input format: yyyy-mm-dd hh:mm:ss. "
119
+ "An empty value makes the banner active until manually disabled via the "
120
+ "active flag. Note: specify time in UTC time standard."
121
+ msgstr ""
122
+
123
+ #: invenio_banners/administration/banners.py:80
124
+ msgid "Message to be displayed on the banner. HTML format is supported."
125
+ msgstr ""
126
+
127
+ #: invenio_banners/administration/banners.py:88
128
+ msgid ""
129
+ "URL path prefix (including the first /) to define where the message will be "
130
+ "active on the site. For example, if you enter `/records`, any URL starting "
131
+ "with `/records` will return an active banner (`/records`, `/records/1234`, "
132
+ "etc.). An empty value makes the banner active for any URL."
133
+ msgstr ""
134
+
135
+ #: invenio_banners/administration/banners.py:100
136
+ msgid ""
137
+ "Banner category. `Info` option displays a blue banner. `Warning` option "
138
+ "displays an orange banner. `Other` option displays a gray banner."
139
+ msgstr ""
140
+
141
+ #: invenio_banners/administration/banners.py:115
142
+ msgid ""
143
+ "Tick it to activate the banner: banner will be displayed according to "
144
+ "start/end times. If not activated, start/end times will be ignored."
145
+ msgstr ""
146
+
147
+ #: invenio_banners/administration/banners.py:131
148
+ msgid "Edit Banner"
149
+ msgstr ""
150
+
151
+ #: invenio_banners/administration/banners.py:150
152
+ msgid "Create Banner"
153
+ msgstr ""
154
+
155
+ #: invenio_banners/administration/banners.py:166
156
+ msgid "Banner Details"
157
+ msgstr ""
158
+
159
+ #: invenio_banners/administration/banners.py:181
160
+ msgid "Created"
161
+ msgstr ""
162
+
163
+ #: invenio_banners/administration/banners.py:182
164
+ msgid "Updated"
165
+ msgstr ""
166
+
167
+ #: invenio_banners/services/config.py:36
168
+ msgid "Ascending"
169
+ msgstr ""
170
+
171
+ #: invenio_banners/services/config.py:40
172
+ msgid "Descending"
173
+ msgstr ""
174
+
175
+ #: invenio_banners/services/config.py:48
176
+ msgid "Url path"
177
+ msgstr ""
@@ -0,0 +1,177 @@
1
+ # Translations template for invenio-banners.
2
+ # Copyright (C) 2025 CERN
3
+ # This file is distributed under the same license as the invenio-banners
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Tibor Simko <tibor.simko@cern.ch>, 2025
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: invenio-banners 5.0.0\n"
14
+ "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
15
+ "POT-Creation-Date: 2025-07-08 19:41+0000\n"
16
+ "PO-Revision-Date: 2023-06-30 09:38+0000\n"
17
+ "Last-Translator: Tibor Simko <tibor.simko@cern.ch>, 2025\n"
18
+ "Language-Team: Portuguese (https://app.transifex.com/inveniosoftware/teams/23537/pt/)\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Generated-By: Babel 2.17.0\n"
23
+ "Language: pt\n"
24
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
25
+
26
+ #: invenio_banners/config.py:16
27
+ msgid "Info"
28
+ msgstr ""
29
+
30
+ #: invenio_banners/config.py:17
31
+ msgid "Warning"
32
+ msgstr "Aviso"
33
+
34
+ #: invenio_banners/config.py:18
35
+ msgid "Other"
36
+ msgstr ""
37
+
38
+ #: invenio_banners/administration/banners.py:43
39
+ #: invenio_banners/administration/banners.py:86
40
+ #: invenio_banners/administration/banners.py:178 invenio_banners/config.py:38
41
+ msgid "URL path"
42
+ msgstr ""
43
+
44
+ #: invenio_banners/config.py:42
45
+ msgid "Start DateTime"
46
+ msgstr ""
47
+
48
+ #: invenio_banners/config.py:46
49
+ msgid "End DateTime"
50
+ msgstr ""
51
+
52
+ #: invenio_banners/administration/banners.py:42
53
+ #: invenio_banners/administration/banners.py:113
54
+ #: invenio_banners/administration/banners.py:180 invenio_banners/config.py:50
55
+ #: invenio_banners/services/config.py:60
56
+ msgid "Active"
57
+ msgstr ""
58
+
59
+ #: invenio_banners/administration/banners.py:26
60
+ #: invenio_banners/administration/banners.py:27
61
+ msgid "Banners"
62
+ msgstr ""
63
+
64
+ #: invenio_banners/administration/banners.py:28
65
+ msgid "Site management"
66
+ msgstr ""
67
+
68
+ #: invenio_banners/administration/banners.py:38
69
+ msgid "Id"
70
+ msgstr "Id"
71
+
72
+ #: invenio_banners/administration/banners.py:39
73
+ msgid "Start time (UTC)"
74
+ msgstr ""
75
+
76
+ #: invenio_banners/administration/banners.py:40
77
+ msgid "End time (UTC)"
78
+ msgstr ""
79
+
80
+ #: invenio_banners/administration/banners.py:41
81
+ #: invenio_banners/administration/banners.py:78
82
+ #: invenio_banners/administration/banners.py:177
83
+ msgid "Message"
84
+ msgstr ""
85
+
86
+ #: invenio_banners/administration/banners.py:44
87
+ #: invenio_banners/administration/banners.py:98
88
+ #: invenio_banners/administration/banners.py:179
89
+ msgid "Category"
90
+ msgstr ""
91
+
92
+ #: invenio_banners/administration/banners.py:56
93
+ #: invenio_banners/administration/banners.py:175
94
+ #: invenio_banners/services/config.py:52
95
+ msgid "Start time"
96
+ msgstr ""
97
+
98
+ #: invenio_banners/administration/banners.py:58
99
+ msgid ""
100
+ "Date/time to make the banner active. Input format: yyyy-mm-dd hh:mm:ss. Set "
101
+ "to future date/time to delay the banner. Note: specify time in UTC time "
102
+ "standard."
103
+ msgstr ""
104
+
105
+ #: invenio_banners/administration/banners.py:63
106
+ #: invenio_banners/administration/banners.py:74
107
+ msgid "YYYY-MM-DD hh:mm:ss"
108
+ msgstr ""
109
+
110
+ #: invenio_banners/administration/banners.py:67
111
+ #: invenio_banners/administration/banners.py:176
112
+ #: invenio_banners/services/config.py:56
113
+ msgid "End time"
114
+ msgstr ""
115
+
116
+ #: invenio_banners/administration/banners.py:69
117
+ msgid ""
118
+ "Date/time to make the banner inactive. Input format: yyyy-mm-dd hh:mm:ss. "
119
+ "An empty value makes the banner active until manually disabled via the "
120
+ "active flag. Note: specify time in UTC time standard."
121
+ msgstr ""
122
+
123
+ #: invenio_banners/administration/banners.py:80
124
+ msgid "Message to be displayed on the banner. HTML format is supported."
125
+ msgstr ""
126
+
127
+ #: invenio_banners/administration/banners.py:88
128
+ msgid ""
129
+ "URL path prefix (including the first /) to define where the message will be "
130
+ "active on the site. For example, if you enter `/records`, any URL starting "
131
+ "with `/records` will return an active banner (`/records`, `/records/1234`, "
132
+ "etc.). An empty value makes the banner active for any URL."
133
+ msgstr ""
134
+
135
+ #: invenio_banners/administration/banners.py:100
136
+ msgid ""
137
+ "Banner category. `Info` option displays a blue banner. `Warning` option "
138
+ "displays an orange banner. `Other` option displays a gray banner."
139
+ msgstr ""
140
+
141
+ #: invenio_banners/administration/banners.py:115
142
+ msgid ""
143
+ "Tick it to activate the banner: banner will be displayed according to "
144
+ "start/end times. If not activated, start/end times will be ignored."
145
+ msgstr ""
146
+
147
+ #: invenio_banners/administration/banners.py:131
148
+ msgid "Edit Banner"
149
+ msgstr ""
150
+
151
+ #: invenio_banners/administration/banners.py:150
152
+ msgid "Create Banner"
153
+ msgstr ""
154
+
155
+ #: invenio_banners/administration/banners.py:166
156
+ msgid "Banner Details"
157
+ msgstr ""
158
+
159
+ #: invenio_banners/administration/banners.py:181
160
+ msgid "Created"
161
+ msgstr ""
162
+
163
+ #: invenio_banners/administration/banners.py:182
164
+ msgid "Updated"
165
+ msgstr ""
166
+
167
+ #: invenio_banners/services/config.py:36
168
+ msgid "Ascending"
169
+ msgstr ""
170
+
171
+ #: invenio_banners/services/config.py:40
172
+ msgid "Descending"
173
+ msgstr ""
174
+
175
+ #: invenio_banners/services/config.py:48
176
+ msgid "Url path"
177
+ msgstr ""
@@ -0,0 +1,179 @@
1
+ # Translations template for invenio-banners.
2
+ # Copyright (C) 2025 CERN
3
+ # This file is distributed under the same license as the invenio-banners
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Tibor Simko <tibor.simko@cern.ch>, 2023
9
+ # Corina Ionascu <icorina@nipne.ro>, 2023
10
+ # Nicolaie Constantinescu, 2025
11
+ #
12
+ #, fuzzy
13
+ msgid ""
14
+ msgstr ""
15
+ "Project-Id-Version: invenio-banners 5.0.0\n"
16
+ "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
17
+ "POT-Creation-Date: 2025-07-08 19:41+0000\n"
18
+ "PO-Revision-Date: 2023-06-30 09:38+0000\n"
19
+ "Last-Translator: Nicolaie Constantinescu, 2025\n"
20
+ "Language-Team: Romanian (https://app.transifex.com/inveniosoftware/teams/23537/ro/)\n"
21
+ "MIME-Version: 1.0\n"
22
+ "Content-Type: text/plain; charset=UTF-8\n"
23
+ "Content-Transfer-Encoding: 8bit\n"
24
+ "Generated-By: Babel 2.17.0\n"
25
+ "Language: ro\n"
26
+ "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
27
+
28
+ #: invenio_banners/config.py:16
29
+ msgid "Info"
30
+ msgstr ""
31
+
32
+ #: invenio_banners/config.py:17
33
+ msgid "Warning"
34
+ msgstr "Avertizare"
35
+
36
+ #: invenio_banners/config.py:18
37
+ msgid "Other"
38
+ msgstr "Alte"
39
+
40
+ #: invenio_banners/administration/banners.py:43
41
+ #: invenio_banners/administration/banners.py:86
42
+ #: invenio_banners/administration/banners.py:178 invenio_banners/config.py:38
43
+ msgid "URL path"
44
+ msgstr "Cale URL"
45
+
46
+ #: invenio_banners/config.py:42
47
+ msgid "Start DateTime"
48
+ msgstr "DateTime de pornire"
49
+
50
+ #: invenio_banners/config.py:46
51
+ msgid "End DateTime"
52
+ msgstr "DateTime de final"
53
+
54
+ #: invenio_banners/administration/banners.py:42
55
+ #: invenio_banners/administration/banners.py:113
56
+ #: invenio_banners/administration/banners.py:180 invenio_banners/config.py:50
57
+ #: invenio_banners/services/config.py:60
58
+ msgid "Active"
59
+ msgstr "Activ"
60
+
61
+ #: invenio_banners/administration/banners.py:26
62
+ #: invenio_banners/administration/banners.py:27
63
+ msgid "Banners"
64
+ msgstr ""
65
+
66
+ #: invenio_banners/administration/banners.py:28
67
+ msgid "Site management"
68
+ msgstr "Management site"
69
+
70
+ #: invenio_banners/administration/banners.py:38
71
+ msgid "Id"
72
+ msgstr "Id"
73
+
74
+ #: invenio_banners/administration/banners.py:39
75
+ msgid "Start time (UTC)"
76
+ msgstr "Momentul de start (UTC)"
77
+
78
+ #: invenio_banners/administration/banners.py:40
79
+ msgid "End time (UTC)"
80
+ msgstr "Momentul încheierii (UTC)"
81
+
82
+ #: invenio_banners/administration/banners.py:41
83
+ #: invenio_banners/administration/banners.py:78
84
+ #: invenio_banners/administration/banners.py:177
85
+ msgid "Message"
86
+ msgstr "Mesaj"
87
+
88
+ #: invenio_banners/administration/banners.py:44
89
+ #: invenio_banners/administration/banners.py:98
90
+ #: invenio_banners/administration/banners.py:179
91
+ msgid "Category"
92
+ msgstr "Categorie"
93
+
94
+ #: invenio_banners/administration/banners.py:56
95
+ #: invenio_banners/administration/banners.py:175
96
+ #: invenio_banners/services/config.py:52
97
+ msgid "Start time"
98
+ msgstr "Momentul startului"
99
+
100
+ #: invenio_banners/administration/banners.py:58
101
+ msgid ""
102
+ "Date/time to make the banner active. Input format: yyyy-mm-dd hh:mm:ss. Set "
103
+ "to future date/time to delay the banner. Note: specify time in UTC time "
104
+ "standard."
105
+ msgstr ""
106
+
107
+ #: invenio_banners/administration/banners.py:63
108
+ #: invenio_banners/administration/banners.py:74
109
+ msgid "YYYY-MM-DD hh:mm:ss"
110
+ msgstr "YYYY-MM-DD hh:mm:ss"
111
+
112
+ #: invenio_banners/administration/banners.py:67
113
+ #: invenio_banners/administration/banners.py:176
114
+ #: invenio_banners/services/config.py:56
115
+ msgid "End time"
116
+ msgstr "Momentul finalizării"
117
+
118
+ #: invenio_banners/administration/banners.py:69
119
+ msgid ""
120
+ "Date/time to make the banner inactive. Input format: yyyy-mm-dd hh:mm:ss. "
121
+ "An empty value makes the banner active until manually disabled via the "
122
+ "active flag. Note: specify time in UTC time standard."
123
+ msgstr ""
124
+
125
+ #: invenio_banners/administration/banners.py:80
126
+ msgid "Message to be displayed on the banner. HTML format is supported."
127
+ msgstr "Mesajul care va fi afișat pe banner. Este permis și cod HTML. "
128
+
129
+ #: invenio_banners/administration/banners.py:88
130
+ msgid ""
131
+ "URL path prefix (including the first /) to define where the message will be "
132
+ "active on the site. For example, if you enter `/records`, any URL starting "
133
+ "with `/records` will return an active banner (`/records`, `/records/1234`, "
134
+ "etc.). An empty value makes the banner active for any URL."
135
+ msgstr ""
136
+
137
+ #: invenio_banners/administration/banners.py:100
138
+ msgid ""
139
+ "Banner category. `Info` option displays a blue banner. `Warning` option "
140
+ "displays an orange banner. `Other` option displays a gray banner."
141
+ msgstr ""
142
+
143
+ #: invenio_banners/administration/banners.py:115
144
+ msgid ""
145
+ "Tick it to activate the banner: banner will be displayed according to "
146
+ "start/end times. If not activated, start/end times will be ignored."
147
+ msgstr ""
148
+
149
+ #: invenio_banners/administration/banners.py:131
150
+ msgid "Edit Banner"
151
+ msgstr ""
152
+
153
+ #: invenio_banners/administration/banners.py:150
154
+ msgid "Create Banner"
155
+ msgstr ""
156
+
157
+ #: invenio_banners/administration/banners.py:166
158
+ msgid "Banner Details"
159
+ msgstr ""
160
+
161
+ #: invenio_banners/administration/banners.py:181
162
+ msgid "Created"
163
+ msgstr "Creat"
164
+
165
+ #: invenio_banners/administration/banners.py:182
166
+ msgid "Updated"
167
+ msgstr "Actualizat"
168
+
169
+ #: invenio_banners/services/config.py:36
170
+ msgid "Ascending"
171
+ msgstr "Crescător"
172
+
173
+ #: invenio_banners/services/config.py:40
174
+ msgid "Descending"
175
+ msgstr "Descrescător"
176
+
177
+ #: invenio_banners/services/config.py:48
178
+ msgid "Url path"
179
+ msgstr "Cale URL"