umap-project 3.3.6__py3-none-any.whl → 3.4.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/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +35 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +148 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/urls.py +1 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,7 +9,7 @@ msgid ""
|
|
|
9
9
|
msgstr ""
|
|
10
10
|
"Project-Id-Version: uMap\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date:
|
|
12
|
+
"POT-Creation-Date: 2025-10-14 15:28+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
14
|
"Last-Translator: Krittin Leewanich, 2023-2024\n"
|
|
15
15
|
"Language-Team: Thai (Thailand) (http://app.transifex.com/openstreetmap/umap/language/th_TH/)\n"
|
|
@@ -27,138 +27,238 @@ msgstr "ส่งออก CSV"
|
|
|
27
27
|
msgid "This map is not publicly available"
|
|
28
28
|
msgstr ""
|
|
29
29
|
|
|
30
|
-
#: middleware.py:
|
|
30
|
+
#: middleware.py:19
|
|
31
31
|
msgid "Site is readonly for maintenance"
|
|
32
32
|
msgstr "สามารถอ่านไซต์เท่านั้น เนื่องจากมีการซ่อมบำรุง"
|
|
33
33
|
|
|
34
|
-
#:
|
|
34
|
+
#: middleware.py:34
|
|
35
|
+
#, python-format
|
|
36
|
+
msgid ""
|
|
37
|
+
"Using “%(name)s” to authenticate is deprecated and will be removed soon. "
|
|
38
|
+
"Please configure another provider below before losing access to your account"
|
|
39
|
+
" and maps. Then, please logout and login again with the new provider."
|
|
40
|
+
msgstr ""
|
|
41
|
+
|
|
42
|
+
#: models.py:61 models.py:80
|
|
35
43
|
msgid "name"
|
|
36
44
|
msgstr "ชื่อ"
|
|
37
45
|
|
|
38
|
-
#: models.py:
|
|
46
|
+
#: models.py:63 models.py:503
|
|
39
47
|
msgid "description"
|
|
40
48
|
msgstr "คำอธิบาย"
|
|
41
49
|
|
|
42
|
-
#: models.py:
|
|
50
|
+
#: models.py:111
|
|
43
51
|
msgid "details"
|
|
44
52
|
msgstr "รายละเอียด"
|
|
45
53
|
|
|
46
|
-
#: models.py:
|
|
54
|
+
#: models.py:112
|
|
47
55
|
msgid "Link to a page where the licence is detailed."
|
|
48
56
|
msgstr "ลิงก์ไปยังหน้ารายละเอียดใบอนุญาต"
|
|
49
57
|
|
|
50
|
-
#: models.py:
|
|
58
|
+
#: models.py:122
|
|
51
59
|
msgid "URL template using OSM tile format"
|
|
52
60
|
msgstr "แม่แบบ URL ที่ใช้ฟอร์แมตไทล์ OSM"
|
|
53
61
|
|
|
54
|
-
#: models.py:
|
|
62
|
+
#: models.py:128
|
|
55
63
|
msgid "Order of the tilelayers in the edit box"
|
|
56
64
|
msgstr "ลำดับของเลเยอร์ไทล์ในกล่องแก้ไข"
|
|
57
65
|
|
|
58
|
-
#: models.py:
|
|
66
|
+
#: models.py:176 models.py:497
|
|
59
67
|
msgid "Only editable with secret edit link"
|
|
60
68
|
msgstr "แก้ไขได้ ด้วยลิงก์ลับ"
|
|
61
69
|
|
|
62
|
-
#: models.py:
|
|
70
|
+
#: models.py:177 models.py:498
|
|
63
71
|
msgid "Everyone can edit"
|
|
64
72
|
msgstr "ทุนคนแก้ไขได้"
|
|
65
73
|
|
|
66
|
-
#: models.py:
|
|
74
|
+
#: models.py:180 models.py:491
|
|
67
75
|
msgid "Everyone"
|
|
68
76
|
msgstr "ทุกคน"
|
|
69
77
|
|
|
70
|
-
#: models.py:
|
|
78
|
+
#: models.py:181 models.py:190 models.py:492
|
|
71
79
|
msgid "Editors and team only"
|
|
72
80
|
msgstr "ผู้แก่ไขและทีมเท่านั้น"
|
|
73
81
|
|
|
74
|
-
#: models.py:
|
|
82
|
+
#: models.py:182 models.py:493
|
|
75
83
|
msgid "Owner only"
|
|
76
84
|
msgstr "เจ้าของเท่านั้น"
|
|
77
85
|
|
|
78
|
-
#: models.py:
|
|
86
|
+
#: models.py:185
|
|
79
87
|
msgid "Draft (private)"
|
|
80
88
|
msgstr ""
|
|
81
89
|
|
|
82
|
-
#: models.py:
|
|
90
|
+
#: models.py:186
|
|
83
91
|
msgid "Everyone (public)"
|
|
84
92
|
msgstr "ทุกคน (สาธารณะ)"
|
|
85
93
|
|
|
86
|
-
#: models.py:
|
|
94
|
+
#: models.py:189
|
|
87
95
|
msgid "Anyone with link"
|
|
88
96
|
msgstr "ทุกคนที่มีลิงก์"
|
|
89
97
|
|
|
90
|
-
#: models.py:
|
|
98
|
+
#: models.py:191
|
|
91
99
|
msgid "Blocked"
|
|
92
100
|
msgstr "บล็อก"
|
|
93
101
|
|
|
94
|
-
#: models.py:
|
|
102
|
+
#: models.py:192 models.py:487
|
|
95
103
|
msgid "Deleted"
|
|
96
104
|
msgstr ""
|
|
97
105
|
|
|
98
|
-
#: models.py:
|
|
106
|
+
#: models.py:195
|
|
99
107
|
msgid "center"
|
|
100
108
|
msgstr "ทำให้อยู่ตรงกลาง"
|
|
101
109
|
|
|
102
|
-
#: models.py:
|
|
110
|
+
#: models.py:196
|
|
103
111
|
msgid "zoom"
|
|
104
112
|
msgstr "ซูม"
|
|
105
113
|
|
|
106
|
-
#: models.py:
|
|
114
|
+
#: models.py:198
|
|
107
115
|
msgid "locate"
|
|
108
116
|
msgstr "ระบุตำแหน่ง"
|
|
109
117
|
|
|
110
|
-
#: models.py:
|
|
118
|
+
#: models.py:198
|
|
111
119
|
msgid "Locate user on load?"
|
|
112
120
|
msgstr "ระบุตำแหน่งผู้ใช้ที่กำลังโหลด?"
|
|
113
121
|
|
|
114
|
-
#: models.py:
|
|
122
|
+
#: models.py:202
|
|
115
123
|
msgid "Choose the map licence."
|
|
116
124
|
msgstr "เลือกใบอนุญาติแผนที่"
|
|
117
125
|
|
|
118
|
-
#: models.py:
|
|
126
|
+
#: models.py:203
|
|
119
127
|
msgid "licence"
|
|
120
128
|
msgstr "ใบอนุญาติ"
|
|
121
129
|
|
|
122
|
-
#: models.py:
|
|
130
|
+
#: models.py:214
|
|
123
131
|
msgid "owner"
|
|
124
132
|
msgstr "เจ้าของ"
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:218
|
|
127
135
|
msgid "editors"
|
|
128
136
|
msgstr "ผู้แก้ไข"
|
|
129
137
|
|
|
130
|
-
#: models.py:
|
|
138
|
+
#: models.py:224
|
|
131
139
|
msgid "team"
|
|
132
140
|
msgstr "ทีม"
|
|
133
141
|
|
|
134
|
-
#: models.py:
|
|
142
|
+
#: models.py:230 models.py:519
|
|
135
143
|
msgid "edit status"
|
|
136
144
|
msgstr "สถานะการแก้ไข"
|
|
137
145
|
|
|
138
|
-
#: models.py:
|
|
146
|
+
#: models.py:235 models.py:524
|
|
139
147
|
msgid "share status"
|
|
140
148
|
msgstr "สถานะการแชร์"
|
|
141
149
|
|
|
142
|
-
#: models.py:
|
|
150
|
+
#: models.py:238 models.py:514
|
|
143
151
|
msgid "settings"
|
|
144
152
|
msgstr "การตั้งค่า"
|
|
145
153
|
|
|
146
|
-
#: models.py:
|
|
154
|
+
#: models.py:243
|
|
155
|
+
msgid "save as template"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#: models.py:244
|
|
159
|
+
msgid "This map is a template map."
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
#: models.py:420
|
|
147
163
|
msgid "Clone of"
|
|
148
164
|
msgstr "โคลนของ"
|
|
149
165
|
|
|
150
|
-
#: models.py:
|
|
166
|
+
#: models.py:486 models.py:490 models.py:496
|
|
151
167
|
msgid "Inherit"
|
|
152
168
|
msgstr "สืบทอด"
|
|
153
169
|
|
|
154
|
-
#: models.py:
|
|
170
|
+
#: models.py:509
|
|
155
171
|
msgid "display on load"
|
|
156
172
|
msgstr "แสดงตอนโหลด"
|
|
157
173
|
|
|
158
|
-
#: models.py:
|
|
174
|
+
#: models.py:510
|
|
159
175
|
msgid "Display this layer on load."
|
|
160
176
|
msgstr "แสดงเลเยอร์ตอนโหลด"
|
|
161
177
|
|
|
178
|
+
#: settings/base.py:283
|
|
179
|
+
msgid "uMap user documentation"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#: settings/base.py:288
|
|
183
|
+
msgid "Video tutorials"
|
|
184
|
+
msgstr ""
|
|
185
|
+
|
|
186
|
+
#: settings/base.py:293
|
|
187
|
+
msgid "OpenStreetMap.org forum"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#: settings/base.py:298
|
|
191
|
+
msgid "OpenStreetMap France forum"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#: settings/base.py:318
|
|
195
|
+
msgid "Art and Culture"
|
|
196
|
+
msgstr ""
|
|
197
|
+
|
|
198
|
+
#: settings/base.py:319
|
|
199
|
+
msgid "Cycling"
|
|
200
|
+
msgstr ""
|
|
201
|
+
|
|
202
|
+
#: settings/base.py:320
|
|
203
|
+
msgid "Business"
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
#: settings/base.py:321
|
|
207
|
+
msgid "Environment"
|
|
208
|
+
msgstr ""
|
|
209
|
+
|
|
210
|
+
#: settings/base.py:322
|
|
211
|
+
msgid "Education"
|
|
212
|
+
msgstr ""
|
|
213
|
+
|
|
214
|
+
#: settings/base.py:323
|
|
215
|
+
msgid "Food and Agriculture"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
#: settings/base.py:324
|
|
219
|
+
msgid "Geopolitics"
|
|
220
|
+
msgstr ""
|
|
221
|
+
|
|
222
|
+
#: settings/base.py:325
|
|
223
|
+
msgid "Health"
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
#: settings/base.py:326
|
|
227
|
+
msgid "Hiking"
|
|
228
|
+
msgstr ""
|
|
229
|
+
|
|
230
|
+
#: settings/base.py:327
|
|
231
|
+
msgid "History"
|
|
232
|
+
msgstr ""
|
|
233
|
+
|
|
234
|
+
#: settings/base.py:328
|
|
235
|
+
msgid "Public sector"
|
|
236
|
+
msgstr ""
|
|
237
|
+
|
|
238
|
+
#: settings/base.py:329
|
|
239
|
+
msgid "Science"
|
|
240
|
+
msgstr ""
|
|
241
|
+
|
|
242
|
+
#: settings/base.py:330
|
|
243
|
+
msgid "Shopping"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
#: settings/base.py:331
|
|
247
|
+
msgid "Sport and Leisure"
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#: settings/base.py:332
|
|
251
|
+
msgid "Travel"
|
|
252
|
+
msgstr ""
|
|
253
|
+
|
|
254
|
+
#: settings/base.py:333
|
|
255
|
+
msgid "Transports"
|
|
256
|
+
msgstr ""
|
|
257
|
+
|
|
258
|
+
#: settings/base.py:334
|
|
259
|
+
msgid "Tourism"
|
|
260
|
+
msgstr ""
|
|
261
|
+
|
|
162
262
|
#: templates/403.html:8
|
|
163
263
|
msgid ""
|
|
164
264
|
"<a href=\"https://discover.umap-project.org/support/faq/#map-statuses\" "
|
|
@@ -174,45 +274,59 @@ msgstr ""
|
|
|
174
274
|
msgid "404 Page Not Found"
|
|
175
275
|
msgstr ""
|
|
176
276
|
|
|
177
|
-
#: templates/auth/user_detail.html:
|
|
277
|
+
#: templates/auth/user_detail.html:6
|
|
278
|
+
#, python-format
|
|
279
|
+
msgid "%(current_user)s’s maps"
|
|
280
|
+
msgstr ""
|
|
281
|
+
|
|
282
|
+
#: templates/auth/user_detail.html:12
|
|
178
283
|
#, python-format
|
|
179
284
|
msgid "Browse %(current_user)s's maps"
|
|
180
285
|
msgstr "เรียกดูแผนที่ของ %(current_user)s"
|
|
181
286
|
|
|
182
|
-
#: templates/auth/user_detail.html:
|
|
287
|
+
#: templates/auth/user_detail.html:21
|
|
183
288
|
#, python-format
|
|
184
289
|
msgid "%(current_user)s has no maps."
|
|
185
290
|
msgstr "ไม่มีแผนที่ของ %(current_user)s"
|
|
186
291
|
|
|
187
|
-
#: templates/auth/user_form.html:
|
|
292
|
+
#: templates/auth/user_form.html:6
|
|
293
|
+
msgid "My Profile"
|
|
294
|
+
msgstr ""
|
|
295
|
+
|
|
296
|
+
#: templates/auth/user_form.html:24 templates/umap/team_form.html:25
|
|
188
297
|
msgid "Save"
|
|
189
298
|
msgstr "บันทึก"
|
|
190
299
|
|
|
191
|
-
#: templates/auth/user_form.html:
|
|
300
|
+
#: templates/auth/user_form.html:30
|
|
192
301
|
msgid "Your current providers"
|
|
193
302
|
msgstr "ผู้ให้บริการปัจจุบันของคุณ"
|
|
194
303
|
|
|
195
|
-
#: templates/auth/user_form.html:
|
|
304
|
+
#: templates/auth/user_form.html:44
|
|
196
305
|
msgid "Connect to another provider"
|
|
197
306
|
msgstr "เชื่อมต่อผู้ให้บริการอื่น"
|
|
198
307
|
|
|
199
|
-
#: templates/auth/user_form.html:
|
|
308
|
+
#: templates/auth/user_form.html:47
|
|
200
309
|
msgid ""
|
|
201
310
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
202
311
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
203
312
|
msgstr "การเชื่อมโยงบัญชีของคุณกับผู้ให้บริการมากกว่าหนึ่งราย ถือเป็นสิ่งที่ดี ในกรณีที่ผู้ให้บริการรายหนึ่งไม่พร้อมให้บริการ ไม่ว่าจะเป็นชั่วคราวหรือถาวรก็ตาม"
|
|
204
313
|
|
|
205
|
-
#: templates/auth/user_stars.html:
|
|
314
|
+
#: templates/auth/user_stars.html:6
|
|
315
|
+
#, python-format
|
|
316
|
+
msgid "%(current_user)s’s starred maps"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
#: templates/auth/user_stars.html:12
|
|
206
320
|
#, python-format
|
|
207
321
|
msgid "Browse %(current_user)s's starred maps"
|
|
208
322
|
msgstr "เรียนดูแผนที่ติดดาวของ%(current_user)s"
|
|
209
323
|
|
|
210
|
-
#: templates/auth/user_stars.html:
|
|
324
|
+
#: templates/auth/user_stars.html:21
|
|
211
325
|
#, python-format
|
|
212
326
|
msgid "%(current_user)s has no starred maps yet."
|
|
213
327
|
msgstr "%(current_user)sยังไม่มีแผนที่ติดดาว"
|
|
214
328
|
|
|
215
|
-
#: templates/base.html:
|
|
329
|
+
#: templates/base.html:16
|
|
216
330
|
msgid ""
|
|
217
331
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
218
332
|
"them in your site."
|
|
@@ -242,6 +356,10 @@ msgstr "รหัสผ่าน"
|
|
|
242
356
|
msgid "Please choose a provider:"
|
|
243
357
|
msgstr ""
|
|
244
358
|
|
|
359
|
+
#: templates/umap/about.html:5 templates/umap/navigation.html:22
|
|
360
|
+
msgid "About"
|
|
361
|
+
msgstr "เกี่ยวกับ"
|
|
362
|
+
|
|
245
363
|
#: templates/umap/about_summary.html:12
|
|
246
364
|
#, python-format
|
|
247
365
|
msgid ""
|
|
@@ -283,7 +401,7 @@ msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
|
283
401
|
msgstr "และเป็น<a href=\"%(repo_url)s\">โอเพ่นซอร์ส</a>!"
|
|
284
402
|
|
|
285
403
|
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
286
|
-
#: templates/umap/user_dashboard.html:
|
|
404
|
+
#: templates/umap/user_dashboard.html:16
|
|
287
405
|
msgid "Create a map"
|
|
288
406
|
msgstr "สร้างแผนที่"
|
|
289
407
|
|
|
@@ -292,48 +410,54 @@ msgid "Play with the demo"
|
|
|
292
410
|
msgstr "เล่นกับตัวอย่างเดโม่"
|
|
293
411
|
|
|
294
412
|
#: templates/umap/components/alerts/alert.html:17
|
|
295
|
-
#: templates/umap/components/alerts/alert.html:
|
|
296
|
-
#: templates/umap/components/alerts/alert.html:
|
|
413
|
+
#: templates/umap/components/alerts/alert.html:69
|
|
414
|
+
#: templates/umap/components/alerts/alert.html:97
|
|
297
415
|
msgid "Close"
|
|
298
416
|
msgstr "ปิด"
|
|
299
417
|
|
|
300
418
|
#: templates/umap/components/alerts/alert.html:32
|
|
301
419
|
#, python-format
|
|
302
420
|
msgid ""
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
msgstr "
|
|
421
|
+
"Oops, I didn't mean it, I want to <a href=\"%(login_url)s\" "
|
|
422
|
+
"class=\"login\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
423
|
+
"class=\"login\">log in</a> (no worry, we'll attach the map to your account)."
|
|
424
|
+
msgstr ""
|
|
425
|
+
|
|
426
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
427
|
+
msgid ""
|
|
428
|
+
"Yes, I want to continue editing anonymously, I will save the secret edit "
|
|
429
|
+
"link to be able to edit this map later or on another device"
|
|
430
|
+
msgstr ""
|
|
307
431
|
|
|
308
|
-
#: templates/umap/components/alerts/alert.html:
|
|
432
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
309
433
|
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
310
434
|
msgstr "นี่คือลิงค์ลับสำหรับแก้ไขแผนที่ โปรดเก็บรักษาไว้อย่างปลอดภัย:"
|
|
311
435
|
|
|
312
|
-
#: templates/umap/components/alerts/alert.html:
|
|
436
|
+
#: templates/umap/components/alerts/alert.html:43
|
|
313
437
|
msgid "Copy link"
|
|
314
438
|
msgstr "คัดลอกลิงค์"
|
|
315
439
|
|
|
316
|
-
#: templates/umap/components/alerts/alert.html:
|
|
440
|
+
#: templates/umap/components/alerts/alert.html:50
|
|
317
441
|
msgid "Enter your email address to receive the secret link:"
|
|
318
442
|
msgstr "กรอกที่อยู่อีเมลของคุณเพื่อรับลิงค์ลับ:"
|
|
319
443
|
|
|
320
|
-
#: templates/umap/components/alerts/alert.html:
|
|
444
|
+
#: templates/umap/components/alerts/alert.html:56
|
|
321
445
|
msgid "Email"
|
|
322
446
|
msgstr "อีเมล"
|
|
323
447
|
|
|
324
|
-
#: templates/umap/components/alerts/alert.html:
|
|
448
|
+
#: templates/umap/components/alerts/alert.html:59
|
|
325
449
|
msgid "Send me the link"
|
|
326
450
|
msgstr "ส่งลิงค์มาให้ฉัน"
|
|
327
451
|
|
|
328
|
-
#: templates/umap/components/alerts/alert.html:
|
|
452
|
+
#: templates/umap/components/alerts/alert.html:84
|
|
329
453
|
msgid "See their edits in another tab"
|
|
330
454
|
msgstr ""
|
|
331
455
|
|
|
332
|
-
#: templates/umap/components/alerts/alert.html:
|
|
456
|
+
#: templates/umap/components/alerts/alert.html:87
|
|
333
457
|
msgid "Keep your changes and loose theirs"
|
|
334
458
|
msgstr ""
|
|
335
459
|
|
|
336
|
-
#: templates/umap/components/alerts/alert.html:
|
|
460
|
+
#: templates/umap/components/alerts/alert.html:90
|
|
337
461
|
msgid "Keep their changes and loose yours"
|
|
338
462
|
msgstr ""
|
|
339
463
|
|
|
@@ -381,11 +505,20 @@ msgstr ""
|
|
|
381
505
|
msgid "My Maps"
|
|
382
506
|
msgstr ""
|
|
383
507
|
|
|
384
|
-
#: templates/umap/dashboard_menu.html:
|
|
508
|
+
#: templates/umap/dashboard_menu.html:11
|
|
509
|
+
#, python-format
|
|
510
|
+
msgid "My Templates (%(count)s)"
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
514
|
+
msgid "My Templates"
|
|
515
|
+
msgstr ""
|
|
516
|
+
|
|
517
|
+
#: templates/umap/dashboard_menu.html:17
|
|
385
518
|
msgid "My profile"
|
|
386
519
|
msgstr ""
|
|
387
520
|
|
|
388
|
-
#: templates/umap/dashboard_menu.html:
|
|
521
|
+
#: templates/umap/dashboard_menu.html:20
|
|
389
522
|
msgid "My teams"
|
|
390
523
|
msgstr ""
|
|
391
524
|
|
|
@@ -393,7 +526,7 @@ msgstr ""
|
|
|
393
526
|
msgid "Map of the uMaps"
|
|
394
527
|
msgstr "แผนที่จาก uMaps"
|
|
395
528
|
|
|
396
|
-
#: templates/umap/home.html:
|
|
529
|
+
#: templates/umap/home.html:25
|
|
397
530
|
msgid "Get inspired, browse maps"
|
|
398
531
|
msgstr "รับแรงบันดาลใจ เรียกดูแผนที่"
|
|
399
532
|
|
|
@@ -401,15 +534,27 @@ msgstr "รับแรงบันดาลใจ เรียกดูแผ
|
|
|
401
534
|
msgid "You are logged in. Continuing..."
|
|
402
535
|
msgstr "คุณเข้าสู่ระบบแล้ว กำลังดำเนินการต่อ..."
|
|
403
536
|
|
|
404
|
-
#: templates/umap/map_list.html:
|
|
537
|
+
#: templates/umap/map_list.html:15
|
|
538
|
+
msgid "template"
|
|
539
|
+
msgstr ""
|
|
540
|
+
|
|
541
|
+
#: templates/umap/map_list.html:18 views.py:459
|
|
405
542
|
msgid "by"
|
|
406
543
|
msgstr "โดย"
|
|
407
544
|
|
|
408
|
-
#: templates/umap/map_list.html:
|
|
545
|
+
#: templates/umap/map_list.html:22
|
|
546
|
+
msgid "See the template"
|
|
547
|
+
msgstr ""
|
|
548
|
+
|
|
549
|
+
#: templates/umap/map_list.html:22
|
|
550
|
+
msgid "See the map"
|
|
551
|
+
msgstr ""
|
|
552
|
+
|
|
553
|
+
#: templates/umap/map_list.html:28
|
|
409
554
|
msgid "More"
|
|
410
555
|
msgstr "เพิ่มเติม"
|
|
411
556
|
|
|
412
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
557
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
413
558
|
msgid "Name"
|
|
414
559
|
msgstr ""
|
|
415
560
|
|
|
@@ -433,11 +578,11 @@ msgstr ""
|
|
|
433
578
|
msgid "Owner"
|
|
434
579
|
msgstr ""
|
|
435
580
|
|
|
436
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
581
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
437
582
|
msgid "Actions"
|
|
438
583
|
msgstr ""
|
|
439
584
|
|
|
440
|
-
#: templates/umap/map_table.html:
|
|
585
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
441
586
|
msgid "Open preview"
|
|
442
587
|
msgstr ""
|
|
443
588
|
|
|
@@ -446,7 +591,7 @@ msgid "Share"
|
|
|
446
591
|
msgstr ""
|
|
447
592
|
|
|
448
593
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
449
|
-
#: templates/umap/user_teams.html:
|
|
594
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
450
595
|
msgid "Edit"
|
|
451
596
|
msgstr ""
|
|
452
597
|
|
|
@@ -509,10 +654,6 @@ msgstr "เข้าสู่ระบบ"
|
|
|
509
654
|
msgid "Sign in"
|
|
510
655
|
msgstr "ลงชื่อเข้าใช้"
|
|
511
656
|
|
|
512
|
-
#: templates/umap/navigation.html:22
|
|
513
|
-
msgid "About"
|
|
514
|
-
msgstr "เกี่ยวกับ"
|
|
515
|
-
|
|
516
657
|
#: templates/umap/navigation.html:30
|
|
517
658
|
msgid "Change password"
|
|
518
659
|
msgstr "เปลี่ยนรหัสผ่าน"
|
|
@@ -521,51 +662,61 @@ msgstr "เปลี่ยนรหัสผ่าน"
|
|
|
521
662
|
msgid "Log out"
|
|
522
663
|
msgstr "ออกจากระบบ"
|
|
523
664
|
|
|
524
|
-
#: templates/umap/password_change.html:
|
|
665
|
+
#: templates/umap/password_change.html:6
|
|
666
|
+
#: templates/umap/password_change.html:11
|
|
525
667
|
msgid "Password change"
|
|
526
668
|
msgstr "การเปลี่ยนแปลงรหัสผ่าน"
|
|
527
669
|
|
|
528
|
-
#: templates/umap/password_change.html:
|
|
670
|
+
#: templates/umap/password_change.html:14
|
|
529
671
|
msgid ""
|
|
530
672
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
531
673
|
" password twice so we can verify you typed it in correctly."
|
|
532
674
|
msgstr "โปรดใส่รหัสผ่านเก่าของคุณ และเพื่อความปลอดภัย ป้อนรหัสผ่ายใหม่สองครั้งเพื่อตรวจสอบว่าคุณนั้นพิมพ์ถูกต้องแล้ว"
|
|
533
675
|
|
|
534
|
-
#: templates/umap/password_change.html:
|
|
676
|
+
#: templates/umap/password_change.html:21
|
|
535
677
|
msgid "Old password"
|
|
536
678
|
msgstr "รหัสผ่านเก่า"
|
|
537
679
|
|
|
538
|
-
#: templates/umap/password_change.html:
|
|
680
|
+
#: templates/umap/password_change.html:26
|
|
539
681
|
msgid "New password"
|
|
540
682
|
msgstr "รหัสผ่านใหม่"
|
|
541
683
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
684
|
+
#: templates/umap/password_change.html:30
|
|
543
685
|
msgid "New password confirmation"
|
|
544
686
|
msgstr "ยืนยันรหัสผ่านใหม่"
|
|
545
687
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
688
|
+
#: templates/umap/password_change.html:31
|
|
547
689
|
msgid "Change my password"
|
|
548
690
|
msgstr "เปลี่ยนรหัสผ่าน"
|
|
549
691
|
|
|
550
|
-
#: templates/umap/password_change_done.html:
|
|
692
|
+
#: templates/umap/password_change_done.html:6
|
|
693
|
+
#: templates/umap/password_change_done.html:11
|
|
551
694
|
msgid "Password change successful"
|
|
552
695
|
msgstr "เปลี่ยนรหัสผ่านแล้ว"
|
|
553
696
|
|
|
554
|
-
#: templates/umap/password_change_done.html:
|
|
697
|
+
#: templates/umap/password_change_done.html:14
|
|
555
698
|
msgid "Your password was changed."
|
|
556
699
|
msgstr "รหัสผ่านของคุณนั้นถูกเปลี่ยนแล้ว"
|
|
557
700
|
|
|
558
|
-
#: templates/umap/search.html:
|
|
701
|
+
#: templates/umap/search.html:6
|
|
702
|
+
msgid "Explore maps"
|
|
703
|
+
msgstr ""
|
|
704
|
+
|
|
705
|
+
#: templates/umap/search.html:19
|
|
559
706
|
#, python-format
|
|
560
707
|
msgid "%(count)s map found:"
|
|
561
708
|
msgid_plural "%(count)s maps found:"
|
|
562
709
|
msgstr[0] ""
|
|
563
710
|
|
|
564
|
-
#: templates/umap/search.html:
|
|
711
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
565
712
|
msgid "No map found."
|
|
566
713
|
msgstr ""
|
|
567
714
|
|
|
568
|
-
#: templates/umap/search.html:
|
|
715
|
+
#: templates/umap/search.html:36
|
|
716
|
+
msgid "Latest created maps in category"
|
|
717
|
+
msgstr ""
|
|
718
|
+
|
|
719
|
+
#: templates/umap/search.html:43
|
|
569
720
|
msgid "Latest created maps"
|
|
570
721
|
msgstr ""
|
|
571
722
|
|
|
@@ -573,117 +724,167 @@ msgstr ""
|
|
|
573
724
|
msgid "Search maps"
|
|
574
725
|
msgstr "ค้นหาแผนที่"
|
|
575
726
|
|
|
576
|
-
#: templates/umap/search_bar.html:15
|
|
727
|
+
#: templates/umap/search_bar.html:14 templates/umap/user_map_table.html:15
|
|
728
|
+
msgid "Any category"
|
|
729
|
+
msgstr ""
|
|
730
|
+
|
|
731
|
+
#: templates/umap/search_bar.html:19
|
|
577
732
|
msgid "Search"
|
|
578
733
|
msgstr "ค้นหา"
|
|
579
734
|
|
|
580
|
-
#: templates/umap/
|
|
735
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
736
|
+
msgid "Team deletion"
|
|
737
|
+
msgstr ""
|
|
738
|
+
|
|
739
|
+
#: templates/umap/team_detail.html:6
|
|
740
|
+
#, python-format
|
|
741
|
+
msgid "%(current_team)s’s maps"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
744
|
+
#: templates/umap/team_detail.html:14
|
|
581
745
|
#, python-format
|
|
582
746
|
msgid "Browse %(current_team)s's maps"
|
|
583
747
|
msgstr ""
|
|
584
748
|
|
|
585
|
-
#: templates/umap/team_detail.html:
|
|
749
|
+
#: templates/umap/team_detail.html:26
|
|
586
750
|
#, python-format
|
|
587
751
|
msgid "%(current_team)s has no public maps."
|
|
588
752
|
msgstr ""
|
|
589
753
|
|
|
590
|
-
#: templates/umap/team_form.html:
|
|
754
|
+
#: templates/umap/team_form.html:6
|
|
755
|
+
msgid "Create or edit a team"
|
|
756
|
+
msgstr ""
|
|
757
|
+
|
|
758
|
+
#: templates/umap/team_form.html:28
|
|
591
759
|
msgid "Delete this team"
|
|
592
760
|
msgstr ""
|
|
593
761
|
|
|
594
|
-
#: templates/umap/team_form.html:
|
|
762
|
+
#: templates/umap/team_form.html:51
|
|
595
763
|
msgid "Add user"
|
|
596
764
|
msgstr ""
|
|
597
765
|
|
|
598
|
-
#: templates/umap/user_dashboard.html:
|
|
766
|
+
#: templates/umap/user_dashboard.html:10
|
|
599
767
|
msgid "Search my maps"
|
|
600
768
|
msgstr ""
|
|
601
769
|
|
|
602
|
-
#: templates/umap/user_dashboard.html:
|
|
603
|
-
msgid "Map’s
|
|
770
|
+
#: templates/umap/user_dashboard.html:11
|
|
771
|
+
msgid "Map’s name"
|
|
604
772
|
msgstr ""
|
|
605
773
|
|
|
606
|
-
#: templates/umap/user_dashboard.html:
|
|
774
|
+
#: templates/umap/user_dashboard.html:12
|
|
607
775
|
#, python-format
|
|
608
776
|
msgid "Download %(count)s maps"
|
|
609
777
|
msgstr ""
|
|
610
778
|
|
|
611
|
-
#: templates/umap/user_dashboard.html:
|
|
779
|
+
#: templates/umap/user_dashboard.html:15
|
|
612
780
|
msgid "You have no map yet."
|
|
613
781
|
msgstr ""
|
|
614
782
|
|
|
615
|
-
#: templates/umap/user_teams.html:
|
|
783
|
+
#: templates/umap/user_teams.html:6
|
|
784
|
+
msgid "My Teams"
|
|
785
|
+
msgstr ""
|
|
786
|
+
|
|
787
|
+
#: templates/umap/user_teams.html:21
|
|
616
788
|
msgid "Users"
|
|
617
789
|
msgstr "ผู้ใช้"
|
|
618
790
|
|
|
619
|
-
#: templates/umap/user_teams.html:
|
|
791
|
+
#: templates/umap/user_teams.html:52
|
|
620
792
|
msgid "New team"
|
|
621
793
|
msgstr "ทีมใหม่"
|
|
622
794
|
|
|
623
|
-
#:
|
|
795
|
+
#: templates/umap/user_templates.html:10
|
|
796
|
+
msgid "Search my templates"
|
|
797
|
+
msgstr ""
|
|
798
|
+
|
|
799
|
+
#: templates/umap/user_templates.html:11
|
|
800
|
+
msgid "Template’s name"
|
|
801
|
+
msgstr ""
|
|
802
|
+
|
|
803
|
+
#: templates/umap/user_templates.html:12
|
|
804
|
+
#, python-format
|
|
805
|
+
msgid "Download %(count)s templates"
|
|
806
|
+
msgstr ""
|
|
807
|
+
|
|
808
|
+
#: templates/umap/user_templates.html:15
|
|
809
|
+
msgid "You have no template yet."
|
|
810
|
+
msgstr ""
|
|
811
|
+
|
|
812
|
+
#: templates/umap/user_templates.html:16
|
|
813
|
+
msgid "Create a template"
|
|
814
|
+
msgstr ""
|
|
815
|
+
|
|
816
|
+
#: templates/umap/user_templates.html:17
|
|
817
|
+
msgid "No template found."
|
|
818
|
+
msgstr ""
|
|
819
|
+
|
|
820
|
+
#: views.py:235
|
|
624
821
|
msgid "Cannot delete a team with more than one member"
|
|
625
822
|
msgstr ""
|
|
626
823
|
|
|
627
|
-
#: views.py:
|
|
824
|
+
#: views.py:239
|
|
628
825
|
#, python-format
|
|
629
826
|
msgid "Team “%(name)s” has been deleted"
|
|
630
827
|
msgstr ""
|
|
631
828
|
|
|
632
|
-
#: views.py:
|
|
829
|
+
#: views.py:464
|
|
633
830
|
msgid "View the map"
|
|
634
831
|
msgstr "ดูแผนที่"
|
|
635
832
|
|
|
636
|
-
#: views.py:
|
|
833
|
+
#: views.py:872
|
|
637
834
|
msgid "See full screen"
|
|
638
835
|
msgstr ""
|
|
639
836
|
|
|
640
|
-
#: views.py:
|
|
837
|
+
#: views.py:1015
|
|
641
838
|
msgid "Map editors updated with success!"
|
|
642
839
|
msgstr "ผู้แก้ไขแผนที่อัปเดตสำเร็จแล้ว!"
|
|
643
840
|
|
|
644
|
-
#: views.py:
|
|
841
|
+
#: views.py:1051
|
|
645
842
|
#, python-format
|
|
646
843
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
647
844
|
msgstr ""
|
|
648
845
|
|
|
649
|
-
#: views.py:
|
|
846
|
+
#: views.py:1054
|
|
650
847
|
#, python-format
|
|
651
848
|
msgid "Here is your secret edit link: %(link)s"
|
|
652
849
|
msgstr ""
|
|
653
850
|
|
|
654
|
-
#: views.py:
|
|
851
|
+
#: views.py:1061
|
|
655
852
|
#, python-format
|
|
656
853
|
msgid "Can't send email to %(email)s"
|
|
657
854
|
msgstr ""
|
|
658
855
|
|
|
659
|
-
#: views.py:
|
|
856
|
+
#: views.py:1064
|
|
660
857
|
#, python-format
|
|
661
858
|
msgid "Email sent to %(email)s"
|
|
662
859
|
msgstr ""
|
|
663
860
|
|
|
664
|
-
#: views.py:
|
|
861
|
+
#: views.py:1075
|
|
665
862
|
msgid "Only its owner can delete the map."
|
|
666
863
|
msgstr "เฉพาะเจ้าของสามารถลบแผนที่ได้เท่านั้น"
|
|
667
864
|
|
|
668
|
-
#: views.py:
|
|
865
|
+
#: views.py:1081
|
|
669
866
|
msgid "Map successfully deleted."
|
|
670
867
|
msgstr ""
|
|
671
868
|
|
|
672
|
-
#: views.py:
|
|
869
|
+
#: views.py:1107
|
|
673
870
|
#, python-format
|
|
674
871
|
msgid ""
|
|
675
872
|
"Your map has been cloned! If you want to edit this map from another "
|
|
676
873
|
"computer, please use this link: %(anonymous_url)s"
|
|
677
874
|
msgstr "แผนที่ของคุณถูกโคลนแล้ว! ถ้าคุณต้องการแก้ไขแผนที่นี้จากอุปกรณ์อื่น โปรดใช้ลิงค์: %(anonymous_url)s"
|
|
678
875
|
|
|
679
|
-
#: views.py:
|
|
876
|
+
#: views.py:1112
|
|
680
877
|
msgid "Congratulations, your map has been cloned!"
|
|
681
878
|
msgstr "ยินดีด้วย แผนที่ของคุณถูกโคลนแล้ว!"
|
|
682
879
|
|
|
683
|
-
#: views.py:
|
|
880
|
+
#: views.py:1366
|
|
684
881
|
msgid "Layer successfully deleted."
|
|
685
882
|
msgstr "ลบเลเยอร์สำเร็จแล้ว"
|
|
686
883
|
|
|
687
|
-
#: views.py:
|
|
884
|
+
#: views.py:1388
|
|
688
885
|
msgid "Permissions updated with success!"
|
|
689
886
|
msgstr ""
|
|
887
|
+
|
|
888
|
+
#: views.py:1405
|
|
889
|
+
msgid "Generic"
|
|
890
|
+
msgstr ""
|