umap-project 2.6.3__py3-none-any.whl → 2.7.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 (137) hide show
  1. umap/__init__.py +1 -1
  2. umap/admin.py +64 -1
  3. umap/asgi.py +15 -0
  4. umap/context_processors.py +1 -0
  5. umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
  7. umap/locale/de/LC_MESSAGES/django.mo +0 -0
  8. umap/locale/de/LC_MESSAGES/django.po +19 -18
  9. umap/locale/en/LC_MESSAGES/django.po +47 -43
  10. umap/locale/es/LC_MESSAGES/django.mo +0 -0
  11. umap/locale/es/LC_MESSAGES/django.po +134 -128
  12. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  13. umap/locale/fr/LC_MESSAGES/django.po +51 -47
  14. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  15. umap/locale/pt/LC_MESSAGES/django.po +64 -60
  16. umap/management/commands/clean_tilelayer.py +152 -0
  17. umap/management/commands/purge_purgatory.py +28 -0
  18. umap/models.py +27 -2
  19. umap/settings/base.py +3 -1
  20. umap/static/umap/base.css +4 -4
  21. umap/static/umap/css/contextmenu.css +6 -1
  22. umap/static/umap/css/icon.css +7 -2
  23. umap/static/umap/css/importers.css +4 -0
  24. umap/static/umap/img/16-white.svg +9 -2
  25. umap/static/umap/img/16.svg +1 -181
  26. umap/static/umap/img/24-white.svg +1 -0
  27. umap/static/umap/img/24.svg +1 -0
  28. umap/static/umap/img/importers/cadastrefr.svg +23 -0
  29. umap/static/umap/img/source/16-white.svg +10 -3
  30. umap/static/umap/img/source/16.svg +753 -197
  31. umap/static/umap/img/source/24-white.svg +3 -2
  32. umap/static/umap/img/source/24.svg +3 -2
  33. umap/static/umap/js/modules/autocomplete.js +7 -3
  34. umap/static/umap/js/modules/browser.js +54 -1
  35. umap/static/umap/js/modules/caption.js +16 -5
  36. umap/static/umap/js/modules/data/features.js +176 -2
  37. umap/static/umap/js/modules/data/layer.js +57 -40
  38. umap/static/umap/js/modules/formatter.js +3 -2
  39. umap/static/umap/js/modules/global.js +2 -0
  40. umap/static/umap/js/modules/importer.js +3 -0
  41. umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
  42. umap/static/umap/js/modules/importers/communesfr.js +15 -3
  43. umap/static/umap/js/modules/permissions.js +123 -93
  44. umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
  45. umap/static/umap/js/modules/rendering/ui.js +60 -213
  46. umap/static/umap/js/modules/share.js +1 -3
  47. umap/static/umap/js/modules/slideshow.js +1 -1
  48. umap/static/umap/js/modules/sync/engine.js +371 -14
  49. umap/static/umap/js/modules/sync/hlc.js +106 -0
  50. umap/static/umap/js/modules/sync/updaters.js +18 -6
  51. umap/static/umap/js/modules/sync/websocket.js +1 -1
  52. umap/static/umap/js/modules/tableeditor.js +1 -1
  53. umap/static/umap/js/modules/ui/base.js +2 -2
  54. umap/static/umap/js/modules/ui/contextmenu.js +51 -18
  55. umap/static/umap/js/modules/urls.js +5 -1
  56. umap/static/umap/js/modules/utils.js +28 -4
  57. umap/static/umap/js/umap.controls.js +73 -52
  58. umap/static/umap/js/umap.core.js +3 -3
  59. umap/static/umap/js/umap.forms.js +3 -1
  60. umap/static/umap/js/umap.js +115 -124
  61. umap/static/umap/locale/br.js +13 -4
  62. umap/static/umap/locale/br.json +13 -4
  63. umap/static/umap/locale/ca.js +28 -15
  64. umap/static/umap/locale/ca.json +28 -15
  65. umap/static/umap/locale/cs_CZ.js +87 -78
  66. umap/static/umap/locale/cs_CZ.json +87 -78
  67. umap/static/umap/locale/de.js +17 -8
  68. umap/static/umap/locale/de.json +17 -8
  69. umap/static/umap/locale/en.js +13 -2
  70. umap/static/umap/locale/en.json +13 -2
  71. umap/static/umap/locale/es.js +330 -319
  72. umap/static/umap/locale/es.json +330 -319
  73. umap/static/umap/locale/eu.js +10 -3
  74. umap/static/umap/locale/eu.json +10 -3
  75. umap/static/umap/locale/fa_IR.js +11 -4
  76. umap/static/umap/locale/fa_IR.json +11 -4
  77. umap/static/umap/locale/fr.js +15 -4
  78. umap/static/umap/locale/fr.json +15 -4
  79. umap/static/umap/locale/hu.js +10 -3
  80. umap/static/umap/locale/hu.json +10 -3
  81. umap/static/umap/locale/pt.js +17 -8
  82. umap/static/umap/locale/pt.json +17 -8
  83. umap/static/umap/locale/pt_PT.js +13 -4
  84. umap/static/umap/locale/pt_PT.json +13 -4
  85. umap/static/umap/locale/zh_TW.js +13 -4
  86. umap/static/umap/locale/zh_TW.json +13 -4
  87. umap/static/umap/map.css +44 -29
  88. umap/static/umap/unittests/hlc.js +165 -0
  89. umap/static/umap/unittests/sync.js +321 -15
  90. umap/static/umap/unittests/utils.js +47 -0
  91. umap/static/umap/vars.css +2 -1
  92. umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
  93. umap/static/umap/vendors/dompurify/purify.es.js +15 -16
  94. umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
  95. umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
  96. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
  97. umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
  98. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
  99. umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
  100. umap/templates/umap/css.html +0 -2
  101. umap/templates/umap/dashboard_menu.html +4 -2
  102. umap/templates/umap/js.html +0 -5
  103. umap/templates/umap/map_detail.html +2 -2
  104. umap/tests/fixtures/test_upload_data.csv +2 -2
  105. umap/tests/integration/test_anonymous_owned_map.py +1 -0
  106. umap/tests/integration/test_basics.py +1 -1
  107. umap/tests/integration/test_browser.py +69 -7
  108. umap/tests/integration/test_caption.py +3 -3
  109. umap/tests/integration/test_circles_layer.py +12 -0
  110. umap/tests/integration/test_datalayer.py +2 -1
  111. umap/tests/integration/test_draw_polygon.py +17 -9
  112. umap/tests/integration/test_draw_polyline.py +12 -8
  113. umap/tests/integration/test_edit_datalayer.py +5 -8
  114. umap/tests/integration/test_edit_map.py +2 -2
  115. umap/tests/integration/test_edit_marker.py +1 -1
  116. umap/tests/integration/test_facets_browser.py +3 -3
  117. umap/tests/integration/test_import.py +1 -0
  118. umap/tests/integration/test_map.py +1 -0
  119. umap/tests/integration/test_owned_map.py +1 -1
  120. umap/tests/integration/test_view_marker.py +63 -0
  121. umap/tests/integration/test_view_polygon.py +12 -12
  122. umap/tests/integration/test_websocket_sync.py +65 -3
  123. umap/tests/test_clean_tilelayer.py +83 -0
  124. umap/tests/test_datalayer.py +24 -0
  125. umap/tests/test_map_views.py +20 -0
  126. umap/tests/test_purge_purgatory.py +25 -0
  127. umap/tests/test_websocket_server.py +22 -0
  128. umap/urls.py +5 -1
  129. umap/views.py +6 -3
  130. umap/websocket_server.py +130 -27
  131. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
  132. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/RECORD +135 -127
  133. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
  134. umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
  135. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
  136. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
  137. {umap_project-2.6.3.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -24,7 +24,7 @@ msgid ""
24
24
  msgstr ""
25
25
  "Project-Id-Version: uMap\n"
26
26
  "Report-Msgid-Bugs-To: \n"
27
- "POT-Creation-Date: 2024-08-30 18:23+0000\n"
27
+ "POT-Creation-Date: 2024-10-04 16:35+0000\n"
28
28
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
29
29
  "Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2024\n"
30
30
  "Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
@@ -34,6 +34,10 @@ msgstr ""
34
34
  "Language: fr\n"
35
35
  "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
36
36
 
37
+ #: admin.py:16
38
+ msgid "CSV Export"
39
+ msgstr "Export CSV"
40
+
37
41
  #: forms.py:44 forms.py:70
38
42
  msgid "Only editable with secret edit link"
39
43
  msgstr "Modifiable seulement avec le lien de modification secret"
@@ -42,7 +46,7 @@ msgstr "Modifiable seulement avec le lien de modification secret"
42
46
  msgid "Everyone can edit"
43
47
  msgstr "Tout le monde peut modifier"
44
48
 
45
- #: forms.py:69 models.py:423
49
+ #: forms.py:69 models.py:441
46
50
  msgid "Inherit"
47
51
  msgstr "Par défaut"
48
52
 
@@ -50,111 +54,111 @@ msgstr "Par défaut"
50
54
  msgid "Site is readonly for maintenance"
51
55
  msgstr "Le site est en lecture seule pour maintenance."
52
56
 
53
- #: models.py:54 models.py:73
57
+ #: models.py:55 models.py:74
54
58
  msgid "name"
55
59
  msgstr "nom"
56
60
 
57
- #: models.py:56 models.py:433
61
+ #: models.py:57 models.py:451
58
62
  msgid "description"
59
63
  msgstr "description"
60
64
 
61
- #: models.py:104
65
+ #: models.py:105
62
66
  msgid "details"
63
67
  msgstr "détails"
64
68
 
65
- #: models.py:105
69
+ #: models.py:106
66
70
  msgid "Link to a page where the licence is detailed."
67
71
  msgstr "Lien vers une page détaillant la licence."
68
72
 
69
- #: models.py:115
73
+ #: models.py:116
70
74
  msgid "URL template using OSM tile format"
71
75
  msgstr "Modèle d'URL au format des tuiles OSM"
72
76
 
73
- #: models.py:121
77
+ #: models.py:122
74
78
  msgid "Order of the tilelayers in the edit box"
75
79
  msgstr "Ordre des calques de tuiles dans le panneau de modification"
76
80
 
77
- #: models.py:167 models.py:424
81
+ #: models.py:168 models.py:442
78
82
  msgid "Everyone"
79
83
  msgstr "Tout le monde"
80
84
 
81
- #: models.py:168 models.py:174 models.py:425
85
+ #: models.py:169 models.py:175 models.py:443
82
86
  msgid "Editors and team only"
83
87
  msgstr "Éditeurs et équipe seulement"
84
88
 
85
- #: models.py:169 models.py:426
89
+ #: models.py:170 models.py:444
86
90
  msgid "Owner only"
87
91
  msgstr "Propriétaire uniquement"
88
92
 
89
- #: models.py:172
93
+ #: models.py:173
90
94
  msgid "Everyone (public)"
91
95
  msgstr "Tout le monde (public)"
92
96
 
93
- #: models.py:173
97
+ #: models.py:174
94
98
  msgid "Anyone with link"
95
99
  msgstr "Quiconque a le lien"
96
100
 
97
- #: models.py:175
101
+ #: models.py:176
98
102
  msgid "Blocked"
99
103
  msgstr "Bloquée"
100
104
 
101
- #: models.py:178
105
+ #: models.py:179
102
106
  msgid "center"
103
107
  msgstr "centre"
104
108
 
105
- #: models.py:179
109
+ #: models.py:180
106
110
  msgid "zoom"
107
111
  msgstr "zoom"
108
112
 
109
- #: models.py:181
113
+ #: models.py:182
110
114
  msgid "locate"
111
115
  msgstr "géolocaliser"
112
116
 
113
- #: models.py:181
117
+ #: models.py:182
114
118
  msgid "Locate user on load?"
115
119
  msgstr "Géolocaliser l'utilisateur au chargement ?"
116
120
 
117
- #: models.py:185
121
+ #: models.py:186
118
122
  msgid "Choose the map licence."
119
123
  msgstr "Choisir une licence pour la carte"
120
124
 
121
- #: models.py:186
125
+ #: models.py:187
122
126
  msgid "licence"
123
127
  msgstr "licence"
124
128
 
125
- #: models.py:197
129
+ #: models.py:198
126
130
  msgid "owner"
127
131
  msgstr "créateur"
128
132
 
129
- #: models.py:201
133
+ #: models.py:202
130
134
  msgid "editors"
131
135
  msgstr "éditeurs"
132
136
 
133
- #: models.py:207
137
+ #: models.py:208
134
138
  msgid "team"
135
139
  msgstr "équipe"
136
140
 
137
- #: models.py:213 models.py:447
141
+ #: models.py:214 models.py:465
138
142
  msgid "edit status"
139
143
  msgstr "statut de modification"
140
144
 
141
- #: models.py:218
145
+ #: models.py:219
142
146
  msgid "share status"
143
147
  msgstr "qui a accès"
144
148
 
145
- #: models.py:221 models.py:442
149
+ #: models.py:222 models.py:460
146
150
  msgid "settings"
147
151
  msgstr "réglages"
148
152
 
149
- #: models.py:364
153
+ #: models.py:382
150
154
  msgid "Clone of"
151
155
  msgstr "Clone de"
152
156
 
153
- #: models.py:437
157
+ #: models.py:455
154
158
  msgid "display on load"
155
159
  msgstr "afficher au chargement."
156
160
 
157
- #: models.py:438
161
+ #: models.py:456
158
162
  msgid "Display this layer on load."
159
163
  msgstr "Afficher ce calque au chargement."
160
164
 
@@ -365,11 +369,11 @@ msgstr "Mes cartes (%(count)s)"
365
369
  msgid "My Maps"
366
370
  msgstr "Mes cartes"
367
371
 
368
- #: templates/umap/dashboard_menu.html:11
372
+ #: templates/umap/dashboard_menu.html:12
369
373
  msgid "My profile"
370
374
  msgstr "Mon profil"
371
375
 
372
- #: templates/umap/dashboard_menu.html:13
376
+ #: templates/umap/dashboard_menu.html:15
373
377
  msgid "My teams"
374
378
  msgstr "Mes équipes"
375
379
 
@@ -385,11 +389,11 @@ msgstr "Naviguer dans les cartes"
385
389
  msgid "You are logged in. Continuing..."
386
390
  msgstr "Vous êtes maintenant identifié. Merci de patienter..."
387
391
 
388
- #: templates/umap/map_list.html:10 views.py:433
392
+ #: templates/umap/map_list.html:11 views.py:433
389
393
  msgid "by"
390
394
  msgstr "par"
391
395
 
392
- #: templates/umap/map_list.html:18
396
+ #: templates/umap/map_list.html:20
393
397
  msgid "More"
394
398
  msgstr "Plus"
395
399
 
@@ -619,57 +623,57 @@ msgstr "L'équipe «%(name)s» a été supprimée"
619
623
  msgid "View the map"
620
624
  msgstr "Voir la carte"
621
625
 
622
- #: views.py:824
626
+ #: views.py:818
623
627
  msgid "See full screen"
624
628
  msgstr "Plein écran"
625
629
 
626
- #: views.py:953
630
+ #: views.py:950
627
631
  msgid "Map editors updated with success!"
628
632
  msgstr "Éditeurs de la carte mis à jour !"
629
633
 
630
- #: views.py:989
634
+ #: views.py:986
631
635
  #, python-format
632
636
  msgid "The uMap edit link for your map: %(map_name)s"
633
- msgstr "La lien d'édition uMap pour votre carte : %(map_name)s"
637
+ msgstr "Le lien d'édition uMap pour votre carte : %(map_name)s"
634
638
 
635
- #: views.py:992
639
+ #: views.py:989
636
640
  #, python-format
637
641
  msgid "Here is your secret edit link: %(link)s"
638
642
  msgstr "Voici votre lien d'édition secret : %(link)s"
639
643
 
640
- #: views.py:999
644
+ #: views.py:996
641
645
  #, python-format
642
646
  msgid "Can't send email to %(email)s"
643
647
  msgstr "Impossible d'envoyer un courriel vers %(email)s"
644
648
 
645
- #: views.py:1002
649
+ #: views.py:999
646
650
  #, python-format
647
651
  msgid "Email sent to %(email)s"
648
652
  msgstr "Courriel envoyé à %(email)s"
649
653
 
650
- #: views.py:1013
654
+ #: views.py:1010
651
655
  msgid "Only its owner can delete the map."
652
656
  msgstr "Seul le créateur de la carte peut la supprimer."
653
657
 
654
- #: views.py:1016
658
+ #: views.py:1013
655
659
  msgid "Map successfully deleted."
656
- msgstr "La bien été supprimée."
660
+ msgstr "La carte a bien été supprimée."
657
661
 
658
- #: views.py:1042
662
+ #: views.py:1039
659
663
  #, python-format
660
664
  msgid ""
661
665
  "Your map has been cloned! If you want to edit this map from another "
662
666
  "computer, please use this link: %(anonymous_url)s"
663
667
  msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
664
668
 
665
- #: views.py:1047
669
+ #: views.py:1044
666
670
  msgid "Congratulations, your map has been cloned!"
667
671
  msgstr "Votre carte a été dupliquée !"
668
672
 
669
- #: views.py:1282
673
+ #: views.py:1277
670
674
  msgid "Layer successfully deleted."
671
675
  msgstr "Calque supprimé."
672
676
 
673
- #: views.py:1304
677
+ #: views.py:1299
674
678
  msgid "Permissions updated with success!"
675
679
  msgstr "Les permissions ont bien été modifiées !"
Binary file
@@ -10,7 +10,7 @@ msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: uMap\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2024-08-30 18:23+0000\n"
13
+ "POT-Creation-Date: 2024-10-04 16:35+0000\n"
14
14
  "PO-Revision-Date: 2013-11-22 14:00+0000\n"
15
15
  "Last-Translator: lecalam, 2024\n"
16
16
  "Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
@@ -20,6 +20,10 @@ msgstr ""
20
20
  "Language: pt\n"
21
21
  "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
22
22
 
23
+ #: admin.py:16
24
+ msgid "CSV Export"
25
+ msgstr ""
26
+
23
27
  #: forms.py:44 forms.py:70
24
28
  msgid "Only editable with secret edit link"
25
29
  msgstr "Unicamente editável através de hiperligação secreta"
@@ -28,7 +32,7 @@ msgstr "Unicamente editável através de hiperligação secreta"
28
32
  msgid "Everyone can edit"
29
33
  msgstr "Todos podem editar"
30
34
 
31
- #: forms.py:69 models.py:423
35
+ #: forms.py:69 models.py:441
32
36
  msgid "Inherit"
33
37
  msgstr "Herdado"
34
38
 
@@ -36,111 +40,111 @@ msgstr "Herdado"
36
40
  msgid "Site is readonly for maintenance"
37
41
  msgstr "O site está em modo de leitura para manutenção"
38
42
 
39
- #: models.py:54 models.py:73
43
+ #: models.py:55 models.py:74
40
44
  msgid "name"
41
45
  msgstr "nome"
42
46
 
43
- #: models.py:56 models.py:433
47
+ #: models.py:57 models.py:451
44
48
  msgid "description"
45
49
  msgstr "descrição"
46
50
 
47
- #: models.py:104
51
+ #: models.py:105
48
52
  msgid "details"
49
53
  msgstr "detalhes"
50
54
 
51
- #: models.py:105
55
+ #: models.py:106
52
56
  msgid "Link to a page where the licence is detailed."
53
57
  msgstr "Hiperligação para uma página detalhando a licença."
54
58
 
55
- #: models.py:115
59
+ #: models.py:116
56
60
  msgid "URL template using OSM tile format"
57
61
  msgstr "Modelo de URL no formato de mosaicos OSM"
58
62
 
59
- #: models.py:121
63
+ #: models.py:122
60
64
  msgid "Order of the tilelayers in the edit box"
61
65
  msgstr "Ordem das camadas de mosaicos na caixa de edição"
62
66
 
63
- #: models.py:167 models.py:424
67
+ #: models.py:168 models.py:442
64
68
  msgid "Everyone"
65
69
  msgstr "Todos"
66
70
 
67
- #: models.py:168 models.py:174 models.py:425
71
+ #: models.py:169 models.py:175 models.py:443
68
72
  msgid "Editors and team only"
69
- msgstr ""
73
+ msgstr "Apenas editores e equipa"
70
74
 
71
- #: models.py:169 models.py:426
75
+ #: models.py:170 models.py:444
72
76
  msgid "Owner only"
73
77
  msgstr "Apenas o proprietário"
74
78
 
75
- #: models.py:172
79
+ #: models.py:173
76
80
  msgid "Everyone (public)"
77
81
  msgstr "Todos (público)"
78
82
 
79
- #: models.py:173
83
+ #: models.py:174
80
84
  msgid "Anyone with link"
81
85
  msgstr "Quem tiver a hiperligação"
82
86
 
83
- #: models.py:175
87
+ #: models.py:176
84
88
  msgid "Blocked"
85
89
  msgstr "Bloqueado"
86
90
 
87
- #: models.py:178
91
+ #: models.py:179
88
92
  msgid "center"
89
93
  msgstr "centro"
90
94
 
91
- #: models.py:179
95
+ #: models.py:180
92
96
  msgid "zoom"
93
97
  msgstr "zoom"
94
98
 
95
- #: models.py:181
99
+ #: models.py:182
96
100
  msgid "locate"
97
101
  msgstr "localizar"
98
102
 
99
- #: models.py:181
103
+ #: models.py:182
100
104
  msgid "Locate user on load?"
101
105
  msgstr "Localizar utilizador no início?"
102
106
 
103
- #: models.py:185
107
+ #: models.py:186
104
108
  msgid "Choose the map licence."
105
109
  msgstr "Escolha uma licença para o mapa."
106
110
 
107
- #: models.py:186
111
+ #: models.py:187
108
112
  msgid "licence"
109
113
  msgstr "licença"
110
114
 
111
- #: models.py:197
115
+ #: models.py:198
112
116
  msgid "owner"
113
117
  msgstr "proprietário"
114
118
 
115
- #: models.py:201
119
+ #: models.py:202
116
120
  msgid "editors"
117
121
  msgstr "editores"
118
122
 
119
- #: models.py:207
123
+ #: models.py:208
120
124
  msgid "team"
121
- msgstr ""
125
+ msgstr "equipa"
122
126
 
123
- #: models.py:213 models.py:447
127
+ #: models.py:214 models.py:465
124
128
  msgid "edit status"
125
129
  msgstr "editar estado"
126
130
 
127
- #: models.py:218
131
+ #: models.py:219
128
132
  msgid "share status"
129
133
  msgstr "partilhar estado"
130
134
 
131
- #: models.py:221 models.py:442
135
+ #: models.py:222 models.py:460
132
136
  msgid "settings"
133
137
  msgstr "parâmetros"
134
138
 
135
- #: models.py:364
139
+ #: models.py:382
136
140
  msgid "Clone of"
137
141
  msgstr "Clone de"
138
142
 
139
- #: models.py:437
143
+ #: models.py:455
140
144
  msgid "display on load"
141
145
  msgstr "mostrar no início"
142
146
 
143
- #: models.py:438
147
+ #: models.py:456
144
148
  msgid "Display this layer on load."
145
149
  msgstr "Mostrar esta camada ao carregar."
146
150
 
@@ -324,19 +328,19 @@ msgstr "Esta é uma versão de demonstração, utilizada para testes e pré-lan
324
328
 
325
329
  #: templates/umap/content_footer.html:5
326
330
  msgid "An OpenStreetMap project"
327
- msgstr ""
331
+ msgstr "Um projeto OpenStreetMap"
328
332
 
329
333
  #: templates/umap/content_footer.html:6
330
334
  msgid "version"
331
- msgstr ""
335
+ msgstr "versão"
332
336
 
333
337
  #: templates/umap/content_footer.html:7
334
338
  msgid "Hosted by"
335
- msgstr ""
339
+ msgstr "Alojado por"
336
340
 
337
341
  #: templates/umap/content_footer.html:8
338
342
  msgid "Contact"
339
- msgstr ""
343
+ msgstr "Contacto"
340
344
 
341
345
  #: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
342
346
  msgid "Help"
@@ -351,13 +355,13 @@ msgstr "Meus mapas (%(count)s)"
351
355
  msgid "My Maps"
352
356
  msgstr "Meus mapas"
353
357
 
354
- #: templates/umap/dashboard_menu.html:11
358
+ #: templates/umap/dashboard_menu.html:12
355
359
  msgid "My profile"
356
360
  msgstr "Meu perfil"
357
361
 
358
- #: templates/umap/dashboard_menu.html:13
362
+ #: templates/umap/dashboard_menu.html:15
359
363
  msgid "My teams"
360
- msgstr ""
364
+ msgstr "Minhas equipas"
361
365
 
362
366
  #: templates/umap/home.html:14
363
367
  msgid "Map of the uMaps"
@@ -371,11 +375,11 @@ msgstr "Inspire-se, explore os mapas"
371
375
  msgid "You are logged in. Continuing..."
372
376
  msgstr "Sucesso na identificação. Continuando..."
373
377
 
374
- #: templates/umap/map_list.html:10 views.py:433
378
+ #: templates/umap/map_list.html:11 views.py:433
375
379
  msgid "by"
376
380
  msgstr "por"
377
381
 
378
- #: templates/umap/map_list.html:18
382
+ #: templates/umap/map_list.html:20
379
383
  msgid "More"
380
384
  msgstr "Mais"
381
385
 
@@ -552,20 +556,20 @@ msgstr "Procurar"
552
556
  #: templates/umap/team_detail.html:10
553
557
  #, python-format
554
558
  msgid "Browse %(current_team)s's maps"
555
- msgstr ""
559
+ msgstr "Ver mapas de %(current_team)s"
556
560
 
557
561
  #: templates/umap/team_detail.html:22
558
562
  #, python-format
559
563
  msgid "%(current_team)s has no public maps."
560
- msgstr ""
564
+ msgstr "%(current_team)s não tem mapas públicos."
561
565
 
562
566
  #: templates/umap/team_form.html:24
563
567
  msgid "Delete this team"
564
- msgstr ""
568
+ msgstr "Eliminar esta equipa"
565
569
 
566
570
  #: templates/umap/team_form.html:47
567
571
  msgid "Add user"
568
- msgstr ""
572
+ msgstr "Adicionar utilizador"
569
573
 
570
574
  #: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
571
575
  msgid "Search my maps"
@@ -586,76 +590,76 @@ msgstr "Ainda não tem nenhum mapa."
586
590
 
587
591
  #: templates/umap/user_teams.html:17
588
592
  msgid "Users"
589
- msgstr ""
593
+ msgstr "Utilizadores"
590
594
 
591
595
  #: templates/umap/user_teams.html:48
592
596
  msgid "New team"
593
- msgstr ""
597
+ msgstr "Nova equipa"
594
598
 
595
599
  #: views.py:235
596
600
  msgid "Cannot delete a team with more than one member"
597
- msgstr ""
601
+ msgstr "Não é possível eliminar uma equipa com mais de um membro"
598
602
 
599
603
  #: views.py:239
600
604
  #, python-format
601
605
  msgid "Team “%(name)s” has been deleted"
602
- msgstr ""
606
+ msgstr "A equipa “%(name)s” foi eliminada"
603
607
 
604
608
  #: views.py:438
605
609
  msgid "View the map"
606
610
  msgstr "Ver o mapa"
607
611
 
608
- #: views.py:824
612
+ #: views.py:818
609
613
  msgid "See full screen"
610
614
  msgstr "Ver em ecrã inteiro"
611
615
 
612
- #: views.py:953
616
+ #: views.py:950
613
617
  msgid "Map editors updated with success!"
614
618
  msgstr "Os editores do mapa foram atualizados com sucesso!"
615
619
 
616
- #: views.py:989
620
+ #: views.py:986
617
621
  #, python-format
618
622
  msgid "The uMap edit link for your map: %(map_name)s"
619
623
  msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
620
624
 
621
- #: views.py:992
625
+ #: views.py:989
622
626
  #, python-format
623
627
  msgid "Here is your secret edit link: %(link)s"
624
628
  msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
625
629
 
626
- #: views.py:999
630
+ #: views.py:996
627
631
  #, python-format
628
632
  msgid "Can't send email to %(email)s"
629
633
  msgstr "Não é possível enviar o email para %(email)s"
630
634
 
631
- #: views.py:1002
635
+ #: views.py:999
632
636
  #, python-format
633
637
  msgid "Email sent to %(email)s"
634
638
  msgstr "Email enviado para %(email)s"
635
639
 
636
- #: views.py:1013
640
+ #: views.py:1010
637
641
  msgid "Only its owner can delete the map."
638
642
  msgstr "Só o proprietário pode eliminar o mapa."
639
643
 
640
- #: views.py:1016
644
+ #: views.py:1013
641
645
  msgid "Map successfully deleted."
642
646
  msgstr "Mapa eliminado com sucesso."
643
647
 
644
- #: views.py:1042
648
+ #: views.py:1039
645
649
  #, python-format
646
650
  msgid ""
647
651
  "Your map has been cloned! If you want to edit this map from another "
648
652
  "computer, please use this link: %(anonymous_url)s"
649
653
  msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
650
654
 
651
- #: views.py:1047
655
+ #: views.py:1044
652
656
  msgid "Congratulations, your map has been cloned!"
653
657
  msgstr "Parabéns, o seu mapa foi clonado!"
654
658
 
655
- #: views.py:1282
659
+ #: views.py:1277
656
660
  msgid "Layer successfully deleted."
657
661
  msgstr "Camada eliminada com sucesso."
658
662
 
659
- #: views.py:1304
663
+ #: views.py:1299
660
664
  msgid "Permissions updated with success!"
661
665
  msgstr "Permissões atualizadas com sucesso!"