umap-project 3.0.5__py3-none-any.whl → 3.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,12 +4,13 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
6
|
# Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025
|
|
7
|
+
# Dren ar Frankig <hadrienlouque@gmail.com>, 2025
|
|
7
8
|
# Mikel Larreategi <mlarreategi@codesyntax.com>, 2023
|
|
8
9
|
msgid ""
|
|
9
10
|
msgstr ""
|
|
10
11
|
"Project-Id-Version: uMap\n"
|
|
11
12
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2025-
|
|
13
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
13
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
15
|
"Last-Translator: Alexander Gabilondo <alexgabi@disroot.org>, 2024-2025\n"
|
|
15
16
|
"Language-Team: Basque (http://app.transifex.com/openstreetmap/umap/language/eu/)\n"
|
|
@@ -37,136 +38,228 @@ msgid ""
|
|
|
37
38
|
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
38
39
|
"Please configure another provider below before losing access to your account"
|
|
39
40
|
" and maps. Then, please logout and login again with the new provider."
|
|
40
|
-
msgstr ""
|
|
41
|
+
msgstr "Autentifikatzeko \"%(name)s\" erabiltzea zaharkituta dago eta laster kenduko da. Mesedez, konfiguratu behean beste hornitzaile bat zure kontua eta mapetan sarbidea galdu aurretik. Ondoren, saioa amaitu eta berriro hasi hornitzaile berriarekin."
|
|
41
42
|
|
|
42
|
-
#: models.py:
|
|
43
|
+
#: models.py:61 models.py:80
|
|
43
44
|
msgid "name"
|
|
44
45
|
msgstr "izena"
|
|
45
46
|
|
|
46
|
-
#: models.py:
|
|
47
|
+
#: models.py:63 models.py:503
|
|
47
48
|
msgid "description"
|
|
48
49
|
msgstr "deskribapena"
|
|
49
50
|
|
|
50
|
-
#: models.py:
|
|
51
|
+
#: models.py:111
|
|
51
52
|
msgid "details"
|
|
52
53
|
msgstr "xehetasunak"
|
|
53
54
|
|
|
54
|
-
#: models.py:
|
|
55
|
+
#: models.py:112
|
|
55
56
|
msgid "Link to a page where the licence is detailed."
|
|
56
57
|
msgstr "Estekatu lizentzia zehazten den orrialde batera."
|
|
57
58
|
|
|
58
|
-
#: models.py:
|
|
59
|
+
#: models.py:122
|
|
59
60
|
msgid "URL template using OSM tile format"
|
|
60
61
|
msgstr "URLaren txantiloia OSMren lauzen formatua erabiliz"
|
|
61
62
|
|
|
62
|
-
#: models.py:
|
|
63
|
+
#: models.py:128
|
|
63
64
|
msgid "Order of the tilelayers in the edit box"
|
|
64
65
|
msgstr "Lauzen geruzek edizio kutxan duten ordena"
|
|
65
66
|
|
|
66
|
-
#: models.py:
|
|
67
|
+
#: models.py:176 models.py:497
|
|
67
68
|
msgid "Only editable with secret edit link"
|
|
68
69
|
msgstr "Bakarrik esteka sekretuarekin bakarrik editatu daiteke"
|
|
69
70
|
|
|
70
|
-
#: models.py:
|
|
71
|
+
#: models.py:177 models.py:498
|
|
71
72
|
msgid "Everyone can edit"
|
|
72
73
|
msgstr "Edonork editatu dezake"
|
|
73
74
|
|
|
74
|
-
#: models.py:
|
|
75
|
+
#: models.py:180 models.py:491
|
|
75
76
|
msgid "Everyone"
|
|
76
77
|
msgstr "Edonork"
|
|
77
78
|
|
|
78
|
-
#: models.py:
|
|
79
|
+
#: models.py:181 models.py:190 models.py:492
|
|
79
80
|
msgid "Editors and team only"
|
|
80
81
|
msgstr "Editoreak eta taldea soilik"
|
|
81
82
|
|
|
82
|
-
#: models.py:
|
|
83
|
+
#: models.py:182 models.py:493
|
|
83
84
|
msgid "Owner only"
|
|
84
85
|
msgstr "Jabea bakarrik"
|
|
85
86
|
|
|
86
|
-
#: models.py:
|
|
87
|
+
#: models.py:185
|
|
87
88
|
msgid "Draft (private)"
|
|
88
89
|
msgstr "Zirriborroa (pribatua)"
|
|
89
90
|
|
|
90
|
-
#: models.py:
|
|
91
|
+
#: models.py:186
|
|
91
92
|
msgid "Everyone (public)"
|
|
92
93
|
msgstr "Edonork (publikoa)"
|
|
93
94
|
|
|
94
|
-
#: models.py:
|
|
95
|
+
#: models.py:189
|
|
95
96
|
msgid "Anyone with link"
|
|
96
97
|
msgstr "Esteka duen edonork"
|
|
97
98
|
|
|
98
|
-
#: models.py:
|
|
99
|
+
#: models.py:191
|
|
99
100
|
msgid "Blocked"
|
|
100
101
|
msgstr "Blokeatuta"
|
|
101
102
|
|
|
102
|
-
#: models.py:
|
|
103
|
+
#: models.py:192 models.py:487
|
|
103
104
|
msgid "Deleted"
|
|
104
105
|
msgstr "Ezabatua"
|
|
105
106
|
|
|
106
|
-
#: models.py:
|
|
107
|
+
#: models.py:195
|
|
107
108
|
msgid "center"
|
|
108
109
|
msgstr "erdiko puntua"
|
|
109
110
|
|
|
110
|
-
#: models.py:
|
|
111
|
+
#: models.py:196
|
|
111
112
|
msgid "zoom"
|
|
112
113
|
msgstr "zooma"
|
|
113
114
|
|
|
114
|
-
#: models.py:
|
|
115
|
+
#: models.py:198
|
|
115
116
|
msgid "locate"
|
|
116
117
|
msgstr "kokatu"
|
|
117
118
|
|
|
118
|
-
#: models.py:
|
|
119
|
+
#: models.py:198
|
|
119
120
|
msgid "Locate user on load?"
|
|
120
121
|
msgstr "Kokatu erabiltzailea mapa kargatzen denean?"
|
|
121
122
|
|
|
122
|
-
#: models.py:
|
|
123
|
+
#: models.py:202
|
|
123
124
|
msgid "Choose the map licence."
|
|
124
125
|
msgstr "Aukeratu maparen lizentzia."
|
|
125
126
|
|
|
126
|
-
#: models.py:
|
|
127
|
+
#: models.py:203
|
|
127
128
|
msgid "licence"
|
|
128
129
|
msgstr "lizentzia"
|
|
129
130
|
|
|
130
|
-
#: models.py:
|
|
131
|
+
#: models.py:214
|
|
131
132
|
msgid "owner"
|
|
132
133
|
msgstr "jabea"
|
|
133
134
|
|
|
134
|
-
#: models.py:
|
|
135
|
+
#: models.py:218
|
|
135
136
|
msgid "editors"
|
|
136
137
|
msgstr "editoreak"
|
|
137
138
|
|
|
138
|
-
#: models.py:
|
|
139
|
+
#: models.py:224
|
|
139
140
|
msgid "team"
|
|
140
141
|
msgstr "taldea"
|
|
141
142
|
|
|
142
|
-
#: models.py:
|
|
143
|
+
#: models.py:230 models.py:519
|
|
143
144
|
msgid "edit status"
|
|
144
145
|
msgstr "editatu egoera"
|
|
145
146
|
|
|
146
|
-
#: models.py:
|
|
147
|
+
#: models.py:235 models.py:524
|
|
147
148
|
msgid "share status"
|
|
148
149
|
msgstr "partekatu egoera"
|
|
149
150
|
|
|
150
|
-
#: models.py:
|
|
151
|
+
#: models.py:238 models.py:514
|
|
151
152
|
msgid "settings"
|
|
152
153
|
msgstr "ezarpenak"
|
|
153
154
|
|
|
154
|
-
#: models.py:
|
|
155
|
+
#: models.py:243
|
|
156
|
+
msgid "save as template"
|
|
157
|
+
msgstr "gorde txantiloi gisa"
|
|
158
|
+
|
|
159
|
+
#: models.py:244
|
|
160
|
+
msgid "This map is a template map."
|
|
161
|
+
msgstr "Mapa hau mapa-txantiloia da."
|
|
162
|
+
|
|
163
|
+
#: models.py:420
|
|
155
164
|
msgid "Clone of"
|
|
156
165
|
msgstr "Beste honen klona"
|
|
157
166
|
|
|
158
|
-
#: models.py:
|
|
167
|
+
#: models.py:486 models.py:490 models.py:496
|
|
159
168
|
msgid "Inherit"
|
|
160
169
|
msgstr "Heredatu"
|
|
161
170
|
|
|
162
|
-
#: models.py:
|
|
171
|
+
#: models.py:509
|
|
163
172
|
msgid "display on load"
|
|
164
173
|
msgstr "erakutsi kargatzean"
|
|
165
174
|
|
|
166
|
-
#: models.py:
|
|
175
|
+
#: models.py:510
|
|
167
176
|
msgid "Display this layer on load."
|
|
168
177
|
msgstr "Erakutsi geruza hau kargatzean"
|
|
169
178
|
|
|
179
|
+
#: settings/base.py:283
|
|
180
|
+
msgid "uMap user documentation"
|
|
181
|
+
msgstr "uMap erabiltzailearen dokumentazioa"
|
|
182
|
+
|
|
183
|
+
#: settings/base.py:288
|
|
184
|
+
msgid "Video tutorials"
|
|
185
|
+
msgstr "Bideo-tutorialak"
|
|
186
|
+
|
|
187
|
+
#: settings/base.py:293
|
|
188
|
+
msgid "OpenStreetMap.org forum"
|
|
189
|
+
msgstr "OpenStreetMap.org foroa"
|
|
190
|
+
|
|
191
|
+
#: settings/base.py:298
|
|
192
|
+
msgid "OpenStreetMap France forum"
|
|
193
|
+
msgstr "Frantziako OpenStreetMap foroa"
|
|
194
|
+
|
|
195
|
+
#: settings/base.py:318
|
|
196
|
+
msgid "Art and Culture"
|
|
197
|
+
msgstr "Arte eta kultura"
|
|
198
|
+
|
|
199
|
+
#: settings/base.py:319
|
|
200
|
+
msgid "Cycling"
|
|
201
|
+
msgstr "Txirrindularitza"
|
|
202
|
+
|
|
203
|
+
#: settings/base.py:320
|
|
204
|
+
msgid "Business"
|
|
205
|
+
msgstr "Negozioak"
|
|
206
|
+
|
|
207
|
+
#: settings/base.py:321
|
|
208
|
+
msgid "Environment"
|
|
209
|
+
msgstr "Ingurugiroa"
|
|
210
|
+
|
|
211
|
+
#: settings/base.py:322
|
|
212
|
+
msgid "Education"
|
|
213
|
+
msgstr "Hezkuntza"
|
|
214
|
+
|
|
215
|
+
#: settings/base.py:323
|
|
216
|
+
msgid "Food and Agriculture"
|
|
217
|
+
msgstr "Elikadura eta nekazaritza"
|
|
218
|
+
|
|
219
|
+
#: settings/base.py:324
|
|
220
|
+
msgid "Geopolitics"
|
|
221
|
+
msgstr "Geopolitika"
|
|
222
|
+
|
|
223
|
+
#: settings/base.py:325
|
|
224
|
+
msgid "Health"
|
|
225
|
+
msgstr "Osasuna"
|
|
226
|
+
|
|
227
|
+
#: settings/base.py:326
|
|
228
|
+
msgid "Hiking"
|
|
229
|
+
msgstr "Txangozaletasuna"
|
|
230
|
+
|
|
231
|
+
#: settings/base.py:327
|
|
232
|
+
msgid "History"
|
|
233
|
+
msgstr "Historia"
|
|
234
|
+
|
|
235
|
+
#: settings/base.py:328
|
|
236
|
+
msgid "Public sector"
|
|
237
|
+
msgstr "Sektore publikoa"
|
|
238
|
+
|
|
239
|
+
#: settings/base.py:329
|
|
240
|
+
msgid "Science"
|
|
241
|
+
msgstr "Zientzia"
|
|
242
|
+
|
|
243
|
+
#: settings/base.py:330
|
|
244
|
+
msgid "Shopping"
|
|
245
|
+
msgstr "Erosketak"
|
|
246
|
+
|
|
247
|
+
#: settings/base.py:331
|
|
248
|
+
msgid "Sport and Leisure"
|
|
249
|
+
msgstr "Kirola eta aisia"
|
|
250
|
+
|
|
251
|
+
#: settings/base.py:332
|
|
252
|
+
msgid "Travel"
|
|
253
|
+
msgstr "Bidaiak"
|
|
254
|
+
|
|
255
|
+
#: settings/base.py:333
|
|
256
|
+
msgid "Transports"
|
|
257
|
+
msgstr "Garraioa"
|
|
258
|
+
|
|
259
|
+
#: settings/base.py:334
|
|
260
|
+
msgid "Tourism"
|
|
261
|
+
msgstr "Turismoa"
|
|
262
|
+
|
|
170
263
|
#: templates/403.html:8
|
|
171
264
|
msgid ""
|
|
172
265
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -309,7 +402,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
309
402
|
msgstr "Eta <a href=\"%(repo_url)s\">software librea</a> da!"
|
|
310
403
|
|
|
311
404
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
312
|
-
#: templates/umap/user_dashboard.html:
|
|
405
|
+
#: templates/umap/user_dashboard.html:16
|
|
313
406
|
msgid "Create a map"
|
|
314
407
|
msgstr "Sortu mapa bat"
|
|
315
408
|
|
|
@@ -407,11 +500,20 @@ msgstr "Nire mapak (%(count)s)"
|
|
|
407
500
|
msgid "My Maps"
|
|
408
501
|
msgstr "Nire mapak"
|
|
409
502
|
|
|
410
|
-
#: templates/umap/dashboard_menu.html:
|
|
503
|
+
#: templates/umap/dashboard_menu.html:11
|
|
504
|
+
#, python-format
|
|
505
|
+
msgid "My Templates (%(count)s)"
|
|
506
|
+
msgstr "Nire txantiloiak (%(count)s)"
|
|
507
|
+
|
|
508
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
509
|
+
msgid "My Templates"
|
|
510
|
+
msgstr "Nire txantiloiak"
|
|
511
|
+
|
|
512
|
+
#: templates/umap/dashboard_menu.html:17
|
|
411
513
|
msgid "My profile"
|
|
412
514
|
msgstr "Nire profila"
|
|
413
515
|
|
|
414
|
-
#: templates/umap/dashboard_menu.html:
|
|
516
|
+
#: templates/umap/dashboard_menu.html:20
|
|
415
517
|
msgid "My teams"
|
|
416
518
|
msgstr "Nire taldeak"
|
|
417
519
|
|
|
@@ -419,7 +521,7 @@ msgstr "Nire taldeak"
|
|
|
419
521
|
msgid "Map of the uMaps"
|
|
420
522
|
msgstr "uMap-en mapa"
|
|
421
523
|
|
|
422
|
-
#: templates/umap/home.html:
|
|
524
|
+
#: templates/umap/home.html:25
|
|
423
525
|
msgid "Get inspired, browse maps"
|
|
424
526
|
msgstr "Inspira zaitez dauden mapak arakatzen"
|
|
425
527
|
|
|
@@ -427,11 +529,23 @@ msgstr "Inspira zaitez dauden mapak arakatzen"
|
|
|
427
529
|
msgid "You are logged in. Continuing..."
|
|
428
530
|
msgstr "Sartu egin zara. Jarraitu..."
|
|
429
531
|
|
|
430
|
-
#: templates/umap/map_list.html:
|
|
532
|
+
#: templates/umap/map_list.html:15
|
|
533
|
+
msgid "template"
|
|
534
|
+
msgstr "txantiloia"
|
|
535
|
+
|
|
536
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
431
537
|
msgid "by"
|
|
432
538
|
msgstr "nork eginda"
|
|
433
539
|
|
|
434
|
-
#: templates/umap/map_list.html:
|
|
540
|
+
#: templates/umap/map_list.html:22
|
|
541
|
+
msgid "See the template"
|
|
542
|
+
msgstr "Ikusi txantiloia"
|
|
543
|
+
|
|
544
|
+
#: templates/umap/map_list.html:22
|
|
545
|
+
msgid "See the map"
|
|
546
|
+
msgstr "Ikusi mapa"
|
|
547
|
+
|
|
548
|
+
#: templates/umap/map_list.html:28
|
|
435
549
|
msgid "More"
|
|
436
550
|
msgstr "Gehiago"
|
|
437
551
|
|
|
@@ -463,7 +577,7 @@ msgstr "Jabea"
|
|
|
463
577
|
msgid "Actions"
|
|
464
578
|
msgstr "Ekintzak"
|
|
465
579
|
|
|
466
|
-
#: templates/umap/map_table.html:
|
|
580
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
467
581
|
msgid "Open preview"
|
|
468
582
|
msgstr "Ireki aurrebista"
|
|
469
583
|
|
|
@@ -590,11 +704,15 @@ msgid_plural "%(count)s maps found:"
|
|
|
590
704
|
msgstr[0] "mapa %(count)s aurkitu da:"
|
|
591
705
|
msgstr[1] "%(count)s mapa aurkitu dira:"
|
|
592
706
|
|
|
593
|
-
#: templates/umap/search.html:
|
|
707
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
594
708
|
msgid "No map found."
|
|
595
709
|
msgstr "Ez da maparik aurkitu"
|
|
596
710
|
|
|
597
|
-
#: templates/umap/search.html:
|
|
711
|
+
#: templates/umap/search.html:36
|
|
712
|
+
msgid "Latest created maps in category"
|
|
713
|
+
msgstr "Kategorian sortutako azken mapak"
|
|
714
|
+
|
|
715
|
+
#: templates/umap/search.html:43
|
|
598
716
|
msgid "Latest created maps"
|
|
599
717
|
msgstr "Sortutako azken mapak"
|
|
600
718
|
|
|
@@ -602,7 +720,11 @@ msgstr "Sortutako azken mapak"
|
|
|
602
720
|
msgid "Search maps"
|
|
603
721
|
msgstr "Bilatu mapak"
|
|
604
722
|
|
|
605
|
-
#: templates/umap/search_bar.html:
|
|
723
|
+
#: templates/umap/search_bar.html:14
|
|
724
|
+
msgid "Any category"
|
|
725
|
+
msgstr "Edozein kategoria"
|
|
726
|
+
|
|
727
|
+
#: templates/umap/search_bar.html:19
|
|
606
728
|
msgid "Search"
|
|
607
729
|
msgstr "Bilatu"
|
|
608
730
|
|
|
@@ -637,20 +759,20 @@ msgstr "Ezabatu talde hau"
|
|
|
637
759
|
msgid "Add user"
|
|
638
760
|
msgstr "Gehitu erabiltzailea"
|
|
639
761
|
|
|
640
|
-
#: templates/umap/user_dashboard.html:
|
|
762
|
+
#: templates/umap/user_dashboard.html:10
|
|
641
763
|
msgid "Search my maps"
|
|
642
764
|
msgstr "Bilatu mapen arabera"
|
|
643
765
|
|
|
644
|
-
#: templates/umap/user_dashboard.html:
|
|
645
|
-
msgid "Map’s
|
|
646
|
-
msgstr "Maparen
|
|
766
|
+
#: templates/umap/user_dashboard.html:11
|
|
767
|
+
msgid "Map’s name"
|
|
768
|
+
msgstr "Maparen izena"
|
|
647
769
|
|
|
648
|
-
#: templates/umap/user_dashboard.html:
|
|
770
|
+
#: templates/umap/user_dashboard.html:12
|
|
649
771
|
#, python-format
|
|
650
772
|
msgid "Download %(count)s maps"
|
|
651
773
|
msgstr "Deskargatu %(count)s mapa"
|
|
652
774
|
|
|
653
|
-
#: templates/umap/user_dashboard.html:
|
|
775
|
+
#: templates/umap/user_dashboard.html:15
|
|
654
776
|
msgid "You have no map yet."
|
|
655
777
|
msgstr "Oraindik ez daukazu maparik."
|
|
656
778
|
|
|
@@ -666,70 +788,95 @@ msgstr "Erabiltzaileak"
|
|
|
666
788
|
msgid "New team"
|
|
667
789
|
msgstr "Talde berria"
|
|
668
790
|
|
|
669
|
-
#:
|
|
791
|
+
#: templates/umap/user_templates.html:10
|
|
792
|
+
msgid "Search my templates"
|
|
793
|
+
msgstr "Bilatu nire txantiloiak"
|
|
794
|
+
|
|
795
|
+
#: templates/umap/user_templates.html:11
|
|
796
|
+
msgid "Template’s name"
|
|
797
|
+
msgstr "Txantiloiaren izena"
|
|
798
|
+
|
|
799
|
+
#: templates/umap/user_templates.html:12
|
|
800
|
+
#, python-format
|
|
801
|
+
msgid "Download %(count)s templates"
|
|
802
|
+
msgstr "Deskargatu %(count)s txantiloi"
|
|
803
|
+
|
|
804
|
+
#: templates/umap/user_templates.html:15
|
|
805
|
+
msgid "You have no template yet."
|
|
806
|
+
msgstr "Oraindik ez duzu txantiloirik."
|
|
807
|
+
|
|
808
|
+
#: templates/umap/user_templates.html:16
|
|
809
|
+
msgid "Create a template"
|
|
810
|
+
msgstr "Sortu txantiloi bat"
|
|
811
|
+
|
|
812
|
+
#: templates/umap/user_templates.html:17
|
|
813
|
+
msgid "No template found."
|
|
814
|
+
msgstr "Ez da txantiloirik aurkitu."
|
|
815
|
+
|
|
816
|
+
#: views.py:233
|
|
670
817
|
msgid "Cannot delete a team with more than one member"
|
|
671
818
|
msgstr "Ezin da ezabatu kide bat baino gehiago dituen talde bat"
|
|
672
819
|
|
|
673
|
-
#: views.py:
|
|
820
|
+
#: views.py:237
|
|
674
821
|
#, python-format
|
|
675
822
|
msgid "Team “%(name)s” has been deleted"
|
|
676
823
|
msgstr "“%(name)s” taldea ezabatu da"
|
|
677
824
|
|
|
678
|
-
#: views.py:
|
|
825
|
+
#: views.py:463
|
|
679
826
|
msgid "View the map"
|
|
680
827
|
msgstr "Mapa ikusi"
|
|
681
828
|
|
|
682
|
-
#: views.py:
|
|
829
|
+
#: views.py:864
|
|
683
830
|
msgid "See full screen"
|
|
684
831
|
msgstr "Ikusi pantaila osoan"
|
|
685
832
|
|
|
686
|
-
#: views.py:
|
|
833
|
+
#: views.py:1007
|
|
687
834
|
msgid "Map editors updated with success!"
|
|
688
835
|
msgstr "Maparen editoreak ondo eguneratu dira!"
|
|
689
836
|
|
|
690
|
-
#: views.py:
|
|
837
|
+
#: views.py:1043
|
|
691
838
|
#, python-format
|
|
692
839
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
693
840
|
msgstr "Zure mapa editatzeko uMap-en esteka: %(map_name)s"
|
|
694
841
|
|
|
695
|
-
#: views.py:
|
|
842
|
+
#: views.py:1046
|
|
696
843
|
#, python-format
|
|
697
844
|
msgid "Here is your secret edit link: %(link)s"
|
|
698
845
|
msgstr "Hona hemen zure editatzeko esteka sekretua:: %(link)s"
|
|
699
846
|
|
|
700
|
-
#: views.py:
|
|
847
|
+
#: views.py:1053
|
|
701
848
|
#, python-format
|
|
702
849
|
msgid "Can't send email to %(email)s"
|
|
703
850
|
msgstr "Ezin da posta elektronikorik bidali %(email)s-ri"
|
|
704
851
|
|
|
705
|
-
#: views.py:
|
|
852
|
+
#: views.py:1056
|
|
706
853
|
#, python-format
|
|
707
854
|
msgid "Email sent to %(email)s"
|
|
708
855
|
msgstr "Posta elektronikoa bidalita %(email)s-ri"
|
|
709
856
|
|
|
710
|
-
#: views.py:
|
|
857
|
+
#: views.py:1067
|
|
711
858
|
msgid "Only its owner can delete the map."
|
|
712
859
|
msgstr "Jabeak bakarrik ezabatu dezake mapa."
|
|
713
860
|
|
|
714
|
-
#: views.py:
|
|
861
|
+
#: views.py:1073
|
|
715
862
|
msgid "Map successfully deleted."
|
|
716
863
|
msgstr "Mapa behar bezala ezabatu da."
|
|
717
864
|
|
|
718
|
-
#: views.py:
|
|
865
|
+
#: views.py:1099
|
|
719
866
|
#, python-format
|
|
720
867
|
msgid ""
|
|
721
868
|
"Your map has been cloned! If you want to edit this map from another "
|
|
722
869
|
"computer, please use this link: %(anonymous_url)s"
|
|
723
870
|
msgstr "Zure mapa klonatu egin da! Mapa hau beste nabigatzaile batetik editatzeko erabili esteka hau: %(anonymous_url)s"
|
|
724
871
|
|
|
725
|
-
#: views.py:
|
|
872
|
+
#: views.py:1104
|
|
726
873
|
msgid "Congratulations, your map has been cloned!"
|
|
727
874
|
msgstr "Zorionak, zure mapa ondo klonatu da!"
|
|
728
875
|
|
|
729
|
-
#: views.py:
|
|
876
|
+
#: views.py:1358
|
|
730
877
|
msgid "Layer successfully deleted."
|
|
731
878
|
msgstr "Geruza ondo ezabatu da."
|
|
732
879
|
|
|
733
|
-
#: views.py:
|
|
880
|
+
#: views.py:1380
|
|
734
881
|
msgid "Permissions updated with success!"
|
|
735
882
|
msgstr "Baimenak behar bezala eguneratu dira!"
|
|
Binary file
|