umap-project 2.9.2__py3-none-any.whl → 3.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (222) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/forms.py +1 -2
  4. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  5. umap/locale/de/LC_MESSAGES/django.po +218 -96
  6. umap/locale/en/LC_MESSAGES/django.po +131 -55
  7. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/et/LC_MESSAGES/django.po +175 -130
  9. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/eu/LC_MESSAGES/django.po +117 -72
  11. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/fr/LC_MESSAGES/django.po +132 -56
  13. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/hu/LC_MESSAGES/django.po +209 -88
  15. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/is/LC_MESSAGES/django.po +296 -175
  17. umap/middleware.py +2 -1
  18. umap/migrations/0027_map_tags.py +23 -0
  19. umap/models.py +13 -2
  20. umap/settings/base.py +23 -5
  21. umap/static/umap/base.css +41 -8
  22. umap/static/umap/content.css +72 -37
  23. umap/static/umap/css/bar.css +43 -21
  24. umap/static/umap/css/dialog.css +4 -1
  25. umap/static/umap/css/form.css +40 -27
  26. umap/static/umap/css/icon.css +11 -1
  27. umap/static/umap/css/importers.css +7 -0
  28. umap/static/umap/img/16-white.svg +23 -2
  29. umap/static/umap/img/16.svg +1 -1
  30. umap/static/umap/img/24.svg +4 -4
  31. umap/static/umap/img/home.svg +7 -0
  32. umap/static/umap/img/importers/banfr.svg +1 -0
  33. umap/static/umap/img/marker.svg +2 -5
  34. umap/static/umap/img/source/16-white.svg +24 -3
  35. umap/static/umap/img/source/16.svg +1 -1
  36. umap/static/umap/img/source/24.svg +5 -5
  37. umap/static/umap/img/target.svg +1 -0
  38. umap/static/umap/js/components/alerts/alert.js +0 -1
  39. umap/static/umap/js/modules/browser.js +4 -4
  40. umap/static/umap/js/modules/caption.js +1 -1
  41. umap/static/umap/js/modules/data/features.js +25 -25
  42. umap/static/umap/js/modules/data/layer.js +91 -97
  43. umap/static/umap/js/modules/facets.js +9 -5
  44. umap/static/umap/js/modules/form/builder.js +21 -29
  45. umap/static/umap/js/modules/form/fields.js +40 -14
  46. umap/static/umap/js/modules/formatter.js +1 -1
  47. umap/static/umap/js/modules/global.js +9 -5
  48. umap/static/umap/js/modules/help.js +18 -5
  49. umap/static/umap/js/modules/importer.js +5 -2
  50. umap/static/umap/js/modules/importers/banfr.js +93 -0
  51. umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
  52. umap/static/umap/js/modules/importers/communesfr.js +1 -1
  53. umap/static/umap/js/modules/permissions.js +20 -10
  54. umap/static/umap/js/modules/rendering/icon.js +15 -2
  55. umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
  56. umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
  57. umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
  58. umap/static/umap/js/modules/rendering/map.js +14 -6
  59. umap/static/umap/js/modules/rendering/popup.js +2 -2
  60. umap/static/umap/js/modules/rendering/template.js +3 -3
  61. umap/static/umap/js/modules/rendering/ui.js +17 -11
  62. umap/static/umap/js/modules/rules.js +13 -16
  63. umap/static/umap/js/modules/schema.js +23 -1
  64. umap/static/umap/js/modules/share.js +1 -1
  65. umap/static/umap/js/modules/slideshow.js +1 -0
  66. umap/static/umap/js/modules/sync/engine.js +141 -19
  67. umap/static/umap/js/modules/sync/undo.js +101 -0
  68. umap/static/umap/js/modules/sync/updaters.js +51 -28
  69. umap/static/umap/js/modules/tableeditor.js +1 -1
  70. umap/static/umap/js/modules/ui/bar.js +61 -21
  71. umap/static/umap/js/modules/ui/tooltip.js +1 -1
  72. umap/static/umap/js/modules/umap.js +190 -176
  73. umap/static/umap/js/modules/utils.js +30 -4
  74. umap/static/umap/js/umap.controls.js +82 -38
  75. umap/static/umap/locale/am_ET.js +13 -7
  76. umap/static/umap/locale/am_ET.json +13 -7
  77. umap/static/umap/locale/ar.js +13 -7
  78. umap/static/umap/locale/ar.json +13 -7
  79. umap/static/umap/locale/ast.js +13 -7
  80. umap/static/umap/locale/ast.json +13 -7
  81. umap/static/umap/locale/bg.js +13 -7
  82. umap/static/umap/locale/bg.json +13 -7
  83. umap/static/umap/locale/br.js +13 -8
  84. umap/static/umap/locale/br.json +13 -8
  85. umap/static/umap/locale/ca.js +13 -7
  86. umap/static/umap/locale/ca.json +13 -7
  87. umap/static/umap/locale/cs_CZ.js +26 -20
  88. umap/static/umap/locale/cs_CZ.json +26 -20
  89. umap/static/umap/locale/da.js +13 -7
  90. umap/static/umap/locale/da.json +13 -7
  91. umap/static/umap/locale/de.js +47 -41
  92. umap/static/umap/locale/de.json +47 -41
  93. umap/static/umap/locale/el.js +13 -7
  94. umap/static/umap/locale/el.json +13 -7
  95. umap/static/umap/locale/en.js +12 -7
  96. umap/static/umap/locale/en.json +12 -7
  97. umap/static/umap/locale/en_US.json +13 -7
  98. umap/static/umap/locale/es.js +19 -13
  99. umap/static/umap/locale/es.json +19 -13
  100. umap/static/umap/locale/et.js +13 -7
  101. umap/static/umap/locale/et.json +13 -7
  102. umap/static/umap/locale/eu.js +43 -37
  103. umap/static/umap/locale/eu.json +43 -37
  104. umap/static/umap/locale/fa_IR.js +13 -7
  105. umap/static/umap/locale/fa_IR.json +13 -7
  106. umap/static/umap/locale/fi.js +13 -7
  107. umap/static/umap/locale/fi.json +13 -7
  108. umap/static/umap/locale/fr.js +12 -7
  109. umap/static/umap/locale/fr.json +12 -7
  110. umap/static/umap/locale/gl.js +19 -13
  111. umap/static/umap/locale/gl.json +19 -13
  112. umap/static/umap/locale/he.js +13 -7
  113. umap/static/umap/locale/he.json +13 -7
  114. umap/static/umap/locale/hr.js +13 -7
  115. umap/static/umap/locale/hr.json +13 -7
  116. umap/static/umap/locale/hu.js +25 -19
  117. umap/static/umap/locale/hu.json +25 -19
  118. umap/static/umap/locale/id.js +13 -7
  119. umap/static/umap/locale/id.json +13 -7
  120. umap/static/umap/locale/is.js +151 -145
  121. umap/static/umap/locale/is.json +151 -145
  122. umap/static/umap/locale/it.js +13 -7
  123. umap/static/umap/locale/it.json +13 -7
  124. umap/static/umap/locale/ja.js +13 -7
  125. umap/static/umap/locale/ja.json +13 -7
  126. umap/static/umap/locale/ko.js +13 -7
  127. umap/static/umap/locale/ko.json +13 -7
  128. umap/static/umap/locale/lt.js +13 -7
  129. umap/static/umap/locale/lt.json +13 -7
  130. umap/static/umap/locale/ms.js +13 -7
  131. umap/static/umap/locale/ms.json +13 -7
  132. umap/static/umap/locale/nl.js +12 -7
  133. umap/static/umap/locale/nl.json +12 -7
  134. umap/static/umap/locale/no.js +13 -7
  135. umap/static/umap/locale/no.json +13 -7
  136. umap/static/umap/locale/pl.js +13 -7
  137. umap/static/umap/locale/pl.json +13 -7
  138. umap/static/umap/locale/pl_PL.json +13 -7
  139. umap/static/umap/locale/pt.js +12 -7
  140. umap/static/umap/locale/pt.json +12 -7
  141. umap/static/umap/locale/pt_BR.js +13 -7
  142. umap/static/umap/locale/pt_BR.json +13 -7
  143. umap/static/umap/locale/pt_PT.js +13 -7
  144. umap/static/umap/locale/pt_PT.json +13 -7
  145. umap/static/umap/locale/ro.js +13 -7
  146. umap/static/umap/locale/ro.json +13 -7
  147. umap/static/umap/locale/ru.js +13 -7
  148. umap/static/umap/locale/ru.json +13 -7
  149. umap/static/umap/locale/sk_SK.js +13 -7
  150. umap/static/umap/locale/sk_SK.json +13 -7
  151. umap/static/umap/locale/sl.js +13 -7
  152. umap/static/umap/locale/sl.json +13 -7
  153. umap/static/umap/locale/sr.js +13 -7
  154. umap/static/umap/locale/sr.json +13 -7
  155. umap/static/umap/locale/sv.js +13 -7
  156. umap/static/umap/locale/sv.json +13 -7
  157. umap/static/umap/locale/th_TH.js +13 -7
  158. umap/static/umap/locale/th_TH.json +13 -7
  159. umap/static/umap/locale/tr.js +13 -7
  160. umap/static/umap/locale/tr.json +13 -7
  161. umap/static/umap/locale/uk_UA.js +13 -7
  162. umap/static/umap/locale/uk_UA.json +13 -7
  163. umap/static/umap/locale/vi.js +13 -7
  164. umap/static/umap/locale/vi.json +13 -7
  165. umap/static/umap/locale/vi_VN.json +13 -7
  166. umap/static/umap/locale/zh.js +13 -7
  167. umap/static/umap/locale/zh.json +13 -7
  168. umap/static/umap/locale/zh_CN.json +13 -7
  169. umap/static/umap/locale/zh_TW.Big5.json +13 -7
  170. umap/static/umap/locale/zh_TW.js +19 -13
  171. umap/static/umap/locale/zh_TW.json +19 -13
  172. umap/static/umap/map.css +58 -28
  173. umap/static/umap/unittests/sync.js +0 -57
  174. umap/static/umap/unittests/utils.js +47 -0
  175. umap/static/umap/vars.css +5 -2
  176. umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
  177. umap/sync/payloads.py +3 -2
  178. umap/templates/auth/user_detail.html +1 -1
  179. umap/templates/auth/user_stars.html +1 -1
  180. umap/templates/umap/content.html +17 -12
  181. umap/templates/umap/home.html +7 -5
  182. umap/templates/umap/map_fragment.html +1 -1
  183. umap/templates/umap/map_list.html +20 -13
  184. umap/templates/umap/search.html +7 -3
  185. umap/templates/umap/search_bar.html +13 -11
  186. umap/templates/umap/team_detail.html +1 -1
  187. umap/tests/base.py +2 -1
  188. umap/tests/fixtures/remote_data.umap +55 -0
  189. umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
  190. umap/tests/integration/test_browser.py +1 -3
  191. umap/tests/integration/test_conditional_rules.py +3 -0
  192. umap/tests/integration/test_edit_datalayer.py +2 -7
  193. umap/tests/integration/test_edit_map.py +15 -0
  194. umap/tests/integration/test_edit_polygon.py +1 -2
  195. umap/tests/integration/test_import.py +59 -2
  196. umap/tests/integration/test_optimistic_merge.py +4 -3
  197. umap/tests/integration/test_owned_map.py +0 -1
  198. umap/tests/integration/test_save.py +2 -4
  199. umap/tests/integration/test_undo_redo.py +267 -0
  200. umap/tests/integration/test_websocket_sync.py +78 -11
  201. umap/tests/settings.py +1 -3
  202. umap/tests/test_datalayer_s3.py +1 -0
  203. umap/tests/test_map_views.py +1 -0
  204. umap/tests/test_views.py +34 -0
  205. umap/utils.py +1 -1
  206. umap/views.py +23 -2
  207. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
  208. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
  209. umap/static/umap/js/modules/saving.js +0 -52
  210. umap/static/umap/test/.eslintrc +0 -21
  211. umap/static/umap/test/DataLayer.js +0 -463
  212. umap/static/umap/test/Feature.js +0 -131
  213. umap/static/umap/test/Map.js +0 -37
  214. umap/static/umap/test/Marker.js +0 -126
  215. umap/static/umap/test/Polygon.js +0 -111
  216. umap/static/umap/test/Polyline.js +0 -286
  217. umap/static/umap/test/Util.js +0 -28
  218. umap/static/umap/test/_pre.js +0 -455
  219. umap/static/umap/test/index.html +0 -139
  220. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
  221. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
  222. {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
Binary file
@@ -3,15 +3,15 @@
3
3
  # This file is distributed under the same license as the PACKAGE package.
4
4
  #
5
5
  # Translators:
6
- # Alexander Gabilondo <alexgabi@disroot.org>, 2024
6
+ # Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025
7
7
  # Mikel Larreategi <mlarreategi@codesyntax.com>, 2023
8
8
  msgid ""
9
9
  msgstr ""
10
10
  "Project-Id-Version: uMap\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2024-12-24 08:39+0000\n"
12
+ "POT-Creation-Date: 2025-03-07 15:18+0000\n"
13
13
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
14
- "Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024\n"
14
+ "Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025\n"
15
15
  "Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -25,17 +25,25 @@ msgstr "CSV esportazioa"
25
25
 
26
26
  #: decorators.py:60
27
27
  msgid "This map is not publicly available"
28
- msgstr ""
28
+ msgstr "Mapa hau ez dago publikoki erabilgarri"
29
29
 
30
- #: middleware.py:13
30
+ #: middleware.py:19
31
31
  msgid "Site is readonly for maintenance"
32
32
  msgstr "Webgunea irakurtzeko moduan dago mantentze-lanak direla-eta"
33
33
 
34
+ #: middleware.py:34
35
+ #, python-format
36
+ msgid ""
37
+ "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
38
+ "Please configure another provider below before losing access to your account"
39
+ " and maps. Then, please logout and login again with the new provider."
40
+ msgstr ""
41
+
34
42
  #: models.py:60 models.py:79
35
43
  msgid "name"
36
44
  msgstr "izena"
37
45
 
38
- #: models.py:62 models.py:475
46
+ #: models.py:62 models.py:485
39
47
  msgid "description"
40
48
  msgstr "deskribapena"
41
49
 
@@ -55,23 +63,23 @@ msgstr "URLaren txantiloia OSMren lauzen formatua erabiliz"
55
63
  msgid "Order of the tilelayers in the edit box"
56
64
  msgstr "Lauzen geruzek edizio kutxan duten ordena"
57
65
 
58
- #: models.py:175 models.py:469
66
+ #: models.py:175 models.py:479
59
67
  msgid "Only editable with secret edit link"
60
68
  msgstr "Bakarrik esteka sekretuarekin bakarrik editatu daiteke"
61
69
 
62
- #: models.py:176 models.py:470
70
+ #: models.py:176 models.py:480
63
71
  msgid "Everyone can edit"
64
72
  msgstr "Edonork editatu dezake"
65
73
 
66
- #: models.py:179 models.py:463
74
+ #: models.py:179 models.py:473
67
75
  msgid "Everyone"
68
76
  msgstr "Edonork"
69
77
 
70
- #: models.py:180 models.py:189 models.py:464
78
+ #: models.py:180 models.py:189 models.py:474
71
79
  msgid "Editors and team only"
72
80
  msgstr "Editoreak eta taldea soilik"
73
81
 
74
- #: models.py:181 models.py:465
82
+ #: models.py:181 models.py:475
75
83
  msgid "Owner only"
76
84
  msgstr "Jabea bakarrik"
77
85
 
@@ -91,7 +99,7 @@ msgstr "Esteka duen edonork"
91
99
  msgid "Blocked"
92
100
  msgstr "Blokeatuta"
93
101
 
94
- #: models.py:191
102
+ #: models.py:191 models.py:469
95
103
  msgid "Deleted"
96
104
  msgstr "Ezabatua"
97
105
 
@@ -131,31 +139,31 @@ msgstr "editoreak"
131
139
  msgid "team"
132
140
  msgstr "taldea"
133
141
 
134
- #: models.py:229 models.py:491
142
+ #: models.py:229 models.py:501
135
143
  msgid "edit status"
136
144
  msgstr "editatu egoera"
137
145
 
138
- #: models.py:234
146
+ #: models.py:234 models.py:506
139
147
  msgid "share status"
140
148
  msgstr "partekatu egoera"
141
149
 
142
- #: models.py:237 models.py:486
150
+ #: models.py:237 models.py:496
143
151
  msgid "settings"
144
152
  msgstr "ezarpenak"
145
153
 
146
- #: models.py:402
154
+ #: models.py:407
147
155
  msgid "Clone of"
148
156
  msgstr "Beste honen klona"
149
157
 
150
- #: models.py:462 models.py:468
158
+ #: models.py:468 models.py:472 models.py:478
151
159
  msgid "Inherit"
152
160
  msgstr "Heredatu"
153
161
 
154
- #: models.py:481
162
+ #: models.py:491
155
163
  msgid "display on load"
156
164
  msgstr "erakutsi kargatzean"
157
165
 
158
- #: models.py:482
166
+ #: models.py:492
159
167
  msgid "Display this layer on load."
160
168
  msgstr "Erakutsi geruza hau kargatzean"
161
169
 
@@ -164,50 +172,64 @@ msgid ""
164
172
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
165
173
  "target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
166
174
  " permissions."
167
- msgstr ""
175
+ msgstr " <a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Ikusi hemen</a> maparen baimenak kudeatzeko dokumentazioa."
168
176
 
169
177
  #: templates/403.html:10 templates/404.html:8
170
178
  msgid "← Go to the homepage"
171
- msgstr ""
179
+ msgstr "← Joan hasierara"
172
180
 
173
181
  #: templates/404.html:7
174
182
  msgid "404 Page Not Found"
175
- msgstr ""
183
+ msgstr "404 Ez da orrialdea aurkitu"
176
184
 
177
- #: templates/auth/user_detail.html:8
185
+ #: templates/auth/user_detail.html:6
186
+ #, python-format
187
+ msgid "%(current_user)s’s maps"
188
+ msgstr "%(current_user)s-ren mapak"
189
+
190
+ #: templates/auth/user_detail.html:12
178
191
  #, python-format
179
192
  msgid "Browse %(current_user)s's maps"
180
193
  msgstr "Arakatu %(current_user)s erabiltzailearen mapak"
181
194
 
182
- #: templates/auth/user_detail.html:17
195
+ #: templates/auth/user_detail.html:21
183
196
  #, python-format
184
197
  msgid "%(current_user)s has no maps."
185
198
  msgstr "%(current_user)s erabiltzaileak ez du maparik."
186
199
 
187
- #: templates/auth/user_form.html:21 templates/umap/team_form.html:21
200
+ #: templates/auth/user_form.html:6
201
+ msgid "My Profile"
202
+ msgstr "Nire profila"
203
+
204
+ #: templates/auth/user_form.html:24 templates/umap/team_form.html:25
188
205
  msgid "Save"
189
206
  msgstr "Gorde"
190
207
 
191
- #: templates/auth/user_form.html:27
208
+ #: templates/auth/user_form.html:30
192
209
  msgid "Your current providers"
193
210
  msgstr "Zure egungo hornitzaileak"
194
211
 
195
- #: templates/auth/user_form.html:39
212
+ #: templates/auth/user_form.html:44
196
213
  msgid "Connect to another provider"
197
214
  msgstr "Konektatu beste hornitzaile batekin"
198
215
 
199
- #: templates/auth/user_form.html:42
216
+ #: templates/auth/user_form.html:47
200
217
  msgid ""
201
218
  "It's a good habit to connect your account to more than one provider, in case"
202
219
  " one provider becomes unavailable, temporarily or even permanently."
203
220
  msgstr "Ohitura ona da zure kontua hornitzaile bati baino gehiagori konektatzea, hornitzaileren bat erabilgarri ez badago, aldi baterako edo baita betiko."
204
221
 
205
- #: templates/auth/user_stars.html:8
222
+ #: templates/auth/user_stars.html:6
223
+ #, python-format
224
+ msgid "%(current_user)s’s starred maps"
225
+ msgstr "%(current_user)s-ren mapa izardunak"
226
+
227
+ #: templates/auth/user_stars.html:12
206
228
  #, python-format
207
229
  msgid "Browse %(current_user)s's starred maps"
208
230
  msgstr "Arakatu %(current_user)s erabiltzailearen gogoko mapak"
209
231
 
210
- #: templates/auth/user_stars.html:17
232
+ #: templates/auth/user_stars.html:21
211
233
  #, python-format
212
234
  msgid "%(current_user)s has no starred maps yet."
213
235
  msgstr "%(current_user)s erabiltzaileak ez du gogoko maparik oraindik."
@@ -242,6 +264,10 @@ msgstr "Pasahitza"
242
264
  msgid "Please choose a provider:"
243
265
  msgstr "Aukeratu hornitzaile bat:"
244
266
 
267
+ #: templates/umap/about.html:5 templates/umap/navigation.html:22
268
+ msgid "About"
269
+ msgstr "Honi buruz"
270
+
245
271
  #: templates/umap/about_summary.html:12
246
272
  #, python-format
247
273
  msgid ""
@@ -401,7 +427,7 @@ msgstr "Inspira zaitez dauden mapak arakatzen"
401
427
  msgid "You are logged in. Continuing..."
402
428
  msgstr "Sartu egin zara. Jarraitu..."
403
429
 
404
- #: templates/umap/map_list.html:11 views.py:437
430
+ #: templates/umap/map_list.html:11 views.py:438
405
431
  msgid "by"
406
432
  msgstr "nork eginda"
407
433
 
@@ -409,7 +435,7 @@ msgstr "nork eginda"
409
435
  msgid "More"
410
436
  msgstr "Gehiago"
411
437
 
412
- #: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
438
+ #: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
413
439
  msgid "Name"
414
440
  msgstr "Izena"
415
441
 
@@ -427,13 +453,13 @@ msgstr "Nork edita dezake"
427
453
 
428
454
  #: templates/umap/map_table.html:20
429
455
  msgid "Last save"
430
- msgstr "Azken gordetzea"
456
+ msgstr "Gordetako azkena"
431
457
 
432
458
  #: templates/umap/map_table.html:23
433
459
  msgid "Owner"
434
460
  msgstr "Jabea"
435
461
 
436
- #: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
462
+ #: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
437
463
  msgid "Actions"
438
464
  msgstr "Ekintzak"
439
465
 
@@ -446,7 +472,7 @@ msgid "Share"
446
472
  msgstr "Partekatu"
447
473
 
448
474
  #: templates/umap/map_table.html:78 templates/umap/map_table.html:80
449
- #: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
475
+ #: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
450
476
  msgid "Edit"
451
477
  msgstr "Editatu"
452
478
 
@@ -509,10 +535,6 @@ msgstr "Sartu"
509
535
  msgid "Sign in"
510
536
  msgstr "Izena eman"
511
537
 
512
- #: templates/umap/navigation.html:22
513
- msgid "About"
514
- msgstr "Honi buruz"
515
-
516
538
  #: templates/umap/navigation.html:30
517
539
  msgid "Change password"
518
540
  msgstr "Aldatu pasahitza"
@@ -521,52 +543,58 @@ msgstr "Aldatu pasahitza"
521
543
  msgid "Log out"
522
544
  msgstr "Irten"
523
545
 
524
- #: templates/umap/password_change.html:7
546
+ #: templates/umap/password_change.html:6
547
+ #: templates/umap/password_change.html:11
525
548
  msgid "Password change"
526
549
  msgstr "Pasahiz aldaketa"
527
550
 
528
- #: templates/umap/password_change.html:10
551
+ #: templates/umap/password_change.html:14
529
552
  msgid ""
530
553
  "Please enter your old password, for security's sake, and then enter your new"
531
554
  " password twice so we can verify you typed it in correctly."
532
555
  msgstr "Idatzi zure pasahitz zaharra, eta ondoren zure pasahitz berria birritan, horrela ondo sartu duzula egiaztatuko dugu."
533
556
 
534
- #: templates/umap/password_change.html:17
557
+ #: templates/umap/password_change.html:21
535
558
  msgid "Old password"
536
559
  msgstr "Pasahitz zaharra"
537
560
 
538
- #: templates/umap/password_change.html:22
561
+ #: templates/umap/password_change.html:26
539
562
  msgid "New password"
540
563
  msgstr "Pasahitz berria"
541
564
 
542
- #: templates/umap/password_change.html:26
565
+ #: templates/umap/password_change.html:30
543
566
  msgid "New password confirmation"
544
567
  msgstr "Pasahitz berriaren egiaztapena"
545
568
 
546
- #: templates/umap/password_change.html:27
569
+ #: templates/umap/password_change.html:31
547
570
  msgid "Change my password"
548
571
  msgstr "Aldatu nire pasahitza"
549
572
 
550
- #: templates/umap/password_change_done.html:7
573
+ #: templates/umap/password_change_done.html:6
574
+ #: templates/umap/password_change_done.html:11
551
575
  msgid "Password change successful"
552
576
  msgstr "Pasahitza ondo aldatu da"
553
577
 
554
- #: templates/umap/password_change_done.html:10
578
+ #: templates/umap/password_change_done.html:14
555
579
  msgid "Your password was changed."
556
580
  msgstr "Zure pasahitza aldatu egin da"
557
581
 
558
- #: templates/umap/search.html:15
582
+ #: templates/umap/search.html:6
583
+ msgid "Explore maps"
584
+ msgstr "Arakatu mapak"
585
+
586
+ #: templates/umap/search.html:19
559
587
  #, python-format
560
588
  msgid "%(count)s map found:"
561
589
  msgid_plural "%(count)s maps found:"
562
590
  msgstr[0] "mapa %(count)s aurkitu da:"
563
591
  msgstr[1] "%(count)s mapa aurkitu dira:"
564
592
 
565
- #: templates/umap/search.html:24
593
+ #: templates/umap/search.html:28
566
594
  msgid "No map found."
567
595
  msgstr "Ez da maparik aurkitu"
568
596
 
569
- #: templates/umap/search.html:29
597
+ #: templates/umap/search.html:33
570
598
  msgid "Latest created maps"
571
599
  msgstr "Sortutako azken mapak"
572
600
 
@@ -574,25 +602,38 @@ msgstr "Sortutako azken mapak"
574
602
  msgid "Search maps"
575
603
  msgstr "Bilatu mapak"
576
604
 
577
- #: templates/umap/search_bar.html:15
605
+ #: templates/umap/search_bar.html:16
578
606
  msgid "Search"
579
607
  msgstr "Bilatu"
580
608
 
581
- #: templates/umap/team_detail.html:10
609
+ #: templates/umap/team_confirm_delete.html:6
610
+ msgid "Team deletion"
611
+ msgstr "Taldea ezabatzea"
612
+
613
+ #: templates/umap/team_detail.html:6
614
+ #, python-format
615
+ msgid "%(current_team)s’s maps"
616
+ msgstr "%(current_team)s-ren mapak"
617
+
618
+ #: templates/umap/team_detail.html:14
582
619
  #, python-format
583
620
  msgid "Browse %(current_team)s's maps"
584
621
  msgstr "Arakatu %(current_team)s-ren mapak"
585
622
 
586
- #: templates/umap/team_detail.html:22
623
+ #: templates/umap/team_detail.html:26
587
624
  #, python-format
588
625
  msgid "%(current_team)s has no public maps."
589
626
  msgstr "%(current_team)s-k ez dauka mapa publikorik."
590
627
 
591
- #: templates/umap/team_form.html:24
628
+ #: templates/umap/team_form.html:6
629
+ msgid "Create or edit a team"
630
+ msgstr "Sortu edo editatu talde bat"
631
+
632
+ #: templates/umap/team_form.html:28
592
633
  msgid "Delete this team"
593
634
  msgstr "Ezabatu talde hau"
594
635
 
595
- #: templates/umap/team_form.html:47
636
+ #: templates/umap/team_form.html:51
596
637
  msgid "Add user"
597
638
  msgstr "Gehitu erabiltzailea"
598
639
 
@@ -613,78 +654,82 @@ msgstr "Deskargatu %(count)s mapa"
613
654
  msgid "You have no map yet."
614
655
  msgstr "Oraindik ez daukazu maparik."
615
656
 
616
- #: templates/umap/user_teams.html:17
657
+ #: templates/umap/user_teams.html:6
658
+ msgid "My Teams"
659
+ msgstr "Nire taldeak"
660
+
661
+ #: templates/umap/user_teams.html:21
617
662
  msgid "Users"
618
663
  msgstr "Erabiltzaileak"
619
664
 
620
- #: templates/umap/user_teams.html:48
665
+ #: templates/umap/user_teams.html:52
621
666
  msgid "New team"
622
667
  msgstr "Talde berria"
623
668
 
624
- #: views.py:234
669
+ #: views.py:235
625
670
  msgid "Cannot delete a team with more than one member"
626
671
  msgstr "Ezin da ezabatu kide bat baino gehiago dituen talde bat"
627
672
 
628
- #: views.py:238
673
+ #: views.py:239
629
674
  #, python-format
630
675
  msgid "Team “%(name)s” has been deleted"
631
676
  msgstr "“%(name)s” taldea ezabatu da"
632
677
 
633
- #: views.py:442
678
+ #: views.py:443
634
679
  msgid "View the map"
635
680
  msgstr "Mapa ikusi"
636
681
 
637
- #: views.py:825
682
+ #: views.py:839
638
683
  msgid "See full screen"
639
684
  msgstr "Ikusi pantaila osoan"
640
685
 
641
- #: views.py:968
686
+ #: views.py:982
642
687
  msgid "Map editors updated with success!"
643
688
  msgstr "Maparen editoreak ondo eguneratu dira!"
644
689
 
645
- #: views.py:1004
690
+ #: views.py:1018
646
691
  #, python-format
647
692
  msgid "The uMap edit link for your map: %(map_name)s"
648
693
  msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
649
694
 
650
- #: views.py:1007
695
+ #: views.py:1021
651
696
  #, python-format
652
697
  msgid "Here is your secret edit link: %(link)s"
653
698
  msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
654
699
 
655
- #: views.py:1014
700
+ #: views.py:1028
656
701
  #, python-format
657
702
  msgid "Can't send email to %(email)s"
658
703
  msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
659
704
 
660
- #: views.py:1017
705
+ #: views.py:1031
661
706
  #, python-format
662
707
  msgid "Email sent to %(email)s"
663
708
  msgstr "Posta elektronikoa bidalita %(email)s-ri"
664
709
 
665
- #: views.py:1028
710
+ #: views.py:1042
666
711
  msgid "Only its owner can delete the map."
667
712
  msgstr "Jabeak bakarrik ezabatu dezake mapa."
668
713
 
669
- #: views.py:1031
714
+ #: views.py:1045
670
715
  msgid "Map successfully deleted."
671
716
  msgstr "Mapa behar bezala ezabatu da."
672
717
 
673
- #: views.py:1057
718
+ #: views.py:1071
674
719
  #, python-format
675
720
  msgid ""
676
721
  "Your map has been cloned! If you want to edit this map from another "
677
722
  "computer, please use this link: %(anonymous_url)s"
678
723
  msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
679
724
 
680
- #: views.py:1062
725
+ #: views.py:1076
681
726
  msgid "Congratulations, your map has been cloned!"
682
727
  msgstr "Zorionak, zure mapa ondo klonatu da!"
683
728
 
684
- #: views.py:1313
729
+ #: views.py:1330
685
730
  msgid "Layer successfully deleted."
686
731
  msgstr "Geruza ondo ezabatu da."
687
732
 
688
- #: views.py:1335
733
+ #: views.py:1352
689
734
  msgid "Permissions updated with success!"
690
735
  msgstr "Baimenak behar bezala eguneratu dira!"
Binary file