umap-project 3.0.6__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.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/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.0.dist-info}/METADATA +14 -14
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/RECORD +142 -129
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: uMap\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2025-
|
|
11
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
12
12
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
13
13
|
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2020\n"
|
|
14
14
|
"Language-Team: Icelandic (http://app.transifex.com/openstreetmap/umap/language/is/)\n"
|
|
@@ -42,7 +42,7 @@ msgstr "Notkun á “%(name)s” til auðkenningar er úreld aðferð sem verðu
|
|
|
42
42
|
msgid "name"
|
|
43
43
|
msgstr "nafn"
|
|
44
44
|
|
|
45
|
-
#: models.py:63 models.py:
|
|
45
|
+
#: models.py:63 models.py:503
|
|
46
46
|
msgid "description"
|
|
47
47
|
msgstr "lýsing"
|
|
48
48
|
|
|
@@ -62,23 +62,23 @@ msgstr "URL-sniðmát sem notar OSM-kortatíglasnið"
|
|
|
62
62
|
msgid "Order of the tilelayers in the edit box"
|
|
63
63
|
msgstr "Röð kortatíglalaga í breytingareitnum"
|
|
64
64
|
|
|
65
|
-
#: models.py:176 models.py:
|
|
65
|
+
#: models.py:176 models.py:497
|
|
66
66
|
msgid "Only editable with secret edit link"
|
|
67
67
|
msgstr "Aðeins breytanlegt með leynilegum breytingatengli"
|
|
68
68
|
|
|
69
|
-
#: models.py:177 models.py:
|
|
69
|
+
#: models.py:177 models.py:498
|
|
70
70
|
msgid "Everyone can edit"
|
|
71
71
|
msgstr "Allir geta breytt"
|
|
72
72
|
|
|
73
|
-
#: models.py:180 models.py:
|
|
73
|
+
#: models.py:180 models.py:491
|
|
74
74
|
msgid "Everyone"
|
|
75
75
|
msgstr "Allir"
|
|
76
76
|
|
|
77
|
-
#: models.py:181 models.py:190 models.py:
|
|
77
|
+
#: models.py:181 models.py:190 models.py:492
|
|
78
78
|
msgid "Editors and team only"
|
|
79
79
|
msgstr "Einungis ritstjórar og teymið"
|
|
80
80
|
|
|
81
|
-
#: models.py:182 models.py:
|
|
81
|
+
#: models.py:182 models.py:493
|
|
82
82
|
msgid "Owner only"
|
|
83
83
|
msgstr "Aðeins eigandi"
|
|
84
84
|
|
|
@@ -98,7 +98,7 @@ msgstr "Hver sá sem er með tengil"
|
|
|
98
98
|
msgid "Blocked"
|
|
99
99
|
msgstr "Útilokað"
|
|
100
100
|
|
|
101
|
-
#: models.py:192 models.py:
|
|
101
|
+
#: models.py:192 models.py:487
|
|
102
102
|
msgid "Deleted"
|
|
103
103
|
msgstr "Eytt"
|
|
104
104
|
|
|
@@ -138,99 +138,123 @@ msgstr "ritstjórar"
|
|
|
138
138
|
msgid "team"
|
|
139
139
|
msgstr "teymi"
|
|
140
140
|
|
|
141
|
-
#: models.py:230 models.py:
|
|
141
|
+
#: models.py:230 models.py:519
|
|
142
142
|
msgid "edit status"
|
|
143
143
|
msgstr "staða vinnslu"
|
|
144
144
|
|
|
145
|
-
#: models.py:235 models.py:
|
|
145
|
+
#: models.py:235 models.py:524
|
|
146
146
|
msgid "share status"
|
|
147
147
|
msgstr "staða deilingar"
|
|
148
148
|
|
|
149
|
-
#: models.py:238 models.py:
|
|
149
|
+
#: models.py:238 models.py:514
|
|
150
150
|
msgid "settings"
|
|
151
151
|
msgstr "stillingar"
|
|
152
152
|
|
|
153
|
-
#: models.py:
|
|
153
|
+
#: models.py:243
|
|
154
|
+
msgid "save as template"
|
|
155
|
+
msgstr ""
|
|
156
|
+
|
|
157
|
+
#: models.py:244
|
|
158
|
+
msgid "This map is a template map."
|
|
159
|
+
msgstr ""
|
|
160
|
+
|
|
161
|
+
#: models.py:420
|
|
154
162
|
msgid "Clone of"
|
|
155
163
|
msgstr "Klón af"
|
|
156
164
|
|
|
157
|
-
#: models.py:
|
|
165
|
+
#: models.py:486 models.py:490 models.py:496
|
|
158
166
|
msgid "Inherit"
|
|
159
167
|
msgstr "Erfa"
|
|
160
168
|
|
|
161
|
-
#: models.py:
|
|
169
|
+
#: models.py:509
|
|
162
170
|
msgid "display on load"
|
|
163
171
|
msgstr "birta við innhleðslu"
|
|
164
172
|
|
|
165
|
-
#: models.py:
|
|
173
|
+
#: models.py:510
|
|
166
174
|
msgid "Display this layer on load."
|
|
167
175
|
msgstr "Birta þetta lag við innhleðslu."
|
|
168
176
|
|
|
169
|
-
#: settings/base.py:
|
|
177
|
+
#: settings/base.py:283
|
|
178
|
+
msgid "uMap user documentation"
|
|
179
|
+
msgstr ""
|
|
180
|
+
|
|
181
|
+
#: settings/base.py:288
|
|
182
|
+
msgid "Video tutorials"
|
|
183
|
+
msgstr ""
|
|
184
|
+
|
|
185
|
+
#: settings/base.py:293
|
|
186
|
+
msgid "OpenStreetMap.org forum"
|
|
187
|
+
msgstr ""
|
|
188
|
+
|
|
189
|
+
#: settings/base.py:298
|
|
190
|
+
msgid "OpenStreetMap France forum"
|
|
191
|
+
msgstr ""
|
|
192
|
+
|
|
193
|
+
#: settings/base.py:318
|
|
170
194
|
msgid "Art and Culture"
|
|
171
195
|
msgstr ""
|
|
172
196
|
|
|
173
|
-
#: settings/base.py:
|
|
197
|
+
#: settings/base.py:319
|
|
174
198
|
msgid "Cycling"
|
|
175
199
|
msgstr ""
|
|
176
200
|
|
|
177
|
-
#: settings/base.py:
|
|
201
|
+
#: settings/base.py:320
|
|
178
202
|
msgid "Business"
|
|
179
203
|
msgstr ""
|
|
180
204
|
|
|
181
|
-
#: settings/base.py:
|
|
205
|
+
#: settings/base.py:321
|
|
182
206
|
msgid "Environment"
|
|
183
207
|
msgstr ""
|
|
184
208
|
|
|
185
|
-
#: settings/base.py:
|
|
209
|
+
#: settings/base.py:322
|
|
186
210
|
msgid "Education"
|
|
187
211
|
msgstr ""
|
|
188
212
|
|
|
189
|
-
#: settings/base.py:
|
|
213
|
+
#: settings/base.py:323
|
|
190
214
|
msgid "Food and Agriculture"
|
|
191
215
|
msgstr ""
|
|
192
216
|
|
|
193
|
-
#: settings/base.py:
|
|
217
|
+
#: settings/base.py:324
|
|
194
218
|
msgid "Geopolitics"
|
|
195
219
|
msgstr ""
|
|
196
220
|
|
|
197
|
-
#: settings/base.py:
|
|
221
|
+
#: settings/base.py:325
|
|
198
222
|
msgid "Health"
|
|
199
223
|
msgstr ""
|
|
200
224
|
|
|
201
|
-
#: settings/base.py:
|
|
225
|
+
#: settings/base.py:326
|
|
202
226
|
msgid "Hiking"
|
|
203
227
|
msgstr ""
|
|
204
228
|
|
|
205
|
-
#: settings/base.py:
|
|
229
|
+
#: settings/base.py:327
|
|
206
230
|
msgid "History"
|
|
207
231
|
msgstr ""
|
|
208
232
|
|
|
209
|
-
#: settings/base.py:
|
|
233
|
+
#: settings/base.py:328
|
|
210
234
|
msgid "Public sector"
|
|
211
235
|
msgstr ""
|
|
212
236
|
|
|
213
|
-
#: settings/base.py:
|
|
237
|
+
#: settings/base.py:329
|
|
214
238
|
msgid "Science"
|
|
215
239
|
msgstr ""
|
|
216
240
|
|
|
217
|
-
#: settings/base.py:
|
|
241
|
+
#: settings/base.py:330
|
|
218
242
|
msgid "Shopping"
|
|
219
243
|
msgstr ""
|
|
220
244
|
|
|
221
|
-
#: settings/base.py:
|
|
245
|
+
#: settings/base.py:331
|
|
222
246
|
msgid "Sport and Leisure"
|
|
223
247
|
msgstr ""
|
|
224
248
|
|
|
225
|
-
#: settings/base.py:
|
|
249
|
+
#: settings/base.py:332
|
|
226
250
|
msgid "Travel"
|
|
227
251
|
msgstr ""
|
|
228
252
|
|
|
229
|
-
#: settings/base.py:
|
|
253
|
+
#: settings/base.py:333
|
|
230
254
|
msgid "Transports"
|
|
231
255
|
msgstr ""
|
|
232
256
|
|
|
233
|
-
#: settings/base.py:
|
|
257
|
+
#: settings/base.py:334
|
|
234
258
|
msgid "Tourism"
|
|
235
259
|
msgstr ""
|
|
236
260
|
|
|
@@ -376,7 +400,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
376
400
|
msgstr "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
377
401
|
|
|
378
402
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
379
|
-
#: templates/umap/user_dashboard.html:
|
|
403
|
+
#: templates/umap/user_dashboard.html:16
|
|
380
404
|
msgid "Create a map"
|
|
381
405
|
msgstr "Útbúðu landakort"
|
|
382
406
|
|
|
@@ -474,11 +498,20 @@ msgstr "Kortin mín (%(count)s)"
|
|
|
474
498
|
msgid "My Maps"
|
|
475
499
|
msgstr "Kortin mín"
|
|
476
500
|
|
|
477
|
-
#: templates/umap/dashboard_menu.html:
|
|
501
|
+
#: templates/umap/dashboard_menu.html:11
|
|
502
|
+
#, python-format
|
|
503
|
+
msgid "My Templates (%(count)s)"
|
|
504
|
+
msgstr ""
|
|
505
|
+
|
|
506
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
507
|
+
msgid "My Templates"
|
|
508
|
+
msgstr ""
|
|
509
|
+
|
|
510
|
+
#: templates/umap/dashboard_menu.html:17
|
|
478
511
|
msgid "My profile"
|
|
479
512
|
msgstr "Sniðið mitt"
|
|
480
513
|
|
|
481
|
-
#: templates/umap/dashboard_menu.html:
|
|
514
|
+
#: templates/umap/dashboard_menu.html:20
|
|
482
515
|
msgid "My teams"
|
|
483
516
|
msgstr "Teymin mín"
|
|
484
517
|
|
|
@@ -494,10 +527,18 @@ msgstr "Fáðu hugmyndir, skoðaðu önnur landakort"
|
|
|
494
527
|
msgid "You are logged in. Continuing..."
|
|
495
528
|
msgstr "Þú ert skráð/ur inn. Held áfram..."
|
|
496
529
|
|
|
497
|
-
#: templates/umap/map_list.html:
|
|
530
|
+
#: templates/umap/map_list.html:15
|
|
531
|
+
msgid "template"
|
|
532
|
+
msgstr ""
|
|
533
|
+
|
|
534
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
498
535
|
msgid "by"
|
|
499
536
|
msgstr "eftir"
|
|
500
537
|
|
|
538
|
+
#: templates/umap/map_list.html:22
|
|
539
|
+
msgid "See the template"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
501
542
|
#: templates/umap/map_list.html:22
|
|
502
543
|
msgid "See the map"
|
|
503
544
|
msgstr ""
|
|
@@ -534,7 +575,7 @@ msgstr "Eigandi"
|
|
|
534
575
|
msgid "Actions"
|
|
535
576
|
msgstr "Aðgerðir"
|
|
536
577
|
|
|
537
|
-
#: templates/umap/map_table.html:
|
|
578
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
538
579
|
msgid "Open preview"
|
|
539
580
|
msgstr "Opna forskoðun"
|
|
540
581
|
|
|
@@ -661,11 +702,15 @@ msgid_plural "%(count)s maps found:"
|
|
|
661
702
|
msgstr[0] "%(count)s kort fannst:"
|
|
662
703
|
msgstr[1] "%(count)s kort fundust:"
|
|
663
704
|
|
|
664
|
-
#: templates/umap/search.html:30
|
|
705
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
665
706
|
msgid "No map found."
|
|
666
707
|
msgstr "Engin kort fundust."
|
|
667
708
|
|
|
668
|
-
#: templates/umap/search.html:
|
|
709
|
+
#: templates/umap/search.html:36
|
|
710
|
+
msgid "Latest created maps in category"
|
|
711
|
+
msgstr ""
|
|
712
|
+
|
|
713
|
+
#: templates/umap/search.html:43
|
|
669
714
|
msgid "Latest created maps"
|
|
670
715
|
msgstr "Síðast útbúnu kortin"
|
|
671
716
|
|
|
@@ -712,20 +757,20 @@ msgstr "Eyða þessu teymi"
|
|
|
712
757
|
msgid "Add user"
|
|
713
758
|
msgstr "Bæta við notanda"
|
|
714
759
|
|
|
715
|
-
#: templates/umap/user_dashboard.html:
|
|
760
|
+
#: templates/umap/user_dashboard.html:10
|
|
716
761
|
msgid "Search my maps"
|
|
717
762
|
msgstr "Leita í landakortunum mínum"
|
|
718
763
|
|
|
719
|
-
#: templates/umap/user_dashboard.html:
|
|
720
|
-
msgid "Map’s
|
|
721
|
-
msgstr "
|
|
764
|
+
#: templates/umap/user_dashboard.html:11
|
|
765
|
+
msgid "Map’s name"
|
|
766
|
+
msgstr ""
|
|
722
767
|
|
|
723
|
-
#: templates/umap/user_dashboard.html:
|
|
768
|
+
#: templates/umap/user_dashboard.html:12
|
|
724
769
|
#, python-format
|
|
725
770
|
msgid "Download %(count)s maps"
|
|
726
771
|
msgstr "Sækja %(count)s landakort"
|
|
727
772
|
|
|
728
|
-
#: templates/umap/user_dashboard.html:
|
|
773
|
+
#: templates/umap/user_dashboard.html:15
|
|
729
774
|
msgid "You have no map yet."
|
|
730
775
|
msgstr "Þú ert ekki með nein kort ennþá."
|
|
731
776
|
|
|
@@ -741,70 +786,95 @@ msgstr "Notendur"
|
|
|
741
786
|
msgid "New team"
|
|
742
787
|
msgstr "Nýtt teymi"
|
|
743
788
|
|
|
744
|
-
#:
|
|
789
|
+
#: templates/umap/user_templates.html:10
|
|
790
|
+
msgid "Search my templates"
|
|
791
|
+
msgstr ""
|
|
792
|
+
|
|
793
|
+
#: templates/umap/user_templates.html:11
|
|
794
|
+
msgid "Template’s name"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
#: templates/umap/user_templates.html:12
|
|
798
|
+
#, python-format
|
|
799
|
+
msgid "Download %(count)s templates"
|
|
800
|
+
msgstr ""
|
|
801
|
+
|
|
802
|
+
#: templates/umap/user_templates.html:15
|
|
803
|
+
msgid "You have no template yet."
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
#: templates/umap/user_templates.html:16
|
|
807
|
+
msgid "Create a template"
|
|
808
|
+
msgstr ""
|
|
809
|
+
|
|
810
|
+
#: templates/umap/user_templates.html:17
|
|
811
|
+
msgid "No template found."
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
#: views.py:233
|
|
745
815
|
msgid "Cannot delete a team with more than one member"
|
|
746
816
|
msgstr "Get ekki eytt teymi með fleiri en einum meðlim"
|
|
747
817
|
|
|
748
|
-
#: views.py:
|
|
818
|
+
#: views.py:237
|
|
749
819
|
#, python-format
|
|
750
820
|
msgid "Team “%(name)s” has been deleted"
|
|
751
821
|
msgstr "Teyminu “%(name)s” hefur verið eytt"
|
|
752
822
|
|
|
753
|
-
#: views.py:
|
|
823
|
+
#: views.py:463
|
|
754
824
|
msgid "View the map"
|
|
755
825
|
msgstr "Skoða kortið"
|
|
756
826
|
|
|
757
|
-
#: views.py:
|
|
827
|
+
#: views.py:864
|
|
758
828
|
msgid "See full screen"
|
|
759
829
|
msgstr "Fylla skjáinn"
|
|
760
830
|
|
|
761
|
-
#: views.py:
|
|
831
|
+
#: views.py:1007
|
|
762
832
|
msgid "Map editors updated with success!"
|
|
763
833
|
msgstr "Tókst að uppfæra vinnslu korta!"
|
|
764
834
|
|
|
765
|
-
#: views.py:
|
|
835
|
+
#: views.py:1043
|
|
766
836
|
#, python-format
|
|
767
837
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
768
838
|
msgstr "uMap-breytingatengillinn fyrir landakortið þitt: %(map_name)s"
|
|
769
839
|
|
|
770
|
-
#: views.py:
|
|
840
|
+
#: views.py:1046
|
|
771
841
|
#, python-format
|
|
772
842
|
msgid "Here is your secret edit link: %(link)s"
|
|
773
843
|
msgstr "Hér er leynilegi breytingatengillinn þinn: %(link)s"
|
|
774
844
|
|
|
775
|
-
#: views.py:
|
|
845
|
+
#: views.py:1053
|
|
776
846
|
#, python-format
|
|
777
847
|
msgid "Can't send email to %(email)s"
|
|
778
848
|
msgstr "Tekst ekki að senda tölvupóst á %(email)s"
|
|
779
849
|
|
|
780
|
-
#: views.py:
|
|
850
|
+
#: views.py:1056
|
|
781
851
|
#, python-format
|
|
782
852
|
msgid "Email sent to %(email)s"
|
|
783
853
|
msgstr "Tölvupóstur var sendur á %(email)s"
|
|
784
854
|
|
|
785
|
-
#: views.py:
|
|
855
|
+
#: views.py:1067
|
|
786
856
|
msgid "Only its owner can delete the map."
|
|
787
857
|
msgstr "Aðeins eigandinn getur eytt landakortinu."
|
|
788
858
|
|
|
789
|
-
#: views.py:
|
|
859
|
+
#: views.py:1073
|
|
790
860
|
msgid "Map successfully deleted."
|
|
791
861
|
msgstr "Tókst að eyða korti."
|
|
792
862
|
|
|
793
|
-
#: views.py:
|
|
863
|
+
#: views.py:1099
|
|
794
864
|
#, python-format
|
|
795
865
|
msgid ""
|
|
796
866
|
"Your map has been cloned! If you want to edit this map from another "
|
|
797
867
|
"computer, please use this link: %(anonymous_url)s"
|
|
798
868
|
msgstr "Það tókst að klóna landakortið þitt! Ef þú ætlar að breyta þessu landakorti úr annarri tölvu, ættirðu að nota þennan tengil: %(anonymous_url)s"
|
|
799
869
|
|
|
800
|
-
#: views.py:
|
|
870
|
+
#: views.py:1104
|
|
801
871
|
msgid "Congratulations, your map has been cloned!"
|
|
802
872
|
msgstr "Til hamingju, það tókst að klóna landakortið þitt!"
|
|
803
873
|
|
|
804
|
-
#: views.py:
|
|
874
|
+
#: views.py:1358
|
|
805
875
|
msgid "Layer successfully deleted."
|
|
806
876
|
msgstr "Tókst að eyða lagi."
|
|
807
877
|
|
|
808
|
-
#: views.py:
|
|
878
|
+
#: views.py:1380
|
|
809
879
|
msgid "Permissions updated with success!"
|
|
810
880
|
msgstr "Tókst að uppfæra heimildir!"
|
|
Binary file
|