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
@@ -9,7 +9,7 @@ msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-06-26 20:59+0000\n"
12
+ "POT-Creation-Date: 2024-08-30 18:23+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
14
  "Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024\n"
15
15
  "Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
@@ -27,7 +27,7 @@ msgstr "Bakarrik esteka sekretuarekin bakarrik editatu daiteke"
27
27
  msgid "Everyone can edit"
28
28
  msgstr "Edonork editatu dezake"
29
29
 
30
- #: forms.py:69 models.py:389
30
+ #: forms.py:69 models.py:423
31
31
  msgid "Inherit"
32
32
  msgstr "Heredatu"
33
33
 
@@ -35,242 +35,238 @@ msgstr "Heredatu"
35
35
  msgid "Site is readonly for maintenance"
36
36
  msgstr "Webgunea irakurtzeko moduan dago mantentze-lanak direla-eta"
37
37
 
38
- #: models.py:53
38
+ #: models.py:54 models.py:73
39
39
  msgid "name"
40
40
  msgstr "izena"
41
41
 
42
- #: models.py:84
42
+ #: models.py:56 models.py:433
43
+ msgid "description"
44
+ msgstr "deskribapena"
45
+
46
+ #: models.py:104
43
47
  msgid "details"
44
48
  msgstr "xehetasunak"
45
49
 
46
- #: models.py:85
50
+ #: models.py:105
47
51
  msgid "Link to a page where the licence is detailed."
48
52
  msgstr "Estekatu lizentzia zehazten den orrialde batera."
49
53
 
50
- #: models.py:95
54
+ #: models.py:115
51
55
  msgid "URL template using OSM tile format"
52
56
  msgstr "URLaren txantiloia OSMren lauzen formatua erabiliz"
53
57
 
54
- #: models.py:101
58
+ #: models.py:121
55
59
  msgid "Order of the tilelayers in the edit box"
56
60
  msgstr "Lauzen geruzek edizio kutxan duten ordena"
57
61
 
58
- #: models.py:147 models.py:390
62
+ #: models.py:167 models.py:424
59
63
  msgid "Everyone"
60
64
  msgstr "Edonork"
61
65
 
62
- #: models.py:148 models.py:154 models.py:391
63
- msgid "Editors only"
64
- msgstr "Editoreak bakarrik"
66
+ #: models.py:168 models.py:174 models.py:425
67
+ msgid "Editors and team only"
68
+ msgstr ""
65
69
 
66
- #: models.py:149 models.py:392
70
+ #: models.py:169 models.py:426
67
71
  msgid "Owner only"
68
72
  msgstr "Jabea bakarrik"
69
73
 
70
- #: models.py:152
74
+ #: models.py:172
71
75
  msgid "Everyone (public)"
72
76
  msgstr "Edonork (publikoa)"
73
77
 
74
- #: models.py:153
78
+ #: models.py:173
75
79
  msgid "Anyone with link"
76
80
  msgstr "Esteka duen edonork"
77
81
 
78
- #: models.py:155
82
+ #: models.py:175
79
83
  msgid "Blocked"
80
84
  msgstr "Blokeatuta"
81
85
 
82
- #: models.py:158
86
+ #: models.py:178
83
87
  msgid "center"
84
88
  msgstr "erdiko puntua"
85
89
 
86
- #: models.py:159
90
+ #: models.py:179
87
91
  msgid "zoom"
88
92
  msgstr "zooma"
89
93
 
90
- #: models.py:161
94
+ #: models.py:181
91
95
  msgid "locate"
92
96
  msgstr "kokatu"
93
97
 
94
- #: models.py:161
98
+ #: models.py:181
95
99
  msgid "Locate user on load?"
96
100
  msgstr "Kokatu erabiltzailea mapa kargatzen denean?"
97
101
 
98
- #: models.py:165
102
+ #: models.py:185
99
103
  msgid "Choose the map licence."
100
104
  msgstr "Aukeratu maparen lizentzia."
101
105
 
102
- #: models.py:166
106
+ #: models.py:186
103
107
  msgid "licence"
104
108
  msgstr "lizentzia"
105
109
 
106
- #: models.py:177
110
+ #: models.py:197
107
111
  msgid "owner"
108
112
  msgstr "jabea"
109
113
 
110
- #: models.py:181
114
+ #: models.py:201
111
115
  msgid "editors"
112
116
  msgstr "editoreak"
113
117
 
114
- #: models.py:186 models.py:413
118
+ #: models.py:207
119
+ msgid "team"
120
+ msgstr ""
121
+
122
+ #: models.py:213 models.py:447
115
123
  msgid "edit status"
116
124
  msgstr "editatu egoera"
117
125
 
118
- #: models.py:191
126
+ #: models.py:218
119
127
  msgid "share status"
120
128
  msgstr "partekatu egoera"
121
129
 
122
- #: models.py:194 models.py:408
130
+ #: models.py:221 models.py:442
123
131
  msgid "settings"
124
132
  msgstr "ezarpenak"
125
133
 
126
- #: models.py:330
134
+ #: models.py:364
127
135
  msgid "Clone of"
128
136
  msgstr "Beste honen klona"
129
137
 
130
- #: models.py:399
131
- msgid "description"
132
- msgstr "deskribapena"
133
-
134
- #: models.py:403
138
+ #: models.py:437
135
139
  msgid "display on load"
136
140
  msgstr "erakutsi kargatzean"
137
141
 
138
- #: models.py:404
142
+ #: models.py:438
139
143
  msgid "Display this layer on load."
140
144
  msgstr "Erakutsi geruza hau kargatzean"
141
145
 
142
- #: templates/404.html:6
146
+ #: templates/404.html:8
143
147
  msgid "Take me to the home page"
144
148
  msgstr "Eraman nazazu hasiera orrialdera"
145
149
 
146
- #: templates/auth/user_detail.html:5
150
+ #: templates/auth/user_detail.html:8
147
151
  #, python-format
148
152
  msgid "Browse %(current_user)s's maps"
149
153
  msgstr "Arakatu %(current_user)s erabiltzailearen mapak"
150
154
 
151
- #: templates/auth/user_detail.html:12
155
+ #: templates/auth/user_detail.html:17
152
156
  #, python-format
153
157
  msgid "%(current_user)s has no maps."
154
158
  msgstr "%(current_user)s erabiltzaileak ez du maparik."
155
159
 
156
- #: templates/auth/user_form.html:6
157
- msgid "My Maps"
158
- msgstr "Nire mapak"
159
-
160
- #: templates/auth/user_form.html:7
161
- msgid "My Profile"
162
- msgstr "Nire profila"
163
-
164
- #: templates/auth/user_form.html:20
160
+ #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
165
161
  msgid "Save"
166
162
  msgstr "Gorde"
167
163
 
168
- #: templates/auth/user_form.html:25
164
+ #: templates/auth/user_form.html:27
169
165
  msgid "Your current providers"
170
166
  msgstr "Zure egungo hornitzaileak"
171
167
 
172
- #: templates/auth/user_form.html:31
168
+ #: templates/auth/user_form.html:39
173
169
  msgid "Connect to another provider"
174
170
  msgstr "Konektatu beste hornitzaile batekin"
175
171
 
176
- #: templates/auth/user_form.html:33
172
+ #: templates/auth/user_form.html:42
177
173
  msgid ""
178
174
  "It's a good habit to connect your account to more than one provider, in case"
179
175
  " one provider becomes unavailable, temporarily or even permanently."
180
176
  msgstr "Ohitura ona da zure kontua hornitzaile bati baino gehiagori konektatzea, hornitzaileren bat erabilgarri ez badago, aldi baterako edo baita betiko."
181
177
 
182
- #: templates/auth/user_stars.html:5
178
+ #: templates/auth/user_stars.html:8
183
179
  #, python-format
184
180
  msgid "Browse %(current_user)s's starred maps"
185
- msgstr "Arakatu %(current_user)s erabiltzaileak hasitako mapak"
181
+ msgstr "Arakatu %(current_user)s erabiltzailearen gogoko mapak"
186
182
 
187
- #: templates/auth/user_stars.html:12
183
+ #: templates/auth/user_stars.html:17
188
184
  #, python-format
189
185
  msgid "%(current_user)s has no starred maps yet."
190
- msgstr "%(current_user)s erabiltzaileak ez du hasitako maparik oraindik."
186
+ msgstr "%(current_user)s erabiltzaileak ez du gogoko maparik oraindik."
191
187
 
192
- #: templates/base.html:12
188
+ #: templates/base.html:13
193
189
  msgid ""
194
190
  "uMap lets you create maps with OpenStreetMap layers in a minute and embed "
195
191
  "them in your site."
196
192
  msgstr "uMap-ek OpenStreetMap geruzekin mapak minutu batean sortzeko eta zure webgunean txertatzeko aukera ematen dizu."
197
193
 
198
- #: templates/registration/login.html:16
194
+ #: templates/registration/login.html:6 templates/registration/login.html:45
195
+ msgid "Login"
196
+ msgstr "Sartu"
197
+
198
+ #: templates/registration/login.html:24
199
199
  msgid "Please log in with your account"
200
200
  msgstr "Sartu zure kontua erabiliz"
201
201
 
202
- #: templates/registration/login.html:28
202
+ #: templates/registration/login.html:41
203
203
  msgid "Username"
204
204
  msgstr "Erabiltzaile izena"
205
205
 
206
- #: templates/registration/login.html:31
206
+ #: templates/registration/login.html:44
207
207
  msgid "Password"
208
208
  msgstr "Pasahitza"
209
209
 
210
- #: templates/registration/login.html:32
211
- msgid "Login"
212
- msgstr "Sartu"
213
-
214
- #: templates/registration/login.html:37
210
+ #: templates/registration/login.html:51
215
211
  msgid "Please choose a provider"
216
212
  msgstr "Aukeratu hornitzaile bat"
217
213
 
218
- #: templates/umap/about_summary.html:11
214
+ #: templates/umap/about_summary.html:12
219
215
  #, python-format
220
216
  msgid ""
221
217
  "uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
222
218
  "layers in a minute and embed them in your site."
223
219
  msgstr "uMapek <a href=\"%(osm_url)s\" />OpenStreetMap</a> geruzak darabiltzaten mapak sortzen uzten dizu ondoren nahi duzun webgunean txertatzeko."
224
220
 
225
- #: templates/umap/about_summary.html:21
221
+ #: templates/umap/about_summary.html:23
226
222
  msgid "Choose the layers of your map"
227
223
  msgstr "Aukeratu zure maparen geruzak"
228
224
 
229
- #: templates/umap/about_summary.html:22
225
+ #: templates/umap/about_summary.html:26
230
226
  msgid "Add POIs: markers, lines, polygons..."
231
227
  msgstr "Gehitu intereseko puntuak: markak, lerroak, poligonoak..."
232
228
 
233
- #: templates/umap/about_summary.html:23
229
+ #: templates/umap/about_summary.html:29
234
230
  msgid "Manage POIs colours and icons"
235
231
  msgstr "Kudeatu intereseko puntuen kolore eta ikonoak"
236
232
 
237
- #: templates/umap/about_summary.html:24
233
+ #: templates/umap/about_summary.html:32
238
234
  msgid "Manage map options: display a minimap, locate user on load…"
239
235
  msgstr "Kudeatu maparen aukerak: mapa txikia erakutsi, erabiltzailearen kokapena erabili..."
240
236
 
241
- #: templates/umap/about_summary.html:25
237
+ #: templates/umap/about_summary.html:35
242
238
  msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
243
239
  msgstr "Inportatu egituratutako datuak (geojson, gpx, kml, osm, ...)"
244
240
 
245
- #: templates/umap/about_summary.html:26
241
+ #: templates/umap/about_summary.html:38
246
242
  msgid "Choose the license for your data"
247
243
  msgstr "Aukeratu zure datuen lizentzia"
248
244
 
249
- #: templates/umap/about_summary.html:27
245
+ #: templates/umap/about_summary.html:41
250
246
  msgid "Embed and share your map"
251
247
  msgstr "Txertatu eta partekatu zure mapa"
252
248
 
253
- #: templates/umap/about_summary.html:37
249
+ #: templates/umap/about_summary.html:52
254
250
  #, python-format
255
251
  msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
256
252
  msgstr "Eta <a href=\"%(repo_url)s\">software librea</a> da!"
257
253
 
258
- #: templates/umap/about_summary.html:48 templates/umap/navigation.html:38
259
- #: templates/umap/user_dashboard.html:42
254
+ #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
255
+ #: templates/umap/user_dashboard.html:40
260
256
  msgid "Create a map"
261
257
  msgstr "Sortu mapa bat"
262
258
 
263
- #: templates/umap/about_summary.html:51
259
+ #: templates/umap/about_summary.html:66
264
260
  msgid "Play with the demo"
265
261
  msgstr "Jolastu probatako ingurunean"
266
262
 
267
- #: templates/umap/components/alerts/alert.html:14
268
- #: templates/umap/components/alerts/alert.html:49
269
- #: templates/umap/components/alerts/alert.html:71
263
+ #: templates/umap/components/alerts/alert.html:15
264
+ #: templates/umap/components/alerts/alert.html:64
265
+ #: templates/umap/components/alerts/alert.html:92
270
266
  msgid "Close"
271
267
  msgstr "Itxi"
272
268
 
273
- #: templates/umap/components/alerts/alert.html:27
269
+ #: templates/umap/components/alerts/alert.html:30
274
270
  #, python-format
275
271
  msgid ""
276
272
  "Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
@@ -278,45 +274,45 @@ msgid ""
278
274
  "target=\"_blank\">log in</a>."
279
275
  msgstr "Aholkua: zure mapak erraz aurkitzeko, <a href=\"%(login_url)s\" target=\"_blank\">kontu bat sortu</a> edo<a href=\"%(login_url)s\" target=\"_blank\">saioa hasi</a>."
280
276
 
281
- #: templates/umap/components/alerts/alert.html:30
277
+ #: templates/umap/components/alerts/alert.html:35
282
278
  msgid "Here is your secret link to edit the map, please keep it safe:"
283
279
  msgstr "Hona hemen mapa editatzeko zure esteka sekretua, gorde ezazu seguru:"
284
280
 
285
- #: templates/umap/components/alerts/alert.html:33
281
+ #: templates/umap/components/alerts/alert.html:39
286
282
  msgid "Copy link"
287
283
  msgstr "Kopiatu esteka"
288
284
 
289
- #: templates/umap/components/alerts/alert.html:39
285
+ #: templates/umap/components/alerts/alert.html:46
290
286
  msgid "Enter your email address to receive the secret link:"
291
287
  msgstr "Sartu zure helbide elektronikoa esteka sekretua jasotzeko:"
292
288
 
293
- #: templates/umap/components/alerts/alert.html:41
289
+ #: templates/umap/components/alerts/alert.html:52
294
290
  msgid "Email"
295
291
  msgstr "Helbide elektronikoa"
296
292
 
297
- #: templates/umap/components/alerts/alert.html:42
293
+ #: templates/umap/components/alerts/alert.html:55
298
294
  msgid "Send me the link"
299
295
  msgstr "Bidalidazu esteka"
300
296
 
301
- #: templates/umap/components/alerts/alert.html:63
297
+ #: templates/umap/components/alerts/alert.html:79
302
298
  msgid "See their edits in another tab"
303
- msgstr ""
299
+ msgstr "Ikusi haien aldaketak beste fitxa batean"
304
300
 
305
- #: templates/umap/components/alerts/alert.html:64
301
+ #: templates/umap/components/alerts/alert.html:82
306
302
  msgid "Keep your changes and loose theirs"
307
- msgstr ""
303
+ msgstr "Mantendu zure aldaketak eta baztertu haienak"
308
304
 
309
- #: templates/umap/components/alerts/alert.html:65
305
+ #: templates/umap/components/alerts/alert.html:85
310
306
  msgid "Keep their changes and loose yours"
311
- msgstr ""
307
+ msgstr "Mantendu haien aldaketak eta baztertu zureak"
312
308
 
313
- #: templates/umap/content.html:24
309
+ #: templates/umap/content.html:26
314
310
  msgid ""
315
311
  "This instance of uMap is currently in read only mode, no creation/edit is "
316
312
  "allowed."
317
- msgstr ""
313
+ msgstr "uMap-en instantzia hau irakurtzeko moduan dago une honetan, ezin da baimenik sortu edo editatu."
318
314
 
319
- #: templates/umap/content.html:32
315
+ #: templates/umap/content.html:34
320
316
  #, python-format
321
317
  msgid ""
322
318
  "This is a demo instance, used for tests and pre-rolling releases. If you "
@@ -325,279 +321,339 @@ msgid ""
325
321
  "instance, it's <a href=\"%(repo_url)s\">open source</a>!"
326
322
  msgstr "Hau probatako ingurunea da, testak egin eta argitaratu aurreko bertsioak probatzeko erabiltzen da. Ingurune egonkorra behar baduzu, erabili mesedez <a href=\"%(stable_url)s\">%(stable_url)s</a>. Zure instantzia propioa ere erabili dezakezu, <a href=\"%(repo_url)s\">software librea</a> da!"
327
323
 
328
- #: templates/umap/home.html:11
324
+ #: templates/umap/content_footer.html:5
325
+ msgid "An OpenStreetMap project"
326
+ msgstr ""
327
+
328
+ #: templates/umap/content_footer.html:6
329
+ msgid "version"
330
+ msgstr ""
331
+
332
+ #: templates/umap/content_footer.html:7
333
+ msgid "Hosted by"
334
+ msgstr ""
335
+
336
+ #: templates/umap/content_footer.html:8
337
+ msgid "Contact"
338
+ msgstr ""
339
+
340
+ #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
341
+ msgid "Help"
342
+ msgstr "Laguntza"
343
+
344
+ #: templates/umap/dashboard_menu.html:6
345
+ #, python-format
346
+ msgid "My Maps (%(count)s)"
347
+ msgstr "Nire mapak (%(count)s)"
348
+
349
+ #: templates/umap/dashboard_menu.html:8
350
+ msgid "My Maps"
351
+ msgstr "Nire mapak"
352
+
353
+ #: templates/umap/dashboard_menu.html:11
354
+ msgid "My profile"
355
+ msgstr "Nire profila"
356
+
357
+ #: templates/umap/dashboard_menu.html:13
358
+ msgid "My teams"
359
+ msgstr ""
360
+
361
+ #: templates/umap/home.html:14
329
362
  msgid "Map of the uMaps"
330
- msgstr "uMapen mapa"
363
+ msgstr "uMap-en mapa"
331
364
 
332
- #: templates/umap/home.html:17
365
+ #: templates/umap/home.html:24
333
366
  msgid "Get inspired, browse maps"
334
367
  msgstr "Inspira zaitez dauden mapak arakatzen"
335
368
 
336
- #: templates/umap/login_popup_end.html:2
369
+ #: templates/umap/login_popup_end.html:4
337
370
  msgid "You are logged in. Continuing..."
338
371
  msgstr "Sartu egin zara. Jarraitu..."
339
372
 
340
- #: templates/umap/map_list.html:9 views.py:348
373
+ #: templates/umap/map_list.html:10 views.py:433
341
374
  msgid "by"
342
375
  msgstr "nork eginda"
343
376
 
344
- #: templates/umap/map_list.html:17
377
+ #: templates/umap/map_list.html:18
345
378
  msgid "More"
346
379
  msgstr "Gehiago"
347
380
 
348
- #: templates/umap/map_table.html:6
381
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
349
382
  msgid "Name"
350
- msgstr ""
383
+ msgstr "Izena"
351
384
 
352
- #: templates/umap/map_table.html:7
385
+ #: templates/umap/map_table.html:11
353
386
  msgid "Preview"
354
- msgstr ""
387
+ msgstr "Aurrikuspena"
355
388
 
356
- #: templates/umap/map_table.html:8
389
+ #: templates/umap/map_table.html:14
357
390
  msgid "Who can see"
358
- msgstr ""
391
+ msgstr "Nork ikus dezake"
359
392
 
360
- #: templates/umap/map_table.html:9
393
+ #: templates/umap/map_table.html:17
361
394
  msgid "Who can edit"
362
- msgstr ""
395
+ msgstr "Nork edita dezake"
363
396
 
364
- #: templates/umap/map_table.html:10
397
+ #: templates/umap/map_table.html:20
365
398
  msgid "Last save"
366
- msgstr ""
399
+ msgstr "Azken gordetzea"
367
400
 
368
- #: templates/umap/map_table.html:11
401
+ #: templates/umap/map_table.html:23
369
402
  msgid "Owner"
370
- msgstr ""
403
+ msgstr "Jabea"
371
404
 
372
- #: templates/umap/map_table.html:12
405
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
373
406
  msgid "Actions"
374
- msgstr ""
407
+ msgstr "Ekintzak"
375
408
 
376
- #: templates/umap/map_table.html:26 templates/umap/map_table.html:28
409
+ #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
377
410
  msgid "Open preview"
378
- msgstr ""
411
+ msgstr "Ireki aurrebista"
379
412
 
380
- #: templates/umap/map_table.html:48 templates/umap/map_table.html:50
413
+ #: templates/umap/map_table.html:72 templates/umap/map_table.html:74
381
414
  msgid "Share"
382
- msgstr ""
415
+ msgstr "Partekatu"
383
416
 
384
- #: templates/umap/map_table.html:54 templates/umap/map_table.html:56
417
+ #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
418
+ #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
385
419
  msgid "Edit"
386
- msgstr ""
420
+ msgstr "Editatu"
387
421
 
388
- #: templates/umap/map_table.html:60 templates/umap/map_table.html:62
422
+ #: templates/umap/map_table.html:84 templates/umap/map_table.html:86
389
423
  msgid "Download"
390
- msgstr ""
424
+ msgstr "Deskargatu"
391
425
 
392
- #: templates/umap/map_table.html:66 templates/umap/map_table.html:68
426
+ #: templates/umap/map_table.html:90 templates/umap/map_table.html:92
393
427
  msgid "Clone"
394
- msgstr ""
428
+ msgstr "Klonatu"
395
429
 
396
- #: templates/umap/map_table.html:77 templates/umap/map_table.html:79
430
+ #: templates/umap/map_table.html:101 templates/umap/map_table.html:103
397
431
  msgid "Delete"
398
- msgstr ""
432
+ msgstr "Ezabatu"
399
433
 
400
- #: templates/umap/map_table.html:93
434
+ #: templates/umap/map_table.html:117
401
435
  msgid "first"
402
- msgstr ""
436
+ msgstr "lehenengoa"
403
437
 
404
- #: templates/umap/map_table.html:94
438
+ #: templates/umap/map_table.html:118
405
439
  msgid "previous"
406
- msgstr ""
440
+ msgstr "aurrekoa"
407
441
 
408
- #: templates/umap/map_table.html:102
442
+ #: templates/umap/map_table.html:126
409
443
  #, python-format
410
444
  msgid "Page %(maps_number)s of %(num_pages)s"
411
- msgstr ""
445
+ msgstr " %(maps_number)s / %(num_pages)sorria"
412
446
 
413
- #: templates/umap/map_table.html:107
447
+ #: templates/umap/map_table.html:131
414
448
  msgid "next"
415
- msgstr ""
449
+ msgstr "hurrengoa"
416
450
 
417
- #: templates/umap/map_table.html:108
451
+ #: templates/umap/map_table.html:132
418
452
  msgid "last"
419
- msgstr ""
453
+ msgstr "azkena"
420
454
 
421
- #: templates/umap/map_table.html:116
455
+ #: templates/umap/map_table.html:140
422
456
  #, python-format
423
457
  msgid "Lines per page: %(per_page)s"
424
- msgstr ""
458
+ msgstr "Lerroak orriko: %(per_page)s"
425
459
 
426
- #: templates/umap/map_table.html:121
460
+ #: templates/umap/map_table.html:145
427
461
  #, python-format
428
462
  msgid "%(count)s maps"
429
- msgstr ""
463
+ msgstr "%(count)s mapa"
430
464
 
431
- #: templates/umap/navigation.html:10 templates/umap/user_dashboard.html:4
465
+ #: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
432
466
  msgid "My Dashboard"
433
- msgstr ""
467
+ msgstr "Nire panela"
434
468
 
435
- #: templates/umap/navigation.html:13
469
+ #: templates/umap/navigation.html:14
436
470
  msgid "Starred maps"
437
- msgstr ""
471
+ msgstr "Gogoko mapak"
438
472
 
439
- #: templates/umap/navigation.html:17
473
+ #: templates/umap/navigation.html:18
440
474
  msgid "Log in"
441
475
  msgstr "Sartu"
442
476
 
443
- #: templates/umap/navigation.html:17
477
+ #: templates/umap/navigation.html:18
444
478
  msgid "Sign in"
445
479
  msgstr "Izena eman"
446
480
 
447
- #: templates/umap/navigation.html:21
481
+ #: templates/umap/navigation.html:22
448
482
  msgid "About"
449
483
  msgstr "Honi buruz"
450
484
 
451
- #: templates/umap/navigation.html:24
452
- msgid "Help"
453
- msgstr "Laguntza"
454
-
455
- #: templates/umap/navigation.html:29
485
+ #: templates/umap/navigation.html:30
456
486
  msgid "Change password"
457
487
  msgstr "Aldatu pasahitza"
458
488
 
459
- #: templates/umap/navigation.html:33
489
+ #: templates/umap/navigation.html:34
460
490
  msgid "Log out"
461
491
  msgstr "Irten"
462
492
 
463
- #: templates/umap/password_change.html:4
493
+ #: templates/umap/password_change.html:7
464
494
  msgid "Password change"
465
495
  msgstr "Pasahiz aldaketa"
466
496
 
467
- #: templates/umap/password_change.html:6
497
+ #: templates/umap/password_change.html:10
468
498
  msgid ""
469
499
  "Please enter your old password, for security's sake, and then enter your new"
470
500
  " password twice so we can verify you typed it in correctly."
471
501
  msgstr "Idatzi zure pasahitz zaharra, eta ondoren zure pasahitz berria birritan, horrela ondo sartu duzula egiaztatuko dugu."
472
502
 
473
- #: templates/umap/password_change.html:13
503
+ #: templates/umap/password_change.html:17
474
504
  msgid "Old password"
475
505
  msgstr "Pasahitz zaharra"
476
506
 
477
- #: templates/umap/password_change.html:18
507
+ #: templates/umap/password_change.html:22
478
508
  msgid "New password"
479
509
  msgstr "Pasahitz berria"
480
510
 
481
- #: templates/umap/password_change.html:22
511
+ #: templates/umap/password_change.html:26
482
512
  msgid "New password confirmation"
483
513
  msgstr "Pasahitz berriaren egiaztapena"
484
514
 
485
- #: templates/umap/password_change.html:23
515
+ #: templates/umap/password_change.html:27
486
516
  msgid "Change my password"
487
517
  msgstr "Aldatu nire pasahitza"
488
518
 
489
- #: templates/umap/password_change_done.html:4
519
+ #: templates/umap/password_change_done.html:7
490
520
  msgid "Password change successful"
491
521
  msgstr "Pasahitza ondo aldatu da"
492
522
 
493
- #: templates/umap/password_change_done.html:5
523
+ #: templates/umap/password_change_done.html:10
494
524
  msgid "Your password was changed."
495
525
  msgstr "Zure pasahitza aldatu egin da"
496
526
 
497
- #: templates/umap/search.html:13
527
+ #: templates/umap/search.html:15
498
528
  #, python-format
499
529
  msgid "%(count)s map found:"
500
530
  msgid_plural "%(count)s maps found:"
501
- msgstr[0] ""
502
- msgstr[1] ""
531
+ msgstr[0] "mapa %(count)s aurkitu da:"
532
+ msgstr[1] "%(count)s mapa aurkitu dira:"
503
533
 
504
- #: templates/umap/search.html:21
534
+ #: templates/umap/search.html:24
505
535
  msgid "No map found."
506
- msgstr ""
536
+ msgstr "Ez da maparik aurkitu"
507
537
 
508
- #: templates/umap/search.html:24
538
+ #: templates/umap/search.html:29
509
539
  msgid "Latest created maps"
510
- msgstr ""
540
+ msgstr "Sortutako azken mapak"
511
541
 
512
- #: templates/umap/search_bar.html:3
542
+ #: templates/umap/search_bar.html:4
513
543
  msgid "Search maps"
514
544
  msgstr "Bilatu mapak"
515
545
 
516
- #: templates/umap/search_bar.html:14
546
+ #: templates/umap/search_bar.html:15
517
547
  msgid "Search"
518
548
  msgstr "Bilatu"
519
549
 
520
- #: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
521
- msgid "Search my maps"
550
+ #: templates/umap/team_detail.html:10
551
+ #, python-format
552
+ msgid "Browse %(current_team)s's maps"
522
553
  msgstr ""
523
554
 
524
- #: templates/umap/user_dashboard.html:10
555
+ #: templates/umap/team_detail.html:22
525
556
  #, python-format
526
- msgid "My Maps (%(count)s)"
557
+ msgid "%(current_team)s has no public maps."
527
558
  msgstr ""
528
559
 
529
- #: templates/umap/user_dashboard.html:12
530
- msgid "My profile"
560
+ #: templates/umap/team_form.html:24
561
+ msgid "Delete this team"
531
562
  msgstr ""
532
563
 
533
- #: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
534
- msgid "Map’s title"
564
+ #: templates/umap/team_form.html:47
565
+ msgid "Add user"
535
566
  msgstr ""
536
567
 
537
- #: templates/umap/user_dashboard.html:32
568
+ #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
569
+ msgid "Search my maps"
570
+ msgstr "Bilatu mapen arabera"
571
+
572
+ #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
573
+ msgid "Map’s title"
574
+ msgstr "Maparen izenburua"
575
+
576
+ #: templates/umap/user_dashboard.html:30
538
577
  #, python-format
539
578
  msgid "Download %(count)s maps"
540
- msgstr ""
579
+ msgstr "Deskargatu %(count)s mapa"
541
580
 
542
- #: templates/umap/user_dashboard.html:42
581
+ #: templates/umap/user_dashboard.html:40
543
582
  msgid "You have no map yet."
583
+ msgstr "Oraindik ez daukazu maparik."
584
+
585
+ #: templates/umap/user_teams.html:17
586
+ msgid "Users"
544
587
  msgstr ""
545
588
 
546
- #: views.py:353
589
+ #: templates/umap/user_teams.html:48
590
+ msgid "New team"
591
+ msgstr ""
592
+
593
+ #: views.py:235
594
+ msgid "Cannot delete a team with more than one member"
595
+ msgstr ""
596
+
597
+ #: views.py:239
598
+ #, python-format
599
+ msgid "Team “%(name)s” has been deleted"
600
+ msgstr ""
601
+
602
+ #: views.py:438
547
603
  msgid "View the map"
548
604
  msgstr "Mapa ikusi"
549
605
 
550
- #: views.py:719
606
+ #: views.py:824
551
607
  msgid "See full screen"
552
- msgstr ""
608
+ msgstr "Ikusi pantaila osoan"
553
609
 
554
- #: views.py:847
610
+ #: views.py:953
555
611
  msgid "Map editors updated with success!"
556
612
  msgstr "Maparen editoreak ondo eguneratu dira!"
557
613
 
558
- #: views.py:883
614
+ #: views.py:989
559
615
  #, python-format
560
616
  msgid "The uMap edit link for your map: %(map_name)s"
561
- msgstr ""
617
+ msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
562
618
 
563
- #: views.py:886
619
+ #: views.py:992
564
620
  #, python-format
565
621
  msgid "Here is your secret edit link: %(link)s"
566
- msgstr ""
622
+ msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
567
623
 
568
- #: views.py:893
624
+ #: views.py:999
569
625
  #, python-format
570
626
  msgid "Can't send email to %(email)s"
571
- msgstr ""
627
+ msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
572
628
 
573
- #: views.py:896
629
+ #: views.py:1002
574
630
  #, python-format
575
631
  msgid "Email sent to %(email)s"
576
- msgstr ""
632
+ msgstr "Posta elektronikoa bidalita %(email)s-ri"
577
633
 
578
- #: views.py:907
634
+ #: views.py:1013
579
635
  msgid "Only its owner can delete the map."
580
636
  msgstr "Jabeak bakarrik ezabatu dezake mapa."
581
637
 
582
- #: views.py:910
638
+ #: views.py:1016
583
639
  msgid "Map successfully deleted."
584
- msgstr ""
640
+ msgstr "Mapa behar bezala ezabatu da."
585
641
 
586
- #: views.py:936
642
+ #: views.py:1042
587
643
  #, python-format
588
644
  msgid ""
589
645
  "Your map has been cloned! If you want to edit this map from another "
590
646
  "computer, please use this link: %(anonymous_url)s"
591
647
  msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
592
648
 
593
- #: views.py:941
649
+ #: views.py:1047
594
650
  msgid "Congratulations, your map has been cloned!"
595
651
  msgstr "Zorionak, zure mapa ondo klonatu da!"
596
652
 
597
- #: views.py:1176
653
+ #: views.py:1282
598
654
  msgid "Layer successfully deleted."
599
655
  msgstr "Geruza ondo ezabatu da."
600
656
 
601
- #: views.py:1198
657
+ #: views.py:1304
602
658
  msgid "Permissions updated with success!"
603
- msgstr ""
659
+ msgstr "Baimenak behar bezala eguneratu dira!"