umap-project 1.12.2__tar.gz → 1.13.0__tar.gz

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 (478) hide show
  1. {umap_project-1.12.2 → umap_project-1.13.0}/PKG-INFO +4 -11
  2. umap_project-1.13.0/README.md +9 -0
  3. umap_project-1.13.0/umap/__init__.py +1 -0
  4. umap_project-1.13.0/umap/locale/br/LC_MESSAGES/django.mo +0 -0
  5. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/br/LC_MESSAGES/django.po +82 -54
  6. umap_project-1.13.0/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  7. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/cs_CZ/LC_MESSAGES/django.po +82 -54
  8. umap_project-1.13.0/umap/locale/el/LC_MESSAGES/django.mo +0 -0
  9. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/el/LC_MESSAGES/django.po +86 -58
  10. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/en/LC_MESSAGES/django.po +79 -51
  11. umap_project-1.13.0/umap/locale/es/LC_MESSAGES/django.mo +0 -0
  12. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/es/LC_MESSAGES/django.po +82 -54
  13. umap_project-1.13.0/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  14. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/fr/LC_MESSAGES/django.po +84 -56
  15. umap_project-1.13.0/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  16. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/hu/LC_MESSAGES/django.po +108 -80
  17. umap_project-1.13.0/umap/locale/it/LC_MESSAGES/django.mo +0 -0
  18. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/it/LC_MESSAGES/django.po +82 -54
  19. umap_project-1.13.0/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  20. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ms/LC_MESSAGES/django.po +82 -54
  21. umap_project-1.13.0/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  22. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pl/LC_MESSAGES/django.po +82 -54
  23. umap_project-1.13.0/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  24. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sv/LC_MESSAGES/django.po +82 -54
  25. umap_project-1.13.0/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  26. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/zh_TW/LC_MESSAGES/django.po +86 -58
  27. {umap_project-1.12.2 → umap_project-1.13.0}/umap/models.py +29 -0
  28. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/base.css +33 -5
  29. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/content.css +41 -2
  30. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/16.svg +12 -2
  31. umap_project-1.13.0/umap/static/umap/img/source/16.svg +201 -0
  32. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.browser.js +9 -3
  33. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.controls.js +45 -217
  34. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.core.js +66 -30
  35. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.forms.js +18 -31
  36. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.icon.js +44 -21
  37. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.js +5 -26
  38. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.layer.js +68 -25
  39. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.popup.js +87 -0
  40. umap_project-1.13.0/umap/static/umap/js/umap.share.js +254 -0
  41. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.ui.js +4 -2
  42. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/am_ET.js +19 -9
  43. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/am_ET.json +19 -9
  44. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ar.js +19 -9
  45. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ar.json +19 -9
  46. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ast.js +19 -9
  47. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ast.json +19 -9
  48. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/bg.js +19 -9
  49. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/bg.json +19 -9
  50. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/br.js +22 -12
  51. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/br.json +22 -12
  52. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ca.js +19 -9
  53. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ca.json +19 -9
  54. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/cs_CZ.js +19 -9
  55. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/cs_CZ.json +19 -9
  56. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/da.js +19 -9
  57. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/da.json +19 -9
  58. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/de.js +19 -9
  59. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/de.json +19 -9
  60. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/el.js +19 -9
  61. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/el.json +19 -9
  62. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/en.js +19 -9
  63. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/en.json +19 -9
  64. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/en_US.json +19 -9
  65. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/es.js +19 -9
  66. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/es.json +19 -9
  67. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/et.js +19 -9
  68. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/et.json +19 -9
  69. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fa_IR.js +19 -9
  70. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fa_IR.json +19 -9
  71. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fi.js +19 -9
  72. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fi.json +19 -9
  73. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fr.js +19 -9
  74. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/fr.json +19 -9
  75. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/gl.js +19 -9
  76. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/gl.json +19 -9
  77. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/he.js +19 -9
  78. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/he.json +19 -9
  79. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/hr.js +19 -9
  80. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/hr.json +19 -9
  81. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/hu.js +19 -9
  82. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/hu.json +19 -9
  83. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/id.js +19 -9
  84. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/id.json +19 -9
  85. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/is.js +19 -9
  86. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/is.json +19 -9
  87. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/it.js +19 -9
  88. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/it.json +19 -9
  89. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ja.js +19 -9
  90. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ja.json +19 -9
  91. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ko.js +19 -9
  92. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ko.json +19 -9
  93. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/lt.js +19 -9
  94. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/lt.json +19 -9
  95. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ms.js +19 -9
  96. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ms.json +19 -9
  97. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/nl.js +19 -9
  98. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/nl.json +19 -9
  99. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/no.js +19 -9
  100. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/no.json +19 -9
  101. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pl.js +19 -9
  102. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pl.json +19 -9
  103. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pl_PL.json +19 -9
  104. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt.js +19 -9
  105. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt.json +19 -9
  106. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt_BR.js +19 -9
  107. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt_BR.json +19 -9
  108. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt_PT.js +19 -9
  109. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/pt_PT.json +19 -9
  110. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ro.js +19 -9
  111. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ro.json +19 -9
  112. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ru.js +19 -9
  113. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/ru.json +19 -9
  114. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sk_SK.js +19 -9
  115. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sk_SK.json +19 -9
  116. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sl.js +19 -9
  117. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sl.json +19 -9
  118. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sr.js +19 -9
  119. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sr.json +19 -9
  120. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sv.js +19 -9
  121. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/sv.json +19 -9
  122. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/th_TH.js +19 -9
  123. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/th_TH.json +19 -9
  124. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/tr.js +19 -9
  125. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/tr.json +19 -9
  126. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/uk_UA.js +19 -9
  127. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/uk_UA.json +19 -9
  128. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/vi.js +19 -9
  129. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/vi.json +19 -9
  130. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/vi_VN.json +19 -9
  131. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh.js +19 -9
  132. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh.json +19 -9
  133. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh_CN.json +19 -9
  134. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh_TW.Big5.json +19 -9
  135. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh_TW.js +55 -45
  136. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/zh_TW.json +55 -45
  137. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/map.css +76 -9
  138. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Map.Export.js +3 -3
  139. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Polygon.js +2 -2
  140. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Polyline.js +2 -0
  141. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/index.html +1 -0
  142. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js +7055 -7054
  143. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +1 -1
  144. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/auth/user_form.html +1 -1
  145. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/content.html +1 -1
  146. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/js.html +1 -0
  147. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/map_list.html +1 -1
  148. umap_project-1.13.0/umap/templates/umap/map_table.html +73 -0
  149. umap_project-1.13.0/umap/templates/umap/user_dashboard.html +47 -0
  150. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templatetags/umap_tags.py +7 -27
  151. umap_project-1.13.0/umap/tests/integration/test_edit_datalayer.py +45 -0
  152. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_export_map.py +2 -3
  153. umap_project-1.13.0/umap/tests/integration/test_facets_browser.py +86 -0
  154. {umap_project-1.12.2 → umap_project-1.13.0}/umap/utils.py +17 -0
  155. {umap_project-1.12.2 → umap_project-1.13.0}/umap/views.py +7 -18
  156. umap_project-1.12.2/README.md +0 -16
  157. umap_project-1.12.2/umap/__init__.py +0 -1
  158. umap_project-1.12.2/umap/locale/br/LC_MESSAGES/django.mo +0 -0
  159. umap_project-1.12.2/umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  160. umap_project-1.12.2/umap/locale/el/LC_MESSAGES/django.mo +0 -0
  161. umap_project-1.12.2/umap/locale/es/LC_MESSAGES/django.mo +0 -0
  162. umap_project-1.12.2/umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  163. umap_project-1.12.2/umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  164. umap_project-1.12.2/umap/locale/it/LC_MESSAGES/django.mo +0 -0
  165. umap_project-1.12.2/umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  166. umap_project-1.12.2/umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  167. umap_project-1.12.2/umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  168. umap_project-1.12.2/umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  169. umap_project-1.12.2/umap/static/umap/img/source/16.svg +0 -856
  170. umap_project-1.12.2/umap/templates/umap/map_table.html +0 -41
  171. umap_project-1.12.2/umap/templates/umap/user_dashboard.html +0 -25
  172. {umap_project-1.12.2 → umap_project-1.13.0}/.gitignore +0 -0
  173. {umap_project-1.12.2 → umap_project-1.13.0}/LICENSE +0 -0
  174. {umap_project-1.12.2 → umap_project-1.13.0}/pyproject.toml +0 -0
  175. {umap_project-1.12.2 → umap_project-1.13.0}/umap/admin.py +0 -0
  176. {umap_project-1.12.2 → umap_project-1.13.0}/umap/apps.py +0 -0
  177. {umap_project-1.12.2 → umap_project-1.13.0}/umap/autocomplete.py +0 -0
  178. {umap_project-1.12.2 → umap_project-1.13.0}/umap/bin/__init__.py +0 -0
  179. {umap_project-1.12.2 → umap_project-1.13.0}/umap/context_processors.py +0 -0
  180. {umap_project-1.12.2 → umap_project-1.13.0}/umap/decorators.py +0 -0
  181. {umap_project-1.12.2 → umap_project-1.13.0}/umap/fields.py +0 -0
  182. {umap_project-1.12.2 → umap_project-1.13.0}/umap/forms.py +0 -0
  183. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/am_ET/LC_MESSAGES/django.mo +0 -0
  184. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/am_ET/LC_MESSAGES/django.po +0 -0
  185. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ar/LC_MESSAGES/django.mo +0 -0
  186. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ar/LC_MESSAGES/django.po +0 -0
  187. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ast/LC_MESSAGES/django.mo +0 -0
  188. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ast/LC_MESSAGES/django.po +0 -0
  189. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/bg/LC_MESSAGES/django.mo +0 -0
  190. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/bg/LC_MESSAGES/django.po +0 -0
  191. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  192. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ca/LC_MESSAGES/django.po +0 -0
  193. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/da/LC_MESSAGES/django.mo +0 -0
  194. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/da/LC_MESSAGES/django.po +0 -0
  195. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/de/LC_MESSAGES/django.mo +0 -0
  196. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/de/LC_MESSAGES/django.po +0 -0
  197. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/en/LC_MESSAGES/django.mo +0 -0
  198. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/et/LC_MESSAGES/django.mo +0 -0
  199. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/et/LC_MESSAGES/django.po +0 -0
  200. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  201. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/eu/LC_MESSAGES/django.po +0 -0
  202. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  203. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/fa_IR/LC_MESSAGES/django.po +0 -0
  204. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/fi/LC_MESSAGES/django.mo +0 -0
  205. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/fi/LC_MESSAGES/django.po +0 -0
  206. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  207. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/gl/LC_MESSAGES/django.po +0 -0
  208. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/he/LC_MESSAGES/django.mo +0 -0
  209. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/he/LC_MESSAGES/django.po +0 -0
  210. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/hr/LC_MESSAGES/django.mo +0 -0
  211. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/hr/LC_MESSAGES/django.po +0 -0
  212. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/id/LC_MESSAGES/django.mo +0 -0
  213. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/id/LC_MESSAGES/django.po +0 -0
  214. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/is/LC_MESSAGES/django.mo +0 -0
  215. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/is/LC_MESSAGES/django.po +0 -0
  216. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ja/LC_MESSAGES/django.mo +0 -0
  217. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ja/LC_MESSAGES/django.po +0 -0
  218. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ko/LC_MESSAGES/django.mo +0 -0
  219. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ko/LC_MESSAGES/django.po +0 -0
  220. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/lt/LC_MESSAGES/django.mo +0 -0
  221. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/lt/LC_MESSAGES/django.po +0 -0
  222. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  223. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/nl/LC_MESSAGES/django.po +0 -0
  224. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/no/LC_MESSAGES/django.mo +0 -0
  225. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/no/LC_MESSAGES/django.po +0 -0
  226. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  227. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt/LC_MESSAGES/django.po +0 -0
  228. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  229. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt_BR/LC_MESSAGES/django.po +0 -0
  230. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  231. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/pt_PT/LC_MESSAGES/django.po +0 -0
  232. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ro/LC_MESSAGES/django.mo +0 -0
  233. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ro/LC_MESSAGES/django.po +0 -0
  234. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ru/LC_MESSAGES/django.mo +0 -0
  235. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/ru/LC_MESSAGES/django.po +0 -0
  236. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/si/LC_MESSAGES/django.mo +0 -0
  237. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/si/LC_MESSAGES/django.po +0 -0
  238. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sk_SK/LC_MESSAGES/django.mo +0 -0
  239. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sk_SK/LC_MESSAGES/django.po +0 -0
  240. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sl/LC_MESSAGES/django.mo +0 -0
  241. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sl/LC_MESSAGES/django.po +0 -0
  242. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sr/LC_MESSAGES/django.mo +0 -0
  243. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/sr/LC_MESSAGES/django.po +0 -0
  244. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  245. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/th_TH/LC_MESSAGES/django.po +0 -0
  246. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/tr/LC_MESSAGES/django.mo +0 -0
  247. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/tr/LC_MESSAGES/django.po +0 -0
  248. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/uk_UA/LC_MESSAGES/django.mo +0 -0
  249. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/uk_UA/LC_MESSAGES/django.po +0 -0
  250. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/vi/LC_MESSAGES/django.mo +0 -0
  251. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/vi/LC_MESSAGES/django.po +0 -0
  252. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/zh/LC_MESSAGES/django.mo +0 -0
  253. {umap_project-1.12.2 → umap_project-1.13.0}/umap/locale/zh/LC_MESSAGES/django.po +0 -0
  254. {umap_project-1.12.2 → umap_project-1.13.0}/umap/management/__init__.py +0 -0
  255. {umap_project-1.12.2 → umap_project-1.13.0}/umap/management/commands/__init__.py +0 -0
  256. {umap_project-1.12.2 → umap_project-1.13.0}/umap/management/commands/anonymous_edit_url.py +0 -0
  257. {umap_project-1.12.2 → umap_project-1.13.0}/umap/management/commands/generate_js_locale.py +0 -0
  258. {umap_project-1.12.2 → umap_project-1.13.0}/umap/management/commands/import_pictograms.py +0 -0
  259. {umap_project-1.12.2 → umap_project-1.13.0}/umap/managers.py +0 -0
  260. {umap_project-1.12.2 → umap_project-1.13.0}/umap/middleware.py +0 -0
  261. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0001_initial.py +0 -0
  262. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0002_tilelayer_tms.py +0 -0
  263. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0003_add_tilelayer.py +0 -0
  264. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0004_add_licence.py +0 -0
  265. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0005_remove_map_tilelayer.py +0 -0
  266. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0006_auto_20190407_0719.py +0 -0
  267. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0007_auto_20190416_1757.py +0 -0
  268. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0008_alter_map_settings.py +0 -0
  269. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0009_star.py +0 -0
  270. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0010_alter_map_edit_status_alter_map_share_status.py +0 -0
  271. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0011_alter_map_edit_status_alter_map_share_status.py +0 -0
  272. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0012_datalayer_settings.py +0 -0
  273. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0013_datalayer_edit_status.py +0 -0
  274. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0014_map_created_at.py +0 -0
  275. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0015_alter_pictogram_pictogram.py +0 -0
  276. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/0016_pictogram_category.py +0 -0
  277. {umap_project-1.12.2 → umap_project-1.13.0}/umap/migrations/__init__.py +0 -0
  278. {umap_project-1.12.2 → umap_project-1.13.0}/umap/settings/__init__.py +0 -0
  279. {umap_project-1.12.2 → umap_project-1.13.0}/umap/settings/base.py +0 -0
  280. {umap_project-1.12.2 → umap_project-1.13.0}/umap/settings/dev.py +0 -0
  281. {umap_project-1.12.2 → umap_project-1.13.0}/umap/settings/local.py.sample +0 -0
  282. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/.gitignore +0 -0
  283. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/bitbucket.png +0 -0
  284. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/favicons/apple-touch-icon.png +0 -0
  285. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/favicons/favicon.ico +0 -0
  286. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/favicons/icon-192.png +0 -0
  287. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/favicons/icon-512.png +0 -0
  288. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/favicons/icon.svg +0 -0
  289. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-Light.woff +0 -0
  290. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-Light.woff2 +0 -0
  291. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-LightItalic.woff +0 -0
  292. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-LightItalic.woff2 +0 -0
  293. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-SemiBold.woff +0 -0
  294. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font/FiraSans-SemiBold.woff2 +0 -0
  295. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/font.css +0 -0
  296. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/github.png +0 -0
  297. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/16-white.svg +0 -0
  298. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/24-white.svg +0 -0
  299. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/24.svg +0 -0
  300. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/edit.svg +0 -0
  301. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/icon-bg.png +0 -0
  302. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/logo.svg +0 -0
  303. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/logo_filigree.png +0 -0
  304. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/logo_small.svg +0 -0
  305. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/marker.png +0 -0
  306. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/opensource.svg +0 -0
  307. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/osm.svg +0 -0
  308. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/search.gif +0 -0
  309. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/source/16-white.svg +0 -0
  310. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/source/24-white.svg +0 -0
  311. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/img/source/24.svg +0 -0
  312. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.autocomplete.js +0 -0
  313. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.datalayer.permissions.js +0 -0
  314. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.features.js +0 -0
  315. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.importer.js +0 -0
  316. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.permissions.js +0 -0
  317. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.slideshow.js +0 -0
  318. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.tableeditor.js +0 -0
  319. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/js/umap.xhr.js +0 -0
  320. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/eu.js +0 -0
  321. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/eu.json +0 -0
  322. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/si.js +0 -0
  323. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/locale/si.json +0 -0
  324. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/nav.css +0 -0
  325. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/openstreetmap.png +0 -0
  326. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/.eslintrc +0 -0
  327. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Choropleth.js +0 -0
  328. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Controls.js +0 -0
  329. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/DataLayer.js +0 -0
  330. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Feature.js +0 -0
  331. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Map.Init.js +0 -0
  332. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Map.js +0 -0
  333. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Marker.js +0 -0
  334. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Permissions.js +0 -0
  335. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/TableEditor.js +0 -0
  336. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/Util.js +0 -0
  337. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/test/_pre.js +0 -0
  338. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/theme.css +0 -0
  339. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/twitter.png +0 -0
  340. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/choropleth/choropleth.js +0 -0
  341. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/chroma/chroma.min.js +0 -0
  342. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/colorbrewer/colorbrewer.js +0 -0
  343. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/colorbrewer/index.js +0 -0
  344. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.css +0 -0
  345. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.js +0 -0
  346. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -0
  347. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -0
  348. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/csv2geojson/csv2geojson.js +0 -0
  349. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/csv2geojson/index.js +0 -0
  350. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/dompurify/purify.js +0 -0
  351. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/editable/Leaflet.Editable.js +0 -0
  352. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/editable/Path.Drag.js +0 -0
  353. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.css +0 -0
  354. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/editinosm/Leaflet.EditInOSM.js +0 -0
  355. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/editinosm/edit-in-osm.png +0 -0
  356. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/flat-drop-files/flatdropfiles.umd.js +0 -0
  357. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -0
  358. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.js +0 -0
  359. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/fullscreen/Leaflet.fullscreen.min.js +0 -0
  360. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/fullscreen/fullscreen.png +0 -0
  361. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/fullscreen/fullscreen@2x.png +0 -0
  362. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/fullscreen/leaflet.fullscreen.css +0 -0
  363. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +0 -0
  364. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/hash/leaflet-hash.js +0 -0
  365. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/heat/leaflet-heat.js +0 -0
  366. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/html2canvas/html2canvas.esm.js +0 -0
  367. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/html2canvas/html2canvas.esm.js.map +0 -0
  368. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/html2canvas/html2canvas.js +0 -0
  369. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/html2canvas/html2canvas.js.map +0 -0
  370. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/html2canvas/html2canvas.min.js +0 -0
  371. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/i18n/Leaflet.i18n.js +0 -0
  372. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/iconlayers/check.png +0 -0
  373. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/iconlayers/iconLayers.css +0 -0
  374. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/iconlayers/iconLayers.js +0 -0
  375. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/iconlayers/transparent-pixel.png +0 -0
  376. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/images/layers-2x.png +0 -0
  377. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/images/layers.png +0 -0
  378. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/images/marker-icon-2x.png +0 -0
  379. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/images/marker-icon.png +0 -0
  380. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/images/marker-shadow.png +0 -0
  381. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet-src.esm.js.map +0 -0
  382. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet-src.js +0 -0
  383. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -0
  384. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet.css +0 -0
  385. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet.js +0 -0
  386. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/leaflet/leaflet.js.map +0 -0
  387. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/loading/Control.Loading.css +0 -0
  388. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/loading/Control.Loading.js +0 -0
  389. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.css +0 -0
  390. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/locatecontrol/L.Control.Locate.js +0 -0
  391. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -0
  392. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -0
  393. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -0
  394. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -0
  395. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -0
  396. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -0
  397. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -0
  398. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.css +0 -0
  399. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/measurable/Leaflet.Measurable.js +0 -0
  400. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/minimap/Control.MiniMap.css +0 -0
  401. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/minimap/Control.MiniMap.js +0 -0
  402. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/minimap/images/toggle.png +0 -0
  403. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/minimap/images/toggle.svg +0 -0
  404. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +0 -0
  405. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/photon/leaflet.photon.js +0 -0
  406. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/print/leaflet.browser.print.js +0 -0
  407. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/print/leaflet.browser.print.min.js +0 -0
  408. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.js +0 -0
  409. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +0 -0
  410. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/togeojson/togeojson.js +0 -0
  411. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/togpx/togpx.js +0 -0
  412. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/tokml/tokml.js +0 -0
  413. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -0
  414. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -0
  415. {umap_project-1.12.2 → umap_project-1.13.0}/umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -0
  416. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/404.html +0 -0
  417. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/500.html +0 -0
  418. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/auth/user_detail.html +0 -0
  419. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/auth/user_stars.html +0 -0
  420. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/base.html +0 -0
  421. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/registration/login.html +0 -0
  422. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/about.html +0 -0
  423. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/about_summary.html +0 -0
  424. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/content_footer.html +0 -0
  425. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/css.html +0 -0
  426. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/footer.html +0 -0
  427. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/home.html +0 -0
  428. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/locale.js +0 -0
  429. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/login_popup_end.html +0 -0
  430. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/map_detail.html +0 -0
  431. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/map_fragment.html +0 -0
  432. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/map_init.html +0 -0
  433. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/map_messages.html +0 -0
  434. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/messages.html +0 -0
  435. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/navigation.html +0 -0
  436. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/password_change.html +0 -0
  437. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/password_change_done.html +0 -0
  438. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/search.html +0 -0
  439. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/search_bar.html +0 -0
  440. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templates/umap/success.html +0 -0
  441. {umap_project-1.12.2 → umap_project-1.13.0}/umap/templatetags/__init__.py +0 -0
  442. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/__init__.py +0 -0
  443. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/base.py +0 -0
  444. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/conftest.py +0 -0
  445. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/choropleth_region_chomage.geojson +0 -0
  446. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/circle.svg +0 -0
  447. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/display_on_load.umap +0 -0
  448. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/star.svg +0 -0
  449. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_data.csv +0 -0
  450. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_data.gpx +0 -0
  451. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_data.json +0 -0
  452. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_data.kml +0 -0
  453. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_empty_coordinates.json +0 -0
  454. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_missing_name.json +0 -0
  455. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/fixtures/test_upload_non_linear_ring.json +0 -0
  456. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/__init__.py +0 -0
  457. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_anonymous_owned_map.py +0 -0
  458. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_basics.py +0 -0
  459. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_browser.py +0 -0
  460. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_drawing.py +0 -0
  461. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_import.py +0 -0
  462. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_map.py +0 -0
  463. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_owned_map.py +0 -0
  464. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_picto.py +0 -0
  465. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_slideshow.py +0 -0
  466. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/integration/test_tilelayer.py +0 -0
  467. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/settings.py +0 -0
  468. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_datalayer.py +0 -0
  469. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_datalayer_views.py +0 -0
  470. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_licence.py +0 -0
  471. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_map.py +0 -0
  472. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_map_views.py +0 -0
  473. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_merge_features.py +0 -0
  474. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_tilelayer.py +0 -0
  475. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_utils.py +0 -0
  476. {umap_project-1.12.2 → umap_project-1.13.0}/umap/tests/test_views.py +0 -0
  477. {umap_project-1.12.2 → umap_project-1.13.0}/umap/urls.py +0 -0
  478. {umap_project-1.12.2 → umap_project-1.13.0}/umap/wsgi.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: umap-project
3
- Version: 1.12.2
3
+ Version: 1.13.0
4
4
  Summary: Create maps with OpenStreetMap layers in a minute and embed them in your site.
5
5
  Author-email: Yohan Boniface <yb@enix.org>
6
6
  Maintainer-email: David Larlet <david@larlet.fr>
@@ -48,19 +48,12 @@ Requires-Dist: pytest-xdist<4,>=3.5.0; extra == 'test'
48
48
  Requires-Dist: pytest==6.2.5; extra == 'test'
49
49
  Description-Content-Type: text/markdown
50
50
 
51
-
52
51
  # uMap project
53
52
 
54
- [![Requirements Status](https://requires.io/github/umap-project/umap/requirements.svg?branch=master)](https://requires.io/github/umap-project/umap/requirements/?branch=master)
55
- [![Join the chat at https://gitter.im/umap-project/umap](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/umap-project/umap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Documentation Status](https://readthedocs.org/projects/umap-project/badge/?version=latest)](http://umap-project.readthedocs.io/en/master/?badge=latest)[![Build Status](https://travis-ci.org/umap-project/umap.svg?branch=master)](https://travis-ci.org/umap-project/umap)
56
-
57
- ## About
58
-
59
53
  uMap lets you create maps with OpenStreetMap layers in a minute and embed them in your site.
60
54
  *Because we think that the more OSM will be used, the more OSM will be improved.*
61
55
  Built on top of Django and Leaflet.
62
56
 
63
-
64
- ## Installation and configuration
65
-
66
- See [developer documentation](https://umap-project.readthedocs.io/en/master/install/).
57
+ - Have a look at [our website](https://umap-project.org) for an introduction
58
+ - See [our docs](https://docs.umap-project.org/) for technical information
59
+ - Come [chat with us on matrix.org](https://app.element.io/#/room/#umap:matrix.org), or join [the mailing-list](https://lists.openstreetmap.org/listinfo/umap)
@@ -0,0 +1,9 @@
1
+ # uMap project
2
+
3
+ uMap lets you create maps with OpenStreetMap layers in a minute and embed them in your site.
4
+ *Because we think that the more OSM will be used, the more OSM will be improved.*
5
+ Built on top of Django and Leaflet.
6
+
7
+ - Have a look at [our website](https://umap-project.org) for an introduction
8
+ - See [our docs](https://docs.umap-project.org/) for technical information
9
+ - Come [chat with us on matrix.org](https://app.element.io/#/room/#umap:matrix.org), or join [the mailing-list](https://lists.openstreetmap.org/listinfo/umap)
@@ -0,0 +1 @@
1
+ VERSION = "1.13.0"
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2023-10-12 06:55+0000\n"
13
+ "POT-Creation-Date: 2024-01-08 12:33+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
15
  "Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023\n"
16
16
  "Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
@@ -28,115 +28,115 @@ msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
28
28
  msgid "Everyone can edit"
29
29
  msgstr "An holl a c'hall kemmañ"
30
30
 
31
- #: forms.py:69 models.py:318
31
+ #: forms.py:69 models.py:349
32
32
  msgid "Inherit"
33
33
  msgstr "Dre ziouer"
34
34
 
35
- #: middleware.py:14
35
+ #: middleware.py:13
36
36
  msgid "Site is readonly for maintenance"
37
37
  msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
38
38
 
39
- #: models.py:48
39
+ #: models.py:49
40
40
  msgid "name"
41
41
  msgstr "anv"
42
42
 
43
- #: models.py:79
43
+ #: models.py:80
44
44
  msgid "details"
45
45
  msgstr "munudoù"
46
46
 
47
- #: models.py:80
47
+ #: models.py:81
48
48
  msgid "Link to a page where the licence is detailed."
49
49
  msgstr "Liamm war-zu ur bajenn a zispleg an aotre-implijout."
50
50
 
51
- #: models.py:90
51
+ #: models.py:91
52
52
  msgid "URL template using OSM tile format"
53
53
  msgstr "Patrom URL a implij furmad teol OSM"
54
54
 
55
- #: models.py:96
55
+ #: models.py:97
56
56
  msgid "Order of the tilelayers in the edit box"
57
57
  msgstr ""
58
58
 
59
- #: models.py:142 models.py:319
59
+ #: models.py:143 models.py:350
60
60
  msgid "Everyone"
61
61
  msgstr "An holl"
62
62
 
63
- #: models.py:143 models.py:149 models.py:320
63
+ #: models.py:144 models.py:150 models.py:351
64
64
  msgid "Editors only"
65
65
  msgstr "Aozerien nemetken"
66
66
 
67
- #: models.py:144 models.py:321
67
+ #: models.py:145 models.py:352
68
68
  msgid "Owner only"
69
69
  msgstr "Ar perc'henner hepken"
70
70
 
71
- #: models.py:147
71
+ #: models.py:148
72
72
  msgid "Everyone (public)"
73
73
  msgstr "An holl (publik)"
74
74
 
75
- #: models.py:148
75
+ #: models.py:149
76
76
  msgid "Anyone with link"
77
77
  msgstr "Piv bennak en deus ul liamm"
78
78
 
79
- #: models.py:150
79
+ #: models.py:151
80
80
  msgid "Blocked"
81
81
  msgstr "Stanket"
82
82
 
83
- #: models.py:153 models.py:325
83
+ #: models.py:154 models.py:356
84
84
  msgid "description"
85
85
  msgstr "deskrivadur"
86
86
 
87
- #: models.py:154
87
+ #: models.py:155
88
88
  msgid "center"
89
89
  msgstr "kreizañ"
90
90
 
91
- #: models.py:155
91
+ #: models.py:156
92
92
  msgid "zoom"
93
93
  msgstr "zoumañ"
94
94
 
95
- #: models.py:157
95
+ #: models.py:158
96
96
  msgid "locate"
97
97
  msgstr "lec'hiañ"
98
98
 
99
- #: models.py:157
99
+ #: models.py:158
100
100
  msgid "Locate user on load?"
101
101
  msgstr "Lec'hiañ an implijer en ur gargañ?"
102
102
 
103
- #: models.py:161
103
+ #: models.py:162
104
104
  msgid "Choose the map licence."
105
105
  msgstr "Dibabit aotre-implijout ar gartenn."
106
106
 
107
- #: models.py:162
107
+ #: models.py:163
108
108
  msgid "licence"
109
109
  msgstr "aotre"
110
110
 
111
- #: models.py:173
111
+ #: models.py:174
112
112
  msgid "owner"
113
113
  msgstr "perc'henner"
114
114
 
115
- #: models.py:177
115
+ #: models.py:178
116
116
  msgid "editors"
117
117
  msgstr "aozerien"
118
118
 
119
- #: models.py:182 models.py:339
119
+ #: models.py:183 models.py:370
120
120
  msgid "edit status"
121
121
  msgstr "statud aozañ"
122
122
 
123
- #: models.py:187
123
+ #: models.py:188
124
124
  msgid "share status"
125
125
  msgstr "digor da biv?"
126
126
 
127
- #: models.py:190 models.py:334
127
+ #: models.py:191 models.py:365
128
128
  msgid "settings"
129
129
  msgstr "arventennoù"
130
130
 
131
- #: models.py:269
131
+ #: models.py:298
132
132
  msgid "Clone of"
133
133
  msgstr "Eilenn eus"
134
134
 
135
- #: models.py:329
135
+ #: models.py:360
136
136
  msgid "display on load"
137
137
  msgstr "diskwel pa vez karget"
138
138
 
139
- #: models.py:330
139
+ #: models.py:361
140
140
  msgid "Display this layer on load."
141
141
  msgstr "Diskwel ar gwiskad-mañ pa vez karget"
142
142
 
@@ -293,50 +293,78 @@ msgstr "Bezit awenet en ur furchal kartennoù"
293
293
  msgid "You are logged in. Continuing..."
294
294
  msgstr "Kevreet oc'h. Gortozit ur pennadig..."
295
295
 
296
- #: templates/umap/map_list.html:9 views.py:303
296
+ #: templates/umap/map_list.html:9 views.py:296
297
297
  msgid "by"
298
298
  msgstr "gant"
299
299
 
300
- #: templates/umap/map_list.html:17 templates/umap/map_table.html:39
300
+ #: templates/umap/map_list.html:17
301
301
  msgid "More"
302
302
  msgstr "Muioc'h"
303
303
 
304
- #: templates/umap/map_table.html:6
305
- msgid "Map"
306
- msgstr "Kartenn"
307
-
308
- #: templates/umap/map_table.html:7
304
+ #: templates/umap/map_table.html:5
309
305
  msgid "Name"
310
306
  msgstr "Anv"
311
307
 
312
- #: templates/umap/map_table.html:8
308
+ #: templates/umap/map_table.html:6
309
+ msgid "Preview"
310
+ msgstr ""
311
+
312
+ #: templates/umap/map_table.html:7
313
313
  msgid "Who can see / edit"
314
314
  msgstr "Piv a c'hall gwelet / aozañ"
315
315
 
316
- #: templates/umap/map_table.html:9
316
+ #: templates/umap/map_table.html:8
317
317
  msgid "Last save"
318
318
  msgstr "Enrollet da ziwezhañ"
319
319
 
320
- #: templates/umap/map_table.html:10
320
+ #: templates/umap/map_table.html:9
321
321
  msgid "Owner"
322
322
  msgstr "Perc'henner"
323
323
 
324
- #: templates/umap/map_table.html:11
324
+ #: templates/umap/map_table.html:10
325
325
  msgid "Actions"
326
326
  msgstr "Oberoù"
327
327
 
328
- #: templates/umap/map_table.html:28
328
+ #: templates/umap/map_table.html:22
329
+ msgid "Open preview"
330
+ msgstr ""
331
+
332
+ #: templates/umap/map_table.html:38
329
333
  msgid "Share"
330
334
  msgstr "Rannañ"
331
335
 
332
- #: templates/umap/map_table.html:29
336
+ #: templates/umap/map_table.html:39
333
337
  msgid "Edit"
334
338
  msgstr "Aozañ"
335
339
 
336
- #: templates/umap/map_table.html:30
340
+ #: templates/umap/map_table.html:40
337
341
  msgid "Download"
338
342
  msgstr "Pellgargañ"
339
343
 
344
+ #: templates/umap/map_table.html:49
345
+ msgid "first"
346
+ msgstr ""
347
+
348
+ #: templates/umap/map_table.html:50
349
+ msgid "previous"
350
+ msgstr ""
351
+
352
+ #: templates/umap/map_table.html:59
353
+ #, python-format
354
+ msgid ""
355
+ "\n"
356
+ " Page %(maps_number)s of %(num_pages)s\n"
357
+ " "
358
+ msgstr ""
359
+
360
+ #: templates/umap/map_table.html:65
361
+ msgid "next"
362
+ msgstr ""
363
+
364
+ #: templates/umap/map_table.html:66
365
+ msgid "last"
366
+ msgstr ""
367
+
340
368
  #: templates/umap/navigation.html:15
341
369
  msgid "Starred maps"
342
370
  msgstr "Kartennoù spilhennet"
@@ -437,52 +465,52 @@ msgstr "Ma frofil"
437
465
  msgid "You have no map yet."
438
466
  msgstr "N'ho peus kartenn ebet c'hoazh."
439
467
 
440
- #: views.py:308
468
+ #: views.py:301
441
469
  msgid "View the map"
442
470
  msgstr "Diskouez ar gartenn"
443
471
 
444
- #: views.py:659
472
+ #: views.py:660
445
473
  msgid "Map has been updated!"
446
474
  msgstr "Hizivaet eo bet ar gartenn!"
447
475
 
448
- #: views.py:684
476
+ #: views.py:685
449
477
  msgid "Map editors updated with success!"
450
478
  msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
451
479
 
452
- #: views.py:722
480
+ #: views.py:723
453
481
  #, python-format
454
482
  msgid "The uMap edit link for your map: %(map_name)s"
455
483
  msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
456
484
 
457
- #: views.py:725
485
+ #: views.py:726
458
486
  #, python-format
459
487
  msgid "Here is your secret edit link: %(link)s"
460
488
  msgstr "Setu ho liamm aozañ kuzh: %(link)s"
461
489
 
462
- #: views.py:731
490
+ #: views.py:732
463
491
  #, python-format
464
492
  msgid "Email sent to %(email)s"
465
493
  msgstr "Postel kaset da %(email)s"
466
494
 
467
- #: views.py:742
495
+ #: views.py:743
468
496
  msgid "Only its owner can delete the map."
469
497
  msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
470
498
 
471
- #: views.py:765
499
+ #: views.py:766
472
500
  #, python-format
473
501
  msgid ""
474
502
  "Your map has been cloned! If you want to edit this map from another "
475
503
  "computer, please use this link: %(anonymous_url)s"
476
504
  msgstr "Eilet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
477
505
 
478
- #: views.py:770
506
+ #: views.py:771
479
507
  msgid "Congratulations, your map has been cloned!"
480
508
  msgstr "Eilet eo bet ho kartenn gant berzh!"
481
509
 
482
- #: views.py:959
510
+ #: views.py:1007
483
511
  msgid "Layer successfully deleted."
484
512
  msgstr "Gwiskad dilamet gant berzh."
485
513
 
486
- #: views.py:981
514
+ #: views.py:1029
487
515
  msgid "Permissions updated with success!"
488
516
  msgstr "Aotreoù hizivaet gant berzh!"
@@ -16,7 +16,7 @@ msgid ""
16
16
  msgstr ""
17
17
  "Project-Id-Version: uMap\n"
18
18
  "Report-Msgid-Bugs-To: \n"
19
- "POT-Creation-Date: 2023-10-12 06:55+0000\n"
19
+ "POT-Creation-Date: 2024-01-08 12:33+0000\n"
20
20
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
21
21
  "Last-Translator: Jiří Podhorecký, 2023\n"
22
22
  "Language-Team: Czech (Czech Republic) (http://app.transifex.com/openstreetmap/umap/language/cs_CZ/)\n"
@@ -34,115 +34,115 @@ msgstr "Lze upravovat jen pomocí tajného odkazu"
34
34
  msgid "Everyone can edit"
35
35
  msgstr "Kdokoli může editovat"
36
36
 
37
- #: forms.py:69 models.py:318
37
+ #: forms.py:69 models.py:349
38
38
  msgid "Inherit"
39
39
  msgstr "Zdědit"
40
40
 
41
- #: middleware.py:14
41
+ #: middleware.py:13
42
42
  msgid "Site is readonly for maintenance"
43
43
  msgstr "Stránka je jen ke čtení kvůli údržbě"
44
44
 
45
- #: models.py:48
45
+ #: models.py:49
46
46
  msgid "name"
47
47
  msgstr "název"
48
48
 
49
- #: models.py:79
49
+ #: models.py:80
50
50
  msgid "details"
51
51
  msgstr "podrobnosti"
52
52
 
53
- #: models.py:80
53
+ #: models.py:81
54
54
  msgid "Link to a page where the licence is detailed."
55
55
  msgstr "Odkaz na stránku s podrobnějším popisem licence."
56
56
 
57
- #: models.py:90
57
+ #: models.py:91
58
58
  msgid "URL template using OSM tile format"
59
59
  msgstr "Vzor URL ve formátu pro dlaždice OSM "
60
60
 
61
- #: models.py:96
61
+ #: models.py:97
62
62
  msgid "Order of the tilelayers in the edit box"
63
63
  msgstr "Pořadí vrstev při editaci"
64
64
 
65
- #: models.py:142 models.py:319
65
+ #: models.py:143 models.py:350
66
66
  msgid "Everyone"
67
67
  msgstr "Kdokoli"
68
68
 
69
- #: models.py:143 models.py:149 models.py:320
69
+ #: models.py:144 models.py:150 models.py:351
70
70
  msgid "Editors only"
71
71
  msgstr "Jen přispěvatelé"
72
72
 
73
- #: models.py:144 models.py:321
73
+ #: models.py:145 models.py:352
74
74
  msgid "Owner only"
75
75
  msgstr "Jen vlastník"
76
76
 
77
- #: models.py:147
77
+ #: models.py:148
78
78
  msgid "Everyone (public)"
79
79
  msgstr "Kdokoli (veřejná)"
80
80
 
81
- #: models.py:148
81
+ #: models.py:149
82
82
  msgid "Anyone with link"
83
83
  msgstr "Kdokoli kdo má odkaz"
84
84
 
85
- #: models.py:150
85
+ #: models.py:151
86
86
  msgid "Blocked"
87
87
  msgstr "Blokováno"
88
88
 
89
- #: models.py:153 models.py:325
89
+ #: models.py:154 models.py:356
90
90
  msgid "description"
91
91
  msgstr "popis"
92
92
 
93
- #: models.py:154
93
+ #: models.py:155
94
94
  msgid "center"
95
95
  msgstr "střed"
96
96
 
97
- #: models.py:155
97
+ #: models.py:156
98
98
  msgid "zoom"
99
99
  msgstr "přiblížení"
100
100
 
101
- #: models.py:157
101
+ #: models.py:158
102
102
  msgid "locate"
103
103
  msgstr "lokalizuj"
104
104
 
105
- #: models.py:157
105
+ #: models.py:158
106
106
  msgid "Locate user on load?"
107
107
  msgstr "Najdi poluhu uživatele na startu?"
108
108
 
109
- #: models.py:161
109
+ #: models.py:162
110
110
  msgid "Choose the map licence."
111
111
  msgstr "Vyberte si licenci mapy."
112
112
 
113
- #: models.py:162
113
+ #: models.py:163
114
114
  msgid "licence"
115
115
  msgstr "licence"
116
116
 
117
- #: models.py:173
117
+ #: models.py:174
118
118
  msgid "owner"
119
119
  msgstr "vlastník"
120
120
 
121
- #: models.py:177
121
+ #: models.py:178
122
122
  msgid "editors"
123
123
  msgstr "přispěvovatelé"
124
124
 
125
- #: models.py:182 models.py:339
125
+ #: models.py:183 models.py:370
126
126
  msgid "edit status"
127
127
  msgstr "kdo může provádět úpravy"
128
128
 
129
- #: models.py:187
129
+ #: models.py:188
130
130
  msgid "share status"
131
131
  msgstr "nastavení sdílení"
132
132
 
133
- #: models.py:190 models.py:334
133
+ #: models.py:191 models.py:365
134
134
  msgid "settings"
135
135
  msgstr "nastavení"
136
136
 
137
- #: models.py:269
137
+ #: models.py:298
138
138
  msgid "Clone of"
139
139
  msgstr "Kopie"
140
140
 
141
- #: models.py:329
141
+ #: models.py:360
142
142
  msgid "display on load"
143
143
  msgstr "zobrazit při startu"
144
144
 
145
- #: models.py:330
145
+ #: models.py:361
146
146
  msgid "Display this layer on load."
147
147
  msgstr "Zobrazit tuto vrstvu na startu."
148
148
 
@@ -299,50 +299,78 @@ msgstr "Inspirujte se, koukněte na mapy jiných"
299
299
  msgid "You are logged in. Continuing..."
300
300
  msgstr "Jste přihlášeni. Jedeme dál ..."
301
301
 
302
- #: templates/umap/map_list.html:9 views.py:303
302
+ #: templates/umap/map_list.html:9 views.py:296
303
303
  msgid "by"
304
304
  msgstr ", autor:"
305
305
 
306
- #: templates/umap/map_list.html:17 templates/umap/map_table.html:39
306
+ #: templates/umap/map_list.html:17
307
307
  msgid "More"
308
308
  msgstr "Více"
309
309
 
310
- #: templates/umap/map_table.html:6
311
- msgid "Map"
312
- msgstr "Mapa"
313
-
314
- #: templates/umap/map_table.html:7
310
+ #: templates/umap/map_table.html:5
315
311
  msgid "Name"
316
312
  msgstr "Název"
317
313
 
318
- #: templates/umap/map_table.html:8
314
+ #: templates/umap/map_table.html:6
315
+ msgid "Preview"
316
+ msgstr ""
317
+
318
+ #: templates/umap/map_table.html:7
319
319
  msgid "Who can see / edit"
320
320
  msgstr "Kdo může zobrazit / upravit"
321
321
 
322
- #: templates/umap/map_table.html:9
322
+ #: templates/umap/map_table.html:8
323
323
  msgid "Last save"
324
324
  msgstr "Poslední uložení"
325
325
 
326
- #: templates/umap/map_table.html:10
326
+ #: templates/umap/map_table.html:9
327
327
  msgid "Owner"
328
328
  msgstr "Vlastník"
329
329
 
330
- #: templates/umap/map_table.html:11
330
+ #: templates/umap/map_table.html:10
331
331
  msgid "Actions"
332
332
  msgstr "Akce"
333
333
 
334
- #: templates/umap/map_table.html:28
334
+ #: templates/umap/map_table.html:22
335
+ msgid "Open preview"
336
+ msgstr ""
337
+
338
+ #: templates/umap/map_table.html:38
335
339
  msgid "Share"
336
340
  msgstr "Sdílet"
337
341
 
338
- #: templates/umap/map_table.html:29
342
+ #: templates/umap/map_table.html:39
339
343
  msgid "Edit"
340
344
  msgstr "Upravit"
341
345
 
342
- #: templates/umap/map_table.html:30
346
+ #: templates/umap/map_table.html:40
343
347
  msgid "Download"
344
348
  msgstr "Stažení"
345
349
 
350
+ #: templates/umap/map_table.html:49
351
+ msgid "first"
352
+ msgstr ""
353
+
354
+ #: templates/umap/map_table.html:50
355
+ msgid "previous"
356
+ msgstr ""
357
+
358
+ #: templates/umap/map_table.html:59
359
+ #, python-format
360
+ msgid ""
361
+ "\n"
362
+ " Page %(maps_number)s of %(num_pages)s\n"
363
+ " "
364
+ msgstr ""
365
+
366
+ #: templates/umap/map_table.html:65
367
+ msgid "next"
368
+ msgstr ""
369
+
370
+ #: templates/umap/map_table.html:66
371
+ msgid "last"
372
+ msgstr ""
373
+
346
374
  #: templates/umap/navigation.html:15
347
375
  msgid "Starred maps"
348
376
  msgstr "Mapy označené hvězdičkou"
@@ -442,52 +470,52 @@ msgstr "Můj profil"
442
470
  msgid "You have no map yet."
443
471
  msgstr "Zatím nemáte žádnou mapu."
444
472
 
445
- #: views.py:308
473
+ #: views.py:301
446
474
  msgid "View the map"
447
475
  msgstr "Prohlídnout si tuto mapu"
448
476
 
449
- #: views.py:659
477
+ #: views.py:660
450
478
  msgid "Map has been updated!"
451
479
  msgstr "Mapa byla aktualizována!"
452
480
 
453
- #: views.py:684
481
+ #: views.py:685
454
482
  msgid "Map editors updated with success!"
455
483
  msgstr "Seznam přispěvovatelů byl úspěšně upraven!"
456
484
 
457
- #: views.py:722
485
+ #: views.py:723
458
486
  #, python-format
459
487
  msgid "The uMap edit link for your map: %(map_name)s"
460
488
  msgstr "Odkaz na úpravu uMap pro vaši mapu: %(map_name)s"
461
489
 
462
- #: views.py:725
490
+ #: views.py:726
463
491
  #, python-format
464
492
  msgid "Here is your secret edit link: %(link)s"
465
493
  msgstr "Zde je váš tajný odkaz na úpravu: %(link)s"
466
494
 
467
- #: views.py:731
495
+ #: views.py:732
468
496
  #, python-format
469
497
  msgid "Email sent to %(email)s"
470
498
  msgstr "E-mail odeslán na %(email)s"
471
499
 
472
- #: views.py:742
500
+ #: views.py:743
473
501
  msgid "Only its owner can delete the map."
474
502
  msgstr "Jen vlastník může vymzat tuto mapu."
475
503
 
476
- #: views.py:765
504
+ #: views.py:766
477
505
  #, python-format
478
506
  msgid ""
479
507
  "Your map has been cloned! If you want to edit this map from another "
480
508
  "computer, please use this link: %(anonymous_url)s"
481
509
  msgstr "Byla vytvořena kopie mapy! Pokud chcete upravovat tuto mapu z jiného počítače, použijte tento odkaz: %(anonymous_url)s"
482
510
 
483
- #: views.py:770
511
+ #: views.py:771
484
512
  msgid "Congratulations, your map has been cloned!"
485
513
  msgstr "Gratulujeme, byla vytvořena kopie mapy!"
486
514
 
487
- #: views.py:959
515
+ #: views.py:1007
488
516
  msgid "Layer successfully deleted."
489
517
  msgstr "Vrstva úspěšně vymazána."
490
518
 
491
- #: views.py:981
519
+ #: views.py:1029
492
520
  msgid "Permissions updated with success!"
493
521
  msgstr "Oprávnění úspěšně aktualizována!"