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
|
@@ -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: 2024-
|
|
12
|
+
"POT-Creation-Date: 2024-08-30 18:23+0000\n"
|
|
13
13
|
"PO-Revision-Date: 2013-11-22 14:00+0000\n"
|
|
14
14
|
"Last-Translator: Yaya - Nurul Azeera Hidayah @ 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"
|
|
@@ -27,7 +27,7 @@ msgstr "Hanya boleh disunting dengan pautan rahsia"
|
|
|
27
27
|
msgid "Everyone can edit"
|
|
28
28
|
msgstr "Sesiapa pun boleh sunting"
|
|
29
29
|
|
|
30
|
-
#: forms.py:69 models.py:
|
|
30
|
+
#: forms.py:69 models.py:423
|
|
31
31
|
msgid "Inherit"
|
|
32
32
|
msgstr "Warisi"
|
|
33
33
|
|
|
@@ -35,242 +35,284 @@ msgstr "Warisi"
|
|
|
35
35
|
msgid "Site is readonly for maintenance"
|
|
36
36
|
msgstr "Laman dalam mod baca sahaja untuk penyenggaraan"
|
|
37
37
|
|
|
38
|
-
#: models.py:
|
|
38
|
+
#: models.py:54 models.py:73
|
|
39
39
|
msgid "name"
|
|
40
40
|
msgstr "nama"
|
|
41
41
|
|
|
42
|
-
#: models.py:
|
|
42
|
+
#: models.py:56 models.py:433
|
|
43
|
+
msgid "description"
|
|
44
|
+
msgstr "keterangan"
|
|
45
|
+
|
|
46
|
+
#: models.py:104
|
|
43
47
|
msgid "details"
|
|
44
48
|
msgstr "perincian"
|
|
45
49
|
|
|
46
|
-
#: models.py:
|
|
50
|
+
#: models.py:105
|
|
47
51
|
msgid "Link to a page where the licence is detailed."
|
|
48
52
|
msgstr "Pautan ke halaman yang menyatakan lesennya."
|
|
49
53
|
|
|
50
|
-
#: models.py:
|
|
54
|
+
#: models.py:115
|
|
51
55
|
msgid "URL template using OSM tile format"
|
|
52
56
|
msgstr "Templat URL menggunakan format fail OSM"
|
|
53
57
|
|
|
54
|
-
#: models.py:
|
|
58
|
+
#: models.py:121
|
|
55
59
|
msgid "Order of the tilelayers in the edit box"
|
|
56
60
|
msgstr "Kedudukan lapisan jubin dalam kotak suntingan"
|
|
57
61
|
|
|
58
|
-
#: models.py:
|
|
62
|
+
#: models.py:167 models.py:424
|
|
59
63
|
msgid "Everyone"
|
|
60
64
|
msgstr "Semua orang"
|
|
61
65
|
|
|
62
|
-
#: models.py:
|
|
63
|
-
msgid "Editors only"
|
|
64
|
-
msgstr "
|
|
66
|
+
#: models.py:168 models.py:174 models.py:425
|
|
67
|
+
msgid "Editors and team only"
|
|
68
|
+
msgstr ""
|
|
65
69
|
|
|
66
|
-
#: models.py:
|
|
70
|
+
#: models.py:169 models.py:426
|
|
67
71
|
msgid "Owner only"
|
|
68
72
|
msgstr "Pemilik sahaja"
|
|
69
73
|
|
|
70
|
-
#: models.py:
|
|
74
|
+
#: models.py:172
|
|
71
75
|
msgid "Everyone (public)"
|
|
72
76
|
msgstr "Semua orang (umum)"
|
|
73
77
|
|
|
74
|
-
#: models.py:
|
|
78
|
+
#: models.py:173
|
|
75
79
|
msgid "Anyone with link"
|
|
76
80
|
msgstr "Sesiapa yang ada pautan"
|
|
77
81
|
|
|
78
|
-
#: models.py:
|
|
82
|
+
#: models.py:175
|
|
79
83
|
msgid "Blocked"
|
|
80
84
|
msgstr "Disekat"
|
|
81
85
|
|
|
82
|
-
#: models.py:
|
|
83
|
-
msgid "description"
|
|
84
|
-
msgstr "keterangan"
|
|
85
|
-
|
|
86
|
-
#: models.py:158
|
|
86
|
+
#: models.py:178
|
|
87
87
|
msgid "center"
|
|
88
88
|
msgstr "pertengahkan"
|
|
89
89
|
|
|
90
|
-
#: models.py:
|
|
90
|
+
#: models.py:179
|
|
91
91
|
msgid "zoom"
|
|
92
92
|
msgstr "zum"
|
|
93
93
|
|
|
94
|
-
#: models.py:
|
|
94
|
+
#: models.py:181
|
|
95
95
|
msgid "locate"
|
|
96
96
|
msgstr "mengesan"
|
|
97
97
|
|
|
98
|
-
#: models.py:
|
|
98
|
+
#: models.py:181
|
|
99
99
|
msgid "Locate user on load?"
|
|
100
100
|
msgstr "Kesan kedudukan pengguna semasa dimuatkan?"
|
|
101
101
|
|
|
102
|
-
#: models.py:
|
|
102
|
+
#: models.py:185
|
|
103
103
|
msgid "Choose the map licence."
|
|
104
104
|
msgstr "Pilih lesen peta."
|
|
105
105
|
|
|
106
|
-
#: models.py:
|
|
106
|
+
#: models.py:186
|
|
107
107
|
msgid "licence"
|
|
108
108
|
msgstr "lesen"
|
|
109
109
|
|
|
110
|
-
#: models.py:
|
|
110
|
+
#: models.py:197
|
|
111
111
|
msgid "owner"
|
|
112
112
|
msgstr "pemilik"
|
|
113
113
|
|
|
114
|
-
#: models.py:
|
|
114
|
+
#: models.py:201
|
|
115
115
|
msgid "editors"
|
|
116
116
|
msgstr "penyunting"
|
|
117
117
|
|
|
118
|
-
#: models.py:
|
|
118
|
+
#: models.py:207
|
|
119
|
+
msgid "team"
|
|
120
|
+
msgstr ""
|
|
121
|
+
|
|
122
|
+
#: models.py:213 models.py:447
|
|
119
123
|
msgid "edit status"
|
|
120
124
|
msgstr "status suntingan"
|
|
121
125
|
|
|
122
|
-
#: models.py:
|
|
126
|
+
#: models.py:218
|
|
123
127
|
msgid "share status"
|
|
124
128
|
msgstr "status perkongsian"
|
|
125
129
|
|
|
126
|
-
#: models.py:
|
|
130
|
+
#: models.py:221 models.py:442
|
|
127
131
|
msgid "settings"
|
|
128
132
|
msgstr "tetapan"
|
|
129
133
|
|
|
130
|
-
#: models.py:
|
|
134
|
+
#: models.py:364
|
|
131
135
|
msgid "Clone of"
|
|
132
136
|
msgstr "Klon bagi"
|
|
133
137
|
|
|
134
|
-
#: models.py:
|
|
138
|
+
#: models.py:437
|
|
135
139
|
msgid "display on load"
|
|
136
140
|
msgstr "paparkan semasa dimuatkan"
|
|
137
141
|
|
|
138
|
-
#: models.py:
|
|
142
|
+
#: models.py:438
|
|
139
143
|
msgid "Display this layer on load."
|
|
140
144
|
msgstr "Paparkan lapisan ini ketika dimuatkan."
|
|
141
145
|
|
|
142
|
-
#: templates/404.html:
|
|
146
|
+
#: templates/404.html:8
|
|
143
147
|
msgid "Take me to the home page"
|
|
144
148
|
msgstr "Bawa saya ke halaman utama"
|
|
145
149
|
|
|
146
|
-
#: templates/auth/user_detail.html:
|
|
150
|
+
#: templates/auth/user_detail.html:8
|
|
147
151
|
#, python-format
|
|
148
152
|
msgid "Browse %(current_user)s's maps"
|
|
149
153
|
msgstr "Layari peta %(current_user)s"
|
|
150
154
|
|
|
151
|
-
#: templates/auth/user_detail.html:
|
|
155
|
+
#: templates/auth/user_detail.html:17
|
|
152
156
|
#, python-format
|
|
153
157
|
msgid "%(current_user)s has no maps."
|
|
154
158
|
msgstr "%(current_user)s tidak mempunyai peta."
|
|
155
159
|
|
|
156
|
-
#: templates/auth/user_form.html:
|
|
157
|
-
msgid "My Maps"
|
|
158
|
-
msgstr "Peta Saya"
|
|
159
|
-
|
|
160
|
-
#: templates/auth/user_form.html:7
|
|
161
|
-
msgid "My Profile"
|
|
162
|
-
msgstr "Profil Saya"
|
|
163
|
-
|
|
164
|
-
#: templates/auth/user_form.html:20
|
|
160
|
+
#: templates/auth/user_form.html:21 templates/umap/team_form.html:21
|
|
165
161
|
msgid "Save"
|
|
166
162
|
msgstr "Simpan"
|
|
167
163
|
|
|
168
|
-
#: templates/auth/user_form.html:
|
|
164
|
+
#: templates/auth/user_form.html:27
|
|
169
165
|
msgid "Your current providers"
|
|
170
166
|
msgstr "Penyedia semasa anda"
|
|
171
167
|
|
|
172
|
-
#: templates/auth/user_form.html:
|
|
168
|
+
#: templates/auth/user_form.html:39
|
|
173
169
|
msgid "Connect to another provider"
|
|
174
170
|
msgstr "Sambung ke penyedia lain"
|
|
175
171
|
|
|
176
|
-
#: templates/auth/user_form.html:
|
|
172
|
+
#: templates/auth/user_form.html:42
|
|
177
173
|
msgid ""
|
|
178
174
|
"It's a good habit to connect your account to more than one provider, in case"
|
|
179
175
|
" one provider becomes unavailable, temporarily or even permanently."
|
|
180
176
|
msgstr "Lebih baik anda sambung akaun anda ke beberapa penyedia berlainan, kalau-kalau satu penyedia tidak tersedia, secara sementara atau secara kekal."
|
|
181
177
|
|
|
182
|
-
#: templates/auth/user_stars.html:
|
|
178
|
+
#: templates/auth/user_stars.html:8
|
|
183
179
|
#, python-format
|
|
184
180
|
msgid "Browse %(current_user)s's starred maps"
|
|
185
181
|
msgstr "Layari peta yang ditandai bintang oleh %(current_user)s"
|
|
186
182
|
|
|
187
|
-
#: templates/auth/user_stars.html:
|
|
183
|
+
#: templates/auth/user_stars.html:17
|
|
188
184
|
#, python-format
|
|
189
185
|
msgid "%(current_user)s has no starred maps yet."
|
|
190
186
|
msgstr "%(current_user)s masih belum ada peta yang ditandai bintang."
|
|
191
187
|
|
|
192
|
-
#: templates/base.html:
|
|
188
|
+
#: templates/base.html:13
|
|
193
189
|
msgid ""
|
|
194
190
|
"uMap lets you create maps with OpenStreetMap layers in a minute and embed "
|
|
195
191
|
"them in your site."
|
|
196
192
|
msgstr "uMap membolehkan anda mencipta peta dengan lapisan OpenStreetMap dalam masa singkat dan benamkan di laman anda."
|
|
197
193
|
|
|
198
|
-
#: templates/registration/login.html:
|
|
194
|
+
#: templates/registration/login.html:6 templates/registration/login.html:45
|
|
195
|
+
msgid "Login"
|
|
196
|
+
msgstr "Log masuk"
|
|
197
|
+
|
|
198
|
+
#: templates/registration/login.html:24
|
|
199
199
|
msgid "Please log in with your account"
|
|
200
200
|
msgstr "Sila log masuk dengan akaun anda"
|
|
201
201
|
|
|
202
|
-
#: templates/registration/login.html:
|
|
202
|
+
#: templates/registration/login.html:41
|
|
203
203
|
msgid "Username"
|
|
204
204
|
msgstr "Nama pengguna"
|
|
205
205
|
|
|
206
|
-
#: templates/registration/login.html:
|
|
206
|
+
#: templates/registration/login.html:44
|
|
207
207
|
msgid "Password"
|
|
208
208
|
msgstr "Kata laluan"
|
|
209
209
|
|
|
210
|
-
#: templates/registration/login.html:
|
|
211
|
-
msgid "Login"
|
|
212
|
-
msgstr "Log masuk"
|
|
213
|
-
|
|
214
|
-
#: templates/registration/login.html:37
|
|
210
|
+
#: templates/registration/login.html:51
|
|
215
211
|
msgid "Please choose a provider"
|
|
216
212
|
msgstr "Sila pilih penyedia"
|
|
217
213
|
|
|
218
|
-
#: templates/umap/about_summary.html:
|
|
214
|
+
#: templates/umap/about_summary.html:12
|
|
219
215
|
#, python-format
|
|
220
216
|
msgid ""
|
|
221
217
|
"uMap lets you create maps with <a href=\"%(osm_url)s\" />OpenStreetMap</a> "
|
|
222
218
|
"layers in a minute and embed them in your site."
|
|
223
219
|
msgstr "uMap membolehkan anda mencipta peta dengan lapisan <a href=\"%(osm_url)s\" />OpenStreetMap</a> dalam masa singkat dan benamkan di laman anda."
|
|
224
220
|
|
|
225
|
-
#: templates/umap/about_summary.html:
|
|
221
|
+
#: templates/umap/about_summary.html:23
|
|
226
222
|
msgid "Choose the layers of your map"
|
|
227
223
|
msgstr "Pilih lapisan untuk peta anda"
|
|
228
224
|
|
|
229
|
-
#: templates/umap/about_summary.html:
|
|
225
|
+
#: templates/umap/about_summary.html:26
|
|
230
226
|
msgid "Add POIs: markers, lines, polygons..."
|
|
231
227
|
msgstr "Tambah POI: penanda, garisan, poligon..."
|
|
232
228
|
|
|
233
|
-
#: templates/umap/about_summary.html:
|
|
229
|
+
#: templates/umap/about_summary.html:29
|
|
234
230
|
msgid "Manage POIs colours and icons"
|
|
235
231
|
msgstr "Urus warna dan ikon POI"
|
|
236
232
|
|
|
237
|
-
#: templates/umap/about_summary.html:
|
|
233
|
+
#: templates/umap/about_summary.html:32
|
|
238
234
|
msgid "Manage map options: display a minimap, locate user on load…"
|
|
239
235
|
msgstr "Urus pilihan peta: paparkan minipeta, kesan kedudukan pengguna ketika dimuatkan..."
|
|
240
236
|
|
|
241
|
-
#: templates/umap/about_summary.html:
|
|
237
|
+
#: templates/umap/about_summary.html:35
|
|
242
238
|
msgid "Batch import geostructured data (geojson, gpx, kml, osm...)"
|
|
243
239
|
msgstr "Import kelompok data berstruktur geografi (geojson, gpx, kml, osm...)"
|
|
244
240
|
|
|
245
|
-
#: templates/umap/about_summary.html:
|
|
241
|
+
#: templates/umap/about_summary.html:38
|
|
246
242
|
msgid "Choose the license for your data"
|
|
247
243
|
msgstr "Pilih lesen untuk data anda"
|
|
248
244
|
|
|
249
|
-
#: templates/umap/about_summary.html:
|
|
245
|
+
#: templates/umap/about_summary.html:41
|
|
250
246
|
msgid "Embed and share your map"
|
|
251
247
|
msgstr "Benam dan kongsi peta anda"
|
|
252
248
|
|
|
253
|
-
#: templates/umap/about_summary.html:
|
|
249
|
+
#: templates/umap/about_summary.html:52
|
|
254
250
|
#, python-format
|
|
255
251
|
msgid "And it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
256
252
|
msgstr "Dan ia <a href=\"%(repo_url)s\">bersumber terbuka</a>!"
|
|
257
253
|
|
|
258
|
-
#: templates/umap/about_summary.html:
|
|
259
|
-
#: templates/umap/user_dashboard.html:
|
|
254
|
+
#: templates/umap/about_summary.html:63 templates/umap/navigation.html:39
|
|
255
|
+
#: templates/umap/user_dashboard.html:40
|
|
260
256
|
msgid "Create a map"
|
|
261
257
|
msgstr "Cipta peta"
|
|
262
258
|
|
|
263
|
-
#: templates/umap/about_summary.html:
|
|
259
|
+
#: templates/umap/about_summary.html:66
|
|
264
260
|
msgid "Play with the demo"
|
|
265
261
|
msgstr "Main dengan demo"
|
|
266
262
|
|
|
267
|
-
#: templates/umap/
|
|
263
|
+
#: templates/umap/components/alerts/alert.html:15
|
|
264
|
+
#: templates/umap/components/alerts/alert.html:64
|
|
265
|
+
#: templates/umap/components/alerts/alert.html:92
|
|
266
|
+
msgid "Close"
|
|
267
|
+
msgstr ""
|
|
268
|
+
|
|
269
|
+
#: templates/umap/components/alerts/alert.html:30
|
|
270
|
+
#, python-format
|
|
271
|
+
msgid ""
|
|
272
|
+
"Pro-tip: to easily find back your maps, <a href=\"%(login_url)s\" "
|
|
273
|
+
"target=\"_blank\">create an account</a> or <a href=\"%(login_url)s\" "
|
|
274
|
+
"target=\"_blank\">log in</a>."
|
|
275
|
+
msgstr ""
|
|
276
|
+
|
|
277
|
+
#: templates/umap/components/alerts/alert.html:35
|
|
278
|
+
msgid "Here is your secret link to edit the map, please keep it safe:"
|
|
279
|
+
msgstr ""
|
|
280
|
+
|
|
281
|
+
#: templates/umap/components/alerts/alert.html:39
|
|
282
|
+
msgid "Copy link"
|
|
283
|
+
msgstr ""
|
|
284
|
+
|
|
285
|
+
#: templates/umap/components/alerts/alert.html:46
|
|
286
|
+
msgid "Enter your email address to receive the secret link:"
|
|
287
|
+
msgstr ""
|
|
288
|
+
|
|
289
|
+
#: templates/umap/components/alerts/alert.html:52
|
|
290
|
+
msgid "Email"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
#: templates/umap/components/alerts/alert.html:55
|
|
294
|
+
msgid "Send me the link"
|
|
295
|
+
msgstr ""
|
|
296
|
+
|
|
297
|
+
#: templates/umap/components/alerts/alert.html:79
|
|
298
|
+
msgid "See their edits in another tab"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#: templates/umap/components/alerts/alert.html:82
|
|
302
|
+
msgid "Keep your changes and loose theirs"
|
|
303
|
+
msgstr ""
|
|
304
|
+
|
|
305
|
+
#: templates/umap/components/alerts/alert.html:85
|
|
306
|
+
msgid "Keep their changes and loose yours"
|
|
307
|
+
msgstr ""
|
|
308
|
+
|
|
309
|
+
#: templates/umap/content.html:26
|
|
268
310
|
msgid ""
|
|
269
311
|
"This instance of uMap is currently in read only mode, no creation/edit is "
|
|
270
312
|
"allowed."
|
|
271
313
|
msgstr "Tika uMap ini kini berada dalam mod baca sahaja, tiada penciptaan/suntingan dibenarkan."
|
|
272
314
|
|
|
273
|
-
#: templates/umap/content.html:
|
|
315
|
+
#: templates/umap/content.html:34
|
|
274
316
|
#, python-format
|
|
275
317
|
msgid ""
|
|
276
318
|
"This is a demo instance, used for tests and pre-rolling releases. If you "
|
|
@@ -279,274 +321,338 @@ msgid ""
|
|
|
279
321
|
"instance, it's <a href=\"%(repo_url)s\">open source</a>!"
|
|
280
322
|
msgstr "Ini tika demo, digunakan untuk ujian dan pra-terbitan berterusan. Jika anda perlukan tika yang stabil, sila gunakan <a href=\"%(stable_url)s\">%(stable_url)s</a>. Anda juga boleh hos tika anda sendiri, ia <a href=\"%(repo_url)s\">bersumber terbuka</a>!"
|
|
281
323
|
|
|
282
|
-
#: templates/umap/
|
|
324
|
+
#: templates/umap/content_footer.html:5
|
|
325
|
+
msgid "An OpenStreetMap project"
|
|
326
|
+
msgstr ""
|
|
327
|
+
|
|
328
|
+
#: templates/umap/content_footer.html:6
|
|
329
|
+
msgid "version"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
332
|
+
#: templates/umap/content_footer.html:7
|
|
333
|
+
msgid "Hosted by"
|
|
334
|
+
msgstr ""
|
|
335
|
+
|
|
336
|
+
#: templates/umap/content_footer.html:8
|
|
337
|
+
msgid "Contact"
|
|
338
|
+
msgstr ""
|
|
339
|
+
|
|
340
|
+
#: templates/umap/content_footer.html:9 templates/umap/navigation.html:25
|
|
341
|
+
msgid "Help"
|
|
342
|
+
msgstr "Bantuan"
|
|
343
|
+
|
|
344
|
+
#: templates/umap/dashboard_menu.html:6
|
|
345
|
+
#, python-format
|
|
346
|
+
msgid "My Maps (%(count)s)"
|
|
347
|
+
msgstr "Peta Saya (%(count)s)"
|
|
348
|
+
|
|
349
|
+
#: templates/umap/dashboard_menu.html:8
|
|
350
|
+
msgid "My Maps"
|
|
351
|
+
msgstr "Peta Saya"
|
|
352
|
+
|
|
353
|
+
#: templates/umap/dashboard_menu.html:11
|
|
354
|
+
msgid "My profile"
|
|
355
|
+
msgstr "Profil saya"
|
|
356
|
+
|
|
357
|
+
#: templates/umap/dashboard_menu.html:13
|
|
358
|
+
msgid "My teams"
|
|
359
|
+
msgstr ""
|
|
360
|
+
|
|
361
|
+
#: templates/umap/home.html:14
|
|
283
362
|
msgid "Map of the uMaps"
|
|
284
363
|
msgstr "Peta bagi uMaps"
|
|
285
364
|
|
|
286
|
-
#: templates/umap/home.html:
|
|
365
|
+
#: templates/umap/home.html:24
|
|
287
366
|
msgid "Get inspired, browse maps"
|
|
288
367
|
msgstr "Dapatkan inspirasi, layari peta-peta"
|
|
289
368
|
|
|
290
|
-
#: templates/umap/login_popup_end.html:
|
|
369
|
+
#: templates/umap/login_popup_end.html:4
|
|
291
370
|
msgid "You are logged in. Continuing..."
|
|
292
371
|
msgstr "Anda telah log masuk. Menyambung..."
|
|
293
372
|
|
|
294
|
-
#: templates/umap/map_list.html:
|
|
373
|
+
#: templates/umap/map_list.html:10 views.py:433
|
|
295
374
|
msgid "by"
|
|
296
375
|
msgstr "oleh"
|
|
297
376
|
|
|
298
|
-
#: templates/umap/map_list.html:
|
|
377
|
+
#: templates/umap/map_list.html:18
|
|
299
378
|
msgid "More"
|
|
300
379
|
msgstr "Lebih lagi"
|
|
301
380
|
|
|
302
|
-
#: templates/umap/map_table.html:
|
|
381
|
+
#: templates/umap/map_table.html:8 templates/umap/user_teams.html:14
|
|
303
382
|
msgid "Name"
|
|
304
383
|
msgstr "Nama"
|
|
305
384
|
|
|
306
|
-
#: templates/umap/map_table.html:
|
|
385
|
+
#: templates/umap/map_table.html:11
|
|
307
386
|
msgid "Preview"
|
|
308
387
|
msgstr "Pralihat"
|
|
309
388
|
|
|
310
|
-
#: templates/umap/map_table.html:
|
|
389
|
+
#: templates/umap/map_table.html:14
|
|
311
390
|
msgid "Who can see"
|
|
312
391
|
msgstr "Siapa boleh lihat"
|
|
313
392
|
|
|
314
|
-
#: templates/umap/map_table.html:
|
|
393
|
+
#: templates/umap/map_table.html:17
|
|
315
394
|
msgid "Who can edit"
|
|
316
395
|
msgstr "Siapa boleh sunting"
|
|
317
396
|
|
|
318
|
-
#: templates/umap/map_table.html:
|
|
397
|
+
#: templates/umap/map_table.html:20
|
|
319
398
|
msgid "Last save"
|
|
320
399
|
msgstr "Simpan kali terakhir"
|
|
321
400
|
|
|
322
|
-
#: templates/umap/map_table.html:
|
|
401
|
+
#: templates/umap/map_table.html:23
|
|
323
402
|
msgid "Owner"
|
|
324
403
|
msgstr "Pemilik"
|
|
325
404
|
|
|
326
|
-
#: templates/umap/map_table.html:
|
|
405
|
+
#: templates/umap/map_table.html:26 templates/umap/user_teams.html:20
|
|
327
406
|
msgid "Actions"
|
|
328
407
|
msgstr "Tindakan"
|
|
329
408
|
|
|
330
|
-
#: templates/umap/map_table.html:
|
|
409
|
+
#: templates/umap/map_table.html:41 templates/umap/map_table.html:43
|
|
331
410
|
msgid "Open preview"
|
|
332
411
|
msgstr "Buka pralihat"
|
|
333
412
|
|
|
334
|
-
#: templates/umap/map_table.html:
|
|
413
|
+
#: templates/umap/map_table.html:72 templates/umap/map_table.html:74
|
|
335
414
|
msgid "Share"
|
|
336
415
|
msgstr "Kongsi"
|
|
337
416
|
|
|
338
|
-
#: templates/umap/map_table.html:
|
|
417
|
+
#: templates/umap/map_table.html:78 templates/umap/map_table.html:80
|
|
418
|
+
#: templates/umap/user_teams.html:38 templates/umap/user_teams.html:40
|
|
339
419
|
msgid "Edit"
|
|
340
420
|
msgstr "Sunting"
|
|
341
421
|
|
|
342
|
-
#: templates/umap/map_table.html:
|
|
422
|
+
#: templates/umap/map_table.html:84 templates/umap/map_table.html:86
|
|
343
423
|
msgid "Download"
|
|
344
424
|
msgstr "Muat turun"
|
|
345
425
|
|
|
346
|
-
#: templates/umap/map_table.html:
|
|
426
|
+
#: templates/umap/map_table.html:90 templates/umap/map_table.html:92
|
|
347
427
|
msgid "Clone"
|
|
348
428
|
msgstr "Klon"
|
|
349
429
|
|
|
350
|
-
#: templates/umap/map_table.html:
|
|
430
|
+
#: templates/umap/map_table.html:101 templates/umap/map_table.html:103
|
|
351
431
|
msgid "Delete"
|
|
352
432
|
msgstr "Padam"
|
|
353
433
|
|
|
354
|
-
#: templates/umap/map_table.html:
|
|
434
|
+
#: templates/umap/map_table.html:117
|
|
355
435
|
msgid "first"
|
|
356
436
|
msgstr "pertama"
|
|
357
437
|
|
|
358
|
-
#: templates/umap/map_table.html:
|
|
438
|
+
#: templates/umap/map_table.html:118
|
|
359
439
|
msgid "previous"
|
|
360
440
|
msgstr "sebelumnya"
|
|
361
441
|
|
|
362
|
-
#: templates/umap/map_table.html:
|
|
442
|
+
#: templates/umap/map_table.html:126
|
|
363
443
|
#, python-format
|
|
364
444
|
msgid "Page %(maps_number)s of %(num_pages)s"
|
|
365
445
|
msgstr "Halaman %(maps_number)s daripada %(num_pages)s"
|
|
366
446
|
|
|
367
|
-
#: templates/umap/map_table.html:
|
|
447
|
+
#: templates/umap/map_table.html:131
|
|
368
448
|
msgid "next"
|
|
369
449
|
msgstr "seterusnya"
|
|
370
450
|
|
|
371
|
-
#: templates/umap/map_table.html:
|
|
451
|
+
#: templates/umap/map_table.html:132
|
|
372
452
|
msgid "last"
|
|
373
453
|
msgstr "terakhir"
|
|
374
454
|
|
|
375
|
-
#: templates/umap/map_table.html:
|
|
455
|
+
#: templates/umap/map_table.html:140
|
|
376
456
|
#, python-format
|
|
377
457
|
msgid "Lines per page: %(per_page)s"
|
|
378
458
|
msgstr "Baris per halaman: %(per_page)s"
|
|
379
459
|
|
|
380
|
-
#: templates/umap/map_table.html:
|
|
460
|
+
#: templates/umap/map_table.html:145
|
|
381
461
|
#, python-format
|
|
382
462
|
msgid "%(count)s maps"
|
|
383
463
|
msgstr "%(count)s peta"
|
|
384
464
|
|
|
385
|
-
#: templates/umap/navigation.html:
|
|
465
|
+
#: templates/umap/navigation.html:11 templates/umap/user_dashboard.html:6
|
|
386
466
|
msgid "My Dashboard"
|
|
387
467
|
msgstr "Papan Pemuka Saya"
|
|
388
468
|
|
|
389
|
-
#: templates/umap/navigation.html:
|
|
469
|
+
#: templates/umap/navigation.html:14
|
|
390
470
|
msgid "Starred maps"
|
|
391
471
|
msgstr "Peta ditandai bintang"
|
|
392
472
|
|
|
393
|
-
#: templates/umap/navigation.html:
|
|
473
|
+
#: templates/umap/navigation.html:18
|
|
394
474
|
msgid "Log in"
|
|
395
475
|
msgstr "Log masuk"
|
|
396
476
|
|
|
397
|
-
#: templates/umap/navigation.html:
|
|
477
|
+
#: templates/umap/navigation.html:18
|
|
398
478
|
msgid "Sign in"
|
|
399
479
|
msgstr "Daftar masuk"
|
|
400
480
|
|
|
401
|
-
#: templates/umap/navigation.html:
|
|
481
|
+
#: templates/umap/navigation.html:22
|
|
402
482
|
msgid "About"
|
|
403
483
|
msgstr "Perihalan"
|
|
404
484
|
|
|
405
|
-
#: templates/umap/navigation.html:
|
|
406
|
-
msgid "Help"
|
|
407
|
-
msgstr "Bantuan"
|
|
408
|
-
|
|
409
|
-
#: templates/umap/navigation.html:29
|
|
485
|
+
#: templates/umap/navigation.html:30
|
|
410
486
|
msgid "Change password"
|
|
411
487
|
msgstr "Tukar kata laluan"
|
|
412
488
|
|
|
413
|
-
#: templates/umap/navigation.html:
|
|
489
|
+
#: templates/umap/navigation.html:34
|
|
414
490
|
msgid "Log out"
|
|
415
491
|
msgstr "Log keluar"
|
|
416
492
|
|
|
417
|
-
#: templates/umap/password_change.html:
|
|
493
|
+
#: templates/umap/password_change.html:7
|
|
418
494
|
msgid "Password change"
|
|
419
495
|
msgstr "Penukaran kata laluan"
|
|
420
496
|
|
|
421
|
-
#: templates/umap/password_change.html:
|
|
497
|
+
#: templates/umap/password_change.html:10
|
|
422
498
|
msgid ""
|
|
423
499
|
"Please enter your old password, for security's sake, and then enter your new"
|
|
424
500
|
" password twice so we can verify you typed it in correctly."
|
|
425
501
|
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."
|
|
426
502
|
|
|
427
|
-
#: templates/umap/password_change.html:
|
|
503
|
+
#: templates/umap/password_change.html:17
|
|
428
504
|
msgid "Old password"
|
|
429
505
|
msgstr "Kata laluan lama"
|
|
430
506
|
|
|
431
|
-
#: templates/umap/password_change.html:
|
|
507
|
+
#: templates/umap/password_change.html:22
|
|
432
508
|
msgid "New password"
|
|
433
509
|
msgstr "Kata laluan baharu"
|
|
434
510
|
|
|
435
|
-
#: templates/umap/password_change.html:
|
|
511
|
+
#: templates/umap/password_change.html:26
|
|
436
512
|
msgid "New password confirmation"
|
|
437
513
|
msgstr "Pengesahan kata laluan baharu"
|
|
438
514
|
|
|
439
|
-
#: templates/umap/password_change.html:
|
|
515
|
+
#: templates/umap/password_change.html:27
|
|
440
516
|
msgid "Change my password"
|
|
441
517
|
msgstr "Tukar kata laluan saya"
|
|
442
518
|
|
|
443
|
-
#: templates/umap/password_change_done.html:
|
|
519
|
+
#: templates/umap/password_change_done.html:7
|
|
444
520
|
msgid "Password change successful"
|
|
445
521
|
msgstr "Penukaran kata laluan berjaya"
|
|
446
522
|
|
|
447
|
-
#: templates/umap/password_change_done.html:
|
|
523
|
+
#: templates/umap/password_change_done.html:10
|
|
448
524
|
msgid "Your password was changed."
|
|
449
525
|
msgstr "Kata laluan anda telah ditukar."
|
|
450
526
|
|
|
451
|
-
#: templates/umap/search.html:
|
|
527
|
+
#: templates/umap/search.html:15
|
|
452
528
|
#, python-format
|
|
453
529
|
msgid "%(count)s map found:"
|
|
454
530
|
msgid_plural "%(count)s maps found:"
|
|
455
531
|
msgstr[0] "%(count)s peta dijumpai:"
|
|
456
532
|
|
|
457
|
-
#: templates/umap/search.html:
|
|
533
|
+
#: templates/umap/search.html:24
|
|
458
534
|
msgid "No map found."
|
|
459
535
|
msgstr "Tiada peta dijumpai."
|
|
460
536
|
|
|
461
|
-
#: templates/umap/search.html:
|
|
537
|
+
#: templates/umap/search.html:29
|
|
462
538
|
msgid "Latest created maps"
|
|
463
539
|
msgstr "Peta dicipta baru-baru ini"
|
|
464
540
|
|
|
465
|
-
#: templates/umap/search_bar.html:
|
|
541
|
+
#: templates/umap/search_bar.html:4
|
|
466
542
|
msgid "Search maps"
|
|
467
543
|
msgstr "Cari peta"
|
|
468
544
|
|
|
469
|
-
#: templates/umap/search_bar.html:
|
|
545
|
+
#: templates/umap/search_bar.html:15
|
|
470
546
|
msgid "Search"
|
|
471
547
|
msgstr "Cari"
|
|
472
548
|
|
|
473
|
-
#: templates/umap/
|
|
474
|
-
|
|
475
|
-
|
|
549
|
+
#: templates/umap/team_detail.html:10
|
|
550
|
+
#, python-format
|
|
551
|
+
msgid "Browse %(current_team)s's maps"
|
|
552
|
+
msgstr ""
|
|
476
553
|
|
|
477
|
-
#: templates/umap/
|
|
554
|
+
#: templates/umap/team_detail.html:22
|
|
478
555
|
#, python-format
|
|
479
|
-
msgid "
|
|
480
|
-
msgstr "
|
|
556
|
+
msgid "%(current_team)s has no public maps."
|
|
557
|
+
msgstr ""
|
|
481
558
|
|
|
482
|
-
#: templates/umap/
|
|
483
|
-
msgid "
|
|
484
|
-
msgstr "
|
|
559
|
+
#: templates/umap/team_form.html:24
|
|
560
|
+
msgid "Delete this team"
|
|
561
|
+
msgstr ""
|
|
562
|
+
|
|
563
|
+
#: templates/umap/team_form.html:47
|
|
564
|
+
msgid "Add user"
|
|
565
|
+
msgstr ""
|
|
566
|
+
|
|
567
|
+
#: templates/umap/user_dashboard.html:9 templates/umap/user_dashboard.html:25
|
|
568
|
+
msgid "Search my maps"
|
|
569
|
+
msgstr "Gelintar peta saya"
|
|
485
570
|
|
|
486
|
-
#: templates/umap/user_dashboard.html:
|
|
571
|
+
#: templates/umap/user_dashboard.html:17 templates/umap/user_dashboard.html:22
|
|
487
572
|
msgid "Map’s title"
|
|
488
573
|
msgstr "Tajuk peta"
|
|
489
574
|
|
|
490
|
-
#: templates/umap/user_dashboard.html:
|
|
575
|
+
#: templates/umap/user_dashboard.html:30
|
|
491
576
|
#, python-format
|
|
492
577
|
msgid "Download %(count)s maps"
|
|
493
578
|
msgstr "Muat turun %(count)s peta"
|
|
494
579
|
|
|
495
|
-
#: templates/umap/user_dashboard.html:
|
|
580
|
+
#: templates/umap/user_dashboard.html:40
|
|
496
581
|
msgid "You have no map yet."
|
|
497
582
|
msgstr "Anda belum ada peta."
|
|
498
583
|
|
|
499
|
-
#:
|
|
584
|
+
#: templates/umap/user_teams.html:17
|
|
585
|
+
msgid "Users"
|
|
586
|
+
msgstr ""
|
|
587
|
+
|
|
588
|
+
#: templates/umap/user_teams.html:48
|
|
589
|
+
msgid "New team"
|
|
590
|
+
msgstr ""
|
|
591
|
+
|
|
592
|
+
#: views.py:235
|
|
593
|
+
msgid "Cannot delete a team with more than one member"
|
|
594
|
+
msgstr ""
|
|
595
|
+
|
|
596
|
+
#: views.py:239
|
|
597
|
+
#, python-format
|
|
598
|
+
msgid "Team “%(name)s” has been deleted"
|
|
599
|
+
msgstr ""
|
|
600
|
+
|
|
601
|
+
#: views.py:438
|
|
500
602
|
msgid "View the map"
|
|
501
603
|
msgstr "Lihat peta"
|
|
502
604
|
|
|
503
|
-
#: views.py:
|
|
605
|
+
#: views.py:824
|
|
504
606
|
msgid "See full screen"
|
|
505
607
|
msgstr "Lihat skrin penuh"
|
|
506
608
|
|
|
507
|
-
#: views.py:
|
|
609
|
+
#: views.py:953
|
|
508
610
|
msgid "Map editors updated with success!"
|
|
509
611
|
msgstr "Penyunting peta telah dikemas kini dengan jayanya!"
|
|
510
612
|
|
|
511
|
-
#: views.py:
|
|
613
|
+
#: views.py:989
|
|
512
614
|
#, python-format
|
|
513
615
|
msgid "The uMap edit link for your map: %(map_name)s"
|
|
514
616
|
msgstr "Pautan suntingan uMap untuk peta anda: %(map_name)s"
|
|
515
617
|
|
|
516
|
-
#: views.py:
|
|
618
|
+
#: views.py:992
|
|
517
619
|
#, python-format
|
|
518
620
|
msgid "Here is your secret edit link: %(link)s"
|
|
519
621
|
msgstr "Ini pautan suntingan rahsia anda: %(link)s"
|
|
520
622
|
|
|
521
|
-
#: views.py:
|
|
623
|
+
#: views.py:999
|
|
522
624
|
#, python-format
|
|
523
625
|
msgid "Can't send email to %(email)s"
|
|
524
626
|
msgstr "Tidak dapat menghantar e-mel kepada %(email)s"
|
|
525
627
|
|
|
526
|
-
#: views.py:
|
|
628
|
+
#: views.py:1002
|
|
527
629
|
#, python-format
|
|
528
630
|
msgid "Email sent to %(email)s"
|
|
529
631
|
msgstr "E-mel telah dihantar ke %(email)s"
|
|
530
632
|
|
|
531
|
-
#: views.py:
|
|
633
|
+
#: views.py:1013
|
|
532
634
|
msgid "Only its owner can delete the map."
|
|
533
635
|
msgstr "Hanya pemiliknya sahaja mampu memadamkan peta."
|
|
534
636
|
|
|
535
|
-
#: views.py:
|
|
637
|
+
#: views.py:1016
|
|
638
|
+
msgid "Map successfully deleted."
|
|
639
|
+
msgstr ""
|
|
640
|
+
|
|
641
|
+
#: views.py:1042
|
|
536
642
|
#, python-format
|
|
537
643
|
msgid ""
|
|
538
644
|
"Your map has been cloned! If you want to edit this map from another "
|
|
539
645
|
"computer, please use this link: %(anonymous_url)s"
|
|
540
646
|
msgstr "Peta anda telah diklon! Jika anda ingin menyunting peta ini dari komputer lain, sila gunakan pautan ini: %(anonymous_url)s"
|
|
541
647
|
|
|
542
|
-
#: views.py:
|
|
648
|
+
#: views.py:1047
|
|
543
649
|
msgid "Congratulations, your map has been cloned!"
|
|
544
650
|
msgstr "Tahniah, peta anda telah berjaya diklon!"
|
|
545
651
|
|
|
546
|
-
#: views.py:
|
|
652
|
+
#: views.py:1282
|
|
547
653
|
msgid "Layer successfully deleted."
|
|
548
654
|
msgstr "Lapisan telah berjaya dipadamkan."
|
|
549
655
|
|
|
550
|
-
#: views.py:
|
|
656
|
+
#: views.py:1304
|
|
551
657
|
msgid "Permissions updated with success!"
|
|
552
658
|
msgstr "Kebenaran telah dikemas kini dengan jayanya!"
|