umap-project 2.5.1__py3-none-any.whl → 2.6.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/admin.py +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 +346 -234
- 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 +3 -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 +3 -3
- 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 +994 -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/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 +573 -0
- umap/static/umap/js/modules/schema.js +24 -0
- 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 +79 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +32 -12
- umap/static/umap/js/umap.js +65 -63
- umap/static/umap/locale/br.js +35 -35
- umap/static/umap/locale/br.json +35 -35
- umap/static/umap/locale/ca.js +50 -50
- umap/static/umap/locale/ca.json +50 -50
- umap/static/umap/locale/de.js +136 -136
- umap/static/umap/locale/de.json +136 -136
- umap/static/umap/locale/el.js +47 -47
- umap/static/umap/locale/el.json +47 -47
- umap/static/umap/locale/en.js +7 -1
- umap/static/umap/locale/en.json +7 -1
- umap/static/umap/locale/fa_IR.js +44 -44
- umap/static/umap/locale/fa_IR.json +44 -44
- umap/static/umap/locale/fr.js +8 -2
- umap/static/umap/locale/fr.json +8 -2
- umap/static/umap/locale/pt.js +17 -17
- umap/static/umap/locale/pt.json +17 -17
- umap/static/umap/locale/pt_PT.js +207 -207
- umap/static/umap/locale/pt_PT.json +207 -207
- umap/static/umap/locale/th_TH.js +25 -25
- umap/static/umap/locale/th_TH.json +25 -25
- umap/static/umap/map.css +107 -104
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +1 -1
- umap/storage.py +1 -0
- 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 +6 -2
- 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 +4 -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_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_draw_polygon.py +110 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_import.py +64 -5
- umap/tests/integration/test_owned_map.py +21 -13
- 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.1.dist-info → umap_project-2.6.0b0.dist-info}/METADATA +9 -9
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/RECORD +177 -170
- 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.1.dist-info → umap_project-2.6.0b0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/fa_IR.js
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
" (area: {measure})": "(
|
|
3
|
-
" (length: {measure})": "(
|
|
4
|
-
"# one hash for main heading": "# یک
|
|
5
|
-
"## two hashes for second heading": "## دو
|
|
6
|
-
"### three hashes for third heading": "### سه
|
|
7
|
-
"**double star for bold**": "
|
|
8
|
-
"*single star for italic*": "
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
2
|
+
" (area: {measure})": "(مساحت: {measure})",
|
|
3
|
+
" (length: {measure})": "(طول: {measure})",
|
|
4
|
+
"# one hash for main heading": "# یک هش برای عنوان اصلی",
|
|
5
|
+
"## two hashes for second heading": "## دو هش برای عنوان دوم",
|
|
6
|
+
"### three hashes for third heading": "### سه هش برای عنوان سوم",
|
|
7
|
+
"**double star for bold**": "**ستارههای دوتایی برای ضخیم**",
|
|
8
|
+
"*single star for italic*": "*ستارههای تکی برای مورب*",
|
|
9
|
+
"--- for a horizontal rule": "--- برای یک خط افقی",
|
|
10
10
|
"1 day": "1 روز",
|
|
11
11
|
"1 hour": "1 ساعت",
|
|
12
12
|
"5 min": "5 دقیقه",
|
|
13
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "
|
|
13
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "فهرستی از اعداد که الگوی خطچین را تعریف میکنند (جداشده با کاما) مثال: \"5, 10, 15\".",
|
|
14
14
|
"About": "درباره",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "کنش غیرمجاز :(",
|
|
16
16
|
"Activate slideshow mode": "حالت نمایش اسلاید را فعال کنید",
|
|
17
17
|
"Add a layer": "یک لایه اضافه کنید",
|
|
18
18
|
"Add a line to the current multi": "یک خط به مولتی فعلی اضافه کنید",
|
|
19
19
|
"Add a new property": "یک ویژگی جدید اضافه کنید",
|
|
20
|
-
"Add a polygon to the current multi": "
|
|
21
|
-
"Add image URL": "
|
|
22
|
-
"Add": "
|
|
23
|
-
"Advanced actions": "
|
|
24
|
-
"Advanced properties": "
|
|
25
|
-
"All data and settings of the map": "
|
|
26
|
-
"All properties are imported.": "همه
|
|
27
|
-
"Allow interactions": "
|
|
20
|
+
"Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
|
|
21
|
+
"Add image URL": "نشانی تصویر را بدهید",
|
|
22
|
+
"Add": "افزودن",
|
|
23
|
+
"Advanced actions": "کنشهای پیشرفته",
|
|
24
|
+
"Advanced properties": "ویژگیهای پیشرفته",
|
|
25
|
+
"All data and settings of the map": "همهٔ دادهها و تنظیمات نقشه",
|
|
26
|
+
"All properties are imported.": "همه ویژگیها درونبرد شد.",
|
|
27
|
+
"Allow interactions": "اجازهٔ تعامل دهید",
|
|
28
28
|
"Allow scroll wheel zoom?": "زوم با چرخانک موشواره مجاز باشد؟",
|
|
29
29
|
"always": "همیشه",
|
|
30
|
-
"Animated transitions": "
|
|
31
|
-
"Are you sure you want to cancel your changes?": "آیا
|
|
32
|
-
"Are you sure you want to clone this map and all its datalayers?": "آیا
|
|
33
|
-
"Are you sure you want to delete the feature?": "آیا
|
|
34
|
-
"Are you sure you want to delete this layer?": "آیا
|
|
35
|
-
"Are you sure you want to delete this map?": "آیا
|
|
36
|
-
"Are you sure you want to delete this property on all the features?": "آیا
|
|
37
|
-
"Are you sure you want to restore this version?": "آیا
|
|
38
|
-
"Attach the map to my account": "نقشه را به حساب من وصل
|
|
30
|
+
"Animated transitions": "گذارهای پویانما",
|
|
31
|
+
"Are you sure you want to cancel your changes?": "آیا تغییرات خود را لغو میکنید؟",
|
|
32
|
+
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
|
33
|
+
"Are you sure you want to delete the feature?": "آیا این عنصر را حذف میکنید؟",
|
|
34
|
+
"Are you sure you want to delete this layer?": "آیا این لایه را حذف میکنید؟",
|
|
35
|
+
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
|
36
|
+
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
|
37
|
+
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
|
38
|
+
"Attach the map to my account": "نقشه را به حساب من وصل کن",
|
|
39
39
|
"attribution": "انتساب",
|
|
40
40
|
"Auto": "خودکار",
|
|
41
41
|
"Automatic": "خودکار",
|
|
42
|
-
"Autostart when map is loaded": "
|
|
43
|
-
"Back to preview": "
|
|
44
|
-
"Background overlay url": "
|
|
42
|
+
"Autostart when map is loaded": "پس از بارشدن نقشه، خودکار آغاز شود",
|
|
43
|
+
"Back to preview": "بازگشت به حالت نمایش",
|
|
44
|
+
"Background overlay url": "URL برای روزمینه",
|
|
45
45
|
"Ball": "توپ",
|
|
46
46
|
"Bring feature to center": "Bring feature to center",
|
|
47
|
-
"Browse data": "مرور
|
|
48
|
-
"by": "
|
|
49
|
-
"Cache proxied request": "
|
|
50
|
-
"Cancel edits": "لغو
|
|
47
|
+
"Browse data": "مرور دادهها",
|
|
48
|
+
"by": "از",
|
|
49
|
+
"Cache proxied request": "حفظ موقت درخواست پراکسیشده",
|
|
50
|
+
"Cancel edits": "لغو ویرایشها",
|
|
51
51
|
"Caption": "درباره",
|
|
52
|
-
"Center map on your location": "
|
|
53
|
-
"Change map background": "تغییر
|
|
54
|
-
"Change tilelayers": "کاشی
|
|
55
|
-
"Change": "
|
|
52
|
+
"Center map on your location": "تنظیم مرکز نقشه روی موقعیت شما",
|
|
53
|
+
"Change map background": "تغییر پسزمینهٔ نقشه",
|
|
54
|
+
"Change tilelayers": "لایهٔ کاشی را تغییر دهید",
|
|
55
|
+
"Change": "تغییر",
|
|
56
56
|
"Choose the data format": "قالب داده را انتخاب کنید",
|
|
57
|
-
"Choropleth breakpoints": "
|
|
58
|
-
"Choropleth classes": "
|
|
59
|
-
"Choropleth color palette": "
|
|
60
|
-
"Choropleth mode": "
|
|
61
|
-
"Choropleth property value": "
|
|
57
|
+
"Choropleth breakpoints": "نقاط شکست",
|
|
58
|
+
"Choropleth classes": "دستهها",
|
|
59
|
+
"Choropleth color palette": "تخته رنگ",
|
|
60
|
+
"Choropleth mode": "حالت",
|
|
61
|
+
"Choropleth property value": "مقدار ویژگی",
|
|
62
62
|
"Choropleth": "Choropleth",
|
|
63
63
|
"Circle": "دایره",
|
|
64
|
-
"clear": "
|
|
64
|
+
"clear": "پاکسازی",
|
|
65
65
|
"Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید",
|
|
66
66
|
"Click to add a marker": "برای افزودن نشانگر کلیک کنید",
|
|
67
67
|
"Click to continue drawing": "برای ادامه ترسیم کلیک کنید",
|
|
@@ -1,67 +1,67 @@
|
|
|
1
1
|
{
|
|
2
|
-
" (area: {measure})": "(
|
|
3
|
-
" (length: {measure})": "(
|
|
4
|
-
"# one hash for main heading": "# یک
|
|
5
|
-
"## two hashes for second heading": "## دو
|
|
6
|
-
"### three hashes for third heading": "### سه
|
|
7
|
-
"**double star for bold**": "
|
|
8
|
-
"*single star for italic*": "
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
2
|
+
" (area: {measure})": "(مساحت: {measure})",
|
|
3
|
+
" (length: {measure})": "(طول: {measure})",
|
|
4
|
+
"# one hash for main heading": "# یک هش برای عنوان اصلی",
|
|
5
|
+
"## two hashes for second heading": "## دو هش برای عنوان دوم",
|
|
6
|
+
"### three hashes for third heading": "### سه هش برای عنوان سوم",
|
|
7
|
+
"**double star for bold**": "**ستارههای دوتایی برای ضخیم**",
|
|
8
|
+
"*single star for italic*": "*ستارههای تکی برای مورب*",
|
|
9
|
+
"--- for a horizontal rule": "--- برای یک خط افقی",
|
|
10
10
|
"1 day": "1 روز",
|
|
11
11
|
"1 hour": "1 ساعت",
|
|
12
12
|
"5 min": "5 دقیقه",
|
|
13
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "
|
|
13
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "فهرستی از اعداد که الگوی خطچین را تعریف میکنند (جداشده با کاما) مثال: \"5, 10, 15\".",
|
|
14
14
|
"About": "درباره",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "کنش غیرمجاز :(",
|
|
16
16
|
"Activate slideshow mode": "حالت نمایش اسلاید را فعال کنید",
|
|
17
17
|
"Add a layer": "یک لایه اضافه کنید",
|
|
18
18
|
"Add a line to the current multi": "یک خط به مولتی فعلی اضافه کنید",
|
|
19
19
|
"Add a new property": "یک ویژگی جدید اضافه کنید",
|
|
20
|
-
"Add a polygon to the current multi": "
|
|
21
|
-
"Add image URL": "
|
|
22
|
-
"Add": "
|
|
23
|
-
"Advanced actions": "
|
|
24
|
-
"Advanced properties": "
|
|
25
|
-
"All data and settings of the map": "
|
|
26
|
-
"All properties are imported.": "همه
|
|
27
|
-
"Allow interactions": "
|
|
20
|
+
"Add a polygon to the current multi": "یک چندضلعی به مولتی فعلی اضافه کنید",
|
|
21
|
+
"Add image URL": "نشانی تصویر را بدهید",
|
|
22
|
+
"Add": "افزودن",
|
|
23
|
+
"Advanced actions": "کنشهای پیشرفته",
|
|
24
|
+
"Advanced properties": "ویژگیهای پیشرفته",
|
|
25
|
+
"All data and settings of the map": "همهٔ دادهها و تنظیمات نقشه",
|
|
26
|
+
"All properties are imported.": "همه ویژگیها درونبرد شد.",
|
|
27
|
+
"Allow interactions": "اجازهٔ تعامل دهید",
|
|
28
28
|
"Allow scroll wheel zoom?": "زوم با چرخانک موشواره مجاز باشد؟",
|
|
29
29
|
"always": "همیشه",
|
|
30
|
-
"Animated transitions": "
|
|
31
|
-
"Are you sure you want to cancel your changes?": "آیا
|
|
32
|
-
"Are you sure you want to clone this map and all its datalayers?": "آیا
|
|
33
|
-
"Are you sure you want to delete the feature?": "آیا
|
|
34
|
-
"Are you sure you want to delete this layer?": "آیا
|
|
35
|
-
"Are you sure you want to delete this map?": "آیا
|
|
36
|
-
"Are you sure you want to delete this property on all the features?": "آیا
|
|
37
|
-
"Are you sure you want to restore this version?": "آیا
|
|
38
|
-
"Attach the map to my account": "نقشه را به حساب من وصل
|
|
30
|
+
"Animated transitions": "گذارهای پویانما",
|
|
31
|
+
"Are you sure you want to cancel your changes?": "آیا تغییرات خود را لغو میکنید؟",
|
|
32
|
+
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
|
33
|
+
"Are you sure you want to delete the feature?": "آیا این عنصر را حذف میکنید؟",
|
|
34
|
+
"Are you sure you want to delete this layer?": "آیا این لایه را حذف میکنید؟",
|
|
35
|
+
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
|
36
|
+
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
|
37
|
+
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
|
38
|
+
"Attach the map to my account": "نقشه را به حساب من وصل کن",
|
|
39
39
|
"attribution": "انتساب",
|
|
40
40
|
"Auto": "خودکار",
|
|
41
41
|
"Automatic": "خودکار",
|
|
42
|
-
"Autostart when map is loaded": "
|
|
43
|
-
"Back to preview": "
|
|
44
|
-
"Background overlay url": "
|
|
42
|
+
"Autostart when map is loaded": "پس از بارشدن نقشه، خودکار آغاز شود",
|
|
43
|
+
"Back to preview": "بازگشت به حالت نمایش",
|
|
44
|
+
"Background overlay url": "URL برای روزمینه",
|
|
45
45
|
"Ball": "توپ",
|
|
46
46
|
"Bring feature to center": "Bring feature to center",
|
|
47
|
-
"Browse data": "مرور
|
|
48
|
-
"by": "
|
|
49
|
-
"Cache proxied request": "
|
|
50
|
-
"Cancel edits": "لغو
|
|
47
|
+
"Browse data": "مرور دادهها",
|
|
48
|
+
"by": "از",
|
|
49
|
+
"Cache proxied request": "حفظ موقت درخواست پراکسیشده",
|
|
50
|
+
"Cancel edits": "لغو ویرایشها",
|
|
51
51
|
"Caption": "درباره",
|
|
52
|
-
"Center map on your location": "
|
|
53
|
-
"Change map background": "تغییر
|
|
54
|
-
"Change tilelayers": "کاشی
|
|
55
|
-
"Change": "
|
|
52
|
+
"Center map on your location": "تنظیم مرکز نقشه روی موقعیت شما",
|
|
53
|
+
"Change map background": "تغییر پسزمینهٔ نقشه",
|
|
54
|
+
"Change tilelayers": "لایهٔ کاشی را تغییر دهید",
|
|
55
|
+
"Change": "تغییر",
|
|
56
56
|
"Choose the data format": "قالب داده را انتخاب کنید",
|
|
57
|
-
"Choropleth breakpoints": "
|
|
58
|
-
"Choropleth classes": "
|
|
59
|
-
"Choropleth color palette": "
|
|
60
|
-
"Choropleth mode": "
|
|
61
|
-
"Choropleth property value": "
|
|
57
|
+
"Choropleth breakpoints": "نقاط شکست",
|
|
58
|
+
"Choropleth classes": "دستهها",
|
|
59
|
+
"Choropleth color palette": "تخته رنگ",
|
|
60
|
+
"Choropleth mode": "حالت",
|
|
61
|
+
"Choropleth property value": "مقدار ویژگی",
|
|
62
62
|
"Choropleth": "Choropleth",
|
|
63
63
|
"Circle": "دایره",
|
|
64
|
-
"clear": "
|
|
64
|
+
"clear": "پاکسازی",
|
|
65
65
|
"Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید",
|
|
66
66
|
"Click to add a marker": "برای افزودن نشانگر کلیک کنید",
|
|
67
67
|
"Click to continue drawing": "برای ادامه ترسیم کلیک کنید",
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -297,7 +297,7 @@ const locale = {
|
|
|
297
297
|
"Quantiles": "Quantiles",
|
|
298
298
|
"Recent": "Récents",
|
|
299
299
|
"Remote data": "Données distantes",
|
|
300
|
-
"Remove shape from the multi": "
|
|
300
|
+
"Remove shape from the multi": "Supprimer ce tracé du groupe",
|
|
301
301
|
"Replace layer content": "Remplacer le contenu du calque",
|
|
302
302
|
"Restore this version": "Restaurer cette version",
|
|
303
303
|
"Save current edits": "Enregistrer les changements courants",
|
|
@@ -498,7 +498,13 @@ const locale = {
|
|
|
498
498
|
"Found {count} rows. Are you sure you want to delete all?": "{count} lignes trouvées. Êtes-vous sûr de vouloir toutes les supprimer ?",
|
|
499
499
|
"Expression is empty": "L'expression est vide",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Annuler"
|
|
501
|
+
"Cancel": "Annuler",
|
|
502
|
+
"Attach map to a team": "Associer la carte à une équipe",
|
|
503
|
+
"Display the polygon inverted": "Afficher le polygon en négatif",
|
|
504
|
+
"Proportional circles": "Cercles proportionnels",
|
|
505
|
+
"Property name to compute circles": "Nom de la propriété pour calculer les cercles",
|
|
506
|
+
"Min circle radius": "Rayon minimum",
|
|
507
|
+
"Max circle radius": "Rayon maximum"
|
|
502
508
|
}
|
|
503
509
|
L.registerLocale("fr", locale)
|
|
504
510
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -297,7 +297,7 @@
|
|
|
297
297
|
"Quantiles": "Quantiles",
|
|
298
298
|
"Recent": "Récents",
|
|
299
299
|
"Remote data": "Données distantes",
|
|
300
|
-
"Remove shape from the multi": "
|
|
300
|
+
"Remove shape from the multi": "Supprimer ce tracé du groupe",
|
|
301
301
|
"Replace layer content": "Remplacer le contenu du calque",
|
|
302
302
|
"Restore this version": "Restaurer cette version",
|
|
303
303
|
"Save current edits": "Enregistrer les changements courants",
|
|
@@ -498,5 +498,11 @@
|
|
|
498
498
|
"Found {count} rows. Are you sure you want to delete all?": "{count} lignes trouvées. Êtes-vous sûr de vouloir toutes les supprimer ?",
|
|
499
499
|
"Expression is empty": "L'expression est vide",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Annuler"
|
|
501
|
+
"Cancel": "Annuler",
|
|
502
|
+
"Attach map to a team": "Associer la carte à une équipe",
|
|
503
|
+
"Display the polygon inverted": "Afficher le polygon en négatif",
|
|
504
|
+
"Proportional circles": "Cercles proportionnels",
|
|
505
|
+
"Property name to compute circles": "Nom de la propriété pour calculer les cercles",
|
|
506
|
+
"Min circle radius": "Rayon minimum",
|
|
507
|
+
"Max circle radius": "Rayon maximum"
|
|
502
508
|
}
|
umap/static/umap/locale/pt.js
CHANGED
|
@@ -481,24 +481,24 @@ const locale = {
|
|
|
481
481
|
"My Dashboard ({username})": "Meu painel de controlo ({username})",
|
|
482
482
|
"Clear data": "Limpar dados",
|
|
483
483
|
"Remove layers": "Remover camadas",
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
484
|
+
"Categorized": "Categorizado",
|
|
485
|
+
"Alphabetical": "Por ordem alfabética",
|
|
486
|
+
"Category property": "Categoria da propriedade",
|
|
487
|
+
"Color palette": "Paleta de cores",
|
|
488
|
+
"Categories": "Categorias",
|
|
489
|
+
"Comma separated list of categories.": "Lista de categorias separada por vírgulas.",
|
|
490
|
+
"Categories mode": "Modo de categorias",
|
|
491
|
+
"Remove filter for this column": "Remover filtro para esta coluna",
|
|
492
|
+
"Add filter for this column": "Adicionar filtro para esta coluna",
|
|
493
|
+
"Rename this column": "Mudar o nome desta coluna",
|
|
494
|
+
"Delete this column": "Eliminar esta coluna",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "O nome “{name}” não deve conter um ponto.",
|
|
496
|
+
"This name already exists: “{name}”": "Este nome já existe: “{name}”",
|
|
497
|
+
"Delete selected rows": "Eliminar as linhas selecionadas",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Foram encontradas {count} linhas. Tem a certeza de que pretende apagar todas?",
|
|
499
|
+
"Expression is empty": "A expressão está vazia",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
501
|
+
"Cancel": "Cancelar"
|
|
502
502
|
}
|
|
503
503
|
L.registerLocale("pt", locale)
|
|
504
504
|
L.setLocale("pt")
|
umap/static/umap/locale/pt.json
CHANGED
|
@@ -481,22 +481,22 @@
|
|
|
481
481
|
"My Dashboard ({username})": "Meu painel de controlo ({username})",
|
|
482
482
|
"Clear data": "Limpar dados",
|
|
483
483
|
"Remove layers": "Remover camadas",
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
484
|
+
"Categorized": "Categorizado",
|
|
485
|
+
"Alphabetical": "Por ordem alfabética",
|
|
486
|
+
"Category property": "Categoria da propriedade",
|
|
487
|
+
"Color palette": "Paleta de cores",
|
|
488
|
+
"Categories": "Categorias",
|
|
489
|
+
"Comma separated list of categories.": "Lista de categorias separada por vírgulas.",
|
|
490
|
+
"Categories mode": "Modo de categorias",
|
|
491
|
+
"Remove filter for this column": "Remover filtro para esta coluna",
|
|
492
|
+
"Add filter for this column": "Adicionar filtro para esta coluna",
|
|
493
|
+
"Rename this column": "Mudar o nome desta coluna",
|
|
494
|
+
"Delete this column": "Eliminar esta coluna",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "O nome “{name}” não deve conter um ponto.",
|
|
496
|
+
"This name already exists: “{name}”": "Este nome já existe: “{name}”",
|
|
497
|
+
"Delete selected rows": "Eliminar as linhas selecionadas",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Foram encontradas {count} linhas. Tem a certeza de que pretende apagar todas?",
|
|
499
|
+
"Expression is empty": "A expressão está vazia",
|
|
500
500
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
501
|
+
"Cancel": "Cancelar"
|
|
502
502
|
}
|