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
|
@@ -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-
|
|
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:
|
|
46
|
+
#: models.py:61 models.py:80
|
|
47
47
|
msgid "name"
|
|
48
48
|
msgstr "nome"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:63 models.py:503
|
|
51
51
|
msgid "description"
|
|
52
52
|
msgstr "descrición"
|
|
53
53
|
|
|
54
|
-
#: models.py:
|
|
54
|
+
#: models.py:111
|
|
55
55
|
msgid "details"
|
|
56
56
|
msgstr "detalles"
|
|
57
57
|
|
|
58
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
74
|
+
#: models.py:177 models.py:498
|
|
75
75
|
msgid "Everyone can edit"
|
|
76
76
|
msgstr "Calquera pode editalo"
|
|
77
77
|
|
|
78
|
-
#: models.py:
|
|
78
|
+
#: models.py:180 models.py:491
|
|
79
79
|
msgid "Everyone"
|
|
80
80
|
msgstr "Calquera"
|
|
81
81
|
|
|
82
|
-
#: models.py:
|
|
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:
|
|
86
|
+
#: models.py:182 models.py:493
|
|
87
87
|
msgid "Owner only"
|
|
88
88
|
msgstr "Só o propietario"
|
|
89
89
|
|
|
90
|
-
#: models.py:
|
|
90
|
+
#: models.py:185
|
|
91
91
|
msgid "Draft (private)"
|
|
92
92
|
msgstr "Borrador (privado)"
|
|
93
93
|
|
|
94
|
-
#: models.py:
|
|
94
|
+
#: models.py:186
|
|
95
95
|
msgid "Everyone (public)"
|
|
96
96
|
msgstr "Calquera (público)"
|
|
97
97
|
|
|
98
|
-
#: models.py:
|
|
98
|
+
#: models.py:189
|
|
99
99
|
msgid "Anyone with link"
|
|
100
100
|
msgstr "Calquera con ligazón"
|
|
101
101
|
|
|
102
|
-
#: models.py:
|
|
102
|
+
#: models.py:191
|
|
103
103
|
msgid "Blocked"
|
|
104
104
|
msgstr "Bloqueado"
|
|
105
105
|
|
|
106
|
-
#: models.py:
|
|
106
|
+
#: models.py:192 models.py:487
|
|
107
107
|
msgid "Deleted"
|
|
108
108
|
msgstr "Eliminado"
|
|
109
109
|
|
|
110
|
-
#: models.py:
|
|
110
|
+
#: models.py:195
|
|
111
111
|
msgid "center"
|
|
112
112
|
msgstr "centrar"
|
|
113
113
|
|
|
114
|
-
#: models.py:
|
|
114
|
+
#: models.py:196
|
|
115
115
|
msgid "zoom"
|
|
116
116
|
msgstr "zoom"
|
|
117
117
|
|
|
118
|
-
#: models.py:
|
|
118
|
+
#: models.py:198
|
|
119
119
|
msgid "locate"
|
|
120
120
|
msgstr "localizar"
|
|
121
121
|
|
|
122
|
-
#: models.py:
|
|
122
|
+
#: models.py:198
|
|
123
123
|
msgid "Locate user on load?"
|
|
124
124
|
msgstr "Localizar o usuario na carga?"
|
|
125
125
|
|
|
126
|
-
#: models.py:
|
|
126
|
+
#: models.py:202
|
|
127
127
|
msgid "Choose the map licence."
|
|
128
128
|
msgstr "Escolle a licenza do mapa."
|
|
129
129
|
|
|
130
|
-
#: models.py:
|
|
130
|
+
#: models.py:203
|
|
131
131
|
msgid "licence"
|
|
132
132
|
msgstr "licenza"
|
|
133
133
|
|
|
134
|
-
#: models.py:
|
|
134
|
+
#: models.py:214
|
|
135
135
|
msgid "owner"
|
|
136
136
|
msgstr "propietario"
|
|
137
137
|
|
|
138
|
-
#: models.py:
|
|
138
|
+
#: models.py:218
|
|
139
139
|
msgid "editors"
|
|
140
140
|
msgstr "editores"
|
|
141
141
|
|
|
142
|
-
#: models.py:
|
|
142
|
+
#: models.py:224
|
|
143
143
|
msgid "team"
|
|
144
144
|
msgstr "equipo"
|
|
145
145
|
|
|
146
|
-
#: models.py:
|
|
146
|
+
#: models.py:230 models.py:519
|
|
147
147
|
msgid "edit status"
|
|
148
148
|
msgstr "estado da edición"
|
|
149
149
|
|
|
150
|
-
#: models.py:
|
|
150
|
+
#: models.py:235 models.py:524
|
|
151
151
|
msgid "share status"
|
|
152
152
|
msgstr "compartir o estado"
|
|
153
153
|
|
|
154
|
-
#: models.py:
|
|
154
|
+
#: models.py:238 models.py:514
|
|
155
155
|
msgid "settings"
|
|
156
156
|
msgstr "axustes"
|
|
157
157
|
|
|
158
|
-
#: models.py:
|
|
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:
|
|
170
|
+
#: models.py:486 models.py:490 models.py:496
|
|
163
171
|
msgid "Inherit"
|
|
164
172
|
msgstr "Herdar"
|
|
165
173
|
|
|
166
|
-
#: models.py:
|
|
174
|
+
#: models.py:509
|
|
167
175
|
msgid "display on load"
|
|
168
176
|
msgstr "amosar na carga"
|
|
169
177
|
|
|
170
|
-
#: models.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
649
|
-
msgid "Map’s
|
|
650
|
-
msgstr "
|
|
769
|
+
#: templates/umap/user_dashboard.html:11
|
|
770
|
+
msgid "Map’s name"
|
|
771
|
+
msgstr ""
|
|
651
772
|
|
|
652
|
-
#: templates/umap/user_dashboard.html:
|
|
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:
|
|
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
|
-
#:
|
|
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:
|
|
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:
|
|
828
|
+
#: views.py:463
|
|
683
829
|
msgid "View the map"
|
|
684
830
|
msgstr "Ver o mapa"
|
|
685
831
|
|
|
686
|
-
#: views.py:
|
|
832
|
+
#: views.py:864
|
|
687
833
|
msgid "See full screen"
|
|
688
834
|
msgstr "Ver a pantalla completa"
|
|
689
835
|
|
|
690
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
864
|
+
#: views.py:1073
|
|
719
865
|
msgid "Map successfully deleted."
|
|
720
866
|
msgstr "O mapa foi eliminado correctamente."
|
|
721
867
|
|
|
722
|
-
#: views.py:
|
|
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:
|
|
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:
|
|
879
|
+
#: views.py:1358
|
|
734
880
|
msgid "Layer successfully deleted."
|
|
735
881
|
msgstr "A capa foi eliminada correctamente."
|
|
736
882
|
|
|
737
|
-
#: views.py:
|
|
883
|
+
#: views.py:1380
|
|
738
884
|
msgid "Permissions updated with success!"
|
|
739
885
|
msgstr "Os permisos foron actualizados correctamente!"
|
|
Binary file
|