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
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2024-
|
|
13
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2024\n"
|
|
16
16
|
"Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
|
|
@@ -28,7 +28,7 @@ msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
|
|
|
28
28
|
msgid "Everyone can edit"
|
|
29
29
|
msgstr "An holl a c'hall kemmañ"
|
|
30
30
|
|
|
31
|
-
#: forms.py:69 models.py:
|
|
31
|
+
#: forms.py:69 models.py:423
|
|
32
32
|
msgid "Inherit"
|
|
33
33
|
msgstr "Dre ziouer"
|
|
34
34
|
|
|
@@ -36,242 +36,284 @@ msgstr "Dre ziouer"
|
|
|
36
36
|
msgid "Site is readonly for maintenance"
|
|
37
37
|
msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
|
|
38
38
|
|
|
39
|
-
#: models.py:
|
|
39
|
+
#: models.py:54 models.py:73
|
|
40
40
|
msgid "name"
|
|
41
41
|
msgstr "anv"
|
|
42
42
|
|
|
43
|
-
#: models.py:
|
|
43
|
+
#: models.py:56 models.py:433
|
|
44
|
+
msgid "description"
|
|
45
|
+
msgstr "deskrivadur"
|
|
46
|
+
|
|
47
|
+
#: models.py:104
|
|
44
48
|
msgid "details"
|
|
45
49
|
msgstr "munudoù"
|
|
46
50
|
|
|
47
|
-
#: models.py:
|
|
51
|
+
#: models.py:105
|
|
48
52
|
msgid "Link to a page where the licence is detailed."
|
|
49
53
|
msgstr "Liamm war-zu ur bajenn a zispleg an aotre-implijout."
|
|
50
54
|
|
|
51
|
-
#: models.py:
|
|
55
|
+
#: models.py:115
|
|
52
56
|
msgid "URL template using OSM tile format"
|
|
53
57
|
msgstr "Patrom URL a implij furmad teol OSM"
|
|
54
58
|
|
|
55
|
-
#: models.py:
|
|
59
|
+
#: models.py:121
|
|
56
60
|
msgid "Order of the tilelayers in the edit box"
|
|
57
61
|
msgstr ""
|
|
58
62
|
|
|
59
|
-
#: models.py:
|
|
63
|
+
#: models.py:167 models.py:424
|
|
60
64
|
msgid "Everyone"
|
|
61
65
|
msgstr "An holl"
|
|
62
66
|
|
|
63
|
-
#: models.py:
|
|
64
|
-
msgid "Editors only"
|
|
65
|
-
msgstr "
|
|
67
|
+
#: models.py:168 models.py:174 models.py:425
|
|
68
|
+
msgid "Editors and team only"
|
|
69
|
+
msgstr ""
|
|
66
70
|
|
|
67
|
-
#: models.py:
|
|
71
|
+
#: models.py:169 models.py:426
|
|
68
72
|
msgid "Owner only"
|
|
69
73
|
msgstr "Ar perc'henner hepken"
|
|
70
74
|
|
|
71
|
-
#: models.py:
|
|
75
|
+
#: models.py:172
|
|
72
76
|
msgid "Everyone (public)"
|
|
73
77
|
msgstr "An holl (publik)"
|
|
74
78
|
|
|
75
|
-
#: models.py:
|
|
79
|
+
#: models.py:173
|
|
76
80
|
msgid "Anyone with link"
|
|
77
81
|
msgstr "Piv bennak en deus ul liamm"
|
|
78
82
|
|
|
79
|
-
#: models.py:
|
|
83
|
+
#: models.py:175
|
|
80
84
|
msgid "Blocked"
|
|
81
85
|
msgstr "Stanket"
|
|
82
86
|
|
|
83
|
-
#: models.py:
|
|
84
|
-
msgid "description"
|
|
85
|
-
msgstr "deskrivadur"
|
|
86
|
-
|
|
87
|
-
#: models.py:158
|
|
87
|
+
#: models.py:178
|
|
88
88
|
msgid "center"
|
|
89
89
|
msgstr "kreizañ"
|
|
90
90
|
|
|
91
|
-
#: models.py:
|
|
91
|
+
#: models.py:179
|
|
92
92
|
msgid "zoom"
|
|
93
93
|
msgstr "zoumañ"
|
|
94
94
|
|
|
95
|
-
#: models.py:
|
|
95
|
+
#: models.py:181
|
|
96
96
|
msgid "locate"
|
|
97
97
|
msgstr "lec'hiañ"
|
|
98
98
|
|
|
99
|
-
#: models.py:
|
|
99
|
+
#: models.py:181
|
|
100
100
|
msgid "Locate user on load?"
|
|
101
101
|
msgstr "Lec'hiañ an implijer en ur gargañ?"
|
|
102
102
|
|
|
103
|
-
#: models.py:
|
|
103
|
+
#: models.py:185
|
|
104
104
|
msgid "Choose the map licence."
|
|
105
105
|
msgstr "Dibabit aotre-implijout ar gartenn."
|
|
106
106
|
|
|
107
|
-
#: models.py:
|
|
107
|
+
#: models.py:186
|
|
108
108
|
msgid "licence"
|
|
109
109
|
msgstr "aotre"
|
|
110
110
|
|
|
111
|
-
#: models.py:
|
|
111
|
+
#: models.py:197
|
|
112
112
|
msgid "owner"
|
|
113
113
|
msgstr "perc'henner"
|
|
114
114
|
|
|
115
|
-
#: models.py:
|
|
115
|
+
#: models.py:201
|
|
116
116
|
msgid "editors"
|
|
117
117
|
msgstr "aozerien"
|
|
118
118
|
|
|
119
|
-
#: models.py:
|
|
119
|
+
#: models.py:207
|
|
120
|
+
msgid "team"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
123
|
+
#: models.py:213 models.py:447
|
|
120
124
|
msgid "edit status"
|
|
121
125
|
msgstr "statud aozañ"
|
|
122
126
|
|
|
123
|
-
#: models.py:
|
|
127
|
+
#: models.py:218
|
|
124
128
|
msgid "share status"
|
|
125
129
|
msgstr "digor da biv?"
|
|
126
130
|
|
|
127
|
-
#: models.py:
|
|
131
|
+
#: models.py:221 models.py:442
|
|
128
132
|
msgid "settings"
|
|
129
133
|
msgstr "arventennoù"
|
|
130
134
|
|
|
131
|
-
#: models.py:
|
|
135
|
+
#: models.py:364
|
|
132
136
|
msgid "Clone of"
|
|
133
137
|
msgstr "Eilenn eus"
|
|
134
138
|
|
|
135
|
-
#: models.py:
|
|
139
|
+
#: models.py:437
|
|
136
140
|
msgid "display on load"
|
|
137
141
|
msgstr "diskwel pa vez karget"
|
|
138
142
|
|
|
139
|
-
#: models.py:
|
|
143
|
+
#: models.py:438
|
|
140
144
|
msgid "Display this layer on load."
|
|
141
145
|
msgstr "Diskwel ar gwiskad-mañ pa vez karget"
|
|
142
146
|
|
|
143
|
-
#: templates/404.html:
|
|
147
|
+
#: templates/404.html:8
|
|
144
148
|
msgid "Take me to the home page"
|
|
145
149
|
msgstr "Distreiñ d'ar bajenn degemer"
|
|
146
150
|
|
|
147
|
-
#: templates/auth/user_detail.html:
|
|
151
|
+
#: templates/auth/user_detail.html:8
|
|
148
152
|
#, python-format
|
|
149
153
|
msgid "Browse %(current_user)s's maps"
|
|
150
154
|
msgstr "Merdeiñ e kartennoù %(current_user)s"
|
|
151
155
|
|
|
152
|
-
#: templates/auth/user_detail.html:
|
|
156
|
+
#: templates/auth/user_detail.html:17
|
|
153
157
|
#, python-format
|
|
154
158
|
msgid "%(current_user)s has no maps."
|
|
155
159
|
msgstr "%(current_user)s n'en/he deus kartenn ebet."
|
|
156
160
|
|
|
157
|
-
#: templates/auth/user_form.html:
|
|
158
|
-
msgid "My Maps"
|
|
159
|
-
msgstr "Ma c'hartennoù"
|
|
160
|
-
|
|
161
|
-
#: templates/auth/user_form.html:7
|
|
162
|
-
msgid "My Profile"
|
|
163
|
-
msgstr "Ma frofil"
|
|
164
|
-
|
|
165
|
-
#: templates/auth/user_form.html:20
|
|
161
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
166
162
|
msgid "Save"
|
|
167
163
|
msgstr "Enrollañ"
|
|
168
164
|
|
|
169
|
-
#: templates/auth/user_form.html:
|
|
165
|
+
#: templates/auth/user_form.html:27
|
|
170
166
|
msgid "Your current providers"
|
|
171
167
|
msgstr "Ho pourchaserien a-vremañ"
|
|
172
168
|
|
|
173
|
-
#: templates/auth/user_form.html:
|
|
169
|
+
#: templates/auth/user_form.html:39
|
|
174
170
|
msgid "Connect to another provider"
|
|
175
171
|
msgstr "Kennaskañ ouzh ur pourchaser all"
|
|
176
172
|
|
|
177
|
-
#: templates/auth/user_form.html:
|
|
173
|
+
#: templates/auth/user_form.html:42
|
|
178
174
|
msgid ""
|
|
179
175
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
180
176
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
181
177
|
msgstr ""
|
|
182
178
|
|
|
183
|
-
#: templates/auth/user_stars.html:
|
|
179
|
+
#: templates/auth/user_stars.html:8
|
|
184
180
|
#, python-format
|
|
185
181
|
msgid "Browse %(current_user)s's starred maps"
|
|
186
182
|
msgstr "Merdeiñ e kartennoù spilhennet %(current_user)s"
|
|
187
183
|
|
|
188
|
-
#: templates/auth/user_stars.html:
|
|
184
|
+
#: templates/auth/user_stars.html:17
|
|
189
185
|
#, python-format
|
|
190
186
|
msgid "%(current_user)s has no starred maps yet."
|
|
191
187
|
msgstr "%(current_user)s n'en/he deus kartenn spilhennet ebet."
|
|
192
188
|
|
|
193
|
-
#: templates/base.html:
|
|
189
|
+
#: templates/base.html:13
|
|
194
190
|
msgid ""
|
|
195
191
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
196
192
|
"them in your site."
|
|
197
193
|
msgstr "uMap a ro tro deoc'h da grouiñ kartennoù en ur serr-lagad gant foñsoù OpenStreetMap ha d'o enframmañ e-barzh ho lec'hienn."
|
|
198
194
|
|
|
199
|
-
#: templates/registration/login.html:
|
|
195
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
196
|
+
msgid "Login"
|
|
197
|
+
msgstr "Kevreañ"
|
|
198
|
+
|
|
199
|
+
#: templates/registration/login.html:24
|
|
200
200
|
msgid "Please log in with your account"
|
|
201
201
|
msgstr "Kevreit gant ho kont mar plij"
|
|
202
202
|
|
|
203
|
-
#: templates/registration/login.html:
|
|
203
|
+
#: templates/registration/login.html:41
|
|
204
204
|
msgid "Username"
|
|
205
205
|
msgstr "Anv implijer"
|
|
206
206
|
|
|
207
|
-
#: templates/registration/login.html:
|
|
207
|
+
#: templates/registration/login.html:44
|
|
208
208
|
msgid "Password"
|
|
209
209
|
msgstr "Ger-tremen"
|
|
210
210
|
|
|
211
|
-
#: templates/registration/login.html:
|
|
212
|
-
msgid "Login"
|
|
213
|
-
msgstr "Kevreañ"
|
|
214
|
-
|
|
215
|
-
#: templates/registration/login.html:37
|
|
211
|
+
#: templates/registration/login.html:51
|
|
216
212
|
msgid "Please choose a provider"
|
|
217
213
|
msgstr "Dibabit ur pourchaser mar plij"
|
|
218
214
|
|
|
219
|
-
#: templates/umap/about_summary.html:
|
|
215
|
+
#: templates/umap/about_summary.html:12
|
|
220
216
|
#, python-format
|
|
221
217
|
msgid ""
|
|
222
218
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
223
219
|
"layers in a minute and embed them in your site."
|
|
224
220
|
msgstr "uMap a ro tro deoc'h da grouiñ kartennoù en ur serr-lagad gant foñsoù <a href=\"%(osm_url)s\" />OpenStreetMap</a> ha d'o enframmañ e-barzh ho lec'hienn."
|
|
225
221
|
|
|
226
|
-
#: templates/umap/about_summary.html:
|
|
222
|
+
#: templates/umap/about_summary.html:23
|
|
227
223
|
msgid "Choose the layers of your map"
|
|
228
224
|
msgstr "Dibab ar gwiskadoù evit ho kartenn"
|
|
229
225
|
|
|
230
|
-
#: templates/umap/about_summary.html:
|
|
226
|
+
#: templates/umap/about_summary.html:26
|
|
231
227
|
msgid "Add POIs: markers, lines, polygons..."
|
|
232
228
|
msgstr "Ouzhpennañ \"poentoù heverk\": balizennoù, linennoù, lieskornoù..."
|
|
233
229
|
|
|
234
|
-
#: templates/umap/about_summary.html:
|
|
230
|
+
#: templates/umap/about_summary.html:29
|
|
235
231
|
msgid "Manage POIs colours and icons"
|
|
236
232
|
msgstr "Dibab livioù hag ikonoù ar poentoù heverk"
|
|
237
233
|
|
|
238
|
-
#: templates/umap/about_summary.html:
|
|
234
|
+
#: templates/umap/about_summary.html:32
|
|
239
235
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
240
236
|
msgstr "Merañ dibarzhioù ar gartenn: diskwel ar gartennig, lec'hiañ an implijer..."
|
|
241
237
|
|
|
242
|
-
#: templates/umap/about_summary.html:
|
|
238
|
+
#: templates/umap/about_summary.html:35
|
|
243
239
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
244
240
|
msgstr "Enporzhiañ roadennoù geografek a-vern (geojson, gpx, kml, osm...)"
|
|
245
241
|
|
|
246
|
-
#: templates/umap/about_summary.html:
|
|
242
|
+
#: templates/umap/about_summary.html:38
|
|
247
243
|
msgid "Choose the license for your data"
|
|
248
244
|
msgstr "Dibab aotre-implijout ho roadennoù"
|
|
249
245
|
|
|
250
|
-
#: templates/umap/about_summary.html:
|
|
246
|
+
#: templates/umap/about_summary.html:41
|
|
251
247
|
msgid "Embed and share your map"
|
|
252
248
|
msgstr "Enframmañ ha rannañ ho kartenn"
|
|
253
249
|
|
|
254
|
-
#: templates/umap/about_summary.html:
|
|
250
|
+
#: templates/umap/about_summary.html:52
|
|
255
251
|
#, python-format
|
|
256
252
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
257
253
|
msgstr "Hag <a href=\"%(repo_url)s\">open source</a> eo!"
|
|
258
254
|
|
|
259
|
-
#: templates/umap/about_summary.html:
|
|
260
|
-
#: templates/umap/user_dashboard.html:
|
|
255
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
256
|
+
#: templates/umap/user_dashboard.html:40
|
|
261
257
|
msgid "Create a map"
|
|
262
258
|
msgstr "Krouiñ ur gartenn"
|
|
263
259
|
|
|
264
|
-
#: templates/umap/about_summary.html:
|
|
260
|
+
#: templates/umap/about_summary.html:66
|
|
265
261
|
msgid "Play with the demo"
|
|
266
262
|
msgstr "Amprouiñ an tañva!"
|
|
267
263
|
|
|
268
|
-
#: templates/umap/
|
|
264
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
265
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
266
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
267
|
+
msgid "Close"
|
|
268
|
+
msgstr "Serriñ"
|
|
269
|
+
|
|
270
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
271
|
+
#, python-format
|
|
272
|
+
msgid ""
|
|
273
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
274
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
275
|
+
"target=\"_blank\">log in</a>."
|
|
276
|
+
msgstr ""
|
|
277
|
+
|
|
278
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
279
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
280
|
+
msgstr ""
|
|
281
|
+
|
|
282
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
283
|
+
msgid "Copy link"
|
|
284
|
+
msgstr "Eilañ al liamm"
|
|
285
|
+
|
|
286
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
287
|
+
msgid "Enter your email address to receive the secret link:"
|
|
288
|
+
msgstr ""
|
|
289
|
+
|
|
290
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
291
|
+
msgid "Email"
|
|
292
|
+
msgstr "Postel"
|
|
293
|
+
|
|
294
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
295
|
+
msgid "Send me the link"
|
|
296
|
+
msgstr "Kas al liamm din"
|
|
297
|
+
|
|
298
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
299
|
+
msgid "See their edits in another tab"
|
|
300
|
+
msgstr ""
|
|
301
|
+
|
|
302
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
303
|
+
msgid "Keep your changes and loose theirs"
|
|
304
|
+
msgstr "Derc'hel ho kemmoù hag argas o re"
|
|
305
|
+
|
|
306
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
307
|
+
msgid "Keep their changes and loose yours"
|
|
308
|
+
msgstr "Derc'hel o c'hemmoù hag argas ho re"
|
|
309
|
+
|
|
310
|
+
#: templates/umap/content.html:26
|
|
269
311
|
msgid ""
|
|
270
312
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
271
313
|
"allowed."
|
|
272
314
|
msgstr "uMap zo da lenn hepken evit ar mare, n'haller ket krouiñ/aozañ."
|
|
273
315
|
|
|
274
|
-
#: templates/umap/content.html:
|
|
316
|
+
#: templates/umap/content.html:34
|
|
275
317
|
#, python-format
|
|
276
318
|
msgid ""
|
|
277
319
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -280,176 +322,210 @@ msgid ""
|
|
|
280
322
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
281
323
|
msgstr ""
|
|
282
324
|
|
|
283
|
-
#: templates/umap/
|
|
325
|
+
#: templates/umap/content_footer.html:5
|
|
326
|
+
msgid "An OpenStreetMap project"
|
|
327
|
+
msgstr ""
|
|
328
|
+
|
|
329
|
+
#: templates/umap/content_footer.html:6
|
|
330
|
+
msgid "version"
|
|
331
|
+
msgstr ""
|
|
332
|
+
|
|
333
|
+
#: templates/umap/content_footer.html:7
|
|
334
|
+
msgid "Hosted by"
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
#: templates/umap/content_footer.html:8
|
|
338
|
+
msgid "Contact"
|
|
339
|
+
msgstr ""
|
|
340
|
+
|
|
341
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
342
|
+
msgid "Help"
|
|
343
|
+
msgstr "Skoazell"
|
|
344
|
+
|
|
345
|
+
#: templates/umap/dashboard_menu.html:6
|
|
346
|
+
#, python-format
|
|
347
|
+
msgid "My Maps (%(count)s)"
|
|
348
|
+
msgstr "Ma c'hartennoù (%(count)s)"
|
|
349
|
+
|
|
350
|
+
#: templates/umap/dashboard_menu.html:8
|
|
351
|
+
msgid "My Maps"
|
|
352
|
+
msgstr "Ma c'hartennoù"
|
|
353
|
+
|
|
354
|
+
#: templates/umap/dashboard_menu.html:11
|
|
355
|
+
msgid "My profile"
|
|
356
|
+
msgstr "Ma frofil"
|
|
357
|
+
|
|
358
|
+
#: templates/umap/dashboard_menu.html:13
|
|
359
|
+
msgid "My teams"
|
|
360
|
+
msgstr ""
|
|
361
|
+
|
|
362
|
+
#: templates/umap/home.html:14
|
|
284
363
|
msgid "Map of the uMaps"
|
|
285
364
|
msgstr "Kartenn an uMapoù"
|
|
286
365
|
|
|
287
|
-
#: templates/umap/home.html:
|
|
366
|
+
#: templates/umap/home.html:24
|
|
288
367
|
msgid "Get inspired, browse maps"
|
|
289
368
|
msgstr "Bezit awenet en ur furchal kartennoù"
|
|
290
369
|
|
|
291
|
-
#: templates/umap/login_popup_end.html:
|
|
370
|
+
#: templates/umap/login_popup_end.html:4
|
|
292
371
|
msgid "You are logged in. Continuing..."
|
|
293
372
|
msgstr "Kevreet oc'h. Gortozit ur pennadig..."
|
|
294
373
|
|
|
295
|
-
#: templates/umap/map_list.html:
|
|
374
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
296
375
|
msgid "by"
|
|
297
376
|
msgstr "gant"
|
|
298
377
|
|
|
299
|
-
#: templates/umap/map_list.html:
|
|
378
|
+
#: templates/umap/map_list.html:18
|
|
300
379
|
msgid "More"
|
|
301
380
|
msgstr "Muioc'h"
|
|
302
381
|
|
|
303
|
-
#: templates/umap/map_table.html:
|
|
382
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
304
383
|
msgid "Name"
|
|
305
384
|
msgstr "Anv"
|
|
306
385
|
|
|
307
|
-
#: templates/umap/map_table.html:
|
|
386
|
+
#: templates/umap/map_table.html:11
|
|
308
387
|
msgid "Preview"
|
|
309
388
|
msgstr "Rakwel"
|
|
310
389
|
|
|
311
|
-
#: templates/umap/map_table.html:
|
|
390
|
+
#: templates/umap/map_table.html:14
|
|
312
391
|
msgid "Who can see"
|
|
313
392
|
msgstr "Piv a c'hall gwelet"
|
|
314
393
|
|
|
315
|
-
#: templates/umap/map_table.html:
|
|
394
|
+
#: templates/umap/map_table.html:17
|
|
316
395
|
msgid "Who can edit"
|
|
317
396
|
msgstr "Piv a c'hall kemmañ"
|
|
318
397
|
|
|
319
|
-
#: templates/umap/map_table.html:
|
|
398
|
+
#: templates/umap/map_table.html:20
|
|
320
399
|
msgid "Last save"
|
|
321
400
|
msgstr "Enrollet da ziwezhañ"
|
|
322
401
|
|
|
323
|
-
#: templates/umap/map_table.html:
|
|
402
|
+
#: templates/umap/map_table.html:23
|
|
324
403
|
msgid "Owner"
|
|
325
404
|
msgstr "Perc'henner"
|
|
326
405
|
|
|
327
|
-
#: templates/umap/map_table.html:
|
|
406
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
328
407
|
msgid "Actions"
|
|
329
408
|
msgstr "Oberoù"
|
|
330
409
|
|
|
331
|
-
#: templates/umap/map_table.html:
|
|
410
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
332
411
|
msgid "Open preview"
|
|
333
412
|
msgstr "Digeriñ ar rakwel"
|
|
334
413
|
|
|
335
|
-
#: templates/umap/map_table.html:
|
|
414
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
336
415
|
msgid "Share"
|
|
337
416
|
msgstr "Rannañ"
|
|
338
417
|
|
|
339
|
-
#: templates/umap/map_table.html:
|
|
418
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
419
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
340
420
|
msgid "Edit"
|
|
341
421
|
msgstr "Aozañ"
|
|
342
422
|
|
|
343
|
-
#: templates/umap/map_table.html:
|
|
423
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
344
424
|
msgid "Download"
|
|
345
425
|
msgstr "Pellgargañ"
|
|
346
426
|
|
|
347
|
-
#: templates/umap/map_table.html:
|
|
427
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
348
428
|
msgid "Clone"
|
|
349
429
|
msgstr "Doublañ"
|
|
350
430
|
|
|
351
|
-
#: templates/umap/map_table.html:
|
|
431
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
352
432
|
msgid "Delete"
|
|
353
433
|
msgstr "Dilemel"
|
|
354
434
|
|
|
355
|
-
#: templates/umap/map_table.html:
|
|
435
|
+
#: templates/umap/map_table.html:117
|
|
356
436
|
msgid "first"
|
|
357
437
|
msgstr "kentañ"
|
|
358
438
|
|
|
359
|
-
#: templates/umap/map_table.html:
|
|
439
|
+
#: templates/umap/map_table.html:118
|
|
360
440
|
msgid "previous"
|
|
361
441
|
msgstr "kent"
|
|
362
442
|
|
|
363
|
-
#: templates/umap/map_table.html:
|
|
443
|
+
#: templates/umap/map_table.html:126
|
|
364
444
|
#, python-format
|
|
365
445
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
366
446
|
msgstr "Pajenn %(maps_number)s diwar %(num_pages)s"
|
|
367
447
|
|
|
368
|
-
#: templates/umap/map_table.html:
|
|
448
|
+
#: templates/umap/map_table.html:131
|
|
369
449
|
msgid "next"
|
|
370
450
|
msgstr "war-lerc'h"
|
|
371
451
|
|
|
372
|
-
#: templates/umap/map_table.html:
|
|
452
|
+
#: templates/umap/map_table.html:132
|
|
373
453
|
msgid "last"
|
|
374
454
|
msgstr "diwezhañ"
|
|
375
455
|
|
|
376
|
-
#: templates/umap/map_table.html:
|
|
456
|
+
#: templates/umap/map_table.html:140
|
|
377
457
|
#, python-format
|
|
378
458
|
msgid "Lines per page: %(per_page)s"
|
|
379
459
|
msgstr "Linennoù dre bajenn: %(per_page)s"
|
|
380
460
|
|
|
381
|
-
#: templates/umap/map_table.html:
|
|
461
|
+
#: templates/umap/map_table.html:145
|
|
382
462
|
#, python-format
|
|
383
463
|
msgid "%(count)s maps"
|
|
384
464
|
msgstr "%(count)s a gartennoù"
|
|
385
465
|
|
|
386
|
-
#: templates/umap/navigation.html:
|
|
466
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
387
467
|
msgid "My Dashboard"
|
|
388
468
|
msgstr "Ma zaolenn-vourzh"
|
|
389
469
|
|
|
390
|
-
#: templates/umap/navigation.html:
|
|
470
|
+
#: templates/umap/navigation.html:14
|
|
391
471
|
msgid "Starred maps"
|
|
392
472
|
msgstr "Kartennoù spilhennet"
|
|
393
473
|
|
|
394
|
-
#: templates/umap/navigation.html:
|
|
474
|
+
#: templates/umap/navigation.html:18
|
|
395
475
|
msgid "Log in"
|
|
396
476
|
msgstr "Kevreañ"
|
|
397
477
|
|
|
398
|
-
#: templates/umap/navigation.html:
|
|
478
|
+
#: templates/umap/navigation.html:18
|
|
399
479
|
msgid "Sign in"
|
|
400
480
|
msgstr "Krouiñ ur gont"
|
|
401
481
|
|
|
402
|
-
#: templates/umap/navigation.html:
|
|
482
|
+
#: templates/umap/navigation.html:22
|
|
403
483
|
msgid "About"
|
|
404
484
|
msgstr "Diwar-benn"
|
|
405
485
|
|
|
406
|
-
#: templates/umap/navigation.html:
|
|
407
|
-
msgid "Help"
|
|
408
|
-
msgstr "Skoazell"
|
|
409
|
-
|
|
410
|
-
#: templates/umap/navigation.html:29
|
|
486
|
+
#: templates/umap/navigation.html:30
|
|
411
487
|
msgid "Change password"
|
|
412
488
|
msgstr "Cheñch ar ger-tremen"
|
|
413
489
|
|
|
414
|
-
#: templates/umap/navigation.html:
|
|
490
|
+
#: templates/umap/navigation.html:34
|
|
415
491
|
msgid "Log out"
|
|
416
492
|
msgstr "Digevreañ"
|
|
417
493
|
|
|
418
|
-
#: templates/umap/password_change.html:
|
|
494
|
+
#: templates/umap/password_change.html:7
|
|
419
495
|
msgid "Password change"
|
|
420
496
|
msgstr "Cheñch ar ger-tremen"
|
|
421
497
|
|
|
422
|
-
#: templates/umap/password_change.html:
|
|
498
|
+
#: templates/umap/password_change.html:10
|
|
423
499
|
msgid ""
|
|
424
500
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
425
501
|
" password twice so we can verify you typed it in correctly."
|
|
426
502
|
msgstr "Enankit ho ker-tremen kozh ha div wezh ho ker-tremen nevez war-lerc'h mar plij."
|
|
427
503
|
|
|
428
|
-
#: templates/umap/password_change.html:
|
|
504
|
+
#: templates/umap/password_change.html:17
|
|
429
505
|
msgid "Old password"
|
|
430
506
|
msgstr "Ger-tremen kozh"
|
|
431
507
|
|
|
432
|
-
#: templates/umap/password_change.html:
|
|
508
|
+
#: templates/umap/password_change.html:22
|
|
433
509
|
msgid "New password"
|
|
434
510
|
msgstr "Ger-tremen nevez"
|
|
435
511
|
|
|
436
|
-
#: templates/umap/password_change.html:
|
|
512
|
+
#: templates/umap/password_change.html:26
|
|
437
513
|
msgid "New password confirmation"
|
|
438
514
|
msgstr "Kadarnaat ar ger-tremen nevez"
|
|
439
515
|
|
|
440
|
-
#: templates/umap/password_change.html:
|
|
516
|
+
#: templates/umap/password_change.html:27
|
|
441
517
|
msgid "Change my password"
|
|
442
518
|
msgstr "Cheñch ar ger-tremen"
|
|
443
519
|
|
|
444
|
-
#: templates/umap/password_change_done.html:
|
|
520
|
+
#: templates/umap/password_change_done.html:7
|
|
445
521
|
msgid "Password change successful"
|
|
446
522
|
msgstr "Cheñchet eo bet ar ger-tremen gant berzh"
|
|
447
523
|
|
|
448
|
-
#: templates/umap/password_change_done.html:
|
|
524
|
+
#: templates/umap/password_change_done.html:10
|
|
449
525
|
msgid "Your password was changed."
|
|
450
526
|
msgstr "Cheñchet eo bet ho ker-tremen."
|
|
451
527
|
|
|
452
|
-
#: templates/umap/search.html:
|
|
528
|
+
#: templates/umap/search.html:15
|
|
453
529
|
#, python-format
|
|
454
530
|
msgid "%(count)s map found:"
|
|
455
531
|
msgid_plural "%(count)s maps found:"
|
|
@@ -459,99 +535,129 @@ msgstr[2] "%(count)s c'hartenn kavet :"
|
|
|
459
535
|
msgstr[3] "%(count)s kartenn kavet :"
|
|
460
536
|
msgstr[4] "%(count)s kartenn kavet :"
|
|
461
537
|
|
|
462
|
-
#: templates/umap/search.html:
|
|
538
|
+
#: templates/umap/search.html:24
|
|
463
539
|
msgid "No map found."
|
|
464
540
|
msgstr "Kartenn ebet kavet."
|
|
465
541
|
|
|
466
|
-
#: templates/umap/search.html:
|
|
542
|
+
#: templates/umap/search.html:29
|
|
467
543
|
msgid "Latest created maps"
|
|
468
544
|
msgstr "Kartennoù krouet da ziwezhañ"
|
|
469
545
|
|
|
470
|
-
#: templates/umap/search_bar.html:
|
|
546
|
+
#: templates/umap/search_bar.html:4
|
|
471
547
|
msgid "Search maps"
|
|
472
548
|
msgstr "Klask kartennoù"
|
|
473
549
|
|
|
474
|
-
#: templates/umap/search_bar.html:
|
|
550
|
+
#: templates/umap/search_bar.html:15
|
|
475
551
|
msgid "Search"
|
|
476
552
|
msgstr "Klask"
|
|
477
553
|
|
|
478
|
-
#: templates/umap/
|
|
479
|
-
|
|
480
|
-
|
|
554
|
+
#: templates/umap/team_detail.html:10
|
|
555
|
+
#, python-format
|
|
556
|
+
msgid "Browse %(current_team)s's maps"
|
|
557
|
+
msgstr ""
|
|
481
558
|
|
|
482
|
-
#: templates/umap/
|
|
559
|
+
#: templates/umap/team_detail.html:22
|
|
483
560
|
#, python-format
|
|
484
|
-
msgid "
|
|
485
|
-
msgstr "
|
|
561
|
+
msgid "%(current_team)s has no public maps."
|
|
562
|
+
msgstr ""
|
|
486
563
|
|
|
487
|
-
#: templates/umap/
|
|
488
|
-
msgid "
|
|
489
|
-
msgstr "
|
|
564
|
+
#: templates/umap/team_form.html:24
|
|
565
|
+
msgid "Delete this team"
|
|
566
|
+
msgstr ""
|
|
490
567
|
|
|
491
|
-
#: templates/umap/
|
|
568
|
+
#: templates/umap/team_form.html:47
|
|
569
|
+
msgid "Add user"
|
|
570
|
+
msgstr ""
|
|
571
|
+
|
|
572
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
573
|
+
msgid "Search my maps"
|
|
574
|
+
msgstr "Klask e-touez ma c'hartennoù"
|
|
575
|
+
|
|
576
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
492
577
|
msgid "Map’s title"
|
|
493
578
|
msgstr "Titl ar gartenn"
|
|
494
579
|
|
|
495
|
-
#: templates/umap/user_dashboard.html:
|
|
580
|
+
#: templates/umap/user_dashboard.html:30
|
|
496
581
|
#, python-format
|
|
497
582
|
msgid "Download %(count)s maps"
|
|
498
583
|
msgstr "Pellgargañ %(count)s a gartennoù"
|
|
499
584
|
|
|
500
|
-
#: templates/umap/user_dashboard.html:
|
|
585
|
+
#: templates/umap/user_dashboard.html:40
|
|
501
586
|
msgid "You have no map yet."
|
|
502
587
|
msgstr "N'ho peus kartenn ebet c'hoazh."
|
|
503
588
|
|
|
504
|
-
#:
|
|
589
|
+
#: templates/umap/user_teams.html:17
|
|
590
|
+
msgid "Users"
|
|
591
|
+
msgstr ""
|
|
592
|
+
|
|
593
|
+
#: templates/umap/user_teams.html:48
|
|
594
|
+
msgid "New team"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
#: views.py:235
|
|
598
|
+
msgid "Cannot delete a team with more than one member"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
#: views.py:239
|
|
602
|
+
#, python-format
|
|
603
|
+
msgid "Team “%(name)s” has been deleted"
|
|
604
|
+
msgstr ""
|
|
605
|
+
|
|
606
|
+
#: views.py:438
|
|
505
607
|
msgid "View the map"
|
|
506
608
|
msgstr "Diskouez ar gartenn"
|
|
507
609
|
|
|
508
|
-
#: views.py:
|
|
610
|
+
#: views.py:824
|
|
509
611
|
msgid "See full screen"
|
|
510
612
|
msgstr "Gwelet er mod skramm a-bezh"
|
|
511
613
|
|
|
512
|
-
#: views.py:
|
|
614
|
+
#: views.py:953
|
|
513
615
|
msgid "Map editors updated with success!"
|
|
514
616
|
msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
|
|
515
617
|
|
|
516
|
-
#: views.py:
|
|
618
|
+
#: views.py:989
|
|
517
619
|
#, python-format
|
|
518
620
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
519
621
|
msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
|
|
520
622
|
|
|
521
|
-
#: views.py:
|
|
623
|
+
#: views.py:992
|
|
522
624
|
#, python-format
|
|
523
625
|
msgid "Here is your secret edit link: %(link)s"
|
|
524
626
|
msgstr "Setu ho liamm aozañ kuzh: %(link)s"
|
|
525
627
|
|
|
526
|
-
#: views.py:
|
|
628
|
+
#: views.py:999
|
|
527
629
|
#, python-format
|
|
528
630
|
msgid "Can't send email to %(email)s"
|
|
529
631
|
msgstr "N'haller ket kas ur postel da %(email)s"
|
|
530
632
|
|
|
531
|
-
#: views.py:
|
|
633
|
+
#: views.py:1002
|
|
532
634
|
#, python-format
|
|
533
635
|
msgid "Email sent to %(email)s"
|
|
534
636
|
msgstr "Postel kaset da %(email)s"
|
|
535
637
|
|
|
536
|
-
#: views.py:
|
|
638
|
+
#: views.py:1013
|
|
537
639
|
msgid "Only its owner can delete the map."
|
|
538
640
|
msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
|
|
539
641
|
|
|
540
|
-
#: views.py:
|
|
642
|
+
#: views.py:1016
|
|
643
|
+
msgid "Map successfully deleted."
|
|
644
|
+
msgstr "Kartenn dilamet gant berzh."
|
|
645
|
+
|
|
646
|
+
#: views.py:1042
|
|
541
647
|
#, python-format
|
|
542
648
|
msgid ""
|
|
543
649
|
"Your map has been cloned! If you want to edit this map from another "
|
|
544
650
|
"computer, please use this link: %(anonymous_url)s"
|
|
545
651
|
msgstr "Doublet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
|
|
546
652
|
|
|
547
|
-
#: views.py:
|
|
653
|
+
#: views.py:1047
|
|
548
654
|
msgid "Congratulations, your map has been cloned!"
|
|
549
655
|
msgstr "Doublet eo bet ho kartenn gant berzh!"
|
|
550
656
|
|
|
551
|
-
#: views.py:
|
|
657
|
+
#: views.py:1282
|
|
552
658
|
msgid "Layer successfully deleted."
|
|
553
659
|
msgstr "Gwiskad dilamet gant berzh."
|
|
554
660
|
|
|
555
|
-
#: views.py:
|
|
661
|
+
#: views.py:1304
|
|
556
662
|
msgid "Permissions updated with success!"
|
|
557
663
|
msgstr "Aotreoù hizivaet gant berzh!"
|