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
@@ -7,13 +7,14 @@
7
7
  # Joan Montané, 2014,2019
8
8
  # Joan Montané, 2014,2019
9
9
  # Joan Montané, 2023
10
+ # lenny libre, 2024
10
11
  msgid ""
11
12
  msgstr ""
12
13
  "Project-Id-Version: uMap\n"
13
14
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2024-02-15 13:53+0000\n"
15
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
15
16
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
16
- "Last-Translator: Joan Montané, 2023\n"
17
+ "Last-Translator: lenny libre, 2024\n"
17
18
  "Language-Team: Catalan (http://app.transifex.com/openstreetmap/umap/language/ca/)\n"
18
19
  "MIME-Version: 1.0\n"
19
20
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,7 +30,7 @@ msgstr "Només es pot editar amb l'enllaç d'edició secret"
29
30
  msgid "Everyone can edit"
30
31
  msgstr "Tothom pot editar"
31
32
 
32
- #: forms.py:69 models.py:371
33
+ #: forms.py:69 models.py:423
33
34
  msgid "Inherit"
34
35
  msgstr ""
35
36
 
@@ -37,242 +38,284 @@ msgstr ""
37
38
  msgid "Site is readonly for maintenance"
38
39
  msgstr "El lloc és en mode lectura per manteniment"
39
40
 
40
- #: models.py:50
41
+ #: models.py:54 models.py:73
41
42
  msgid "name"
42
43
  msgstr "nom"
43
44
 
44
- #: models.py:81
45
+ #: models.py:56 models.py:433
46
+ msgid "description"
47
+ msgstr "descripció"
48
+
49
+ #: models.py:104
45
50
  msgid "details"
46
51
  msgstr "detalls"
47
52
 
48
- #: models.py:82
53
+ #: models.py:105
49
54
  msgid "Link to a page where the licence is detailed."
50
55
  msgstr "Enllaç a una pàgina on es detalla la llicència."
51
56
 
52
- #: models.py:92
57
+ #: models.py:115
53
58
  msgid "URL template using OSM tile format"
54
59
  msgstr "La plantilla de l'URL usa el format de tesel·les de l'OSM"
55
60
 
56
- #: models.py:98
61
+ #: models.py:121
57
62
  msgid "Order of the tilelayers in the edit box"
58
63
  msgstr "Ordre de les capes de tessel·les al quadre d'edició"
59
64
 
60
- #: models.py:144 models.py:372
65
+ #: models.py:167 models.py:424
61
66
  msgid "Everyone"
62
- msgstr ""
67
+ msgstr "Tothom"
63
68
 
64
- #: models.py:145 models.py:151 models.py:373
65
- msgid "Editors only"
69
+ #: models.py:168 models.py:174 models.py:425
70
+ msgid "Editors and team only"
66
71
  msgstr ""
67
72
 
68
- #: models.py:146 models.py:374
73
+ #: models.py:169 models.py:426
69
74
  msgid "Owner only"
70
- msgstr ""
75
+ msgstr "Només el propietari"
71
76
 
72
- #: models.py:149
77
+ #: models.py:172
73
78
  msgid "Everyone (public)"
74
- msgstr ""
79
+ msgstr "Tothom (públic)"
75
80
 
76
- #: models.py:150
81
+ #: models.py:173
77
82
  msgid "Anyone with link"
78
- msgstr ""
83
+ msgstr "Qualsevol persona amb enllaç"
79
84
 
80
- #: models.py:152
85
+ #: models.py:175
81
86
  msgid "Blocked"
82
87
  msgstr ""
83
88
 
84
- #: models.py:155 models.py:378
85
- msgid "description"
86
- msgstr "descripció"
87
-
88
- #: models.py:156
89
+ #: models.py:178
89
90
  msgid "center"
90
91
  msgstr "centre"
91
92
 
92
- #: models.py:157
93
+ #: models.py:179
93
94
  msgid "zoom"
94
95
  msgstr "escala"
95
96
 
96
- #: models.py:159
97
+ #: models.py:181
97
98
  msgid "locate"
98
99
  msgstr "ubica"
99
100
 
100
- #: models.py:159
101
+ #: models.py:181
101
102
  msgid "Locate user on load?"
102
103
  msgstr "Voleu ubicar l'usuari en carregar?"
103
104
 
104
- #: models.py:163
105
+ #: models.py:185
105
106
  msgid "Choose the map licence."
106
107
  msgstr "Trieu la llicència del mapa."
107
108
 
108
- #: models.py:164
109
+ #: models.py:186
109
110
  msgid "licence"
110
111
  msgstr "llicència"
111
112
 
112
- #: models.py:175
113
+ #: models.py:197
113
114
  msgid "owner"
114
115
  msgstr "propietari"
115
116
 
116
- #: models.py:179
117
+ #: models.py:201
117
118
  msgid "editors"
118
119
  msgstr "editors"
119
120
 
120
- #: models.py:184 models.py:392
121
+ #: models.py:207
122
+ msgid "team"
123
+ msgstr ""
124
+
125
+ #: models.py:213 models.py:447
121
126
  msgid "edit status"
122
127
  msgstr "edita l'estat"
123
128
 
124
- #: models.py:189
129
+ #: models.py:218
125
130
  msgid "share status"
126
131
  msgstr "comparteix l'estat"
127
132
 
128
- #: models.py:192 models.py:387
133
+ #: models.py:221 models.py:442
129
134
  msgid "settings"
130
135
  msgstr "paràmetres"
131
136
 
132
- #: models.py:320
137
+ #: models.py:364
133
138
  msgid "Clone of"
134
139
  msgstr "Clon de"
135
140
 
136
- #: models.py:382
141
+ #: models.py:437
137
142
  msgid "display on load"
138
143
  msgstr "mostra en carregar"
139
144
 
140
- #: models.py:383
145
+ #: models.py:438
141
146
  msgid "Display this layer on load."
142
147
  msgstr "Mostra aquesta capa en carregar."
143
148
 
144
- #: templates/404.html:6
149
+ #: templates/404.html:8
145
150
  msgid "Take me to the home page"
146
151
  msgstr "Vés a la pàgina d'inici"
147
152
 
148
- #: templates/auth/user_detail.html:5
153
+ #: templates/auth/user_detail.html:8
149
154
  #, python-format
150
155
  msgid "Browse %(current_user)s's maps"
151
156
  msgstr "Explora els mapes de %(current_user)s"
152
157
 
153
- #: templates/auth/user_detail.html:12
158
+ #: templates/auth/user_detail.html:17
154
159
  #, python-format
155
160
  msgid "%(current_user)s has no maps."
156
161
  msgstr "%(current_user)s no té cap mapa."
157
162
 
158
- #: templates/auth/user_form.html:6
159
- msgid "My Maps"
160
- msgstr ""
161
-
162
- #: templates/auth/user_form.html:7
163
- msgid "My Profile"
164
- msgstr ""
165
-
166
- #: templates/auth/user_form.html:20
163
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
167
164
  msgid "Save"
168
- msgstr ""
165
+ msgstr "Desa"
169
166
 
170
- #: templates/auth/user_form.html:25
167
+ #: templates/auth/user_form.html:27
171
168
  msgid "Your current providers"
172
169
  msgstr ""
173
170
 
174
- #: templates/auth/user_form.html:31
171
+ #: templates/auth/user_form.html:39
175
172
  msgid "Connect to another provider"
176
173
  msgstr ""
177
174
 
178
- #: templates/auth/user_form.html:33
175
+ #: templates/auth/user_form.html:42
179
176
  msgid ""
180
177
  "It's a good habit to connect your account to more than one provider, in case"
181
178
  " one provider becomes unavailable, temporarily or even permanently."
182
179
  msgstr ""
183
180
 
184
- #: templates/auth/user_stars.html:5
181
+ #: templates/auth/user_stars.html:8
185
182
  #, python-format
186
183
  msgid "Browse %(current_user)s's starred maps"
187
184
  msgstr "Exploreu els mapes destacats de %(current_user)s"
188
185
 
189
- #: templates/auth/user_stars.html:12
186
+ #: templates/auth/user_stars.html:17
190
187
  #, python-format
191
188
  msgid "%(current_user)s has no starred maps yet."
192
189
  msgstr "%(current_user)s encara no ha destacat cap mapa."
193
190
 
194
- #: templates/base.html:12
191
+ #: templates/base.html:13
195
192
  msgid ""
196
193
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
197
194
  "them in your site."
198
195
  msgstr "uMap us permet crear mapes amb capes d'OpenStreetMap en un minut i incrustar-los en el vostre lloc web."
199
196
 
200
- #: templates/registration/login.html:16
197
+ #: templates/registration/login.html:6 templates/registration/login.html:45
198
+ msgid "Login"
199
+ msgstr "Inicia sessió"
200
+
201
+ #: templates/registration/login.html:24
201
202
  msgid "Please log in with your account"
202
203
  msgstr "Inicieu sessió amb el vostre compte"
203
204
 
204
- #: templates/registration/login.html:28
205
+ #: templates/registration/login.html:41
205
206
  msgid "Username"
206
207
  msgstr "Nom d'usuari"
207
208
 
208
- #: templates/registration/login.html:31
209
+ #: templates/registration/login.html:44
209
210
  msgid "Password"
210
211
  msgstr "Contrasenya"
211
212
 
212
- #: templates/registration/login.html:32
213
- msgid "Login"
214
- msgstr "Inicia sessió"
215
-
216
- #: templates/registration/login.html:37
213
+ #: templates/registration/login.html:51
217
214
  msgid "Please choose a provider"
218
215
  msgstr "Trieu un proveïdor"
219
216
 
220
- #: templates/umap/about_summary.html:11
217
+ #: templates/umap/about_summary.html:12
221
218
  #, python-format
222
219
  msgid ""
223
220
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
224
221
  "layers in a minute and embed them in your site."
225
222
  msgstr "El uMap us permet crear mapes amb capes de l'<a href=\"%(osm_url)s\" />OpenStreetMap</a> en un minut i inserir-los en el vostre lloc web."
226
223
 
227
- #: templates/umap/about_summary.html:21
224
+ #: templates/umap/about_summary.html:23
228
225
  msgid "Choose the layers of your map"
229
226
  msgstr "Trieu les capes del mapa"
230
227
 
231
- #: templates/umap/about_summary.html:22
228
+ #: templates/umap/about_summary.html:26
232
229
  msgid "Add POIs: markers, lines, polygons..."
233
230
  msgstr "Afegeiu PDI: marcadors, línies, polígons..."
234
231
 
235
- #: templates/umap/about_summary.html:23
232
+ #: templates/umap/about_summary.html:29
236
233
  msgid "Manage POIs colours and icons"
237
234
  msgstr "Gestioneu els colors i les icones dels PDI"
238
235
 
239
- #: templates/umap/about_summary.html:24
236
+ #: templates/umap/about_summary.html:32
240
237
  msgid "Manage map options: display a minimap, locate user on load…"
241
238
  msgstr "Gestioneu les opcions del mapa: mostreu un minimapa, ubiqueu l'usuari en carregar..."
242
239
 
243
- #: templates/umap/about_summary.html:25
240
+ #: templates/umap/about_summary.html:35
244
241
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
245
242
  msgstr "Importa en lot dades geoestructurades (geojson, gpx, kml, osm...)"
246
243
 
247
- #: templates/umap/about_summary.html:26
244
+ #: templates/umap/about_summary.html:38
248
245
  msgid "Choose the license for your data"
249
246
  msgstr "Trieu la llicència de les dades"
250
247
 
251
- #: templates/umap/about_summary.html:27
248
+ #: templates/umap/about_summary.html:41
252
249
  msgid "Embed and share your map"
253
250
  msgstr "Incrusteu i compartiu el vostre mapa"
254
251
 
255
- #: templates/umap/about_summary.html:37
252
+ #: templates/umap/about_summary.html:52
256
253
  #, python-format
257
254
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
258
255
  msgstr "I és <a href=\"%(repo_url)s\">codi obert</a>!"
259
256
 
260
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
261
- #: templates/umap/user_dashboard.html:42
257
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
258
+ #: templates/umap/user_dashboard.html:40
262
259
  msgid "Create a map"
263
260
  msgstr "Crea un mapa"
264
261
 
265
- #: templates/umap/about_summary.html:51
262
+ #: templates/umap/about_summary.html:66
266
263
  msgid "Play with the demo"
267
264
  msgstr "Jugueu amb la demostració"
268
265
 
269
- #: templates/umap/content.html:22
266
+ #: templates/umap/components/alerts/alert.html:15
267
+ #: templates/umap/components/alerts/alert.html:64
268
+ #: templates/umap/components/alerts/alert.html:92
269
+ msgid "Close"
270
+ msgstr ""
271
+
272
+ #: templates/umap/components/alerts/alert.html:30
273
+ #, python-format
274
+ msgid ""
275
+ "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
276
+ "target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
277
+ "target=\"_blank\">log in</a>."
278
+ msgstr ""
279
+
280
+ #: templates/umap/components/alerts/alert.html:35
281
+ msgid "Here is your secret link to edit the map, please keep it safe:"
282
+ msgstr ""
283
+
284
+ #: templates/umap/components/alerts/alert.html:39
285
+ msgid "Copy link"
286
+ msgstr ""
287
+
288
+ #: templates/umap/components/alerts/alert.html:46
289
+ msgid "Enter your email address to receive the secret link:"
290
+ msgstr ""
291
+
292
+ #: templates/umap/components/alerts/alert.html:52
293
+ msgid "Email"
294
+ msgstr ""
295
+
296
+ #: templates/umap/components/alerts/alert.html:55
297
+ msgid "Send me the link"
298
+ msgstr ""
299
+
300
+ #: templates/umap/components/alerts/alert.html:79
301
+ msgid "See their edits in another tab"
302
+ msgstr ""
303
+
304
+ #: templates/umap/components/alerts/alert.html:82
305
+ msgid "Keep your changes and loose theirs"
306
+ msgstr ""
307
+
308
+ #: templates/umap/components/alerts/alert.html:85
309
+ msgid "Keep their changes and loose yours"
310
+ msgstr ""
311
+
312
+ #: templates/umap/content.html:26
270
313
  msgid ""
271
314
  "This instance of uMap is currently in read only mode, no creation/edit is "
272
315
  "allowed."
273
316
  msgstr "Aquesta instància d'uMap actualment és en mode de només lectura, no es permet la creació o edició de mapes."
274
317
 
275
- #: templates/umap/content.html:30
318
+ #: templates/umap/content.html:34
276
319
  #, python-format
277
320
  msgid ""
278
321
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -281,270 +324,339 @@ msgid ""
281
324
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
282
325
  msgstr "Aquesta és una versió de demostració, usada per a fer proves i desplegar versions. Si us cal un versió estable, useu <a href=\"%(stable_url)s\">%(stable_url)s</a>. També podeu hostatjar la vostra pròpia còpia, és <a href=\"%(repo_url)s\">codi lliure</a>!"
283
326
 
284
- #: templates/umap/home.html:8
327
+ #: templates/umap/content_footer.html:5
328
+ msgid "An OpenStreetMap project"
329
+ msgstr ""
330
+
331
+ #: templates/umap/content_footer.html:6
332
+ msgid "version"
333
+ msgstr ""
334
+
335
+ #: templates/umap/content_footer.html:7
336
+ msgid "Hosted by"
337
+ msgstr ""
338
+
339
+ #: templates/umap/content_footer.html:8
340
+ msgid "Contact"
341
+ msgstr ""
342
+
343
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
344
+ msgid "Help"
345
+ msgstr "Ajuda"
346
+
347
+ #: templates/umap/dashboard_menu.html:6
348
+ #, python-format
349
+ msgid "My Maps (%(count)s)"
350
+ msgstr "Els meus Mapes (%(count)s)"
351
+
352
+ #: templates/umap/dashboard_menu.html:8
353
+ msgid "My Maps"
354
+ msgstr "Els meus mapes"
355
+
356
+ #: templates/umap/dashboard_menu.html:11
357
+ msgid "My profile"
358
+ msgstr "El meu perfil"
359
+
360
+ #: templates/umap/dashboard_menu.html:13
361
+ msgid "My teams"
362
+ msgstr ""
363
+
364
+ #: templates/umap/home.html:14
285
365
  msgid "Map of the uMaps"
286
366
  msgstr "Mapa dels uMaps"
287
367
 
288
- #: templates/umap/home.html:14
368
+ #: templates/umap/home.html:24
289
369
  msgid "Get inspired, browse maps"
290
370
  msgstr "Inspireu-vos, exploreu mapes"
291
371
 
292
- #: templates/umap/login_popup_end.html:2
372
+ #: templates/umap/login_popup_end.html:4
293
373
  msgid "You are logged in. Continuing..."
294
374
  msgstr "Heu iniciat sessió. S'està continuant..."
295
375
 
296
- #: templates/umap/map_list.html:9 views.py:341
376
+ #: templates/umap/map_list.html:10 views.py:433
297
377
  msgid "by"
298
378
  msgstr "per"
299
379
 
300
- #: templates/umap/map_list.html:17
380
+ #: templates/umap/map_list.html:18
301
381
  msgid "More"
302
382
  msgstr "Més"
303
383
 
304
- #: templates/umap/map_table.html:6
384
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
305
385
  msgid "Name"
306
- msgstr ""
386
+ msgstr "Nom"
307
387
 
308
- #: templates/umap/map_table.html:7
388
+ #: templates/umap/map_table.html:11
309
389
  msgid "Preview"
310
- msgstr ""
390
+ msgstr "Vista prèvia"
311
391
 
312
- #: templates/umap/map_table.html:8
392
+ #: templates/umap/map_table.html:14
313
393
  msgid "Who can see"
314
- msgstr ""
394
+ msgstr "Qui pot veure"
315
395
 
316
- #: templates/umap/map_table.html:9
396
+ #: templates/umap/map_table.html:17
317
397
  msgid "Who can edit"
318
- msgstr ""
398
+ msgstr "Qui pot editar"
319
399
 
320
- #: templates/umap/map_table.html:10
400
+ #: templates/umap/map_table.html:20
321
401
  msgid "Last save"
322
- msgstr ""
402
+ msgstr "Últim desat"
323
403
 
324
- #: templates/umap/map_table.html:11
404
+ #: templates/umap/map_table.html:23
325
405
  msgid "Owner"
326
- msgstr ""
406
+ msgstr "Propietari"
327
407
 
328
- #: templates/umap/map_table.html:12
408
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
329
409
  msgid "Actions"
330
- msgstr ""
410
+ msgstr "Accions"
331
411
 
332
- #: templates/umap/map_table.html:25 templates/umap/map_table.html:27
412
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
333
413
  msgid "Open preview"
334
- msgstr ""
414
+ msgstr "Obriu la vista prèvia"
335
415
 
336
- #: templates/umap/map_table.html:46 templates/umap/map_table.html:48
416
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
337
417
  msgid "Share"
338
- msgstr ""
418
+ msgstr "Compartiu"
339
419
 
340
- #: templates/umap/map_table.html:51 templates/umap/map_table.html:53
420
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
421
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
341
422
  msgid "Edit"
342
- msgstr ""
423
+ msgstr "Edita"
343
424
 
344
- #: templates/umap/map_table.html:56 templates/umap/map_table.html:58
425
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
345
426
  msgid "Download"
346
- msgstr ""
427
+ msgstr "Baixa"
347
428
 
348
- #: templates/umap/map_table.html:63 templates/umap/map_table.html:65
429
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
349
430
  msgid "Clone"
350
- msgstr ""
431
+ msgstr "Clonar"
351
432
 
352
- #: templates/umap/map_table.html:73 templates/umap/map_table.html:75
433
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
353
434
  msgid "Delete"
354
435
  msgstr ""
355
436
 
356
- #: templates/umap/map_table.html:88
437
+ #: templates/umap/map_table.html:117
357
438
  msgid "first"
358
439
  msgstr ""
359
440
 
360
- #: templates/umap/map_table.html:89
441
+ #: templates/umap/map_table.html:118
361
442
  msgid "previous"
362
443
  msgstr ""
363
444
 
364
- #: templates/umap/map_table.html:98
445
+ #: templates/umap/map_table.html:126
365
446
  #, python-format
366
447
  msgid "Page %(maps_number)s of %(num_pages)s"
367
448
  msgstr ""
368
449
 
369
- #: templates/umap/map_table.html:104
450
+ #: templates/umap/map_table.html:131
370
451
  msgid "next"
371
452
  msgstr ""
372
453
 
373
- #: templates/umap/map_table.html:105
454
+ #: templates/umap/map_table.html:132
374
455
  msgid "last"
375
456
  msgstr ""
376
457
 
377
- #: templates/umap/map_table.html:113
458
+ #: templates/umap/map_table.html:140
378
459
  #, python-format
379
460
  msgid "Lines per page: %(per_page)s"
380
461
  msgstr ""
381
462
 
382
- #: templates/umap/map_table.html:118
463
+ #: templates/umap/map_table.html:145
383
464
  #, python-format
384
465
  msgid "%(count)s maps"
385
466
  msgstr ""
386
467
 
387
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
468
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
388
469
  msgid "My Dashboard"
389
- msgstr ""
470
+ msgstr "El meu Tauler de control"
390
471
 
391
- #: templates/umap/navigation.html:13
472
+ #: templates/umap/navigation.html:14
392
473
  msgid "Starred maps"
393
474
  msgstr "Mapes destacats"
394
475
 
395
- #: templates/umap/navigation.html:17
476
+ #: templates/umap/navigation.html:18
396
477
  msgid "Log in"
397
478
  msgstr "Entra"
398
479
 
399
- #: templates/umap/navigation.html:17
480
+ #: templates/umap/navigation.html:18
400
481
  msgid "Sign in"
401
482
  msgstr "Crea un compte"
402
483
 
403
- #: templates/umap/navigation.html:21
484
+ #: templates/umap/navigation.html:22
404
485
  msgid "About"
405
486
  msgstr "Quant a"
406
487
 
407
- #: templates/umap/navigation.html:24
408
- msgid "Help"
409
- msgstr "Ajuda"
410
-
411
- #: templates/umap/navigation.html:29
488
+ #: templates/umap/navigation.html:30
412
489
  msgid "Change password"
413
490
  msgstr "Canvia la contrasenya"
414
491
 
415
- #: templates/umap/navigation.html:33
492
+ #: templates/umap/navigation.html:34
416
493
  msgid "Log out"
417
494
  msgstr "Surt"
418
495
 
419
- #: templates/umap/password_change.html:4
496
+ #: templates/umap/password_change.html:7
420
497
  msgid "Password change"
421
498
  msgstr "Canvi de contrasenya"
422
499
 
423
- #: templates/umap/password_change.html:6
500
+ #: templates/umap/password_change.html:10
424
501
  msgid ""
425
502
  "Please enter your old password, for security's sake, and then enter your new"
426
503
  " password twice so we can verify you typed it in correctly."
427
504
  msgstr "Introduïu la contrasenya antiga, per raons de seguretat, i després introduïu-ne la nova dues vegades perquè puguem verificar correctament."
428
505
 
429
- #: templates/umap/password_change.html:13
506
+ #: templates/umap/password_change.html:17
430
507
  msgid "Old password"
431
508
  msgstr "Contrasenya antiga"
432
509
 
433
- #: templates/umap/password_change.html:18
510
+ #: templates/umap/password_change.html:22
434
511
  msgid "New password"
435
512
  msgstr "Contrasenya nova"
436
513
 
437
- #: templates/umap/password_change.html:22
514
+ #: templates/umap/password_change.html:26
438
515
  msgid "New password confirmation"
439
516
  msgstr "Confirmació de la contrasenya nova"
440
517
 
441
- #: templates/umap/password_change.html:23
518
+ #: templates/umap/password_change.html:27
442
519
  msgid "Change my password"
443
520
  msgstr "Canvia la contrasenya"
444
521
 
445
- #: templates/umap/password_change_done.html:4
522
+ #: templates/umap/password_change_done.html:7
446
523
  msgid "Password change successful"
447
524
  msgstr "La contrasenya s'ha canviat la contrasenya correctament"
448
525
 
449
- #: templates/umap/password_change_done.html:5
526
+ #: templates/umap/password_change_done.html:10
450
527
  msgid "Your password was changed."
451
528
  msgstr "S'ha canviat la contrasenya."
452
529
 
453
- #: templates/umap/search.html:10
530
+ #: templates/umap/search.html:15
454
531
  #, python-format
455
532
  msgid "%(count)s map found:"
456
533
  msgid_plural "%(count)s maps found:"
457
534
  msgstr[0] "S'ha trobat %(count)s mapa:"
458
535
  msgstr[1] "S'han trobat %(count)s mapes:"
459
536
 
460
- #: templates/umap/search.html:18
537
+ #: templates/umap/search.html:24
461
538
  msgid "No map found."
462
539
  msgstr "No s'ha trobat cap mapa."
463
540
 
464
- #: templates/umap/search.html:21
541
+ #: templates/umap/search.html:29
465
542
  msgid "Latest created maps"
466
543
  msgstr "Últims mapes creats"
467
544
 
468
- #: templates/umap/search_bar.html:3
545
+ #: templates/umap/search_bar.html:4
469
546
  msgid "Search maps"
470
547
  msgstr "Cerca mapes"
471
548
 
472
- #: templates/umap/search_bar.html:14
549
+ #: templates/umap/search_bar.html:15
473
550
  msgid "Search"
474
551
  msgstr "Cerca"
475
552
 
476
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:26
477
- msgid "Search my maps"
553
+ #: templates/umap/team_detail.html:10
554
+ #, python-format
555
+ msgid "Browse %(current_team)s's maps"
478
556
  msgstr ""
479
557
 
480
- #: templates/umap/user_dashboard.html:11
558
+ #: templates/umap/team_detail.html:22
481
559
  #, python-format
482
- msgid "My Maps (%(count)s)"
560
+ msgid "%(current_team)s has no public maps."
483
561
  msgstr ""
484
562
 
485
- #: templates/umap/user_dashboard.html:13
486
- msgid "My profile"
563
+ #: templates/umap/team_form.html:24
564
+ msgid "Delete this team"
487
565
  msgstr ""
488
566
 
489
- #: templates/umap/user_dashboard.html:21 templates/umap/user_dashboard.html:23
490
- msgid "Map’s title"
567
+ #: templates/umap/team_form.html:47
568
+ msgid "Add user"
491
569
  msgstr ""
492
570
 
493
- #: templates/umap/user_dashboard.html:32
571
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
572
+ msgid "Search my maps"
573
+ msgstr "Cerca els meus mapes"
574
+
575
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
576
+ msgid "Map’s title"
577
+ msgstr "Títol del mapa"
578
+
579
+ #: templates/umap/user_dashboard.html:30
494
580
  #, python-format
495
581
  msgid "Download %(count)s maps"
496
- msgstr ""
582
+ msgstr "Baixa %(count)s mapes"
497
583
 
498
- #: templates/umap/user_dashboard.html:42
584
+ #: templates/umap/user_dashboard.html:40
499
585
  msgid "You have no map yet."
500
586
  msgstr ""
501
587
 
502
- #: views.py:346
588
+ #: templates/umap/user_teams.html:17
589
+ msgid "Users"
590
+ msgstr ""
591
+
592
+ #: templates/umap/user_teams.html:48
593
+ msgid "New team"
594
+ msgstr ""
595
+
596
+ #: views.py:235
597
+ msgid "Cannot delete a team with more than one member"
598
+ msgstr ""
599
+
600
+ #: views.py:239
601
+ #, python-format
602
+ msgid "Team “%(name)s” has been deleted"
603
+ msgstr ""
604
+
605
+ #: views.py:438
503
606
  msgid "View the map"
504
607
  msgstr "Mostra el mapa"
505
608
 
506
- #: views.py:704
609
+ #: views.py:824
507
610
  msgid "See full screen"
508
611
  msgstr ""
509
612
 
510
- #: views.py:803
613
+ #: views.py:953
511
614
  msgid "Map editors updated with success!"
512
615
  msgstr "S'han actualitzat els editors del mapa correctament!"
513
616
 
514
- #: views.py:841
617
+ #: views.py:989
515
618
  #, python-format
516
619
  msgid "The uMap edit link for your map: %(map_name)s"
517
620
  msgstr "L'enllaç d'edició d'uMap per al vostre mapa: %(map_name)s"
518
621
 
519
- #: views.py:844
622
+ #: views.py:992
520
623
  #, python-format
521
624
  msgid "Here is your secret edit link: %(link)s"
522
625
  msgstr "Aquí teniu l'enllaç secret d'edició: %(link)s"
523
626
 
524
- #: views.py:850
627
+ #: views.py:999
628
+ #, python-format
629
+ msgid "Can't send email to %(email)s"
630
+ msgstr ""
631
+
632
+ #: views.py:1002
525
633
  #, python-format
526
634
  msgid "Email sent to %(email)s"
527
635
  msgstr "S'ha enviat un correu a %(email)s"
528
636
 
529
- #: views.py:861
637
+ #: views.py:1013
530
638
  msgid "Only its owner can delete the map."
531
639
  msgstr "Només el propietari pot suprimir el mapa."
532
640
 
533
- #: views.py:889
641
+ #: views.py:1016
642
+ msgid "Map successfully deleted."
643
+ msgstr ""
644
+
645
+ #: views.py:1042
534
646
  #, python-format
535
647
  msgid ""
536
648
  "Your map has been cloned! If you want to edit this map from another "
537
649
  "computer, please use this link: %(anonymous_url)s"
538
650
  msgstr "S'ha clonat el vostre mapa! Si voleu editar aquest mapa en un altre ordinador, useu aquest enllaç: %(anonymous_url)s"
539
651
 
540
- #: views.py:894
652
+ #: views.py:1047
541
653
  msgid "Congratulations, your map has been cloned!"
542
654
  msgstr "Enhorabona, s'ha clonat el vostre mapa!"
543
655
 
544
- #: views.py:1130
656
+ #: views.py:1282
545
657
  msgid "Layer successfully deleted."
546
658
  msgstr "S'ha suprimit la capa correctament."
547
659
 
548
- #: views.py:1152
660
+ #: views.py:1304
549
661
  msgid "Permissions updated with success!"
550
662
  msgstr ""