umap-project 3.0.6__py3-none-any.whl → 3.1.1__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.
- 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.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 +125 -59
- 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/providers/bitbucket.png +0 -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 +11 -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 +33 -1
- umap/static/umap/locale/en.json +33 -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_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_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 +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.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:
|
|
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: lenny libre, 2024\n"
|
|
19
19
|
"Language-Team: Catalan (http://app.transifex.com/openstreetmap/umap/language/ca/)\n"
|
|
@@ -31,138 +31,238 @@ msgstr ""
|
|
|
31
31
|
msgid "This map is not publicly available"
|
|
32
32
|
msgstr ""
|
|
33
33
|
|
|
34
|
-
#: middleware.py:
|
|
34
|
+
#: middleware.py:19
|
|
35
35
|
msgid "Site is readonly for maintenance"
|
|
36
36
|
msgstr "El lloc és en mode lectura per manteniment"
|
|
37
37
|
|
|
38
|
-
#:
|
|
38
|
+
#: middleware.py:34
|
|
39
|
+
#, python-format
|
|
40
|
+
msgid ""
|
|
41
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
42
|
+
"Please configure another provider below before losing access to your account"
|
|
43
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#: models.py:61 models.py:80
|
|
39
47
|
msgid "name"
|
|
40
48
|
msgstr "nom"
|
|
41
49
|
|
|
42
|
-
#: models.py:
|
|
50
|
+
#: models.py:63 models.py:503
|
|
43
51
|
msgid "description"
|
|
44
52
|
msgstr "descripció"
|
|
45
53
|
|
|
46
|
-
#: models.py:
|
|
54
|
+
#: models.py:111
|
|
47
55
|
msgid "details"
|
|
48
56
|
msgstr "detalls"
|
|
49
57
|
|
|
50
|
-
#: models.py:
|
|
58
|
+
#: models.py:112
|
|
51
59
|
msgid "Link to a page where the licence is detailed."
|
|
52
60
|
msgstr "Enllaç a una pàgina on es detalla la llicència."
|
|
53
61
|
|
|
54
|
-
#: models.py:
|
|
62
|
+
#: models.py:122
|
|
55
63
|
msgid "URL template using OSM tile format"
|
|
56
64
|
msgstr "La plantilla de l'URL usa el format de tesel·les de l'OSM"
|
|
57
65
|
|
|
58
|
-
#: models.py:
|
|
66
|
+
#: models.py:128
|
|
59
67
|
msgid "Order of the tilelayers in the edit box"
|
|
60
68
|
msgstr "Ordre de les capes de tessel·les al quadre d'edició"
|
|
61
69
|
|
|
62
|
-
#: models.py:
|
|
70
|
+
#: models.py:176 models.py:497
|
|
63
71
|
msgid "Only editable with secret edit link"
|
|
64
72
|
msgstr "Només es pot editar amb l'enllaç d'edició secret"
|
|
65
73
|
|
|
66
|
-
#: models.py:
|
|
74
|
+
#: models.py:177 models.py:498
|
|
67
75
|
msgid "Everyone can edit"
|
|
68
76
|
msgstr "Tothom pot editar"
|
|
69
77
|
|
|
70
|
-
#: models.py:
|
|
78
|
+
#: models.py:180 models.py:491
|
|
71
79
|
msgid "Everyone"
|
|
72
80
|
msgstr "Tothom"
|
|
73
81
|
|
|
74
|
-
#: models.py:
|
|
82
|
+
#: models.py:181 models.py:190 models.py:492
|
|
75
83
|
msgid "Editors and team only"
|
|
76
84
|
msgstr "Només editors i equip"
|
|
77
85
|
|
|
78
|
-
#: models.py:
|
|
86
|
+
#: models.py:182 models.py:493
|
|
79
87
|
msgid "Owner only"
|
|
80
88
|
msgstr "Només el propietari"
|
|
81
89
|
|
|
82
|
-
#: models.py:
|
|
90
|
+
#: models.py:185
|
|
83
91
|
msgid "Draft (private)"
|
|
84
92
|
msgstr ""
|
|
85
93
|
|
|
86
|
-
#: models.py:
|
|
94
|
+
#: models.py:186
|
|
87
95
|
msgid "Everyone (public)"
|
|
88
96
|
msgstr "Tothom (públic)"
|
|
89
97
|
|
|
90
|
-
#: models.py:
|
|
98
|
+
#: models.py:189
|
|
91
99
|
msgid "Anyone with link"
|
|
92
100
|
msgstr "Qualsevol persona amb enllaç"
|
|
93
101
|
|
|
94
|
-
#: models.py:
|
|
102
|
+
#: models.py:191
|
|
95
103
|
msgid "Blocked"
|
|
96
104
|
msgstr ""
|
|
97
105
|
|
|
98
|
-
#: models.py:
|
|
106
|
+
#: models.py:192 models.py:487
|
|
99
107
|
msgid "Deleted"
|
|
100
108
|
msgstr ""
|
|
101
109
|
|
|
102
|
-
#: models.py:
|
|
110
|
+
#: models.py:195
|
|
103
111
|
msgid "center"
|
|
104
112
|
msgstr "centre"
|
|
105
113
|
|
|
106
|
-
#: models.py:
|
|
114
|
+
#: models.py:196
|
|
107
115
|
msgid "zoom"
|
|
108
116
|
msgstr "escala"
|
|
109
117
|
|
|
110
|
-
#: models.py:
|
|
118
|
+
#: models.py:198
|
|
111
119
|
msgid "locate"
|
|
112
120
|
msgstr "ubica"
|
|
113
121
|
|
|
114
|
-
#: models.py:
|
|
122
|
+
#: models.py:198
|
|
115
123
|
msgid "Locate user on load?"
|
|
116
124
|
msgstr "Voleu ubicar l'usuari en carregar?"
|
|
117
125
|
|
|
118
|
-
#: models.py:
|
|
126
|
+
#: models.py:202
|
|
119
127
|
msgid "Choose the map licence."
|
|
120
128
|
msgstr "Trieu la llicència del mapa."
|
|
121
129
|
|
|
122
|
-
#: models.py:
|
|
130
|
+
#: models.py:203
|
|
123
131
|
msgid "licence"
|
|
124
132
|
msgstr "llicència"
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:214
|
|
127
135
|
msgid "owner"
|
|
128
136
|
msgstr "propietari"
|
|
129
137
|
|
|
130
|
-
#: models.py:
|
|
138
|
+
#: models.py:218
|
|
131
139
|
msgid "editors"
|
|
132
140
|
msgstr "editors"
|
|
133
141
|
|
|
134
|
-
#: models.py:
|
|
142
|
+
#: models.py:224
|
|
135
143
|
msgid "team"
|
|
136
144
|
msgstr ""
|
|
137
145
|
|
|
138
|
-
#: models.py:
|
|
146
|
+
#: models.py:230 models.py:519
|
|
139
147
|
msgid "edit status"
|
|
140
148
|
msgstr "edita l'estat"
|
|
141
149
|
|
|
142
|
-
#: models.py:
|
|
150
|
+
#: models.py:235 models.py:524
|
|
143
151
|
msgid "share status"
|
|
144
152
|
msgstr "comparteix l'estat"
|
|
145
153
|
|
|
146
|
-
#: models.py:
|
|
154
|
+
#: models.py:238 models.py:514
|
|
147
155
|
msgid "settings"
|
|
148
156
|
msgstr "paràmetres"
|
|
149
157
|
|
|
150
|
-
#: 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
|
|
151
167
|
msgid "Clone of"
|
|
152
168
|
msgstr "Clon de"
|
|
153
169
|
|
|
154
|
-
#: models.py:
|
|
170
|
+
#: models.py:486 models.py:490 models.py:496
|
|
155
171
|
msgid "Inherit"
|
|
156
172
|
msgstr ""
|
|
157
173
|
|
|
158
|
-
#: models.py:
|
|
174
|
+
#: models.py:509
|
|
159
175
|
msgid "display on load"
|
|
160
176
|
msgstr "mostra en carregar"
|
|
161
177
|
|
|
162
|
-
#: models.py:
|
|
178
|
+
#: models.py:510
|
|
163
179
|
msgid "Display this layer on load."
|
|
164
180
|
msgstr "Mostra aquesta capa en carregar."
|
|
165
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
|
+
|
|
166
266
|
#: templates/403.html:8
|
|
167
267
|
msgid ""
|
|
168
268
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -178,40 +278,54 @@ msgstr ""
|
|
|
178
278
|
msgid "404 Page Not Found"
|
|
179
279
|
msgstr ""
|
|
180
280
|
|
|
181
|
-
#: templates/auth/user_detail.html:
|
|
281
|
+
#: templates/auth/user_detail.html:6
|
|
282
|
+
#, python-format
|
|
283
|
+
msgid "%(current_user)s’s maps"
|
|
284
|
+
msgstr ""
|
|
285
|
+
|
|
286
|
+
#: templates/auth/user_detail.html:12
|
|
182
287
|
#, python-format
|
|
183
288
|
msgid "Browse %(current_user)s's maps"
|
|
184
289
|
msgstr "Explora els mapes de %(current_user)s"
|
|
185
290
|
|
|
186
|
-
#: templates/auth/user_detail.html:
|
|
291
|
+
#: templates/auth/user_detail.html:21
|
|
187
292
|
#, python-format
|
|
188
293
|
msgid "%(current_user)s has no maps."
|
|
189
294
|
msgstr "%(current_user)s no té cap mapa."
|
|
190
295
|
|
|
191
|
-
#: templates/auth/user_form.html:
|
|
296
|
+
#: templates/auth/user_form.html:6
|
|
297
|
+
msgid "My Profile"
|
|
298
|
+
msgstr ""
|
|
299
|
+
|
|
300
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
192
301
|
msgid "Save"
|
|
193
302
|
msgstr "Desa"
|
|
194
303
|
|
|
195
|
-
#: templates/auth/user_form.html:
|
|
304
|
+
#: templates/auth/user_form.html:30
|
|
196
305
|
msgid "Your current providers"
|
|
197
306
|
msgstr ""
|
|
198
307
|
|
|
199
|
-
#: templates/auth/user_form.html:
|
|
308
|
+
#: templates/auth/user_form.html:44
|
|
200
309
|
msgid "Connect to another provider"
|
|
201
310
|
msgstr ""
|
|
202
311
|
|
|
203
|
-
#: templates/auth/user_form.html:
|
|
312
|
+
#: templates/auth/user_form.html:47
|
|
204
313
|
msgid ""
|
|
205
314
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
206
315
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
207
316
|
msgstr ""
|
|
208
317
|
|
|
209
|
-
#: templates/auth/user_stars.html:
|
|
318
|
+
#: templates/auth/user_stars.html:6
|
|
319
|
+
#, python-format
|
|
320
|
+
msgid "%(current_user)s’s starred maps"
|
|
321
|
+
msgstr ""
|
|
322
|
+
|
|
323
|
+
#: templates/auth/user_stars.html:12
|
|
210
324
|
#, python-format
|
|
211
325
|
msgid "Browse %(current_user)s's starred maps"
|
|
212
326
|
msgstr "Exploreu els mapes destacats de %(current_user)s"
|
|
213
327
|
|
|
214
|
-
#: templates/auth/user_stars.html:
|
|
328
|
+
#: templates/auth/user_stars.html:21
|
|
215
329
|
#, python-format
|
|
216
330
|
msgid "%(current_user)s has no starred maps yet."
|
|
217
331
|
msgstr "%(current_user)s encara no ha destacat cap mapa."
|
|
@@ -246,6 +360,10 @@ msgstr "Contrasenya"
|
|
|
246
360
|
msgid "Please choose a provider:"
|
|
247
361
|
msgstr ""
|
|
248
362
|
|
|
363
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
364
|
+
msgid "About"
|
|
365
|
+
msgstr "Quant a"
|
|
366
|
+
|
|
249
367
|
#: templates/umap/about_summary.html:12
|
|
250
368
|
#, python-format
|
|
251
369
|
msgid ""
|
|
@@ -287,7 +405,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
287
405
|
msgstr "I és <a href=\"%(repo_url)s\">codi obert</a>!"
|
|
288
406
|
|
|
289
407
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
290
|
-
#: templates/umap/user_dashboard.html:
|
|
408
|
+
#: templates/umap/user_dashboard.html:16
|
|
291
409
|
msgid "Create a map"
|
|
292
410
|
msgstr "Crea un mapa"
|
|
293
411
|
|
|
@@ -385,11 +503,20 @@ msgstr "Els meus Mapes (%(count)s)"
|
|
|
385
503
|
msgid "My Maps"
|
|
386
504
|
msgstr "Els meus mapes"
|
|
387
505
|
|
|
388
|
-
#: 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
|
|
389
516
|
msgid "My profile"
|
|
390
517
|
msgstr "El meu perfil"
|
|
391
518
|
|
|
392
|
-
#: templates/umap/dashboard_menu.html:
|
|
519
|
+
#: templates/umap/dashboard_menu.html:20
|
|
393
520
|
msgid "My teams"
|
|
394
521
|
msgstr ""
|
|
395
522
|
|
|
@@ -397,7 +524,7 @@ msgstr ""
|
|
|
397
524
|
msgid "Map of the uMaps"
|
|
398
525
|
msgstr "Mapa dels uMaps"
|
|
399
526
|
|
|
400
|
-
#: templates/umap/home.html:
|
|
527
|
+
#: templates/umap/home.html:25
|
|
401
528
|
msgid "Get inspired, browse maps"
|
|
402
529
|
msgstr "Inspireu-vos, exploreu mapes"
|
|
403
530
|
|
|
@@ -405,15 +532,27 @@ msgstr "Inspireu-vos, exploreu mapes"
|
|
|
405
532
|
msgid "You are logged in. Continuing..."
|
|
406
533
|
msgstr "Heu iniciat sessió. S'està continuant..."
|
|
407
534
|
|
|
408
|
-
#: 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
|
|
409
540
|
msgid "by"
|
|
410
541
|
msgstr "per"
|
|
411
542
|
|
|
412
|
-
#: 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
|
|
413
552
|
msgid "More"
|
|
414
553
|
msgstr "Més"
|
|
415
554
|
|
|
416
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
555
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
417
556
|
msgid "Name"
|
|
418
557
|
msgstr "Nom"
|
|
419
558
|
|
|
@@ -437,11 +576,11 @@ msgstr "Últim desat"
|
|
|
437
576
|
msgid "Owner"
|
|
438
577
|
msgstr "Propietari"
|
|
439
578
|
|
|
440
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
579
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
441
580
|
msgid "Actions"
|
|
442
581
|
msgstr "Accions"
|
|
443
582
|
|
|
444
|
-
#: templates/umap/map_table.html:
|
|
583
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
445
584
|
msgid "Open preview"
|
|
446
585
|
msgstr "Obriu la vista prèvia"
|
|
447
586
|
|
|
@@ -450,7 +589,7 @@ msgid "Share"
|
|
|
450
589
|
msgstr "Compartiu"
|
|
451
590
|
|
|
452
591
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
453
|
-
#: templates/umap/user_teams.html:
|
|
592
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
454
593
|
msgid "Edit"
|
|
455
594
|
msgstr "Edita"
|
|
456
595
|
|
|
@@ -513,10 +652,6 @@ msgstr "Entra"
|
|
|
513
652
|
msgid "Sign in"
|
|
514
653
|
msgstr "Crea un compte"
|
|
515
654
|
|
|
516
|
-
#: templates/umap/navigation.html:22
|
|
517
|
-
msgid "About"
|
|
518
|
-
msgstr "Quant a"
|
|
519
|
-
|
|
520
655
|
#: templates/umap/navigation.html:30
|
|
521
656
|
msgid "Change password"
|
|
522
657
|
msgstr "Canvia la contrasenya"
|
|
@@ -525,52 +660,62 @@ msgstr "Canvia la contrasenya"
|
|
|
525
660
|
msgid "Log out"
|
|
526
661
|
msgstr "Surt"
|
|
527
662
|
|
|
528
|
-
#: templates/umap/password_change.html:
|
|
663
|
+
#: templates/umap/password_change.html:6
|
|
664
|
+
#: templates/umap/password_change.html:11
|
|
529
665
|
msgid "Password change"
|
|
530
666
|
msgstr "Canvi de contrasenya"
|
|
531
667
|
|
|
532
|
-
#: templates/umap/password_change.html:
|
|
668
|
+
#: templates/umap/password_change.html:14
|
|
533
669
|
msgid ""
|
|
534
670
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
535
671
|
" password twice so we can verify you typed it in correctly."
|
|
536
672
|
msgstr "Introduïu la contrasenya antiga, per raons de seguretat, i després introduïu-ne la nova dues vegades perquè puguem verificar correctament."
|
|
537
673
|
|
|
538
|
-
#: templates/umap/password_change.html:
|
|
674
|
+
#: templates/umap/password_change.html:21
|
|
539
675
|
msgid "Old password"
|
|
540
676
|
msgstr "Contrasenya antiga"
|
|
541
677
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
678
|
+
#: templates/umap/password_change.html:26
|
|
543
679
|
msgid "New password"
|
|
544
680
|
msgstr "Contrasenya nova"
|
|
545
681
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
682
|
+
#: templates/umap/password_change.html:30
|
|
547
683
|
msgid "New password confirmation"
|
|
548
684
|
msgstr "Confirmació de la contrasenya nova"
|
|
549
685
|
|
|
550
|
-
#: templates/umap/password_change.html:
|
|
686
|
+
#: templates/umap/password_change.html:31
|
|
551
687
|
msgid "Change my password"
|
|
552
688
|
msgstr "Canvia la contrasenya"
|
|
553
689
|
|
|
554
|
-
#: templates/umap/password_change_done.html:
|
|
690
|
+
#: templates/umap/password_change_done.html:6
|
|
691
|
+
#: templates/umap/password_change_done.html:11
|
|
555
692
|
msgid "Password change successful"
|
|
556
693
|
msgstr "La contrasenya s'ha canviat la contrasenya correctament"
|
|
557
694
|
|
|
558
|
-
#: templates/umap/password_change_done.html:
|
|
695
|
+
#: templates/umap/password_change_done.html:14
|
|
559
696
|
msgid "Your password was changed."
|
|
560
697
|
msgstr "S'ha canviat la contrasenya."
|
|
561
698
|
|
|
562
|
-
#: templates/umap/search.html:
|
|
699
|
+
#: templates/umap/search.html:6
|
|
700
|
+
msgid "Explore maps"
|
|
701
|
+
msgstr ""
|
|
702
|
+
|
|
703
|
+
#: templates/umap/search.html:19
|
|
563
704
|
#, python-format
|
|
564
705
|
msgid "%(count)s map found:"
|
|
565
706
|
msgid_plural "%(count)s maps found:"
|
|
566
707
|
msgstr[0] "S'ha trobat %(count)s mapa:"
|
|
567
708
|
msgstr[1] "S'han trobat %(count)s mapes:"
|
|
568
709
|
|
|
569
|
-
#: templates/umap/search.html:
|
|
710
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
570
711
|
msgid "No map found."
|
|
571
712
|
msgstr "No s'ha trobat cap mapa."
|
|
572
713
|
|
|
573
|
-
#: 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
|
|
574
719
|
msgid "Latest created maps"
|
|
575
720
|
msgstr "Últims mapes creats"
|
|
576
721
|
|
|
@@ -578,117 +723,163 @@ msgstr "Últims mapes creats"
|
|
|
578
723
|
msgid "Search maps"
|
|
579
724
|
msgstr "Cerca mapes"
|
|
580
725
|
|
|
581
|
-
#: 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
|
|
582
731
|
msgid "Search"
|
|
583
732
|
msgstr "Cerca"
|
|
584
733
|
|
|
585
|
-
#: templates/umap/
|
|
734
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
735
|
+
msgid "Team deletion"
|
|
736
|
+
msgstr ""
|
|
737
|
+
|
|
738
|
+
#: templates/umap/team_detail.html:6
|
|
739
|
+
#, python-format
|
|
740
|
+
msgid "%(current_team)s’s maps"
|
|
741
|
+
msgstr ""
|
|
742
|
+
|
|
743
|
+
#: templates/umap/team_detail.html:14
|
|
586
744
|
#, python-format
|
|
587
745
|
msgid "Browse %(current_team)s's maps"
|
|
588
746
|
msgstr ""
|
|
589
747
|
|
|
590
|
-
#: templates/umap/team_detail.html:
|
|
748
|
+
#: templates/umap/team_detail.html:26
|
|
591
749
|
#, python-format
|
|
592
750
|
msgid "%(current_team)s has no public maps."
|
|
593
751
|
msgstr ""
|
|
594
752
|
|
|
595
|
-
#: templates/umap/team_form.html:
|
|
753
|
+
#: templates/umap/team_form.html:6
|
|
754
|
+
msgid "Create or edit a team"
|
|
755
|
+
msgstr ""
|
|
756
|
+
|
|
757
|
+
#: templates/umap/team_form.html:28
|
|
596
758
|
msgid "Delete this team"
|
|
597
759
|
msgstr ""
|
|
598
760
|
|
|
599
|
-
#: templates/umap/team_form.html:
|
|
761
|
+
#: templates/umap/team_form.html:51
|
|
600
762
|
msgid "Add user"
|
|
601
763
|
msgstr ""
|
|
602
764
|
|
|
603
|
-
#: templates/umap/user_dashboard.html:
|
|
765
|
+
#: templates/umap/user_dashboard.html:10
|
|
604
766
|
msgid "Search my maps"
|
|
605
767
|
msgstr "Cerca els meus mapes"
|
|
606
768
|
|
|
607
|
-
#: templates/umap/user_dashboard.html:
|
|
608
|
-
msgid "Map’s
|
|
609
|
-
msgstr "
|
|
769
|
+
#: templates/umap/user_dashboard.html:11
|
|
770
|
+
msgid "Map’s name"
|
|
771
|
+
msgstr ""
|
|
610
772
|
|
|
611
|
-
#: templates/umap/user_dashboard.html:
|
|
773
|
+
#: templates/umap/user_dashboard.html:12
|
|
612
774
|
#, python-format
|
|
613
775
|
msgid "Download %(count)s maps"
|
|
614
776
|
msgstr "Baixa %(count)s mapes"
|
|
615
777
|
|
|
616
|
-
#: templates/umap/user_dashboard.html:
|
|
778
|
+
#: templates/umap/user_dashboard.html:15
|
|
617
779
|
msgid "You have no map yet."
|
|
618
780
|
msgstr ""
|
|
619
781
|
|
|
620
|
-
#: templates/umap/user_teams.html:
|
|
782
|
+
#: templates/umap/user_teams.html:6
|
|
783
|
+
msgid "My Teams"
|
|
784
|
+
msgstr ""
|
|
785
|
+
|
|
786
|
+
#: templates/umap/user_teams.html:21
|
|
621
787
|
msgid "Users"
|
|
622
788
|
msgstr ""
|
|
623
789
|
|
|
624
|
-
#: templates/umap/user_teams.html:
|
|
790
|
+
#: templates/umap/user_teams.html:52
|
|
625
791
|
msgid "New team"
|
|
626
792
|
msgstr ""
|
|
627
793
|
|
|
628
|
-
#:
|
|
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
|
|
629
820
|
msgid "Cannot delete a team with more than one member"
|
|
630
821
|
msgstr ""
|
|
631
822
|
|
|
632
|
-
#: views.py:
|
|
823
|
+
#: views.py:237
|
|
633
824
|
#, python-format
|
|
634
825
|
msgid "Team “%(name)s” has been deleted"
|
|
635
826
|
msgstr ""
|
|
636
827
|
|
|
637
|
-
#: views.py:
|
|
828
|
+
#: views.py:463
|
|
638
829
|
msgid "View the map"
|
|
639
830
|
msgstr "Mostra el mapa"
|
|
640
831
|
|
|
641
|
-
#: views.py:
|
|
832
|
+
#: views.py:864
|
|
642
833
|
msgid "See full screen"
|
|
643
834
|
msgstr ""
|
|
644
835
|
|
|
645
|
-
#: views.py:
|
|
836
|
+
#: views.py:1007
|
|
646
837
|
msgid "Map editors updated with success!"
|
|
647
838
|
msgstr "S'han actualitzat els editors del mapa correctament!"
|
|
648
839
|
|
|
649
|
-
#: views.py:
|
|
840
|
+
#: views.py:1043
|
|
650
841
|
#, python-format
|
|
651
842
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
652
843
|
msgstr "L'enllaç d'edició d'uMap per al vostre mapa: %(map_name)s"
|
|
653
844
|
|
|
654
|
-
#: views.py:
|
|
845
|
+
#: views.py:1046
|
|
655
846
|
#, python-format
|
|
656
847
|
msgid "Here is your secret edit link: %(link)s"
|
|
657
848
|
msgstr "Aquí teniu l'enllaç secret d'edició: %(link)s"
|
|
658
849
|
|
|
659
|
-
#: views.py:
|
|
850
|
+
#: views.py:1053
|
|
660
851
|
#, python-format
|
|
661
852
|
msgid "Can't send email to %(email)s"
|
|
662
853
|
msgstr ""
|
|
663
854
|
|
|
664
|
-
#: views.py:
|
|
855
|
+
#: views.py:1056
|
|
665
856
|
#, python-format
|
|
666
857
|
msgid "Email sent to %(email)s"
|
|
667
858
|
msgstr "S'ha enviat un correu a %(email)s"
|
|
668
859
|
|
|
669
|
-
#: views.py:
|
|
860
|
+
#: views.py:1067
|
|
670
861
|
msgid "Only its owner can delete the map."
|
|
671
862
|
msgstr "Només el propietari pot suprimir el mapa."
|
|
672
863
|
|
|
673
|
-
#: views.py:
|
|
864
|
+
#: views.py:1073
|
|
674
865
|
msgid "Map successfully deleted."
|
|
675
866
|
msgstr ""
|
|
676
867
|
|
|
677
|
-
#: views.py:
|
|
868
|
+
#: views.py:1099
|
|
678
869
|
#, python-format
|
|
679
870
|
msgid ""
|
|
680
871
|
"Your map has been cloned! If you want to edit this map from another "
|
|
681
872
|
"computer, please use this link: %(anonymous_url)s"
|
|
682
873
|
msgstr "S'ha clonat el vostre mapa! Si voleu editar aquest mapa en un altre ordinador, useu aquest enllaç: %(anonymous_url)s"
|
|
683
874
|
|
|
684
|
-
#: views.py:
|
|
875
|
+
#: views.py:1104
|
|
685
876
|
msgid "Congratulations, your map has been cloned!"
|
|
686
877
|
msgstr "Enhorabona, s'ha clonat el vostre mapa!"
|
|
687
878
|
|
|
688
|
-
#: views.py:
|
|
879
|
+
#: views.py:1358
|
|
689
880
|
msgid "Layer successfully deleted."
|
|
690
881
|
msgstr "S'ha suprimit la capa correctament."
|
|
691
882
|
|
|
692
|
-
#: views.py:
|
|
883
|
+
#: views.py:1380
|
|
693
884
|
msgid "Permissions updated with success!"
|
|
694
885
|
msgstr ""
|