umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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 (193) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +6 -1
  3. umap/context_processors.py +2 -1
  4. umap/decorators.py +13 -2
  5. umap/forms.py +26 -2
  6. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/br/LC_MESSAGES/django.po +252 -146
  8. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  9. umap/locale/ca/LC_MESSAGES/django.po +274 -162
  10. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
  12. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/de/LC_MESSAGES/django.po +299 -187
  14. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/el/LC_MESSAGES/django.po +215 -159
  16. umap/locale/en/LC_MESSAGES/django.po +211 -155
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +255 -144
  19. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/eu/LC_MESSAGES/django.po +254 -198
  21. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/fa_IR/LC_MESSAGES/django.po +346 -234
  23. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fr/LC_MESSAGES/django.po +216 -160
  25. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/hu/LC_MESSAGES/django.po +215 -159
  27. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/it/LC_MESSAGES/django.po +252 -146
  29. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/ms/LC_MESSAGES/django.po +252 -146
  31. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/pl/LC_MESSAGES/django.po +254 -148
  33. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/pt/LC_MESSAGES/django.po +215 -159
  35. umap/locale/sv/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/sv/LC_MESSAGES/django.po +254 -143
  37. umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
  39. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
  41. umap/migrations/0022_add_team.py +94 -0
  42. umap/models.py +45 -10
  43. umap/settings/__init__.py +2 -0
  44. umap/settings/base.py +3 -2
  45. umap/static/umap/base.css +32 -41
  46. umap/static/umap/content.css +19 -25
  47. umap/static/umap/css/icon.css +63 -37
  48. umap/static/umap/css/importers.css +1 -1
  49. umap/static/umap/css/slideshow.css +7 -5
  50. umap/static/umap/css/tableeditor.css +4 -3
  51. umap/static/umap/img/16-white.svg +1 -4
  52. umap/static/umap/img/16.svg +2 -6
  53. umap/static/umap/img/24-white.svg +4 -4
  54. umap/static/umap/img/24.svg +6 -6
  55. umap/static/umap/img/source/16-white.svg +2 -5
  56. umap/static/umap/img/source/16.svg +3 -7
  57. umap/static/umap/img/source/24-white.svg +7 -14
  58. umap/static/umap/img/source/24.svg +10 -17
  59. umap/static/umap/js/components/alerts/alert.css +20 -8
  60. umap/static/umap/js/modules/autocomplete.js +3 -3
  61. umap/static/umap/js/modules/browser.js +4 -3
  62. umap/static/umap/js/modules/caption.js +9 -11
  63. umap/static/umap/js/modules/data/features.js +994 -0
  64. umap/static/umap/js/modules/data/layer.js +1210 -0
  65. umap/static/umap/js/modules/formatter.js +12 -3
  66. umap/static/umap/js/modules/global.js +21 -5
  67. umap/static/umap/js/modules/permissions.js +280 -0
  68. umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
  69. umap/static/umap/js/modules/rendering/layers/base.js +105 -0
  70. umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
  71. umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
  72. umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
  73. umap/static/umap/js/modules/rendering/popup.js +99 -0
  74. umap/static/umap/js/modules/rendering/template.js +217 -0
  75. umap/static/umap/js/modules/rendering/ui.js +573 -0
  76. umap/static/umap/js/modules/schema.js +24 -0
  77. umap/static/umap/js/modules/share.js +66 -45
  78. umap/static/umap/js/modules/sync/updaters.js +9 -10
  79. umap/static/umap/js/modules/tableeditor.js +7 -7
  80. umap/static/umap/js/modules/ui/dialog.js +8 -4
  81. umap/static/umap/js/modules/utils.js +22 -13
  82. umap/static/umap/js/umap.controls.js +79 -146
  83. umap/static/umap/js/umap.core.js +9 -9
  84. umap/static/umap/js/umap.forms.js +32 -12
  85. umap/static/umap/js/umap.js +65 -63
  86. umap/static/umap/locale/br.js +35 -35
  87. umap/static/umap/locale/br.json +35 -35
  88. umap/static/umap/locale/ca.js +50 -50
  89. umap/static/umap/locale/ca.json +50 -50
  90. umap/static/umap/locale/de.js +136 -136
  91. umap/static/umap/locale/de.json +136 -136
  92. umap/static/umap/locale/el.js +47 -47
  93. umap/static/umap/locale/el.json +47 -47
  94. umap/static/umap/locale/en.js +7 -1
  95. umap/static/umap/locale/en.json +7 -1
  96. umap/static/umap/locale/fa_IR.js +44 -44
  97. umap/static/umap/locale/fa_IR.json +44 -44
  98. umap/static/umap/locale/fr.js +8 -2
  99. umap/static/umap/locale/fr.json +8 -2
  100. umap/static/umap/locale/pt.js +17 -17
  101. umap/static/umap/locale/pt.json +17 -17
  102. umap/static/umap/locale/pt_PT.js +207 -207
  103. umap/static/umap/locale/pt_PT.json +207 -207
  104. umap/static/umap/locale/th_TH.js +25 -25
  105. umap/static/umap/locale/th_TH.json +25 -25
  106. umap/static/umap/map.css +107 -104
  107. umap/static/umap/nav.css +19 -10
  108. umap/static/umap/unittests/utils.js +230 -107
  109. umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
  110. umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
  111. umap/storage.py +1 -0
  112. umap/templates/404.html +5 -1
  113. umap/templates/500.html +3 -1
  114. umap/templates/auth/user_detail.html +8 -2
  115. umap/templates/auth/user_form.html +19 -10
  116. umap/templates/auth/user_stars.html +8 -2
  117. umap/templates/base.html +1 -0
  118. umap/templates/registration/login.html +18 -3
  119. umap/templates/umap/about.html +1 -0
  120. umap/templates/umap/about_summary.html +22 -7
  121. umap/templates/umap/components/alerts/alert.html +42 -21
  122. umap/templates/umap/content.html +2 -0
  123. umap/templates/umap/content_footer.html +6 -2
  124. umap/templates/umap/css.html +1 -0
  125. umap/templates/umap/dashboard_menu.html +15 -0
  126. umap/templates/umap/home.html +14 -4
  127. umap/templates/umap/js.html +4 -9
  128. umap/templates/umap/login_popup_end.html +10 -4
  129. umap/templates/umap/map_detail.html +8 -2
  130. umap/templates/umap/map_fragment.html +3 -1
  131. umap/templates/umap/map_init.html +2 -1
  132. umap/templates/umap/map_list.html +4 -3
  133. umap/templates/umap/map_table.html +36 -12
  134. umap/templates/umap/messages.html +0 -1
  135. umap/templates/umap/navigation.html +2 -1
  136. umap/templates/umap/password_change.html +5 -1
  137. umap/templates/umap/password_change_done.html +8 -2
  138. umap/templates/umap/search.html +8 -2
  139. umap/templates/umap/search_bar.html +1 -0
  140. umap/templates/umap/team_confirm_delete.html +19 -0
  141. umap/templates/umap/team_detail.html +27 -0
  142. umap/templates/umap/team_form.html +60 -0
  143. umap/templates/umap/user_dashboard.html +7 -9
  144. umap/templates/umap/user_teams.html +51 -0
  145. umap/tests/base.py +8 -1
  146. umap/tests/conftest.py +6 -0
  147. umap/tests/fixtures/test_circles_layer.geojson +219 -0
  148. umap/tests/fixtures/test_upload_georss.xml +20 -0
  149. umap/tests/integration/conftest.py +18 -4
  150. umap/tests/integration/helpers.py +12 -0
  151. umap/tests/integration/test_anonymous_owned_map.py +23 -0
  152. umap/tests/integration/test_basics.py +29 -0
  153. umap/tests/integration/test_caption.py +20 -0
  154. umap/tests/integration/test_circles_layer.py +69 -0
  155. umap/tests/integration/test_draw_polygon.py +110 -13
  156. umap/tests/integration/test_draw_polyline.py +8 -18
  157. umap/tests/integration/test_edit_datalayer.py +1 -1
  158. umap/tests/integration/test_import.py +64 -5
  159. umap/tests/integration/test_owned_map.py +21 -13
  160. umap/tests/integration/test_team.py +47 -0
  161. umap/tests/integration/test_tilelayer.py +19 -2
  162. umap/tests/integration/test_view_marker.py +28 -1
  163. umap/tests/integration/test_websocket_sync.py +5 -5
  164. umap/tests/test_datalayer.py +32 -7
  165. umap/tests/test_datalayer_views.py +1 -1
  166. umap/tests/test_map.py +30 -4
  167. umap/tests/test_map_views.py +2 -2
  168. umap/tests/test_statics.py +40 -0
  169. umap/tests/test_team_views.py +131 -0
  170. umap/tests/test_views.py +15 -1
  171. umap/urls.py +23 -13
  172. umap/views.py +116 -10
  173. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
  174. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
  175. umap/static/umap/js/umap.datalayer.permissions.js +0 -70
  176. umap/static/umap/js/umap.features.js +0 -1290
  177. umap/static/umap/js/umap.layer.js +0 -1837
  178. umap/static/umap/js/umap.permissions.js +0 -208
  179. umap/static/umap/js/umap.popup.js +0 -341
  180. umap/static/umap/test/TableEditor.js +0 -104
  181. umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
  182. umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
  183. umap/static/umap/vendors/leaflet/leaflet.js +0 -6
  184. umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
  185. umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
  186. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
  187. umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
  188. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
  189. umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
  190. umap/tests/integration/test_statics.py +0 -47
  191. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
  192. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
  193. {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: PACKAGE VERSION\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2024-06-26 20:59+0000\n"
11
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
12
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,7 +25,7 @@ msgstr ""
25
25
  msgid "Everyone can edit"
26
26
  msgstr ""
27
27
 
28
- #: forms.py:69 models.py:389
28
+ #: forms.py:69 models.py:423
29
29
  msgid "Inherit"
30
30
  msgstr ""
31
31
 
@@ -33,242 +33,238 @@ msgstr ""
33
33
  msgid "Site is readonly for maintenance"
34
34
  msgstr ""
35
35
 
36
- #: models.py:53
36
+ #: models.py:54 models.py:73
37
37
  msgid "name"
38
38
  msgstr ""
39
39
 
40
- #: models.py:84
40
+ #: models.py:56 models.py:433
41
+ msgid "description"
42
+ msgstr ""
43
+
44
+ #: models.py:104
41
45
  msgid "details"
42
46
  msgstr ""
43
47
 
44
- #: models.py:85
48
+ #: models.py:105
45
49
  msgid "Link to a page where the licence is detailed."
46
50
  msgstr ""
47
51
 
48
- #: models.py:95
52
+ #: models.py:115
49
53
  msgid "URL template using OSM tile format"
50
54
  msgstr ""
51
55
 
52
- #: models.py:101
56
+ #: models.py:121
53
57
  msgid "Order of the tilelayers in the edit box"
54
58
  msgstr ""
55
59
 
56
- #: models.py:147 models.py:390
60
+ #: models.py:167 models.py:424
57
61
  msgid "Everyone"
58
62
  msgstr ""
59
63
 
60
- #: models.py:148 models.py:154 models.py:391
61
- msgid "Editors only"
64
+ #: models.py:168 models.py:174 models.py:425
65
+ msgid "Editors and team only"
62
66
  msgstr ""
63
67
 
64
- #: models.py:149 models.py:392
68
+ #: models.py:169 models.py:426
65
69
  msgid "Owner only"
66
70
  msgstr ""
67
71
 
68
- #: models.py:152
72
+ #: models.py:172
69
73
  msgid "Everyone (public)"
70
74
  msgstr ""
71
75
 
72
- #: models.py:153
76
+ #: models.py:173
73
77
  msgid "Anyone with link"
74
78
  msgstr ""
75
79
 
76
- #: models.py:155
80
+ #: models.py:175
77
81
  msgid "Blocked"
78
82
  msgstr ""
79
83
 
80
- #: models.py:158
84
+ #: models.py:178
81
85
  msgid "center"
82
86
  msgstr ""
83
87
 
84
- #: models.py:159
88
+ #: models.py:179
85
89
  msgid "zoom"
86
90
  msgstr ""
87
91
 
88
- #: models.py:161
92
+ #: models.py:181
89
93
  msgid "locate"
90
94
  msgstr ""
91
95
 
92
- #: models.py:161
96
+ #: models.py:181
93
97
  msgid "Locate user on load?"
94
98
  msgstr ""
95
99
 
96
- #: models.py:165
100
+ #: models.py:185
97
101
  msgid "Choose the map licence."
98
102
  msgstr ""
99
103
 
100
- #: models.py:166
104
+ #: models.py:186
101
105
  msgid "licence"
102
106
  msgstr ""
103
107
 
104
- #: models.py:177
108
+ #: models.py:197
105
109
  msgid "owner"
106
110
  msgstr ""
107
111
 
108
- #: models.py:181
112
+ #: models.py:201
109
113
  msgid "editors"
110
114
  msgstr ""
111
115
 
112
- #: models.py:186 models.py:413
116
+ #: models.py:207
117
+ msgid "team"
118
+ msgstr ""
119
+
120
+ #: models.py:213 models.py:447
113
121
  msgid "edit status"
114
122
  msgstr ""
115
123
 
116
- #: models.py:191
124
+ #: models.py:218
117
125
  msgid "share status"
118
126
  msgstr ""
119
127
 
120
- #: models.py:194 models.py:408
128
+ #: models.py:221 models.py:442
121
129
  msgid "settings"
122
130
  msgstr ""
123
131
 
124
- #: models.py:330
132
+ #: models.py:364
125
133
  msgid "Clone of"
126
134
  msgstr ""
127
135
 
128
- #: models.py:399
129
- msgid "description"
130
- msgstr ""
131
-
132
- #: models.py:403
136
+ #: models.py:437
133
137
  msgid "display on load"
134
138
  msgstr ""
135
139
 
136
- #: models.py:404
140
+ #: models.py:438
137
141
  msgid "Display this layer on load."
138
142
  msgstr ""
139
143
 
140
- #: templates/404.html:6
144
+ #: templates/404.html:8
141
145
  msgid "Take me to the home page"
142
146
  msgstr ""
143
147
 
144
- #: templates/auth/user_detail.html:5
148
+ #: templates/auth/user_detail.html:8
145
149
  #, python-format
146
150
  msgid "Browse %(current_user)s's maps"
147
151
  msgstr ""
148
152
 
149
- #: templates/auth/user_detail.html:12
153
+ #: templates/auth/user_detail.html:17
150
154
  #, python-format
151
155
  msgid "%(current_user)s has no maps."
152
156
  msgstr ""
153
157
 
154
- #: templates/auth/user_form.html:6
155
- msgid "My Maps"
156
- msgstr ""
157
-
158
- #: templates/auth/user_form.html:7
159
- msgid "My Profile"
160
- msgstr ""
161
-
162
- #: templates/auth/user_form.html:20
158
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
163
159
  msgid "Save"
164
160
  msgstr ""
165
161
 
166
- #: templates/auth/user_form.html:25
162
+ #: templates/auth/user_form.html:27
167
163
  msgid "Your current providers"
168
164
  msgstr ""
169
165
 
170
- #: templates/auth/user_form.html:31
166
+ #: templates/auth/user_form.html:39
171
167
  msgid "Connect to another provider"
172
168
  msgstr ""
173
169
 
174
- #: templates/auth/user_form.html:33
170
+ #: templates/auth/user_form.html:42
175
171
  msgid ""
176
172
  "It's a good habit to connect your account to more than one provider, in case "
177
173
  "one provider becomes unavailable, temporarily or even permanently."
178
174
  msgstr ""
179
175
 
180
- #: templates/auth/user_stars.html:5
176
+ #: templates/auth/user_stars.html:8
181
177
  #, python-format
182
178
  msgid "Browse %(current_user)s's starred maps"
183
179
  msgstr ""
184
180
 
185
- #: templates/auth/user_stars.html:12
181
+ #: templates/auth/user_stars.html:17
186
182
  #, python-format
187
183
  msgid "%(current_user)s has no starred maps yet."
188
184
  msgstr ""
189
185
 
190
- #: templates/base.html:12
186
+ #: templates/base.html:13
191
187
  msgid ""
192
188
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
193
189
  "them in your site."
194
190
  msgstr ""
195
191
 
196
- #: templates/registration/login.html:16
192
+ #: templates/registration/login.html:6 templates/registration/login.html:45
193
+ msgid "Login"
194
+ msgstr ""
195
+
196
+ #: templates/registration/login.html:24
197
197
  msgid "Please log in with your account"
198
198
  msgstr ""
199
199
 
200
- #: templates/registration/login.html:28
200
+ #: templates/registration/login.html:41
201
201
  msgid "Username"
202
202
  msgstr ""
203
203
 
204
- #: templates/registration/login.html:31
204
+ #: templates/registration/login.html:44
205
205
  msgid "Password"
206
206
  msgstr ""
207
207
 
208
- #: templates/registration/login.html:32
209
- msgid "Login"
210
- msgstr ""
211
-
212
- #: templates/registration/login.html:37
208
+ #: templates/registration/login.html:51
213
209
  msgid "Please choose a provider"
214
210
  msgstr ""
215
211
 
216
- #: templates/umap/about_summary.html:11
212
+ #: templates/umap/about_summary.html:12
217
213
  #, python-format
218
214
  msgid ""
219
215
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
220
216
  "layers in a minute and embed them in your site."
221
217
  msgstr ""
222
218
 
223
- #: templates/umap/about_summary.html:21
219
+ #: templates/umap/about_summary.html:23
224
220
  msgid "Choose the layers of your map"
225
221
  msgstr ""
226
222
 
227
- #: templates/umap/about_summary.html:22
223
+ #: templates/umap/about_summary.html:26
228
224
  msgid "Add POIs: markers, lines, polygons..."
229
225
  msgstr ""
230
226
 
231
- #: templates/umap/about_summary.html:23
227
+ #: templates/umap/about_summary.html:29
232
228
  msgid "Manage POIs colours and icons"
233
229
  msgstr ""
234
230
 
235
- #: templates/umap/about_summary.html:24
231
+ #: templates/umap/about_summary.html:32
236
232
  msgid "Manage map options: display a minimap, locate user on load…"
237
233
  msgstr ""
238
234
 
239
- #: templates/umap/about_summary.html:25
235
+ #: templates/umap/about_summary.html:35
240
236
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
241
237
  msgstr ""
242
238
 
243
- #: templates/umap/about_summary.html:26
239
+ #: templates/umap/about_summary.html:38
244
240
  msgid "Choose the license for your data"
245
241
  msgstr ""
246
242
 
247
- #: templates/umap/about_summary.html:27
243
+ #: templates/umap/about_summary.html:41
248
244
  msgid "Embed and share your map"
249
245
  msgstr ""
250
246
 
251
- #: templates/umap/about_summary.html:37
247
+ #: templates/umap/about_summary.html:52
252
248
  #, python-format
253
249
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
254
250
  msgstr ""
255
251
 
256
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
257
- #: templates/umap/user_dashboard.html:42
252
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
253
+ #: templates/umap/user_dashboard.html:40
258
254
  msgid "Create a map"
259
255
  msgstr ""
260
256
 
261
- #: templates/umap/about_summary.html:51
257
+ #: templates/umap/about_summary.html:66
262
258
  msgid "Play with the demo"
263
259
  msgstr ""
264
260
 
265
- #: templates/umap/components/alerts/alert.html:14
266
- #: templates/umap/components/alerts/alert.html:49
267
- #: templates/umap/components/alerts/alert.html:71
261
+ #: templates/umap/components/alerts/alert.html:15
262
+ #: templates/umap/components/alerts/alert.html:64
263
+ #: templates/umap/components/alerts/alert.html:92
268
264
  msgid "Close"
269
265
  msgstr ""
270
266
 
271
- #: templates/umap/components/alerts/alert.html:27
267
+ #: templates/umap/components/alerts/alert.html:30
272
268
  #, python-format
273
269
  msgid ""
274
270
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -276,45 +272,45 @@ msgid ""
276
272
  "target=\"_blank\">log in</a>."
277
273
  msgstr ""
278
274
 
279
- #: templates/umap/components/alerts/alert.html:30
275
+ #: templates/umap/components/alerts/alert.html:35
280
276
  msgid "Here is your secret link to edit the map, please keep it safe:"
281
277
  msgstr ""
282
278
 
283
- #: templates/umap/components/alerts/alert.html:33
279
+ #: templates/umap/components/alerts/alert.html:39
284
280
  msgid "Copy link"
285
281
  msgstr ""
286
282
 
287
- #: templates/umap/components/alerts/alert.html:39
283
+ #: templates/umap/components/alerts/alert.html:46
288
284
  msgid "Enter your email address to receive the secret link:"
289
285
  msgstr ""
290
286
 
291
- #: templates/umap/components/alerts/alert.html:41
287
+ #: templates/umap/components/alerts/alert.html:52
292
288
  msgid "Email"
293
289
  msgstr ""
294
290
 
295
- #: templates/umap/components/alerts/alert.html:42
291
+ #: templates/umap/components/alerts/alert.html:55
296
292
  msgid "Send me the link"
297
293
  msgstr ""
298
294
 
299
- #: templates/umap/components/alerts/alert.html:63
295
+ #: templates/umap/components/alerts/alert.html:79
300
296
  msgid "See their edits in another tab"
301
297
  msgstr ""
302
298
 
303
- #: templates/umap/components/alerts/alert.html:64
299
+ #: templates/umap/components/alerts/alert.html:82
304
300
  msgid "Keep your changes and loose theirs"
305
301
  msgstr ""
306
302
 
307
- #: templates/umap/components/alerts/alert.html:65
303
+ #: templates/umap/components/alerts/alert.html:85
308
304
  msgid "Keep their changes and loose yours"
309
305
  msgstr ""
310
306
 
311
- #: templates/umap/content.html:24
307
+ #: templates/umap/content.html:26
312
308
  msgid ""
313
309
  "This instance of uMap is currently in read only mode, no creation/edit is "
314
310
  "allowed."
315
311
  msgstr ""
316
312
 
317
- #: templates/umap/content.html:32
313
+ #: templates/umap/content.html:34
318
314
  #, python-format
319
315
  msgid ""
320
316
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -323,279 +319,339 @@ msgid ""
323
319
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
324
320
  msgstr ""
325
321
 
326
- #: templates/umap/home.html:11
322
+ #: templates/umap/content_footer.html:5
323
+ msgid "An OpenStreetMap project"
324
+ msgstr ""
325
+
326
+ #: templates/umap/content_footer.html:6
327
+ msgid "version"
328
+ msgstr ""
329
+
330
+ #: templates/umap/content_footer.html:7
331
+ msgid "Hosted by"
332
+ msgstr ""
333
+
334
+ #: templates/umap/content_footer.html:8
335
+ msgid "Contact"
336
+ msgstr ""
337
+
338
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
339
+ msgid "Help"
340
+ msgstr ""
341
+
342
+ #: templates/umap/dashboard_menu.html:6
343
+ #, python-format
344
+ msgid "My Maps (%(count)s)"
345
+ msgstr ""
346
+
347
+ #: templates/umap/dashboard_menu.html:8
348
+ msgid "My Maps"
349
+ msgstr ""
350
+
351
+ #: templates/umap/dashboard_menu.html:11
352
+ msgid "My profile"
353
+ msgstr ""
354
+
355
+ #: templates/umap/dashboard_menu.html:13
356
+ msgid "My teams"
357
+ msgstr ""
358
+
359
+ #: templates/umap/home.html:14
327
360
  msgid "Map of the uMaps"
328
361
  msgstr ""
329
362
 
330
- #: templates/umap/home.html:17
363
+ #: templates/umap/home.html:24
331
364
  msgid "Get inspired, browse maps"
332
365
  msgstr ""
333
366
 
334
- #: templates/umap/login_popup_end.html:2
367
+ #: templates/umap/login_popup_end.html:4
335
368
  msgid "You are logged in. Continuing..."
336
369
  msgstr ""
337
370
 
338
- #: templates/umap/map_list.html:9 views.py:348
371
+ #: templates/umap/map_list.html:10 views.py:433
339
372
  msgid "by"
340
373
  msgstr ""
341
374
 
342
- #: templates/umap/map_list.html:17
375
+ #: templates/umap/map_list.html:18
343
376
  msgid "More"
344
377
  msgstr ""
345
378
 
346
- #: templates/umap/map_table.html:6
379
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
347
380
  msgid "Name"
348
381
  msgstr ""
349
382
 
350
- #: templates/umap/map_table.html:7
383
+ #: templates/umap/map_table.html:11
351
384
  msgid "Preview"
352
385
  msgstr ""
353
386
 
354
- #: templates/umap/map_table.html:8
387
+ #: templates/umap/map_table.html:14
355
388
  msgid "Who can see"
356
389
  msgstr ""
357
390
 
358
- #: templates/umap/map_table.html:9
391
+ #: templates/umap/map_table.html:17
359
392
  msgid "Who can edit"
360
393
  msgstr ""
361
394
 
362
- #: templates/umap/map_table.html:10
395
+ #: templates/umap/map_table.html:20
363
396
  msgid "Last save"
364
397
  msgstr ""
365
398
 
366
- #: templates/umap/map_table.html:11
399
+ #: templates/umap/map_table.html:23
367
400
  msgid "Owner"
368
401
  msgstr ""
369
402
 
370
- #: templates/umap/map_table.html:12
403
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
371
404
  msgid "Actions"
372
405
  msgstr ""
373
406
 
374
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
407
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
375
408
  msgid "Open preview"
376
409
  msgstr ""
377
410
 
378
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
411
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
379
412
  msgid "Share"
380
413
  msgstr ""
381
414
 
382
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
415
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
416
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
383
417
  msgid "Edit"
384
418
  msgstr ""
385
419
 
386
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
420
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
387
421
  msgid "Download"
388
422
  msgstr ""
389
423
 
390
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
424
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
391
425
  msgid "Clone"
392
426
  msgstr ""
393
427
 
394
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
428
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
395
429
  msgid "Delete"
396
430
  msgstr ""
397
431
 
398
- #: templates/umap/map_table.html:93
432
+ #: templates/umap/map_table.html:117
399
433
  msgid "first"
400
434
  msgstr ""
401
435
 
402
- #: templates/umap/map_table.html:94
436
+ #: templates/umap/map_table.html:118
403
437
  msgid "previous"
404
438
  msgstr ""
405
439
 
406
- #: templates/umap/map_table.html:102
440
+ #: templates/umap/map_table.html:126
407
441
  #, python-format
408
442
  msgid "Page %(maps_number)s of %(num_pages)s"
409
443
  msgstr ""
410
444
 
411
- #: templates/umap/map_table.html:107
445
+ #: templates/umap/map_table.html:131
412
446
  msgid "next"
413
447
  msgstr ""
414
448
 
415
- #: templates/umap/map_table.html:108
449
+ #: templates/umap/map_table.html:132
416
450
  msgid "last"
417
451
  msgstr ""
418
452
 
419
- #: templates/umap/map_table.html:116
453
+ #: templates/umap/map_table.html:140
420
454
  #, python-format
421
455
  msgid "Lines per page: %(per_page)s"
422
456
  msgstr ""
423
457
 
424
- #: templates/umap/map_table.html:121
458
+ #: templates/umap/map_table.html:145
425
459
  #, python-format
426
460
  msgid "%(count)s maps"
427
461
  msgstr ""
428
462
 
429
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
463
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
430
464
  msgid "My Dashboard"
431
465
  msgstr ""
432
466
 
433
- #: templates/umap/navigation.html:13
467
+ #: templates/umap/navigation.html:14
434
468
  msgid "Starred maps"
435
469
  msgstr ""
436
470
 
437
- #: templates/umap/navigation.html:17
471
+ #: templates/umap/navigation.html:18
438
472
  msgid "Log in"
439
473
  msgstr ""
440
474
 
441
- #: templates/umap/navigation.html:17
475
+ #: templates/umap/navigation.html:18
442
476
  msgid "Sign in"
443
477
  msgstr ""
444
478
 
445
- #: templates/umap/navigation.html:21
479
+ #: templates/umap/navigation.html:22
446
480
  msgid "About"
447
481
  msgstr ""
448
482
 
449
- #: templates/umap/navigation.html:24
450
- msgid "Help"
451
- msgstr ""
452
-
453
- #: templates/umap/navigation.html:29
483
+ #: templates/umap/navigation.html:30
454
484
  msgid "Change password"
455
485
  msgstr ""
456
486
 
457
- #: templates/umap/navigation.html:33
487
+ #: templates/umap/navigation.html:34
458
488
  msgid "Log out"
459
489
  msgstr ""
460
490
 
461
- #: templates/umap/password_change.html:4
491
+ #: templates/umap/password_change.html:7
462
492
  msgid "Password change"
463
493
  msgstr ""
464
494
 
465
- #: templates/umap/password_change.html:6
495
+ #: templates/umap/password_change.html:10
466
496
  msgid ""
467
497
  "Please enter your old password, for security's sake, and then enter your new "
468
498
  "password twice so we can verify you typed it in correctly."
469
499
  msgstr ""
470
500
 
471
- #: templates/umap/password_change.html:13
501
+ #: templates/umap/password_change.html:17
472
502
  msgid "Old password"
473
503
  msgstr ""
474
504
 
475
- #: templates/umap/password_change.html:18
505
+ #: templates/umap/password_change.html:22
476
506
  msgid "New password"
477
507
  msgstr ""
478
508
 
479
- #: templates/umap/password_change.html:22
509
+ #: templates/umap/password_change.html:26
480
510
  msgid "New password confirmation"
481
511
  msgstr ""
482
512
 
483
- #: templates/umap/password_change.html:23
513
+ #: templates/umap/password_change.html:27
484
514
  msgid "Change my password"
485
515
  msgstr ""
486
516
 
487
- #: templates/umap/password_change_done.html:4
517
+ #: templates/umap/password_change_done.html:7
488
518
  msgid "Password change successful"
489
519
  msgstr ""
490
520
 
491
- #: templates/umap/password_change_done.html:5
521
+ #: templates/umap/password_change_done.html:10
492
522
  msgid "Your password was changed."
493
523
  msgstr ""
494
524
 
495
- #: templates/umap/search.html:13
525
+ #: templates/umap/search.html:15
496
526
  #, python-format
497
527
  msgid "%(count)s map found:"
498
528
  msgid_plural "%(count)s maps found:"
499
529
  msgstr[0] ""
500
530
  msgstr[1] ""
501
531
 
502
- #: templates/umap/search.html:21
532
+ #: templates/umap/search.html:24
503
533
  msgid "No map found."
504
534
  msgstr ""
505
535
 
506
- #: templates/umap/search.html:24
536
+ #: templates/umap/search.html:29
507
537
  msgid "Latest created maps"
508
538
  msgstr ""
509
539
 
510
- #: templates/umap/search_bar.html:3
540
+ #: templates/umap/search_bar.html:4
511
541
  msgid "Search maps"
512
542
  msgstr ""
513
543
 
514
- #: templates/umap/search_bar.html:14
544
+ #: templates/umap/search_bar.html:15
515
545
  msgid "Search"
516
546
  msgstr ""
517
547
 
518
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
519
- msgid "Search my maps"
548
+ #: templates/umap/team_detail.html:10
549
+ #, python-format
550
+ msgid "Browse %(current_team)s's maps"
520
551
  msgstr ""
521
552
 
522
- #: templates/umap/user_dashboard.html:10
553
+ #: templates/umap/team_detail.html:22
523
554
  #, python-format
524
- msgid "My Maps (%(count)s)"
555
+ msgid "%(current_team)s has no public maps."
525
556
  msgstr ""
526
557
 
527
- #: templates/umap/user_dashboard.html:12
528
- msgid "My profile"
558
+ #: templates/umap/team_form.html:24
559
+ msgid "Delete this team"
560
+ msgstr ""
561
+
562
+ #: templates/umap/team_form.html:47
563
+ msgid "Add user"
564
+ msgstr ""
565
+
566
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
567
+ msgid "Search my maps"
529
568
  msgstr ""
530
569
 
531
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
570
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
532
571
  msgid "Map’s title"
533
572
  msgstr ""
534
573
 
535
- #: templates/umap/user_dashboard.html:32
574
+ #: templates/umap/user_dashboard.html:30
536
575
  #, python-format
537
576
  msgid "Download %(count)s maps"
538
577
  msgstr ""
539
578
 
540
- #: templates/umap/user_dashboard.html:42
579
+ #: templates/umap/user_dashboard.html:40
541
580
  msgid "You have no map yet."
542
581
  msgstr ""
543
582
 
544
- #: views.py:353
583
+ #: templates/umap/user_teams.html:17
584
+ msgid "Users"
585
+ msgstr ""
586
+
587
+ #: templates/umap/user_teams.html:48
588
+ msgid "New team"
589
+ msgstr ""
590
+
591
+ #: views.py:235
592
+ msgid "Cannot delete a team with more than one member"
593
+ msgstr ""
594
+
595
+ #: views.py:239
596
+ #, python-format
597
+ msgid "Team “%(name)s” has been deleted"
598
+ msgstr ""
599
+
600
+ #: views.py:438
545
601
  msgid "View the map"
546
602
  msgstr ""
547
603
 
548
- #: views.py:719
604
+ #: views.py:824
549
605
  msgid "See full screen"
550
606
  msgstr ""
551
607
 
552
- #: views.py:847
608
+ #: views.py:953
553
609
  msgid "Map editors updated with success!"
554
610
  msgstr ""
555
611
 
556
- #: views.py:883
612
+ #: views.py:989
557
613
  #, python-format
558
614
  msgid "The uMap edit link for your map: %(map_name)s"
559
615
  msgstr ""
560
616
 
561
- #: views.py:886
617
+ #: views.py:992
562
618
  #, python-format
563
619
  msgid "Here is your secret edit link: %(link)s"
564
620
  msgstr ""
565
621
 
566
- #: views.py:893
622
+ #: views.py:999
567
623
  #, python-format
568
624
  msgid "Can't send email to %(email)s"
569
625
  msgstr ""
570
626
 
571
- #: views.py:896
627
+ #: views.py:1002
572
628
  #, python-format
573
629
  msgid "Email sent to %(email)s"
574
630
  msgstr ""
575
631
 
576
- #: views.py:907
632
+ #: views.py:1013
577
633
  msgid "Only its owner can delete the map."
578
634
  msgstr ""
579
635
 
580
- #: views.py:910
636
+ #: views.py:1016
581
637
  msgid "Map successfully deleted."
582
638
  msgstr ""
583
639
 
584
- #: views.py:936
640
+ #: views.py:1042
585
641
  #, python-format
586
642
  msgid ""
587
643
  "Your map has been cloned! If you want to edit this map from another "
588
644
  "computer, please use this link: %(anonymous_url)s"
589
645
  msgstr ""
590
646
 
591
- #: views.py:941
647
+ #: views.py:1047
592
648
  msgid "Congratulations, your map has been cloned!"
593
649
  msgstr ""
594
650
 
595
- #: views.py:1176
651
+ #: views.py:1282
596
652
  msgid "Layer successfully deleted."
597
653
  msgstr ""
598
654
 
599
- #: views.py:1198
655
+ #: views.py:1304
600
656
  msgid "Permissions updated with success!"
601
657
  msgstr ""