umap-project 2.9.2__py3-none-any.whl → 3.0.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/context_processors.py +1 -0
- umap/forms.py +1 -2
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +218 -96
- umap/locale/en/LC_MESSAGES/django.po +131 -55
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +175 -130
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +117 -72
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +132 -56
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +209 -88
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +296 -175
- umap/middleware.py +2 -1
- umap/migrations/0027_map_tags.py +23 -0
- umap/models.py +13 -2
- umap/settings/base.py +23 -5
- umap/static/umap/base.css +41 -8
- umap/static/umap/content.css +72 -37
- umap/static/umap/css/bar.css +43 -21
- umap/static/umap/css/dialog.css +4 -1
- umap/static/umap/css/form.css +40 -27
- umap/static/umap/css/icon.css +11 -1
- umap/static/umap/css/importers.css +7 -0
- umap/static/umap/img/16-white.svg +23 -2
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24.svg +4 -4
- umap/static/umap/img/home.svg +7 -0
- umap/static/umap/img/importers/banfr.svg +1 -0
- umap/static/umap/img/marker.svg +2 -5
- umap/static/umap/img/source/16-white.svg +24 -3
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24.svg +5 -5
- umap/static/umap/img/target.svg +1 -0
- umap/static/umap/js/components/alerts/alert.js +0 -1
- umap/static/umap/js/modules/browser.js +4 -4
- umap/static/umap/js/modules/caption.js +1 -1
- umap/static/umap/js/modules/data/features.js +25 -25
- umap/static/umap/js/modules/data/layer.js +91 -97
- umap/static/umap/js/modules/facets.js +9 -5
- umap/static/umap/js/modules/form/builder.js +21 -29
- umap/static/umap/js/modules/form/fields.js +40 -14
- umap/static/umap/js/modules/formatter.js +1 -1
- umap/static/umap/js/modules/global.js +9 -5
- umap/static/umap/js/modules/help.js +18 -5
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/importers/banfr.js +93 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +2 -2
- umap/static/umap/js/modules/importers/communesfr.js +1 -1
- umap/static/umap/js/modules/permissions.js +20 -10
- umap/static/umap/js/modules/rendering/icon.js +15 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +7 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/layers/heat.js +4 -4
- umap/static/umap/js/modules/rendering/map.js +14 -6
- umap/static/umap/js/modules/rendering/popup.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +3 -3
- umap/static/umap/js/modules/rendering/ui.js +17 -11
- umap/static/umap/js/modules/rules.js +13 -16
- umap/static/umap/js/modules/schema.js +23 -1
- umap/static/umap/js/modules/share.js +1 -1
- umap/static/umap/js/modules/slideshow.js +1 -0
- umap/static/umap/js/modules/sync/engine.js +141 -19
- umap/static/umap/js/modules/sync/undo.js +101 -0
- umap/static/umap/js/modules/sync/updaters.js +51 -28
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/bar.js +61 -21
- umap/static/umap/js/modules/ui/tooltip.js +1 -1
- umap/static/umap/js/modules/umap.js +190 -176
- umap/static/umap/js/modules/utils.js +30 -4
- umap/static/umap/js/umap.controls.js +82 -38
- umap/static/umap/locale/am_ET.js +13 -7
- umap/static/umap/locale/am_ET.json +13 -7
- umap/static/umap/locale/ar.js +13 -7
- umap/static/umap/locale/ar.json +13 -7
- umap/static/umap/locale/ast.js +13 -7
- umap/static/umap/locale/ast.json +13 -7
- umap/static/umap/locale/bg.js +13 -7
- umap/static/umap/locale/bg.json +13 -7
- umap/static/umap/locale/br.js +13 -8
- umap/static/umap/locale/br.json +13 -8
- umap/static/umap/locale/ca.js +13 -7
- umap/static/umap/locale/ca.json +13 -7
- umap/static/umap/locale/cs_CZ.js +26 -20
- umap/static/umap/locale/cs_CZ.json +26 -20
- umap/static/umap/locale/da.js +13 -7
- umap/static/umap/locale/da.json +13 -7
- umap/static/umap/locale/de.js +47 -41
- umap/static/umap/locale/de.json +47 -41
- umap/static/umap/locale/el.js +13 -7
- umap/static/umap/locale/el.json +13 -7
- umap/static/umap/locale/en.js +12 -7
- umap/static/umap/locale/en.json +12 -7
- umap/static/umap/locale/en_US.json +13 -7
- umap/static/umap/locale/es.js +19 -13
- umap/static/umap/locale/es.json +19 -13
- umap/static/umap/locale/et.js +13 -7
- umap/static/umap/locale/et.json +13 -7
- umap/static/umap/locale/eu.js +43 -37
- umap/static/umap/locale/eu.json +43 -37
- umap/static/umap/locale/fa_IR.js +13 -7
- umap/static/umap/locale/fa_IR.json +13 -7
- umap/static/umap/locale/fi.js +13 -7
- umap/static/umap/locale/fi.json +13 -7
- umap/static/umap/locale/fr.js +12 -7
- umap/static/umap/locale/fr.json +12 -7
- umap/static/umap/locale/gl.js +19 -13
- umap/static/umap/locale/gl.json +19 -13
- umap/static/umap/locale/he.js +13 -7
- umap/static/umap/locale/he.json +13 -7
- umap/static/umap/locale/hr.js +13 -7
- umap/static/umap/locale/hr.json +13 -7
- umap/static/umap/locale/hu.js +25 -19
- umap/static/umap/locale/hu.json +25 -19
- umap/static/umap/locale/id.js +13 -7
- umap/static/umap/locale/id.json +13 -7
- umap/static/umap/locale/is.js +151 -145
- umap/static/umap/locale/is.json +151 -145
- umap/static/umap/locale/it.js +13 -7
- umap/static/umap/locale/it.json +13 -7
- umap/static/umap/locale/ja.js +13 -7
- umap/static/umap/locale/ja.json +13 -7
- umap/static/umap/locale/ko.js +13 -7
- umap/static/umap/locale/ko.json +13 -7
- umap/static/umap/locale/lt.js +13 -7
- umap/static/umap/locale/lt.json +13 -7
- umap/static/umap/locale/ms.js +13 -7
- umap/static/umap/locale/ms.json +13 -7
- umap/static/umap/locale/nl.js +12 -7
- umap/static/umap/locale/nl.json +12 -7
- umap/static/umap/locale/no.js +13 -7
- umap/static/umap/locale/no.json +13 -7
- umap/static/umap/locale/pl.js +13 -7
- umap/static/umap/locale/pl.json +13 -7
- umap/static/umap/locale/pl_PL.json +13 -7
- umap/static/umap/locale/pt.js +12 -7
- umap/static/umap/locale/pt.json +12 -7
- umap/static/umap/locale/pt_BR.js +13 -7
- umap/static/umap/locale/pt_BR.json +13 -7
- umap/static/umap/locale/pt_PT.js +13 -7
- umap/static/umap/locale/pt_PT.json +13 -7
- umap/static/umap/locale/ro.js +13 -7
- umap/static/umap/locale/ro.json +13 -7
- umap/static/umap/locale/ru.js +13 -7
- umap/static/umap/locale/ru.json +13 -7
- umap/static/umap/locale/sk_SK.js +13 -7
- umap/static/umap/locale/sk_SK.json +13 -7
- umap/static/umap/locale/sl.js +13 -7
- umap/static/umap/locale/sl.json +13 -7
- umap/static/umap/locale/sr.js +13 -7
- umap/static/umap/locale/sr.json +13 -7
- umap/static/umap/locale/sv.js +13 -7
- umap/static/umap/locale/sv.json +13 -7
- umap/static/umap/locale/th_TH.js +13 -7
- umap/static/umap/locale/th_TH.json +13 -7
- umap/static/umap/locale/tr.js +13 -7
- umap/static/umap/locale/tr.json +13 -7
- umap/static/umap/locale/uk_UA.js +13 -7
- umap/static/umap/locale/uk_UA.json +13 -7
- umap/static/umap/locale/vi.js +13 -7
- umap/static/umap/locale/vi.json +13 -7
- umap/static/umap/locale/vi_VN.json +13 -7
- umap/static/umap/locale/zh.js +13 -7
- umap/static/umap/locale/zh.json +13 -7
- umap/static/umap/locale/zh_CN.json +13 -7
- umap/static/umap/locale/zh_TW.Big5.json +13 -7
- umap/static/umap/locale/zh_TW.js +19 -13
- umap/static/umap/locale/zh_TW.json +19 -13
- umap/static/umap/map.css +58 -28
- umap/static/umap/unittests/sync.js +0 -57
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +5 -2
- umap/static/umap/vendors/photon/leaflet.photon.js +3 -0
- umap/sync/payloads.py +3 -2
- umap/templates/auth/user_detail.html +1 -1
- umap/templates/auth/user_stars.html +1 -1
- umap/templates/umap/content.html +17 -12
- umap/templates/umap/home.html +7 -5
- umap/templates/umap/map_fragment.html +1 -1
- umap/templates/umap/map_list.html +20 -13
- umap/templates/umap/search.html +7 -3
- umap/templates/umap/search_bar.html +13 -11
- umap/templates/umap/team_detail.html +1 -1
- umap/tests/base.py +2 -1
- umap/tests/fixtures/remote_data.umap +55 -0
- umap/tests/fixtures/test_upload_data_with_iconurl.umap +122 -0
- umap/tests/integration/test_browser.py +1 -3
- umap/tests/integration/test_conditional_rules.py +3 -0
- umap/tests/integration/test_edit_datalayer.py +2 -7
- umap/tests/integration/test_edit_map.py +15 -0
- umap/tests/integration/test_edit_polygon.py +1 -2
- umap/tests/integration/test_import.py +59 -2
- umap/tests/integration/test_optimistic_merge.py +4 -3
- umap/tests/integration/test_owned_map.py +0 -1
- umap/tests/integration/test_save.py +2 -4
- umap/tests/integration/test_undo_redo.py +267 -0
- umap/tests/integration/test_websocket_sync.py +78 -11
- umap/tests/settings.py +1 -3
- umap/tests/test_datalayer_s3.py +1 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_views.py +34 -0
- umap/utils.py +1 -1
- umap/views.py +23 -2
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/METADATA +13 -12
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/RECORD +211 -213
- umap/static/umap/js/modules/saving.js +0 -52
- umap/static/umap/test/.eslintrc +0 -21
- umap/static/umap/test/DataLayer.js +0 -463
- umap/static/umap/test/Feature.js +0 -131
- umap/static/umap/test/Map.js +0 -37
- umap/static/umap/test/Marker.js +0 -126
- umap/static/umap/test/Polygon.js +0 -111
- umap/static/umap/test/Polyline.js +0 -286
- umap/static/umap/test/Util.js +0 -28
- umap/static/umap/test/_pre.js +0 -455
- umap/static/umap/test/index.html +0 -139
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/WHEEL +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.2.dist-info → umap_project-3.0.0.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
|
-
# Alexander Gabilondo <alexgabi@disroot.org>, 2024
|
|
6
|
+
# Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025
|
|
7
7
|
# Mikel Larreategi <mlarreategi@codesyntax.com>, 2023
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: uMap\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date:
|
|
12
|
+
"POT-Creation-Date: 2025-03-07 15:18+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
|
-
"Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024\n"
|
|
14
|
+
"Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025\n"
|
|
15
15
|
"Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -25,17 +25,25 @@ msgstr "CSV esportazioa"
|
|
|
25
25
|
|
|
26
26
|
#: decorators.py:60
|
|
27
27
|
msgid "This map is not publicly available"
|
|
28
|
-
msgstr ""
|
|
28
|
+
msgstr "Mapa hau ez dago publikoki erabilgarri"
|
|
29
29
|
|
|
30
|
-
#: middleware.py:
|
|
30
|
+
#: middleware.py:19
|
|
31
31
|
msgid "Site is readonly for maintenance"
|
|
32
32
|
msgstr "Webgunea irakurtzeko moduan dago mantentze-lanak direla-eta"
|
|
33
33
|
|
|
34
|
+
#: middleware.py:34
|
|
35
|
+
#, python-format
|
|
36
|
+
msgid ""
|
|
37
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
38
|
+
"Please configure another provider below before losing access to your account"
|
|
39
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
34
42
|
#: models.py:60 models.py:79
|
|
35
43
|
msgid "name"
|
|
36
44
|
msgstr "izena"
|
|
37
45
|
|
|
38
|
-
#: models.py:62 models.py:
|
|
46
|
+
#: models.py:62 models.py:485
|
|
39
47
|
msgid "description"
|
|
40
48
|
msgstr "deskribapena"
|
|
41
49
|
|
|
@@ -55,23 +63,23 @@ msgstr "URLaren txantiloia OSMren lauzen formatua erabiliz"
|
|
|
55
63
|
msgid "Order of the tilelayers in the edit box"
|
|
56
64
|
msgstr "Lauzen geruzek edizio kutxan duten ordena"
|
|
57
65
|
|
|
58
|
-
#: models.py:175 models.py:
|
|
66
|
+
#: models.py:175 models.py:479
|
|
59
67
|
msgid "Only editable with secret edit link"
|
|
60
68
|
msgstr "Bakarrik esteka sekretuarekin bakarrik editatu daiteke"
|
|
61
69
|
|
|
62
|
-
#: models.py:176 models.py:
|
|
70
|
+
#: models.py:176 models.py:480
|
|
63
71
|
msgid "Everyone can edit"
|
|
64
72
|
msgstr "Edonork editatu dezake"
|
|
65
73
|
|
|
66
|
-
#: models.py:179 models.py:
|
|
74
|
+
#: models.py:179 models.py:473
|
|
67
75
|
msgid "Everyone"
|
|
68
76
|
msgstr "Edonork"
|
|
69
77
|
|
|
70
|
-
#: models.py:180 models.py:189 models.py:
|
|
78
|
+
#: models.py:180 models.py:189 models.py:474
|
|
71
79
|
msgid "Editors and team only"
|
|
72
80
|
msgstr "Editoreak eta taldea soilik"
|
|
73
81
|
|
|
74
|
-
#: models.py:181 models.py:
|
|
82
|
+
#: models.py:181 models.py:475
|
|
75
83
|
msgid "Owner only"
|
|
76
84
|
msgstr "Jabea bakarrik"
|
|
77
85
|
|
|
@@ -91,7 +99,7 @@ msgstr "Esteka duen edonork"
|
|
|
91
99
|
msgid "Blocked"
|
|
92
100
|
msgstr "Blokeatuta"
|
|
93
101
|
|
|
94
|
-
#: models.py:191
|
|
102
|
+
#: models.py:191 models.py:469
|
|
95
103
|
msgid "Deleted"
|
|
96
104
|
msgstr "Ezabatua"
|
|
97
105
|
|
|
@@ -131,31 +139,31 @@ msgstr "editoreak"
|
|
|
131
139
|
msgid "team"
|
|
132
140
|
msgstr "taldea"
|
|
133
141
|
|
|
134
|
-
#: models.py:229 models.py:
|
|
142
|
+
#: models.py:229 models.py:501
|
|
135
143
|
msgid "edit status"
|
|
136
144
|
msgstr "editatu egoera"
|
|
137
145
|
|
|
138
|
-
#: models.py:234
|
|
146
|
+
#: models.py:234 models.py:506
|
|
139
147
|
msgid "share status"
|
|
140
148
|
msgstr "partekatu egoera"
|
|
141
149
|
|
|
142
|
-
#: models.py:237 models.py:
|
|
150
|
+
#: models.py:237 models.py:496
|
|
143
151
|
msgid "settings"
|
|
144
152
|
msgstr "ezarpenak"
|
|
145
153
|
|
|
146
|
-
#: models.py:
|
|
154
|
+
#: models.py:407
|
|
147
155
|
msgid "Clone of"
|
|
148
156
|
msgstr "Beste honen klona"
|
|
149
157
|
|
|
150
|
-
#: models.py:
|
|
158
|
+
#: models.py:468 models.py:472 models.py:478
|
|
151
159
|
msgid "Inherit"
|
|
152
160
|
msgstr "Heredatu"
|
|
153
161
|
|
|
154
|
-
#: models.py:
|
|
162
|
+
#: models.py:491
|
|
155
163
|
msgid "display on load"
|
|
156
164
|
msgstr "erakutsi kargatzean"
|
|
157
165
|
|
|
158
|
-
#: models.py:
|
|
166
|
+
#: models.py:492
|
|
159
167
|
msgid "Display this layer on load."
|
|
160
168
|
msgstr "Erakutsi geruza hau kargatzean"
|
|
161
169
|
|
|
@@ -164,50 +172,64 @@ msgid ""
|
|
|
164
172
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
165
173
|
"target=\"_blank\">Find out here the documentation</a> on how to manage map’s"
|
|
166
174
|
" permissions."
|
|
167
|
-
msgstr ""
|
|
175
|
+
msgstr " <a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" target=\"_blank\">Ikusi hemen</a> maparen baimenak kudeatzeko dokumentazioa."
|
|
168
176
|
|
|
169
177
|
#: templates/403.html:10 templates/404.html:8
|
|
170
178
|
msgid "← Go to the homepage"
|
|
171
|
-
msgstr ""
|
|
179
|
+
msgstr "← Joan hasierara"
|
|
172
180
|
|
|
173
181
|
#: templates/404.html:7
|
|
174
182
|
msgid "404 Page Not Found"
|
|
175
|
-
msgstr ""
|
|
183
|
+
msgstr "404 Ez da orrialdea aurkitu"
|
|
176
184
|
|
|
177
|
-
#: templates/auth/user_detail.html:
|
|
185
|
+
#: templates/auth/user_detail.html:6
|
|
186
|
+
#, python-format
|
|
187
|
+
msgid "%(current_user)s’s maps"
|
|
188
|
+
msgstr "%(current_user)s-ren mapak"
|
|
189
|
+
|
|
190
|
+
#: templates/auth/user_detail.html:12
|
|
178
191
|
#, python-format
|
|
179
192
|
msgid "Browse %(current_user)s's maps"
|
|
180
193
|
msgstr "Arakatu %(current_user)s erabiltzailearen mapak"
|
|
181
194
|
|
|
182
|
-
#: templates/auth/user_detail.html:
|
|
195
|
+
#: templates/auth/user_detail.html:21
|
|
183
196
|
#, python-format
|
|
184
197
|
msgid "%(current_user)s has no maps."
|
|
185
198
|
msgstr "%(current_user)s erabiltzaileak ez du maparik."
|
|
186
199
|
|
|
187
|
-
#: templates/auth/user_form.html:
|
|
200
|
+
#: templates/auth/user_form.html:6
|
|
201
|
+
msgid "My Profile"
|
|
202
|
+
msgstr "Nire profila"
|
|
203
|
+
|
|
204
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
188
205
|
msgid "Save"
|
|
189
206
|
msgstr "Gorde"
|
|
190
207
|
|
|
191
|
-
#: templates/auth/user_form.html:
|
|
208
|
+
#: templates/auth/user_form.html:30
|
|
192
209
|
msgid "Your current providers"
|
|
193
210
|
msgstr "Zure egungo hornitzaileak"
|
|
194
211
|
|
|
195
|
-
#: templates/auth/user_form.html:
|
|
212
|
+
#: templates/auth/user_form.html:44
|
|
196
213
|
msgid "Connect to another provider"
|
|
197
214
|
msgstr "Konektatu beste hornitzaile batekin"
|
|
198
215
|
|
|
199
|
-
#: templates/auth/user_form.html:
|
|
216
|
+
#: templates/auth/user_form.html:47
|
|
200
217
|
msgid ""
|
|
201
218
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
202
219
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
203
220
|
msgstr "Ohitura ona da zure kontua hornitzaile bati baino gehiagori konektatzea, hornitzaileren bat erabilgarri ez badago, aldi baterako edo baita betiko."
|
|
204
221
|
|
|
205
|
-
#: templates/auth/user_stars.html:
|
|
222
|
+
#: templates/auth/user_stars.html:6
|
|
223
|
+
#, python-format
|
|
224
|
+
msgid "%(current_user)s’s starred maps"
|
|
225
|
+
msgstr "%(current_user)s-ren mapa izardunak"
|
|
226
|
+
|
|
227
|
+
#: templates/auth/user_stars.html:12
|
|
206
228
|
#, python-format
|
|
207
229
|
msgid "Browse %(current_user)s's starred maps"
|
|
208
230
|
msgstr "Arakatu %(current_user)s erabiltzailearen gogoko mapak"
|
|
209
231
|
|
|
210
|
-
#: templates/auth/user_stars.html:
|
|
232
|
+
#: templates/auth/user_stars.html:21
|
|
211
233
|
#, python-format
|
|
212
234
|
msgid "%(current_user)s has no starred maps yet."
|
|
213
235
|
msgstr "%(current_user)s erabiltzaileak ez du gogoko maparik oraindik."
|
|
@@ -242,6 +264,10 @@ msgstr "Pasahitza"
|
|
|
242
264
|
msgid "Please choose a provider:"
|
|
243
265
|
msgstr "Aukeratu hornitzaile bat:"
|
|
244
266
|
|
|
267
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
268
|
+
msgid "About"
|
|
269
|
+
msgstr "Honi buruz"
|
|
270
|
+
|
|
245
271
|
#: templates/umap/about_summary.html:12
|
|
246
272
|
#, python-format
|
|
247
273
|
msgid ""
|
|
@@ -401,7 +427,7 @@ msgstr "Inspira zaitez dauden mapak arakatzen"
|
|
|
401
427
|
msgid "You are logged in. Continuing..."
|
|
402
428
|
msgstr "Sartu egin zara. Jarraitu..."
|
|
403
429
|
|
|
404
|
-
#: templates/umap/map_list.html:11 views.py:
|
|
430
|
+
#: templates/umap/map_list.html:11 views.py:438
|
|
405
431
|
msgid "by"
|
|
406
432
|
msgstr "nork eginda"
|
|
407
433
|
|
|
@@ -409,7 +435,7 @@ msgstr "nork eginda"
|
|
|
409
435
|
msgid "More"
|
|
410
436
|
msgstr "Gehiago"
|
|
411
437
|
|
|
412
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
438
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
413
439
|
msgid "Name"
|
|
414
440
|
msgstr "Izena"
|
|
415
441
|
|
|
@@ -427,13 +453,13 @@ msgstr "Nork edita dezake"
|
|
|
427
453
|
|
|
428
454
|
#: templates/umap/map_table.html:20
|
|
429
455
|
msgid "Last save"
|
|
430
|
-
msgstr "
|
|
456
|
+
msgstr "Gordetako azkena"
|
|
431
457
|
|
|
432
458
|
#: templates/umap/map_table.html:23
|
|
433
459
|
msgid "Owner"
|
|
434
460
|
msgstr "Jabea"
|
|
435
461
|
|
|
436
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
462
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
437
463
|
msgid "Actions"
|
|
438
464
|
msgstr "Ekintzak"
|
|
439
465
|
|
|
@@ -446,7 +472,7 @@ msgid "Share"
|
|
|
446
472
|
msgstr "Partekatu"
|
|
447
473
|
|
|
448
474
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
449
|
-
#: templates/umap/user_teams.html:
|
|
475
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
450
476
|
msgid "Edit"
|
|
451
477
|
msgstr "Editatu"
|
|
452
478
|
|
|
@@ -509,10 +535,6 @@ msgstr "Sartu"
|
|
|
509
535
|
msgid "Sign in"
|
|
510
536
|
msgstr "Izena eman"
|
|
511
537
|
|
|
512
|
-
#: templates/umap/navigation.html:22
|
|
513
|
-
msgid "About"
|
|
514
|
-
msgstr "Honi buruz"
|
|
515
|
-
|
|
516
538
|
#: templates/umap/navigation.html:30
|
|
517
539
|
msgid "Change password"
|
|
518
540
|
msgstr "Aldatu pasahitza"
|
|
@@ -521,52 +543,58 @@ msgstr "Aldatu pasahitza"
|
|
|
521
543
|
msgid "Log out"
|
|
522
544
|
msgstr "Irten"
|
|
523
545
|
|
|
524
|
-
#: templates/umap/password_change.html:
|
|
546
|
+
#: templates/umap/password_change.html:6
|
|
547
|
+
#: templates/umap/password_change.html:11
|
|
525
548
|
msgid "Password change"
|
|
526
549
|
msgstr "Pasahiz aldaketa"
|
|
527
550
|
|
|
528
|
-
#: templates/umap/password_change.html:
|
|
551
|
+
#: templates/umap/password_change.html:14
|
|
529
552
|
msgid ""
|
|
530
553
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
531
554
|
" password twice so we can verify you typed it in correctly."
|
|
532
555
|
msgstr "Idatzi zure pasahitz zaharra, eta ondoren zure pasahitz berria birritan, horrela ondo sartu duzula egiaztatuko dugu."
|
|
533
556
|
|
|
534
|
-
#: templates/umap/password_change.html:
|
|
557
|
+
#: templates/umap/password_change.html:21
|
|
535
558
|
msgid "Old password"
|
|
536
559
|
msgstr "Pasahitz zaharra"
|
|
537
560
|
|
|
538
|
-
#: templates/umap/password_change.html:
|
|
561
|
+
#: templates/umap/password_change.html:26
|
|
539
562
|
msgid "New password"
|
|
540
563
|
msgstr "Pasahitz berria"
|
|
541
564
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
565
|
+
#: templates/umap/password_change.html:30
|
|
543
566
|
msgid "New password confirmation"
|
|
544
567
|
msgstr "Pasahitz berriaren egiaztapena"
|
|
545
568
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
569
|
+
#: templates/umap/password_change.html:31
|
|
547
570
|
msgid "Change my password"
|
|
548
571
|
msgstr "Aldatu nire pasahitza"
|
|
549
572
|
|
|
550
|
-
#: templates/umap/password_change_done.html:
|
|
573
|
+
#: templates/umap/password_change_done.html:6
|
|
574
|
+
#: templates/umap/password_change_done.html:11
|
|
551
575
|
msgid "Password change successful"
|
|
552
576
|
msgstr "Pasahitza ondo aldatu da"
|
|
553
577
|
|
|
554
|
-
#: templates/umap/password_change_done.html:
|
|
578
|
+
#: templates/umap/password_change_done.html:14
|
|
555
579
|
msgid "Your password was changed."
|
|
556
580
|
msgstr "Zure pasahitza aldatu egin da"
|
|
557
581
|
|
|
558
|
-
#: templates/umap/search.html:
|
|
582
|
+
#: templates/umap/search.html:6
|
|
583
|
+
msgid "Explore maps"
|
|
584
|
+
msgstr "Arakatu mapak"
|
|
585
|
+
|
|
586
|
+
#: templates/umap/search.html:19
|
|
559
587
|
#, python-format
|
|
560
588
|
msgid "%(count)s map found:"
|
|
561
589
|
msgid_plural "%(count)s maps found:"
|
|
562
590
|
msgstr[0] "mapa %(count)s aurkitu da:"
|
|
563
591
|
msgstr[1] "%(count)s mapa aurkitu dira:"
|
|
564
592
|
|
|
565
|
-
#: templates/umap/search.html:
|
|
593
|
+
#: templates/umap/search.html:28
|
|
566
594
|
msgid "No map found."
|
|
567
595
|
msgstr "Ez da maparik aurkitu"
|
|
568
596
|
|
|
569
|
-
#: templates/umap/search.html:
|
|
597
|
+
#: templates/umap/search.html:33
|
|
570
598
|
msgid "Latest created maps"
|
|
571
599
|
msgstr "Sortutako azken mapak"
|
|
572
600
|
|
|
@@ -574,25 +602,38 @@ msgstr "Sortutako azken mapak"
|
|
|
574
602
|
msgid "Search maps"
|
|
575
603
|
msgstr "Bilatu mapak"
|
|
576
604
|
|
|
577
|
-
#: templates/umap/search_bar.html:
|
|
605
|
+
#: templates/umap/search_bar.html:16
|
|
578
606
|
msgid "Search"
|
|
579
607
|
msgstr "Bilatu"
|
|
580
608
|
|
|
581
|
-
#: templates/umap/
|
|
609
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
610
|
+
msgid "Team deletion"
|
|
611
|
+
msgstr "Taldea ezabatzea"
|
|
612
|
+
|
|
613
|
+
#: templates/umap/team_detail.html:6
|
|
614
|
+
#, python-format
|
|
615
|
+
msgid "%(current_team)s’s maps"
|
|
616
|
+
msgstr "%(current_team)s-ren mapak"
|
|
617
|
+
|
|
618
|
+
#: templates/umap/team_detail.html:14
|
|
582
619
|
#, python-format
|
|
583
620
|
msgid "Browse %(current_team)s's maps"
|
|
584
621
|
msgstr "Arakatu %(current_team)s-ren mapak"
|
|
585
622
|
|
|
586
|
-
#: templates/umap/team_detail.html:
|
|
623
|
+
#: templates/umap/team_detail.html:26
|
|
587
624
|
#, python-format
|
|
588
625
|
msgid "%(current_team)s has no public maps."
|
|
589
626
|
msgstr "%(current_team)s-k ez dauka mapa publikorik."
|
|
590
627
|
|
|
591
|
-
#: templates/umap/team_form.html:
|
|
628
|
+
#: templates/umap/team_form.html:6
|
|
629
|
+
msgid "Create or edit a team"
|
|
630
|
+
msgstr "Sortu edo editatu talde bat"
|
|
631
|
+
|
|
632
|
+
#: templates/umap/team_form.html:28
|
|
592
633
|
msgid "Delete this team"
|
|
593
634
|
msgstr "Ezabatu talde hau"
|
|
594
635
|
|
|
595
|
-
#: templates/umap/team_form.html:
|
|
636
|
+
#: templates/umap/team_form.html:51
|
|
596
637
|
msgid "Add user"
|
|
597
638
|
msgstr "Gehitu erabiltzailea"
|
|
598
639
|
|
|
@@ -613,78 +654,82 @@ msgstr "Deskargatu %(count)s mapa"
|
|
|
613
654
|
msgid "You have no map yet."
|
|
614
655
|
msgstr "Oraindik ez daukazu maparik."
|
|
615
656
|
|
|
616
|
-
#: templates/umap/user_teams.html:
|
|
657
|
+
#: templates/umap/user_teams.html:6
|
|
658
|
+
msgid "My Teams"
|
|
659
|
+
msgstr "Nire taldeak"
|
|
660
|
+
|
|
661
|
+
#: templates/umap/user_teams.html:21
|
|
617
662
|
msgid "Users"
|
|
618
663
|
msgstr "Erabiltzaileak"
|
|
619
664
|
|
|
620
|
-
#: templates/umap/user_teams.html:
|
|
665
|
+
#: templates/umap/user_teams.html:52
|
|
621
666
|
msgid "New team"
|
|
622
667
|
msgstr "Talde berria"
|
|
623
668
|
|
|
624
|
-
#: views.py:
|
|
669
|
+
#: views.py:235
|
|
625
670
|
msgid "Cannot delete a team with more than one member"
|
|
626
671
|
msgstr "Ezin da ezabatu kide bat baino gehiago dituen talde bat"
|
|
627
672
|
|
|
628
|
-
#: views.py:
|
|
673
|
+
#: views.py:239
|
|
629
674
|
#, python-format
|
|
630
675
|
msgid "Team “%(name)s” has been deleted"
|
|
631
676
|
msgstr "“%(name)s” taldea ezabatu da"
|
|
632
677
|
|
|
633
|
-
#: views.py:
|
|
678
|
+
#: views.py:443
|
|
634
679
|
msgid "View the map"
|
|
635
680
|
msgstr "Mapa ikusi"
|
|
636
681
|
|
|
637
|
-
#: views.py:
|
|
682
|
+
#: views.py:839
|
|
638
683
|
msgid "See full screen"
|
|
639
684
|
msgstr "Ikusi pantaila osoan"
|
|
640
685
|
|
|
641
|
-
#: views.py:
|
|
686
|
+
#: views.py:982
|
|
642
687
|
msgid "Map editors updated with success!"
|
|
643
688
|
msgstr "Maparen editoreak ondo eguneratu dira!"
|
|
644
689
|
|
|
645
|
-
#: views.py:
|
|
690
|
+
#: views.py:1018
|
|
646
691
|
#, python-format
|
|
647
692
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
648
693
|
msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
|
|
649
694
|
|
|
650
|
-
#: views.py:
|
|
695
|
+
#: views.py:1021
|
|
651
696
|
#, python-format
|
|
652
697
|
msgid "Here is your secret edit link: %(link)s"
|
|
653
698
|
msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
|
|
654
699
|
|
|
655
|
-
#: views.py:
|
|
700
|
+
#: views.py:1028
|
|
656
701
|
#, python-format
|
|
657
702
|
msgid "Can't send email to %(email)s"
|
|
658
703
|
msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
|
|
659
704
|
|
|
660
|
-
#: views.py:
|
|
705
|
+
#: views.py:1031
|
|
661
706
|
#, python-format
|
|
662
707
|
msgid "Email sent to %(email)s"
|
|
663
708
|
msgstr "Posta elektronikoa bidalita %(email)s-ri"
|
|
664
709
|
|
|
665
|
-
#: views.py:
|
|
710
|
+
#: views.py:1042
|
|
666
711
|
msgid "Only its owner can delete the map."
|
|
667
712
|
msgstr "Jabeak bakarrik ezabatu dezake mapa."
|
|
668
713
|
|
|
669
|
-
#: views.py:
|
|
714
|
+
#: views.py:1045
|
|
670
715
|
msgid "Map successfully deleted."
|
|
671
716
|
msgstr "Mapa behar bezala ezabatu da."
|
|
672
717
|
|
|
673
|
-
#: views.py:
|
|
718
|
+
#: views.py:1071
|
|
674
719
|
#, python-format
|
|
675
720
|
msgid ""
|
|
676
721
|
"Your map has been cloned! If you want to edit this map from another "
|
|
677
722
|
"computer, please use this link: %(anonymous_url)s"
|
|
678
723
|
msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
|
|
679
724
|
|
|
680
|
-
#: views.py:
|
|
725
|
+
#: views.py:1076
|
|
681
726
|
msgid "Congratulations, your map has been cloned!"
|
|
682
727
|
msgstr "Zorionak, zure mapa ondo klonatu da!"
|
|
683
728
|
|
|
684
|
-
#: views.py:
|
|
729
|
+
#: views.py:1330
|
|
685
730
|
msgid "Layer successfully deleted."
|
|
686
731
|
msgstr "Geruza ondo ezabatu da."
|
|
687
732
|
|
|
688
|
-
#: views.py:
|
|
733
|
+
#: views.py:1352
|
|
689
734
|
msgid "Permissions updated with success!"
|
|
690
735
|
msgstr "Baimenak behar bezala eguneratu dira!"
|
|
Binary file
|