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.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
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: 2025-
|
|
13
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: lecalam, 2024-2025\n"
|
|
16
16
|
"Language-Team: Portuguese (http://app.transifex.com/openstreetmap/umap/language/pt/)\n"
|
|
@@ -37,137 +37,229 @@ msgstr "O site está em modo de leitura para manutenção"
|
|
|
37
37
|
msgid ""
|
|
38
38
|
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
39
39
|
"Please configure another provider below before losing access to your account"
|
|
40
|
-
" and maps."
|
|
40
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
41
41
|
msgstr ""
|
|
42
42
|
|
|
43
|
-
#: models.py:
|
|
43
|
+
#: models.py:61 models.py:80
|
|
44
44
|
msgid "name"
|
|
45
45
|
msgstr "nome"
|
|
46
46
|
|
|
47
|
-
#: models.py:
|
|
47
|
+
#: models.py:63 models.py:503
|
|
48
48
|
msgid "description"
|
|
49
49
|
msgstr "descrição"
|
|
50
50
|
|
|
51
|
-
#: models.py:
|
|
51
|
+
#: models.py:111
|
|
52
52
|
msgid "details"
|
|
53
53
|
msgstr "detalhes"
|
|
54
54
|
|
|
55
|
-
#: models.py:
|
|
55
|
+
#: models.py:112
|
|
56
56
|
msgid "Link to a page where the licence is detailed."
|
|
57
57
|
msgstr "Hiperligação para uma página detalhando a licença."
|
|
58
58
|
|
|
59
|
-
#: models.py:
|
|
59
|
+
#: models.py:122
|
|
60
60
|
msgid "URL template using OSM tile format"
|
|
61
61
|
msgstr "Modelo de URL no formato de mosaicos OSM"
|
|
62
62
|
|
|
63
|
-
#: models.py:
|
|
63
|
+
#: models.py:128
|
|
64
64
|
msgid "Order of the tilelayers in the edit box"
|
|
65
65
|
msgstr "Ordem das camadas de mosaicos na caixa de edição"
|
|
66
66
|
|
|
67
|
-
#: models.py:
|
|
67
|
+
#: models.py:176 models.py:497
|
|
68
68
|
msgid "Only editable with secret edit link"
|
|
69
69
|
msgstr "Unicamente editável através de hiperligação secreta"
|
|
70
70
|
|
|
71
|
-
#: models.py:
|
|
71
|
+
#: models.py:177 models.py:498
|
|
72
72
|
msgid "Everyone can edit"
|
|
73
73
|
msgstr "Todos podem editar"
|
|
74
74
|
|
|
75
|
-
#: models.py:
|
|
75
|
+
#: models.py:180 models.py:491
|
|
76
76
|
msgid "Everyone"
|
|
77
77
|
msgstr "Todos"
|
|
78
78
|
|
|
79
|
-
#: models.py:
|
|
79
|
+
#: models.py:181 models.py:190 models.py:492
|
|
80
80
|
msgid "Editors and team only"
|
|
81
81
|
msgstr "Apenas editores e equipa"
|
|
82
82
|
|
|
83
|
-
#: models.py:
|
|
83
|
+
#: models.py:182 models.py:493
|
|
84
84
|
msgid "Owner only"
|
|
85
85
|
msgstr "Apenas o proprietário"
|
|
86
86
|
|
|
87
|
-
#: models.py:
|
|
87
|
+
#: models.py:185
|
|
88
88
|
msgid "Draft (private)"
|
|
89
89
|
msgstr "Rascunho (privado)"
|
|
90
90
|
|
|
91
|
-
#: models.py:
|
|
91
|
+
#: models.py:186
|
|
92
92
|
msgid "Everyone (public)"
|
|
93
93
|
msgstr "Todos (público)"
|
|
94
94
|
|
|
95
|
-
#: models.py:
|
|
95
|
+
#: models.py:189
|
|
96
96
|
msgid "Anyone with link"
|
|
97
97
|
msgstr "Quem tiver a hiperligação"
|
|
98
98
|
|
|
99
|
-
#: models.py:
|
|
99
|
+
#: models.py:191
|
|
100
100
|
msgid "Blocked"
|
|
101
101
|
msgstr "Bloqueado"
|
|
102
102
|
|
|
103
|
-
#: models.py:
|
|
103
|
+
#: models.py:192 models.py:487
|
|
104
104
|
msgid "Deleted"
|
|
105
105
|
msgstr "Eliminado"
|
|
106
106
|
|
|
107
|
-
#: models.py:
|
|
107
|
+
#: models.py:195
|
|
108
108
|
msgid "center"
|
|
109
109
|
msgstr "centro"
|
|
110
110
|
|
|
111
|
-
#: models.py:
|
|
111
|
+
#: models.py:196
|
|
112
112
|
msgid "zoom"
|
|
113
113
|
msgstr "zoom"
|
|
114
114
|
|
|
115
|
-
#: models.py:
|
|
115
|
+
#: models.py:198
|
|
116
116
|
msgid "locate"
|
|
117
117
|
msgstr "localizar"
|
|
118
118
|
|
|
119
|
-
#: models.py:
|
|
119
|
+
#: models.py:198
|
|
120
120
|
msgid "Locate user on load?"
|
|
121
121
|
msgstr "Localizar utilizador no início?"
|
|
122
122
|
|
|
123
|
-
#: models.py:
|
|
123
|
+
#: models.py:202
|
|
124
124
|
msgid "Choose the map licence."
|
|
125
125
|
msgstr "Escolha uma licença para o mapa."
|
|
126
126
|
|
|
127
|
-
#: models.py:
|
|
127
|
+
#: models.py:203
|
|
128
128
|
msgid "licence"
|
|
129
129
|
msgstr "licença"
|
|
130
130
|
|
|
131
|
-
#: models.py:
|
|
131
|
+
#: models.py:214
|
|
132
132
|
msgid "owner"
|
|
133
133
|
msgstr "proprietário"
|
|
134
134
|
|
|
135
|
-
#: models.py:
|
|
135
|
+
#: models.py:218
|
|
136
136
|
msgid "editors"
|
|
137
137
|
msgstr "editores"
|
|
138
138
|
|
|
139
|
-
#: models.py:
|
|
139
|
+
#: models.py:224
|
|
140
140
|
msgid "team"
|
|
141
141
|
msgstr "equipa"
|
|
142
142
|
|
|
143
|
-
#: models.py:
|
|
143
|
+
#: models.py:230 models.py:519
|
|
144
144
|
msgid "edit status"
|
|
145
145
|
msgstr "editar estado"
|
|
146
146
|
|
|
147
|
-
#: models.py:
|
|
147
|
+
#: models.py:235 models.py:524
|
|
148
148
|
msgid "share status"
|
|
149
149
|
msgstr "partilhar estado"
|
|
150
150
|
|
|
151
|
-
#: models.py:
|
|
151
|
+
#: models.py:238 models.py:514
|
|
152
152
|
msgid "settings"
|
|
153
153
|
msgstr "parâmetros"
|
|
154
154
|
|
|
155
|
-
#: models.py:
|
|
155
|
+
#: models.py:243
|
|
156
|
+
msgid "save as template"
|
|
157
|
+
msgstr ""
|
|
158
|
+
|
|
159
|
+
#: models.py:244
|
|
160
|
+
msgid "This map is a template map."
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
#: models.py:420
|
|
156
164
|
msgid "Clone of"
|
|
157
165
|
msgstr "Clone de"
|
|
158
166
|
|
|
159
|
-
#: models.py:
|
|
167
|
+
#: models.py:486 models.py:490 models.py:496
|
|
160
168
|
msgid "Inherit"
|
|
161
169
|
msgstr "Herdado"
|
|
162
170
|
|
|
163
|
-
#: models.py:
|
|
171
|
+
#: models.py:509
|
|
164
172
|
msgid "display on load"
|
|
165
173
|
msgstr "mostrar no início"
|
|
166
174
|
|
|
167
|
-
#: models.py:
|
|
175
|
+
#: models.py:510
|
|
168
176
|
msgid "Display this layer on load."
|
|
169
177
|
msgstr "Mostrar esta camada ao carregar."
|
|
170
178
|
|
|
179
|
+
#: settings/base.py:283
|
|
180
|
+
msgid "uMap user documentation"
|
|
181
|
+
msgstr ""
|
|
182
|
+
|
|
183
|
+
#: settings/base.py:288
|
|
184
|
+
msgid "Video tutorials"
|
|
185
|
+
msgstr ""
|
|
186
|
+
|
|
187
|
+
#: settings/base.py:293
|
|
188
|
+
msgid "OpenStreetMap.org forum"
|
|
189
|
+
msgstr ""
|
|
190
|
+
|
|
191
|
+
#: settings/base.py:298
|
|
192
|
+
msgid "OpenStreetMap France forum"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
195
|
+
#: settings/base.py:318
|
|
196
|
+
msgid "Art and Culture"
|
|
197
|
+
msgstr ""
|
|
198
|
+
|
|
199
|
+
#: settings/base.py:319
|
|
200
|
+
msgid "Cycling"
|
|
201
|
+
msgstr ""
|
|
202
|
+
|
|
203
|
+
#: settings/base.py:320
|
|
204
|
+
msgid "Business"
|
|
205
|
+
msgstr ""
|
|
206
|
+
|
|
207
|
+
#: settings/base.py:321
|
|
208
|
+
msgid "Environment"
|
|
209
|
+
msgstr ""
|
|
210
|
+
|
|
211
|
+
#: settings/base.py:322
|
|
212
|
+
msgid "Education"
|
|
213
|
+
msgstr ""
|
|
214
|
+
|
|
215
|
+
#: settings/base.py:323
|
|
216
|
+
msgid "Food and Agriculture"
|
|
217
|
+
msgstr ""
|
|
218
|
+
|
|
219
|
+
#: settings/base.py:324
|
|
220
|
+
msgid "Geopolitics"
|
|
221
|
+
msgstr ""
|
|
222
|
+
|
|
223
|
+
#: settings/base.py:325
|
|
224
|
+
msgid "Health"
|
|
225
|
+
msgstr ""
|
|
226
|
+
|
|
227
|
+
#: settings/base.py:326
|
|
228
|
+
msgid "Hiking"
|
|
229
|
+
msgstr ""
|
|
230
|
+
|
|
231
|
+
#: settings/base.py:327
|
|
232
|
+
msgid "History"
|
|
233
|
+
msgstr ""
|
|
234
|
+
|
|
235
|
+
#: settings/base.py:328
|
|
236
|
+
msgid "Public sector"
|
|
237
|
+
msgstr ""
|
|
238
|
+
|
|
239
|
+
#: settings/base.py:329
|
|
240
|
+
msgid "Science"
|
|
241
|
+
msgstr ""
|
|
242
|
+
|
|
243
|
+
#: settings/base.py:330
|
|
244
|
+
msgid "Shopping"
|
|
245
|
+
msgstr ""
|
|
246
|
+
|
|
247
|
+
#: settings/base.py:331
|
|
248
|
+
msgid "Sport and Leisure"
|
|
249
|
+
msgstr ""
|
|
250
|
+
|
|
251
|
+
#: settings/base.py:332
|
|
252
|
+
msgid "Travel"
|
|
253
|
+
msgstr ""
|
|
254
|
+
|
|
255
|
+
#: settings/base.py:333
|
|
256
|
+
msgid "Transports"
|
|
257
|
+
msgstr ""
|
|
258
|
+
|
|
259
|
+
#: settings/base.py:334
|
|
260
|
+
msgid "Tourism"
|
|
261
|
+
msgstr ""
|
|
262
|
+
|
|
171
263
|
#: templates/403.html:8
|
|
172
264
|
msgid ""
|
|
173
265
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -310,7 +402,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
310
402
|
msgstr "E está disponível em <a href=\"%(repo_url)s\">código aberto</a>!"
|
|
311
403
|
|
|
312
404
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
313
|
-
#: templates/umap/user_dashboard.html:
|
|
405
|
+
#: templates/umap/user_dashboard.html:16
|
|
314
406
|
msgid "Create a map"
|
|
315
407
|
msgstr "Criar um mapa"
|
|
316
408
|
|
|
@@ -408,11 +500,20 @@ msgstr "Meus mapas (%(count)s)"
|
|
|
408
500
|
msgid "My Maps"
|
|
409
501
|
msgstr "Meus mapas"
|
|
410
502
|
|
|
411
|
-
#: templates/umap/dashboard_menu.html:
|
|
503
|
+
#: templates/umap/dashboard_menu.html:11
|
|
504
|
+
#, python-format
|
|
505
|
+
msgid "My Templates (%(count)s)"
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
509
|
+
msgid "My Templates"
|
|
510
|
+
msgstr ""
|
|
511
|
+
|
|
512
|
+
#: templates/umap/dashboard_menu.html:17
|
|
412
513
|
msgid "My profile"
|
|
413
514
|
msgstr "Meu perfil"
|
|
414
515
|
|
|
415
|
-
#: templates/umap/dashboard_menu.html:
|
|
516
|
+
#: templates/umap/dashboard_menu.html:20
|
|
416
517
|
msgid "My teams"
|
|
417
518
|
msgstr "Minhas equipas"
|
|
418
519
|
|
|
@@ -420,7 +521,7 @@ msgstr "Minhas equipas"
|
|
|
420
521
|
msgid "Map of the uMaps"
|
|
421
522
|
msgstr "Mapa dos uMaps"
|
|
422
523
|
|
|
423
|
-
#: templates/umap/home.html:
|
|
524
|
+
#: templates/umap/home.html:25
|
|
424
525
|
msgid "Get inspired, browse maps"
|
|
425
526
|
msgstr "Inspire-se, explore os mapas"
|
|
426
527
|
|
|
@@ -428,11 +529,23 @@ msgstr "Inspire-se, explore os mapas"
|
|
|
428
529
|
msgid "You are logged in. Continuing..."
|
|
429
530
|
msgstr "Sucesso na identificação. Continuando..."
|
|
430
531
|
|
|
431
|
-
#: templates/umap/map_list.html:
|
|
532
|
+
#: templates/umap/map_list.html:15
|
|
533
|
+
msgid "template"
|
|
534
|
+
msgstr ""
|
|
535
|
+
|
|
536
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
432
537
|
msgid "by"
|
|
433
538
|
msgstr "por"
|
|
434
539
|
|
|
435
|
-
#: templates/umap/map_list.html:
|
|
540
|
+
#: templates/umap/map_list.html:22
|
|
541
|
+
msgid "See the template"
|
|
542
|
+
msgstr ""
|
|
543
|
+
|
|
544
|
+
#: templates/umap/map_list.html:22
|
|
545
|
+
msgid "See the map"
|
|
546
|
+
msgstr ""
|
|
547
|
+
|
|
548
|
+
#: templates/umap/map_list.html:28
|
|
436
549
|
msgid "More"
|
|
437
550
|
msgstr "Mais"
|
|
438
551
|
|
|
@@ -464,7 +577,7 @@ msgstr "Proprietário"
|
|
|
464
577
|
msgid "Actions"
|
|
465
578
|
msgstr "Ações"
|
|
466
579
|
|
|
467
|
-
#: templates/umap/map_table.html:
|
|
580
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
468
581
|
msgid "Open preview"
|
|
469
582
|
msgstr "Abrir pré-visualização"
|
|
470
583
|
|
|
@@ -592,11 +705,15 @@ msgstr[0] "%(count)s mapa encontrado:"
|
|
|
592
705
|
msgstr[1] "%(count)s mapas encontrados:"
|
|
593
706
|
msgstr[2] "%(count)s mapas encontrados:"
|
|
594
707
|
|
|
595
|
-
#: templates/umap/search.html:
|
|
708
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
596
709
|
msgid "No map found."
|
|
597
710
|
msgstr "Não foi encontrado nenhum mapa."
|
|
598
711
|
|
|
599
|
-
#: templates/umap/search.html:
|
|
712
|
+
#: templates/umap/search.html:36
|
|
713
|
+
msgid "Latest created maps in category"
|
|
714
|
+
msgstr ""
|
|
715
|
+
|
|
716
|
+
#: templates/umap/search.html:43
|
|
600
717
|
msgid "Latest created maps"
|
|
601
718
|
msgstr "Últimos mapas criados"
|
|
602
719
|
|
|
@@ -604,7 +721,11 @@ msgstr "Últimos mapas criados"
|
|
|
604
721
|
msgid "Search maps"
|
|
605
722
|
msgstr "Procurar mapas"
|
|
606
723
|
|
|
607
|
-
#: templates/umap/search_bar.html:
|
|
724
|
+
#: templates/umap/search_bar.html:14
|
|
725
|
+
msgid "Any category"
|
|
726
|
+
msgstr ""
|
|
727
|
+
|
|
728
|
+
#: templates/umap/search_bar.html:19
|
|
608
729
|
msgid "Search"
|
|
609
730
|
msgstr "Procurar"
|
|
610
731
|
|
|
@@ -639,20 +760,20 @@ msgstr "Eliminar esta equipa"
|
|
|
639
760
|
msgid "Add user"
|
|
640
761
|
msgstr "Adicionar utilizador"
|
|
641
762
|
|
|
642
|
-
#: templates/umap/user_dashboard.html:
|
|
763
|
+
#: templates/umap/user_dashboard.html:10
|
|
643
764
|
msgid "Search my maps"
|
|
644
765
|
msgstr "Procurar os meus mapas"
|
|
645
766
|
|
|
646
|
-
#: templates/umap/user_dashboard.html:
|
|
647
|
-
msgid "Map’s
|
|
648
|
-
msgstr "
|
|
767
|
+
#: templates/umap/user_dashboard.html:11
|
|
768
|
+
msgid "Map’s name"
|
|
769
|
+
msgstr ""
|
|
649
770
|
|
|
650
|
-
#: templates/umap/user_dashboard.html:
|
|
771
|
+
#: templates/umap/user_dashboard.html:12
|
|
651
772
|
#, python-format
|
|
652
773
|
msgid "Download %(count)s maps"
|
|
653
774
|
msgstr "Descarregar %(count)s mapas"
|
|
654
775
|
|
|
655
|
-
#: templates/umap/user_dashboard.html:
|
|
776
|
+
#: templates/umap/user_dashboard.html:15
|
|
656
777
|
msgid "You have no map yet."
|
|
657
778
|
msgstr "Ainda não tem nenhum mapa."
|
|
658
779
|
|
|
@@ -668,70 +789,95 @@ msgstr "Utilizadores"
|
|
|
668
789
|
msgid "New team"
|
|
669
790
|
msgstr "Nova equipa"
|
|
670
791
|
|
|
671
|
-
#:
|
|
792
|
+
#: templates/umap/user_templates.html:10
|
|
793
|
+
msgid "Search my templates"
|
|
794
|
+
msgstr ""
|
|
795
|
+
|
|
796
|
+
#: templates/umap/user_templates.html:11
|
|
797
|
+
msgid "Template’s name"
|
|
798
|
+
msgstr ""
|
|
799
|
+
|
|
800
|
+
#: templates/umap/user_templates.html:12
|
|
801
|
+
#, python-format
|
|
802
|
+
msgid "Download %(count)s templates"
|
|
803
|
+
msgstr ""
|
|
804
|
+
|
|
805
|
+
#: templates/umap/user_templates.html:15
|
|
806
|
+
msgid "You have no template yet."
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
#: templates/umap/user_templates.html:16
|
|
810
|
+
msgid "Create a template"
|
|
811
|
+
msgstr ""
|
|
812
|
+
|
|
813
|
+
#: templates/umap/user_templates.html:17
|
|
814
|
+
msgid "No template found."
|
|
815
|
+
msgstr ""
|
|
816
|
+
|
|
817
|
+
#: views.py:233
|
|
672
818
|
msgid "Cannot delete a team with more than one member"
|
|
673
819
|
msgstr "Não é possível eliminar uma equipa com mais de um membro"
|
|
674
820
|
|
|
675
|
-
#: views.py:
|
|
821
|
+
#: views.py:237
|
|
676
822
|
#, python-format
|
|
677
823
|
msgid "Team “%(name)s” has been deleted"
|
|
678
824
|
msgstr "A equipa “%(name)s” foi eliminada"
|
|
679
825
|
|
|
680
|
-
#: views.py:
|
|
826
|
+
#: views.py:463
|
|
681
827
|
msgid "View the map"
|
|
682
828
|
msgstr "Ver o mapa"
|
|
683
829
|
|
|
684
|
-
#: views.py:
|
|
830
|
+
#: views.py:864
|
|
685
831
|
msgid "See full screen"
|
|
686
832
|
msgstr "Ver em ecrã inteiro"
|
|
687
833
|
|
|
688
|
-
#: views.py:
|
|
834
|
+
#: views.py:1007
|
|
689
835
|
msgid "Map editors updated with success!"
|
|
690
836
|
msgstr "Os editores do mapa foram atualizados com sucesso!"
|
|
691
837
|
|
|
692
|
-
#: views.py:
|
|
838
|
+
#: views.py:1043
|
|
693
839
|
#, python-format
|
|
694
840
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
695
841
|
msgstr "A hiperligação de edição do uMap para o seu mapa: %(map_name)s"
|
|
696
842
|
|
|
697
|
-
#: views.py:
|
|
843
|
+
#: views.py:1046
|
|
698
844
|
#, python-format
|
|
699
845
|
msgid "Here is your secret edit link: %(link)s"
|
|
700
846
|
msgstr "Aqui está a hiperligação de edição secreta: %(link)s"
|
|
701
847
|
|
|
702
|
-
#: views.py:
|
|
848
|
+
#: views.py:1053
|
|
703
849
|
#, python-format
|
|
704
850
|
msgid "Can't send email to %(email)s"
|
|
705
851
|
msgstr "Não é possível enviar o email para %(email)s"
|
|
706
852
|
|
|
707
|
-
#: views.py:
|
|
853
|
+
#: views.py:1056
|
|
708
854
|
#, python-format
|
|
709
855
|
msgid "Email sent to %(email)s"
|
|
710
856
|
msgstr "Email enviado para %(email)s"
|
|
711
857
|
|
|
712
|
-
#: views.py:
|
|
858
|
+
#: views.py:1067
|
|
713
859
|
msgid "Only its owner can delete the map."
|
|
714
860
|
msgstr "Só o proprietário pode eliminar o mapa."
|
|
715
861
|
|
|
716
|
-
#: views.py:
|
|
862
|
+
#: views.py:1073
|
|
717
863
|
msgid "Map successfully deleted."
|
|
718
864
|
msgstr "Mapa eliminado com sucesso."
|
|
719
865
|
|
|
720
|
-
#: views.py:
|
|
866
|
+
#: views.py:1099
|
|
721
867
|
#, python-format
|
|
722
868
|
msgid ""
|
|
723
869
|
"Your map has been cloned! If you want to edit this map from another "
|
|
724
870
|
"computer, please use this link: %(anonymous_url)s"
|
|
725
871
|
msgstr "O seu mapa foi clonado! Se quiser editar este mapa noutro computador, por favor utilize esta hiperligação: %(anonymous_url)s"
|
|
726
872
|
|
|
727
|
-
#: views.py:
|
|
873
|
+
#: views.py:1104
|
|
728
874
|
msgid "Congratulations, your map has been cloned!"
|
|
729
875
|
msgstr "Parabéns, o seu mapa foi clonado!"
|
|
730
876
|
|
|
731
|
-
#: views.py:
|
|
877
|
+
#: views.py:1358
|
|
732
878
|
msgid "Layer successfully deleted."
|
|
733
879
|
msgstr "Camada eliminada com sucesso."
|
|
734
880
|
|
|
735
|
-
#: views.py:
|
|
881
|
+
#: views.py:1380
|
|
736
882
|
msgid "Permissions updated with success!"
|
|
737
883
|
msgstr "Permissões atualizadas com sucesso!"
|
|
Binary file
|