umap-project 3.0.5__py3-none-any.whl → 3.1.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 (145) hide show
  1. umap/__init__.py +1 -1
  2. umap/forms.py +1 -1
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/br/LC_MESSAGES/django.po +219 -72
  5. umap/locale/ca/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/ca/LC_MESSAGES/django.po +286 -95
  7. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
  9. umap/locale/da/LC_MESSAGES/django.mo +0 -0
  10. umap/locale/da/LC_MESSAGES/django.po +394 -202
  11. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  12. umap/locale/de/LC_MESSAGES/django.po +146 -75
  13. umap/locale/el/LC_MESSAGES/django.mo +0 -0
  14. umap/locale/el/LC_MESSAGES/django.po +125 -59
  15. umap/locale/en/LC_MESSAGES/django.mo +0 -0
  16. umap/locale/en/LC_MESSAGES/django.po +124 -58
  17. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  18. umap/locale/es/LC_MESSAGES/django.po +125 -59
  19. umap/locale/et/LC_MESSAGES/django.mo +0 -0
  20. umap/locale/et/LC_MESSAGES/django.po +210 -64
  21. umap/locale/eu/LC_MESSAGES/django.mo +0 -0
  22. umap/locale/eu/LC_MESSAGES/django.po +212 -65
  23. umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
  24. umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
  25. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  26. umap/locale/fr/LC_MESSAGES/django.po +125 -59
  27. umap/locale/gl/LC_MESSAGES/django.mo +0 -0
  28. umap/locale/gl/LC_MESSAGES/django.po +212 -66
  29. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  30. umap/locale/hu/LC_MESSAGES/django.po +148 -78
  31. umap/locale/is/LC_MESSAGES/django.mo +0 -0
  32. umap/locale/is/LC_MESSAGES/django.po +130 -60
  33. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  34. umap/locale/it/LC_MESSAGES/django.po +219 -73
  35. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  36. umap/locale/ms/LC_MESSAGES/django.po +289 -98
  37. umap/locale/nl/LC_MESSAGES/django.mo +0 -0
  38. umap/locale/nl/LC_MESSAGES/django.po +128 -61
  39. umap/locale/pl/LC_MESSAGES/django.mo +0 -0
  40. umap/locale/pl/LC_MESSAGES/django.po +287 -96
  41. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  42. umap/locale/pt/LC_MESSAGES/django.po +211 -65
  43. umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
  44. umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
  45. umap/management/commands/migrate_to_S3.py +42 -20
  46. umap/management/commands/purge_old_versions.py +63 -0
  47. umap/management/commands/switch_user.py +52 -0
  48. umap/managers.py +29 -2
  49. umap/middleware.py +1 -1
  50. umap/migrations/0028_map_is_template.py +21 -0
  51. umap/models.py +14 -4
  52. umap/settings/base.py +22 -0
  53. umap/static/umap/base.css +4 -2
  54. umap/static/umap/content.css +1 -1
  55. umap/static/umap/css/dialog.css +5 -2
  56. umap/static/umap/css/form.css +19 -12
  57. umap/static/umap/css/icon.css +6 -0
  58. umap/static/umap/css/importers.css +4 -0
  59. umap/static/umap/css/panel.css +2 -0
  60. umap/static/umap/img/16-white.svg +5 -1
  61. umap/static/umap/img/16.svg +1 -1
  62. umap/static/umap/img/24-white.svg +3 -2
  63. umap/static/umap/img/24.svg +3 -4
  64. umap/static/umap/img/importers/opendata.svg +1 -0
  65. umap/static/umap/img/source/16-white.svg +8 -4
  66. umap/static/umap/img/source/16.svg +1 -1
  67. umap/static/umap/img/source/24-white.svg +5 -4
  68. umap/static/umap/img/source/24.svg +5 -6
  69. umap/static/umap/js/components/modal.js +27 -0
  70. umap/static/umap/js/modules/caption.js +4 -4
  71. umap/static/umap/js/modules/data/features.js +40 -4
  72. umap/static/umap/js/modules/data/layer.js +208 -138
  73. umap/static/umap/js/modules/form/builder.js +6 -14
  74. umap/static/umap/js/modules/form/fields.js +2 -2
  75. umap/static/umap/js/modules/help.js +15 -3
  76. umap/static/umap/js/modules/importer.js +7 -4
  77. umap/static/umap/js/modules/importers/opendata.js +142 -0
  78. umap/static/umap/js/modules/permissions.js +3 -3
  79. umap/static/umap/js/modules/rendering/controls.js +34 -2
  80. umap/static/umap/js/modules/rendering/icon.js +2 -2
  81. umap/static/umap/js/modules/rendering/layers/base.js +1 -1
  82. umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
  83. umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
  84. umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
  85. umap/static/umap/js/modules/rendering/map.js +5 -0
  86. umap/static/umap/js/modules/rendering/ui.js +23 -0
  87. umap/static/umap/js/modules/rules.js +24 -23
  88. umap/static/umap/js/modules/schema.js +60 -4
  89. umap/static/umap/js/modules/sync/updaters.js +7 -3
  90. umap/static/umap/js/modules/tableeditor.js +7 -30
  91. umap/static/umap/js/modules/templates.js +122 -0
  92. umap/static/umap/js/modules/ui/bar.js +13 -3
  93. umap/static/umap/js/modules/ui/panel.js +1 -1
  94. umap/static/umap/js/modules/umap.js +28 -13
  95. umap/static/umap/js/umap.controls.js +11 -4
  96. umap/static/umap/locale/br.js +51 -18
  97. umap/static/umap/locale/br.json +51 -18
  98. umap/static/umap/locale/da.js +343 -310
  99. umap/static/umap/locale/da.json +343 -310
  100. umap/static/umap/locale/de.js +40 -7
  101. umap/static/umap/locale/de.json +40 -7
  102. umap/static/umap/locale/el.js +31 -4
  103. umap/static/umap/locale/el.json +31 -4
  104. umap/static/umap/locale/en.js +34 -1
  105. umap/static/umap/locale/en.json +34 -1
  106. umap/static/umap/locale/es.js +37 -4
  107. umap/static/umap/locale/es.json +37 -4
  108. umap/static/umap/locale/fr.js +34 -1
  109. umap/static/umap/locale/fr.json +34 -1
  110. umap/static/umap/locale/hu.js +44 -17
  111. umap/static/umap/locale/hu.json +44 -17
  112. umap/static/umap/locale/it.js +74 -41
  113. umap/static/umap/locale/it.json +74 -41
  114. umap/static/umap/locale/nl.js +42 -9
  115. umap/static/umap/locale/nl.json +42 -9
  116. umap/static/umap/map.css +3 -23
  117. umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
  118. umap/storage/fs.py +19 -9
  119. umap/templates/umap/dashboard_menu.html +5 -0
  120. umap/templates/umap/design_system.html +9 -0
  121. umap/templates/umap/js.html +3 -0
  122. umap/templates/umap/map_init.html +3 -1
  123. umap/templates/umap/map_list.html +2 -2
  124. umap/templates/umap/map_table.html +18 -18
  125. umap/templates/umap/user_dashboard.html +9 -58
  126. umap/templates/umap/user_map_table.html +36 -0
  127. umap/templates/umap/user_templates.html +19 -0
  128. umap/templatetags/umap_tags.py +5 -0
  129. umap/tests/integration/test_basics.py +9 -1
  130. umap/tests/integration/test_conditional_rules.py +57 -0
  131. umap/tests/integration/test_datalayer.py +16 -9
  132. umap/tests/integration/test_edit_marker.py +11 -0
  133. umap/tests/integration/test_tableeditor.py +42 -7
  134. umap/tests/integration/test_templates.py +44 -0
  135. umap/tests/test_dashboard.py +19 -0
  136. umap/tests/test_purge_old_versions.py +91 -0
  137. umap/tests/test_switch_user.py +31 -0
  138. umap/tests/test_views.py +67 -0
  139. umap/urls.py +7 -1
  140. umap/views.py +65 -19
  141. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
  142. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
  143. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
  144. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
  145. {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
@@ -13,7 +13,7 @@ msgid ""
13
13
  msgstr ""
14
14
  "Project-Id-Version: uMap\n"
15
15
  "Report-Msgid-Bugs-To: \n"
16
- "POT-Creation-Date: 2025-03-03 17:36+0000\n"
16
+ "POT-Creation-Date: 2025-06-10 09:19+0000\n"
17
17
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
18
18
  "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2025\n"
19
19
  "Language-Team: Galician (http://app.transifex.com/openstreetmap/umap/language/gl/)\n"
@@ -40,137 +40,229 @@ msgstr "O sitio é só de lectura por mantemento"
40
40
  msgid ""
41
41
  "Using “%(name)s” to authenticate is deprecated and will be removed soon. "
42
42
  "Please configure another provider below before losing access to your account"
43
- " and maps."
44
- msgstr ""
43
+ " and maps. Then, please logout and login again with the new provider."
44
+ msgstr "O uso de «%(name)s» para autenticarse é obsoleto e eliminarase en breve. Configure a outro provedor a continuación antes de perder o acceso á súa conta e mapas. Após, saia e volva acceder co novo provedor."
45
45
 
46
- #: models.py:60 models.py:79
46
+ #: models.py:61 models.py:80
47
47
  msgid "name"
48
48
  msgstr "nome"
49
49
 
50
- #: models.py:62 models.py:485
50
+ #: models.py:63 models.py:503
51
51
  msgid "description"
52
52
  msgstr "descrición"
53
53
 
54
- #: models.py:110
54
+ #: models.py:111
55
55
  msgid "details"
56
56
  msgstr "detalles"
57
57
 
58
- #: models.py:111
58
+ #: models.py:112
59
59
  msgid "Link to a page where the licence is detailed."
60
60
  msgstr "Ligazón a unha páxina web onde se detalla a licenza."
61
61
 
62
- #: models.py:121
62
+ #: models.py:122
63
63
  msgid "URL template using OSM tile format"
64
64
  msgstr "Modelo de URL que usa o formato de teselas de OSM"
65
65
 
66
- #: models.py:127
66
+ #: models.py:128
67
67
  msgid "Order of the tilelayers in the edit box"
68
68
  msgstr "Orde das capas base na caixa de edición"
69
69
 
70
- #: models.py:175 models.py:479
70
+ #: models.py:176 models.py:497
71
71
  msgid "Only editable with secret edit link"
72
72
  msgstr "Só é posíbel editalo coa ligazón secreta de edición"
73
73
 
74
- #: models.py:176 models.py:480
74
+ #: models.py:177 models.py:498
75
75
  msgid "Everyone can edit"
76
76
  msgstr "Calquera pode editalo"
77
77
 
78
- #: models.py:179 models.py:473
78
+ #: models.py:180 models.py:491
79
79
  msgid "Everyone"
80
80
  msgstr "Calquera"
81
81
 
82
- #: models.py:180 models.py:189 models.py:474
82
+ #: models.py:181 models.py:190 models.py:492
83
83
  msgid "Editors and team only"
84
84
  msgstr "Só editores e equipo"
85
85
 
86
- #: models.py:181 models.py:475
86
+ #: models.py:182 models.py:493
87
87
  msgid "Owner only"
88
88
  msgstr "Só o propietario"
89
89
 
90
- #: models.py:184
90
+ #: models.py:185
91
91
  msgid "Draft (private)"
92
92
  msgstr "Borrador (privado)"
93
93
 
94
- #: models.py:185
94
+ #: models.py:186
95
95
  msgid "Everyone (public)"
96
96
  msgstr "Calquera (público)"
97
97
 
98
- #: models.py:188
98
+ #: models.py:189
99
99
  msgid "Anyone with link"
100
100
  msgstr "Calquera con ligazón"
101
101
 
102
- #: models.py:190
102
+ #: models.py:191
103
103
  msgid "Blocked"
104
104
  msgstr "Bloqueado"
105
105
 
106
- #: models.py:191 models.py:469
106
+ #: models.py:192 models.py:487
107
107
  msgid "Deleted"
108
108
  msgstr "Eliminado"
109
109
 
110
- #: models.py:194
110
+ #: models.py:195
111
111
  msgid "center"
112
112
  msgstr "centrar"
113
113
 
114
- #: models.py:195
114
+ #: models.py:196
115
115
  msgid "zoom"
116
116
  msgstr "zoom"
117
117
 
118
- #: models.py:197
118
+ #: models.py:198
119
119
  msgid "locate"
120
120
  msgstr "localizar"
121
121
 
122
- #: models.py:197
122
+ #: models.py:198
123
123
  msgid "Locate user on load?"
124
124
  msgstr "Localizar o usuario na carga?"
125
125
 
126
- #: models.py:201
126
+ #: models.py:202
127
127
  msgid "Choose the map licence."
128
128
  msgstr "Escolle a licenza do mapa."
129
129
 
130
- #: models.py:202
130
+ #: models.py:203
131
131
  msgid "licence"
132
132
  msgstr "licenza"
133
133
 
134
- #: models.py:213
134
+ #: models.py:214
135
135
  msgid "owner"
136
136
  msgstr "propietario"
137
137
 
138
- #: models.py:217
138
+ #: models.py:218
139
139
  msgid "editors"
140
140
  msgstr "editores"
141
141
 
142
- #: models.py:223
142
+ #: models.py:224
143
143
  msgid "team"
144
144
  msgstr "equipo"
145
145
 
146
- #: models.py:229 models.py:501
146
+ #: models.py:230 models.py:519
147
147
  msgid "edit status"
148
148
  msgstr "estado da edición"
149
149
 
150
- #: models.py:234 models.py:506
150
+ #: models.py:235 models.py:524
151
151
  msgid "share status"
152
152
  msgstr "compartir o estado"
153
153
 
154
- #: models.py:237 models.py:496
154
+ #: models.py:238 models.py:514
155
155
  msgid "settings"
156
156
  msgstr "axustes"
157
157
 
158
- #: models.py:407
158
+ #: models.py:243
159
+ msgid "save as template"
160
+ msgstr ""
161
+
162
+ #: models.py:244
163
+ msgid "This map is a template map."
164
+ msgstr ""
165
+
166
+ #: models.py:420
159
167
  msgid "Clone of"
160
168
  msgstr "Clon de"
161
169
 
162
- #: models.py:468 models.py:472 models.py:478
170
+ #: models.py:486 models.py:490 models.py:496
163
171
  msgid "Inherit"
164
172
  msgstr "Herdar"
165
173
 
166
- #: models.py:491
174
+ #: models.py:509
167
175
  msgid "display on load"
168
176
  msgstr "amosar na carga"
169
177
 
170
- #: models.py:492
178
+ #: models.py:510
171
179
  msgid "Display this layer on load."
172
180
  msgstr "Amosar esta capa na carga."
173
181
 
182
+ #: settings/base.py:283
183
+ msgid "uMap user documentation"
184
+ msgstr ""
185
+
186
+ #: settings/base.py:288
187
+ msgid "Video tutorials"
188
+ msgstr ""
189
+
190
+ #: settings/base.py:293
191
+ msgid "OpenStreetMap.org forum"
192
+ msgstr ""
193
+
194
+ #: settings/base.py:298
195
+ msgid "OpenStreetMap France forum"
196
+ msgstr ""
197
+
198
+ #: settings/base.py:318
199
+ msgid "Art and Culture"
200
+ msgstr ""
201
+
202
+ #: settings/base.py:319
203
+ msgid "Cycling"
204
+ msgstr ""
205
+
206
+ #: settings/base.py:320
207
+ msgid "Business"
208
+ msgstr ""
209
+
210
+ #: settings/base.py:321
211
+ msgid "Environment"
212
+ msgstr ""
213
+
214
+ #: settings/base.py:322
215
+ msgid "Education"
216
+ msgstr ""
217
+
218
+ #: settings/base.py:323
219
+ msgid "Food and Agriculture"
220
+ msgstr ""
221
+
222
+ #: settings/base.py:324
223
+ msgid "Geopolitics"
224
+ msgstr ""
225
+
226
+ #: settings/base.py:325
227
+ msgid "Health"
228
+ msgstr ""
229
+
230
+ #: settings/base.py:326
231
+ msgid "Hiking"
232
+ msgstr ""
233
+
234
+ #: settings/base.py:327
235
+ msgid "History"
236
+ msgstr ""
237
+
238
+ #: settings/base.py:328
239
+ msgid "Public sector"
240
+ msgstr ""
241
+
242
+ #: settings/base.py:329
243
+ msgid "Science"
244
+ msgstr ""
245
+
246
+ #: settings/base.py:330
247
+ msgid "Shopping"
248
+ msgstr ""
249
+
250
+ #: settings/base.py:331
251
+ msgid "Sport and Leisure"
252
+ msgstr ""
253
+
254
+ #: settings/base.py:332
255
+ msgid "Travel"
256
+ msgstr ""
257
+
258
+ #: settings/base.py:333
259
+ msgid "Transports"
260
+ msgstr ""
261
+
262
+ #: settings/base.py:334
263
+ msgid "Tourism"
264
+ msgstr ""
265
+
174
266
  #: templates/403.html:8
175
267
  msgid ""
176
268
  "<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
@@ -313,7 +405,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
313
405
  msgstr "E isto é de <a href=\"%(repo_url)s\">código aberto</a>!"
314
406
 
315
407
  #: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
316
- #: templates/umap/user_dashboard.html:40
408
+ #: templates/umap/user_dashboard.html:16
317
409
  msgid "Create a map"
318
410
  msgstr "Facer un mapa"
319
411
 
@@ -411,11 +503,20 @@ msgstr "Os meus mapas (%(count)s)"
411
503
  msgid "My Maps"
412
504
  msgstr "Os meus mapas"
413
505
 
414
- #: templates/umap/dashboard_menu.html:12
506
+ #: templates/umap/dashboard_menu.html:11
507
+ #, python-format
508
+ msgid "My Templates (%(count)s)"
509
+ msgstr ""
510
+
511
+ #: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
512
+ msgid "My Templates"
513
+ msgstr ""
514
+
515
+ #: templates/umap/dashboard_menu.html:17
415
516
  msgid "My profile"
416
517
  msgstr "O meu perfil"
417
518
 
418
- #: templates/umap/dashboard_menu.html:15
519
+ #: templates/umap/dashboard_menu.html:20
419
520
  msgid "My teams"
420
521
  msgstr "Os meus equipos"
421
522
 
@@ -423,7 +524,7 @@ msgstr "Os meus equipos"
423
524
  msgid "Map of the uMaps"
424
525
  msgstr "Mapa do uMaps"
425
526
 
426
- #: templates/umap/home.html:24
527
+ #: templates/umap/home.html:25
427
528
  msgid "Get inspired, browse maps"
428
529
  msgstr "Inspírate, consulta mapas"
429
530
 
@@ -431,11 +532,23 @@ msgstr "Inspírate, consulta mapas"
431
532
  msgid "You are logged in. Continuing..."
432
533
  msgstr "Iniciaches a sesión. Estase a continuar..."
433
534
 
434
- #: templates/umap/map_list.html:11 views.py:437
535
+ #: templates/umap/map_list.html:15
536
+ msgid "template"
537
+ msgstr ""
538
+
539
+ #: templates/umap/map_list.html:18 views.py:458
435
540
  msgid "by"
436
541
  msgstr "por"
437
542
 
438
- #: templates/umap/map_list.html:20
543
+ #: templates/umap/map_list.html:22
544
+ msgid "See the template"
545
+ msgstr ""
546
+
547
+ #: templates/umap/map_list.html:22
548
+ msgid "See the map"
549
+ msgstr ""
550
+
551
+ #: templates/umap/map_list.html:28
439
552
  msgid "More"
440
553
  msgstr "Máis"
441
554
 
@@ -467,7 +580,7 @@ msgstr "Propietario"
467
580
  msgid "Actions"
468
581
  msgstr "Accións"
469
582
 
470
- #: templates/umap/map_table.html:41 templates/umap/map_table.html:43
583
+ #: templates/umap/map_table.html:40 templates/umap/map_table.html:42
471
584
  msgid "Open preview"
472
585
  msgstr "Abrir a vista previa"
473
586
 
@@ -594,11 +707,15 @@ msgid_plural "%(count)s maps found:"
594
707
  msgstr[0] "Atopouse %(count)s mapa:"
595
708
  msgstr[1] "Atopáronse %(count)s mapas:"
596
709
 
597
- #: templates/umap/search.html:28
710
+ #: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
598
711
  msgid "No map found."
599
712
  msgstr "Non se atopou ningún mapa."
600
713
 
601
- #: templates/umap/search.html:33
714
+ #: templates/umap/search.html:36
715
+ msgid "Latest created maps in category"
716
+ msgstr ""
717
+
718
+ #: templates/umap/search.html:43
602
719
  msgid "Latest created maps"
603
720
  msgstr "Últimos mapas creados"
604
721
 
@@ -606,7 +723,11 @@ msgstr "Últimos mapas creados"
606
723
  msgid "Search maps"
607
724
  msgstr "Buscar mapas"
608
725
 
609
- #: templates/umap/search_bar.html:16
726
+ #: templates/umap/search_bar.html:14
727
+ msgid "Any category"
728
+ msgstr ""
729
+
730
+ #: templates/umap/search_bar.html:19
610
731
  msgid "Search"
611
732
  msgstr "Buscar"
612
733
 
@@ -641,20 +762,20 @@ msgstr "Eliminar este equipo"
641
762
  msgid "Add user"
642
763
  msgstr "Engadir usuario"
643
764
 
644
- #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
765
+ #: templates/umap/user_dashboard.html:10
645
766
  msgid "Search my maps"
646
767
  msgstr "Buscar nos meus mapas"
647
768
 
648
- #: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
649
- msgid "Map’s title"
650
- msgstr "Título do mapa"
769
+ #: templates/umap/user_dashboard.html:11
770
+ msgid "Map’s name"
771
+ msgstr ""
651
772
 
652
- #: templates/umap/user_dashboard.html:30
773
+ #: templates/umap/user_dashboard.html:12
653
774
  #, python-format
654
775
  msgid "Download %(count)s maps"
655
776
  msgstr "Descargar %(count)s mapas"
656
777
 
657
- #: templates/umap/user_dashboard.html:40
778
+ #: templates/umap/user_dashboard.html:15
658
779
  msgid "You have no map yet."
659
780
  msgstr "Aínda non tes ningún mapa."
660
781
 
@@ -670,70 +791,95 @@ msgstr "Usuarios"
670
791
  msgid "New team"
671
792
  msgstr "Novo equipo"
672
793
 
673
- #: views.py:234
794
+ #: templates/umap/user_templates.html:10
795
+ msgid "Search my templates"
796
+ msgstr ""
797
+
798
+ #: templates/umap/user_templates.html:11
799
+ msgid "Template’s name"
800
+ msgstr ""
801
+
802
+ #: templates/umap/user_templates.html:12
803
+ #, python-format
804
+ msgid "Download %(count)s templates"
805
+ msgstr ""
806
+
807
+ #: templates/umap/user_templates.html:15
808
+ msgid "You have no template yet."
809
+ msgstr ""
810
+
811
+ #: templates/umap/user_templates.html:16
812
+ msgid "Create a template"
813
+ msgstr ""
814
+
815
+ #: templates/umap/user_templates.html:17
816
+ msgid "No template found."
817
+ msgstr ""
818
+
819
+ #: views.py:233
674
820
  msgid "Cannot delete a team with more than one member"
675
821
  msgstr "Non é posíbel eliminar un equipo con máis dun membro"
676
822
 
677
- #: views.py:238
823
+ #: views.py:237
678
824
  #, python-format
679
825
  msgid "Team “%(name)s” has been deleted"
680
826
  msgstr "Foi eliminado o equipo %(name)s"
681
827
 
682
- #: views.py:442
828
+ #: views.py:463
683
829
  msgid "View the map"
684
830
  msgstr "Ver o mapa"
685
831
 
686
- #: views.py:838
832
+ #: views.py:864
687
833
  msgid "See full screen"
688
834
  msgstr "Ver a pantalla completa"
689
835
 
690
- #: views.py:981
836
+ #: views.py:1007
691
837
  msgid "Map editors updated with success!"
692
838
  msgstr "O editores do mapa foron actualizados correctamente!"
693
839
 
694
- #: views.py:1017
840
+ #: views.py:1043
695
841
  #, python-format
696
842
  msgid "The uMap edit link for your map: %(map_name)s"
697
843
  msgstr "A ligazón de edición de uMap para o teu mapa: %(map_name)s"
698
844
 
699
- #: views.py:1020
845
+ #: views.py:1046
700
846
  #, python-format
701
847
  msgid "Here is your secret edit link: %(link)s"
702
848
  msgstr "Aquí tes a túa ligazón secret de edicióna: %(link)s"
703
849
 
704
- #: views.py:1027
850
+ #: views.py:1053
705
851
  #, python-format
706
852
  msgid "Can't send email to %(email)s"
707
853
  msgstr "Non é posíbel enviar o correo a %(email)s"
708
854
 
709
- #: views.py:1030
855
+ #: views.py:1056
710
856
  #, python-format
711
857
  msgid "Email sent to %(email)s"
712
858
  msgstr "Correo enviado a %(email)s"
713
859
 
714
- #: views.py:1041
860
+ #: views.py:1067
715
861
  msgid "Only its owner can delete the map."
716
862
  msgstr "Só o seu dono pode eliminar o mapa."
717
863
 
718
- #: views.py:1044
864
+ #: views.py:1073
719
865
  msgid "Map successfully deleted."
720
866
  msgstr "O mapa foi eliminado correctamente."
721
867
 
722
- #: views.py:1070
868
+ #: views.py:1099
723
869
  #, python-format
724
870
  msgid ""
725
871
  "Your map has been cloned! If you want to edit this map from another "
726
872
  "computer, please use this link: %(anonymous_url)s"
727
873
  msgstr "O teu mapa foi clonado! Se queres editar este mapa desde outro computador, emprega esta ligazón: %(anonymous_url)s"
728
874
 
729
- #: views.py:1075
875
+ #: views.py:1104
730
876
  msgid "Congratulations, your map has been cloned!"
731
877
  msgstr "Parabéns! O teu mapa foi clonado!"
732
878
 
733
- #: views.py:1329
879
+ #: views.py:1358
734
880
  msgid "Layer successfully deleted."
735
881
  msgstr "A capa foi eliminada correctamente."
736
882
 
737
- #: views.py:1351
883
+ #: views.py:1380
738
884
  msgid "Permissions updated with success!"
739
885
  msgstr "Os permisos foron actualizados correctamente!"
Binary file