umap-project 2.6.3__py3-none-any.whl → 2.7.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 +64 -1
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +2 -0
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +5 -0
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +3 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +4 -1
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +7 -1
- umap/static/umap/js/modules/caption.js +6 -1
- umap/static/umap/js/modules/data/features.js +176 -2
- umap/static/umap/js/modules/data/layer.js +31 -26
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importers/communesfr.js +13 -1
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/ui.js +37 -212
- umap/static/umap/js/modules/sync/engine.js +365 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +4 -4
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +34 -17
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +5 -1
- umap/static/umap/js/umap.controls.js +47 -47
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +95 -112
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +21 -12
- umap/static/umap/locale/ca.json +21 -12
- umap/static/umap/locale/cs_CZ.js +87 -78
- umap/static/umap/locale/cs_CZ.json +87 -78
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/en.js +9 -2
- umap/static/umap/locale/en.json +9 -2
- umap/static/umap/locale/eu.js +10 -3
- umap/static/umap/locale/eu.json +10 -3
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fr.js +11 -4
- umap/static/umap/locale/fr.json +11 -4
- umap/static/umap/locale/hu.js +10 -3
- umap/static/umap/locale/hu.json +10 -3
- umap/static/umap/locale/pt.js +17 -8
- umap/static/umap/locale/pt.json +17 -8
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +7 -22
- umap/static/umap/unittests/hlc.js +158 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +23 -0
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -4
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_datalayer.py +5 -0
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +12 -8
- umap/tests/integration/test_edit_datalayer.py +4 -6
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_import.py +5 -0
- umap/tests/integration/test_map.py +5 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +1 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/RECORD +102 -97
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.3.dist-info → umap_project-2.7.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
# Christopher <github@1011.link>, 2020
|
|
8
8
|
# Claus Ruedinger <clausruedinger@gmail.com>, 2020
|
|
9
9
|
# Ettore Atalan <atalanttore@googlemail.com>, 2016
|
|
10
|
+
# jakl, 2024
|
|
10
11
|
# hno2 <hno2@gmx.net>, 2013-2014
|
|
11
12
|
# Jannis Leidel <jannis@leidel.info>, 2016
|
|
12
13
|
# gislars, 2024
|
|
@@ -19,7 +20,7 @@ msgstr ""
|
|
|
19
20
|
"Report-Msgid-Bugs-To: \n"
|
|
20
21
|
"POT-Creation-Date: 2024-09-04 14:02+0000\n"
|
|
21
22
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
22
|
-
"Last-Translator:
|
|
23
|
+
"Last-Translator: jakl, 2024\n"
|
|
23
24
|
"Language-Team: German (http://app.transifex.com/openstreetmap/umap/language/de/)\n"
|
|
24
25
|
"MIME-Version: 1.0\n"
|
|
25
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -73,7 +74,7 @@ msgstr "Jeder"
|
|
|
73
74
|
|
|
74
75
|
#: models.py:168 models.py:174 models.py:425
|
|
75
76
|
msgid "Editors and team only"
|
|
76
|
-
msgstr ""
|
|
77
|
+
msgstr "Nur Bearbeiter und Team"
|
|
77
78
|
|
|
78
79
|
#: models.py:169 models.py:426
|
|
79
80
|
msgid "Owner only"
|
|
@@ -125,7 +126,7 @@ msgstr "Bearbeiter"
|
|
|
125
126
|
|
|
126
127
|
#: models.py:207
|
|
127
128
|
msgid "team"
|
|
128
|
-
msgstr ""
|
|
129
|
+
msgstr "Team"
|
|
129
130
|
|
|
130
131
|
#: models.py:213 models.py:447
|
|
131
132
|
msgid "edit status"
|
|
@@ -331,19 +332,19 @@ msgstr "Dies ist eine Demo-Instanz, die für Tests und Vorveröffentlichungen ve
|
|
|
331
332
|
|
|
332
333
|
#: templates/umap/content_footer.html:5
|
|
333
334
|
msgid "An OpenStreetMap project"
|
|
334
|
-
msgstr ""
|
|
335
|
+
msgstr "Ein OpenStreetMap Projekt"
|
|
335
336
|
|
|
336
337
|
#: templates/umap/content_footer.html:6
|
|
337
338
|
msgid "version"
|
|
338
|
-
msgstr ""
|
|
339
|
+
msgstr "Version"
|
|
339
340
|
|
|
340
341
|
#: templates/umap/content_footer.html:7
|
|
341
342
|
msgid "Hosted by"
|
|
342
|
-
msgstr ""
|
|
343
|
+
msgstr "Gehostet von"
|
|
343
344
|
|
|
344
345
|
#: templates/umap/content_footer.html:8
|
|
345
346
|
msgid "Contact"
|
|
346
|
-
msgstr ""
|
|
347
|
+
msgstr "Kontakt"
|
|
347
348
|
|
|
348
349
|
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
349
350
|
msgid "Help"
|
|
@@ -364,7 +365,7 @@ msgstr "Mein Profil"
|
|
|
364
365
|
|
|
365
366
|
#: templates/umap/dashboard_menu.html:13
|
|
366
367
|
msgid "My teams"
|
|
367
|
-
msgstr ""
|
|
368
|
+
msgstr "Meine Teams"
|
|
368
369
|
|
|
369
370
|
#: templates/umap/home.html:14
|
|
370
371
|
msgid "Map of the uMaps"
|
|
@@ -536,8 +537,8 @@ msgstr "Ihr Passwort wurde geändert."
|
|
|
536
537
|
#, python-format
|
|
537
538
|
msgid "%(count)s map found:"
|
|
538
539
|
msgid_plural "%(count)s maps found:"
|
|
539
|
-
msgstr[0] ""
|
|
540
|
-
msgstr[1] ""
|
|
540
|
+
msgstr[0] "%(count)s Karte gefunden:"
|
|
541
|
+
msgstr[1] "%(count)s Karten gefunden:"
|
|
541
542
|
|
|
542
543
|
#: templates/umap/search.html:24
|
|
543
544
|
msgid "No map found."
|
|
@@ -558,20 +559,20 @@ msgstr "Suchen"
|
|
|
558
559
|
#: templates/umap/team_detail.html:10
|
|
559
560
|
#, python-format
|
|
560
561
|
msgid "Browse %(current_team)s's maps"
|
|
561
|
-
msgstr ""
|
|
562
|
+
msgstr "Schaue dir %(current_team)s's Karten an"
|
|
562
563
|
|
|
563
564
|
#: templates/umap/team_detail.html:22
|
|
564
565
|
#, python-format
|
|
565
566
|
msgid "%(current_team)s has no public maps."
|
|
566
|
-
msgstr ""
|
|
567
|
+
msgstr "%(current_team)s hat keine öffentlichen Karten.."
|
|
567
568
|
|
|
568
569
|
#: templates/umap/team_form.html:24
|
|
569
570
|
msgid "Delete this team"
|
|
570
|
-
msgstr ""
|
|
571
|
+
msgstr "Dieses Team löschen"
|
|
571
572
|
|
|
572
573
|
#: templates/umap/team_form.html:47
|
|
573
574
|
msgid "Add user"
|
|
574
|
-
msgstr ""
|
|
575
|
+
msgstr "Benutzer hinzufügen"
|
|
575
576
|
|
|
576
577
|
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
577
578
|
msgid "Search my maps"
|
|
@@ -592,20 +593,20 @@ msgstr "Du hast noch keine Karte."
|
|
|
592
593
|
|
|
593
594
|
#: templates/umap/user_teams.html:17
|
|
594
595
|
msgid "Users"
|
|
595
|
-
msgstr ""
|
|
596
|
+
msgstr "Benutzer"
|
|
596
597
|
|
|
597
598
|
#: templates/umap/user_teams.html:48
|
|
598
599
|
msgid "New team"
|
|
599
|
-
msgstr ""
|
|
600
|
+
msgstr "Neues Team"
|
|
600
601
|
|
|
601
602
|
#: views.py:235
|
|
602
603
|
msgid "Cannot delete a team with more than one member"
|
|
603
|
-
msgstr ""
|
|
604
|
+
msgstr "Teams mit mehr als einem Mitglied können nicht gelöscht werden"
|
|
604
605
|
|
|
605
606
|
#: views.py:239
|
|
606
607
|
#, python-format
|
|
607
608
|
msgid "Team “%(name)s” has been deleted"
|
|
608
|
-
msgstr ""
|
|
609
|
+
msgstr "Team “%(name)s” wurde gelöscht"
|
|
609
610
|
|
|
610
611
|
#: views.py:438
|
|
611
612
|
msgid "View the map"
|
|
@@ -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-10-04 16:35+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"
|
|
@@ -17,6 +17,10 @@ msgstr ""
|
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: 8bit\n"
|
|
19
19
|
|
|
20
|
+
#: admin.py:16
|
|
21
|
+
msgid "CSV Export"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
20
24
|
#: forms.py:44 forms.py:70
|
|
21
25
|
msgid "Only editable with secret edit link"
|
|
22
26
|
msgstr ""
|
|
@@ -25,7 +29,7 @@ msgstr ""
|
|
|
25
29
|
msgid "Everyone can edit"
|
|
26
30
|
msgstr ""
|
|
27
31
|
|
|
28
|
-
#: forms.py:69 models.py:
|
|
32
|
+
#: forms.py:69 models.py:441
|
|
29
33
|
msgid "Inherit"
|
|
30
34
|
msgstr ""
|
|
31
35
|
|
|
@@ -33,111 +37,111 @@ msgstr ""
|
|
|
33
37
|
msgid "Site is readonly for maintenance"
|
|
34
38
|
msgstr ""
|
|
35
39
|
|
|
36
|
-
#: models.py:
|
|
40
|
+
#: models.py:55 models.py:74
|
|
37
41
|
msgid "name"
|
|
38
42
|
msgstr ""
|
|
39
43
|
|
|
40
|
-
#: models.py:
|
|
44
|
+
#: models.py:57 models.py:451
|
|
41
45
|
msgid "description"
|
|
42
46
|
msgstr ""
|
|
43
47
|
|
|
44
|
-
#: models.py:
|
|
48
|
+
#: models.py:105
|
|
45
49
|
msgid "details"
|
|
46
50
|
msgstr ""
|
|
47
51
|
|
|
48
|
-
#: models.py:
|
|
52
|
+
#: models.py:106
|
|
49
53
|
msgid "Link to a page where the licence is detailed."
|
|
50
54
|
msgstr ""
|
|
51
55
|
|
|
52
|
-
#: models.py:
|
|
56
|
+
#: models.py:116
|
|
53
57
|
msgid "URL template using OSM tile format"
|
|
54
58
|
msgstr ""
|
|
55
59
|
|
|
56
|
-
#: models.py:
|
|
60
|
+
#: models.py:122
|
|
57
61
|
msgid "Order of the tilelayers in the edit box"
|
|
58
62
|
msgstr ""
|
|
59
63
|
|
|
60
|
-
#: models.py:
|
|
64
|
+
#: models.py:168 models.py:442
|
|
61
65
|
msgid "Everyone"
|
|
62
66
|
msgstr ""
|
|
63
67
|
|
|
64
|
-
#: models.py:
|
|
68
|
+
#: models.py:169 models.py:175 models.py:443
|
|
65
69
|
msgid "Editors and team only"
|
|
66
70
|
msgstr ""
|
|
67
71
|
|
|
68
|
-
#: models.py:
|
|
72
|
+
#: models.py:170 models.py:444
|
|
69
73
|
msgid "Owner only"
|
|
70
74
|
msgstr ""
|
|
71
75
|
|
|
72
|
-
#: models.py:
|
|
76
|
+
#: models.py:173
|
|
73
77
|
msgid "Everyone (public)"
|
|
74
78
|
msgstr ""
|
|
75
79
|
|
|
76
|
-
#: models.py:
|
|
80
|
+
#: models.py:174
|
|
77
81
|
msgid "Anyone with link"
|
|
78
82
|
msgstr ""
|
|
79
83
|
|
|
80
|
-
#: models.py:
|
|
84
|
+
#: models.py:176
|
|
81
85
|
msgid "Blocked"
|
|
82
86
|
msgstr ""
|
|
83
87
|
|
|
84
|
-
#: models.py:
|
|
88
|
+
#: models.py:179
|
|
85
89
|
msgid "center"
|
|
86
90
|
msgstr ""
|
|
87
91
|
|
|
88
|
-
#: models.py:
|
|
92
|
+
#: models.py:180
|
|
89
93
|
msgid "zoom"
|
|
90
94
|
msgstr ""
|
|
91
95
|
|
|
92
|
-
#: models.py:
|
|
96
|
+
#: models.py:182
|
|
93
97
|
msgid "locate"
|
|
94
98
|
msgstr ""
|
|
95
99
|
|
|
96
|
-
#: models.py:
|
|
100
|
+
#: models.py:182
|
|
97
101
|
msgid "Locate user on load?"
|
|
98
102
|
msgstr ""
|
|
99
103
|
|
|
100
|
-
#: models.py:
|
|
104
|
+
#: models.py:186
|
|
101
105
|
msgid "Choose the map licence."
|
|
102
106
|
msgstr ""
|
|
103
107
|
|
|
104
|
-
#: models.py:
|
|
108
|
+
#: models.py:187
|
|
105
109
|
msgid "licence"
|
|
106
110
|
msgstr ""
|
|
107
111
|
|
|
108
|
-
#: models.py:
|
|
112
|
+
#: models.py:198
|
|
109
113
|
msgid "owner"
|
|
110
114
|
msgstr ""
|
|
111
115
|
|
|
112
|
-
#: models.py:
|
|
116
|
+
#: models.py:202
|
|
113
117
|
msgid "editors"
|
|
114
118
|
msgstr ""
|
|
115
119
|
|
|
116
|
-
#: models.py:
|
|
120
|
+
#: models.py:208
|
|
117
121
|
msgid "team"
|
|
118
122
|
msgstr ""
|
|
119
123
|
|
|
120
|
-
#: models.py:
|
|
124
|
+
#: models.py:214 models.py:465
|
|
121
125
|
msgid "edit status"
|
|
122
126
|
msgstr ""
|
|
123
127
|
|
|
124
|
-
#: models.py:
|
|
128
|
+
#: models.py:219
|
|
125
129
|
msgid "share status"
|
|
126
130
|
msgstr ""
|
|
127
131
|
|
|
128
|
-
#: models.py:
|
|
132
|
+
#: models.py:222 models.py:460
|
|
129
133
|
msgid "settings"
|
|
130
134
|
msgstr ""
|
|
131
135
|
|
|
132
|
-
#: models.py:
|
|
136
|
+
#: models.py:382
|
|
133
137
|
msgid "Clone of"
|
|
134
138
|
msgstr ""
|
|
135
139
|
|
|
136
|
-
#: models.py:
|
|
140
|
+
#: models.py:455
|
|
137
141
|
msgid "display on load"
|
|
138
142
|
msgstr ""
|
|
139
143
|
|
|
140
|
-
#: models.py:
|
|
144
|
+
#: models.py:456
|
|
141
145
|
msgid "Display this layer on load."
|
|
142
146
|
msgstr ""
|
|
143
147
|
|
|
@@ -348,11 +352,11 @@ msgstr ""
|
|
|
348
352
|
msgid "My Maps"
|
|
349
353
|
msgstr ""
|
|
350
354
|
|
|
351
|
-
#: templates/umap/dashboard_menu.html:
|
|
355
|
+
#: templates/umap/dashboard_menu.html:12
|
|
352
356
|
msgid "My profile"
|
|
353
357
|
msgstr ""
|
|
354
358
|
|
|
355
|
-
#: templates/umap/dashboard_menu.html:
|
|
359
|
+
#: templates/umap/dashboard_menu.html:15
|
|
356
360
|
msgid "My teams"
|
|
357
361
|
msgstr ""
|
|
358
362
|
|
|
@@ -601,57 +605,57 @@ msgstr ""
|
|
|
601
605
|
msgid "View the map"
|
|
602
606
|
msgstr ""
|
|
603
607
|
|
|
604
|
-
#: views.py:
|
|
608
|
+
#: views.py:818
|
|
605
609
|
msgid "See full screen"
|
|
606
610
|
msgstr ""
|
|
607
611
|
|
|
608
|
-
#: views.py:
|
|
612
|
+
#: views.py:950
|
|
609
613
|
msgid "Map editors updated with success!"
|
|
610
614
|
msgstr ""
|
|
611
615
|
|
|
612
|
-
#: views.py:
|
|
616
|
+
#: views.py:986
|
|
613
617
|
#, python-format
|
|
614
618
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
615
619
|
msgstr ""
|
|
616
620
|
|
|
617
|
-
#: views.py:
|
|
621
|
+
#: views.py:989
|
|
618
622
|
#, python-format
|
|
619
623
|
msgid "Here is your secret edit link: %(link)s"
|
|
620
624
|
msgstr ""
|
|
621
625
|
|
|
622
|
-
#: views.py:
|
|
626
|
+
#: views.py:996
|
|
623
627
|
#, python-format
|
|
624
628
|
msgid "Can't send email to %(email)s"
|
|
625
629
|
msgstr ""
|
|
626
630
|
|
|
627
|
-
#: views.py:
|
|
631
|
+
#: views.py:999
|
|
628
632
|
#, python-format
|
|
629
633
|
msgid "Email sent to %(email)s"
|
|
630
634
|
msgstr ""
|
|
631
635
|
|
|
632
|
-
#: views.py:
|
|
636
|
+
#: views.py:1010
|
|
633
637
|
msgid "Only its owner can delete the map."
|
|
634
638
|
msgstr ""
|
|
635
639
|
|
|
636
|
-
#: views.py:
|
|
640
|
+
#: views.py:1013
|
|
637
641
|
msgid "Map successfully deleted."
|
|
638
642
|
msgstr ""
|
|
639
643
|
|
|
640
|
-
#: views.py:
|
|
644
|
+
#: views.py:1039
|
|
641
645
|
#, python-format
|
|
642
646
|
msgid ""
|
|
643
647
|
"Your map has been cloned! If you want to edit this map from another "
|
|
644
648
|
"computer, please use this link: %(anonymous_url)s"
|
|
645
649
|
msgstr ""
|
|
646
650
|
|
|
647
|
-
#: views.py:
|
|
651
|
+
#: views.py:1044
|
|
648
652
|
msgid "Congratulations, your map has been cloned!"
|
|
649
653
|
msgstr ""
|
|
650
654
|
|
|
651
|
-
#: views.py:
|
|
655
|
+
#: views.py:1277
|
|
652
656
|
msgid "Layer successfully deleted."
|
|
653
657
|
msgstr ""
|
|
654
658
|
|
|
655
|
-
#: views.py:
|
|
659
|
+
#: views.py:1299
|
|
656
660
|
msgid "Permissions updated with success!"
|
|
657
661
|
msgstr ""
|
|
Binary file
|
|
@@ -24,7 +24,7 @@ msgid ""
|
|
|
24
24
|
msgstr ""
|
|
25
25
|
"Project-Id-Version: uMap\n"
|
|
26
26
|
"Report-Msgid-Bugs-To: \n"
|
|
27
|
-
"POT-Creation-Date: 2024-
|
|
27
|
+
"POT-Creation-Date: 2024-10-04 16:35+0000\n"
|
|
28
28
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
29
29
|
"Last-Translator: yohanboniface <yohanboniface@free.fr>, 2013-2014,2018-2019,2023-2024\n"
|
|
30
30
|
"Language-Team: French (http://app.transifex.com/openstreetmap/umap/language/fr/)\n"
|
|
@@ -34,6 +34,10 @@ msgstr ""
|
|
|
34
34
|
"Language: fr\n"
|
|
35
35
|
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
|
36
36
|
|
|
37
|
+
#: admin.py:16
|
|
38
|
+
msgid "CSV Export"
|
|
39
|
+
msgstr "Export CSV"
|
|
40
|
+
|
|
37
41
|
#: forms.py:44 forms.py:70
|
|
38
42
|
msgid "Only editable with secret edit link"
|
|
39
43
|
msgstr "Modifiable seulement avec le lien de modification secret"
|
|
@@ -42,7 +46,7 @@ msgstr "Modifiable seulement avec le lien de modification secret"
|
|
|
42
46
|
msgid "Everyone can edit"
|
|
43
47
|
msgstr "Tout le monde peut modifier"
|
|
44
48
|
|
|
45
|
-
#: forms.py:69 models.py:
|
|
49
|
+
#: forms.py:69 models.py:441
|
|
46
50
|
msgid "Inherit"
|
|
47
51
|
msgstr "Par défaut"
|
|
48
52
|
|
|
@@ -50,111 +54,111 @@ msgstr "Par défaut"
|
|
|
50
54
|
msgid "Site is readonly for maintenance"
|
|
51
55
|
msgstr "Le site est en lecture seule pour maintenance."
|
|
52
56
|
|
|
53
|
-
#: models.py:
|
|
57
|
+
#: models.py:55 models.py:74
|
|
54
58
|
msgid "name"
|
|
55
59
|
msgstr "nom"
|
|
56
60
|
|
|
57
|
-
#: models.py:
|
|
61
|
+
#: models.py:57 models.py:451
|
|
58
62
|
msgid "description"
|
|
59
63
|
msgstr "description"
|
|
60
64
|
|
|
61
|
-
#: models.py:
|
|
65
|
+
#: models.py:105
|
|
62
66
|
msgid "details"
|
|
63
67
|
msgstr "détails"
|
|
64
68
|
|
|
65
|
-
#: models.py:
|
|
69
|
+
#: models.py:106
|
|
66
70
|
msgid "Link to a page where the licence is detailed."
|
|
67
71
|
msgstr "Lien vers une page détaillant la licence."
|
|
68
72
|
|
|
69
|
-
#: models.py:
|
|
73
|
+
#: models.py:116
|
|
70
74
|
msgid "URL template using OSM tile format"
|
|
71
75
|
msgstr "Modèle d'URL au format des tuiles OSM"
|
|
72
76
|
|
|
73
|
-
#: models.py:
|
|
77
|
+
#: models.py:122
|
|
74
78
|
msgid "Order of the tilelayers in the edit box"
|
|
75
79
|
msgstr "Ordre des calques de tuiles dans le panneau de modification"
|
|
76
80
|
|
|
77
|
-
#: models.py:
|
|
81
|
+
#: models.py:168 models.py:442
|
|
78
82
|
msgid "Everyone"
|
|
79
83
|
msgstr "Tout le monde"
|
|
80
84
|
|
|
81
|
-
#: models.py:
|
|
85
|
+
#: models.py:169 models.py:175 models.py:443
|
|
82
86
|
msgid "Editors and team only"
|
|
83
87
|
msgstr "Éditeurs et équipe seulement"
|
|
84
88
|
|
|
85
|
-
#: models.py:
|
|
89
|
+
#: models.py:170 models.py:444
|
|
86
90
|
msgid "Owner only"
|
|
87
91
|
msgstr "Propriétaire uniquement"
|
|
88
92
|
|
|
89
|
-
#: models.py:
|
|
93
|
+
#: models.py:173
|
|
90
94
|
msgid "Everyone (public)"
|
|
91
95
|
msgstr "Tout le monde (public)"
|
|
92
96
|
|
|
93
|
-
#: models.py:
|
|
97
|
+
#: models.py:174
|
|
94
98
|
msgid "Anyone with link"
|
|
95
99
|
msgstr "Quiconque a le lien"
|
|
96
100
|
|
|
97
|
-
#: models.py:
|
|
101
|
+
#: models.py:176
|
|
98
102
|
msgid "Blocked"
|
|
99
103
|
msgstr "Bloquée"
|
|
100
104
|
|
|
101
|
-
#: models.py:
|
|
105
|
+
#: models.py:179
|
|
102
106
|
msgid "center"
|
|
103
107
|
msgstr "centre"
|
|
104
108
|
|
|
105
|
-
#: models.py:
|
|
109
|
+
#: models.py:180
|
|
106
110
|
msgid "zoom"
|
|
107
111
|
msgstr "zoom"
|
|
108
112
|
|
|
109
|
-
#: models.py:
|
|
113
|
+
#: models.py:182
|
|
110
114
|
msgid "locate"
|
|
111
115
|
msgstr "géolocaliser"
|
|
112
116
|
|
|
113
|
-
#: models.py:
|
|
117
|
+
#: models.py:182
|
|
114
118
|
msgid "Locate user on load?"
|
|
115
119
|
msgstr "Géolocaliser l'utilisateur au chargement ?"
|
|
116
120
|
|
|
117
|
-
#: models.py:
|
|
121
|
+
#: models.py:186
|
|
118
122
|
msgid "Choose the map licence."
|
|
119
123
|
msgstr "Choisir une licence pour la carte"
|
|
120
124
|
|
|
121
|
-
#: models.py:
|
|
125
|
+
#: models.py:187
|
|
122
126
|
msgid "licence"
|
|
123
127
|
msgstr "licence"
|
|
124
128
|
|
|
125
|
-
#: models.py:
|
|
129
|
+
#: models.py:198
|
|
126
130
|
msgid "owner"
|
|
127
131
|
msgstr "créateur"
|
|
128
132
|
|
|
129
|
-
#: models.py:
|
|
133
|
+
#: models.py:202
|
|
130
134
|
msgid "editors"
|
|
131
135
|
msgstr "éditeurs"
|
|
132
136
|
|
|
133
|
-
#: models.py:
|
|
137
|
+
#: models.py:208
|
|
134
138
|
msgid "team"
|
|
135
139
|
msgstr "équipe"
|
|
136
140
|
|
|
137
|
-
#: models.py:
|
|
141
|
+
#: models.py:214 models.py:465
|
|
138
142
|
msgid "edit status"
|
|
139
143
|
msgstr "statut de modification"
|
|
140
144
|
|
|
141
|
-
#: models.py:
|
|
145
|
+
#: models.py:219
|
|
142
146
|
msgid "share status"
|
|
143
147
|
msgstr "qui a accès"
|
|
144
148
|
|
|
145
|
-
#: models.py:
|
|
149
|
+
#: models.py:222 models.py:460
|
|
146
150
|
msgid "settings"
|
|
147
151
|
msgstr "réglages"
|
|
148
152
|
|
|
149
|
-
#: models.py:
|
|
153
|
+
#: models.py:382
|
|
150
154
|
msgid "Clone of"
|
|
151
155
|
msgstr "Clone de"
|
|
152
156
|
|
|
153
|
-
#: models.py:
|
|
157
|
+
#: models.py:455
|
|
154
158
|
msgid "display on load"
|
|
155
159
|
msgstr "afficher au chargement."
|
|
156
160
|
|
|
157
|
-
#: models.py:
|
|
161
|
+
#: models.py:456
|
|
158
162
|
msgid "Display this layer on load."
|
|
159
163
|
msgstr "Afficher ce calque au chargement."
|
|
160
164
|
|
|
@@ -365,11 +369,11 @@ msgstr "Mes cartes (%(count)s)"
|
|
|
365
369
|
msgid "My Maps"
|
|
366
370
|
msgstr "Mes cartes"
|
|
367
371
|
|
|
368
|
-
#: templates/umap/dashboard_menu.html:
|
|
372
|
+
#: templates/umap/dashboard_menu.html:12
|
|
369
373
|
msgid "My profile"
|
|
370
374
|
msgstr "Mon profil"
|
|
371
375
|
|
|
372
|
-
#: templates/umap/dashboard_menu.html:
|
|
376
|
+
#: templates/umap/dashboard_menu.html:15
|
|
373
377
|
msgid "My teams"
|
|
374
378
|
msgstr "Mes équipes"
|
|
375
379
|
|
|
@@ -385,11 +389,11 @@ msgstr "Naviguer dans les cartes"
|
|
|
385
389
|
msgid "You are logged in. Continuing..."
|
|
386
390
|
msgstr "Vous êtes maintenant identifié. Merci de patienter..."
|
|
387
391
|
|
|
388
|
-
#: templates/umap/map_list.html:
|
|
392
|
+
#: templates/umap/map_list.html:11 views.py:433
|
|
389
393
|
msgid "by"
|
|
390
394
|
msgstr "par"
|
|
391
395
|
|
|
392
|
-
#: templates/umap/map_list.html:
|
|
396
|
+
#: templates/umap/map_list.html:20
|
|
393
397
|
msgid "More"
|
|
394
398
|
msgstr "Plus"
|
|
395
399
|
|
|
@@ -619,57 +623,57 @@ msgstr "L'équipe «%(name)s» a été supprimée"
|
|
|
619
623
|
msgid "View the map"
|
|
620
624
|
msgstr "Voir la carte"
|
|
621
625
|
|
|
622
|
-
#: views.py:
|
|
626
|
+
#: views.py:818
|
|
623
627
|
msgid "See full screen"
|
|
624
628
|
msgstr "Plein écran"
|
|
625
629
|
|
|
626
|
-
#: views.py:
|
|
630
|
+
#: views.py:950
|
|
627
631
|
msgid "Map editors updated with success!"
|
|
628
632
|
msgstr "Éditeurs de la carte mis à jour !"
|
|
629
633
|
|
|
630
|
-
#: views.py:
|
|
634
|
+
#: views.py:986
|
|
631
635
|
#, python-format
|
|
632
636
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
633
|
-
msgstr "
|
|
637
|
+
msgstr "Le lien d'édition uMap pour votre carte : %(map_name)s"
|
|
634
638
|
|
|
635
|
-
#: views.py:
|
|
639
|
+
#: views.py:989
|
|
636
640
|
#, python-format
|
|
637
641
|
msgid "Here is your secret edit link: %(link)s"
|
|
638
642
|
msgstr "Voici votre lien d'édition secret : %(link)s"
|
|
639
643
|
|
|
640
|
-
#: views.py:
|
|
644
|
+
#: views.py:996
|
|
641
645
|
#, python-format
|
|
642
646
|
msgid "Can't send email to %(email)s"
|
|
643
647
|
msgstr "Impossible d'envoyer un courriel vers %(email)s"
|
|
644
648
|
|
|
645
|
-
#: views.py:
|
|
649
|
+
#: views.py:999
|
|
646
650
|
#, python-format
|
|
647
651
|
msgid "Email sent to %(email)s"
|
|
648
652
|
msgstr "Courriel envoyé à %(email)s"
|
|
649
653
|
|
|
650
|
-
#: views.py:
|
|
654
|
+
#: views.py:1010
|
|
651
655
|
msgid "Only its owner can delete the map."
|
|
652
656
|
msgstr "Seul le créateur de la carte peut la supprimer."
|
|
653
657
|
|
|
654
|
-
#: views.py:
|
|
658
|
+
#: views.py:1013
|
|
655
659
|
msgid "Map successfully deleted."
|
|
656
|
-
msgstr "La bien été supprimée."
|
|
660
|
+
msgstr "La carte a bien été supprimée."
|
|
657
661
|
|
|
658
|
-
#: views.py:
|
|
662
|
+
#: views.py:1039
|
|
659
663
|
#, python-format
|
|
660
664
|
msgid ""
|
|
661
665
|
"Your map has been cloned! If you want to edit this map from another "
|
|
662
666
|
"computer, please use this link: %(anonymous_url)s"
|
|
663
667
|
msgstr "Votre carte a été dupliquée ! Si vous souhaitez la modifier depuis un autre ordinateur, veuillez utiliser ce lien : %(anonymous_url)s"
|
|
664
668
|
|
|
665
|
-
#: views.py:
|
|
669
|
+
#: views.py:1044
|
|
666
670
|
msgid "Congratulations, your map has been cloned!"
|
|
667
671
|
msgstr "Votre carte a été dupliquée !"
|
|
668
672
|
|
|
669
|
-
#: views.py:
|
|
673
|
+
#: views.py:1277
|
|
670
674
|
msgid "Layer successfully deleted."
|
|
671
675
|
msgstr "Calque supprimé."
|
|
672
676
|
|
|
673
|
-
#: views.py:
|
|
677
|
+
#: views.py:1299
|
|
674
678
|
msgid "Permissions updated with success!"
|
|
675
679
|
msgstr "Les permissions ont bien été modifiées !"
|
|
Binary file
|