umap-project 2.9.2__py3-none-any.whl → 3.0.0__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.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +131 -55
  7. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/et/LC_MESSAGES/django.po +175 -130
  9. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/eu/LC_MESSAGES/django.po +117 -72
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +132 -56
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  15. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/is/LC_MESSAGES/django.po +296 -175
  17. umap/middleware.py +2 -1
  18. umap/migrations/0027_map_tags.py +23 -0
  19. umap/models.py +13 -2
  20. umap/settings/base.py +23 -5
  21. umap/static/umap/base.css +41 -8
  22. umap/static/umap/content.css +72 -37
  23. umap/static/umap/css/bar.css +43 -21
  24. umap/static/umap/css/dialog.css +4 -1
  25. umap/static/umap/css/form.css +40 -27
  26. umap/static/umap/css/icon.css +11 -1
  27. umap/static/umap/css/importers.css +7 -0
  28. umap/static/umap/img/16-white.svg +23 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/24.svg +4 -4
  31. umap/static/umap/img/home.svg +7 -0
  32. umap/static/umap/img/importers/banfr.svg +1 -0
  33. umap/static/umap/img/marker.svg +2 -5
  34. umap/static/umap/img/source/16-white.svg +24 -3
  35. umap/static/umap/img/source/16.svg +1 -1
  36. umap/static/umap/img/source/24.svg +5 -5
  37. umap/static/umap/img/target.svg +1 -0
  38. umap/static/umap/js/components/alerts/alert.js +0 -1
  39. umap/static/umap/js/modules/browser.js +4 -4
  40. umap/static/umap/js/modules/caption.js +1 -1
  41. umap/static/umap/js/modules/data/features.js +25 -25
  42. umap/static/umap/js/modules/data/layer.js +91 -97
  43. umap/static/umap/js/modules/facets.js +9 -5
  44. umap/static/umap/js/modules/form/builder.js +21 -29
  45. umap/static/umap/js/modules/form/fields.js +40 -14
  46. umap/static/umap/js/modules/formatter.js +1 -1
  47. umap/static/umap/js/modules/global.js +9 -5
  48. umap/static/umap/js/modules/help.js +18 -5
  49. umap/static/umap/js/modules/importer.js +5 -2
  50. umap/static/umap/js/modules/importers/banfr.js +93 -0
  51. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  52. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +20 -10
  54. umap/static/umap/js/modules/rendering/icon.js +15 -2
  55. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  56. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  57. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  58. umap/static/umap/js/modules/rendering/map.js +14 -6
  59. umap/static/umap/js/modules/rendering/popup.js +2 -2
  60. umap/static/umap/js/modules/rendering/template.js +3 -3
  61. umap/static/umap/js/modules/rendering/ui.js +17 -11
  62. umap/static/umap/js/modules/rules.js +13 -16
  63. umap/static/umap/js/modules/schema.js +23 -1
  64. umap/static/umap/js/modules/share.js +1 -1
  65. umap/static/umap/js/modules/slideshow.js +1 -0
  66. umap/static/umap/js/modules/sync/engine.js +141 -19
  67. umap/static/umap/js/modules/sync/undo.js +101 -0
  68. umap/static/umap/js/modules/sync/updaters.js +51 -28
  69. umap/static/umap/js/modules/tableeditor.js +1 -1
  70. umap/static/umap/js/modules/ui/bar.js +61 -21
  71. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  72. umap/static/umap/js/modules/umap.js +190 -176
  73. umap/static/umap/js/modules/utils.js +30 -4
  74. umap/static/umap/js/umap.controls.js +82 -38
  75. umap/static/umap/locale/am_ET.js +13 -7
  76. umap/static/umap/locale/am_ET.json +13 -7
  77. umap/static/umap/locale/ar.js +13 -7
  78. umap/static/umap/locale/ar.json +13 -7
  79. umap/static/umap/locale/ast.js +13 -7
  80. umap/static/umap/locale/ast.json +13 -7
  81. umap/static/umap/locale/bg.js +13 -7
  82. umap/static/umap/locale/bg.json +13 -7
  83. umap/static/umap/locale/br.js +13 -8
  84. umap/static/umap/locale/br.json +13 -8
  85. umap/static/umap/locale/ca.js +13 -7
  86. umap/static/umap/locale/ca.json +13 -7
  87. umap/static/umap/locale/cs_CZ.js +26 -20
  88. umap/static/umap/locale/cs_CZ.json +26 -20
  89. umap/static/umap/locale/da.js +13 -7
  90. umap/static/umap/locale/da.json +13 -7
  91. umap/static/umap/locale/de.js +47 -41
  92. umap/static/umap/locale/de.json +47 -41
  93. umap/static/umap/locale/el.js +13 -7
  94. umap/static/umap/locale/el.json +13 -7
  95. umap/static/umap/locale/en.js +12 -7
  96. umap/static/umap/locale/en.json +12 -7
  97. umap/static/umap/locale/en_US.json +13 -7
  98. umap/static/umap/locale/es.js +19 -13
  99. umap/static/umap/locale/es.json +19 -13
  100. umap/static/umap/locale/et.js +13 -7
  101. umap/static/umap/locale/et.json +13 -7
  102. umap/static/umap/locale/eu.js +43 -37
  103. umap/static/umap/locale/eu.json +43 -37
  104. umap/static/umap/locale/fa_IR.js +13 -7
  105. umap/static/umap/locale/fa_IR.json +13 -7
  106. umap/static/umap/locale/fi.js +13 -7
  107. umap/static/umap/locale/fi.json +13 -7
  108. umap/static/umap/locale/fr.js +12 -7
  109. umap/static/umap/locale/fr.json +12 -7
  110. umap/static/umap/locale/gl.js +19 -13
  111. umap/static/umap/locale/gl.json +19 -13
  112. umap/static/umap/locale/he.js +13 -7
  113. umap/static/umap/locale/he.json +13 -7
  114. umap/static/umap/locale/hr.js +13 -7
  115. umap/static/umap/locale/hr.json +13 -7
  116. umap/static/umap/locale/hu.js +25 -19
  117. umap/static/umap/locale/hu.json +25 -19
  118. umap/static/umap/locale/id.js +13 -7
  119. umap/static/umap/locale/id.json +13 -7
  120. umap/static/umap/locale/is.js +151 -145
  121. umap/static/umap/locale/is.json +151 -145
  122. umap/static/umap/locale/it.js +13 -7
  123. umap/static/umap/locale/it.json +13 -7
  124. umap/static/umap/locale/ja.js +13 -7
  125. umap/static/umap/locale/ja.json +13 -7
  126. umap/static/umap/locale/ko.js +13 -7
  127. umap/static/umap/locale/ko.json +13 -7
  128. umap/static/umap/locale/lt.js +13 -7
  129. umap/static/umap/locale/lt.json +13 -7
  130. umap/static/umap/locale/ms.js +13 -7
  131. umap/static/umap/locale/ms.json +13 -7
  132. umap/static/umap/locale/nl.js +12 -7
  133. umap/static/umap/locale/nl.json +12 -7
  134. umap/static/umap/locale/no.js +13 -7
  135. umap/static/umap/locale/no.json +13 -7
  136. umap/static/umap/locale/pl.js +13 -7
  137. umap/static/umap/locale/pl.json +13 -7
  138. umap/static/umap/locale/pl_PL.json +13 -7
  139. umap/static/umap/locale/pt.js +12 -7
  140. umap/static/umap/locale/pt.json +12 -7
  141. umap/static/umap/locale/pt_BR.js +13 -7
  142. umap/static/umap/locale/pt_BR.json +13 -7
  143. umap/static/umap/locale/pt_PT.js +13 -7
  144. umap/static/umap/locale/pt_PT.json +13 -7
  145. umap/static/umap/locale/ro.js +13 -7
  146. umap/static/umap/locale/ro.json +13 -7
  147. umap/static/umap/locale/ru.js +13 -7
  148. umap/static/umap/locale/ru.json +13 -7
  149. umap/static/umap/locale/sk_SK.js +13 -7
  150. umap/static/umap/locale/sk_SK.json +13 -7
  151. umap/static/umap/locale/sl.js +13 -7
  152. umap/static/umap/locale/sl.json +13 -7
  153. umap/static/umap/locale/sr.js +13 -7
  154. umap/static/umap/locale/sr.json +13 -7
  155. umap/static/umap/locale/sv.js +13 -7
  156. umap/static/umap/locale/sv.json +13 -7
  157. umap/static/umap/locale/th_TH.js +13 -7
  158. umap/static/umap/locale/th_TH.json +13 -7
  159. umap/static/umap/locale/tr.js +13 -7
  160. umap/static/umap/locale/tr.json +13 -7
  161. umap/static/umap/locale/uk_UA.js +13 -7
  162. umap/static/umap/locale/uk_UA.json +13 -7
  163. umap/static/umap/locale/vi.js +13 -7
  164. umap/static/umap/locale/vi.json +13 -7
  165. umap/static/umap/locale/vi_VN.json +13 -7
  166. umap/static/umap/locale/zh.js +13 -7
  167. umap/static/umap/locale/zh.json +13 -7
  168. umap/static/umap/locale/zh_CN.json +13 -7
  169. umap/static/umap/locale/zh_TW.Big5.json +13 -7
  170. umap/static/umap/locale/zh_TW.js +19 -13
  171. umap/static/umap/locale/zh_TW.json +19 -13
  172. umap/static/umap/map.css +58 -28
  173. umap/static/umap/unittests/sync.js +0 -57
  174. umap/static/umap/unittests/utils.js +47 -0
  175. umap/static/umap/vars.css +5 -2
  176. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  177. umap/sync/payloads.py +3 -2
  178. umap/templates/auth/user_detail.html +1 -1
  179. umap/templates/auth/user_stars.html +1 -1
  180. umap/templates/umap/content.html +17 -12
  181. umap/templates/umap/home.html +7 -5
  182. umap/templates/umap/map_fragment.html +1 -1
  183. umap/templates/umap/map_list.html +20 -13
  184. umap/templates/umap/search.html +7 -3
  185. umap/templates/umap/search_bar.html +13 -11
  186. umap/templates/umap/team_detail.html +1 -1
  187. umap/tests/base.py +2 -1
  188. umap/tests/fixtures/remote_data.umap +55 -0
  189. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  190. umap/tests/integration/test_browser.py +1 -3
  191. umap/tests/integration/test_conditional_rules.py +3 -0
  192. umap/tests/integration/test_edit_datalayer.py +2 -7
  193. umap/tests/integration/test_edit_map.py +15 -0
  194. umap/tests/integration/test_edit_polygon.py +1 -2
  195. umap/tests/integration/test_import.py +59 -2
  196. umap/tests/integration/test_optimistic_merge.py +4 -3
  197. umap/tests/integration/test_owned_map.py +0 -1
  198. umap/tests/integration/test_save.py +2 -4
  199. umap/tests/integration/test_undo_redo.py +267 -0
  200. umap/tests/integration/test_websocket_sync.py +78 -11
  201. umap/tests/settings.py +1 -3
  202. umap/tests/test_datalayer_s3.py +1 -0
  203. umap/tests/test_map_views.py +1 -0
  204. umap/tests/test_views.py +34 -0
  205. umap/utils.py +1 -1
  206. umap/views.py +23 -2
  207. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
  208. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
  209. umap/static/umap/js/modules/saving.js +0 -52
  210. umap/static/umap/test/.eslintrc +0 -21
  211. umap/static/umap/test/DataLayer.js +0 -463
  212. umap/static/umap/test/Feature.js +0 -131
  213. umap/static/umap/test/Map.js +0 -37
  214. umap/static/umap/test/Marker.js +0 -126
  215. umap/static/umap/test/Polygon.js +0 -111
  216. umap/static/umap/test/Polyline.js +0 -286
  217. umap/static/umap/test/Util.js +0 -28
  218. umap/static/umap/test/_pre.js +0 -455
  219. umap/static/umap/test/index.html +0 -139
  220. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
  221. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
@@ -4,14 +4,14 @@
4
4
  #
5
5
  # Translators:
6
6
  # Moon Ika, 2020
7
- # Moon Ika, 2020
7
+ # Moon Ika, 2020,2025
8
8
  msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
12
+ "POT-Creation-Date: 2025-03-07 15:18+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
- "Last-Translator: Moon Ika, 2020\n"
14
+ "Last-Translator: Moon Ika, 2020,2025\n"
15
15
  "Language-Team: Estonian (http://app.transifex.com/openstreetmap/umap/language/et/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,21 +21,29 @@ msgstr ""
21
21
 
22
22
  #: admin.py:16
23
23
  msgid "CSV Export"
24
- msgstr ""
24
+ msgstr "CSV eksport"
25
25
 
26
26
  #: decorators.py:60
27
27
  msgid "This map is not publicly available"
28
- msgstr ""
28
+ msgstr "See kaart pole avalikult kättesaadav"
29
29
 
30
- #: middleware.py:13
30
+ #: middleware.py:19
31
31
  msgid "Site is readonly for maintenance"
32
32
  msgstr "Sait on hoolduseks kirjutuskaitstud"
33
33
 
34
+ #: middleware.py:34
35
+ #, python-format
36
+ msgid ""
37
+ "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
38
+ "Please configure another provider below before losing access to your account"
39
+ " and maps. Then, please logout and login again with the new provider."
40
+ msgstr ""
41
+
34
42
  #: models.py:60 models.py:79
35
43
  msgid "name"
36
44
  msgstr "nimi"
37
45
 
38
- #: models.py:62 models.py:475
46
+ #: models.py:62 models.py:485
39
47
  msgid "description"
40
48
  msgstr "kirjeldus"
41
49
 
@@ -55,33 +63,33 @@ msgstr ""
55
63
  msgid "Order of the tilelayers in the edit box"
56
64
  msgstr ""
57
65
 
58
- #: models.py:175 models.py:469
66
+ #: models.py:175 models.py:479
59
67
  msgid "Only editable with secret edit link"
60
68
  msgstr "Muudetav ainult salajase muutmislingiga"
61
69
 
62
- #: models.py:176 models.py:470
70
+ #: models.py:176 models.py:480
63
71
  msgid "Everyone can edit"
64
72
  msgstr "Igaüks saab muuta"
65
73
 
66
- #: models.py:179 models.py:463
74
+ #: models.py:179 models.py:473
67
75
  msgid "Everyone"
68
- msgstr ""
76
+ msgstr "Kõik"
69
77
 
70
- #: models.py:180 models.py:189 models.py:464
78
+ #: models.py:180 models.py:189 models.py:474
71
79
  msgid "Editors and team only"
72
- msgstr ""
80
+ msgstr "Ainult toimetajad ja meeskond"
73
81
 
74
- #: models.py:181 models.py:465
82
+ #: models.py:181 models.py:475
75
83
  msgid "Owner only"
76
- msgstr ""
84
+ msgstr "Ainult omanik"
77
85
 
78
86
  #: models.py:184
79
87
  msgid "Draft (private)"
80
- msgstr ""
88
+ msgstr "Mustand (privaatne)"
81
89
 
82
90
  #: models.py:185
83
91
  msgid "Everyone (public)"
84
- msgstr ""
92
+ msgstr "Kõik (avalik)"
85
93
 
86
94
  #: models.py:188
87
95
  msgid "Anyone with link"
@@ -89,11 +97,11 @@ msgstr ""
89
97
 
90
98
  #: models.py:190
91
99
  msgid "Blocked"
92
- msgstr ""
100
+ msgstr "Blokeeritud"
93
101
 
94
- #: models.py:191
102
+ #: models.py:191 models.py:469
95
103
  msgid "Deleted"
96
- msgstr ""
104
+ msgstr "Kustutatud"
97
105
 
98
106
  #: models.py:194
99
107
  msgid "center"
@@ -109,7 +117,7 @@ msgstr "määra asukoht"
109
117
 
110
118
  #: models.py:197
111
119
  msgid "Locate user on load?"
112
- msgstr "Määra kasutaja asukoht laadimisel?"
120
+ msgstr "Määra laadimisel kasutaja asukoht?"
113
121
 
114
122
  #: models.py:201
115
123
  msgid "Choose the map licence."
@@ -129,33 +137,33 @@ msgstr "toimetajad"
129
137
 
130
138
  #: models.py:223
131
139
  msgid "team"
132
- msgstr ""
140
+ msgstr "meeskond"
133
141
 
134
- #: models.py:229 models.py:491
142
+ #: models.py:229 models.py:501
135
143
  msgid "edit status"
136
144
  msgstr "muutmise staatus"
137
145
 
138
- #: models.py:234
146
+ #: models.py:234 models.py:506
139
147
  msgid "share status"
140
148
  msgstr "jagamise staatus"
141
149
 
142
- #: models.py:237 models.py:486
150
+ #: models.py:237 models.py:496
143
151
  msgid "settings"
144
152
  msgstr "seaded"
145
153
 
146
- #: models.py:402
154
+ #: models.py:407
147
155
  msgid "Clone of"
148
156
  msgstr "Koopia"
149
157
 
150
- #: models.py:462 models.py:468
158
+ #: models.py:468 models.py:472 models.py:478
151
159
  msgid "Inherit"
152
160
  msgstr ""
153
161
 
154
- #: models.py:481
162
+ #: models.py:491
155
163
  msgid "display on load"
156
164
  msgstr "kuva laadimisel"
157
165
 
158
- #: models.py:482
166
+ #: models.py:492
159
167
  msgid "Display this layer on load."
160
168
  msgstr "Kuva seda kihti laadimisel"
161
169
 
@@ -168,46 +176,60 @@ msgstr ""
168
176
 
169
177
  #: templates/403.html:10 templates/404.html:8
170
178
  msgid "← Go to the homepage"
171
- msgstr ""
179
+ msgstr "← Mine avalehele"
172
180
 
173
181
  #: templates/404.html:7
174
182
  msgid "404 Page Not Found"
183
+ msgstr "404 Lehte ei leitud"
184
+
185
+ #: templates/auth/user_detail.html:6
186
+ #, python-format
187
+ msgid "%(current_user)s’s maps"
175
188
  msgstr ""
176
189
 
177
- #: templates/auth/user_detail.html:8
190
+ #: templates/auth/user_detail.html:12
178
191
  #, python-format
179
192
  msgid "Browse %(current_user)s's maps"
180
193
  msgstr "Sirvi kasutaja %(current_user)s kaarte"
181
194
 
182
- #: templates/auth/user_detail.html:17
195
+ #: templates/auth/user_detail.html:21
183
196
  #, python-format
184
197
  msgid "%(current_user)s has no maps."
185
198
  msgstr "Kasutajal %(current_user)s pole kaarte."
186
199
 
187
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
200
+ #: templates/auth/user_form.html:6
201
+ msgid "My Profile"
202
+ msgstr "Minu profiil"
203
+
204
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
188
205
  msgid "Save"
189
- msgstr ""
206
+ msgstr "Salvesta"
190
207
 
191
- #: templates/auth/user_form.html:27
208
+ #: templates/auth/user_form.html:30
192
209
  msgid "Your current providers"
193
210
  msgstr ""
194
211
 
195
- #: templates/auth/user_form.html:39
212
+ #: templates/auth/user_form.html:44
196
213
  msgid "Connect to another provider"
197
214
  msgstr ""
198
215
 
199
- #: templates/auth/user_form.html:42
216
+ #: templates/auth/user_form.html:47
200
217
  msgid ""
201
218
  "It's a good habit to connect your account to more than one provider, in case"
202
219
  " one provider becomes unavailable, temporarily or even permanently."
203
220
  msgstr ""
204
221
 
205
- #: templates/auth/user_stars.html:8
222
+ #: templates/auth/user_stars.html:6
223
+ #, python-format
224
+ msgid "%(current_user)s’s starred maps"
225
+ msgstr ""
226
+
227
+ #: templates/auth/user_stars.html:12
206
228
  #, python-format
207
229
  msgid "Browse %(current_user)s's starred maps"
208
230
  msgstr ""
209
231
 
210
- #: templates/auth/user_stars.html:17
232
+ #: templates/auth/user_stars.html:21
211
233
  #, python-format
212
234
  msgid "%(current_user)s has no starred maps yet."
213
235
  msgstr ""
@@ -224,11 +246,11 @@ msgstr "Logi sisse"
224
246
 
225
247
  #: templates/registration/login.html:22
226
248
  msgid "To save and easily find your maps, identify yourself."
227
- msgstr ""
249
+ msgstr "Tuvasta end kaartide salvestamiseks ja kiireks leidmiseks."
228
250
 
229
251
  #: templates/registration/login.html:25
230
252
  msgid "Please log in with your account:"
231
- msgstr ""
253
+ msgstr "Palun logi oma kontoga sisse:"
232
254
 
233
255
  #: templates/registration/login.html:42
234
256
  msgid "Username"
@@ -240,7 +262,11 @@ msgstr "Salasõna"
240
262
 
241
263
  #: templates/registration/login.html:52
242
264
  msgid "Please choose a provider:"
243
- msgstr ""
265
+ msgstr "Vali teenusepakkuja:"
266
+
267
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
268
+ msgid "About"
269
+ msgstr "Teave"
244
270
 
245
271
  #: templates/umap/about_summary.html:12
246
272
  #, python-format
@@ -307,23 +333,23 @@ msgstr ""
307
333
 
308
334
  #: templates/umap/components/alerts/alert.html:37
309
335
  msgid "Here is your secret link to edit the map, please keep it safe:"
310
- msgstr ""
336
+ msgstr "Siin on sinu salalink kaardi toimetamiseks, hoia seda salajas:"
311
337
 
312
338
  #: templates/umap/components/alerts/alert.html:41
313
339
  msgid "Copy link"
314
- msgstr ""
340
+ msgstr "Kopeeri link"
315
341
 
316
342
  #: templates/umap/components/alerts/alert.html:48
317
343
  msgid "Enter your email address to receive the secret link:"
318
- msgstr ""
344
+ msgstr "Sisesta salalingi saamiseks oma e-posti aadress:"
319
345
 
320
346
  #: templates/umap/components/alerts/alert.html:54
321
347
  msgid "Email"
322
- msgstr ""
348
+ msgstr "E-post"
323
349
 
324
350
  #: templates/umap/components/alerts/alert.html:57
325
351
  msgid "Send me the link"
326
- msgstr ""
352
+ msgstr "Saada mulle link"
327
353
 
328
354
  #: templates/umap/components/alerts/alert.html:81
329
355
  msgid "See their edits in another tab"
@@ -354,11 +380,11 @@ msgstr ""
354
380
 
355
381
  #: templates/umap/content_footer.html:5
356
382
  msgid "An OpenStreetMap project"
357
- msgstr ""
383
+ msgstr "OpenStreetMapi projekt"
358
384
 
359
385
  #: templates/umap/content_footer.html:6
360
386
  msgid "version"
361
- msgstr ""
387
+ msgstr "versioon"
362
388
 
363
389
  #: templates/umap/content_footer.html:7
364
390
  msgid "Hosted by"
@@ -366,32 +392,32 @@ msgstr ""
366
392
 
367
393
  #: templates/umap/content_footer.html:8
368
394
  msgid "Contact"
369
- msgstr ""
395
+ msgstr "Kontakt"
370
396
 
371
397
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
372
398
  msgid "Help"
373
- msgstr ""
399
+ msgstr "Abi"
374
400
 
375
401
  #: templates/umap/dashboard_menu.html:6
376
402
  #, python-format
377
403
  msgid "My Maps (%(count)s)"
378
- msgstr ""
404
+ msgstr "Minu kaardid (%(count)s)"
379
405
 
380
406
  #: templates/umap/dashboard_menu.html:8
381
407
  msgid "My Maps"
382
- msgstr ""
408
+ msgstr "Minu kaardid"
383
409
 
384
410
  #: templates/umap/dashboard_menu.html:12
385
411
  msgid "My profile"
386
- msgstr ""
412
+ msgstr "Minu profiil"
387
413
 
388
414
  #: templates/umap/dashboard_menu.html:15
389
415
  msgid "My teams"
390
- msgstr ""
416
+ msgstr "Minu meeskonnad"
391
417
 
392
418
  #: templates/umap/home.html:14
393
419
  msgid "Map of the uMaps"
394
- msgstr "uMaps'i kaart"
420
+ msgstr "uMapsi kaart"
395
421
 
396
422
  #: templates/umap/home.html:24
397
423
  msgid "Get inspired, browse maps"
@@ -401,7 +427,7 @@ msgstr "Sirvi kaarte ja ammuta inspiratsiooni"
401
427
  msgid "You are logged in. Continuing..."
402
428
  msgstr "Oled sisse logitud. Jätkamine..."
403
429
 
404
- #: templates/umap/map_list.html:11 views.py:437
430
+ #: templates/umap/map_list.html:11 views.py:438
405
431
  msgid "by"
406
432
  msgstr "kasutajalt"
407
433
 
@@ -409,31 +435,31 @@ msgstr "kasutajalt"
409
435
  msgid "More"
410
436
  msgstr "Rohkem"
411
437
 
412
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
438
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
413
439
  msgid "Name"
414
- msgstr ""
440
+ msgstr "Nimi"
415
441
 
416
442
  #: templates/umap/map_table.html:11
417
443
  msgid "Preview"
418
- msgstr ""
444
+ msgstr "Eelvaade"
419
445
 
420
446
  #: templates/umap/map_table.html:14
421
447
  msgid "Who can see"
422
- msgstr ""
448
+ msgstr "Kes saavad vaadata"
423
449
 
424
450
  #: templates/umap/map_table.html:17
425
451
  msgid "Who can edit"
426
- msgstr ""
452
+ msgstr "Kes saavad toimetada"
427
453
 
428
454
  #: templates/umap/map_table.html:20
429
455
  msgid "Last save"
430
- msgstr ""
456
+ msgstr "Viimane salvestamine"
431
457
 
432
458
  #: templates/umap/map_table.html:23
433
459
  msgid "Owner"
434
- msgstr ""
460
+ msgstr "Omanik"
435
461
 
436
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
462
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
437
463
  msgid "Actions"
438
464
  msgstr ""
439
465
 
@@ -443,16 +469,16 @@ msgstr ""
443
469
 
444
470
  #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
445
471
  msgid "Share"
446
- msgstr ""
472
+ msgstr "Jaga"
447
473
 
448
474
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
449
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
475
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
450
476
  msgid "Edit"
451
- msgstr ""
477
+ msgstr "Redigeeri"
452
478
 
453
479
  #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
454
480
  msgid "Download"
455
- msgstr ""
481
+ msgstr "Laadi alla"
456
482
 
457
483
  #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
458
484
  msgid "Clone"
@@ -460,38 +486,38 @@ msgstr ""
460
486
 
461
487
  #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
462
488
  msgid "Delete"
463
- msgstr ""
489
+ msgstr "Kustuta"
464
490
 
465
491
  #: templates/umap/map_table.html:117
466
492
  msgid "first"
467
- msgstr ""
493
+ msgstr "esimene"
468
494
 
469
495
  #: templates/umap/map_table.html:118
470
496
  msgid "previous"
471
- msgstr ""
497
+ msgstr "eelmine"
472
498
 
473
499
  #: templates/umap/map_table.html:126
474
500
  #, python-format
475
501
  msgid "Page %(maps_number)s of %(num_pages)s"
476
- msgstr ""
502
+ msgstr "%(maps_number)s. lehekülg %(num_pages)s-st"
477
503
 
478
504
  #: templates/umap/map_table.html:131
479
505
  msgid "next"
480
- msgstr ""
506
+ msgstr "järgmine"
481
507
 
482
508
  #: templates/umap/map_table.html:132
483
509
  msgid "last"
484
- msgstr ""
510
+ msgstr "viimane"
485
511
 
486
512
  #: templates/umap/map_table.html:140
487
513
  #, python-format
488
514
  msgid "Lines per page: %(per_page)s"
489
- msgstr ""
515
+ msgstr "Jooni leheküljel: %(per_page)s"
490
516
 
491
517
  #: templates/umap/map_table.html:145
492
518
  #, python-format
493
519
  msgid "%(count)s maps"
494
- msgstr ""
520
+ msgstr "%(count)s kaarti"
495
521
 
496
522
  #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
497
523
  msgid "My Dashboard"
@@ -509,10 +535,6 @@ msgstr "Logi sisse"
509
535
  msgid "Sign in"
510
536
  msgstr "Loo konto"
511
537
 
512
- #: templates/umap/navigation.html:22
513
- msgid "About"
514
- msgstr "Teave"
515
-
516
538
  #: templates/umap/navigation.html:30
517
539
  msgid "Change password"
518
540
  msgstr "Muuda salasõna"
@@ -521,88 +543,107 @@ msgstr "Muuda salasõna"
521
543
  msgid "Log out"
522
544
  msgstr "Logi välja"
523
545
 
524
- #: templates/umap/password_change.html:7
546
+ #: templates/umap/password_change.html:6
547
+ #: templates/umap/password_change.html:11
525
548
  msgid "Password change"
526
549
  msgstr "Salasõna vahetamine"
527
550
 
528
- #: templates/umap/password_change.html:10
551
+ #: templates/umap/password_change.html:14
529
552
  msgid ""
530
553
  "Please enter your old password, for security's sake, and then enter your new"
531
554
  " password twice so we can verify you typed it in correctly."
532
555
  msgstr "Sisesta palun oma vana salasõna, seejärel kaks korda uus salasõna."
533
556
 
534
- #: templates/umap/password_change.html:17
557
+ #: templates/umap/password_change.html:21
535
558
  msgid "Old password"
536
559
  msgstr "Vana salasõna"
537
560
 
538
- #: templates/umap/password_change.html:22
561
+ #: templates/umap/password_change.html:26
539
562
  msgid "New password"
540
563
  msgstr "Uus salasõna"
541
564
 
542
- #: templates/umap/password_change.html:26
565
+ #: templates/umap/password_change.html:30
543
566
  msgid "New password confirmation"
544
567
  msgstr "Uue salasõna kinnitamine"
545
568
 
546
- #: templates/umap/password_change.html:27
569
+ #: templates/umap/password_change.html:31
547
570
  msgid "Change my password"
548
571
  msgstr "Muuda salasõna"
549
572
 
550
- #: templates/umap/password_change_done.html:7
573
+ #: templates/umap/password_change_done.html:6
574
+ #: templates/umap/password_change_done.html:11
551
575
  msgid "Password change successful"
552
576
  msgstr "Salasõna vahetamine õnnestus"
553
577
 
554
- #: templates/umap/password_change_done.html:10
578
+ #: templates/umap/password_change_done.html:14
555
579
  msgid "Your password was changed."
556
580
  msgstr "Sinu salasõna on muudetud."
557
581
 
558
- #: templates/umap/search.html:15
582
+ #: templates/umap/search.html:6
583
+ msgid "Explore maps"
584
+ msgstr ""
585
+
586
+ #: templates/umap/search.html:19
559
587
  #, python-format
560
588
  msgid "%(count)s map found:"
561
589
  msgid_plural "%(count)s maps found:"
562
590
  msgstr[0] ""
563
591
  msgstr[1] ""
564
592
 
565
- #: templates/umap/search.html:24
593
+ #: templates/umap/search.html:28
566
594
  msgid "No map found."
567
- msgstr ""
595
+ msgstr "Kaarti ei leitud."
568
596
 
569
- #: templates/umap/search.html:29
597
+ #: templates/umap/search.html:33
570
598
  msgid "Latest created maps"
571
- msgstr ""
599
+ msgstr "Viimati loodud kaardid."
572
600
 
573
601
  #: templates/umap/search_bar.html:4
574
602
  msgid "Search maps"
575
603
  msgstr "Otsi kaarte"
576
604
 
577
- #: templates/umap/search_bar.html:15
605
+ #: templates/umap/search_bar.html:16
578
606
  msgid "Search"
579
607
  msgstr "Otsi"
580
608
 
581
- #: templates/umap/team_detail.html:10
609
+ #: templates/umap/team_confirm_delete.html:6
610
+ msgid "Team deletion"
611
+ msgstr ""
612
+
613
+ #: templates/umap/team_detail.html:6
614
+ #, python-format
615
+ msgid "%(current_team)s’s maps"
616
+ msgstr ""
617
+
618
+ #: templates/umap/team_detail.html:14
582
619
  #, python-format
583
620
  msgid "Browse %(current_team)s's maps"
584
621
  msgstr ""
585
622
 
586
- #: templates/umap/team_detail.html:22
623
+ #: templates/umap/team_detail.html:26
587
624
  #, python-format
588
625
  msgid "%(current_team)s has no public maps."
589
626
  msgstr ""
590
627
 
591
- #: templates/umap/team_form.html:24
592
- msgid "Delete this team"
628
+ #: templates/umap/team_form.html:6
629
+ msgid "Create or edit a team"
593
630
  msgstr ""
594
631
 
595
- #: templates/umap/team_form.html:47
632
+ #: templates/umap/team_form.html:28
633
+ msgid "Delete this team"
634
+ msgstr "Kustuta see meeskond"
635
+
636
+ #: templates/umap/team_form.html:51
596
637
  msgid "Add user"
597
- msgstr ""
638
+ msgstr "Lisa kasutaja"
598
639
 
599
640
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
600
641
  msgid "Search my maps"
601
- msgstr ""
642
+ msgstr "Otsi minu kaarte"
602
643
 
603
644
  #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
604
645
  msgid "Map’s title"
605
- msgstr ""
646
+ msgstr "Kaardi pealkiri"
606
647
 
607
648
  #: templates/umap/user_dashboard.html:30
608
649
  #, python-format
@@ -613,78 +654,82 @@ msgstr ""
613
654
  msgid "You have no map yet."
614
655
  msgstr ""
615
656
 
616
- #: templates/umap/user_teams.html:17
657
+ #: templates/umap/user_teams.html:6
658
+ msgid "My Teams"
659
+ msgstr "Minu meeskonnad"
660
+
661
+ #: templates/umap/user_teams.html:21
617
662
  msgid "Users"
618
- msgstr ""
663
+ msgstr "Kasutajad"
619
664
 
620
- #: templates/umap/user_teams.html:48
665
+ #: templates/umap/user_teams.html:52
621
666
  msgid "New team"
622
- msgstr ""
667
+ msgstr "Uus meeskond"
623
668
 
624
- #: views.py:234
669
+ #: views.py:235
625
670
  msgid "Cannot delete a team with more than one member"
626
671
  msgstr ""
627
672
 
628
- #: views.py:238
673
+ #: views.py:239
629
674
  #, python-format
630
675
  msgid "Team “%(name)s” has been deleted"
631
- msgstr ""
676
+ msgstr "Meeskond “%(name)s” on kustutatud"
632
677
 
633
- #: views.py:442
678
+ #: views.py:443
634
679
  msgid "View the map"
635
680
  msgstr "Vaata kaarti"
636
681
 
637
- #: views.py:825
682
+ #: views.py:839
638
683
  msgid "See full screen"
639
- msgstr ""
684
+ msgstr "Vaata täisekraanil"
640
685
 
641
- #: views.py:968
686
+ #: views.py:982
642
687
  msgid "Map editors updated with success!"
643
688
  msgstr "Kaardi toimetajaid uuendati edukalt!"
644
689
 
645
- #: views.py:1004
690
+ #: views.py:1018
646
691
  #, python-format
647
692
  msgid "The uMap edit link for your map: %(map_name)s"
648
- msgstr ""
693
+ msgstr "Redigeerimislink sinu uMapi kaardile: %(map_name)s"
649
694
 
650
- #: views.py:1007
695
+ #: views.py:1021
651
696
  #, python-format
652
697
  msgid "Here is your secret edit link: %(link)s"
653
- msgstr ""
698
+ msgstr "Siin on sinu salajane redigeerimislink: %(link)s"
654
699
 
655
- #: views.py:1014
700
+ #: views.py:1028
656
701
  #, python-format
657
702
  msgid "Can't send email to %(email)s"
658
- msgstr ""
703
+ msgstr "Ei saa saata e-kirja aadressile %(email)s"
659
704
 
660
- #: views.py:1017
705
+ #: views.py:1031
661
706
  #, python-format
662
707
  msgid "Email sent to %(email)s"
663
- msgstr ""
708
+ msgstr "E-kiri saadetud aadressile %(email)s"
664
709
 
665
- #: views.py:1028
710
+ #: views.py:1042
666
711
  msgid "Only its owner can delete the map."
667
- msgstr "Kaarti saab kustutada vaid selle omanik."
712
+ msgstr "Kaardi saab kustutada vaid selle omanik."
668
713
 
669
- #: views.py:1031
714
+ #: views.py:1045
670
715
  msgid "Map successfully deleted."
671
- msgstr ""
716
+ msgstr "Kaart on kustutatud."
672
717
 
673
- #: views.py:1057
718
+ #: views.py:1071
674
719
  #, python-format
675
720
  msgid ""
676
721
  "Your map has been cloned! If you want to edit this map from another "
677
722
  "computer, please use this link: %(anonymous_url)s"
678
723
  msgstr "Sinu kaart on kopeeritud! Kui sa soovid oma kaarti muuta teisest arvutist, kasuta palun seda linki: %(anonymous_url)s"
679
724
 
680
- #: views.py:1062
725
+ #: views.py:1076
681
726
  msgid "Congratulations, your map has been cloned!"
682
727
  msgstr "Sinu kaart on kopeeritud!"
683
728
 
684
- #: views.py:1313
729
+ #: views.py:1330
685
730
  msgid "Layer successfully deleted."
686
731
  msgstr "Kiht on kustutatud."
687
732
 
688
- #: views.py:1335
733
+ #: views.py:1352
689
734
  msgid "Permissions updated with success!"
690
735
  msgstr ""