umap-project 3.0.6__py3-none-any.whl → 3.1.1__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.
- 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.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 +125 -59
- 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/providers/bitbucket.png +0 -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 +11 -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 +33 -1
- umap/static/umap/locale/en.json +33 -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_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_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 +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
umap/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = "3.
|
|
1
|
+
VERSION = "3.1.1"
|
umap/forms.py
CHANGED
|
Binary file
|
|
@@ -10,7 +10,7 @@ msgid ""
|
|
|
10
10
|
msgstr ""
|
|
11
11
|
"Project-Id-Version: uMap\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2025-
|
|
13
|
+
"POT-Creation-Date: 2025-06-10 09:19+0000\n"
|
|
14
14
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
15
15
|
"Last-Translator: Dren ar Frankig <hadrienlouque@gmail.com>, 2023-2025\n"
|
|
16
16
|
"Language-Team: Breton (http://app.transifex.com/openstreetmap/umap/language/br/)\n"
|
|
@@ -28,138 +28,238 @@ msgstr "Ezporzhiadur CSV"
|
|
|
28
28
|
msgid "This map is not publicly available"
|
|
29
29
|
msgstr "Ar gartenn-mañ n'eo ket publik"
|
|
30
30
|
|
|
31
|
-
#: middleware.py:
|
|
31
|
+
#: middleware.py:19
|
|
32
32
|
msgid "Site is readonly for maintenance"
|
|
33
33
|
msgstr "Al lec'hienn zo da lenn hepken rak emeur ouzh he c'hempenn"
|
|
34
34
|
|
|
35
|
-
#:
|
|
35
|
+
#: middleware.py:34
|
|
36
|
+
#, python-format
|
|
37
|
+
msgid ""
|
|
38
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
39
|
+
"Please configure another provider below before losing access to your account"
|
|
40
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
41
|
+
msgstr ""
|
|
42
|
+
|
|
43
|
+
#: models.py:61 models.py:80
|
|
36
44
|
msgid "name"
|
|
37
45
|
msgstr "anv"
|
|
38
46
|
|
|
39
|
-
#: models.py:
|
|
47
|
+
#: models.py:63 models.py:503
|
|
40
48
|
msgid "description"
|
|
41
49
|
msgstr "deskrivadur"
|
|
42
50
|
|
|
43
|
-
#: models.py:
|
|
51
|
+
#: models.py:111
|
|
44
52
|
msgid "details"
|
|
45
53
|
msgstr "munudoù"
|
|
46
54
|
|
|
47
|
-
#: models.py:
|
|
55
|
+
#: models.py:112
|
|
48
56
|
msgid "Link to a page where the licence is detailed."
|
|
49
57
|
msgstr "Liamm war-zu ur bajenn a zispleg an aotre-implijout."
|
|
50
58
|
|
|
51
|
-
#: models.py:
|
|
59
|
+
#: models.py:122
|
|
52
60
|
msgid "URL template using OSM tile format"
|
|
53
61
|
msgstr "Patrom URL a implij furmad teol OSM"
|
|
54
62
|
|
|
55
|
-
#: models.py:
|
|
63
|
+
#: models.py:128
|
|
56
64
|
msgid "Order of the tilelayers in the edit box"
|
|
57
65
|
msgstr ""
|
|
58
66
|
|
|
59
|
-
#: models.py:
|
|
67
|
+
#: models.py:176 models.py:497
|
|
60
68
|
msgid "Only editable with secret edit link"
|
|
61
69
|
msgstr "N'haller he c'hemmañ nemet gant ul liamm aozañ kuzh"
|
|
62
70
|
|
|
63
|
-
#: models.py:
|
|
71
|
+
#: models.py:177 models.py:498
|
|
64
72
|
msgid "Everyone can edit"
|
|
65
73
|
msgstr "An holl a c'hall kemmañ"
|
|
66
74
|
|
|
67
|
-
#: models.py:
|
|
75
|
+
#: models.py:180 models.py:491
|
|
68
76
|
msgid "Everyone"
|
|
69
77
|
msgstr "An holl"
|
|
70
78
|
|
|
71
|
-
#: models.py:
|
|
79
|
+
#: models.py:181 models.py:190 models.py:492
|
|
72
80
|
msgid "Editors and team only"
|
|
73
81
|
msgstr "An aozerien hag ar skipailh hepken"
|
|
74
82
|
|
|
75
|
-
#: models.py:
|
|
83
|
+
#: models.py:182 models.py:493
|
|
76
84
|
msgid "Owner only"
|
|
77
85
|
msgstr "Ar perc'henner hepken"
|
|
78
86
|
|
|
79
|
-
#: models.py:
|
|
87
|
+
#: models.py:185
|
|
80
88
|
msgid "Draft (private)"
|
|
81
89
|
msgstr "Brouilhed (prevez)"
|
|
82
90
|
|
|
83
|
-
#: models.py:
|
|
91
|
+
#: models.py:186
|
|
84
92
|
msgid "Everyone (public)"
|
|
85
93
|
msgstr "An holl (publik)"
|
|
86
94
|
|
|
87
|
-
#: models.py:
|
|
95
|
+
#: models.py:189
|
|
88
96
|
msgid "Anyone with link"
|
|
89
97
|
msgstr "Piv bennak en deus ul liamm"
|
|
90
98
|
|
|
91
|
-
#: models.py:
|
|
99
|
+
#: models.py:191
|
|
92
100
|
msgid "Blocked"
|
|
93
101
|
msgstr "Stanket"
|
|
94
102
|
|
|
95
|
-
#: models.py:
|
|
103
|
+
#: models.py:192 models.py:487
|
|
96
104
|
msgid "Deleted"
|
|
97
105
|
msgstr "Dilemel"
|
|
98
106
|
|
|
99
|
-
#: models.py:
|
|
107
|
+
#: models.py:195
|
|
100
108
|
msgid "center"
|
|
101
109
|
msgstr "kreizañ"
|
|
102
110
|
|
|
103
|
-
#: models.py:
|
|
111
|
+
#: models.py:196
|
|
104
112
|
msgid "zoom"
|
|
105
113
|
msgstr "zoumañ"
|
|
106
114
|
|
|
107
|
-
#: models.py:
|
|
115
|
+
#: models.py:198
|
|
108
116
|
msgid "locate"
|
|
109
117
|
msgstr "lec'hiañ"
|
|
110
118
|
|
|
111
|
-
#: models.py:
|
|
119
|
+
#: models.py:198
|
|
112
120
|
msgid "Locate user on load?"
|
|
113
121
|
msgstr "Lec'hiañ an implijer en ur gargañ?"
|
|
114
122
|
|
|
115
|
-
#: models.py:
|
|
123
|
+
#: models.py:202
|
|
116
124
|
msgid "Choose the map licence."
|
|
117
125
|
msgstr "Dibabit aotre-implijout ar gartenn."
|
|
118
126
|
|
|
119
|
-
#: models.py:
|
|
127
|
+
#: models.py:203
|
|
120
128
|
msgid "licence"
|
|
121
129
|
msgstr "aotre"
|
|
122
130
|
|
|
123
|
-
#: models.py:
|
|
131
|
+
#: models.py:214
|
|
124
132
|
msgid "owner"
|
|
125
133
|
msgstr "perc'henner"
|
|
126
134
|
|
|
127
|
-
#: models.py:
|
|
135
|
+
#: models.py:218
|
|
128
136
|
msgid "editors"
|
|
129
137
|
msgstr "aozerien"
|
|
130
138
|
|
|
131
|
-
#: models.py:
|
|
139
|
+
#: models.py:224
|
|
132
140
|
msgid "team"
|
|
133
141
|
msgstr "skipailh"
|
|
134
142
|
|
|
135
|
-
#: models.py:
|
|
143
|
+
#: models.py:230 models.py:519
|
|
136
144
|
msgid "edit status"
|
|
137
145
|
msgstr "statud aozañ"
|
|
138
146
|
|
|
139
|
-
#: models.py:
|
|
147
|
+
#: models.py:235 models.py:524
|
|
140
148
|
msgid "share status"
|
|
141
149
|
msgstr "digor da biv?"
|
|
142
150
|
|
|
143
|
-
#: models.py:
|
|
151
|
+
#: models.py:238 models.py:514
|
|
144
152
|
msgid "settings"
|
|
145
153
|
msgstr "arventennoù"
|
|
146
154
|
|
|
147
|
-
#: models.py:
|
|
155
|
+
#: models.py:243
|
|
156
|
+
msgid "save as template"
|
|
157
|
+
msgstr "enrollañ evel ur patrom"
|
|
158
|
+
|
|
159
|
+
#: models.py:244
|
|
160
|
+
msgid "This map is a template map."
|
|
161
|
+
msgstr "Ar gartenn-mañ zo ur gartenn patrom"
|
|
162
|
+
|
|
163
|
+
#: models.py:420
|
|
148
164
|
msgid "Clone of"
|
|
149
165
|
msgstr "Eilenn eus"
|
|
150
166
|
|
|
151
|
-
#: models.py:
|
|
167
|
+
#: models.py:486 models.py:490 models.py:496
|
|
152
168
|
msgid "Inherit"
|
|
153
169
|
msgstr "Dre ziouer"
|
|
154
170
|
|
|
155
|
-
#: models.py:
|
|
171
|
+
#: models.py:509
|
|
156
172
|
msgid "display on load"
|
|
157
173
|
msgstr "diskwel pa vez karget"
|
|
158
174
|
|
|
159
|
-
#: models.py:
|
|
175
|
+
#: models.py:510
|
|
160
176
|
msgid "Display this layer on load."
|
|
161
177
|
msgstr "Diskwel ar gwiskad-mañ pa vez karget"
|
|
162
178
|
|
|
179
|
+
#: settings/base.py:283
|
|
180
|
+
msgid "uMap user documentation"
|
|
181
|
+
msgstr "Teuliadur an implijer uMap"
|
|
182
|
+
|
|
183
|
+
#: settings/base.py:288
|
|
184
|
+
msgid "Video tutorials"
|
|
185
|
+
msgstr "Tutorieloù video"
|
|
186
|
+
|
|
187
|
+
#: settings/base.py:293
|
|
188
|
+
msgid "OpenStreetMap.org forum"
|
|
189
|
+
msgstr "Forom OpenStreetMap.org"
|
|
190
|
+
|
|
191
|
+
#: settings/base.py:298
|
|
192
|
+
msgid "OpenStreetMap France forum"
|
|
193
|
+
msgstr "Forom OpenStreetMap Frañs"
|
|
194
|
+
|
|
195
|
+
#: settings/base.py:318
|
|
196
|
+
msgid "Art and Culture"
|
|
197
|
+
msgstr "Arzoù ha sevenadur"
|
|
198
|
+
|
|
199
|
+
#: settings/base.py:319
|
|
200
|
+
msgid "Cycling"
|
|
201
|
+
msgstr "Marc'hhouarnerezh"
|
|
202
|
+
|
|
203
|
+
#: settings/base.py:320
|
|
204
|
+
msgid "Business"
|
|
205
|
+
msgstr "Ekonomiezh"
|
|
206
|
+
|
|
207
|
+
#: settings/base.py:321
|
|
208
|
+
msgid "Environment"
|
|
209
|
+
msgstr "Endro"
|
|
210
|
+
|
|
211
|
+
#: settings/base.py:322
|
|
212
|
+
msgid "Education"
|
|
213
|
+
msgstr "Deskadurezh"
|
|
214
|
+
|
|
215
|
+
#: settings/base.py:323
|
|
216
|
+
msgid "Food and Agriculture"
|
|
217
|
+
msgstr "Boued ha labour-douar"
|
|
218
|
+
|
|
219
|
+
#: settings/base.py:324
|
|
220
|
+
msgid "Geopolitics"
|
|
221
|
+
msgstr "Douarbolitikerezh"
|
|
222
|
+
|
|
223
|
+
#: settings/base.py:325
|
|
224
|
+
msgid "Health"
|
|
225
|
+
msgstr "Yec'hed"
|
|
226
|
+
|
|
227
|
+
#: settings/base.py:326
|
|
228
|
+
msgid "Hiking"
|
|
229
|
+
msgstr "Bale"
|
|
230
|
+
|
|
231
|
+
#: settings/base.py:327
|
|
232
|
+
msgid "History"
|
|
233
|
+
msgstr "Istor"
|
|
234
|
+
|
|
235
|
+
#: settings/base.py:328
|
|
236
|
+
msgid "Public sector"
|
|
237
|
+
msgstr "Servijoù publik"
|
|
238
|
+
|
|
239
|
+
#: settings/base.py:329
|
|
240
|
+
msgid "Science"
|
|
241
|
+
msgstr "Skiantoù"
|
|
242
|
+
|
|
243
|
+
#: settings/base.py:330
|
|
244
|
+
msgid "Shopping"
|
|
245
|
+
msgstr "Kenwerzh"
|
|
246
|
+
|
|
247
|
+
#: settings/base.py:331
|
|
248
|
+
msgid "Sport and Leisure"
|
|
249
|
+
msgstr "Sportoù ha dudi"
|
|
250
|
+
|
|
251
|
+
#: settings/base.py:332
|
|
252
|
+
msgid "Travel"
|
|
253
|
+
msgstr "Beajiñ"
|
|
254
|
+
|
|
255
|
+
#: settings/base.py:333
|
|
256
|
+
msgid "Transports"
|
|
257
|
+
msgstr "Treuzdougen"
|
|
258
|
+
|
|
259
|
+
#: settings/base.py:334
|
|
260
|
+
msgid "Tourism"
|
|
261
|
+
msgstr "Touristelezh"
|
|
262
|
+
|
|
163
263
|
#: templates/403.html:8
|
|
164
264
|
msgid ""
|
|
165
265
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -302,7 +402,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
302
402
|
msgstr "Hag <a href=\"%(repo_url)s\">open source</a> eo!"
|
|
303
403
|
|
|
304
404
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
305
|
-
#: templates/umap/user_dashboard.html:
|
|
405
|
+
#: templates/umap/user_dashboard.html:16
|
|
306
406
|
msgid "Create a map"
|
|
307
407
|
msgstr "Krouiñ ur gartenn"
|
|
308
408
|
|
|
@@ -400,11 +500,20 @@ msgstr "Ma c'hartennoù (%(count)s)"
|
|
|
400
500
|
msgid "My Maps"
|
|
401
501
|
msgstr "Ma c'hartennoù"
|
|
402
502
|
|
|
403
|
-
#: templates/umap/dashboard_menu.html:
|
|
503
|
+
#: templates/umap/dashboard_menu.html:11
|
|
504
|
+
#, python-format
|
|
505
|
+
msgid "My Templates (%(count)s)"
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
509
|
+
msgid "My Templates"
|
|
510
|
+
msgstr ""
|
|
511
|
+
|
|
512
|
+
#: templates/umap/dashboard_menu.html:17
|
|
404
513
|
msgid "My profile"
|
|
405
514
|
msgstr "Ma frofil"
|
|
406
515
|
|
|
407
|
-
#: templates/umap/dashboard_menu.html:
|
|
516
|
+
#: templates/umap/dashboard_menu.html:20
|
|
408
517
|
msgid "My teams"
|
|
409
518
|
msgstr "Ma skipailhoù"
|
|
410
519
|
|
|
@@ -412,7 +521,7 @@ msgstr "Ma skipailhoù"
|
|
|
412
521
|
msgid "Map of the uMaps"
|
|
413
522
|
msgstr "Kartenn an uMapoù"
|
|
414
523
|
|
|
415
|
-
#: templates/umap/home.html:
|
|
524
|
+
#: templates/umap/home.html:25
|
|
416
525
|
msgid "Get inspired, browse maps"
|
|
417
526
|
msgstr "Bezit awenet en ur furchal kartennoù"
|
|
418
527
|
|
|
@@ -420,11 +529,23 @@ msgstr "Bezit awenet en ur furchal kartennoù"
|
|
|
420
529
|
msgid "You are logged in. Continuing..."
|
|
421
530
|
msgstr "Kevreet oc'h. Gortozit ur pennadig..."
|
|
422
531
|
|
|
423
|
-
#: templates/umap/map_list.html:
|
|
532
|
+
#: templates/umap/map_list.html:15
|
|
533
|
+
msgid "template"
|
|
534
|
+
msgstr "patrom"
|
|
535
|
+
|
|
536
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
424
537
|
msgid "by"
|
|
425
538
|
msgstr "gant"
|
|
426
539
|
|
|
427
|
-
#: templates/umap/map_list.html:
|
|
540
|
+
#: templates/umap/map_list.html:22
|
|
541
|
+
msgid "See the template"
|
|
542
|
+
msgstr "Gwelet ar patrom"
|
|
543
|
+
|
|
544
|
+
#: templates/umap/map_list.html:22
|
|
545
|
+
msgid "See the map"
|
|
546
|
+
msgstr "Gwelet ar gartenn"
|
|
547
|
+
|
|
548
|
+
#: templates/umap/map_list.html:28
|
|
428
549
|
msgid "More"
|
|
429
550
|
msgstr "Muioc'h"
|
|
430
551
|
|
|
@@ -456,7 +577,7 @@ msgstr "Perc'henner"
|
|
|
456
577
|
msgid "Actions"
|
|
457
578
|
msgstr "Oberoù"
|
|
458
579
|
|
|
459
|
-
#: templates/umap/map_table.html:
|
|
580
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
460
581
|
msgid "Open preview"
|
|
461
582
|
msgstr "Digeriñ ar rakwel"
|
|
462
583
|
|
|
@@ -586,11 +707,15 @@ msgstr[2] "%(count)s c'hartenn kavet :"
|
|
|
586
707
|
msgstr[3] "%(count)s kartenn kavet :"
|
|
587
708
|
msgstr[4] "%(count)s kartenn kavet :"
|
|
588
709
|
|
|
589
|
-
#: templates/umap/search.html:
|
|
710
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
590
711
|
msgid "No map found."
|
|
591
712
|
msgstr "Kartenn ebet kavet."
|
|
592
713
|
|
|
593
|
-
#: templates/umap/search.html:
|
|
714
|
+
#: templates/umap/search.html:36
|
|
715
|
+
msgid "Latest created maps in category"
|
|
716
|
+
msgstr "Kartennoù krouet da ziwezhañ er rummad-mañ"
|
|
717
|
+
|
|
718
|
+
#: templates/umap/search.html:43
|
|
594
719
|
msgid "Latest created maps"
|
|
595
720
|
msgstr "Kartennoù krouet da ziwezhañ"
|
|
596
721
|
|
|
@@ -598,7 +723,11 @@ msgstr "Kartennoù krouet da ziwezhañ"
|
|
|
598
723
|
msgid "Search maps"
|
|
599
724
|
msgstr "Klask kartennoù"
|
|
600
725
|
|
|
601
|
-
#: templates/umap/search_bar.html:
|
|
726
|
+
#: templates/umap/search_bar.html:14
|
|
727
|
+
msgid "Any category"
|
|
728
|
+
msgstr "An holl rummadoù"
|
|
729
|
+
|
|
730
|
+
#: templates/umap/search_bar.html:19
|
|
602
731
|
msgid "Search"
|
|
603
732
|
msgstr "Klask"
|
|
604
733
|
|
|
@@ -633,20 +762,20 @@ msgstr "Dilemel ar skipailh-mañ"
|
|
|
633
762
|
msgid "Add user"
|
|
634
763
|
msgstr "Ouzhpennañ un implijer"
|
|
635
764
|
|
|
636
|
-
#: templates/umap/user_dashboard.html:
|
|
765
|
+
#: templates/umap/user_dashboard.html:10
|
|
637
766
|
msgid "Search my maps"
|
|
638
767
|
msgstr "Klask e-touez ma c'hartennoù"
|
|
639
768
|
|
|
640
|
-
#: templates/umap/user_dashboard.html:
|
|
641
|
-
msgid "Map’s
|
|
642
|
-
msgstr "
|
|
769
|
+
#: templates/umap/user_dashboard.html:11
|
|
770
|
+
msgid "Map’s name"
|
|
771
|
+
msgstr ""
|
|
643
772
|
|
|
644
|
-
#: templates/umap/user_dashboard.html:
|
|
773
|
+
#: templates/umap/user_dashboard.html:12
|
|
645
774
|
#, python-format
|
|
646
775
|
msgid "Download %(count)s maps"
|
|
647
776
|
msgstr "Pellgargañ %(count)s a gartennoù"
|
|
648
777
|
|
|
649
|
-
#: templates/umap/user_dashboard.html:
|
|
778
|
+
#: templates/umap/user_dashboard.html:15
|
|
650
779
|
msgid "You have no map yet."
|
|
651
780
|
msgstr "N'ho peus kartenn ebet c'hoazh."
|
|
652
781
|
|
|
@@ -662,77 +791,95 @@ msgstr "Implijerien"
|
|
|
662
791
|
msgid "New team"
|
|
663
792
|
msgstr "Skipailh nevez"
|
|
664
793
|
|
|
665
|
-
#:
|
|
794
|
+
#: templates/umap/user_templates.html:10
|
|
795
|
+
msgid "Search my templates"
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
798
|
+
#: templates/umap/user_templates.html:11
|
|
799
|
+
msgid "Template’s name"
|
|
800
|
+
msgstr ""
|
|
801
|
+
|
|
802
|
+
#: templates/umap/user_templates.html:12
|
|
803
|
+
#, python-format
|
|
804
|
+
msgid "Download %(count)s templates"
|
|
805
|
+
msgstr ""
|
|
806
|
+
|
|
807
|
+
#: templates/umap/user_templates.html:15
|
|
808
|
+
msgid "You have no template yet."
|
|
809
|
+
msgstr ""
|
|
810
|
+
|
|
811
|
+
#: templates/umap/user_templates.html:16
|
|
812
|
+
msgid "Create a template"
|
|
813
|
+
msgstr ""
|
|
814
|
+
|
|
815
|
+
#: templates/umap/user_templates.html:17
|
|
816
|
+
msgid "No template found."
|
|
817
|
+
msgstr ""
|
|
818
|
+
|
|
819
|
+
#: views.py:233
|
|
666
820
|
msgid "Cannot delete a team with more than one member"
|
|
667
821
|
msgstr ""
|
|
668
822
|
|
|
669
|
-
#: views.py:
|
|
823
|
+
#: views.py:237
|
|
670
824
|
#, python-format
|
|
671
825
|
msgid "Team “%(name)s” has been deleted"
|
|
672
826
|
msgstr "Dilamet eo bet ar skipailh “%(name)s”"
|
|
673
827
|
|
|
674
|
-
#: views.py:
|
|
828
|
+
#: views.py:463
|
|
675
829
|
msgid "View the map"
|
|
676
830
|
msgstr "Diskouez ar gartenn"
|
|
677
831
|
|
|
678
|
-
#: views.py:
|
|
832
|
+
#: views.py:864
|
|
679
833
|
msgid "See full screen"
|
|
680
834
|
msgstr "Gwelet er mod skramm a-bezh"
|
|
681
835
|
|
|
682
|
-
#: views.py:
|
|
836
|
+
#: views.py:1007
|
|
683
837
|
msgid "Map editors updated with success!"
|
|
684
838
|
msgstr "Aozerien ar gartenn bet hizivaet gant berzh!"
|
|
685
839
|
|
|
686
|
-
#: views.py:
|
|
840
|
+
#: views.py:1043
|
|
687
841
|
#, python-format
|
|
688
842
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
689
843
|
msgstr "Al liamm uMap evit aozañ ho kartenn: %(map_name)s"
|
|
690
844
|
|
|
691
|
-
#: views.py:
|
|
845
|
+
#: views.py:1046
|
|
692
846
|
#, python-format
|
|
693
847
|
msgid "Here is your secret edit link: %(link)s"
|
|
694
848
|
msgstr "Setu ho liamm aozañ kuzh: %(link)s"
|
|
695
849
|
|
|
696
|
-
#: views.py:
|
|
850
|
+
#: views.py:1053
|
|
697
851
|
#, python-format
|
|
698
852
|
msgid "Can't send email to %(email)s"
|
|
699
853
|
msgstr "N'haller ket kas ur postel da %(email)s"
|
|
700
854
|
|
|
701
|
-
#: views.py:
|
|
855
|
+
#: views.py:1056
|
|
702
856
|
#, python-format
|
|
703
857
|
msgid "Email sent to %(email)s"
|
|
704
858
|
msgstr "Postel kaset da %(email)s"
|
|
705
859
|
|
|
706
|
-
#: views.py:
|
|
860
|
+
#: views.py:1067
|
|
707
861
|
msgid "Only its owner can delete the map."
|
|
708
862
|
msgstr "N'eus nemet perc'henner ar gartenn a c'hall he dilemel."
|
|
709
863
|
|
|
710
|
-
#: views.py:
|
|
864
|
+
#: views.py:1073
|
|
711
865
|
msgid "Map successfully deleted."
|
|
712
866
|
msgstr "Kartenn dilamet gant berzh."
|
|
713
867
|
|
|
714
|
-
#: views.py:
|
|
868
|
+
#: views.py:1099
|
|
715
869
|
#, python-format
|
|
716
870
|
msgid ""
|
|
717
871
|
"Your map has been cloned! If you want to edit this map from another "
|
|
718
872
|
"computer, please use this link: %(anonymous_url)s"
|
|
719
873
|
msgstr "Doublet eo bet ho kartenn! M'ho peus c'hoant d'he c'hemmañ diwar un urzhiataer all, implijit al liamm-mañ: %(anonymous_url)s"
|
|
720
874
|
|
|
721
|
-
#: views.py:
|
|
875
|
+
#: views.py:1104
|
|
722
876
|
msgid "Congratulations, your map has been cloned!"
|
|
723
877
|
msgstr "Doublet eo bet ho kartenn gant berzh!"
|
|
724
878
|
|
|
725
|
-
#: views.py:
|
|
879
|
+
#: views.py:1358
|
|
726
880
|
msgid "Layer successfully deleted."
|
|
727
881
|
msgstr "Gwiskad dilamet gant berzh."
|
|
728
882
|
|
|
729
|
-
#: views.py:
|
|
883
|
+
#: views.py:1380
|
|
730
884
|
msgid "Permissions updated with success!"
|
|
731
885
|
msgstr "Aotreoù hizivaet gant berzh!"
|
|
732
|
-
|
|
733
|
-
#: views.py:1430
|
|
734
|
-
#, python-format
|
|
735
|
-
msgid ""
|
|
736
|
-
"Using “%(name)s” to authenticate is deprecated. Please configure another "
|
|
737
|
-
"provider in your profile page."
|
|
738
|
-
msgstr ""
|
|
Binary file
|