wagtail 6.0.1__py3-none-any.whl → 6.0.3__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 (199) hide show
  1. wagtail/__init__.py +1 -1
  2. wagtail/admin/locale/ca/LC_MESSAGES/django.mo +0 -0
  3. wagtail/admin/locale/ca/LC_MESSAGES/django.po +122 -0
  4. wagtail/admin/locale/es/LC_MESSAGES/django.mo +0 -0
  5. wagtail/admin/locale/es/LC_MESSAGES/django.po +6 -6
  6. wagtail/admin/locale/fr/LC_MESSAGES/django.mo +0 -0
  7. wagtail/admin/locale/fr/LC_MESSAGES/django.po +70 -3
  8. wagtail/admin/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  9. wagtail/admin/locale/he_IL/LC_MESSAGES/django.po +2 -6
  10. wagtail/admin/locale/he_IL/LC_MESSAGES/djangojs.mo +0 -0
  11. wagtail/admin/locale/he_IL/LC_MESSAGES/djangojs.po +2 -2
  12. wagtail/admin/locale/hr_HR/LC_MESSAGES/django.mo +0 -0
  13. wagtail/admin/locale/hr_HR/LC_MESSAGES/django.po +4 -0
  14. wagtail/admin/locale/hu/LC_MESSAGES/django.mo +0 -0
  15. wagtail/admin/locale/hu/LC_MESSAGES/django.po +142 -2
  16. wagtail/admin/locale/it/LC_MESSAGES/django.mo +0 -0
  17. wagtail/admin/locale/it/LC_MESSAGES/django.po +80 -8
  18. wagtail/admin/locale/it/LC_MESSAGES/djangojs.mo +0 -0
  19. wagtail/admin/locale/it/LC_MESSAGES/djangojs.po +14 -2
  20. wagtail/admin/locale/lv/LC_MESSAGES/django.mo +0 -0
  21. wagtail/admin/locale/lv/LC_MESSAGES/django.po +154 -1
  22. wagtail/admin/locale/sl/LC_MESSAGES/django.mo +0 -0
  23. wagtail/admin/locale/sl/LC_MESSAGES/django.po +145 -2
  24. wagtail/admin/locale/sv/LC_MESSAGES/django.mo +0 -0
  25. wagtail/admin/locale/sv/LC_MESSAGES/django.po +77 -3
  26. wagtail/admin/locale/zh_Hant/LC_MESSAGES/django.mo +0 -0
  27. wagtail/admin/locale/zh_Hant/LC_MESSAGES/django.po +17 -1
  28. wagtail/admin/static/wagtailadmin/css/core.css +1 -1
  29. wagtail/admin/static/wagtailadmin/js/core.js +1 -1
  30. wagtail/admin/static/wagtailadmin/js/vendor.js +1 -1
  31. wagtail/admin/templates/wagtailadmin/admin_base.html +1 -0
  32. wagtail/admin/templates/wagtailadmin/collections/edit.html +0 -1
  33. wagtail/admin/templates/wagtailadmin/generic/form.html +1 -0
  34. wagtail/admin/templates/wagtailadmin/generic/index_results.html +8 -0
  35. wagtail/admin/templates/wagtailadmin/home/workflow_objects_to_moderate.html +0 -1
  36. wagtail/admin/templates/wagtailadmin/pages/_editor_js.html +0 -1
  37. wagtail/admin/templates/wagtailadmin/pages/index.html +0 -2
  38. wagtail/admin/templates/wagtailadmin/shared/headers/slim_header.html +1 -1
  39. wagtail/admin/tests/api/test_pages.py +26 -10
  40. wagtail/admin/tests/pages/test_page_search.py +39 -0
  41. wagtail/admin/tests/viewsets/test_model_viewset.py +45 -10
  42. wagtail/admin/views/generic/base.py +3 -0
  43. wagtail/admin/views/generic/models.py +27 -10
  44. wagtail/admin/views/pages/search.py +1 -0
  45. wagtail/admin/widgets/button.py +1 -2
  46. wagtail/contrib/forms/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  47. wagtail/contrib/forms/locale/he_IL/LC_MESSAGES/django.po +2 -2
  48. wagtail/contrib/redirects/locale/fr/LC_MESSAGES/django.po +2 -2
  49. wagtail/contrib/redirects/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  50. wagtail/contrib/redirects/locale/he_IL/LC_MESSAGES/django.po +2 -2
  51. wagtail/contrib/search_promotions/locale/fr/LC_MESSAGES/django.po +2 -2
  52. wagtail/contrib/search_promotions/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  53. wagtail/contrib/search_promotions/locale/he_IL/LC_MESSAGES/django.po +2 -2
  54. wagtail/contrib/search_promotions/locale/hr_HR/LC_MESSAGES/django.mo +0 -0
  55. wagtail/contrib/search_promotions/locale/hr_HR/LC_MESSAGES/django.po +41 -2
  56. wagtail/contrib/search_promotions/locale/it/LC_MESSAGES/django.mo +0 -0
  57. wagtail/contrib/search_promotions/locale/it/LC_MESSAGES/django.po +9 -3
  58. wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  59. wagtail/contrib/settings/locale/he_IL/LC_MESSAGES/django.po +2 -2
  60. wagtail/contrib/settings/locale/tr/LC_MESSAGES/django.mo +0 -0
  61. wagtail/contrib/settings/locale/tr/LC_MESSAGES/django.po +6 -2
  62. wagtail/contrib/settings/tests/generic/test_admin.py +88 -1
  63. wagtail/contrib/settings/tests/site_specific/test_admin.py +92 -3
  64. wagtail/contrib/styleguide/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  65. wagtail/contrib/styleguide/locale/he_IL/LC_MESSAGES/django.po +2 -2
  66. wagtail/contrib/styleguide/tests.py +8 -0
  67. wagtail/contrib/styleguide/views.py +1 -1
  68. wagtail/contrib/table_block/blocks.py +1 -1
  69. wagtail/contrib/table_block/locale/ca/LC_MESSAGES/django.mo +0 -0
  70. wagtail/contrib/table_block/locale/ca/LC_MESSAGES/django.po +27 -2
  71. wagtail/contrib/table_block/locale/hu/LC_MESSAGES/django.mo +0 -0
  72. wagtail/contrib/table_block/locale/hu/LC_MESSAGES/django.po +27 -2
  73. wagtail/contrib/table_block/locale/it/LC_MESSAGES/django.mo +0 -0
  74. wagtail/contrib/table_block/locale/it/LC_MESSAGES/django.po +27 -2
  75. wagtail/contrib/table_block/tests.py +6 -0
  76. wagtail/contrib/typed_table_block/locale/ca/LC_MESSAGES/django.mo +0 -0
  77. wagtail/contrib/typed_table_block/locale/ca/LC_MESSAGES/django.po +12 -2
  78. wagtail/contrib/typed_table_block/locale/hu/LC_MESSAGES/django.mo +0 -0
  79. wagtail/contrib/typed_table_block/locale/hu/LC_MESSAGES/django.po +12 -2
  80. wagtail/contrib/typed_table_block/locale/it/LC_MESSAGES/django.mo +0 -0
  81. wagtail/contrib/typed_table_block/locale/it/LC_MESSAGES/django.po +12 -2
  82. wagtail/documents/locale/fr/LC_MESSAGES/django.po +2 -2
  83. wagtail/documents/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  84. wagtail/documents/locale/he_IL/LC_MESSAGES/django.po +2 -2
  85. wagtail/documents/locale/hr_HR/LC_MESSAGES/django.mo +0 -0
  86. wagtail/documents/locale/hr_HR/LC_MESSAGES/django.po +19 -2
  87. wagtail/documents/locale/hu/LC_MESSAGES/django.mo +0 -0
  88. wagtail/documents/locale/hu/LC_MESSAGES/django.po +16 -2
  89. wagtail/documents/locale/it/LC_MESSAGES/django.mo +0 -0
  90. wagtail/documents/locale/it/LC_MESSAGES/django.po +19 -2
  91. wagtail/embeds/locale/fr/LC_MESSAGES/django.po +2 -2
  92. wagtail/embeds/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  93. wagtail/embeds/locale/he_IL/LC_MESSAGES/django.po +2 -2
  94. wagtail/images/locale/ca/LC_MESSAGES/django.mo +0 -0
  95. wagtail/images/locale/ca/LC_MESSAGES/django.po +12 -0
  96. wagtail/images/locale/fr/LC_MESSAGES/django.po +2 -2
  97. wagtail/images/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  98. wagtail/images/locale/he_IL/LC_MESSAGES/django.po +2 -2
  99. wagtail/images/locale/hu/LC_MESSAGES/django.mo +0 -0
  100. wagtail/images/locale/hu/LC_MESSAGES/django.po +28 -2
  101. wagtail/images/locale/it/LC_MESSAGES/django.mo +0 -0
  102. wagtail/images/locale/it/LC_MESSAGES/django.po +14 -2
  103. wagtail/locale/es/LC_MESSAGES/django.mo +0 -0
  104. wagtail/locale/es/LC_MESSAGES/django.po +3 -2
  105. wagtail/locale/fr/LC_MESSAGES/django.po +2 -2
  106. wagtail/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  107. wagtail/locale/he_IL/LC_MESSAGES/django.po +2 -2
  108. wagtail/locale/it/LC_MESSAGES/django.mo +0 -0
  109. wagtail/locale/it/LC_MESSAGES/django.po +5 -5
  110. wagtail/locale/sl/LC_MESSAGES/django.mo +0 -0
  111. wagtail/locale/sl/LC_MESSAGES/django.po +27 -2
  112. wagtail/locales/locale/ar/LC_MESSAGES/django.po +1 -1
  113. wagtail/locales/locale/be/LC_MESSAGES/django.po +1 -1
  114. wagtail/locales/locale/bg/LC_MESSAGES/django.po +1 -1
  115. wagtail/locales/locale/ca/LC_MESSAGES/django.po +1 -1
  116. wagtail/locales/locale/cs/LC_MESSAGES/django.po +1 -1
  117. wagtail/locales/locale/cy/LC_MESSAGES/django.po +1 -1
  118. wagtail/locales/locale/da/LC_MESSAGES/django.po +1 -1
  119. wagtail/locales/locale/de/LC_MESSAGES/django.po +1 -1
  120. wagtail/locales/locale/el/LC_MESSAGES/django.po +1 -1
  121. wagtail/locales/locale/es/LC_MESSAGES/django.po +1 -1
  122. wagtail/locales/locale/et/LC_MESSAGES/django.po +2 -2
  123. wagtail/locales/locale/fa/LC_MESSAGES/django.po +1 -1
  124. wagtail/locales/locale/fi/LC_MESSAGES/django.po +1 -1
  125. wagtail/locales/locale/fr/LC_MESSAGES/django.po +1 -1
  126. wagtail/locales/locale/gl/LC_MESSAGES/django.po +1 -1
  127. wagtail/locales/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  128. wagtail/locales/locale/he_IL/LC_MESSAGES/django.po +3 -3
  129. wagtail/locales/locale/hr_HR/LC_MESSAGES/django.po +1 -1
  130. wagtail/locales/locale/hu/LC_MESSAGES/django.po +1 -1
  131. wagtail/locales/locale/id_ID/LC_MESSAGES/django.po +1 -1
  132. wagtail/locales/locale/is_IS/LC_MESSAGES/django.po +1 -1
  133. wagtail/locales/locale/it/LC_MESSAGES/django.po +1 -1
  134. wagtail/locales/locale/ja/LC_MESSAGES/django.po +1 -1
  135. wagtail/locales/locale/ko/LC_MESSAGES/django.po +1 -1
  136. wagtail/locales/locale/lt/LC_MESSAGES/django.po +1 -1
  137. wagtail/locales/locale/lv/LC_MESSAGES/django.po +1 -1
  138. wagtail/locales/locale/mi/LC_MESSAGES/django.po +1 -1
  139. wagtail/locales/locale/mn/LC_MESSAGES/django.po +1 -1
  140. wagtail/locales/locale/my/LC_MESSAGES/django.po +1 -1
  141. wagtail/locales/locale/nb/LC_MESSAGES/django.po +1 -1
  142. wagtail/locales/locale/nl/LC_MESSAGES/django.po +1 -1
  143. wagtail/locales/locale/pl/LC_MESSAGES/django.po +1 -1
  144. wagtail/locales/locale/pt_BR/LC_MESSAGES/django.po +1 -1
  145. wagtail/locales/locale/pt_PT/LC_MESSAGES/django.po +1 -1
  146. wagtail/locales/locale/ro/LC_MESSAGES/django.po +1 -1
  147. wagtail/locales/locale/ru/LC_MESSAGES/django.po +1 -1
  148. wagtail/locales/locale/sk_SK/LC_MESSAGES/django.po +1 -1
  149. wagtail/locales/locale/sl/LC_MESSAGES/django.po +1 -1
  150. wagtail/locales/locale/sv/LC_MESSAGES/django.po +1 -1
  151. wagtail/locales/locale/tet/LC_MESSAGES/django.po +1 -1
  152. wagtail/locales/locale/th/LC_MESSAGES/django.po +1 -1
  153. wagtail/locales/locale/tr/LC_MESSAGES/django.po +1 -1
  154. wagtail/locales/locale/tr_TR/LC_MESSAGES/django.po +1 -1
  155. wagtail/locales/locale/uk/LC_MESSAGES/django.po +1 -1
  156. wagtail/locales/locale/vi/LC_MESSAGES/django.po +1 -1
  157. wagtail/locales/locale/zh/LC_MESSAGES/django.po +1 -1
  158. wagtail/locales/locale/zh_Hans/LC_MESSAGES/django.po +1 -1
  159. wagtail/locales/locale/zh_Hant/LC_MESSAGES/django.po +1 -1
  160. wagtail/management/commands/convert_mariadb_uuids.py +43 -0
  161. wagtail/sites/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  162. wagtail/sites/locale/he_IL/LC_MESSAGES/django.po +2 -2
  163. wagtail/sites/locale/ro/LC_MESSAGES/django.mo +0 -0
  164. wagtail/sites/locale/ro/LC_MESSAGES/django.po +3 -2
  165. wagtail/sites/templates/wagtailsites/create.html +0 -1
  166. wagtail/sites/templates/wagtailsites/edit.html +0 -1
  167. wagtail/snippets/locale/de/LC_MESSAGES/django.mo +0 -0
  168. wagtail/snippets/locale/de/LC_MESSAGES/django.po +2 -2
  169. wagtail/snippets/locale/fr/LC_MESSAGES/django.po +2 -2
  170. wagtail/snippets/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  171. wagtail/snippets/locale/he_IL/LC_MESSAGES/django.po +2 -2
  172. wagtail/snippets/locale/hr_HR/LC_MESSAGES/django.mo +0 -0
  173. wagtail/snippets/locale/hr_HR/LC_MESSAGES/django.po +6 -2
  174. wagtail/snippets/locale/lv/LC_MESSAGES/django.mo +0 -0
  175. wagtail/snippets/locale/lv/LC_MESSAGES/django.po +12 -0
  176. wagtail/snippets/locale/zh_Hant/LC_MESSAGES/django.mo +0 -0
  177. wagtail/snippets/locale/zh_Hant/LC_MESSAGES/django.po +4 -0
  178. wagtail/snippets/templates/wagtailsnippets/snippets/create.html +1 -2
  179. wagtail/snippets/templates/wagtailsnippets/snippets/edit.html +1 -2
  180. wagtail/snippets/tests/test_viewset.py +32 -0
  181. wagtail/snippets/views/snippets.py +0 -19
  182. wagtail/test/testapp/migrations/0034_testpermissionedgenericsetting_and_more.py +42 -0
  183. wagtail/test/testapp/models.py +46 -0
  184. wagtail/test/testapp/views.py +1 -1
  185. wagtail/users/locale/fr/LC_MESSAGES/django.po +2 -2
  186. wagtail/users/locale/he_IL/LC_MESSAGES/django.mo +0 -0
  187. wagtail/users/locale/he_IL/LC_MESSAGES/django.po +2 -2
  188. wagtail/users/locale/hr_HR/LC_MESSAGES/django.mo +0 -0
  189. wagtail/users/locale/hr_HR/LC_MESSAGES/django.po +13 -2
  190. wagtail/users/templates/wagtailusers/groups/includes/group_form_js.html +0 -1
  191. wagtail/users/templates/wagtailusers/users/create.html +0 -5
  192. wagtail/users/templates/wagtailusers/users/edit.html +0 -5
  193. wagtail/users/tests/test_admin_views.py +7 -1
  194. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/METADATA +2 -2
  195. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/RECORD +199 -197
  196. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/LICENSE +0 -0
  197. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/WHEEL +0 -0
  198. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/entry_points.txt +0 -0
  199. {wagtail-6.0.1.dist-info → wagtail-6.0.3.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,7 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
- # Erlend <debcf78e@opayq.com>, 2021
7
+ # Erlend Eelmets <debcf78e@opayq.com>, 2021
8
8
  # Martin <martinpajuste@gmail.com>, 2023
9
9
  #
10
10
  #, fuzzy
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Martin <martinpajuste@gmail.com>, 2023\n"
18
18
  "Language-Team: Estonian (https://app.transifex.com/torchbox/teams/8009/et/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: pyzenberg <pyzenberg@gmail.com>, 2021\n"
17
17
  "Language-Team: Persian (https://app.transifex.com/torchbox/teams/8009/fa/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Finnish (https://app.transifex.com/torchbox/teams/8009/fi/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Loic Teixeira, 2022\n"
17
17
  "Language-Team: French (https://app.transifex.com/torchbox/teams/8009/fr/)\n"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Galician (https://app.transifex.com/torchbox/teams/8009/gl/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Adi Ron <adi@bnop.co>, 2021\n"
17
17
  "Language-Team: Hebrew (Israel) (https://app.transifex.com/torchbox/"
@@ -20,8 +20,8 @@ msgstr ""
20
20
  "Content-Type: text/plain; charset=UTF-8\n"
21
21
  "Content-Transfer-Encoding: 8bit\n"
22
22
  "Language: he_IL\n"
23
- "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
24
- "1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
23
+ "Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
24
+ "1 == 0) ? 1: 2;\n"
25
25
 
26
26
  msgid "Yes, delete"
27
27
  msgstr "כן, מחק"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Croatian (Croatia) (https://app.transifex.com/torchbox/"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Hungarian (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: M. Febrian Ramadhana <febrian@ramadhana.me>, 2021\n"
17
17
  "Language-Team: Indonesian (Indonesia) (https://app.transifex.com/torchbox/"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Icelandic (Iceland) (https://app.transifex.com/torchbox/"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Italian (https://app.transifex.com/torchbox/teams/8009/it/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: 小口英昭 <oguchi@bluff-lab.com>, 2021\n"
18
18
  "Language-Team: Japanese (https://app.transifex.com/torchbox/teams/8009/ja/)\n"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Korean (https://app.transifex.com/torchbox/teams/8009/ko/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Lithuanian (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Maris Serzans <maris.serzans@gmail.com>, 2021\n"
17
17
  "Language-Team: Latvian (https://app.transifex.com/torchbox/teams/8009/lv/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Maori (https://app.transifex.com/torchbox/teams/8009/mi/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Myagmarjav Enkhbileg <miigaa.lucky@gmail.com>, 2021\n"
17
17
  "Language-Team: Mongolian (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: ime11 <pmh.yourworstnightmare@gmail.com>, 2021\n"
17
17
  "Language-Team: Burmese (https://app.transifex.com/torchbox/teams/8009/my/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Stein Strindhaug <stein.strindhaug@gmail.com>, 2021\n"
17
17
  "Language-Team: Norwegian Bokmål (https://app.transifex.com/torchbox/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Loic Teixeira, 2022\n"
17
17
  "Language-Team: Dutch (https://app.transifex.com/torchbox/teams/8009/nl/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Polish (https://app.transifex.com/torchbox/teams/8009/pl/)\n"
@@ -14,7 +14,7 @@ msgid ""
14
14
  msgstr ""
15
15
  "Project-Id-Version: PACKAGE VERSION\n"
16
16
  "Report-Msgid-Bugs-To: \n"
17
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
17
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
18
18
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
19
19
  "Last-Translator: Loic Teixeira, 2022\n"
20
20
  "Language-Team: Portuguese (Brazil) (https://app.transifex.com/torchbox/"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Portuguese (Portugal) (https://app.transifex.com/torchbox/"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Romanian (https://app.transifex.com/torchbox/teams/8009/ro/)\n"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Russian (https://app.transifex.com/torchbox/teams/8009/ru/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Martin Janšto <mato@jansto.sk>, 2021\n"
17
17
  "Language-Team: Slovak (Slovakia) (https://app.transifex.com/torchbox/"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Andrej Marsetič, 2022\n"
19
19
  "Language-Team: Slovenian (https://app.transifex.com/torchbox/teams/8009/"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Loic Teixeira, 2022\n"
18
18
  "Language-Team: Swedish (https://app.transifex.com/torchbox/teams/8009/sv/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Mariano de Deus <dedeus_mariano@yahoo.com>, 2021\n"
18
18
  "Language-Team: Tetum (Tetun) (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Walaksawan Vervoort <nula_wala@yahoo.com>, 2021\n"
17
17
  "Language-Team: Thai (https://app.transifex.com/torchbox/teams/8009/th/)\n"
@@ -12,7 +12,7 @@ msgid ""
12
12
  msgstr ""
13
13
  "Project-Id-Version: PACKAGE VERSION\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
15
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
16
16
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
17
17
  "Last-Translator: Py Data Geek <pydatageek@gmail.com>, 2021\n"
18
18
  "Language-Team: Turkish (https://app.transifex.com/torchbox/teams/8009/tr/)\n"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Py Data Geek <pydatageek@gmail.com>, 2021\n"
17
17
  "Language-Team: Turkish (Turkey) (https://app.transifex.com/torchbox/"
@@ -14,7 +14,7 @@ msgid ""
14
14
  msgstr ""
15
15
  "Project-Id-Version: PACKAGE VERSION\n"
16
16
  "Report-Msgid-Bugs-To: \n"
17
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
17
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
18
18
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
19
19
  "Last-Translator: Loic Teixeira, 2022\n"
20
20
  "Language-Team: Ukrainian (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Luan Nguyen <lihavim@gmail.com>, 2021\n"
17
17
  "Language-Team: Vietnamese (https://app.transifex.com/torchbox/teams/8009/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Orangle Liu <orangleliu@gmail.com>, 2021\n"
17
17
  "Language-Team: Chinese (https://app.transifex.com/torchbox/teams/8009/zh/)\n"
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: PACKAGE VERSION\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
16
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
17
17
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
18
18
  "Last-Translator: Loic Teixeira, 2022\n"
19
19
  "Language-Team: Chinese (China) (https://app.transifex.com/torchbox/"
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: PACKAGE VERSION\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2023-10-19 23:14+0100\n"
14
+ "POT-Creation-Date: 2024-01-24 13:51+0000\n"
15
15
  "PO-Revision-Date: 2020-10-23 10:41+0000\n"
16
16
  "Last-Translator: Chih Wang <ihcgno@icloud.com>, 2021\n"
17
17
  "Language-Team: Chinese Traditional (https://app.transifex.com/torchbox/"
@@ -0,0 +1,43 @@
1
+ from django.apps import apps
2
+ from django.core.management.base import BaseCommand
3
+ from django.db import connection, models
4
+
5
+ from wagtail.models import (
6
+ BaseLogEntry,
7
+ BootstrapTranslatableMixin,
8
+ ReferenceIndex,
9
+ TranslatableMixin,
10
+ )
11
+
12
+
13
+ class Command(BaseCommand):
14
+ help = "Converts UUID columns from char type to the native UUID type used in MariaDB 10.7+ and Django 5.0+."
15
+
16
+ def convert_field(self, model, field_name, null=False):
17
+ if model._meta.get_field(field_name).model != model:
18
+ # Field is inherited from a parent model
19
+ return
20
+
21
+ if not model._meta.managed:
22
+ # The migration framework skips unmanaged models, so we should too
23
+ return
24
+
25
+ old_field = models.CharField(null=null, max_length=36)
26
+ old_field.set_attributes_from_name(field_name)
27
+
28
+ new_field = models.UUIDField(null=null)
29
+ new_field.set_attributes_from_name(field_name)
30
+
31
+ with connection.schema_editor() as schema_editor:
32
+ schema_editor.alter_field(model, old_field, new_field)
33
+
34
+ def handle(self, **options):
35
+ self.convert_field(ReferenceIndex, "content_path_hash")
36
+
37
+ for model in apps.get_models():
38
+ if issubclass(model, BaseLogEntry):
39
+ self.convert_field(model, "uuid", null=True)
40
+ elif issubclass(model, BootstrapTranslatableMixin):
41
+ self.convert_field(model, "translation_key", null=True)
42
+ elif issubclass(model, TranslatableMixin):
43
+ self.convert_field(model, "translation_key")
@@ -17,8 +17,8 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Language: he_IL\n"
20
- "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
21
- "1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
20
+ "Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
21
+ "1 == 0) ? 1: 2;\n"
22
22
 
23
23
  msgid "Choose a root page"
24
24
  msgstr "בחרו עמוד מקור"
@@ -4,13 +4,14 @@
4
4
  #
5
5
  # Translators:
6
6
  # Dan Braghis, 2014-2016,2019
7
+ # Madalin Popa, 2024
7
8
  msgid ""
8
9
  msgstr ""
9
10
  "Project-Id-Version: Wagtail\n"
10
11
  "Report-Msgid-Bugs-To: \n"
11
12
  "POT-Creation-Date: 2024-01-24 13:51+0000\n"
12
13
  "PO-Revision-Date: 2014-10-03 15:24+0000\n"
13
- "Last-Translator: Dan Braghis, 2014-2016,2019\n"
14
+ "Last-Translator: Madalin Popa, 2024\n"
14
15
  "Language-Team: Romanian (http://app.transifex.com/torchbox/wagtail/language/"
15
16
  "ro/)\n"
16
17
  "MIME-Version: 1.0\n"
@@ -21,7 +22,7 @@ msgstr ""
21
22
  "2:1));\n"
22
23
 
23
24
  msgid "Wagtail sites"
24
- msgstr "Situri Wagtail"
25
+ msgstr "Site-uri Wagtail"
25
26
 
26
27
  msgid "Choose a root page"
27
28
  msgstr "Alege o pagină de bază"
@@ -3,5 +3,4 @@
3
3
 
4
4
  {% block extra_js %}
5
5
  {{ block.super }}
6
- <script src="{% versioned_static 'wagtailadmin/js/modal-workflow.js' %}"></script>
7
6
  {% endblock %}
@@ -3,5 +3,4 @@
3
3
 
4
4
  {% block extra_js %}
5
5
  {{ block.super }}
6
- <script src="{% versioned_static 'wagtailadmin/js/modal-workflow.js' %}"></script>
7
6
  {% endblock %}
@@ -239,11 +239,11 @@ msgstr "Home"
239
239
 
240
240
  #, python-format
241
241
  msgid "Choose %(object)s"
242
- msgstr "Auswählen %(object)s"
242
+ msgstr "%(object)s auswählen"
243
243
 
244
244
  #, python-format
245
245
  msgid "Choose another %(object)s"
246
- msgstr "Andere/n/s %(object)s auswählen"
246
+ msgstr "Anderes %(object)s-Objekt auswählen"
247
247
 
248
248
  #, python-format
249
249
  msgid "Edit this %(object)s"
@@ -5,8 +5,8 @@
5
5
  # Translators:
6
6
  # Benoît Vogel <contact@spicy-informatique.com>, 2019
7
7
  # Bertrand Bordage <bordage.bertrand@gmail.com>, 2015,2017-2018
8
- # fpoulain <fpoulain@metrodore.fr>, 2018
9
- # fpoulain <fpoulain@metrodore.fr>, 2018
8
+ # 69c761fa404d2f74d5a7a2904d9e6f47_dc2dbc9 <f37077798760362881f9d396b6e22ec7_1878>, 2018
9
+ # 69c761fa404d2f74d5a7a2904d9e6f47_dc2dbc9 <f37077798760362881f9d396b6e22ec7_1878>, 2018
10
10
  # Léo <leo@naeka.fr>, 2016
11
11
  # Loic Teixeira, 2018
12
12
  # Loic Teixeira, 2018,2020-2022
@@ -17,8 +17,8 @@ msgstr ""
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Language: he_IL\n"
20
- "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
21
- "1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
20
+ "Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
21
+ "1 == 0) ? 1: 2;\n"
22
22
 
23
23
  msgid "Publish"
24
24
  msgstr "פרסם"
@@ -3,14 +3,14 @@
3
3
  # This file is distributed under the same license as the PACKAGE package.
4
4
  #
5
5
  # Translators:
6
- # Dino Aljević <dino8890@protonmail.com>, 2020,2022-2023
6
+ # Dino Aljević <dino8890@protonmail.com>, 2020,2022-2024
7
7
  msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: Wagtail\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "POT-Creation-Date: 2024-01-24 13:51+0000\n"
12
12
  "PO-Revision-Date: 2014-02-19 19:01+0000\n"
13
- "Last-Translator: Dino Aljević <dino8890@protonmail.com>, 2020,2022-2023\n"
13
+ "Last-Translator: Dino Aljević <dino8890@protonmail.com>, 2020,2022-2024\n"
14
14
  "Language-Team: Croatian (Croatia) (http://app.transifex.com/torchbox/wagtail/"
15
15
  "language/hr_HR/)\n"
16
16
  "MIME-Version: 1.0\n"
@@ -184,6 +184,10 @@ msgstr "Naziv"
184
184
  msgid "Instances"
185
185
  msgstr "Broj instanci"
186
186
 
187
+ #, python-format
188
+ msgid "More options for '%(title)s'"
189
+ msgstr "Više opcija za '%(title)s'"
190
+
187
191
  msgid "Action"
188
192
  msgstr "Radnja"
189
193
 
@@ -26,6 +26,14 @@ msgstr "Publicēt"
26
26
  msgid "Submit for moderation"
27
27
  msgstr "Iesniegt moderācijai"
28
28
 
29
+ #, python-format
30
+ msgid "Resubmit to %(task_name)s"
31
+ msgstr "Atkārtoti iesniegt %(task_name)s"
32
+
33
+ #, python-format
34
+ msgid "Submit to %(workflow_name)s"
35
+ msgstr "Iesniegt uz %(workflow_name)s"
36
+
29
37
  msgid "Restart workflow "
30
38
  msgstr "Restartēt darbplūsmu"
31
39
 
@@ -44,6 +52,10 @@ msgstr "Saglabāt"
44
52
  msgid "Locked"
45
53
  msgstr "Slēgts"
46
54
 
55
+ #, python-format
56
+ msgid "%(label)s and Publish"
57
+ msgstr "%(label)s un publicēt"
58
+
47
59
  msgid "Yes, delete"
48
60
  msgstr "Dzēst"
49
61