umap-project 2.5.1__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 +1 -0
- 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.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.1.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.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,7 +9,7 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: uMap\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2024-
|
|
12
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
14
|
"Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024\n"
|
|
15
15
|
"Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
|
|
@@ -27,7 +27,7 @@ msgstr "Bakarrik esteka sekretuarekin bakarrik editatu daiteke"
|
|
|
27
27
|
msgid "Everyone can edit"
|
|
28
28
|
msgstr "Edonork editatu dezake"
|
|
29
29
|
|
|
30
|
-
#: forms.py:69 models.py:
|
|
30
|
+
#: forms.py:69 models.py:423
|
|
31
31
|
msgid "Inherit"
|
|
32
32
|
msgstr "Heredatu"
|
|
33
33
|
|
|
@@ -35,242 +35,238 @@ msgstr "Heredatu"
|
|
|
35
35
|
msgid "Site is readonly for maintenance"
|
|
36
36
|
msgstr "Webgunea irakurtzeko moduan dago mantentze-lanak direla-eta"
|
|
37
37
|
|
|
38
|
-
#: models.py:
|
|
38
|
+
#: models.py:54 models.py:73
|
|
39
39
|
msgid "name"
|
|
40
40
|
msgstr "izena"
|
|
41
41
|
|
|
42
|
-
#: models.py:
|
|
42
|
+
#: models.py:56 models.py:433
|
|
43
|
+
msgid "description"
|
|
44
|
+
msgstr "deskribapena"
|
|
45
|
+
|
|
46
|
+
#: models.py:104
|
|
43
47
|
msgid "details"
|
|
44
48
|
msgstr "xehetasunak"
|
|
45
49
|
|
|
46
|
-
#: models.py:
|
|
50
|
+
#: models.py:105
|
|
47
51
|
msgid "Link to a page where the licence is detailed."
|
|
48
52
|
msgstr "Estekatu lizentzia zehazten den orrialde batera."
|
|
49
53
|
|
|
50
|
-
#: models.py:
|
|
54
|
+
#: models.py:115
|
|
51
55
|
msgid "URL template using OSM tile format"
|
|
52
56
|
msgstr "URLaren txantiloia OSMren lauzen formatua erabiliz"
|
|
53
57
|
|
|
54
|
-
#: models.py:
|
|
58
|
+
#: models.py:121
|
|
55
59
|
msgid "Order of the tilelayers in the edit box"
|
|
56
60
|
msgstr "Lauzen geruzek edizio kutxan duten ordena"
|
|
57
61
|
|
|
58
|
-
#: models.py:
|
|
62
|
+
#: models.py:167 models.py:424
|
|
59
63
|
msgid "Everyone"
|
|
60
64
|
msgstr "Edonork"
|
|
61
65
|
|
|
62
|
-
#: models.py:
|
|
63
|
-
msgid "Editors only"
|
|
64
|
-
msgstr "
|
|
66
|
+
#: models.py:168 models.py:174 models.py:425
|
|
67
|
+
msgid "Editors and team only"
|
|
68
|
+
msgstr ""
|
|
65
69
|
|
|
66
|
-
#: models.py:
|
|
70
|
+
#: models.py:169 models.py:426
|
|
67
71
|
msgid "Owner only"
|
|
68
72
|
msgstr "Jabea bakarrik"
|
|
69
73
|
|
|
70
|
-
#: models.py:
|
|
74
|
+
#: models.py:172
|
|
71
75
|
msgid "Everyone (public)"
|
|
72
76
|
msgstr "Edonork (publikoa)"
|
|
73
77
|
|
|
74
|
-
#: models.py:
|
|
78
|
+
#: models.py:173
|
|
75
79
|
msgid "Anyone with link"
|
|
76
80
|
msgstr "Esteka duen edonork"
|
|
77
81
|
|
|
78
|
-
#: models.py:
|
|
82
|
+
#: models.py:175
|
|
79
83
|
msgid "Blocked"
|
|
80
84
|
msgstr "Blokeatuta"
|
|
81
85
|
|
|
82
|
-
#: models.py:
|
|
86
|
+
#: models.py:178
|
|
83
87
|
msgid "center"
|
|
84
88
|
msgstr "erdiko puntua"
|
|
85
89
|
|
|
86
|
-
#: models.py:
|
|
90
|
+
#: models.py:179
|
|
87
91
|
msgid "zoom"
|
|
88
92
|
msgstr "zooma"
|
|
89
93
|
|
|
90
|
-
#: models.py:
|
|
94
|
+
#: models.py:181
|
|
91
95
|
msgid "locate"
|
|
92
96
|
msgstr "kokatu"
|
|
93
97
|
|
|
94
|
-
#: models.py:
|
|
98
|
+
#: models.py:181
|
|
95
99
|
msgid "Locate user on load?"
|
|
96
100
|
msgstr "Kokatu erabiltzailea mapa kargatzen denean?"
|
|
97
101
|
|
|
98
|
-
#: models.py:
|
|
102
|
+
#: models.py:185
|
|
99
103
|
msgid "Choose the map licence."
|
|
100
104
|
msgstr "Aukeratu maparen lizentzia."
|
|
101
105
|
|
|
102
|
-
#: models.py:
|
|
106
|
+
#: models.py:186
|
|
103
107
|
msgid "licence"
|
|
104
108
|
msgstr "lizentzia"
|
|
105
109
|
|
|
106
|
-
#: models.py:
|
|
110
|
+
#: models.py:197
|
|
107
111
|
msgid "owner"
|
|
108
112
|
msgstr "jabea"
|
|
109
113
|
|
|
110
|
-
#: models.py:
|
|
114
|
+
#: models.py:201
|
|
111
115
|
msgid "editors"
|
|
112
116
|
msgstr "editoreak"
|
|
113
117
|
|
|
114
|
-
#: models.py:
|
|
118
|
+
#: models.py:207
|
|
119
|
+
msgid "team"
|
|
120
|
+
msgstr ""
|
|
121
|
+
|
|
122
|
+
#: models.py:213 models.py:447
|
|
115
123
|
msgid "edit status"
|
|
116
124
|
msgstr "editatu egoera"
|
|
117
125
|
|
|
118
|
-
#: models.py:
|
|
126
|
+
#: models.py:218
|
|
119
127
|
msgid "share status"
|
|
120
128
|
msgstr "partekatu egoera"
|
|
121
129
|
|
|
122
|
-
#: models.py:
|
|
130
|
+
#: models.py:221 models.py:442
|
|
123
131
|
msgid "settings"
|
|
124
132
|
msgstr "ezarpenak"
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:364
|
|
127
135
|
msgid "Clone of"
|
|
128
136
|
msgstr "Beste honen klona"
|
|
129
137
|
|
|
130
|
-
#: models.py:
|
|
131
|
-
msgid "description"
|
|
132
|
-
msgstr "deskribapena"
|
|
133
|
-
|
|
134
|
-
#: models.py:403
|
|
138
|
+
#: models.py:437
|
|
135
139
|
msgid "display on load"
|
|
136
140
|
msgstr "erakutsi kargatzean"
|
|
137
141
|
|
|
138
|
-
#: models.py:
|
|
142
|
+
#: models.py:438
|
|
139
143
|
msgid "Display this layer on load."
|
|
140
144
|
msgstr "Erakutsi geruza hau kargatzean"
|
|
141
145
|
|
|
142
|
-
#: templates/404.html:
|
|
146
|
+
#: templates/404.html:8
|
|
143
147
|
msgid "Take me to the home page"
|
|
144
148
|
msgstr "Eraman nazazu hasiera orrialdera"
|
|
145
149
|
|
|
146
|
-
#: templates/auth/user_detail.html:
|
|
150
|
+
#: templates/auth/user_detail.html:8
|
|
147
151
|
#, python-format
|
|
148
152
|
msgid "Browse %(current_user)s's maps"
|
|
149
153
|
msgstr "Arakatu %(current_user)s erabiltzailearen mapak"
|
|
150
154
|
|
|
151
|
-
#: templates/auth/user_detail.html:
|
|
155
|
+
#: templates/auth/user_detail.html:17
|
|
152
156
|
#, python-format
|
|
153
157
|
msgid "%(current_user)s has no maps."
|
|
154
158
|
msgstr "%(current_user)s erabiltzaileak ez du maparik."
|
|
155
159
|
|
|
156
|
-
#: templates/auth/user_form.html:
|
|
157
|
-
msgid "My Maps"
|
|
158
|
-
msgstr "Nire mapak"
|
|
159
|
-
|
|
160
|
-
#: templates/auth/user_form.html:7
|
|
161
|
-
msgid "My Profile"
|
|
162
|
-
msgstr "Nire profila"
|
|
163
|
-
|
|
164
|
-
#: templates/auth/user_form.html:20
|
|
160
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
165
161
|
msgid "Save"
|
|
166
162
|
msgstr "Gorde"
|
|
167
163
|
|
|
168
|
-
#: templates/auth/user_form.html:
|
|
164
|
+
#: templates/auth/user_form.html:27
|
|
169
165
|
msgid "Your current providers"
|
|
170
166
|
msgstr "Zure egungo hornitzaileak"
|
|
171
167
|
|
|
172
|
-
#: templates/auth/user_form.html:
|
|
168
|
+
#: templates/auth/user_form.html:39
|
|
173
169
|
msgid "Connect to another provider"
|
|
174
170
|
msgstr "Konektatu beste hornitzaile batekin"
|
|
175
171
|
|
|
176
|
-
#: templates/auth/user_form.html:
|
|
172
|
+
#: templates/auth/user_form.html:42
|
|
177
173
|
msgid ""
|
|
178
174
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
179
175
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
180
176
|
msgstr "Ohitura ona da zure kontua hornitzaile bati baino gehiagori konektatzea, hornitzaileren bat erabilgarri ez badago, aldi baterako edo baita betiko."
|
|
181
177
|
|
|
182
|
-
#: templates/auth/user_stars.html:
|
|
178
|
+
#: templates/auth/user_stars.html:8
|
|
183
179
|
#, python-format
|
|
184
180
|
msgid "Browse %(current_user)s's starred maps"
|
|
185
|
-
msgstr "Arakatu %(current_user)s
|
|
181
|
+
msgstr "Arakatu %(current_user)s erabiltzailearen gogoko mapak"
|
|
186
182
|
|
|
187
|
-
#: templates/auth/user_stars.html:
|
|
183
|
+
#: templates/auth/user_stars.html:17
|
|
188
184
|
#, python-format
|
|
189
185
|
msgid "%(current_user)s has no starred maps yet."
|
|
190
|
-
msgstr "%(current_user)s erabiltzaileak ez du
|
|
186
|
+
msgstr "%(current_user)s erabiltzaileak ez du gogoko maparik oraindik."
|
|
191
187
|
|
|
192
|
-
#: templates/base.html:
|
|
188
|
+
#: templates/base.html:13
|
|
193
189
|
msgid ""
|
|
194
190
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
195
191
|
"them in your site."
|
|
196
192
|
msgstr "uMap-ek OpenStreetMap geruzekin mapak minutu batean sortzeko eta zure webgunean txertatzeko aukera ematen dizu."
|
|
197
193
|
|
|
198
|
-
#: templates/registration/login.html:
|
|
194
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
195
|
+
msgid "Login"
|
|
196
|
+
msgstr "Sartu"
|
|
197
|
+
|
|
198
|
+
#: templates/registration/login.html:24
|
|
199
199
|
msgid "Please log in with your account"
|
|
200
200
|
msgstr "Sartu zure kontua erabiliz"
|
|
201
201
|
|
|
202
|
-
#: templates/registration/login.html:
|
|
202
|
+
#: templates/registration/login.html:41
|
|
203
203
|
msgid "Username"
|
|
204
204
|
msgstr "Erabiltzaile izena"
|
|
205
205
|
|
|
206
|
-
#: templates/registration/login.html:
|
|
206
|
+
#: templates/registration/login.html:44
|
|
207
207
|
msgid "Password"
|
|
208
208
|
msgstr "Pasahitza"
|
|
209
209
|
|
|
210
|
-
#: templates/registration/login.html:
|
|
211
|
-
msgid "Login"
|
|
212
|
-
msgstr "Sartu"
|
|
213
|
-
|
|
214
|
-
#: templates/registration/login.html:37
|
|
210
|
+
#: templates/registration/login.html:51
|
|
215
211
|
msgid "Please choose a provider"
|
|
216
212
|
msgstr "Aukeratu hornitzaile bat"
|
|
217
213
|
|
|
218
|
-
#: templates/umap/about_summary.html:
|
|
214
|
+
#: templates/umap/about_summary.html:12
|
|
219
215
|
#, python-format
|
|
220
216
|
msgid ""
|
|
221
217
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
222
218
|
"layers in a minute and embed them in your site."
|
|
223
219
|
msgstr "uMapek <a href=\"%(osm_url)s\" />OpenStreetMap</a> geruzak darabiltzaten mapak sortzen uzten dizu ondoren nahi duzun webgunean txertatzeko."
|
|
224
220
|
|
|
225
|
-
#: templates/umap/about_summary.html:
|
|
221
|
+
#: templates/umap/about_summary.html:23
|
|
226
222
|
msgid "Choose the layers of your map"
|
|
227
223
|
msgstr "Aukeratu zure maparen geruzak"
|
|
228
224
|
|
|
229
|
-
#: templates/umap/about_summary.html:
|
|
225
|
+
#: templates/umap/about_summary.html:26
|
|
230
226
|
msgid "Add POIs: markers, lines, polygons..."
|
|
231
227
|
msgstr "Gehitu intereseko puntuak: markak, lerroak, poligonoak..."
|
|
232
228
|
|
|
233
|
-
#: templates/umap/about_summary.html:
|
|
229
|
+
#: templates/umap/about_summary.html:29
|
|
234
230
|
msgid "Manage POIs colours and icons"
|
|
235
231
|
msgstr "Kudeatu intereseko puntuen kolore eta ikonoak"
|
|
236
232
|
|
|
237
|
-
#: templates/umap/about_summary.html:
|
|
233
|
+
#: templates/umap/about_summary.html:32
|
|
238
234
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
239
235
|
msgstr "Kudeatu maparen aukerak: mapa txikia erakutsi, erabiltzailearen kokapena erabili..."
|
|
240
236
|
|
|
241
|
-
#: templates/umap/about_summary.html:
|
|
237
|
+
#: templates/umap/about_summary.html:35
|
|
242
238
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
243
239
|
msgstr "Inportatu egituratutako datuak (geojson, gpx, kml, osm, ...)"
|
|
244
240
|
|
|
245
|
-
#: templates/umap/about_summary.html:
|
|
241
|
+
#: templates/umap/about_summary.html:38
|
|
246
242
|
msgid "Choose the license for your data"
|
|
247
243
|
msgstr "Aukeratu zure datuen lizentzia"
|
|
248
244
|
|
|
249
|
-
#: templates/umap/about_summary.html:
|
|
245
|
+
#: templates/umap/about_summary.html:41
|
|
250
246
|
msgid "Embed and share your map"
|
|
251
247
|
msgstr "Txertatu eta partekatu zure mapa"
|
|
252
248
|
|
|
253
|
-
#: templates/umap/about_summary.html:
|
|
249
|
+
#: templates/umap/about_summary.html:52
|
|
254
250
|
#, python-format
|
|
255
251
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
256
252
|
msgstr "Eta <a href=\"%(repo_url)s\">software librea</a> da!"
|
|
257
253
|
|
|
258
|
-
#: templates/umap/about_summary.html:
|
|
259
|
-
#: templates/umap/user_dashboard.html:
|
|
254
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
255
|
+
#: templates/umap/user_dashboard.html:40
|
|
260
256
|
msgid "Create a map"
|
|
261
257
|
msgstr "Sortu mapa bat"
|
|
262
258
|
|
|
263
|
-
#: templates/umap/about_summary.html:
|
|
259
|
+
#: templates/umap/about_summary.html:66
|
|
264
260
|
msgid "Play with the demo"
|
|
265
261
|
msgstr "Jolastu probatako ingurunean"
|
|
266
262
|
|
|
267
|
-
#: templates/umap/components/alerts/alert.html:
|
|
268
|
-
#: templates/umap/components/alerts/alert.html:
|
|
269
|
-
#: templates/umap/components/alerts/alert.html:
|
|
263
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
264
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
265
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
270
266
|
msgid "Close"
|
|
271
267
|
msgstr "Itxi"
|
|
272
268
|
|
|
273
|
-
#: templates/umap/components/alerts/alert.html:
|
|
269
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
274
270
|
#, python-format
|
|
275
271
|
msgid ""
|
|
276
272
|
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
@@ -278,45 +274,45 @@ msgid ""
|
|
|
278
274
|
"target=\"_blank\">log in</a>."
|
|
279
275
|
msgstr "Aholkua: zure mapak erraz aurkitzeko, <a href=\"%(login_url)s\" target=\"_blank\">kontu bat sortu</a> edo<a href=\"%(login_url)s\" target=\"_blank\">saioa hasi</a>."
|
|
280
276
|
|
|
281
|
-
#: templates/umap/components/alerts/alert.html:
|
|
277
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
282
278
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
283
279
|
msgstr "Hona hemen mapa editatzeko zure esteka sekretua, gorde ezazu seguru:"
|
|
284
280
|
|
|
285
|
-
#: templates/umap/components/alerts/alert.html:
|
|
281
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
286
282
|
msgid "Copy link"
|
|
287
283
|
msgstr "Kopiatu esteka"
|
|
288
284
|
|
|
289
|
-
#: templates/umap/components/alerts/alert.html:
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
290
286
|
msgid "Enter your email address to receive the secret link:"
|
|
291
287
|
msgstr "Sartu zure helbide elektronikoa esteka sekretua jasotzeko:"
|
|
292
288
|
|
|
293
|
-
#: templates/umap/components/alerts/alert.html:
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
294
290
|
msgid "Email"
|
|
295
291
|
msgstr "Helbide elektronikoa"
|
|
296
292
|
|
|
297
|
-
#: templates/umap/components/alerts/alert.html:
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
298
294
|
msgid "Send me the link"
|
|
299
295
|
msgstr "Bidalidazu esteka"
|
|
300
296
|
|
|
301
|
-
#: templates/umap/components/alerts/alert.html:
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
302
298
|
msgid "See their edits in another tab"
|
|
303
|
-
msgstr ""
|
|
299
|
+
msgstr "Ikusi haien aldaketak beste fitxa batean"
|
|
304
300
|
|
|
305
|
-
#: templates/umap/components/alerts/alert.html:
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
306
302
|
msgid "Keep your changes and loose theirs"
|
|
307
|
-
msgstr ""
|
|
303
|
+
msgstr "Mantendu zure aldaketak eta baztertu haienak"
|
|
308
304
|
|
|
309
|
-
#: templates/umap/components/alerts/alert.html:
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
310
306
|
msgid "Keep their changes and loose yours"
|
|
311
|
-
msgstr ""
|
|
307
|
+
msgstr "Mantendu haien aldaketak eta baztertu zureak"
|
|
312
308
|
|
|
313
|
-
#: templates/umap/content.html:
|
|
309
|
+
#: templates/umap/content.html:26
|
|
314
310
|
msgid ""
|
|
315
311
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
316
312
|
"allowed."
|
|
317
|
-
msgstr ""
|
|
313
|
+
msgstr "uMap-en instantzia hau irakurtzeko moduan dago une honetan, ezin da baimenik sortu edo editatu."
|
|
318
314
|
|
|
319
|
-
#: templates/umap/content.html:
|
|
315
|
+
#: templates/umap/content.html:34
|
|
320
316
|
#, python-format
|
|
321
317
|
msgid ""
|
|
322
318
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -325,279 +321,339 @@ msgid ""
|
|
|
325
321
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
326
322
|
msgstr "Hau probatako ingurunea da, testak egin eta argitaratu aurreko bertsioak probatzeko erabiltzen da. Ingurune egonkorra behar baduzu, erabili mesedez <a href=\"%(stable_url)s\">%(stable_url)s</a>. Zure instantzia propioa ere erabili dezakezu, <a href=\"%(repo_url)s\">software librea</a> da!"
|
|
327
323
|
|
|
328
|
-
#: templates/umap/
|
|
324
|
+
#: templates/umap/content_footer.html:5
|
|
325
|
+
msgid "An OpenStreetMap project"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
#: templates/umap/content_footer.html:6
|
|
329
|
+
msgid "version"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
332
|
+
#: templates/umap/content_footer.html:7
|
|
333
|
+
msgid "Hosted by"
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: templates/umap/content_footer.html:8
|
|
337
|
+
msgid "Contact"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
341
|
+
msgid "Help"
|
|
342
|
+
msgstr "Laguntza"
|
|
343
|
+
|
|
344
|
+
#: templates/umap/dashboard_menu.html:6
|
|
345
|
+
#, python-format
|
|
346
|
+
msgid "My Maps (%(count)s)"
|
|
347
|
+
msgstr "Nire mapak (%(count)s)"
|
|
348
|
+
|
|
349
|
+
#: templates/umap/dashboard_menu.html:8
|
|
350
|
+
msgid "My Maps"
|
|
351
|
+
msgstr "Nire mapak"
|
|
352
|
+
|
|
353
|
+
#: templates/umap/dashboard_menu.html:11
|
|
354
|
+
msgid "My profile"
|
|
355
|
+
msgstr "Nire profila"
|
|
356
|
+
|
|
357
|
+
#: templates/umap/dashboard_menu.html:13
|
|
358
|
+
msgid "My teams"
|
|
359
|
+
msgstr ""
|
|
360
|
+
|
|
361
|
+
#: templates/umap/home.html:14
|
|
329
362
|
msgid "Map of the uMaps"
|
|
330
|
-
msgstr "
|
|
363
|
+
msgstr "uMap-en mapa"
|
|
331
364
|
|
|
332
|
-
#: templates/umap/home.html:
|
|
365
|
+
#: templates/umap/home.html:24
|
|
333
366
|
msgid "Get inspired, browse maps"
|
|
334
367
|
msgstr "Inspira zaitez dauden mapak arakatzen"
|
|
335
368
|
|
|
336
|
-
#: templates/umap/login_popup_end.html:
|
|
369
|
+
#: templates/umap/login_popup_end.html:4
|
|
337
370
|
msgid "You are logged in. Continuing..."
|
|
338
371
|
msgstr "Sartu egin zara. Jarraitu..."
|
|
339
372
|
|
|
340
|
-
#: templates/umap/map_list.html:
|
|
373
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
341
374
|
msgid "by"
|
|
342
375
|
msgstr "nork eginda"
|
|
343
376
|
|
|
344
|
-
#: templates/umap/map_list.html:
|
|
377
|
+
#: templates/umap/map_list.html:18
|
|
345
378
|
msgid "More"
|
|
346
379
|
msgstr "Gehiago"
|
|
347
380
|
|
|
348
|
-
#: templates/umap/map_table.html:
|
|
381
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
349
382
|
msgid "Name"
|
|
350
|
-
msgstr ""
|
|
383
|
+
msgstr "Izena"
|
|
351
384
|
|
|
352
|
-
#: templates/umap/map_table.html:
|
|
385
|
+
#: templates/umap/map_table.html:11
|
|
353
386
|
msgid "Preview"
|
|
354
|
-
msgstr ""
|
|
387
|
+
msgstr "Aurrikuspena"
|
|
355
388
|
|
|
356
|
-
#: templates/umap/map_table.html:
|
|
389
|
+
#: templates/umap/map_table.html:14
|
|
357
390
|
msgid "Who can see"
|
|
358
|
-
msgstr ""
|
|
391
|
+
msgstr "Nork ikus dezake"
|
|
359
392
|
|
|
360
|
-
#: templates/umap/map_table.html:
|
|
393
|
+
#: templates/umap/map_table.html:17
|
|
361
394
|
msgid "Who can edit"
|
|
362
|
-
msgstr ""
|
|
395
|
+
msgstr "Nork edita dezake"
|
|
363
396
|
|
|
364
|
-
#: templates/umap/map_table.html:
|
|
397
|
+
#: templates/umap/map_table.html:20
|
|
365
398
|
msgid "Last save"
|
|
366
|
-
msgstr ""
|
|
399
|
+
msgstr "Azken gordetzea"
|
|
367
400
|
|
|
368
|
-
#: templates/umap/map_table.html:
|
|
401
|
+
#: templates/umap/map_table.html:23
|
|
369
402
|
msgid "Owner"
|
|
370
|
-
msgstr ""
|
|
403
|
+
msgstr "Jabea"
|
|
371
404
|
|
|
372
|
-
#: templates/umap/map_table.html:
|
|
405
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
373
406
|
msgid "Actions"
|
|
374
|
-
msgstr ""
|
|
407
|
+
msgstr "Ekintzak"
|
|
375
408
|
|
|
376
|
-
#: templates/umap/map_table.html:
|
|
409
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
377
410
|
msgid "Open preview"
|
|
378
|
-
msgstr ""
|
|
411
|
+
msgstr "Ireki aurrebista"
|
|
379
412
|
|
|
380
|
-
#: templates/umap/map_table.html:
|
|
413
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
381
414
|
msgid "Share"
|
|
382
|
-
msgstr ""
|
|
415
|
+
msgstr "Partekatu"
|
|
383
416
|
|
|
384
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
418
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
385
419
|
msgid "Edit"
|
|
386
|
-
msgstr ""
|
|
420
|
+
msgstr "Editatu"
|
|
387
421
|
|
|
388
|
-
#: templates/umap/map_table.html:
|
|
422
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
389
423
|
msgid "Download"
|
|
390
|
-
msgstr ""
|
|
424
|
+
msgstr "Deskargatu"
|
|
391
425
|
|
|
392
|
-
#: templates/umap/map_table.html:
|
|
426
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
393
427
|
msgid "Clone"
|
|
394
|
-
msgstr ""
|
|
428
|
+
msgstr "Klonatu"
|
|
395
429
|
|
|
396
|
-
#: templates/umap/map_table.html:
|
|
430
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
397
431
|
msgid "Delete"
|
|
398
|
-
msgstr ""
|
|
432
|
+
msgstr "Ezabatu"
|
|
399
433
|
|
|
400
|
-
#: templates/umap/map_table.html:
|
|
434
|
+
#: templates/umap/map_table.html:117
|
|
401
435
|
msgid "first"
|
|
402
|
-
msgstr ""
|
|
436
|
+
msgstr "lehenengoa"
|
|
403
437
|
|
|
404
|
-
#: templates/umap/map_table.html:
|
|
438
|
+
#: templates/umap/map_table.html:118
|
|
405
439
|
msgid "previous"
|
|
406
|
-
msgstr ""
|
|
440
|
+
msgstr "aurrekoa"
|
|
407
441
|
|
|
408
|
-
#: templates/umap/map_table.html:
|
|
442
|
+
#: templates/umap/map_table.html:126
|
|
409
443
|
#, python-format
|
|
410
444
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
411
|
-
msgstr ""
|
|
445
|
+
msgstr " %(maps_number)s / %(num_pages)sorria"
|
|
412
446
|
|
|
413
|
-
#: templates/umap/map_table.html:
|
|
447
|
+
#: templates/umap/map_table.html:131
|
|
414
448
|
msgid "next"
|
|
415
|
-
msgstr ""
|
|
449
|
+
msgstr "hurrengoa"
|
|
416
450
|
|
|
417
|
-
#: templates/umap/map_table.html:
|
|
451
|
+
#: templates/umap/map_table.html:132
|
|
418
452
|
msgid "last"
|
|
419
|
-
msgstr ""
|
|
453
|
+
msgstr "azkena"
|
|
420
454
|
|
|
421
|
-
#: templates/umap/map_table.html:
|
|
455
|
+
#: templates/umap/map_table.html:140
|
|
422
456
|
#, python-format
|
|
423
457
|
msgid "Lines per page: %(per_page)s"
|
|
424
|
-
msgstr ""
|
|
458
|
+
msgstr "Lerroak orriko: %(per_page)s"
|
|
425
459
|
|
|
426
|
-
#: templates/umap/map_table.html:
|
|
460
|
+
#: templates/umap/map_table.html:145
|
|
427
461
|
#, python-format
|
|
428
462
|
msgid "%(count)s maps"
|
|
429
|
-
msgstr ""
|
|
463
|
+
msgstr "%(count)s mapa"
|
|
430
464
|
|
|
431
|
-
#: templates/umap/navigation.html:
|
|
465
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
432
466
|
msgid "My Dashboard"
|
|
433
|
-
msgstr ""
|
|
467
|
+
msgstr "Nire panela"
|
|
434
468
|
|
|
435
|
-
#: templates/umap/navigation.html:
|
|
469
|
+
#: templates/umap/navigation.html:14
|
|
436
470
|
msgid "Starred maps"
|
|
437
|
-
msgstr ""
|
|
471
|
+
msgstr "Gogoko mapak"
|
|
438
472
|
|
|
439
|
-
#: templates/umap/navigation.html:
|
|
473
|
+
#: templates/umap/navigation.html:18
|
|
440
474
|
msgid "Log in"
|
|
441
475
|
msgstr "Sartu"
|
|
442
476
|
|
|
443
|
-
#: templates/umap/navigation.html:
|
|
477
|
+
#: templates/umap/navigation.html:18
|
|
444
478
|
msgid "Sign in"
|
|
445
479
|
msgstr "Izena eman"
|
|
446
480
|
|
|
447
|
-
#: templates/umap/navigation.html:
|
|
481
|
+
#: templates/umap/navigation.html:22
|
|
448
482
|
msgid "About"
|
|
449
483
|
msgstr "Honi buruz"
|
|
450
484
|
|
|
451
|
-
#: templates/umap/navigation.html:
|
|
452
|
-
msgid "Help"
|
|
453
|
-
msgstr "Laguntza"
|
|
454
|
-
|
|
455
|
-
#: templates/umap/navigation.html:29
|
|
485
|
+
#: templates/umap/navigation.html:30
|
|
456
486
|
msgid "Change password"
|
|
457
487
|
msgstr "Aldatu pasahitza"
|
|
458
488
|
|
|
459
|
-
#: templates/umap/navigation.html:
|
|
489
|
+
#: templates/umap/navigation.html:34
|
|
460
490
|
msgid "Log out"
|
|
461
491
|
msgstr "Irten"
|
|
462
492
|
|
|
463
|
-
#: templates/umap/password_change.html:
|
|
493
|
+
#: templates/umap/password_change.html:7
|
|
464
494
|
msgid "Password change"
|
|
465
495
|
msgstr "Pasahiz aldaketa"
|
|
466
496
|
|
|
467
|
-
#: templates/umap/password_change.html:
|
|
497
|
+
#: templates/umap/password_change.html:10
|
|
468
498
|
msgid ""
|
|
469
499
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
470
500
|
" password twice so we can verify you typed it in correctly."
|
|
471
501
|
msgstr "Idatzi zure pasahitz zaharra, eta ondoren zure pasahitz berria birritan, horrela ondo sartu duzula egiaztatuko dugu."
|
|
472
502
|
|
|
473
|
-
#: templates/umap/password_change.html:
|
|
503
|
+
#: templates/umap/password_change.html:17
|
|
474
504
|
msgid "Old password"
|
|
475
505
|
msgstr "Pasahitz zaharra"
|
|
476
506
|
|
|
477
|
-
#: templates/umap/password_change.html:
|
|
507
|
+
#: templates/umap/password_change.html:22
|
|
478
508
|
msgid "New password"
|
|
479
509
|
msgstr "Pasahitz berria"
|
|
480
510
|
|
|
481
|
-
#: templates/umap/password_change.html:
|
|
511
|
+
#: templates/umap/password_change.html:26
|
|
482
512
|
msgid "New password confirmation"
|
|
483
513
|
msgstr "Pasahitz berriaren egiaztapena"
|
|
484
514
|
|
|
485
|
-
#: templates/umap/password_change.html:
|
|
515
|
+
#: templates/umap/password_change.html:27
|
|
486
516
|
msgid "Change my password"
|
|
487
517
|
msgstr "Aldatu nire pasahitza"
|
|
488
518
|
|
|
489
|
-
#: templates/umap/password_change_done.html:
|
|
519
|
+
#: templates/umap/password_change_done.html:7
|
|
490
520
|
msgid "Password change successful"
|
|
491
521
|
msgstr "Pasahitza ondo aldatu da"
|
|
492
522
|
|
|
493
|
-
#: templates/umap/password_change_done.html:
|
|
523
|
+
#: templates/umap/password_change_done.html:10
|
|
494
524
|
msgid "Your password was changed."
|
|
495
525
|
msgstr "Zure pasahitza aldatu egin da"
|
|
496
526
|
|
|
497
|
-
#: templates/umap/search.html:
|
|
527
|
+
#: templates/umap/search.html:15
|
|
498
528
|
#, python-format
|
|
499
529
|
msgid "%(count)s map found:"
|
|
500
530
|
msgid_plural "%(count)s maps found:"
|
|
501
|
-
msgstr[0] ""
|
|
502
|
-
msgstr[1] ""
|
|
531
|
+
msgstr[0] "mapa %(count)s aurkitu da:"
|
|
532
|
+
msgstr[1] "%(count)s mapa aurkitu dira:"
|
|
503
533
|
|
|
504
|
-
#: templates/umap/search.html:
|
|
534
|
+
#: templates/umap/search.html:24
|
|
505
535
|
msgid "No map found."
|
|
506
|
-
msgstr ""
|
|
536
|
+
msgstr "Ez da maparik aurkitu"
|
|
507
537
|
|
|
508
|
-
#: templates/umap/search.html:
|
|
538
|
+
#: templates/umap/search.html:29
|
|
509
539
|
msgid "Latest created maps"
|
|
510
|
-
msgstr ""
|
|
540
|
+
msgstr "Sortutako azken mapak"
|
|
511
541
|
|
|
512
|
-
#: templates/umap/search_bar.html:
|
|
542
|
+
#: templates/umap/search_bar.html:4
|
|
513
543
|
msgid "Search maps"
|
|
514
544
|
msgstr "Bilatu mapak"
|
|
515
545
|
|
|
516
|
-
#: templates/umap/search_bar.html:
|
|
546
|
+
#: templates/umap/search_bar.html:15
|
|
517
547
|
msgid "Search"
|
|
518
548
|
msgstr "Bilatu"
|
|
519
549
|
|
|
520
|
-
#: templates/umap/
|
|
521
|
-
|
|
550
|
+
#: templates/umap/team_detail.html:10
|
|
551
|
+
#, python-format
|
|
552
|
+
msgid "Browse %(current_team)s's maps"
|
|
522
553
|
msgstr ""
|
|
523
554
|
|
|
524
|
-
#: templates/umap/
|
|
555
|
+
#: templates/umap/team_detail.html:22
|
|
525
556
|
#, python-format
|
|
526
|
-
msgid "
|
|
557
|
+
msgid "%(current_team)s has no public maps."
|
|
527
558
|
msgstr ""
|
|
528
559
|
|
|
529
|
-
#: templates/umap/
|
|
530
|
-
msgid "
|
|
560
|
+
#: templates/umap/team_form.html:24
|
|
561
|
+
msgid "Delete this team"
|
|
531
562
|
msgstr ""
|
|
532
563
|
|
|
533
|
-
#: templates/umap/
|
|
534
|
-
msgid "
|
|
564
|
+
#: templates/umap/team_form.html:47
|
|
565
|
+
msgid "Add user"
|
|
535
566
|
msgstr ""
|
|
536
567
|
|
|
537
|
-
#: templates/umap/user_dashboard.html:
|
|
568
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
569
|
+
msgid "Search my maps"
|
|
570
|
+
msgstr "Bilatu mapen arabera"
|
|
571
|
+
|
|
572
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
573
|
+
msgid "Map’s title"
|
|
574
|
+
msgstr "Maparen izenburua"
|
|
575
|
+
|
|
576
|
+
#: templates/umap/user_dashboard.html:30
|
|
538
577
|
#, python-format
|
|
539
578
|
msgid "Download %(count)s maps"
|
|
540
|
-
msgstr ""
|
|
579
|
+
msgstr "Deskargatu %(count)s mapa"
|
|
541
580
|
|
|
542
|
-
#: templates/umap/user_dashboard.html:
|
|
581
|
+
#: templates/umap/user_dashboard.html:40
|
|
543
582
|
msgid "You have no map yet."
|
|
583
|
+
msgstr "Oraindik ez daukazu maparik."
|
|
584
|
+
|
|
585
|
+
#: templates/umap/user_teams.html:17
|
|
586
|
+
msgid "Users"
|
|
544
587
|
msgstr ""
|
|
545
588
|
|
|
546
|
-
#:
|
|
589
|
+
#: templates/umap/user_teams.html:48
|
|
590
|
+
msgid "New team"
|
|
591
|
+
msgstr ""
|
|
592
|
+
|
|
593
|
+
#: views.py:235
|
|
594
|
+
msgid "Cannot delete a team with more than one member"
|
|
595
|
+
msgstr ""
|
|
596
|
+
|
|
597
|
+
#: views.py:239
|
|
598
|
+
#, python-format
|
|
599
|
+
msgid "Team “%(name)s” has been deleted"
|
|
600
|
+
msgstr ""
|
|
601
|
+
|
|
602
|
+
#: views.py:438
|
|
547
603
|
msgid "View the map"
|
|
548
604
|
msgstr "Mapa ikusi"
|
|
549
605
|
|
|
550
|
-
#: views.py:
|
|
606
|
+
#: views.py:824
|
|
551
607
|
msgid "See full screen"
|
|
552
|
-
msgstr ""
|
|
608
|
+
msgstr "Ikusi pantaila osoan"
|
|
553
609
|
|
|
554
|
-
#: views.py:
|
|
610
|
+
#: views.py:953
|
|
555
611
|
msgid "Map editors updated with success!"
|
|
556
612
|
msgstr "Maparen editoreak ondo eguneratu dira!"
|
|
557
613
|
|
|
558
|
-
#: views.py:
|
|
614
|
+
#: views.py:989
|
|
559
615
|
#, python-format
|
|
560
616
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
561
|
-
msgstr ""
|
|
617
|
+
msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
|
|
562
618
|
|
|
563
|
-
#: views.py:
|
|
619
|
+
#: views.py:992
|
|
564
620
|
#, python-format
|
|
565
621
|
msgid "Here is your secret edit link: %(link)s"
|
|
566
|
-
msgstr ""
|
|
622
|
+
msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
|
|
567
623
|
|
|
568
|
-
#: views.py:
|
|
624
|
+
#: views.py:999
|
|
569
625
|
#, python-format
|
|
570
626
|
msgid "Can't send email to %(email)s"
|
|
571
|
-
msgstr ""
|
|
627
|
+
msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
|
|
572
628
|
|
|
573
|
-
#: views.py:
|
|
629
|
+
#: views.py:1002
|
|
574
630
|
#, python-format
|
|
575
631
|
msgid "Email sent to %(email)s"
|
|
576
|
-
msgstr ""
|
|
632
|
+
msgstr "Posta elektronikoa bidalita %(email)s-ri"
|
|
577
633
|
|
|
578
|
-
#: views.py:
|
|
634
|
+
#: views.py:1013
|
|
579
635
|
msgid "Only its owner can delete the map."
|
|
580
636
|
msgstr "Jabeak bakarrik ezabatu dezake mapa."
|
|
581
637
|
|
|
582
|
-
#: views.py:
|
|
638
|
+
#: views.py:1016
|
|
583
639
|
msgid "Map successfully deleted."
|
|
584
|
-
msgstr ""
|
|
640
|
+
msgstr "Mapa behar bezala ezabatu da."
|
|
585
641
|
|
|
586
|
-
#: views.py:
|
|
642
|
+
#: views.py:1042
|
|
587
643
|
#, python-format
|
|
588
644
|
msgid ""
|
|
589
645
|
"Your map has been cloned! If you want to edit this map from another "
|
|
590
646
|
"computer, please use this link: %(anonymous_url)s"
|
|
591
647
|
msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
|
|
592
648
|
|
|
593
|
-
#: views.py:
|
|
649
|
+
#: views.py:1047
|
|
594
650
|
msgid "Congratulations, your map has been cloned!"
|
|
595
651
|
msgstr "Zorionak, zure mapa ondo klonatu da!"
|
|
596
652
|
|
|
597
|
-
#: views.py:
|
|
653
|
+
#: views.py:1282
|
|
598
654
|
msgid "Layer successfully deleted."
|
|
599
655
|
msgstr "Geruza ondo ezabatu da."
|
|
600
656
|
|
|
601
|
-
#: views.py:
|
|
657
|
+
#: views.py:1304
|
|
602
658
|
msgid "Permissions updated with success!"
|
|
603
|
-
msgstr ""
|
|
659
|
+
msgstr "Baimenak behar bezala eguneratu dira!"
|