umap-project 2.5.0__py3-none-any.whl → 2.6.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/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 +347 -235
- 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 +9 -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 +8 -12
- 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 +993 -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/importers/overpass.js +22 -8
- 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 +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- 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 +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- 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 +7 -3
- 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 +6 -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_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- 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.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- 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.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
6
|
# Krittin Leewanich, 2023
|
|
7
|
-
# Krittin, 2023
|
|
7
|
+
# Krittin Leewanich, 2023-2024
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: uMap\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2024-
|
|
12
|
+
"POT-Creation-Date: 2024-06-26 20:59+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
|
-
"Last-Translator: Krittin Leewanich, 2023\n"
|
|
14
|
+
"Last-Translator: Krittin Leewanich, 2023-2024\n"
|
|
15
15
|
"Language-Team: Thai (Thailand) (http://app.transifex.com/openstreetmap/umap/language/th_TH/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -27,115 +27,115 @@ msgstr "แก้ไขได้ ด้วยลิงก์ลับ"
|
|
|
27
27
|
msgid "Everyone can edit"
|
|
28
28
|
msgstr "ทุนคนแก้ไขได้"
|
|
29
29
|
|
|
30
|
-
#: forms.py:69 models.py:
|
|
30
|
+
#: forms.py:69 models.py:389
|
|
31
31
|
msgid "Inherit"
|
|
32
|
-
msgstr ""
|
|
32
|
+
msgstr "สืบทอด"
|
|
33
33
|
|
|
34
34
|
#: middleware.py:13
|
|
35
35
|
msgid "Site is readonly for maintenance"
|
|
36
36
|
msgstr "สามารถอ่านไซต์เท่านั้น เนื่องจากมีการซ่อมบำรุง"
|
|
37
37
|
|
|
38
|
-
#: models.py:
|
|
38
|
+
#: models.py:53
|
|
39
39
|
msgid "name"
|
|
40
40
|
msgstr "ชื่อ"
|
|
41
41
|
|
|
42
|
-
#: models.py:
|
|
42
|
+
#: models.py:84
|
|
43
43
|
msgid "details"
|
|
44
44
|
msgstr "รายละเอียด"
|
|
45
45
|
|
|
46
|
-
#: models.py:
|
|
46
|
+
#: models.py:85
|
|
47
47
|
msgid "Link to a page where the licence is detailed."
|
|
48
48
|
msgstr "ลิงก์ไปยังหน้ารายละเอียดใบอนุญาต"
|
|
49
49
|
|
|
50
|
-
#: models.py:
|
|
50
|
+
#: models.py:95
|
|
51
51
|
msgid "URL template using OSM tile format"
|
|
52
52
|
msgstr "แม่แบบ URL ที่ใช้ฟอร์แมตไทล์ OSM"
|
|
53
53
|
|
|
54
|
-
#: models.py:
|
|
54
|
+
#: models.py:101
|
|
55
55
|
msgid "Order of the tilelayers in the edit box"
|
|
56
56
|
msgstr "ลำดับของเลเยอร์ไทล์ในกล่องแก้ไข"
|
|
57
57
|
|
|
58
|
-
#: models.py:
|
|
58
|
+
#: models.py:147 models.py:390
|
|
59
59
|
msgid "Everyone"
|
|
60
60
|
msgstr ""
|
|
61
61
|
|
|
62
|
-
#: models.py:
|
|
62
|
+
#: models.py:148 models.py:154 models.py:391
|
|
63
63
|
msgid "Editors only"
|
|
64
64
|
msgstr ""
|
|
65
65
|
|
|
66
|
-
#: models.py:
|
|
66
|
+
#: models.py:149 models.py:392
|
|
67
67
|
msgid "Owner only"
|
|
68
68
|
msgstr ""
|
|
69
69
|
|
|
70
|
-
#: models.py:
|
|
70
|
+
#: models.py:152
|
|
71
71
|
msgid "Everyone (public)"
|
|
72
72
|
msgstr ""
|
|
73
73
|
|
|
74
|
-
#: models.py:
|
|
74
|
+
#: models.py:153
|
|
75
75
|
msgid "Anyone with link"
|
|
76
76
|
msgstr ""
|
|
77
77
|
|
|
78
|
-
#: models.py:
|
|
78
|
+
#: models.py:155
|
|
79
79
|
msgid "Blocked"
|
|
80
80
|
msgstr ""
|
|
81
81
|
|
|
82
|
-
#: models.py:
|
|
83
|
-
msgid "description"
|
|
84
|
-
msgstr "คำอธิบาย"
|
|
85
|
-
|
|
86
|
-
#: models.py:156
|
|
82
|
+
#: models.py:158
|
|
87
83
|
msgid "center"
|
|
88
84
|
msgstr "ทำให้อยู่ตรงกลาง"
|
|
89
85
|
|
|
90
|
-
#: models.py:
|
|
86
|
+
#: models.py:159
|
|
91
87
|
msgid "zoom"
|
|
92
88
|
msgstr "ซูม"
|
|
93
89
|
|
|
94
|
-
#: models.py:
|
|
90
|
+
#: models.py:161
|
|
95
91
|
msgid "locate"
|
|
96
92
|
msgstr "ระบุตำแหน่ง"
|
|
97
93
|
|
|
98
|
-
#: models.py:
|
|
94
|
+
#: models.py:161
|
|
99
95
|
msgid "Locate user on load?"
|
|
100
96
|
msgstr "ระบุตำแหน่งผู้ใช้ที่กำลังโหลด?"
|
|
101
97
|
|
|
102
|
-
#: models.py:
|
|
98
|
+
#: models.py:165
|
|
103
99
|
msgid "Choose the map licence."
|
|
104
100
|
msgstr "เลือกใบอนุญาติแผนที่"
|
|
105
101
|
|
|
106
|
-
#: models.py:
|
|
102
|
+
#: models.py:166
|
|
107
103
|
msgid "licence"
|
|
108
104
|
msgstr "ใบอนุญาติ"
|
|
109
105
|
|
|
110
|
-
#: models.py:
|
|
106
|
+
#: models.py:177
|
|
111
107
|
msgid "owner"
|
|
112
108
|
msgstr "เจ้าของ"
|
|
113
109
|
|
|
114
|
-
#: models.py:
|
|
110
|
+
#: models.py:181
|
|
115
111
|
msgid "editors"
|
|
116
112
|
msgstr "ผู้แก้ไข"
|
|
117
113
|
|
|
118
|
-
#: models.py:
|
|
114
|
+
#: models.py:186 models.py:413
|
|
119
115
|
msgid "edit status"
|
|
120
116
|
msgstr "สถานะการแก้ไข"
|
|
121
117
|
|
|
122
|
-
#: models.py:
|
|
118
|
+
#: models.py:191
|
|
123
119
|
msgid "share status"
|
|
124
120
|
msgstr "สถานะการแชร์"
|
|
125
121
|
|
|
126
|
-
#: models.py:
|
|
122
|
+
#: models.py:194 models.py:408
|
|
127
123
|
msgid "settings"
|
|
128
124
|
msgstr "การตั้งค่า"
|
|
129
125
|
|
|
130
|
-
#: models.py:
|
|
126
|
+
#: models.py:330
|
|
131
127
|
msgid "Clone of"
|
|
132
128
|
msgstr "โคลนของ"
|
|
133
129
|
|
|
134
|
-
#: models.py:
|
|
130
|
+
#: models.py:399
|
|
131
|
+
msgid "description"
|
|
132
|
+
msgstr "คำอธิบาย"
|
|
133
|
+
|
|
134
|
+
#: models.py:403
|
|
135
135
|
msgid "display on load"
|
|
136
136
|
msgstr "แสดงตอนโหลด"
|
|
137
137
|
|
|
138
|
-
#: models.py:
|
|
138
|
+
#: models.py:404
|
|
139
139
|
msgid "Display this layer on load."
|
|
140
140
|
msgstr "แสดงเลเยอร์ตอนโหลด"
|
|
141
141
|
|
|
@@ -264,13 +264,59 @@ msgstr "สร้างแผนที่"
|
|
|
264
264
|
msgid "Play with the demo"
|
|
265
265
|
msgstr "เล่นกับตัวอย่างเดโม่"
|
|
266
266
|
|
|
267
|
-
#: templates/umap/
|
|
267
|
+
#: templates/umap/components/alerts/alert.html:14
|
|
268
|
+
#: templates/umap/components/alerts/alert.html:49
|
|
269
|
+
#: templates/umap/components/alerts/alert.html:71
|
|
270
|
+
msgid "Close"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
#: templates/umap/components/alerts/alert.html:27
|
|
274
|
+
#, python-format
|
|
275
|
+
msgid ""
|
|
276
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
277
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
278
|
+
"target=\"_blank\">log in</a>."
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
281
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
282
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:33
|
|
286
|
+
msgid "Copy link"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
290
|
+
msgid "Enter your email address to receive the secret link:"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:41
|
|
294
|
+
msgid "Email"
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:42
|
|
298
|
+
msgid "Send me the link"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:63
|
|
302
|
+
msgid "See their edits in another tab"
|
|
303
|
+
msgstr ""
|
|
304
|
+
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
306
|
+
msgid "Keep your changes and loose theirs"
|
|
307
|
+
msgstr ""
|
|
308
|
+
|
|
309
|
+
#: templates/umap/components/alerts/alert.html:65
|
|
310
|
+
msgid "Keep their changes and loose yours"
|
|
311
|
+
msgstr ""
|
|
312
|
+
|
|
313
|
+
#: templates/umap/content.html:24
|
|
268
314
|
msgid ""
|
|
269
315
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
270
316
|
"allowed."
|
|
271
317
|
msgstr ""
|
|
272
318
|
|
|
273
|
-
#: templates/umap/content.html:
|
|
319
|
+
#: templates/umap/content.html:32
|
|
274
320
|
#, python-format
|
|
275
321
|
msgid ""
|
|
276
322
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -279,11 +325,11 @@ msgid ""
|
|
|
279
325
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
280
326
|
msgstr "นี่เป็นเพียงตัวอย่างสาธิต ใช้สำหรับการทดสอบและการเผยแพร่ล่วงหน้า ถ้าต้องการตัวอย่าง\nเสถียร โปรดใช้ <a href=\"%(stable_url)s\">%(stable_url)s</a> คุณยังสามารถโฮสต์ตัวอย่างของคุณได้ เนื่องจากเป็น<a href=\"%(repo_url)s\">โอเพนซอร์ส</a>!"
|
|
281
327
|
|
|
282
|
-
#: templates/umap/home.html:
|
|
328
|
+
#: templates/umap/home.html:11
|
|
283
329
|
msgid "Map of the uMaps"
|
|
284
330
|
msgstr "แผนที่จาก uMaps"
|
|
285
331
|
|
|
286
|
-
#: templates/umap/home.html:
|
|
332
|
+
#: templates/umap/home.html:17
|
|
287
333
|
msgid "Get inspired, browse maps"
|
|
288
334
|
msgstr "รับแรงบันดาลใจ เรียกดูแผนที่"
|
|
289
335
|
|
|
@@ -291,7 +337,7 @@ msgstr "รับแรงบันดาลใจ เรียกดูแผ
|
|
|
291
337
|
msgid "You are logged in. Continuing..."
|
|
292
338
|
msgstr "คุณเข้าสู่ระบบแล้ว กำลังดำเนินการต่อ..."
|
|
293
339
|
|
|
294
|
-
#: templates/umap/map_list.html:9 views.py:
|
|
340
|
+
#: templates/umap/map_list.html:9 views.py:348
|
|
295
341
|
msgid "by"
|
|
296
342
|
msgstr "โดย"
|
|
297
343
|
|
|
@@ -327,57 +373,57 @@ msgstr ""
|
|
|
327
373
|
msgid "Actions"
|
|
328
374
|
msgstr ""
|
|
329
375
|
|
|
330
|
-
#: templates/umap/map_table.html:
|
|
376
|
+
#: templates/umap/map_table.html:26 templates/umap/map_table.html:28
|
|
331
377
|
msgid "Open preview"
|
|
332
378
|
msgstr ""
|
|
333
379
|
|
|
334
|
-
#: templates/umap/map_table.html:
|
|
380
|
+
#: templates/umap/map_table.html:48 templates/umap/map_table.html:50
|
|
335
381
|
msgid "Share"
|
|
336
382
|
msgstr ""
|
|
337
383
|
|
|
338
|
-
#: templates/umap/map_table.html:
|
|
384
|
+
#: templates/umap/map_table.html:54 templates/umap/map_table.html:56
|
|
339
385
|
msgid "Edit"
|
|
340
386
|
msgstr ""
|
|
341
387
|
|
|
342
|
-
#: templates/umap/map_table.html:
|
|
388
|
+
#: templates/umap/map_table.html:60 templates/umap/map_table.html:62
|
|
343
389
|
msgid "Download"
|
|
344
390
|
msgstr ""
|
|
345
391
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
392
|
+
#: templates/umap/map_table.html:66 templates/umap/map_table.html:68
|
|
347
393
|
msgid "Clone"
|
|
348
394
|
msgstr ""
|
|
349
395
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
396
|
+
#: templates/umap/map_table.html:77 templates/umap/map_table.html:79
|
|
351
397
|
msgid "Delete"
|
|
352
398
|
msgstr ""
|
|
353
399
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
400
|
+
#: templates/umap/map_table.html:93
|
|
355
401
|
msgid "first"
|
|
356
402
|
msgstr ""
|
|
357
403
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
404
|
+
#: templates/umap/map_table.html:94
|
|
359
405
|
msgid "previous"
|
|
360
406
|
msgstr ""
|
|
361
407
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
408
|
+
#: templates/umap/map_table.html:102
|
|
363
409
|
#, python-format
|
|
364
410
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
365
411
|
msgstr ""
|
|
366
412
|
|
|
367
|
-
#: templates/umap/map_table.html:
|
|
413
|
+
#: templates/umap/map_table.html:107
|
|
368
414
|
msgid "next"
|
|
369
415
|
msgstr ""
|
|
370
416
|
|
|
371
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:108
|
|
372
418
|
msgid "last"
|
|
373
419
|
msgstr ""
|
|
374
420
|
|
|
375
|
-
#: templates/umap/map_table.html:
|
|
421
|
+
#: templates/umap/map_table.html:116
|
|
376
422
|
#, python-format
|
|
377
423
|
msgid "Lines per page: %(per_page)s"
|
|
378
424
|
msgstr ""
|
|
379
425
|
|
|
380
|
-
#: templates/umap/map_table.html:
|
|
426
|
+
#: templates/umap/map_table.html:121
|
|
381
427
|
#, python-format
|
|
382
428
|
msgid "%(count)s maps"
|
|
383
429
|
msgstr ""
|
|
@@ -448,17 +494,17 @@ msgstr "เปลี่ยนรหัสผ่านแล้ว"
|
|
|
448
494
|
msgid "Your password was changed."
|
|
449
495
|
msgstr "รหัสผ่านของคุณนั้นถูกเปลี่ยนแล้ว"
|
|
450
496
|
|
|
451
|
-
#: templates/umap/search.html:
|
|
497
|
+
#: templates/umap/search.html:13
|
|
452
498
|
#, python-format
|
|
453
499
|
msgid "%(count)s map found:"
|
|
454
500
|
msgid_plural "%(count)s maps found:"
|
|
455
501
|
msgstr[0] ""
|
|
456
502
|
|
|
457
|
-
#: templates/umap/search.html:
|
|
503
|
+
#: templates/umap/search.html:21
|
|
458
504
|
msgid "No map found."
|
|
459
505
|
msgstr ""
|
|
460
506
|
|
|
461
|
-
#: templates/umap/search.html:
|
|
507
|
+
#: templates/umap/search.html:24
|
|
462
508
|
msgid "Latest created maps"
|
|
463
509
|
msgstr ""
|
|
464
510
|
|
|
@@ -470,20 +516,20 @@ msgstr "ค้นหาแผนที่"
|
|
|
470
516
|
msgid "Search"
|
|
471
517
|
msgstr "ค้นหา"
|
|
472
518
|
|
|
473
|
-
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:
|
|
519
|
+
#: templates/umap/user_dashboard.html:7 templates/umap/user_dashboard.html:27
|
|
474
520
|
msgid "Search my maps"
|
|
475
521
|
msgstr ""
|
|
476
522
|
|
|
477
|
-
#: templates/umap/user_dashboard.html:
|
|
523
|
+
#: templates/umap/user_dashboard.html:10
|
|
478
524
|
#, python-format
|
|
479
525
|
msgid "My Maps (%(count)s)"
|
|
480
526
|
msgstr ""
|
|
481
527
|
|
|
482
|
-
#: templates/umap/user_dashboard.html:
|
|
528
|
+
#: templates/umap/user_dashboard.html:12
|
|
483
529
|
msgid "My profile"
|
|
484
530
|
msgstr ""
|
|
485
531
|
|
|
486
|
-
#: templates/umap/user_dashboard.html:
|
|
532
|
+
#: templates/umap/user_dashboard.html:20 templates/umap/user_dashboard.html:24
|
|
487
533
|
msgid "Map’s title"
|
|
488
534
|
msgstr ""
|
|
489
535
|
|
|
@@ -496,52 +542,61 @@ msgstr ""
|
|
|
496
542
|
msgid "You have no map yet."
|
|
497
543
|
msgstr ""
|
|
498
544
|
|
|
499
|
-
#: views.py:
|
|
545
|
+
#: views.py:353
|
|
500
546
|
msgid "View the map"
|
|
501
547
|
msgstr "ดูแผนที่"
|
|
502
548
|
|
|
503
|
-
#: views.py:
|
|
549
|
+
#: views.py:719
|
|
504
550
|
msgid "See full screen"
|
|
505
551
|
msgstr ""
|
|
506
552
|
|
|
507
|
-
#: views.py:
|
|
553
|
+
#: views.py:847
|
|
508
554
|
msgid "Map editors updated with success!"
|
|
509
555
|
msgstr "ผู้แก้ไขแผนที่อัปเดตสำเร็จแล้ว!"
|
|
510
556
|
|
|
511
|
-
#: views.py:
|
|
557
|
+
#: views.py:883
|
|
512
558
|
#, python-format
|
|
513
559
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
514
560
|
msgstr ""
|
|
515
561
|
|
|
516
|
-
#: views.py:
|
|
562
|
+
#: views.py:886
|
|
517
563
|
#, python-format
|
|
518
564
|
msgid "Here is your secret edit link: %(link)s"
|
|
519
565
|
msgstr ""
|
|
520
566
|
|
|
521
|
-
#: views.py:
|
|
567
|
+
#: views.py:893
|
|
568
|
+
#, python-format
|
|
569
|
+
msgid "Can't send email to %(email)s"
|
|
570
|
+
msgstr ""
|
|
571
|
+
|
|
572
|
+
#: views.py:896
|
|
522
573
|
#, python-format
|
|
523
574
|
msgid "Email sent to %(email)s"
|
|
524
575
|
msgstr ""
|
|
525
576
|
|
|
526
|
-
#: views.py:
|
|
577
|
+
#: views.py:907
|
|
527
578
|
msgid "Only its owner can delete the map."
|
|
528
579
|
msgstr "เฉพาะเจ้าของสามารถลบแผนที่ได้เท่านั้น"
|
|
529
580
|
|
|
530
|
-
#: views.py:
|
|
581
|
+
#: views.py:910
|
|
582
|
+
msgid "Map successfully deleted."
|
|
583
|
+
msgstr ""
|
|
584
|
+
|
|
585
|
+
#: views.py:936
|
|
531
586
|
#, python-format
|
|
532
587
|
msgid ""
|
|
533
588
|
"Your map has been cloned! If you want to edit this map from another "
|
|
534
589
|
"computer, please use this link: %(anonymous_url)s"
|
|
535
590
|
msgstr "แผนที่ของคุณถูกโคลนแล้ว! ถ้าคุณต้องการแก้ไขแผนที่นี้จากอุปกรณ์อื่น โปรดใช้ลิงค์: %(anonymous_url)s"
|
|
536
591
|
|
|
537
|
-
#: views.py:
|
|
592
|
+
#: views.py:941
|
|
538
593
|
msgid "Congratulations, your map has been cloned!"
|
|
539
594
|
msgstr "ยินดีด้วย แผนที่ของคุณถูกโคลนแล้ว!"
|
|
540
595
|
|
|
541
|
-
#: views.py:
|
|
596
|
+
#: views.py:1176
|
|
542
597
|
msgid "Layer successfully deleted."
|
|
543
598
|
msgstr "ลบเลเยอร์สำเร็จแล้ว"
|
|
544
599
|
|
|
545
|
-
#: views.py:
|
|
600
|
+
#: views.py:1198
|
|
546
601
|
msgid "Permissions updated with success!"
|
|
547
602
|
msgstr ""
|
|
Binary file
|