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: Japanese (https://app.transifex.com/inveniosoftware/teams/23537/ja/)\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: ja\n"
24
+ "Plural-Forms: nplurals=1; plural=0;\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 "警告"
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: Georgian (https://app.transifex.com/inveniosoftware/teams/23537/ka/)\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: ka\n"
24
+ "Plural-Forms: nplurals=2; plural=(n!=1);\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 "გაფრთხილება"
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 "საიდენტიფიკაციო"
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,173 @@
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
+ #, fuzzy
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: invenio-banners 5.0.0\n"
11
+ "Report-Msgid-Bugs-To: info@inveniosoftware.org\n"
12
+ "POT-Creation-Date: 2025-07-08 19:41+0000\n"
13
+ "PO-Revision-Date: 2023-06-30 09:38+0000\n"
14
+ "Language-Team: Korean (https://app.transifex.com/inveniosoftware/teams/23537/ko/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Generated-By: Babel 2.17.0\n"
19
+ "Language: ko\n"
20
+ "Plural-Forms: nplurals=1; plural=0;\n"
21
+
22
+ #: invenio_banners/config.py:16
23
+ msgid "Info"
24
+ msgstr ""
25
+
26
+ #: invenio_banners/config.py:17
27
+ msgid "Warning"
28
+ msgstr ""
29
+
30
+ #: invenio_banners/config.py:18
31
+ msgid "Other"
32
+ msgstr ""
33
+
34
+ #: invenio_banners/administration/banners.py:43
35
+ #: invenio_banners/administration/banners.py:86
36
+ #: invenio_banners/administration/banners.py:178 invenio_banners/config.py:38
37
+ msgid "URL path"
38
+ msgstr ""
39
+
40
+ #: invenio_banners/config.py:42
41
+ msgid "Start DateTime"
42
+ msgstr ""
43
+
44
+ #: invenio_banners/config.py:46
45
+ msgid "End DateTime"
46
+ msgstr ""
47
+
48
+ #: invenio_banners/administration/banners.py:42
49
+ #: invenio_banners/administration/banners.py:113
50
+ #: invenio_banners/administration/banners.py:180 invenio_banners/config.py:50
51
+ #: invenio_banners/services/config.py:60
52
+ msgid "Active"
53
+ msgstr ""
54
+
55
+ #: invenio_banners/administration/banners.py:26
56
+ #: invenio_banners/administration/banners.py:27
57
+ msgid "Banners"
58
+ msgstr ""
59
+
60
+ #: invenio_banners/administration/banners.py:28
61
+ msgid "Site management"
62
+ msgstr ""
63
+
64
+ #: invenio_banners/administration/banners.py:38
65
+ msgid "Id"
66
+ msgstr ""
67
+
68
+ #: invenio_banners/administration/banners.py:39
69
+ msgid "Start time (UTC)"
70
+ msgstr ""
71
+
72
+ #: invenio_banners/administration/banners.py:40
73
+ msgid "End time (UTC)"
74
+ msgstr ""
75
+
76
+ #: invenio_banners/administration/banners.py:41
77
+ #: invenio_banners/administration/banners.py:78
78
+ #: invenio_banners/administration/banners.py:177
79
+ msgid "Message"
80
+ msgstr ""
81
+
82
+ #: invenio_banners/administration/banners.py:44
83
+ #: invenio_banners/administration/banners.py:98
84
+ #: invenio_banners/administration/banners.py:179
85
+ msgid "Category"
86
+ msgstr ""
87
+
88
+ #: invenio_banners/administration/banners.py:56
89
+ #: invenio_banners/administration/banners.py:175
90
+ #: invenio_banners/services/config.py:52
91
+ msgid "Start time"
92
+ msgstr ""
93
+
94
+ #: invenio_banners/administration/banners.py:58
95
+ msgid ""
96
+ "Date/time to make the banner active. Input format: yyyy-mm-dd hh:mm:ss. Set "
97
+ "to future date/time to delay the banner. Note: specify time in UTC time "
98
+ "standard."
99
+ msgstr ""
100
+
101
+ #: invenio_banners/administration/banners.py:63
102
+ #: invenio_banners/administration/banners.py:74
103
+ msgid "YYYY-MM-DD hh:mm:ss"
104
+ msgstr ""
105
+
106
+ #: invenio_banners/administration/banners.py:67
107
+ #: invenio_banners/administration/banners.py:176
108
+ #: invenio_banners/services/config.py:56
109
+ msgid "End time"
110
+ msgstr ""
111
+
112
+ #: invenio_banners/administration/banners.py:69
113
+ msgid ""
114
+ "Date/time to make the banner inactive. Input format: yyyy-mm-dd hh:mm:ss. "
115
+ "An empty value makes the banner active until manually disabled via the "
116
+ "active flag. Note: specify time in UTC time standard."
117
+ msgstr ""
118
+
119
+ #: invenio_banners/administration/banners.py:80
120
+ msgid "Message to be displayed on the banner. HTML format is supported."
121
+ msgstr ""
122
+
123
+ #: invenio_banners/administration/banners.py:88
124
+ msgid ""
125
+ "URL path prefix (including the first /) to define where the message will be "
126
+ "active on the site. For example, if you enter `/records`, any URL starting "
127
+ "with `/records` will return an active banner (`/records`, `/records/1234`, "
128
+ "etc.). An empty value makes the banner active for any URL."
129
+ msgstr ""
130
+
131
+ #: invenio_banners/administration/banners.py:100
132
+ msgid ""
133
+ "Banner category. `Info` option displays a blue banner. `Warning` option "
134
+ "displays an orange banner. `Other` option displays a gray banner."
135
+ msgstr ""
136
+
137
+ #: invenio_banners/administration/banners.py:115
138
+ msgid ""
139
+ "Tick it to activate the banner: banner will be displayed according to "
140
+ "start/end times. If not activated, start/end times will be ignored."
141
+ msgstr ""
142
+
143
+ #: invenio_banners/administration/banners.py:131
144
+ msgid "Edit Banner"
145
+ msgstr ""
146
+
147
+ #: invenio_banners/administration/banners.py:150
148
+ msgid "Create Banner"
149
+ msgstr ""
150
+
151
+ #: invenio_banners/administration/banners.py:166
152
+ msgid "Banner Details"
153
+ msgstr ""
154
+
155
+ #: invenio_banners/administration/banners.py:181
156
+ msgid "Created"
157
+ msgstr ""
158
+
159
+ #: invenio_banners/administration/banners.py:182
160
+ msgid "Updated"
161
+ msgstr ""
162
+
163
+ #: invenio_banners/services/config.py:36
164
+ msgid "Ascending"
165
+ msgstr ""
166
+
167
+ #: invenio_banners/services/config.py:40
168
+ msgid "Descending"
169
+ msgstr ""
170
+
171
+ #: invenio_banners/services/config.py:48
172
+ msgid "Url path"
173
+ msgstr ""