umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__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 +346 -234
- 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 +3 -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 +3 -3
- 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 +994 -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/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 +573 -0
- umap/static/umap/js/modules/schema.js +24 -0
- 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 +79 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +32 -12
- umap/static/umap/js/umap.js +65 -63
- umap/static/umap/locale/br.js +35 -35
- umap/static/umap/locale/br.json +35 -35
- umap/static/umap/locale/ca.js +50 -50
- umap/static/umap/locale/ca.json +50 -50
- umap/static/umap/locale/de.js +136 -136
- umap/static/umap/locale/de.json +136 -136
- umap/static/umap/locale/el.js +47 -47
- umap/static/umap/locale/el.json +47 -47
- umap/static/umap/locale/en.js +7 -1
- umap/static/umap/locale/en.json +7 -1
- umap/static/umap/locale/fa_IR.js +44 -44
- umap/static/umap/locale/fa_IR.json +44 -44
- umap/static/umap/locale/fr.js +8 -2
- umap/static/umap/locale/fr.json +8 -2
- umap/static/umap/locale/pt.js +17 -17
- umap/static/umap/locale/pt.json +17 -17
- umap/static/umap/locale/pt_PT.js +207 -207
- umap/static/umap/locale/pt_PT.json +207 -207
- umap/static/umap/locale/th_TH.js +25 -25
- umap/static/umap/locale/th_TH.json +25 -25
- umap/static/umap/map.css +107 -104
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- 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 +6 -2
- 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 +4 -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_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_draw_polygon.py +110 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_import.py +64 -5
- umap/tests/integration/test_owned_map.py +21 -13
- 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.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
- 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.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2024-
|
|
11
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
|
25
25
|
msgid "Everyone can edit"
|
|
26
26
|
msgstr ""
|
|
27
27
|
|
|
28
|
-
#: forms.py:69 models.py:
|
|
28
|
+
#: forms.py:69 models.py:423
|
|
29
29
|
msgid "Inherit"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
@@ -33,242 +33,238 @@ msgstr ""
|
|
|
33
33
|
msgid "Site is readonly for maintenance"
|
|
34
34
|
msgstr ""
|
|
35
35
|
|
|
36
|
-
#: models.py:
|
|
36
|
+
#: models.py:54 models.py:73
|
|
37
37
|
msgid "name"
|
|
38
38
|
msgstr ""
|
|
39
39
|
|
|
40
|
-
#: models.py:
|
|
40
|
+
#: models.py:56 models.py:433
|
|
41
|
+
msgid "description"
|
|
42
|
+
msgstr ""
|
|
43
|
+
|
|
44
|
+
#: models.py:104
|
|
41
45
|
msgid "details"
|
|
42
46
|
msgstr ""
|
|
43
47
|
|
|
44
|
-
#: models.py:
|
|
48
|
+
#: models.py:105
|
|
45
49
|
msgid "Link to a page where the licence is detailed."
|
|
46
50
|
msgstr ""
|
|
47
51
|
|
|
48
|
-
#: models.py:
|
|
52
|
+
#: models.py:115
|
|
49
53
|
msgid "URL template using OSM tile format"
|
|
50
54
|
msgstr ""
|
|
51
55
|
|
|
52
|
-
#: models.py:
|
|
56
|
+
#: models.py:121
|
|
53
57
|
msgid "Order of the tilelayers in the edit box"
|
|
54
58
|
msgstr ""
|
|
55
59
|
|
|
56
|
-
#: models.py:
|
|
60
|
+
#: models.py:167 models.py:424
|
|
57
61
|
msgid "Everyone"
|
|
58
62
|
msgstr ""
|
|
59
63
|
|
|
60
|
-
#: models.py:
|
|
61
|
-
msgid "Editors only"
|
|
64
|
+
#: models.py:168 models.py:174 models.py:425
|
|
65
|
+
msgid "Editors and team only"
|
|
62
66
|
msgstr ""
|
|
63
67
|
|
|
64
|
-
#: models.py:
|
|
68
|
+
#: models.py:169 models.py:426
|
|
65
69
|
msgid "Owner only"
|
|
66
70
|
msgstr ""
|
|
67
71
|
|
|
68
|
-
#: models.py:
|
|
72
|
+
#: models.py:172
|
|
69
73
|
msgid "Everyone (public)"
|
|
70
74
|
msgstr ""
|
|
71
75
|
|
|
72
|
-
#: models.py:
|
|
76
|
+
#: models.py:173
|
|
73
77
|
msgid "Anyone with link"
|
|
74
78
|
msgstr ""
|
|
75
79
|
|
|
76
|
-
#: models.py:
|
|
80
|
+
#: models.py:175
|
|
77
81
|
msgid "Blocked"
|
|
78
82
|
msgstr ""
|
|
79
83
|
|
|
80
|
-
#: models.py:
|
|
84
|
+
#: models.py:178
|
|
81
85
|
msgid "center"
|
|
82
86
|
msgstr ""
|
|
83
87
|
|
|
84
|
-
#: models.py:
|
|
88
|
+
#: models.py:179
|
|
85
89
|
msgid "zoom"
|
|
86
90
|
msgstr ""
|
|
87
91
|
|
|
88
|
-
#: models.py:
|
|
92
|
+
#: models.py:181
|
|
89
93
|
msgid "locate"
|
|
90
94
|
msgstr ""
|
|
91
95
|
|
|
92
|
-
#: models.py:
|
|
96
|
+
#: models.py:181
|
|
93
97
|
msgid "Locate user on load?"
|
|
94
98
|
msgstr ""
|
|
95
99
|
|
|
96
|
-
#: models.py:
|
|
100
|
+
#: models.py:185
|
|
97
101
|
msgid "Choose the map licence."
|
|
98
102
|
msgstr ""
|
|
99
103
|
|
|
100
|
-
#: models.py:
|
|
104
|
+
#: models.py:186
|
|
101
105
|
msgid "licence"
|
|
102
106
|
msgstr ""
|
|
103
107
|
|
|
104
|
-
#: models.py:
|
|
108
|
+
#: models.py:197
|
|
105
109
|
msgid "owner"
|
|
106
110
|
msgstr ""
|
|
107
111
|
|
|
108
|
-
#: models.py:
|
|
112
|
+
#: models.py:201
|
|
109
113
|
msgid "editors"
|
|
110
114
|
msgstr ""
|
|
111
115
|
|
|
112
|
-
#: models.py:
|
|
116
|
+
#: models.py:207
|
|
117
|
+
msgid "team"
|
|
118
|
+
msgstr ""
|
|
119
|
+
|
|
120
|
+
#: models.py:213 models.py:447
|
|
113
121
|
msgid "edit status"
|
|
114
122
|
msgstr ""
|
|
115
123
|
|
|
116
|
-
#: models.py:
|
|
124
|
+
#: models.py:218
|
|
117
125
|
msgid "share status"
|
|
118
126
|
msgstr ""
|
|
119
127
|
|
|
120
|
-
#: models.py:
|
|
128
|
+
#: models.py:221 models.py:442
|
|
121
129
|
msgid "settings"
|
|
122
130
|
msgstr ""
|
|
123
131
|
|
|
124
|
-
#: models.py:
|
|
132
|
+
#: models.py:364
|
|
125
133
|
msgid "Clone of"
|
|
126
134
|
msgstr ""
|
|
127
135
|
|
|
128
|
-
#: models.py:
|
|
129
|
-
msgid "description"
|
|
130
|
-
msgstr ""
|
|
131
|
-
|
|
132
|
-
#: models.py:403
|
|
136
|
+
#: models.py:437
|
|
133
137
|
msgid "display on load"
|
|
134
138
|
msgstr ""
|
|
135
139
|
|
|
136
|
-
#: models.py:
|
|
140
|
+
#: models.py:438
|
|
137
141
|
msgid "Display this layer on load."
|
|
138
142
|
msgstr ""
|
|
139
143
|
|
|
140
|
-
#: templates/404.html:
|
|
144
|
+
#: templates/404.html:8
|
|
141
145
|
msgid "Take me to the home page"
|
|
142
146
|
msgstr ""
|
|
143
147
|
|
|
144
|
-
#: templates/auth/user_detail.html:
|
|
148
|
+
#: templates/auth/user_detail.html:8
|
|
145
149
|
#, python-format
|
|
146
150
|
msgid "Browse %(current_user)s's maps"
|
|
147
151
|
msgstr ""
|
|
148
152
|
|
|
149
|
-
#: templates/auth/user_detail.html:
|
|
153
|
+
#: templates/auth/user_detail.html:17
|
|
150
154
|
#, python-format
|
|
151
155
|
msgid "%(current_user)s has no maps."
|
|
152
156
|
msgstr ""
|
|
153
157
|
|
|
154
|
-
#: templates/auth/user_form.html:
|
|
155
|
-
msgid "My Maps"
|
|
156
|
-
msgstr ""
|
|
157
|
-
|
|
158
|
-
#: templates/auth/user_form.html:7
|
|
159
|
-
msgid "My Profile"
|
|
160
|
-
msgstr ""
|
|
161
|
-
|
|
162
|
-
#: templates/auth/user_form.html:20
|
|
158
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
163
159
|
msgid "Save"
|
|
164
160
|
msgstr ""
|
|
165
161
|
|
|
166
|
-
#: templates/auth/user_form.html:
|
|
162
|
+
#: templates/auth/user_form.html:27
|
|
167
163
|
msgid "Your current providers"
|
|
168
164
|
msgstr ""
|
|
169
165
|
|
|
170
|
-
#: templates/auth/user_form.html:
|
|
166
|
+
#: templates/auth/user_form.html:39
|
|
171
167
|
msgid "Connect to another provider"
|
|
172
168
|
msgstr ""
|
|
173
169
|
|
|
174
|
-
#: templates/auth/user_form.html:
|
|
170
|
+
#: templates/auth/user_form.html:42
|
|
175
171
|
msgid ""
|
|
176
172
|
"It's a good habit to connect your account to more than one provider, in case "
|
|
177
173
|
"one provider becomes unavailable, temporarily or even permanently."
|
|
178
174
|
msgstr ""
|
|
179
175
|
|
|
180
|
-
#: templates/auth/user_stars.html:
|
|
176
|
+
#: templates/auth/user_stars.html:8
|
|
181
177
|
#, python-format
|
|
182
178
|
msgid "Browse %(current_user)s's starred maps"
|
|
183
179
|
msgstr ""
|
|
184
180
|
|
|
185
|
-
#: templates/auth/user_stars.html:
|
|
181
|
+
#: templates/auth/user_stars.html:17
|
|
186
182
|
#, python-format
|
|
187
183
|
msgid "%(current_user)s has no starred maps yet."
|
|
188
184
|
msgstr ""
|
|
189
185
|
|
|
190
|
-
#: templates/base.html:
|
|
186
|
+
#: templates/base.html:13
|
|
191
187
|
msgid ""
|
|
192
188
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
193
189
|
"them in your site."
|
|
194
190
|
msgstr ""
|
|
195
191
|
|
|
196
|
-
#: templates/registration/login.html:
|
|
192
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
193
|
+
msgid "Login"
|
|
194
|
+
msgstr ""
|
|
195
|
+
|
|
196
|
+
#: templates/registration/login.html:24
|
|
197
197
|
msgid "Please log in with your account"
|
|
198
198
|
msgstr ""
|
|
199
199
|
|
|
200
|
-
#: templates/registration/login.html:
|
|
200
|
+
#: templates/registration/login.html:41
|
|
201
201
|
msgid "Username"
|
|
202
202
|
msgstr ""
|
|
203
203
|
|
|
204
|
-
#: templates/registration/login.html:
|
|
204
|
+
#: templates/registration/login.html:44
|
|
205
205
|
msgid "Password"
|
|
206
206
|
msgstr ""
|
|
207
207
|
|
|
208
|
-
#: templates/registration/login.html:
|
|
209
|
-
msgid "Login"
|
|
210
|
-
msgstr ""
|
|
211
|
-
|
|
212
|
-
#: templates/registration/login.html:37
|
|
208
|
+
#: templates/registration/login.html:51
|
|
213
209
|
msgid "Please choose a provider"
|
|
214
210
|
msgstr ""
|
|
215
211
|
|
|
216
|
-
#: templates/umap/about_summary.html:
|
|
212
|
+
#: templates/umap/about_summary.html:12
|
|
217
213
|
#, python-format
|
|
218
214
|
msgid ""
|
|
219
215
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
220
216
|
"layers in a minute and embed them in your site."
|
|
221
217
|
msgstr ""
|
|
222
218
|
|
|
223
|
-
#: templates/umap/about_summary.html:
|
|
219
|
+
#: templates/umap/about_summary.html:23
|
|
224
220
|
msgid "Choose the layers of your map"
|
|
225
221
|
msgstr ""
|
|
226
222
|
|
|
227
|
-
#: templates/umap/about_summary.html:
|
|
223
|
+
#: templates/umap/about_summary.html:26
|
|
228
224
|
msgid "Add POIs: markers, lines, polygons..."
|
|
229
225
|
msgstr ""
|
|
230
226
|
|
|
231
|
-
#: templates/umap/about_summary.html:
|
|
227
|
+
#: templates/umap/about_summary.html:29
|
|
232
228
|
msgid "Manage POIs colours and icons"
|
|
233
229
|
msgstr ""
|
|
234
230
|
|
|
235
|
-
#: templates/umap/about_summary.html:
|
|
231
|
+
#: templates/umap/about_summary.html:32
|
|
236
232
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
237
233
|
msgstr ""
|
|
238
234
|
|
|
239
|
-
#: templates/umap/about_summary.html:
|
|
235
|
+
#: templates/umap/about_summary.html:35
|
|
240
236
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
241
237
|
msgstr ""
|
|
242
238
|
|
|
243
|
-
#: templates/umap/about_summary.html:
|
|
239
|
+
#: templates/umap/about_summary.html:38
|
|
244
240
|
msgid "Choose the license for your data"
|
|
245
241
|
msgstr ""
|
|
246
242
|
|
|
247
|
-
#: templates/umap/about_summary.html:
|
|
243
|
+
#: templates/umap/about_summary.html:41
|
|
248
244
|
msgid "Embed and share your map"
|
|
249
245
|
msgstr ""
|
|
250
246
|
|
|
251
|
-
#: templates/umap/about_summary.html:
|
|
247
|
+
#: templates/umap/about_summary.html:52
|
|
252
248
|
#, python-format
|
|
253
249
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
254
250
|
msgstr ""
|
|
255
251
|
|
|
256
|
-
#: templates/umap/about_summary.html:
|
|
257
|
-
#: templates/umap/user_dashboard.html:
|
|
252
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
253
|
+
#: templates/umap/user_dashboard.html:40
|
|
258
254
|
msgid "Create a map"
|
|
259
255
|
msgstr ""
|
|
260
256
|
|
|
261
|
-
#: templates/umap/about_summary.html:
|
|
257
|
+
#: templates/umap/about_summary.html:66
|
|
262
258
|
msgid "Play with the demo"
|
|
263
259
|
msgstr ""
|
|
264
260
|
|
|
265
|
-
#: templates/umap/components/alerts/alert.html:
|
|
266
|
-
#: templates/umap/components/alerts/alert.html:
|
|
267
|
-
#: templates/umap/components/alerts/alert.html:
|
|
261
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
262
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
263
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
268
264
|
msgid "Close"
|
|
269
265
|
msgstr ""
|
|
270
266
|
|
|
271
|
-
#: templates/umap/components/alerts/alert.html:
|
|
267
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
272
268
|
#, python-format
|
|
273
269
|
msgid ""
|
|
274
270
|
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
@@ -276,45 +272,45 @@ msgid ""
|
|
|
276
272
|
"target=\"_blank\">log in</a>."
|
|
277
273
|
msgstr ""
|
|
278
274
|
|
|
279
|
-
#: templates/umap/components/alerts/alert.html:
|
|
275
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
280
276
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
281
277
|
msgstr ""
|
|
282
278
|
|
|
283
|
-
#: templates/umap/components/alerts/alert.html:
|
|
279
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
284
280
|
msgid "Copy link"
|
|
285
281
|
msgstr ""
|
|
286
282
|
|
|
287
|
-
#: templates/umap/components/alerts/alert.html:
|
|
283
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
288
284
|
msgid "Enter your email address to receive the secret link:"
|
|
289
285
|
msgstr ""
|
|
290
286
|
|
|
291
|
-
#: templates/umap/components/alerts/alert.html:
|
|
287
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
292
288
|
msgid "Email"
|
|
293
289
|
msgstr ""
|
|
294
290
|
|
|
295
|
-
#: templates/umap/components/alerts/alert.html:
|
|
291
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
296
292
|
msgid "Send me the link"
|
|
297
293
|
msgstr ""
|
|
298
294
|
|
|
299
|
-
#: templates/umap/components/alerts/alert.html:
|
|
295
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
300
296
|
msgid "See their edits in another tab"
|
|
301
297
|
msgstr ""
|
|
302
298
|
|
|
303
|
-
#: templates/umap/components/alerts/alert.html:
|
|
299
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
304
300
|
msgid "Keep your changes and loose theirs"
|
|
305
301
|
msgstr ""
|
|
306
302
|
|
|
307
|
-
#: templates/umap/components/alerts/alert.html:
|
|
303
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
308
304
|
msgid "Keep their changes and loose yours"
|
|
309
305
|
msgstr ""
|
|
310
306
|
|
|
311
|
-
#: templates/umap/content.html:
|
|
307
|
+
#: templates/umap/content.html:26
|
|
312
308
|
msgid ""
|
|
313
309
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
314
310
|
"allowed."
|
|
315
311
|
msgstr ""
|
|
316
312
|
|
|
317
|
-
#: templates/umap/content.html:
|
|
313
|
+
#: templates/umap/content.html:34
|
|
318
314
|
#, python-format
|
|
319
315
|
msgid ""
|
|
320
316
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -323,279 +319,339 @@ msgid ""
|
|
|
323
319
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
324
320
|
msgstr ""
|
|
325
321
|
|
|
326
|
-
#: templates/umap/
|
|
322
|
+
#: templates/umap/content_footer.html:5
|
|
323
|
+
msgid "An OpenStreetMap project"
|
|
324
|
+
msgstr ""
|
|
325
|
+
|
|
326
|
+
#: templates/umap/content_footer.html:6
|
|
327
|
+
msgid "version"
|
|
328
|
+
msgstr ""
|
|
329
|
+
|
|
330
|
+
#: templates/umap/content_footer.html:7
|
|
331
|
+
msgid "Hosted by"
|
|
332
|
+
msgstr ""
|
|
333
|
+
|
|
334
|
+
#: templates/umap/content_footer.html:8
|
|
335
|
+
msgid "Contact"
|
|
336
|
+
msgstr ""
|
|
337
|
+
|
|
338
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
339
|
+
msgid "Help"
|
|
340
|
+
msgstr ""
|
|
341
|
+
|
|
342
|
+
#: templates/umap/dashboard_menu.html:6
|
|
343
|
+
#, python-format
|
|
344
|
+
msgid "My Maps (%(count)s)"
|
|
345
|
+
msgstr ""
|
|
346
|
+
|
|
347
|
+
#: templates/umap/dashboard_menu.html:8
|
|
348
|
+
msgid "My Maps"
|
|
349
|
+
msgstr ""
|
|
350
|
+
|
|
351
|
+
#: templates/umap/dashboard_menu.html:11
|
|
352
|
+
msgid "My profile"
|
|
353
|
+
msgstr ""
|
|
354
|
+
|
|
355
|
+
#: templates/umap/dashboard_menu.html:13
|
|
356
|
+
msgid "My teams"
|
|
357
|
+
msgstr ""
|
|
358
|
+
|
|
359
|
+
#: templates/umap/home.html:14
|
|
327
360
|
msgid "Map of the uMaps"
|
|
328
361
|
msgstr ""
|
|
329
362
|
|
|
330
|
-
#: templates/umap/home.html:
|
|
363
|
+
#: templates/umap/home.html:24
|
|
331
364
|
msgid "Get inspired, browse maps"
|
|
332
365
|
msgstr ""
|
|
333
366
|
|
|
334
|
-
#: templates/umap/login_popup_end.html:
|
|
367
|
+
#: templates/umap/login_popup_end.html:4
|
|
335
368
|
msgid "You are logged in. Continuing..."
|
|
336
369
|
msgstr ""
|
|
337
370
|
|
|
338
|
-
#: templates/umap/map_list.html:
|
|
371
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
339
372
|
msgid "by"
|
|
340
373
|
msgstr ""
|
|
341
374
|
|
|
342
|
-
#: templates/umap/map_list.html:
|
|
375
|
+
#: templates/umap/map_list.html:18
|
|
343
376
|
msgid "More"
|
|
344
377
|
msgstr ""
|
|
345
378
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
379
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
347
380
|
msgid "Name"
|
|
348
381
|
msgstr ""
|
|
349
382
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
383
|
+
#: templates/umap/map_table.html:11
|
|
351
384
|
msgid "Preview"
|
|
352
385
|
msgstr ""
|
|
353
386
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
387
|
+
#: templates/umap/map_table.html:14
|
|
355
388
|
msgid "Who can see"
|
|
356
389
|
msgstr ""
|
|
357
390
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
391
|
+
#: templates/umap/map_table.html:17
|
|
359
392
|
msgid "Who can edit"
|
|
360
393
|
msgstr ""
|
|
361
394
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
395
|
+
#: templates/umap/map_table.html:20
|
|
363
396
|
msgid "Last save"
|
|
364
397
|
msgstr ""
|
|
365
398
|
|
|
366
|
-
#: templates/umap/map_table.html:
|
|
399
|
+
#: templates/umap/map_table.html:23
|
|
367
400
|
msgid "Owner"
|
|
368
401
|
msgstr ""
|
|
369
402
|
|
|
370
|
-
#: templates/umap/map_table.html:
|
|
403
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
371
404
|
msgid "Actions"
|
|
372
405
|
msgstr ""
|
|
373
406
|
|
|
374
|
-
#: templates/umap/map_table.html:
|
|
407
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
375
408
|
msgid "Open preview"
|
|
376
409
|
msgstr ""
|
|
377
410
|
|
|
378
|
-
#: templates/umap/map_table.html:
|
|
411
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
379
412
|
msgid "Share"
|
|
380
413
|
msgstr ""
|
|
381
414
|
|
|
382
|
-
#: templates/umap/map_table.html:
|
|
415
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
416
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
383
417
|
msgid "Edit"
|
|
384
418
|
msgstr ""
|
|
385
419
|
|
|
386
|
-
#: templates/umap/map_table.html:
|
|
420
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
387
421
|
msgid "Download"
|
|
388
422
|
msgstr ""
|
|
389
423
|
|
|
390
|
-
#: templates/umap/map_table.html:
|
|
424
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
391
425
|
msgid "Clone"
|
|
392
426
|
msgstr ""
|
|
393
427
|
|
|
394
|
-
#: templates/umap/map_table.html:
|
|
428
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
395
429
|
msgid "Delete"
|
|
396
430
|
msgstr ""
|
|
397
431
|
|
|
398
|
-
#: templates/umap/map_table.html:
|
|
432
|
+
#: templates/umap/map_table.html:117
|
|
399
433
|
msgid "first"
|
|
400
434
|
msgstr ""
|
|
401
435
|
|
|
402
|
-
#: templates/umap/map_table.html:
|
|
436
|
+
#: templates/umap/map_table.html:118
|
|
403
437
|
msgid "previous"
|
|
404
438
|
msgstr ""
|
|
405
439
|
|
|
406
|
-
#: templates/umap/map_table.html:
|
|
440
|
+
#: templates/umap/map_table.html:126
|
|
407
441
|
#, python-format
|
|
408
442
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
409
443
|
msgstr ""
|
|
410
444
|
|
|
411
|
-
#: templates/umap/map_table.html:
|
|
445
|
+
#: templates/umap/map_table.html:131
|
|
412
446
|
msgid "next"
|
|
413
447
|
msgstr ""
|
|
414
448
|
|
|
415
|
-
#: templates/umap/map_table.html:
|
|
449
|
+
#: templates/umap/map_table.html:132
|
|
416
450
|
msgid "last"
|
|
417
451
|
msgstr ""
|
|
418
452
|
|
|
419
|
-
#: templates/umap/map_table.html:
|
|
453
|
+
#: templates/umap/map_table.html:140
|
|
420
454
|
#, python-format
|
|
421
455
|
msgid "Lines per page: %(per_page)s"
|
|
422
456
|
msgstr ""
|
|
423
457
|
|
|
424
|
-
#: templates/umap/map_table.html:
|
|
458
|
+
#: templates/umap/map_table.html:145
|
|
425
459
|
#, python-format
|
|
426
460
|
msgid "%(count)s maps"
|
|
427
461
|
msgstr ""
|
|
428
462
|
|
|
429
|
-
#: templates/umap/navigation.html:
|
|
463
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
430
464
|
msgid "My Dashboard"
|
|
431
465
|
msgstr ""
|
|
432
466
|
|
|
433
|
-
#: templates/umap/navigation.html:
|
|
467
|
+
#: templates/umap/navigation.html:14
|
|
434
468
|
msgid "Starred maps"
|
|
435
469
|
msgstr ""
|
|
436
470
|
|
|
437
|
-
#: templates/umap/navigation.html:
|
|
471
|
+
#: templates/umap/navigation.html:18
|
|
438
472
|
msgid "Log in"
|
|
439
473
|
msgstr ""
|
|
440
474
|
|
|
441
|
-
#: templates/umap/navigation.html:
|
|
475
|
+
#: templates/umap/navigation.html:18
|
|
442
476
|
msgid "Sign in"
|
|
443
477
|
msgstr ""
|
|
444
478
|
|
|
445
|
-
#: templates/umap/navigation.html:
|
|
479
|
+
#: templates/umap/navigation.html:22
|
|
446
480
|
msgid "About"
|
|
447
481
|
msgstr ""
|
|
448
482
|
|
|
449
|
-
#: templates/umap/navigation.html:
|
|
450
|
-
msgid "Help"
|
|
451
|
-
msgstr ""
|
|
452
|
-
|
|
453
|
-
#: templates/umap/navigation.html:29
|
|
483
|
+
#: templates/umap/navigation.html:30
|
|
454
484
|
msgid "Change password"
|
|
455
485
|
msgstr ""
|
|
456
486
|
|
|
457
|
-
#: templates/umap/navigation.html:
|
|
487
|
+
#: templates/umap/navigation.html:34
|
|
458
488
|
msgid "Log out"
|
|
459
489
|
msgstr ""
|
|
460
490
|
|
|
461
|
-
#: templates/umap/password_change.html:
|
|
491
|
+
#: templates/umap/password_change.html:7
|
|
462
492
|
msgid "Password change"
|
|
463
493
|
msgstr ""
|
|
464
494
|
|
|
465
|
-
#: templates/umap/password_change.html:
|
|
495
|
+
#: templates/umap/password_change.html:10
|
|
466
496
|
msgid ""
|
|
467
497
|
"Please enter your old password, for security's sake, and then enter your new "
|
|
468
498
|
"password twice so we can verify you typed it in correctly."
|
|
469
499
|
msgstr ""
|
|
470
500
|
|
|
471
|
-
#: templates/umap/password_change.html:
|
|
501
|
+
#: templates/umap/password_change.html:17
|
|
472
502
|
msgid "Old password"
|
|
473
503
|
msgstr ""
|
|
474
504
|
|
|
475
|
-
#: templates/umap/password_change.html:
|
|
505
|
+
#: templates/umap/password_change.html:22
|
|
476
506
|
msgid "New password"
|
|
477
507
|
msgstr ""
|
|
478
508
|
|
|
479
|
-
#: templates/umap/password_change.html:
|
|
509
|
+
#: templates/umap/password_change.html:26
|
|
480
510
|
msgid "New password confirmation"
|
|
481
511
|
msgstr ""
|
|
482
512
|
|
|
483
|
-
#: templates/umap/password_change.html:
|
|
513
|
+
#: templates/umap/password_change.html:27
|
|
484
514
|
msgid "Change my password"
|
|
485
515
|
msgstr ""
|
|
486
516
|
|
|
487
|
-
#: templates/umap/password_change_done.html:
|
|
517
|
+
#: templates/umap/password_change_done.html:7
|
|
488
518
|
msgid "Password change successful"
|
|
489
519
|
msgstr ""
|
|
490
520
|
|
|
491
|
-
#: templates/umap/password_change_done.html:
|
|
521
|
+
#: templates/umap/password_change_done.html:10
|
|
492
522
|
msgid "Your password was changed."
|
|
493
523
|
msgstr ""
|
|
494
524
|
|
|
495
|
-
#: templates/umap/search.html:
|
|
525
|
+
#: templates/umap/search.html:15
|
|
496
526
|
#, python-format
|
|
497
527
|
msgid "%(count)s map found:"
|
|
498
528
|
msgid_plural "%(count)s maps found:"
|
|
499
529
|
msgstr[0] ""
|
|
500
530
|
msgstr[1] ""
|
|
501
531
|
|
|
502
|
-
#: templates/umap/search.html:
|
|
532
|
+
#: templates/umap/search.html:24
|
|
503
533
|
msgid "No map found."
|
|
504
534
|
msgstr ""
|
|
505
535
|
|
|
506
|
-
#: templates/umap/search.html:
|
|
536
|
+
#: templates/umap/search.html:29
|
|
507
537
|
msgid "Latest created maps"
|
|
508
538
|
msgstr ""
|
|
509
539
|
|
|
510
|
-
#: templates/umap/search_bar.html:
|
|
540
|
+
#: templates/umap/search_bar.html:4
|
|
511
541
|
msgid "Search maps"
|
|
512
542
|
msgstr ""
|
|
513
543
|
|
|
514
|
-
#: templates/umap/search_bar.html:
|
|
544
|
+
#: templates/umap/search_bar.html:15
|
|
515
545
|
msgid "Search"
|
|
516
546
|
msgstr ""
|
|
517
547
|
|
|
518
|
-
#: templates/umap/
|
|
519
|
-
|
|
548
|
+
#: templates/umap/team_detail.html:10
|
|
549
|
+
#, python-format
|
|
550
|
+
msgid "Browse %(current_team)s's maps"
|
|
520
551
|
msgstr ""
|
|
521
552
|
|
|
522
|
-
#: templates/umap/
|
|
553
|
+
#: templates/umap/team_detail.html:22
|
|
523
554
|
#, python-format
|
|
524
|
-
msgid "
|
|
555
|
+
msgid "%(current_team)s has no public maps."
|
|
525
556
|
msgstr ""
|
|
526
557
|
|
|
527
|
-
#: templates/umap/
|
|
528
|
-
msgid "
|
|
558
|
+
#: templates/umap/team_form.html:24
|
|
559
|
+
msgid "Delete this team"
|
|
560
|
+
msgstr ""
|
|
561
|
+
|
|
562
|
+
#: templates/umap/team_form.html:47
|
|
563
|
+
msgid "Add user"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
567
|
+
msgid "Search my maps"
|
|
529
568
|
msgstr ""
|
|
530
569
|
|
|
531
|
-
#: templates/umap/user_dashboard.html:
|
|
570
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
532
571
|
msgid "Map’s title"
|
|
533
572
|
msgstr ""
|
|
534
573
|
|
|
535
|
-
#: templates/umap/user_dashboard.html:
|
|
574
|
+
#: templates/umap/user_dashboard.html:30
|
|
536
575
|
#, python-format
|
|
537
576
|
msgid "Download %(count)s maps"
|
|
538
577
|
msgstr ""
|
|
539
578
|
|
|
540
|
-
#: templates/umap/user_dashboard.html:
|
|
579
|
+
#: templates/umap/user_dashboard.html:40
|
|
541
580
|
msgid "You have no map yet."
|
|
542
581
|
msgstr ""
|
|
543
582
|
|
|
544
|
-
#:
|
|
583
|
+
#: templates/umap/user_teams.html:17
|
|
584
|
+
msgid "Users"
|
|
585
|
+
msgstr ""
|
|
586
|
+
|
|
587
|
+
#: templates/umap/user_teams.html:48
|
|
588
|
+
msgid "New team"
|
|
589
|
+
msgstr ""
|
|
590
|
+
|
|
591
|
+
#: views.py:235
|
|
592
|
+
msgid "Cannot delete a team with more than one member"
|
|
593
|
+
msgstr ""
|
|
594
|
+
|
|
595
|
+
#: views.py:239
|
|
596
|
+
#, python-format
|
|
597
|
+
msgid "Team “%(name)s” has been deleted"
|
|
598
|
+
msgstr ""
|
|
599
|
+
|
|
600
|
+
#: views.py:438
|
|
545
601
|
msgid "View the map"
|
|
546
602
|
msgstr ""
|
|
547
603
|
|
|
548
|
-
#: views.py:
|
|
604
|
+
#: views.py:824
|
|
549
605
|
msgid "See full screen"
|
|
550
606
|
msgstr ""
|
|
551
607
|
|
|
552
|
-
#: views.py:
|
|
608
|
+
#: views.py:953
|
|
553
609
|
msgid "Map editors updated with success!"
|
|
554
610
|
msgstr ""
|
|
555
611
|
|
|
556
|
-
#: views.py:
|
|
612
|
+
#: views.py:989
|
|
557
613
|
#, python-format
|
|
558
614
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
559
615
|
msgstr ""
|
|
560
616
|
|
|
561
|
-
#: views.py:
|
|
617
|
+
#: views.py:992
|
|
562
618
|
#, python-format
|
|
563
619
|
msgid "Here is your secret edit link: %(link)s"
|
|
564
620
|
msgstr ""
|
|
565
621
|
|
|
566
|
-
#: views.py:
|
|
622
|
+
#: views.py:999
|
|
567
623
|
#, python-format
|
|
568
624
|
msgid "Can't send email to %(email)s"
|
|
569
625
|
msgstr ""
|
|
570
626
|
|
|
571
|
-
#: views.py:
|
|
627
|
+
#: views.py:1002
|
|
572
628
|
#, python-format
|
|
573
629
|
msgid "Email sent to %(email)s"
|
|
574
630
|
msgstr ""
|
|
575
631
|
|
|
576
|
-
#: views.py:
|
|
632
|
+
#: views.py:1013
|
|
577
633
|
msgid "Only its owner can delete the map."
|
|
578
634
|
msgstr ""
|
|
579
635
|
|
|
580
|
-
#: views.py:
|
|
636
|
+
#: views.py:1016
|
|
581
637
|
msgid "Map successfully deleted."
|
|
582
638
|
msgstr ""
|
|
583
639
|
|
|
584
|
-
#: views.py:
|
|
640
|
+
#: views.py:1042
|
|
585
641
|
#, python-format
|
|
586
642
|
msgid ""
|
|
587
643
|
"Your map has been cloned! If you want to edit this map from another "
|
|
588
644
|
"computer, please use this link: %(anonymous_url)s"
|
|
589
645
|
msgstr ""
|
|
590
646
|
|
|
591
|
-
#: views.py:
|
|
647
|
+
#: views.py:1047
|
|
592
648
|
msgid "Congratulations, your map has been cloned!"
|
|
593
649
|
msgstr ""
|
|
594
650
|
|
|
595
|
-
#: views.py:
|
|
651
|
+
#: views.py:1282
|
|
596
652
|
msgid "Layer successfully deleted."
|
|
597
653
|
msgstr ""
|
|
598
654
|
|
|
599
|
-
#: views.py:
|
|
655
|
+
#: views.py:1304
|
|
600
656
|
msgid "Permissions updated with success!"
|
|
601
657
|
msgstr ""
|