umap-project 3.0.5__py3-none-any.whl → 3.1.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/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +219 -73
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +15 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +34 -1
- umap/static/umap/locale/en.json +34 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_init.html +3 -1
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_basics.py +9 -1
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +65 -19
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/METADATA +15 -15
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/RECORD +145 -132
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/WHEEL +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.5.dist-info → umap_project-3.1.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
# This file is distributed under the same license as the PACKAGE package.
|
|
4
4
|
#
|
|
5
5
|
# Translators:
|
|
6
|
-
# Yaya - Nurul Azeera Hidayah
|
|
7
|
-
# Yaya - Nurul Azeera Hidayah
|
|
6
|
+
# Yaya - Nurul Azeera Hidayah Yatsuko Muhammad Nur Hidayat Yasuyoshi (MNH48) <admin@mnh48.moe>, 2021,2023-2024
|
|
7
|
+
# Yaya - Nurul Azeera Hidayah Yatsuko Muhammad Nur Hidayat Yasuyoshi (MNH48) <admin@mnh48.moe>, 2021
|
|
8
8
|
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-06-10 09:19+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
|
-
"Last-Translator: Yaya - Nurul Azeera Hidayah
|
|
14
|
+
"Last-Translator: Yaya - Nurul Azeera Hidayah Yatsuko Muhammad Nur Hidayat Yasuyoshi (MNH48) <admin@mnh48.moe>, 2021,2023-2024\n"
|
|
15
15
|
"Language-Team: Malay (http://app.transifex.com/openstreetmap/umap/language/ms/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -27,138 +27,238 @@ msgstr ""
|
|
|
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 "Laman dalam mod baca sahaja untuk penyenggaraan"
|
|
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 "nama"
|
|
37
45
|
|
|
38
|
-
#: models.py:
|
|
46
|
+
#: models.py:63 models.py:503
|
|
39
47
|
msgid "description"
|
|
40
48
|
msgstr "keterangan"
|
|
41
49
|
|
|
42
|
-
#: models.py:
|
|
50
|
+
#: models.py:111
|
|
43
51
|
msgid "details"
|
|
44
52
|
msgstr "perincian"
|
|
45
53
|
|
|
46
|
-
#: models.py:
|
|
54
|
+
#: models.py:112
|
|
47
55
|
msgid "Link to a page where the licence is detailed."
|
|
48
56
|
msgstr "Pautan ke halaman yang menyatakan lesennya."
|
|
49
57
|
|
|
50
|
-
#: models.py:
|
|
58
|
+
#: models.py:122
|
|
51
59
|
msgid "URL template using OSM tile format"
|
|
52
60
|
msgstr "Templat URL menggunakan format fail OSM"
|
|
53
61
|
|
|
54
|
-
#: models.py:
|
|
62
|
+
#: models.py:128
|
|
55
63
|
msgid "Order of the tilelayers in the edit box"
|
|
56
64
|
msgstr "Kedudukan lapisan jubin dalam kotak suntingan"
|
|
57
65
|
|
|
58
|
-
#: models.py:
|
|
66
|
+
#: models.py:176 models.py:497
|
|
59
67
|
msgid "Only editable with secret edit link"
|
|
60
68
|
msgstr "Hanya boleh disunting dengan pautan rahsia"
|
|
61
69
|
|
|
62
|
-
#: models.py:
|
|
70
|
+
#: models.py:177 models.py:498
|
|
63
71
|
msgid "Everyone can edit"
|
|
64
72
|
msgstr "Sesiapa pun boleh sunting"
|
|
65
73
|
|
|
66
|
-
#: models.py:
|
|
74
|
+
#: models.py:180 models.py:491
|
|
67
75
|
msgid "Everyone"
|
|
68
76
|
msgstr "Semua orang"
|
|
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 "Pemilik sahaja"
|
|
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 "Semua orang (umum)"
|
|
85
93
|
|
|
86
|
-
#: models.py:
|
|
94
|
+
#: models.py:189
|
|
87
95
|
msgid "Anyone with link"
|
|
88
96
|
msgstr "Sesiapa yang ada pautan"
|
|
89
97
|
|
|
90
|
-
#: models.py:
|
|
98
|
+
#: models.py:191
|
|
91
99
|
msgid "Blocked"
|
|
92
100
|
msgstr "Disekat"
|
|
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 "pertengahkan"
|
|
101
109
|
|
|
102
|
-
#: models.py:
|
|
110
|
+
#: models.py:196
|
|
103
111
|
msgid "zoom"
|
|
104
112
|
msgstr "zum"
|
|
105
113
|
|
|
106
|
-
#: models.py:
|
|
114
|
+
#: models.py:198
|
|
107
115
|
msgid "locate"
|
|
108
116
|
msgstr "mengesan"
|
|
109
117
|
|
|
110
|
-
#: models.py:
|
|
118
|
+
#: models.py:198
|
|
111
119
|
msgid "Locate user on load?"
|
|
112
120
|
msgstr "Kesan kedudukan pengguna semasa dimuatkan?"
|
|
113
121
|
|
|
114
|
-
#: models.py:
|
|
122
|
+
#: models.py:202
|
|
115
123
|
msgid "Choose the map licence."
|
|
116
124
|
msgstr "Pilih lesen peta."
|
|
117
125
|
|
|
118
|
-
#: models.py:
|
|
126
|
+
#: models.py:203
|
|
119
127
|
msgid "licence"
|
|
120
128
|
msgstr "lesen"
|
|
121
129
|
|
|
122
|
-
#: models.py:
|
|
130
|
+
#: models.py:214
|
|
123
131
|
msgid "owner"
|
|
124
132
|
msgstr "pemilik"
|
|
125
133
|
|
|
126
|
-
#: models.py:
|
|
134
|
+
#: models.py:218
|
|
127
135
|
msgid "editors"
|
|
128
136
|
msgstr "penyunting"
|
|
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 "status suntingan"
|
|
137
145
|
|
|
138
|
-
#: models.py:
|
|
146
|
+
#: models.py:235 models.py:524
|
|
139
147
|
msgid "share status"
|
|
140
148
|
msgstr "status perkongsian"
|
|
141
149
|
|
|
142
|
-
#: models.py:
|
|
150
|
+
#: models.py:238 models.py:514
|
|
143
151
|
msgid "settings"
|
|
144
152
|
msgstr "tetapan"
|
|
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 "Klon bagi"
|
|
149
165
|
|
|
150
|
-
#: models.py:
|
|
166
|
+
#: models.py:486 models.py:490 models.py:496
|
|
151
167
|
msgid "Inherit"
|
|
152
168
|
msgstr "Warisi"
|
|
153
169
|
|
|
154
|
-
#: models.py:
|
|
170
|
+
#: models.py:509
|
|
155
171
|
msgid "display on load"
|
|
156
172
|
msgstr "paparkan semasa dimuatkan"
|
|
157
173
|
|
|
158
|
-
#: models.py:
|
|
174
|
+
#: models.py:510
|
|
159
175
|
msgid "Display this layer on load."
|
|
160
176
|
msgstr "Paparkan lapisan ini ketika dimuatkan."
|
|
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,40 +274,54 @@ 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 "Layari peta %(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 tidak mempunyai peta."
|
|
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 "Simpan"
|
|
190
299
|
|
|
191
|
-
#: templates/auth/user_form.html:
|
|
300
|
+
#: templates/auth/user_form.html:30
|
|
192
301
|
msgid "Your current providers"
|
|
193
302
|
msgstr "Penyedia semasa anda"
|
|
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 "Sambung ke penyedia lain"
|
|
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 "Lebih baik anda sambung akaun anda ke beberapa penyedia berlainan, kalau-kalau satu penyedia tidak tersedia, secara sementara atau secara kekal."
|
|
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 "Layari peta yang ditandai bintang oleh %(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 masih belum ada peta yang ditandai bintang."
|
|
@@ -242,6 +356,10 @@ msgstr "Kata laluan"
|
|
|
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 "Perihalan"
|
|
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 "Dan ia <a href=\"%(repo_url)s\">bersumber terbuka</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 "Cipta peta"
|
|
289
407
|
|
|
@@ -381,11 +499,20 @@ msgstr "Peta Saya (%(count)s)"
|
|
|
381
499
|
msgid "My Maps"
|
|
382
500
|
msgstr "Peta Saya"
|
|
383
501
|
|
|
384
|
-
#: templates/umap/dashboard_menu.html:
|
|
502
|
+
#: templates/umap/dashboard_menu.html:11
|
|
503
|
+
#, python-format
|
|
504
|
+
msgid "My Templates (%(count)s)"
|
|
505
|
+
msgstr ""
|
|
506
|
+
|
|
507
|
+
#: templates/umap/dashboard_menu.html:13 templates/umap/user_templates.html:6
|
|
508
|
+
msgid "My Templates"
|
|
509
|
+
msgstr ""
|
|
510
|
+
|
|
511
|
+
#: templates/umap/dashboard_menu.html:17
|
|
385
512
|
msgid "My profile"
|
|
386
513
|
msgstr "Profil saya"
|
|
387
514
|
|
|
388
|
-
#: templates/umap/dashboard_menu.html:
|
|
515
|
+
#: templates/umap/dashboard_menu.html:20
|
|
389
516
|
msgid "My teams"
|
|
390
517
|
msgstr ""
|
|
391
518
|
|
|
@@ -393,7 +520,7 @@ msgstr ""
|
|
|
393
520
|
msgid "Map of the uMaps"
|
|
394
521
|
msgstr "Peta bagi uMaps"
|
|
395
522
|
|
|
396
|
-
#: templates/umap/home.html:
|
|
523
|
+
#: templates/umap/home.html:25
|
|
397
524
|
msgid "Get inspired, browse maps"
|
|
398
525
|
msgstr "Dapatkan inspirasi, layari peta-peta"
|
|
399
526
|
|
|
@@ -401,15 +528,27 @@ msgstr "Dapatkan inspirasi, layari peta-peta"
|
|
|
401
528
|
msgid "You are logged in. Continuing..."
|
|
402
529
|
msgstr "Anda telah log masuk. Menyambung..."
|
|
403
530
|
|
|
404
|
-
#: templates/umap/map_list.html:
|
|
531
|
+
#: templates/umap/map_list.html:15
|
|
532
|
+
msgid "template"
|
|
533
|
+
msgstr ""
|
|
534
|
+
|
|
535
|
+
#: templates/umap/map_list.html:18 views.py:458
|
|
405
536
|
msgid "by"
|
|
406
537
|
msgstr "oleh"
|
|
407
538
|
|
|
408
|
-
#: templates/umap/map_list.html:
|
|
539
|
+
#: templates/umap/map_list.html:22
|
|
540
|
+
msgid "See the template"
|
|
541
|
+
msgstr ""
|
|
542
|
+
|
|
543
|
+
#: templates/umap/map_list.html:22
|
|
544
|
+
msgid "See the map"
|
|
545
|
+
msgstr ""
|
|
546
|
+
|
|
547
|
+
#: templates/umap/map_list.html:28
|
|
409
548
|
msgid "More"
|
|
410
549
|
msgstr "Lebih lagi"
|
|
411
550
|
|
|
412
|
-
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:
|
|
551
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:18
|
|
413
552
|
msgid "Name"
|
|
414
553
|
msgstr "Nama"
|
|
415
554
|
|
|
@@ -433,11 +572,11 @@ msgstr "Simpan kali terakhir"
|
|
|
433
572
|
msgid "Owner"
|
|
434
573
|
msgstr "Pemilik"
|
|
435
574
|
|
|
436
|
-
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:
|
|
575
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:24
|
|
437
576
|
msgid "Actions"
|
|
438
577
|
msgstr "Tindakan"
|
|
439
578
|
|
|
440
|
-
#: templates/umap/map_table.html:
|
|
579
|
+
#: templates/umap/map_table.html:40 templates/umap/map_table.html:42
|
|
441
580
|
msgid "Open preview"
|
|
442
581
|
msgstr "Buka pralihat"
|
|
443
582
|
|
|
@@ -446,7 +585,7 @@ msgid "Share"
|
|
|
446
585
|
msgstr "Kongsi"
|
|
447
586
|
|
|
448
587
|
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
449
|
-
#: templates/umap/user_teams.html:
|
|
588
|
+
#: templates/umap/user_teams.html:42 templates/umap/user_teams.html:44
|
|
450
589
|
msgid "Edit"
|
|
451
590
|
msgstr "Sunting"
|
|
452
591
|
|
|
@@ -509,10 +648,6 @@ msgstr "Log masuk"
|
|
|
509
648
|
msgid "Sign in"
|
|
510
649
|
msgstr "Daftar masuk"
|
|
511
650
|
|
|
512
|
-
#: templates/umap/navigation.html:22
|
|
513
|
-
msgid "About"
|
|
514
|
-
msgstr "Perihalan"
|
|
515
|
-
|
|
516
651
|
#: templates/umap/navigation.html:30
|
|
517
652
|
msgid "Change password"
|
|
518
653
|
msgstr "Tukar kata laluan"
|
|
@@ -521,51 +656,61 @@ msgstr "Tukar kata laluan"
|
|
|
521
656
|
msgid "Log out"
|
|
522
657
|
msgstr "Log keluar"
|
|
523
658
|
|
|
524
|
-
#: templates/umap/password_change.html:
|
|
659
|
+
#: templates/umap/password_change.html:6
|
|
660
|
+
#: templates/umap/password_change.html:11
|
|
525
661
|
msgid "Password change"
|
|
526
662
|
msgstr "Penukaran kata laluan"
|
|
527
663
|
|
|
528
|
-
#: templates/umap/password_change.html:
|
|
664
|
+
#: templates/umap/password_change.html:14
|
|
529
665
|
msgid ""
|
|
530
666
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
531
667
|
" password twice so we can verify you typed it in correctly."
|
|
532
668
|
msgstr "Sila masukkan kata laluan anda yang lama, untuk tujuan keselamatan, kemudian masukkan kata laluan anda yang baharu dua kali supaya kami sahkan anda menaipnya dengan betul."
|
|
533
669
|
|
|
534
|
-
#: templates/umap/password_change.html:
|
|
670
|
+
#: templates/umap/password_change.html:21
|
|
535
671
|
msgid "Old password"
|
|
536
672
|
msgstr "Kata laluan lama"
|
|
537
673
|
|
|
538
|
-
#: templates/umap/password_change.html:
|
|
674
|
+
#: templates/umap/password_change.html:26
|
|
539
675
|
msgid "New password"
|
|
540
676
|
msgstr "Kata laluan baharu"
|
|
541
677
|
|
|
542
|
-
#: templates/umap/password_change.html:
|
|
678
|
+
#: templates/umap/password_change.html:30
|
|
543
679
|
msgid "New password confirmation"
|
|
544
680
|
msgstr "Pengesahan kata laluan baharu"
|
|
545
681
|
|
|
546
|
-
#: templates/umap/password_change.html:
|
|
682
|
+
#: templates/umap/password_change.html:31
|
|
547
683
|
msgid "Change my password"
|
|
548
684
|
msgstr "Tukar kata laluan saya"
|
|
549
685
|
|
|
550
|
-
#: templates/umap/password_change_done.html:
|
|
686
|
+
#: templates/umap/password_change_done.html:6
|
|
687
|
+
#: templates/umap/password_change_done.html:11
|
|
551
688
|
msgid "Password change successful"
|
|
552
689
|
msgstr "Penukaran kata laluan berjaya"
|
|
553
690
|
|
|
554
|
-
#: templates/umap/password_change_done.html:
|
|
691
|
+
#: templates/umap/password_change_done.html:14
|
|
555
692
|
msgid "Your password was changed."
|
|
556
693
|
msgstr "Kata laluan anda telah ditukar."
|
|
557
694
|
|
|
558
|
-
#: templates/umap/search.html:
|
|
695
|
+
#: templates/umap/search.html:6
|
|
696
|
+
msgid "Explore maps"
|
|
697
|
+
msgstr ""
|
|
698
|
+
|
|
699
|
+
#: templates/umap/search.html:19
|
|
559
700
|
#, python-format
|
|
560
701
|
msgid "%(count)s map found:"
|
|
561
702
|
msgid_plural "%(count)s maps found:"
|
|
562
703
|
msgstr[0] "%(count)s peta dijumpai:"
|
|
563
704
|
|
|
564
|
-
#: templates/umap/search.html:
|
|
705
|
+
#: templates/umap/search.html:30 templates/umap/user_dashboard.html:17
|
|
565
706
|
msgid "No map found."
|
|
566
707
|
msgstr "Tiada peta dijumpai."
|
|
567
708
|
|
|
568
|
-
#: templates/umap/search.html:
|
|
709
|
+
#: templates/umap/search.html:36
|
|
710
|
+
msgid "Latest created maps in category"
|
|
711
|
+
msgstr ""
|
|
712
|
+
|
|
713
|
+
#: templates/umap/search.html:43
|
|
569
714
|
msgid "Latest created maps"
|
|
570
715
|
msgstr "Peta dicipta baru-baru ini"
|
|
571
716
|
|
|
@@ -573,117 +718,163 @@ msgstr "Peta dicipta baru-baru ini"
|
|
|
573
718
|
msgid "Search maps"
|
|
574
719
|
msgstr "Cari peta"
|
|
575
720
|
|
|
576
|
-
#: templates/umap/search_bar.html:
|
|
721
|
+
#: templates/umap/search_bar.html:14
|
|
722
|
+
msgid "Any category"
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
725
|
+
#: templates/umap/search_bar.html:19
|
|
577
726
|
msgid "Search"
|
|
578
727
|
msgstr "Cari"
|
|
579
728
|
|
|
580
|
-
#: templates/umap/
|
|
729
|
+
#: templates/umap/team_confirm_delete.html:6
|
|
730
|
+
msgid "Team deletion"
|
|
731
|
+
msgstr ""
|
|
732
|
+
|
|
733
|
+
#: templates/umap/team_detail.html:6
|
|
734
|
+
#, python-format
|
|
735
|
+
msgid "%(current_team)s’s maps"
|
|
736
|
+
msgstr ""
|
|
737
|
+
|
|
738
|
+
#: templates/umap/team_detail.html:14
|
|
581
739
|
#, python-format
|
|
582
740
|
msgid "Browse %(current_team)s's maps"
|
|
583
741
|
msgstr ""
|
|
584
742
|
|
|
585
|
-
#: templates/umap/team_detail.html:
|
|
743
|
+
#: templates/umap/team_detail.html:26
|
|
586
744
|
#, python-format
|
|
587
745
|
msgid "%(current_team)s has no public maps."
|
|
588
746
|
msgstr ""
|
|
589
747
|
|
|
590
|
-
#: templates/umap/team_form.html:
|
|
748
|
+
#: templates/umap/team_form.html:6
|
|
749
|
+
msgid "Create or edit a team"
|
|
750
|
+
msgstr ""
|
|
751
|
+
|
|
752
|
+
#: templates/umap/team_form.html:28
|
|
591
753
|
msgid "Delete this team"
|
|
592
754
|
msgstr ""
|
|
593
755
|
|
|
594
|
-
#: templates/umap/team_form.html:
|
|
756
|
+
#: templates/umap/team_form.html:51
|
|
595
757
|
msgid "Add user"
|
|
596
758
|
msgstr ""
|
|
597
759
|
|
|
598
|
-
#: templates/umap/user_dashboard.html:
|
|
760
|
+
#: templates/umap/user_dashboard.html:10
|
|
599
761
|
msgid "Search my maps"
|
|
600
762
|
msgstr "Gelintar peta saya"
|
|
601
763
|
|
|
602
|
-
#: templates/umap/user_dashboard.html:
|
|
603
|
-
msgid "Map’s
|
|
604
|
-
msgstr "
|
|
764
|
+
#: templates/umap/user_dashboard.html:11
|
|
765
|
+
msgid "Map’s name"
|
|
766
|
+
msgstr ""
|
|
605
767
|
|
|
606
|
-
#: templates/umap/user_dashboard.html:
|
|
768
|
+
#: templates/umap/user_dashboard.html:12
|
|
607
769
|
#, python-format
|
|
608
770
|
msgid "Download %(count)s maps"
|
|
609
771
|
msgstr "Muat turun %(count)s peta"
|
|
610
772
|
|
|
611
|
-
#: templates/umap/user_dashboard.html:
|
|
773
|
+
#: templates/umap/user_dashboard.html:15
|
|
612
774
|
msgid "You have no map yet."
|
|
613
775
|
msgstr "Anda belum ada peta."
|
|
614
776
|
|
|
615
|
-
#: templates/umap/user_teams.html:
|
|
777
|
+
#: templates/umap/user_teams.html:6
|
|
778
|
+
msgid "My Teams"
|
|
779
|
+
msgstr ""
|
|
780
|
+
|
|
781
|
+
#: templates/umap/user_teams.html:21
|
|
616
782
|
msgid "Users"
|
|
617
783
|
msgstr ""
|
|
618
784
|
|
|
619
|
-
#: templates/umap/user_teams.html:
|
|
785
|
+
#: templates/umap/user_teams.html:52
|
|
620
786
|
msgid "New team"
|
|
621
787
|
msgstr ""
|
|
622
788
|
|
|
623
|
-
#:
|
|
789
|
+
#: templates/umap/user_templates.html:10
|
|
790
|
+
msgid "Search my templates"
|
|
791
|
+
msgstr ""
|
|
792
|
+
|
|
793
|
+
#: templates/umap/user_templates.html:11
|
|
794
|
+
msgid "Template’s name"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
797
|
+
#: templates/umap/user_templates.html:12
|
|
798
|
+
#, python-format
|
|
799
|
+
msgid "Download %(count)s templates"
|
|
800
|
+
msgstr ""
|
|
801
|
+
|
|
802
|
+
#: templates/umap/user_templates.html:15
|
|
803
|
+
msgid "You have no template yet."
|
|
804
|
+
msgstr ""
|
|
805
|
+
|
|
806
|
+
#: templates/umap/user_templates.html:16
|
|
807
|
+
msgid "Create a template"
|
|
808
|
+
msgstr ""
|
|
809
|
+
|
|
810
|
+
#: templates/umap/user_templates.html:17
|
|
811
|
+
msgid "No template found."
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
#: views.py:233
|
|
624
815
|
msgid "Cannot delete a team with more than one member"
|
|
625
816
|
msgstr ""
|
|
626
817
|
|
|
627
|
-
#: views.py:
|
|
818
|
+
#: views.py:237
|
|
628
819
|
#, python-format
|
|
629
820
|
msgid "Team “%(name)s” has been deleted"
|
|
630
821
|
msgstr ""
|
|
631
822
|
|
|
632
|
-
#: views.py:
|
|
823
|
+
#: views.py:463
|
|
633
824
|
msgid "View the map"
|
|
634
825
|
msgstr "Lihat peta"
|
|
635
826
|
|
|
636
|
-
#: views.py:
|
|
827
|
+
#: views.py:864
|
|
637
828
|
msgid "See full screen"
|
|
638
829
|
msgstr "Lihat skrin penuh"
|
|
639
830
|
|
|
640
|
-
#: views.py:
|
|
831
|
+
#: views.py:1007
|
|
641
832
|
msgid "Map editors updated with success!"
|
|
642
833
|
msgstr "Penyunting peta telah dikemas kini dengan jayanya!"
|
|
643
834
|
|
|
644
|
-
#: views.py:
|
|
835
|
+
#: views.py:1043
|
|
645
836
|
#, python-format
|
|
646
837
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
647
838
|
msgstr "Pautan suntingan uMap untuk peta anda: %(map_name)s"
|
|
648
839
|
|
|
649
|
-
#: views.py:
|
|
840
|
+
#: views.py:1046
|
|
650
841
|
#, python-format
|
|
651
842
|
msgid "Here is your secret edit link: %(link)s"
|
|
652
843
|
msgstr "Ini pautan suntingan rahsia anda: %(link)s"
|
|
653
844
|
|
|
654
|
-
#: views.py:
|
|
845
|
+
#: views.py:1053
|
|
655
846
|
#, python-format
|
|
656
847
|
msgid "Can't send email to %(email)s"
|
|
657
848
|
msgstr "Tidak dapat menghantar e-mel kepada %(email)s"
|
|
658
849
|
|
|
659
|
-
#: views.py:
|
|
850
|
+
#: views.py:1056
|
|
660
851
|
#, python-format
|
|
661
852
|
msgid "Email sent to %(email)s"
|
|
662
853
|
msgstr "E-mel telah dihantar ke %(email)s"
|
|
663
854
|
|
|
664
|
-
#: views.py:
|
|
855
|
+
#: views.py:1067
|
|
665
856
|
msgid "Only its owner can delete the map."
|
|
666
857
|
msgstr "Hanya pemiliknya sahaja mampu memadamkan peta."
|
|
667
858
|
|
|
668
|
-
#: views.py:
|
|
859
|
+
#: views.py:1073
|
|
669
860
|
msgid "Map successfully deleted."
|
|
670
861
|
msgstr ""
|
|
671
862
|
|
|
672
|
-
#: views.py:
|
|
863
|
+
#: views.py:1099
|
|
673
864
|
#, python-format
|
|
674
865
|
msgid ""
|
|
675
866
|
"Your map has been cloned! If you want to edit this map from another "
|
|
676
867
|
"computer, please use this link: %(anonymous_url)s"
|
|
677
868
|
msgstr "Peta anda telah diklon! Jika anda ingin menyunting peta ini dari komputer lain, sila gunakan pautan ini: %(anonymous_url)s"
|
|
678
869
|
|
|
679
|
-
#: views.py:
|
|
870
|
+
#: views.py:1104
|
|
680
871
|
msgid "Congratulations, your map has been cloned!"
|
|
681
872
|
msgstr "Tahniah, peta anda telah berjaya diklon!"
|
|
682
873
|
|
|
683
|
-
#: views.py:
|
|
874
|
+
#: views.py:1358
|
|
684
875
|
msgid "Layer successfully deleted."
|
|
685
876
|
msgstr "Lapisan telah berjaya dipadamkan."
|
|
686
877
|
|
|
687
|
-
#: views.py:
|
|
878
|
+
#: views.py:1380
|
|
688
879
|
msgid "Permissions updated with success!"
|
|
689
880
|
msgstr "Kebenaran telah dikemas kini dengan jayanya!"
|