umap-project 2.5.0__py3-none-any.whl → 2.6.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/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -11,7 +11,7 @@ msgid ""
|
|
|
11
11
|
msgstr ""
|
|
12
12
|
"Project-Id-Version: uMap\n"
|
|
13
13
|
"Report-Msgid-Bugs-To: \n"
|
|
14
|
-
"POT-Creation-Date: 2024-
|
|
14
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
15
15
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
16
16
|
"Last-Translator: carlbacker, 2020,2023\n"
|
|
17
17
|
"Language-Team: Swedish (http://app.transifex.com/openstreetmap/umap/language/sv/)\n"
|
|
@@ -29,7 +29,7 @@ msgstr "Redigering är bara tillåten med privat redigeringslänk"
|
|
|
29
29
|
msgid "Everyone can edit"
|
|
30
30
|
msgstr "Alla kan redigera"
|
|
31
31
|
|
|
32
|
-
#: forms.py:69 models.py:
|
|
32
|
+
#: forms.py:69 models.py:423
|
|
33
33
|
msgid "Inherit"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
@@ -37,242 +37,284 @@ msgstr ""
|
|
|
37
37
|
msgid "Site is readonly for maintenance"
|
|
38
38
|
msgstr "Webbplatsen är skrivskyddad för underhållsarbete."
|
|
39
39
|
|
|
40
|
-
#: models.py:
|
|
40
|
+
#: models.py:54 models.py:73
|
|
41
41
|
msgid "name"
|
|
42
42
|
msgstr "namn"
|
|
43
43
|
|
|
44
|
-
#: models.py:
|
|
44
|
+
#: models.py:56 models.py:433
|
|
45
|
+
msgid "description"
|
|
46
|
+
msgstr "beskrivning"
|
|
47
|
+
|
|
48
|
+
#: models.py:104
|
|
45
49
|
msgid "details"
|
|
46
50
|
msgstr "detaljer"
|
|
47
51
|
|
|
48
|
-
#: models.py:
|
|
52
|
+
#: models.py:105
|
|
49
53
|
msgid "Link to a page where the licence is detailed."
|
|
50
54
|
msgstr "Länk till sida med detaljerad licens information."
|
|
51
55
|
|
|
52
|
-
#: models.py:
|
|
56
|
+
#: models.py:115
|
|
53
57
|
msgid "URL template using OSM tile format"
|
|
54
58
|
msgstr "URL-mall med OSM:s tile-format"
|
|
55
59
|
|
|
56
|
-
#: models.py:
|
|
60
|
+
#: models.py:121
|
|
57
61
|
msgid "Order of the tilelayers in the edit box"
|
|
58
62
|
msgstr "Ordningen för tile-lager i redigeringsrutan"
|
|
59
63
|
|
|
60
|
-
#: models.py:
|
|
64
|
+
#: models.py:167 models.py:424
|
|
61
65
|
msgid "Everyone"
|
|
62
66
|
msgstr "Alla"
|
|
63
67
|
|
|
64
|
-
#: models.py:
|
|
65
|
-
msgid "Editors only"
|
|
66
|
-
msgstr "
|
|
68
|
+
#: models.py:168 models.py:174 models.py:425
|
|
69
|
+
msgid "Editors and team only"
|
|
70
|
+
msgstr ""
|
|
67
71
|
|
|
68
|
-
#: models.py:
|
|
72
|
+
#: models.py:169 models.py:426
|
|
69
73
|
msgid "Owner only"
|
|
70
74
|
msgstr "Enbart ägaren "
|
|
71
75
|
|
|
72
|
-
#: models.py:
|
|
76
|
+
#: models.py:172
|
|
73
77
|
msgid "Everyone (public)"
|
|
74
78
|
msgstr "Alla (publik)"
|
|
75
79
|
|
|
76
|
-
#: models.py:
|
|
80
|
+
#: models.py:173
|
|
77
81
|
msgid "Anyone with link"
|
|
78
82
|
msgstr "Alla med en länk"
|
|
79
83
|
|
|
80
|
-
#: models.py:
|
|
84
|
+
#: models.py:175
|
|
81
85
|
msgid "Blocked"
|
|
82
86
|
msgstr "Låst"
|
|
83
87
|
|
|
84
|
-
#: models.py:
|
|
85
|
-
msgid "description"
|
|
86
|
-
msgstr "beskrivning"
|
|
87
|
-
|
|
88
|
-
#: models.py:156
|
|
88
|
+
#: models.py:178
|
|
89
89
|
msgid "center"
|
|
90
90
|
msgstr "centrera"
|
|
91
91
|
|
|
92
|
-
#: models.py:
|
|
92
|
+
#: models.py:179
|
|
93
93
|
msgid "zoom"
|
|
94
94
|
msgstr "zooma"
|
|
95
95
|
|
|
96
|
-
#: models.py:
|
|
96
|
+
#: models.py:181
|
|
97
97
|
msgid "locate"
|
|
98
98
|
msgstr "lokalisera"
|
|
99
99
|
|
|
100
|
-
#: models.py:
|
|
100
|
+
#: models.py:181
|
|
101
101
|
msgid "Locate user on load?"
|
|
102
102
|
msgstr "Lokalisera användaren vid uppstart?"
|
|
103
103
|
|
|
104
|
-
#: models.py:
|
|
104
|
+
#: models.py:185
|
|
105
105
|
msgid "Choose the map licence."
|
|
106
106
|
msgstr "Välj licens för kartan."
|
|
107
107
|
|
|
108
|
-
#: models.py:
|
|
108
|
+
#: models.py:186
|
|
109
109
|
msgid "licence"
|
|
110
110
|
msgstr "licens"
|
|
111
111
|
|
|
112
|
-
#: models.py:
|
|
112
|
+
#: models.py:197
|
|
113
113
|
msgid "owner"
|
|
114
114
|
msgstr "ägare"
|
|
115
115
|
|
|
116
|
-
#: models.py:
|
|
116
|
+
#: models.py:201
|
|
117
117
|
msgid "editors"
|
|
118
118
|
msgstr "redaktörer"
|
|
119
119
|
|
|
120
|
-
#: models.py:
|
|
120
|
+
#: models.py:207
|
|
121
|
+
msgid "team"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
124
|
+
#: models.py:213 models.py:447
|
|
121
125
|
msgid "edit status"
|
|
122
126
|
msgstr "redigeringsstatus"
|
|
123
127
|
|
|
124
|
-
#: models.py:
|
|
128
|
+
#: models.py:218
|
|
125
129
|
msgid "share status"
|
|
126
130
|
msgstr "delningsstatus"
|
|
127
131
|
|
|
128
|
-
#: models.py:
|
|
132
|
+
#: models.py:221 models.py:442
|
|
129
133
|
msgid "settings"
|
|
130
134
|
msgstr "inställningar"
|
|
131
135
|
|
|
132
|
-
#: models.py:
|
|
136
|
+
#: models.py:364
|
|
133
137
|
msgid "Clone of"
|
|
134
138
|
msgstr "Kopia av"
|
|
135
139
|
|
|
136
|
-
#: models.py:
|
|
140
|
+
#: models.py:437
|
|
137
141
|
msgid "display on load"
|
|
138
142
|
msgstr "visa vid uppstart"
|
|
139
143
|
|
|
140
|
-
#: models.py:
|
|
144
|
+
#: models.py:438
|
|
141
145
|
msgid "Display this layer on load."
|
|
142
146
|
msgstr "Visa detta lager från start."
|
|
143
147
|
|
|
144
|
-
#: templates/404.html:
|
|
148
|
+
#: templates/404.html:8
|
|
145
149
|
msgid "Take me to the home page"
|
|
146
150
|
msgstr "Ta mig till startsidan"
|
|
147
151
|
|
|
148
|
-
#: templates/auth/user_detail.html:
|
|
152
|
+
#: templates/auth/user_detail.html:8
|
|
149
153
|
#, python-format
|
|
150
154
|
msgid "Browse %(current_user)s's maps"
|
|
151
155
|
msgstr "Bläddra bland %(current_user)ss kartor"
|
|
152
156
|
|
|
153
|
-
#: templates/auth/user_detail.html:
|
|
157
|
+
#: templates/auth/user_detail.html:17
|
|
154
158
|
#, python-format
|
|
155
159
|
msgid "%(current_user)s has no maps."
|
|
156
160
|
msgstr "%(current_user)s har inga kartor."
|
|
157
161
|
|
|
158
|
-
#: templates/auth/user_form.html:
|
|
159
|
-
msgid "My Maps"
|
|
160
|
-
msgstr ""
|
|
161
|
-
|
|
162
|
-
#: templates/auth/user_form.html:7
|
|
163
|
-
msgid "My Profile"
|
|
164
|
-
msgstr ""
|
|
165
|
-
|
|
166
|
-
#: templates/auth/user_form.html:20
|
|
162
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
167
163
|
msgid "Save"
|
|
168
164
|
msgstr ""
|
|
169
165
|
|
|
170
|
-
#: templates/auth/user_form.html:
|
|
166
|
+
#: templates/auth/user_form.html:27
|
|
171
167
|
msgid "Your current providers"
|
|
172
168
|
msgstr ""
|
|
173
169
|
|
|
174
|
-
#: templates/auth/user_form.html:
|
|
170
|
+
#: templates/auth/user_form.html:39
|
|
175
171
|
msgid "Connect to another provider"
|
|
176
172
|
msgstr ""
|
|
177
173
|
|
|
178
|
-
#: templates/auth/user_form.html:
|
|
174
|
+
#: templates/auth/user_form.html:42
|
|
179
175
|
msgid ""
|
|
180
176
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
181
177
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
182
178
|
msgstr ""
|
|
183
179
|
|
|
184
|
-
#: templates/auth/user_stars.html:
|
|
180
|
+
#: templates/auth/user_stars.html:8
|
|
185
181
|
#, python-format
|
|
186
182
|
msgid "Browse %(current_user)s's starred maps"
|
|
187
183
|
msgstr ""
|
|
188
184
|
|
|
189
|
-
#: templates/auth/user_stars.html:
|
|
185
|
+
#: templates/auth/user_stars.html:17
|
|
190
186
|
#, python-format
|
|
191
187
|
msgid "%(current_user)s has no starred maps yet."
|
|
192
188
|
msgstr ""
|
|
193
189
|
|
|
194
|
-
#: templates/base.html:
|
|
190
|
+
#: templates/base.html:13
|
|
195
191
|
msgid ""
|
|
196
192
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
197
193
|
"them in your site."
|
|
198
194
|
msgstr "Med uMap kan du på minuter skapa egna kartor med OpenStreetMap-lager och bädda in dem på din webbsida."
|
|
199
195
|
|
|
200
|
-
#: templates/registration/login.html:
|
|
196
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
197
|
+
msgid "Login"
|
|
198
|
+
msgstr "Logga in"
|
|
199
|
+
|
|
200
|
+
#: templates/registration/login.html:24
|
|
201
201
|
msgid "Please log in with your account"
|
|
202
202
|
msgstr "Vänligen logga in med ditt konto"
|
|
203
203
|
|
|
204
|
-
#: templates/registration/login.html:
|
|
204
|
+
#: templates/registration/login.html:41
|
|
205
205
|
msgid "Username"
|
|
206
206
|
msgstr "Användarnamn"
|
|
207
207
|
|
|
208
|
-
#: templates/registration/login.html:
|
|
208
|
+
#: templates/registration/login.html:44
|
|
209
209
|
msgid "Password"
|
|
210
210
|
msgstr "Lösenord"
|
|
211
211
|
|
|
212
|
-
#: templates/registration/login.html:
|
|
213
|
-
msgid "Login"
|
|
214
|
-
msgstr "Logga in"
|
|
215
|
-
|
|
216
|
-
#: templates/registration/login.html:37
|
|
212
|
+
#: templates/registration/login.html:51
|
|
217
213
|
msgid "Please choose a provider"
|
|
218
214
|
msgstr "Välj en leverantör"
|
|
219
215
|
|
|
220
|
-
#: templates/umap/about_summary.html:
|
|
216
|
+
#: templates/umap/about_summary.html:12
|
|
221
217
|
#, python-format
|
|
222
218
|
msgid ""
|
|
223
219
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
224
220
|
"layers in a minute and embed them in your site."
|
|
225
221
|
msgstr "Med uMap kan du på minuter skapa egna kartor med <a href=\"%(osm_url)s\" />OpenStreetMap</a> lager och sedan bädda in dem på din webbsida."
|
|
226
222
|
|
|
227
|
-
#: templates/umap/about_summary.html:
|
|
223
|
+
#: templates/umap/about_summary.html:23
|
|
228
224
|
msgid "Choose the layers of your map"
|
|
229
225
|
msgstr "Välj lager för din karta"
|
|
230
226
|
|
|
231
|
-
#: templates/umap/about_summary.html:
|
|
227
|
+
#: templates/umap/about_summary.html:26
|
|
232
228
|
msgid "Add POIs: markers, lines, polygons..."
|
|
233
229
|
msgstr "Lägg till POI:er, markörer, linjer, polygoner..."
|
|
234
230
|
|
|
235
|
-
#: templates/umap/about_summary.html:
|
|
231
|
+
#: templates/umap/about_summary.html:29
|
|
236
232
|
msgid "Manage POIs colours and icons"
|
|
237
233
|
msgstr "Ändra färger och ikoner för POI:er"
|
|
238
234
|
|
|
239
|
-
#: templates/umap/about_summary.html:
|
|
235
|
+
#: templates/umap/about_summary.html:32
|
|
240
236
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
241
237
|
msgstr "Hantera kartalternativ: visa en minikarta, lokalisera användaren..."
|
|
242
238
|
|
|
243
|
-
#: templates/umap/about_summary.html:
|
|
239
|
+
#: templates/umap/about_summary.html:35
|
|
244
240
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
245
241
|
msgstr "Importera strukturerad geodata (geojson, gpx, kml, osm...)"
|
|
246
242
|
|
|
247
|
-
#: templates/umap/about_summary.html:
|
|
243
|
+
#: templates/umap/about_summary.html:38
|
|
248
244
|
msgid "Choose the license for your data"
|
|
249
245
|
msgstr "Välj licens för dina data"
|
|
250
246
|
|
|
251
|
-
#: templates/umap/about_summary.html:
|
|
247
|
+
#: templates/umap/about_summary.html:41
|
|
252
248
|
msgid "Embed and share your map"
|
|
253
249
|
msgstr "Bädda in och dela din karta"
|
|
254
250
|
|
|
255
|
-
#: templates/umap/about_summary.html:
|
|
251
|
+
#: templates/umap/about_summary.html:52
|
|
256
252
|
#, python-format
|
|
257
253
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
258
254
|
msgstr "Och det är <a href=\"%(repo_url)s\">öppen källkod</a>!"
|
|
259
255
|
|
|
260
|
-
#: templates/umap/about_summary.html:
|
|
261
|
-
#: templates/umap/user_dashboard.html:
|
|
256
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
257
|
+
#: templates/umap/user_dashboard.html:40
|
|
262
258
|
msgid "Create a map"
|
|
263
259
|
msgstr "Skapa en karta"
|
|
264
260
|
|
|
265
|
-
#: templates/umap/about_summary.html:
|
|
261
|
+
#: templates/umap/about_summary.html:66
|
|
266
262
|
msgid "Play with the demo"
|
|
267
263
|
msgstr "Lek med demotjänsten"
|
|
268
264
|
|
|
269
|
-
#: templates/umap/
|
|
265
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
266
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
267
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
268
|
+
msgid "Close"
|
|
269
|
+
msgstr ""
|
|
270
|
+
|
|
271
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
272
|
+
#, python-format
|
|
273
|
+
msgid ""
|
|
274
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
275
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
276
|
+
"target=\"_blank\">log in</a>."
|
|
277
|
+
msgstr ""
|
|
278
|
+
|
|
279
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
280
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
281
|
+
msgstr ""
|
|
282
|
+
|
|
283
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
284
|
+
msgid "Copy link"
|
|
285
|
+
msgstr ""
|
|
286
|
+
|
|
287
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
288
|
+
msgid "Enter your email address to receive the secret link:"
|
|
289
|
+
msgstr ""
|
|
290
|
+
|
|
291
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
292
|
+
msgid "Email"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
295
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
296
|
+
msgid "Send me the link"
|
|
297
|
+
msgstr ""
|
|
298
|
+
|
|
299
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
300
|
+
msgid "See their edits in another tab"
|
|
301
|
+
msgstr ""
|
|
302
|
+
|
|
303
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
304
|
+
msgid "Keep your changes and loose theirs"
|
|
305
|
+
msgstr ""
|
|
306
|
+
|
|
307
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
308
|
+
msgid "Keep their changes and loose yours"
|
|
309
|
+
msgstr ""
|
|
310
|
+
|
|
311
|
+
#: templates/umap/content.html:26
|
|
270
312
|
msgid ""
|
|
271
313
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
272
314
|
"allowed."
|
|
273
315
|
msgstr "Denna instans av uMap är för tillfället låst i visningsläge, ingen redigering är tillåten. "
|
|
274
316
|
|
|
275
|
-
#: templates/umap/content.html:
|
|
317
|
+
#: templates/umap/content.html:34
|
|
276
318
|
#, python-format
|
|
277
319
|
msgid ""
|
|
278
320
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -281,270 +323,339 @@ msgid ""
|
|
|
281
323
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
282
324
|
msgstr "Det här är en demo-instans, som används för tester och förhandsversioner. Om du behöver en stabil instans, använd <a href=\"%(stable_url)s\">%(stable_url)s</a>. Du kan också vara värd för din egen instans med <a href=\"%(repo_url)s\">öppen källkod</a>!"
|
|
283
325
|
|
|
284
|
-
#: templates/umap/
|
|
326
|
+
#: templates/umap/content_footer.html:5
|
|
327
|
+
msgid "An OpenStreetMap project"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
330
|
+
#: templates/umap/content_footer.html:6
|
|
331
|
+
msgid "version"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
#: templates/umap/content_footer.html:7
|
|
335
|
+
msgid "Hosted by"
|
|
336
|
+
msgstr ""
|
|
337
|
+
|
|
338
|
+
#: templates/umap/content_footer.html:8
|
|
339
|
+
msgid "Contact"
|
|
340
|
+
msgstr ""
|
|
341
|
+
|
|
342
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
343
|
+
msgid "Help"
|
|
344
|
+
msgstr "Hjälp"
|
|
345
|
+
|
|
346
|
+
#: templates/umap/dashboard_menu.html:6
|
|
347
|
+
#, python-format
|
|
348
|
+
msgid "My Maps (%(count)s)"
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: templates/umap/dashboard_menu.html:8
|
|
352
|
+
msgid "My Maps"
|
|
353
|
+
msgstr ""
|
|
354
|
+
|
|
355
|
+
#: templates/umap/dashboard_menu.html:11
|
|
356
|
+
msgid "My profile"
|
|
357
|
+
msgstr ""
|
|
358
|
+
|
|
359
|
+
#: templates/umap/dashboard_menu.html:13
|
|
360
|
+
msgid "My teams"
|
|
361
|
+
msgstr ""
|
|
362
|
+
|
|
363
|
+
#: templates/umap/home.html:14
|
|
285
364
|
msgid "Map of the uMaps"
|
|
286
365
|
msgstr "Karta över uMap-kartor."
|
|
287
366
|
|
|
288
|
-
#: templates/umap/home.html:
|
|
367
|
+
#: templates/umap/home.html:24
|
|
289
368
|
msgid "Get inspired, browse maps"
|
|
290
369
|
msgstr "Inspireras av andra kartor"
|
|
291
370
|
|
|
292
|
-
#: templates/umap/login_popup_end.html:
|
|
371
|
+
#: templates/umap/login_popup_end.html:4
|
|
293
372
|
msgid "You are logged in. Continuing..."
|
|
294
373
|
msgstr "Du är nu inloggad. Fortsätter..."
|
|
295
374
|
|
|
296
|
-
#: templates/umap/map_list.html:
|
|
375
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
297
376
|
msgid "by"
|
|
298
377
|
msgstr "av"
|
|
299
378
|
|
|
300
|
-
#: templates/umap/map_list.html:
|
|
379
|
+
#: templates/umap/map_list.html:18
|
|
301
380
|
msgid "More"
|
|
302
381
|
msgstr "Mer"
|
|
303
382
|
|
|
304
|
-
#: templates/umap/map_table.html:
|
|
383
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
305
384
|
msgid "Name"
|
|
306
385
|
msgstr "Namn"
|
|
307
386
|
|
|
308
|
-
#: templates/umap/map_table.html:
|
|
387
|
+
#: templates/umap/map_table.html:11
|
|
309
388
|
msgid "Preview"
|
|
310
389
|
msgstr ""
|
|
311
390
|
|
|
312
|
-
#: templates/umap/map_table.html:
|
|
391
|
+
#: templates/umap/map_table.html:14
|
|
313
392
|
msgid "Who can see"
|
|
314
393
|
msgstr ""
|
|
315
394
|
|
|
316
|
-
#: templates/umap/map_table.html:
|
|
395
|
+
#: templates/umap/map_table.html:17
|
|
317
396
|
msgid "Who can edit"
|
|
318
397
|
msgstr ""
|
|
319
398
|
|
|
320
|
-
#: templates/umap/map_table.html:
|
|
399
|
+
#: templates/umap/map_table.html:20
|
|
321
400
|
msgid "Last save"
|
|
322
401
|
msgstr "Senast sparad "
|
|
323
402
|
|
|
324
|
-
#: templates/umap/map_table.html:
|
|
403
|
+
#: templates/umap/map_table.html:23
|
|
325
404
|
msgid "Owner"
|
|
326
405
|
msgstr "Ägare"
|
|
327
406
|
|
|
328
|
-
#: templates/umap/map_table.html:
|
|
407
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
329
408
|
msgid "Actions"
|
|
330
409
|
msgstr "Åtgärder"
|
|
331
410
|
|
|
332
|
-
#: templates/umap/map_table.html:
|
|
411
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
333
412
|
msgid "Open preview"
|
|
334
413
|
msgstr ""
|
|
335
414
|
|
|
336
|
-
#: templates/umap/map_table.html:
|
|
415
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
337
416
|
msgid "Share"
|
|
338
417
|
msgstr "Dela"
|
|
339
418
|
|
|
340
|
-
#: templates/umap/map_table.html:
|
|
419
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
420
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
341
421
|
msgid "Edit"
|
|
342
422
|
msgstr "Redigera"
|
|
343
423
|
|
|
344
|
-
#: templates/umap/map_table.html:
|
|
424
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
345
425
|
msgid "Download"
|
|
346
426
|
msgstr "Ladda ned"
|
|
347
427
|
|
|
348
|
-
#: templates/umap/map_table.html:
|
|
428
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
349
429
|
msgid "Clone"
|
|
350
430
|
msgstr ""
|
|
351
431
|
|
|
352
|
-
#: templates/umap/map_table.html:
|
|
432
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
353
433
|
msgid "Delete"
|
|
354
434
|
msgstr ""
|
|
355
435
|
|
|
356
|
-
#: templates/umap/map_table.html:
|
|
436
|
+
#: templates/umap/map_table.html:117
|
|
357
437
|
msgid "first"
|
|
358
438
|
msgstr ""
|
|
359
439
|
|
|
360
|
-
#: templates/umap/map_table.html:
|
|
440
|
+
#: templates/umap/map_table.html:118
|
|
361
441
|
msgid "previous"
|
|
362
442
|
msgstr ""
|
|
363
443
|
|
|
364
|
-
#: templates/umap/map_table.html:
|
|
444
|
+
#: templates/umap/map_table.html:126
|
|
365
445
|
#, python-format
|
|
366
446
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
367
447
|
msgstr ""
|
|
368
448
|
|
|
369
|
-
#: templates/umap/map_table.html:
|
|
449
|
+
#: templates/umap/map_table.html:131
|
|
370
450
|
msgid "next"
|
|
371
451
|
msgstr ""
|
|
372
452
|
|
|
373
|
-
#: templates/umap/map_table.html:
|
|
453
|
+
#: templates/umap/map_table.html:132
|
|
374
454
|
msgid "last"
|
|
375
455
|
msgstr ""
|
|
376
456
|
|
|
377
|
-
#: templates/umap/map_table.html:
|
|
457
|
+
#: templates/umap/map_table.html:140
|
|
378
458
|
#, python-format
|
|
379
459
|
msgid "Lines per page: %(per_page)s"
|
|
380
460
|
msgstr ""
|
|
381
461
|
|
|
382
|
-
#: templates/umap/map_table.html:
|
|
462
|
+
#: templates/umap/map_table.html:145
|
|
383
463
|
#, python-format
|
|
384
464
|
msgid "%(count)s maps"
|
|
385
465
|
msgstr ""
|
|
386
466
|
|
|
387
|
-
#: templates/umap/navigation.html:
|
|
467
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
388
468
|
msgid "My Dashboard"
|
|
389
469
|
msgstr ""
|
|
390
470
|
|
|
391
|
-
#: templates/umap/navigation.html:
|
|
471
|
+
#: templates/umap/navigation.html:14
|
|
392
472
|
msgid "Starred maps"
|
|
393
473
|
msgstr "Stjärnmärkta kartor "
|
|
394
474
|
|
|
395
|
-
#: templates/umap/navigation.html:
|
|
475
|
+
#: templates/umap/navigation.html:18
|
|
396
476
|
msgid "Log in"
|
|
397
477
|
msgstr "Logga in"
|
|
398
478
|
|
|
399
|
-
#: templates/umap/navigation.html:
|
|
479
|
+
#: templates/umap/navigation.html:18
|
|
400
480
|
msgid "Sign in"
|
|
401
481
|
msgstr "Logga in"
|
|
402
482
|
|
|
403
|
-
#: templates/umap/navigation.html:
|
|
483
|
+
#: templates/umap/navigation.html:22
|
|
404
484
|
msgid "About"
|
|
405
485
|
msgstr "Om"
|
|
406
486
|
|
|
407
|
-
#: templates/umap/navigation.html:
|
|
408
|
-
msgid "Help"
|
|
409
|
-
msgstr "Hjälp"
|
|
410
|
-
|
|
411
|
-
#: templates/umap/navigation.html:29
|
|
487
|
+
#: templates/umap/navigation.html:30
|
|
412
488
|
msgid "Change password"
|
|
413
489
|
msgstr "Byt lösenord"
|
|
414
490
|
|
|
415
|
-
#: templates/umap/navigation.html:
|
|
491
|
+
#: templates/umap/navigation.html:34
|
|
416
492
|
msgid "Log out"
|
|
417
493
|
msgstr "Logga ut"
|
|
418
494
|
|
|
419
|
-
#: templates/umap/password_change.html:
|
|
495
|
+
#: templates/umap/password_change.html:7
|
|
420
496
|
msgid "Password change"
|
|
421
497
|
msgstr "Byte av lösenord"
|
|
422
498
|
|
|
423
|
-
#: templates/umap/password_change.html:
|
|
499
|
+
#: templates/umap/password_change.html:10
|
|
424
500
|
msgid ""
|
|
425
501
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
426
502
|
" password twice so we can verify you typed it in correctly."
|
|
427
503
|
msgstr "Fyll i ditt nuvarande lösenord för säkerhets skull, och sedan ditt nya lösenord två gånger så vi kan undvika felskrivningar. "
|
|
428
504
|
|
|
429
|
-
#: templates/umap/password_change.html:
|
|
505
|
+
#: templates/umap/password_change.html:17
|
|
430
506
|
msgid "Old password"
|
|
431
507
|
msgstr "Nuvarande lösenord"
|
|
432
508
|
|
|
433
|
-
#: templates/umap/password_change.html:
|
|
509
|
+
#: templates/umap/password_change.html:22
|
|
434
510
|
msgid "New password"
|
|
435
511
|
msgstr "Nytt lösenord"
|
|
436
512
|
|
|
437
|
-
#: templates/umap/password_change.html:
|
|
513
|
+
#: templates/umap/password_change.html:26
|
|
438
514
|
msgid "New password confirmation"
|
|
439
515
|
msgstr "Bekräfta nytt lösenord"
|
|
440
516
|
|
|
441
|
-
#: templates/umap/password_change.html:
|
|
517
|
+
#: templates/umap/password_change.html:27
|
|
442
518
|
msgid "Change my password"
|
|
443
519
|
msgstr "Ändra mitt lösenord"
|
|
444
520
|
|
|
445
|
-
#: templates/umap/password_change_done.html:
|
|
521
|
+
#: templates/umap/password_change_done.html:7
|
|
446
522
|
msgid "Password change successful"
|
|
447
523
|
msgstr "Lösenordet har ändrats!"
|
|
448
524
|
|
|
449
|
-
#: templates/umap/password_change_done.html:
|
|
525
|
+
#: templates/umap/password_change_done.html:10
|
|
450
526
|
msgid "Your password was changed."
|
|
451
527
|
msgstr "Ditt lösenord har ändrats."
|
|
452
528
|
|
|
453
|
-
#: templates/umap/search.html:
|
|
529
|
+
#: templates/umap/search.html:15
|
|
454
530
|
#, python-format
|
|
455
531
|
msgid "%(count)s map found:"
|
|
456
532
|
msgid_plural "%(count)s maps found:"
|
|
457
533
|
msgstr[0] "%(count)s karta hittades:"
|
|
458
534
|
msgstr[1] "%(count)s kartor hittades:"
|
|
459
535
|
|
|
460
|
-
#: templates/umap/search.html:
|
|
536
|
+
#: templates/umap/search.html:24
|
|
461
537
|
msgid "No map found."
|
|
462
538
|
msgstr "Ingen karta hittades. "
|
|
463
539
|
|
|
464
|
-
#: templates/umap/search.html:
|
|
540
|
+
#: templates/umap/search.html:29
|
|
465
541
|
msgid "Latest created maps"
|
|
466
542
|
msgstr "Senast skapade kartor "
|
|
467
543
|
|
|
468
|
-
#: templates/umap/search_bar.html:
|
|
544
|
+
#: templates/umap/search_bar.html:4
|
|
469
545
|
msgid "Search maps"
|
|
470
546
|
msgstr "Sök karta"
|
|
471
547
|
|
|
472
|
-
#: templates/umap/search_bar.html:
|
|
548
|
+
#: templates/umap/search_bar.html:15
|
|
473
549
|
msgid "Search"
|
|
474
550
|
msgstr "Sök"
|
|
475
551
|
|
|
476
|
-
#: templates/umap/
|
|
477
|
-
|
|
478
|
-
|
|
552
|
+
#: templates/umap/team_detail.html:10
|
|
553
|
+
#, python-format
|
|
554
|
+
msgid "Browse %(current_team)s's maps"
|
|
555
|
+
msgstr ""
|
|
479
556
|
|
|
480
|
-
#: templates/umap/
|
|
557
|
+
#: templates/umap/team_detail.html:22
|
|
481
558
|
#, python-format
|
|
482
|
-
msgid "
|
|
559
|
+
msgid "%(current_team)s has no public maps."
|
|
483
560
|
msgstr ""
|
|
484
561
|
|
|
485
|
-
#: templates/umap/
|
|
486
|
-
msgid "
|
|
562
|
+
#: templates/umap/team_form.html:24
|
|
563
|
+
msgid "Delete this team"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#: templates/umap/team_form.html:47
|
|
567
|
+
msgid "Add user"
|
|
487
568
|
msgstr ""
|
|
488
569
|
|
|
489
|
-
#: templates/umap/user_dashboard.html:
|
|
570
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
571
|
+
msgid "Search my maps"
|
|
572
|
+
msgstr "Sök i mina kartor"
|
|
573
|
+
|
|
574
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
490
575
|
msgid "Map’s title"
|
|
491
576
|
msgstr ""
|
|
492
577
|
|
|
493
|
-
#: templates/umap/user_dashboard.html:
|
|
578
|
+
#: templates/umap/user_dashboard.html:30
|
|
494
579
|
#, python-format
|
|
495
580
|
msgid "Download %(count)s maps"
|
|
496
581
|
msgstr ""
|
|
497
582
|
|
|
498
|
-
#: templates/umap/user_dashboard.html:
|
|
583
|
+
#: templates/umap/user_dashboard.html:40
|
|
499
584
|
msgid "You have no map yet."
|
|
500
585
|
msgstr "Du har ingen karta än. "
|
|
501
586
|
|
|
502
|
-
#:
|
|
587
|
+
#: templates/umap/user_teams.html:17
|
|
588
|
+
msgid "Users"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: templates/umap/user_teams.html:48
|
|
592
|
+
msgid "New team"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: views.py:235
|
|
596
|
+
msgid "Cannot delete a team with more than one member"
|
|
597
|
+
msgstr ""
|
|
598
|
+
|
|
599
|
+
#: views.py:239
|
|
600
|
+
#, python-format
|
|
601
|
+
msgid "Team “%(name)s” has been deleted"
|
|
602
|
+
msgstr ""
|
|
603
|
+
|
|
604
|
+
#: views.py:438
|
|
503
605
|
msgid "View the map"
|
|
504
606
|
msgstr "Se kartan"
|
|
505
607
|
|
|
506
|
-
#: views.py:
|
|
608
|
+
#: views.py:824
|
|
507
609
|
msgid "See full screen"
|
|
508
610
|
msgstr ""
|
|
509
611
|
|
|
510
|
-
#: views.py:
|
|
612
|
+
#: views.py:953
|
|
511
613
|
msgid "Map editors updated with success!"
|
|
512
614
|
msgstr "Kartans redaktörer har uppdaterats!"
|
|
513
615
|
|
|
514
|
-
#: views.py:
|
|
616
|
+
#: views.py:989
|
|
515
617
|
#, python-format
|
|
516
618
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
517
619
|
msgstr "Redigeringslänken för din uMap-karta: %(map_name)s"
|
|
518
620
|
|
|
519
|
-
#: views.py:
|
|
621
|
+
#: views.py:992
|
|
520
622
|
#, python-format
|
|
521
623
|
msgid "Here is your secret edit link: %(link)s"
|
|
522
624
|
msgstr "Här är din hemliga redigeringslänk: %(link)s"
|
|
523
625
|
|
|
524
|
-
#: views.py:
|
|
626
|
+
#: views.py:999
|
|
627
|
+
#, python-format
|
|
628
|
+
msgid "Can't send email to %(email)s"
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
#: views.py:1002
|
|
525
632
|
#, python-format
|
|
526
633
|
msgid "Email sent to %(email)s"
|
|
527
634
|
msgstr "Ett mejl har skickats till %(email)s"
|
|
528
635
|
|
|
529
|
-
#: views.py:
|
|
636
|
+
#: views.py:1013
|
|
530
637
|
msgid "Only its owner can delete the map."
|
|
531
638
|
msgstr "Bara ägaren kan radera kartan."
|
|
532
639
|
|
|
533
|
-
#: views.py:
|
|
640
|
+
#: views.py:1016
|
|
641
|
+
msgid "Map successfully deleted."
|
|
642
|
+
msgstr ""
|
|
643
|
+
|
|
644
|
+
#: views.py:1042
|
|
534
645
|
#, python-format
|
|
535
646
|
msgid ""
|
|
536
647
|
"Your map has been cloned! If you want to edit this map from another "
|
|
537
648
|
"computer, please use this link: %(anonymous_url)s"
|
|
538
649
|
msgstr "Din karta har kopierats! Om du vill redigera den här kartan från en annan dator, använd denna länk: %(anonymous_url)s"
|
|
539
650
|
|
|
540
|
-
#: views.py:
|
|
651
|
+
#: views.py:1047
|
|
541
652
|
msgid "Congratulations, your map has been cloned!"
|
|
542
653
|
msgstr "Grattis, din karta har kopierats!"
|
|
543
654
|
|
|
544
|
-
#: views.py:
|
|
655
|
+
#: views.py:1282
|
|
545
656
|
msgid "Layer successfully deleted."
|
|
546
657
|
msgstr "Lagret har raderats."
|
|
547
658
|
|
|
548
|
-
#: views.py:
|
|
659
|
+
#: views.py:1304
|
|
549
660
|
msgid "Permissions updated with success!"
|
|
550
661
|
msgstr ""
|