mirror of
https://github.com/umap-project/umap.git
synced 2025-05-05 14:01:50 +02:00
Compare commits
No commits in common. "aa43d4efa8889e58815bd4a1ce795ab8ba737b79" and "190cac3105dbc8608b38f3c2f4d27708eb588ecb" have entirely different histories.
aa43d4efa8
...
190cac3105
129 changed files with 620 additions and 289 deletions
|
@ -26,7 +26,7 @@ services:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
redis:
|
redis:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
image: umap/umap:3.0.0
|
image: umap/umap:2.9.3
|
||||||
ports:
|
ports:
|
||||||
- "${PORT-8000}:8000"
|
- "${PORT-8000}:8000"
|
||||||
environment:
|
environment:
|
||||||
|
@ -35,7 +35,7 @@ services:
|
||||||
- SITE_URL=https://umap.local/
|
- SITE_URL=https://umap.local/
|
||||||
- UMAP_ALLOW_ANONYMOUS=True
|
- UMAP_ALLOW_ANONYMOUS=True
|
||||||
- DEBUG=1
|
- DEBUG=1
|
||||||
- REALTIME_ENABLED=1
|
- WEBSOCKET_ENABLED=1
|
||||||
- REDIS_URL=redis://redis:6379
|
- REDIS_URL=redis://redis:6379
|
||||||
volumes:
|
volumes:
|
||||||
- data:/srv/umap/uploads
|
- data:/srv/umap/uploads
|
||||||
|
|
|
@ -1,73 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 3.0.1 - 2025-04-07
|
|
||||||
|
|
||||||
* fix showLabel wrongly using MultiChoices by @yohanboniface in #2609
|
|
||||||
|
|
||||||
|
|
||||||
## 3.0.0 - 2025-04-07
|
|
||||||
|
|
||||||
This is the first release to officially support colaborative real-time map editing.
|
|
||||||
It introduces ASGI deployement, to support websockets, and adds Redis in the stack.
|
|
||||||
But it's still possible to continue deploying in WSGI for now, and Redis is only
|
|
||||||
mandatory when using the real-time feature.
|
|
||||||
|
|
||||||
How to use the real-time editing feature in your instance:
|
|
||||||
- you need to deploy with ASGI, see https://docs.umap-project.org/en/stable/deploy/asgi/
|
|
||||||
- you need to set `REALTIME_ENABLED=True` in your settings
|
|
||||||
|
|
||||||
Other notable changes:
|
|
||||||
- a first version of a real undo/redo
|
|
||||||
- map categories; those are defined through the `UMAP_TAGS` settings
|
|
||||||
|
|
||||||
Note: you may want to update your search index to include the category search,
|
|
||||||
see https://docs.umap-project.org/en/stable/config/settings/#umap_search_configuration
|
|
||||||
|
|
||||||
### New features
|
|
||||||
* add collaborative real-time map editing
|
|
||||||
* add atomic undo redo by @yohanboniface in #2570
|
|
||||||
* expose active sessions in stats endpoint by @yohanboniface in #2544
|
|
||||||
* add more users counts in /stats/ by @yohanboniface in #2555
|
|
||||||
* add new "Back to home" icon by @yohanboniface in #2551
|
|
||||||
* add experimental BAN importer by @yohanboniface in #2565
|
|
||||||
* add titles in the text formatting dialog by @yohanboniface in #2584
|
|
||||||
* layers selector in bottom bar by @yohanboniface in #2579
|
|
||||||
* display maps list as a grid now by @yohanboniface in #2590
|
|
||||||
* add Map.tags and allow to edit from client by @yohanboniface in #2530
|
|
||||||
* add minimal "raw" icon shape by @yohanboniface in #2597
|
|
||||||
|
|
||||||
### Bug fixes
|
|
||||||
* cast value to string before calling trim by @yohanboniface in #2567
|
|
||||||
* import iconUrl as absolute when possible by @yohanboniface in #2563
|
|
||||||
* iconUrl field was broken on older browsers by @yohanboniface in #2575
|
|
||||||
* do not fail when trying to read metadata of a missing geojson by @yohanboniface in #2592
|
|
||||||
* remote data loading on import from umap backup by @davidbgk in #2598
|
|
||||||
* do not export layer ids in umap backup by @davidbgk in #2600
|
|
||||||
* use the multichoices for ttl in remote data form by @davidbgk in #2599
|
|
||||||
|
|
||||||
### Internal changes
|
|
||||||
* refactor search UX by @yohanboniface in #2545
|
|
||||||
* new icon, colors and title for search buttons by @yohanboniface in #2556
|
|
||||||
* use real redraw for datalayer, instead of hide/show by @yohanboniface in #2568
|
|
||||||
* order importers by name instead of id by @yohanboniface in #2578
|
|
||||||
* update the Dockerfile to expose websockets by @almet in #2576
|
|
||||||
* remove confirm delete for features and datalayers by @yohanboniface in #2603
|
|
||||||
|
|
||||||
### Accessibility
|
|
||||||
* a11y: turn embeded maps into inert elements by @davidbgk in #2533
|
|
||||||
|
|
||||||
### Changed templates
|
|
||||||
- auth/user_detail.html
|
|
||||||
- auth/user_stars.html
|
|
||||||
- umap/content.html
|
|
||||||
- umap/home.html
|
|
||||||
- umap/map_fragment.html
|
|
||||||
- umap/map_list.html
|
|
||||||
- umap/search.html
|
|
||||||
- umap/search_bar.html
|
|
||||||
- umap/team_detail.html
|
|
||||||
|
|
||||||
|
|
||||||
## 2.9.3 - 2025-03-07
|
## 2.9.3 - 2025-03-07
|
||||||
|
|
||||||
* be explicit in the message that logout is needed after adding a new oauth provider
|
* be explicit in the message that logout is needed after adding a new oauth provider
|
||||||
|
|
|
@ -88,13 +88,6 @@ Nginx configuration.
|
||||||
|
|
||||||
See [Django documentation for MEDIA_ROOT](https://docs.djangoproject.com/en/4.2/ref/settings/#media-root)
|
See [Django documentation for MEDIA_ROOT](https://docs.djangoproject.com/en/4.2/ref/settings/#media-root)
|
||||||
|
|
||||||
#### REALTIME_ENABLED
|
|
||||||
|
|
||||||
Setting `REALTIME_ENABLED` to `True` will allow users to enable real-time collaboration.
|
|
||||||
A switch will be available for them in the "advanced properties" of the map.
|
|
||||||
|
|
||||||
See [the documentation about ASGI deployment](../deploy/asgi.md) for more information.
|
|
||||||
|
|
||||||
#### SECRET_KEY
|
#### SECRET_KEY
|
||||||
|
|
||||||
Must be defined to something unique and secret.
|
Must be defined to something unique and secret.
|
||||||
|
@ -128,13 +121,6 @@ The final URL of you instance, including the protocol:
|
||||||
`SITE_URL=http://umap.org`
|
`SITE_URL=http://umap.org`
|
||||||
|
|
||||||
|
|
||||||
#### SOCIAL_AUTH_OPENSTREETMAP_OAUTH2_KEY, SOCIAL_AUTH_OPENSTREETMAP_OAUTH2_SECRET
|
|
||||||
|
|
||||||
If you use OpenStreetMap as OAuth 2 provider, you can use those settings.
|
|
||||||
|
|
||||||
Otherwise, use any valid [python-social-auth configuration](https://python-social-auth.readthedocs.io/en/latest/configuration/django.html).
|
|
||||||
|
|
||||||
|
|
||||||
#### STATIC_ROOT
|
#### STATIC_ROOT
|
||||||
|
|
||||||
Where uMap should store static files (CSS, JS…), must be consistent with your
|
Where uMap should store static files (CSS, JS…), must be consistent with your
|
||||||
|
@ -362,3 +348,16 @@ Should uMap gzip datalayers geojson.
|
||||||
Can be set to `X-Accel-Redirect` to enable the [NGINX X-Accel](https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/) feature.
|
Can be set to `X-Accel-Redirect` to enable the [NGINX X-Accel](https://www.nginx.com/resources/wiki/start/topics/examples/xsendfile/) feature.
|
||||||
|
|
||||||
See the NGINX documentation in addition.
|
See the NGINX documentation in addition.
|
||||||
|
|
||||||
|
#### SOCIAL_AUTH_OPENSTREETMAP_OAUTH2_KEY, SOCIAL_AUTH_OPENSTREETMAP_OAUTH2_SECRET
|
||||||
|
|
||||||
|
If you use OpenStreetMap as OAuth 2 provider, you can use those settings.
|
||||||
|
|
||||||
|
Otherwise, use any valid [python-social-auth configuration](https://python-social-auth.readthedocs.io/en/latest/configuration/django.html).
|
||||||
|
|
||||||
|
#### WEBSOCKET_ENABLED
|
||||||
|
|
||||||
|
Setting `WEBSOCKET_ENABLED` to `True` will allow users to enable real-time collaboration.
|
||||||
|
A switch will be available for them in the "advanced properties" of the map.
|
||||||
|
|
||||||
|
See [the documentation about ASGI deployment](../deploy/asgi.md) for more information.
|
||||||
|
|
|
@ -85,7 +85,7 @@ services
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
…
|
…
|
||||||
environment:
|
environment:
|
||||||
- REALTIME_ENABLED=1
|
- WEBSOCKET_ENABLED=1
|
||||||
- REDIS_URL=redis://redis:6379
|
- REDIS_URL=redis://redis:6379
|
||||||
…
|
…
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
VERSION = "3.0.1"
|
VERSION = "2.9.2"
|
||||||
|
|
|
@ -360,8 +360,10 @@ LOGGING = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
# Real-time editing configuration
|
# WebSocket configuration
|
||||||
|
|
||||||
REALTIME_ENABLED = env.bool("REALTIME_ENABLED", default=False)
|
WEBSOCKET_ENABLED = env.bool("WEBSOCKET_ENABLED", default=False)
|
||||||
|
WEBSOCKET_BACK_HOST = env("WEBSOCKET_BACK_HOST", default="localhost")
|
||||||
|
WEBSOCKET_BACK_PORT = env.int("WEBSOCKET_BACK_PORT", default=8001)
|
||||||
|
|
||||||
REDIS_URL = env("REDIS_URL", default="redis://localhost:6379")
|
REDIS_URL = env("REDIS_URL", default="redis://localhost:6379")
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
*/
|
*/
|
||||||
body, div, ul, ol, li, a, section, nav,
|
body, div, ul, ol, li, a, section, nav,
|
||||||
h1, h2, h3, h4, h5, h6, label,
|
h1, h2, h3, h4, h5, h6, label,
|
||||||
hr, input, textarea, select {
|
hr, input, textarea {
|
||||||
|
-moz-box-sizing:border-box;
|
||||||
|
-webkit-box-sizing:border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -17,11 +19,7 @@ h1, h2, h3, h4, h5, h6, label, hr {
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--link-color);
|
color: #1F5C39;
|
||||||
}
|
|
||||||
a.main {
|
|
||||||
font-weight: bold;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
}
|
||||||
a[href^="http"]:not(nav.umap-nav a) {
|
a[href^="http"]:not(nav.umap-nav a) {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
@ -83,6 +81,9 @@ hgroup > * {
|
||||||
hgroup {
|
hgroup {
|
||||||
margin-bottom: var(--box-margin);
|
margin-bottom: var(--box-margin);
|
||||||
}
|
}
|
||||||
|
hgroup > :not(:first-child):last-child {
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
hgroup p,
|
hgroup p,
|
||||||
hgroup button {
|
hgroup button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -201,10 +202,6 @@ dt {
|
||||||
/* Various */
|
/* Various */
|
||||||
/* *********** */
|
/* *********** */
|
||||||
|
|
||||||
.nobr {
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
white-space: pre-line;
|
white-space: pre-line;
|
||||||
|
|
|
@ -19,6 +19,7 @@ input:-moz-placeholder, :-moz-placeholder {
|
||||||
.search-form {
|
.search-form {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
|
gap: calc(var(--gutter) / 2);
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
@ -185,8 +186,6 @@ h2.tabs a:hover {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font-size: small;
|
|
||||||
padding: 0 3px;
|
|
||||||
}
|
}
|
||||||
.card {
|
.card {
|
||||||
border: 1px solid var(--color-lightGray);
|
border: 1px solid var(--color-lightGray);
|
||||||
|
@ -214,6 +213,7 @@ h2.tabs a:hover {
|
||||||
/* colors */
|
/* colors */
|
||||||
/* **************************** */
|
/* **************************** */
|
||||||
|
|
||||||
|
input[type="submit"],
|
||||||
.button {
|
.button {
|
||||||
background-color: var(--button-primary-background);
|
background-color: var(--button-primary-background);
|
||||||
color: var(--button-primary-color);
|
color: var(--button-primary-color);
|
||||||
|
@ -405,9 +405,22 @@ html[dir="rtl"] .content .icon-delete {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.table-header form input {
|
||||||
|
border: 2px solid var(--color-darkBlue);
|
||||||
|
border-radius: 0;
|
||||||
|
padding: .5rem 1rem;
|
||||||
|
margin-bottom: 0;
|
||||||
|
line-height: inherit;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
.table-header form input[type="search"] {
|
.table-header form input[type="search"] {
|
||||||
width: 30ch;
|
width: 30ch;
|
||||||
}
|
}
|
||||||
|
.table-header form input[type="submit"] {
|
||||||
|
background-color: var(--color-darkBlue);
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
.table-header .button-download {
|
.table-header .button-download {
|
||||||
width: inherit;
|
width: inherit;
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
background-color: var(--color-darkGray);
|
background-color: var(--color-darkGray);
|
||||||
width: auto;
|
width: auto;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
min-height: initial;
|
|
||||||
}
|
}
|
||||||
.umap-main-edit-toolbox [type=button]:hover {
|
.umap-main-edit-toolbox [type=button]:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
@ -14,14 +13,9 @@
|
||||||
padding: 0 var(--text-margin);
|
padding: 0 var(--text-margin);
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
}
|
}
|
||||||
.leaflet-container .edit-undo {
|
|
||||||
margin-left: var(--box-margin);
|
|
||||||
}
|
|
||||||
.leaflet-container .edit-undo[disabled],
|
|
||||||
.leaflet-container .edit-redo[disabled] {
|
|
||||||
filter: invert(.5);
|
|
||||||
}
|
|
||||||
.leaflet-container .edit-save,
|
.leaflet-container .edit-save,
|
||||||
|
.leaflet-container .edit-undo,
|
||||||
|
.leaflet-container .edit-redo,
|
||||||
.leaflet-container .edit-disable,
|
.leaflet-container .edit-disable,
|
||||||
.leaflet-container .connected-peers
|
.leaflet-container .connected-peers
|
||||||
{
|
{
|
||||||
|
@ -46,6 +40,8 @@
|
||||||
color: var(--color-darkGray);
|
color: var(--color-darkGray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-container .edit-undo:hover,
|
||||||
|
.leaflet-container .edit-redo:hover,
|
||||||
.leaflet-container .edit-disable:hover {
|
.leaflet-container .edit-disable:hover {
|
||||||
border: 0.5px solid rgba(153, 153, 153, 0.80);
|
border: 0.5px solid rgba(153, 153, 153, 0.80);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
@ -7,15 +7,16 @@ input[type="datetime-local"], input[type="email"], input[type="number"],
|
||||||
input[type="search"], input[type="tel"], input[type="time"], input[type="file"],
|
input[type="search"], input[type="tel"], input[type="time"], input[type="file"],
|
||||||
input[type="url"], textarea {
|
input[type="url"], textarea {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border: 2px solid var(--color-darkBlue);
|
border: 1px solid #CCCCCC;
|
||||||
color: var(--text-color);
|
border-radius: 2px 2px 2px 2px;
|
||||||
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
||||||
|
color: rgba(0, 0, 0, 0.75);
|
||||||
display: block;
|
display: block;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: .5rem 1rem;
|
margin-bottom: var(--box-margin);
|
||||||
|
padding: 7px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
line-height: inherit;
|
|
||||||
min-height: 40px;
|
|
||||||
}
|
}
|
||||||
input[type="range"] {
|
input[type="range"] {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
@ -46,15 +47,11 @@ input[type=checkbox]:checked:after {
|
||||||
content: '✓';
|
content: '✓';
|
||||||
color: var(--color-darkGray);
|
color: var(--color-darkGray);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[data-modified=true] {
|
input[data-modified=true] {
|
||||||
background-color: var(--color-lightCyan);
|
background-color: var(--color-lightCyan);
|
||||||
border: 1px solid var(--color-darkGray);
|
border: 1px solid var(--color-darkGray);
|
||||||
}
|
}
|
||||||
input + select,
|
|
||||||
select + input,
|
|
||||||
input + input {
|
|
||||||
border-left: none;
|
|
||||||
}
|
|
||||||
textarea {
|
textarea {
|
||||||
height: inherit;
|
height: inherit;
|
||||||
padding: 7px;
|
padding: 7px;
|
||||||
|
@ -62,18 +59,13 @@ textarea {
|
||||||
min-height: 6rlh;
|
min-height: 6rlh;
|
||||||
}
|
}
|
||||||
select {
|
select {
|
||||||
border: 2px solid var(--color-darkBlue);
|
border: 1px solid #222;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: var(--button-padding);
|
padding: var(--button-padding);
|
||||||
background-color: var(--background-color);
|
|
||||||
color: var(--text-color);
|
|
||||||
min-height: 40px;
|
|
||||||
}
|
}
|
||||||
.dark select {
|
.dark select {
|
||||||
color: var(--text-color);
|
color: #efefef;
|
||||||
background-color: var(--color-darkGray);
|
background-color: #393F3F;
|
||||||
border-color: var(--color-dark);
|
|
||||||
border-width: 1px;
|
|
||||||
}
|
}
|
||||||
select[multiple="multiple"] {
|
select[multiple="multiple"] {
|
||||||
height: auto;
|
height: auto;
|
||||||
|
@ -83,16 +75,16 @@ select[multiple="multiple"] {
|
||||||
input[type="submit"] {
|
input[type="submit"] {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-bottom: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
border-radius: 2px;
|
||||||
|
font-weight: normal;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: var(--button-padding);
|
padding: var(--button-padding);
|
||||||
border: none;
|
border: none;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
background-color: white;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background-color: var(--color-darkBlue);
|
|
||||||
color: white;
|
|
||||||
font-weight: normal;
|
|
||||||
min-height: 40px;
|
|
||||||
}
|
}
|
||||||
.dark .button,
|
.dark .button,
|
||||||
.dark [type="button"] {
|
.dark [type="button"] {
|
||||||
|
@ -100,9 +92,6 @@ input[type="submit"] {
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
border: 1px solid #1b1f20;
|
border: 1px solid #1b1f20;
|
||||||
}
|
}
|
||||||
.button.primary {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.dark .button.primary:not([disabled]),
|
.dark .button.primary:not([disabled]),
|
||||||
.dark [type="button"].primary:not([disabled]) {
|
.dark [type="button"].primary:not([disabled]) {
|
||||||
background-color: var(--color-brightCyan);
|
background-color: var(--color-brightCyan);
|
||||||
|
@ -171,14 +160,6 @@ input + .help-text {
|
||||||
.formbox.with-switch {
|
.formbox.with-switch {
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
}
|
}
|
||||||
.with-switch {
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.formbox select,
|
|
||||||
.formbox textarea,
|
|
||||||
.formbox input {
|
|
||||||
margin-bottom: var(--text-margin);
|
|
||||||
}
|
|
||||||
fieldset.formbox {
|
fieldset.formbox {
|
||||||
border: none;
|
border: none;
|
||||||
border-top: 1px solid var(--color-lightGray);
|
border-top: 1px solid var(--color-lightGray);
|
||||||
|
@ -219,9 +200,8 @@ input[value]:invalid {
|
||||||
background-color: darkred;
|
background-color: darkred;
|
||||||
}
|
}
|
||||||
.dark input, .dark textarea {
|
.dark input, .dark textarea {
|
||||||
background-color: var(--color-darkerGray);
|
background-color: #232729;
|
||||||
border-color: var(--color-dark);
|
border-color: #1b1f20;
|
||||||
border-width: 1px;
|
|
||||||
color: #efefef;
|
color: #efefef;
|
||||||
}
|
}
|
||||||
details {
|
details {
|
||||||
|
@ -297,6 +277,9 @@ input.switch:empty ~ label {
|
||||||
text-indent: 6em;
|
text-indent: 6em;
|
||||||
margin: 0.2em 0;
|
margin: 0.2em 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
|
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
|
||||||
width: 80px;
|
width: 80px;
|
||||||
|
@ -584,7 +567,6 @@ input.blur {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border-start-end-radius: 0;
|
border-start-end-radius: 0;
|
||||||
border-end-end-radius: 0;
|
border-end-end-radius: 0;
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
}
|
||||||
.blur + .button,
|
.blur + .button,
|
||||||
.blur + [type="button"] {
|
.blur + [type="button"] {
|
||||||
|
|
|
@ -61,7 +61,7 @@ export default class Browser {
|
||||||
DomEvent.on(zoom_to, 'click', viewFeature)
|
DomEvent.on(zoom_to, 'click', viewFeature)
|
||||||
DomEvent.on(title, 'click', viewFeature)
|
DomEvent.on(title, 'click', viewFeature)
|
||||||
DomEvent.on(edit, 'click', feature.edit, feature)
|
DomEvent.on(edit, 'click', feature.edit, feature)
|
||||||
DomEvent.on(del, 'click', feature.del, feature)
|
DomEvent.on(del, 'click', feature.confirmDelete, feature)
|
||||||
// HOTFIX. Remove when this is released:
|
// HOTFIX. Remove when this is released:
|
||||||
// https://github.com/Leaflet/Leaflet/pull/9052
|
// https://github.com/Leaflet/Leaflet/pull/9052
|
||||||
DomEvent.disableClickPropagation(row)
|
DomEvent.disableClickPropagation(row)
|
||||||
|
|
|
@ -278,8 +278,7 @@ class Feature {
|
||||||
<i class="icon icon-24 icon-delete"></i>${translate('Delete')}
|
<i class="icon icon-24 icon-delete"></i>${translate('Delete')}
|
||||||
</button>`)
|
</button>`)
|
||||||
button.addEventListener('click', () => {
|
button.addEventListener('click', () => {
|
||||||
this.del()
|
this.confirmDelete().then(() => this._umap.editPanel.close())
|
||||||
this._umap.editPanel.close()
|
|
||||||
})
|
})
|
||||||
container.appendChild(button)
|
container.appendChild(button)
|
||||||
}
|
}
|
||||||
|
@ -364,6 +363,17 @@ class Feature {
|
||||||
return popup.loadContent()
|
return popup.loadContent()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async confirmDelete() {
|
||||||
|
const confirmed = await this._umap.dialog.confirm(
|
||||||
|
translate('Are you sure you want to delete the feature?')
|
||||||
|
)
|
||||||
|
if (confirmed) {
|
||||||
|
this.del()
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
del(sync) {
|
del(sync) {
|
||||||
this.isDirty = true
|
this.isDirty = true
|
||||||
this._umap._leafletMap.closePopup()
|
this._umap._leafletMap.closePopup()
|
||||||
|
@ -508,7 +518,7 @@ class Feature {
|
||||||
icon: 'icon-edit',
|
icon: 'icon-edit',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
action: () => this.del(),
|
action: () => this.confirmDelete(),
|
||||||
title: translate('Delete this feature'),
|
title: translate('Delete this feature'),
|
||||||
icon: 'icon-delete',
|
icon: 'icon-delete',
|
||||||
},
|
},
|
||||||
|
@ -663,7 +673,7 @@ class Feature {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: translate('Delete this feature'),
|
label: translate('Delete this feature'),
|
||||||
action: () => this.del(),
|
action: () => this.confirmDelete(),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: translate('Clone this feature'),
|
label: translate('Clone this feature'),
|
||||||
|
|
|
@ -1237,14 +1237,23 @@ export class DataLayer {
|
||||||
translate('Delete layer')
|
translate('Delete layer')
|
||||||
)
|
)
|
||||||
if (this.isReadOnly()) {
|
if (this.isReadOnly()) {
|
||||||
container.classList.add('readonly')
|
DomUtil.addClass(container, 'readonly')
|
||||||
} else {
|
} else {
|
||||||
edit.addEventListener('click', () => this.edit())
|
DomEvent.on(edit, 'click', this.edit, this)
|
||||||
table.addEventListener('click', () => this.tableEdit())
|
DomEvent.on(table, 'click', this.tableEdit, this)
|
||||||
remove.addEventListener('click', () => {
|
DomEvent.on(
|
||||||
|
remove,
|
||||||
|
'click',
|
||||||
|
function () {
|
||||||
if (!this.isVisible()) return
|
if (!this.isVisible()) return
|
||||||
|
this._umap.dialog
|
||||||
|
.confirm(translate('Are you sure you want to delete this layer?'))
|
||||||
|
.then(() => {
|
||||||
this.del()
|
this.del()
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
this
|
||||||
|
)
|
||||||
}
|
}
|
||||||
DomEvent.on(toggle, 'click', () => this.toggle())
|
DomEvent.on(toggle, 'click', () => this.toggle())
|
||||||
DomEvent.on(zoomTo, 'click', this.zoomTo, this)
|
DomEvent.on(zoomTo, 'click', this.zoomTo, this)
|
||||||
|
|
|
@ -132,9 +132,6 @@ export class MutatingForm extends Form {
|
||||||
const properties = Object.assign({}, defaults)
|
const properties = Object.assign({}, defaults)
|
||||||
if (properties.type === Array) {
|
if (properties.type === Array) {
|
||||||
properties.handler = 'CheckBoxes'
|
properties.handler = 'CheckBoxes'
|
||||||
} else if (properties.type === Boolean) {
|
|
||||||
if (properties.nullable) properties.handler = 'NullableChoices'
|
|
||||||
else properties.handler = 'Switch'
|
|
||||||
} else if (properties.choices) {
|
} else if (properties.choices) {
|
||||||
const text_length = properties.choices.reduce(
|
const text_length = properties.choices.reduce(
|
||||||
(acc, [_, label]) => acc + label.length,
|
(acc, [_, label]) => acc + label.length,
|
||||||
|
@ -148,6 +145,9 @@ export class MutatingForm extends Form {
|
||||||
properties.handler = 'Select'
|
properties.handler = 'Select'
|
||||||
properties.selectOptions = properties.choices
|
properties.selectOptions = properties.choices
|
||||||
}
|
}
|
||||||
|
} else if (properties.type === Boolean) {
|
||||||
|
if (properties.nullable) properties.handler = 'NullableChoices'
|
||||||
|
else properties.handler = 'Switch'
|
||||||
} else if (properties.type === 'Text') {
|
} else if (properties.type === 'Text') {
|
||||||
properties.handler = 'Textarea'
|
properties.handler = 'Textarea'
|
||||||
} else if (properties.type === Number) {
|
} else if (properties.type === Number) {
|
||||||
|
|
|
@ -152,9 +152,7 @@ Fields.Textarea = class extends BaseElement {
|
||||||
this.textarea.value = value
|
this.textarea.value = value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
clear() {
|
|
||||||
this.textarea.value = ''
|
|
||||||
}
|
|
||||||
value() {
|
value() {
|
||||||
return this.textarea.value
|
return this.textarea.value
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,7 +196,7 @@ export default class Help {
|
||||||
.split('+')
|
.split('+')
|
||||||
.map((el) => `<kbd>${el}</kbd>`)
|
.map((el) => `<kbd>${el}</kbd>`)
|
||||||
.join('+')
|
.join('+')
|
||||||
label += ` <span class="nobr">${shortcut}</span>`
|
label += ` ${shortcut}`
|
||||||
} else {
|
} else {
|
||||||
label += ` (${shortcut})`
|
label += ` (${shortcut})`
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,11 +11,13 @@ const TOP_BAR_TEMPLATE = `
|
||||||
<div class="logo"><a class="" href="/" title="${translate('Go to the homepage')}">uMap</a></div>
|
<div class="logo"><a class="" href="/" title="${translate('Go to the homepage')}">uMap</a></div>
|
||||||
<button class="map-name flat truncate" type="button" data-ref="name"></button>
|
<button class="map-name flat truncate" type="button" data-ref="name"></button>
|
||||||
<button class="share-status flat truncate" type="button" data-ref="share"></button>
|
<button class="share-status flat truncate" type="button" data-ref="share"></button>
|
||||||
<button class="edit-undo round flat" type="button" data-ref="undo" disabled>
|
<button class="edit-undo round" type="button" data-ref="undo" disabled>
|
||||||
<i class="icon icon-16 icon-undo"></i>
|
<i class="icon icon-16 icon-undo"></i>
|
||||||
|
<span>${translate('Undo')}</span>
|
||||||
</button>
|
</button>
|
||||||
<button class="edit-redo round flat" type="button" data-ref="redo" disabled>
|
<button class="edit-redo round" type="button" data-ref="redo" disabled>
|
||||||
<i class="icon icon-16 icon-redo"></i>
|
<i class="icon icon-16 icon-redo"></i>
|
||||||
|
<span>${translate('Redo')}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="umap-right-edit-toolbox" data-ref="right">
|
<div class="umap-right-edit-toolbox" data-ref="right">
|
||||||
|
|
|
@ -126,7 +126,6 @@ export function escapeHTML(s) {
|
||||||
'frameborder',
|
'frameborder',
|
||||||
'scrolling',
|
'scrolling',
|
||||||
'controls',
|
'controls',
|
||||||
'class',
|
|
||||||
],
|
],
|
||||||
ALLOWED_ATTR: ['href', 'src', 'width', 'height', 'style', 'dir', 'title', 'type'],
|
ALLOWED_ATTR: ['href', 'src', 'width', 'height', 'style', 'dir', 'title', 'type'],
|
||||||
// Added: `geo:` URL scheme as defined in RFC5870:
|
// Added: `geo:` URL scheme as defined in RFC5870:
|
||||||
|
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "እርግጠኛ ነዎት ይህንን ካርታ እና ሁሉንም የመረጃ ገጾች ማባዛት ይፈልጋሉ?",
|
"Are you sure you want to clone this map and all its datalayers?": "እርግጠኛ ነዎት ይህንን ካርታ እና ሁሉንም የመረጃ ገጾች ማባዛት ይፈልጋሉ?",
|
||||||
|
"Are you sure you want to delete the feature?": "እርግጠኛ ነዎት ይህንን ተግባሩን መሰረዝ ይፈልጋሉ?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "እርግጠኛ ነዎት ይህንን ካርታ መሰረዝ ይፈልጋሉ?",
|
"Are you sure you want to delete this map?": "እርግጠኛ ነዎት ይህንን ካርታ መሰረዝ ይፈልጋሉ?",
|
||||||
"Are you sure you want to delete this property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
|
"Are you sure you want to delete this property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
|
||||||
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
|
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("am_ET", locale)
|
L.registerLocale("am_ET", locale)
|
||||||
L.setLocale("am_ET")
|
L.setLocale("am_ET")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "እርግጠኛ ነዎት ይህንን ካርታ እና ሁሉንም የመረጃ ገጾች ማባዛት ይፈልጋሉ?",
|
"Are you sure you want to clone this map and all its datalayers?": "እርግጠኛ ነዎት ይህንን ካርታ እና ሁሉንም የመረጃ ገጾች ማባዛት ይፈልጋሉ?",
|
||||||
|
"Are you sure you want to delete the feature?": "እርግጠኛ ነዎት ይህንን ተግባሩን መሰረዝ ይፈልጋሉ?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "እርግጠኛ ነዎት ይህንን ካርታ መሰረዝ ይፈልጋሉ?",
|
"Are you sure you want to delete this map?": "እርግጠኛ ነዎት ይህንን ካርታ መሰረዝ ይፈልጋሉ?",
|
||||||
"Are you sure you want to delete this property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
|
"Are you sure you want to delete this property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
|
||||||
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
|
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "دائماً",
|
"always": "دائماً",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "هل تريد فعلاً حذف الخاصية ؟",
|
||||||
|
"Are you sure you want to delete this layer?": "هل تريد فعلاً حذف هذه الطبقة ؟",
|
||||||
"Are you sure you want to delete this map?": "هل تريد فعلاً حذف هذه الخريطة ؟",
|
"Are you sure you want to delete this map?": "هل تريد فعلاً حذف هذه الخريطة ؟",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ar", locale)
|
L.registerLocale("ar", locale)
|
||||||
L.setLocale("ar")
|
L.setLocale("ar")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "دائماً",
|
"always": "دائماً",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "هل تريد فعلاً حذف الخاصية ؟",
|
||||||
|
"Are you sure you want to delete this layer?": "هل تريد فعلاً حذف هذه الطبقة ؟",
|
||||||
"Are you sure you want to delete this map?": "هل تريد فعلاً حذف هذه الخريطة ؟",
|
"Are you sure you want to delete this map?": "هل تريد فعلاً حذف هذه الخريطة ؟",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ast", locale)
|
L.registerLocale("ast", locale)
|
||||||
L.setLocale("ast")
|
L.setLocale("ast")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "винаги",
|
"always": "винаги",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
|
"Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
|
||||||
|
"Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Сигурни ли сте, че искате да изтриете тази карта?",
|
"Are you sure you want to delete this map?": "Сигурни ли сте, че искате да изтриете тази карта?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("bg", locale)
|
L.registerLocale("bg", locale)
|
||||||
L.setLocale("bg")
|
L.setLocale("bg")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "винаги",
|
"always": "винаги",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
|
"Are you sure you want to clone this map and all its datalayers?": "Наистина ли искате да клонирате тази карта и всички негови слоеве данни ?",
|
||||||
|
"Are you sure you want to delete the feature?": "Сигурни ли сте, че искате да изтриете тази функция?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Сигурни ли сте, че искате да изтриете тази карта?",
|
"Are you sure you want to delete this map?": "Сигурни ли сте, че искате да изтриете тази карта?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "bepred",
|
"always": "bepred",
|
||||||
"Animated transitions": "Tremenoù buhezek",
|
"Animated transitions": "Tremenoù buhezek",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h doublañ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h doublañ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ha sur oc'h e faot deoc'h dilemel an elfenn-mañ?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ha sur oc'h e faot deoc'h dilemel ar gwiskad-mañ?",
|
||||||
"Are you sure you want to delete this map?": "Ha sur oc'h e faot deoc'h dilemel ar gartenn-mañ?",
|
"Are you sure you want to delete this map?": "Ha sur oc'h e faot deoc'h dilemel ar gartenn-mañ?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ha sur oc'h a faot deoc'h lemel ar perzh-mañ diwar an holl elfennoù?",
|
"Are you sure you want to delete this property on all the features?": "Ha sur oc'h a faot deoc'h lemel ar perzh-mañ diwar an holl elfennoù?",
|
||||||
"Are you sure you want to restore this version?": "Ha sur oc'h e faot deoc'h adsevel ar stumm-mañ?",
|
"Are you sure you want to restore this version?": "Ha sur oc'h e faot deoc'h adsevel ar stumm-mañ?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("br", locale)
|
L.registerLocale("br", locale)
|
||||||
L.setLocale("br")
|
L.setLocale("br")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "bepred",
|
"always": "bepred",
|
||||||
"Animated transitions": "Tremenoù buhezek",
|
"Animated transitions": "Tremenoù buhezek",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h doublañ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ha sur oc'h e faot deoc'h doublañ ar gartenn-mañ hag hec'h holl wiskadoù roadennoù?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ha sur oc'h e faot deoc'h dilemel an elfenn-mañ?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ha sur oc'h e faot deoc'h dilemel ar gwiskad-mañ?",
|
||||||
"Are you sure you want to delete this map?": "Ha sur oc'h e faot deoc'h dilemel ar gartenn-mañ?",
|
"Are you sure you want to delete this map?": "Ha sur oc'h e faot deoc'h dilemel ar gartenn-mañ?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ha sur oc'h a faot deoc'h lemel ar perzh-mañ diwar an holl elfennoù?",
|
"Are you sure you want to delete this property on all the features?": "Ha sur oc'h a faot deoc'h lemel ar perzh-mañ diwar an holl elfennoù?",
|
||||||
"Are you sure you want to restore this version?": "Ha sur oc'h e faot deoc'h adsevel ar stumm-mañ?",
|
"Are you sure you want to restore this version?": "Ha sur oc'h e faot deoc'h adsevel ar stumm-mañ?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transicions animades",
|
"Animated transitions": "Transicions animades",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
||||||
|
"Are you sure you want to delete the feature?": "Segur que voleu suprimir la característica?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Esteu segur de voler suprimir aquest mapa?",
|
"Are you sure you want to delete this map?": "Esteu segur de voler suprimir aquest mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ca", locale)
|
L.registerLocale("ca", locale)
|
||||||
L.setLocale("ca")
|
L.setLocale("ca")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transicions animades",
|
"Animated transitions": "Transicions animades",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
||||||
|
"Are you sure you want to delete the feature?": "Segur que voleu suprimir la característica?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Esteu segur de voler suprimir aquest mapa?",
|
"Are you sure you want to delete this map?": "Esteu segur de voler suprimir aquest mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "vždy",
|
"always": "vždy",
|
||||||
"Animated transitions": "Animované přechody",
|
"Animated transitions": "Animované přechody",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
|
"Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
|
||||||
|
"Are you sure you want to delete the feature?": "Určitě chcete vymazat tento objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Jste si jisti, že chcete smazat tuto vrstvu?",
|
||||||
"Are you sure you want to delete this map?": "Jste si jisti, že chcete vymazat tuto celou mapu?",
|
"Are you sure you want to delete this map?": "Jste si jisti, že chcete vymazat tuto celou mapu?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Určitě chcete smazat tuto vlastnost na všech objektech?",
|
"Are you sure you want to delete this property on all the features?": "Určitě chcete smazat tuto vlastnost na všech objektech?",
|
||||||
"Are you sure you want to restore this version?": "Opravdu si přejete obnovit tuto verzi?",
|
"Are you sure you want to restore this version?": "Opravdu si přejete obnovit tuto verzi?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("cs_CZ", locale)
|
L.registerLocale("cs_CZ", locale)
|
||||||
L.setLocale("cs_CZ")
|
L.setLocale("cs_CZ")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "vždy",
|
"always": "vždy",
|
||||||
"Animated transitions": "Animované přechody",
|
"Animated transitions": "Animované přechody",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
|
"Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
|
||||||
|
"Are you sure you want to delete the feature?": "Určitě chcete vymazat tento objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Jste si jisti, že chcete smazat tuto vrstvu?",
|
||||||
"Are you sure you want to delete this map?": "Jste si jisti, že chcete vymazat tuto celou mapu?",
|
"Are you sure you want to delete this map?": "Jste si jisti, že chcete vymazat tuto celou mapu?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Určitě chcete smazat tuto vlastnost na všech objektech?",
|
"Are you sure you want to delete this property on all the features?": "Určitě chcete smazat tuto vlastnost na všech objektech?",
|
||||||
"Are you sure you want to restore this version?": "Opravdu si přejete obnovit tuto verzi?",
|
"Are you sure you want to restore this version?": "Opravdu si přejete obnovit tuto verzi?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "altid",
|
"always": "altid",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
||||||
|
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette lag?",
|
||||||
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kort?",
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kort?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
||||||
"Are you sure you want to restore this version?": "Er du sikker på at du vil genskabe denne version?",
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil genskabe denne version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("da", locale)
|
L.registerLocale("da", locale)
|
||||||
L.setLocale("da")
|
L.setLocale("da")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "altid",
|
"always": "altid",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
||||||
|
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette lag?",
|
||||||
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kort?",
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kort?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
||||||
"Are you sure you want to restore this version?": "Er du sikker på at du vil genskabe denne version?",
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil genskabe denne version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "immer",
|
"always": "immer",
|
||||||
"Animated transitions": "Animierte Übergänge",
|
"Animated transitions": "Animierte Übergänge",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
||||||
|
"Are you sure you want to delete the feature?": "Möchtest du dieses Element wirklich löschen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Bist du sicher, dass du diese Ebene löschen willst?",
|
||||||
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
||||||
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("de", locale)
|
L.registerLocale("de", locale)
|
||||||
L.setLocale("de")
|
L.setLocale("de")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "immer",
|
"always": "immer",
|
||||||
"Animated transitions": "Animierte Übergänge",
|
"Animated transitions": "Animierte Übergänge",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
||||||
|
"Are you sure you want to delete the feature?": "Möchtest du dieses Element wirklich löschen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Bist du sicher, dass du diese Ebene löschen willst?",
|
||||||
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
||||||
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "πάντα",
|
"always": "πάντα",
|
||||||
"Animated transitions": "Κινούμενες μεταβάσεις",
|
"Animated transitions": "Κινούμενες μεταβάσεις",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
|
"Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
|
||||||
|
"Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγραφεί αυτό το στοιχείο;",
|
||||||
|
"Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγραφεί αυτό το στρώμα;",
|
||||||
"Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
|
"Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
|
||||||
"Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
|
"Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
|
||||||
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
|
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("el", locale)
|
L.registerLocale("el", locale)
|
||||||
L.setLocale("el")
|
L.setLocale("el")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "πάντα",
|
"always": "πάντα",
|
||||||
"Animated transitions": "Κινούμενες μεταβάσεις",
|
"Animated transitions": "Κινούμενες μεταβάσεις",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
|
"Are you sure you want to clone this map and all its datalayers?": "Θέλετε σίγουρα να κλωνοποιηθεί αυτός ο χάρτης και όλα τα επίπεδα δεδομένων του;",
|
||||||
|
"Are you sure you want to delete the feature?": "Θέλετε σίγουρα να διαγραφεί αυτό το στοιχείο;",
|
||||||
|
"Are you sure you want to delete this layer?": "Θέλετε σίγουρα να διαγραφεί αυτό το στρώμα;",
|
||||||
"Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
|
"Are you sure you want to delete this map?": "Θέλετε σίγουρα να διαγραφεί αυτός ο χάρτης;",
|
||||||
"Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
|
"Are you sure you want to delete this property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
|
||||||
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
|
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("en", locale)
|
L.registerLocale("en", locale)
|
||||||
L.setLocale("en")
|
L.setLocale("en")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its layers and features?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its layers and features?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete this feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "siempre",
|
"always": "siempre",
|
||||||
"Animated transitions": "Transiciones animadas",
|
"Animated transitions": "Transiciones animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
|
"Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
|
||||||
|
"Are you sure you want to delete the feature?": "¿Estás seguro de que quieres eliminar el elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "¿Estás seguro de que quieres eliminar esta capa?",
|
||||||
"Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
|
"Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
|
"Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
|
||||||
"Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
|
"Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("es", locale)
|
L.registerLocale("es", locale)
|
||||||
L.setLocale("es")
|
L.setLocale("es")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "siempre",
|
"always": "siempre",
|
||||||
"Animated transitions": "Transiciones animadas",
|
"Animated transitions": "Transiciones animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
|
"Are you sure you want to clone this map and all its datalayers?": "¿Estás seguro de que quieres clonar este mapa y todas sus capas de datos?",
|
||||||
|
"Are you sure you want to delete the feature?": "¿Estás seguro de que quieres eliminar el elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "¿Estás seguro de que quieres eliminar esta capa?",
|
||||||
"Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
|
"Are you sure you want to delete this map?": "¿Estás seguro de que quieres eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
|
"Are you sure you want to delete this property on all the features?": "¿Estás seguro de que quieres eliminar esta propiedad en todos los elementos?",
|
||||||
"Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
|
"Are you sure you want to restore this version?": "¿Estás seguro de que quieres restaurar esta versión?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "alati",
|
"always": "alati",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
|
"Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
|
||||||
|
"Are you sure you want to delete the feature?": "Oled sa kindel, et soovid seda elementi kustutada?",
|
||||||
|
"Are you sure you want to delete this layer?": "Oled sa kindel, et soovid seda kihti kustutada?",
|
||||||
"Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
|
"Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
|
"Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
|
||||||
"Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
|
"Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("et", locale)
|
L.registerLocale("et", locale)
|
||||||
L.setLocale("et")
|
L.setLocale("et")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "alati",
|
"always": "alati",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
|
"Are you sure you want to clone this map and all its datalayers?": "Oled sa kindel, et soovid kopeerida seda kaarti ja kõiki selle andmekihte?",
|
||||||
|
"Are you sure you want to delete the feature?": "Oled sa kindel, et soovid seda elementi kustutada?",
|
||||||
|
"Are you sure you want to delete this layer?": "Oled sa kindel, et soovid seda kihti kustutada?",
|
||||||
"Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
|
"Are you sure you want to delete this map?": "Oled sa kindel, et soovid seda kaarti kustutada?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
|
"Are you sure you want to delete this property on all the features?": "Oled sa kindel, et soovid kõigi elementide juurest selle omaduse kustutada?",
|
||||||
"Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
|
"Are you sure you want to restore this version?": "Oled sa kindel, et soovid taastada selle versiooni?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "beti",
|
"always": "beti",
|
||||||
"Animated transitions": "Trantsizio animatuak",
|
"Animated transitions": "Trantsizio animatuak",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ziur entitatea ezabatu nahi duzula?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
|
||||||
"Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
|
"Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
|
"Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
|
||||||
"Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
|
"Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("eu", locale)
|
L.registerLocale("eu", locale)
|
||||||
L.setLocale("eu")
|
L.setLocale("eu")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "beti",
|
"always": "beti",
|
||||||
"Animated transitions": "Trantsizio animatuak",
|
"Animated transitions": "Trantsizio animatuak",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ziur entitatea ezabatu nahi duzula?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
|
||||||
"Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
|
"Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
|
"Are you sure you want to delete this property on all the features?": "Ziur propietate hau entitate guztietan ezabatu nahi duzula?",
|
||||||
"Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
|
"Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "همیشه",
|
"always": "همیشه",
|
||||||
"Animated transitions": "گذارهای پویانما",
|
"Animated transitions": "گذارهای پویانما",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
||||||
|
"Are you sure you want to delete the feature?": "آیا این عنصر را حذف میکنید؟",
|
||||||
|
"Are you sure you want to delete this layer?": "آیا این لایه را حذف میکنید؟",
|
||||||
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
||||||
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
||||||
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("fa_IR", locale)
|
L.registerLocale("fa_IR", locale)
|
||||||
L.setLocale("fa_IR")
|
L.setLocale("fa_IR")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "همیشه",
|
"always": "همیشه",
|
||||||
"Animated transitions": "گذارهای پویانما",
|
"Animated transitions": "گذارهای پویانما",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
"Are you sure you want to clone this map and all its datalayers?": "آیا از این نقشه و همهٔ لایههای دادهٔ آن همانند میسازید؟",
|
||||||
|
"Are you sure you want to delete the feature?": "آیا این عنصر را حذف میکنید؟",
|
||||||
|
"Are you sure you want to delete this layer?": "آیا این لایه را حذف میکنید؟",
|
||||||
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
"Are you sure you want to delete this map?": "آیا این نقشه را حذف میکنید؟",
|
||||||
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
"Are you sure you want to delete this property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف میکنید؟",
|
||||||
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی میکنید؟",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "aina",
|
"always": "aina",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
||||||
|
"Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
||||||
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
||||||
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("fi", locale)
|
L.registerLocale("fi", locale)
|
||||||
L.setLocale("fi")
|
L.setLocale("fi")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "aina",
|
"always": "aina",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
"Are you sure you want to clone this map and all its datalayers?": "Oletko varma että haluat kloonata tämän kartan ja kaikki sen data-kerrokset?",
|
||||||
|
"Are you sure you want to delete the feature?": "Oletko varma että haluat poistaa piirteen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
"Are you sure you want to delete this map?": "Oletko ihan täysin varma, että haluat poistaa tämän kartan? Poistettua karttaa ei voi palauttaa.",
|
||||||
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
"Are you sure you want to delete this property on all the features?": "Oletko varma että haluat poistaa tämän ominaisuuden kaikista piirteistä?",
|
||||||
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
"Are you sure you want to restore this version?": "Oletko varma että haluat palauttaa tämän version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "toujours",
|
"always": "toujours",
|
||||||
"Animated transitions": "Transitions animées",
|
"Animated transitions": "Transitions animées",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
||||||
|
"Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
|
||||||
|
"Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
|
||||||
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
||||||
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
||||||
|
@ -537,8 +539,10 @@ const locale = {
|
||||||
"Links": "Liens",
|
"Links": "Liens",
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Catégories",
|
"Tags": "Thèmes",
|
||||||
"Geocode": "Géocoder"
|
"Geocode": "Géocoder",
|
||||||
|
"Undo": "Annuler",
|
||||||
|
"Redo": "Rejouer"
|
||||||
}
|
}
|
||||||
L.registerLocale("fr", locale)
|
L.registerLocale("fr", locale)
|
||||||
L.setLocale("fr")
|
L.setLocale("fr")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "toujours",
|
"always": "toujours",
|
||||||
"Animated transitions": "Transitions animées",
|
"Animated transitions": "Transitions animées",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
"Are you sure you want to clone this map and all its datalayers?": "Êtes-vous sûr de vouloir cloner cette carte et ses calques de données?",
|
||||||
|
"Are you sure you want to delete the feature?": "Êtes-vous sûr de vouloir supprimer cet élément?",
|
||||||
|
"Are you sure you want to delete this layer?": "Voulez-vous vraiment supprimer ce calque ?",
|
||||||
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
"Are you sure you want to delete this map?": "Êtes-vous sûr de vouloir supprimer cette carte?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
"Are you sure you want to delete this property on all the features?": "Supprimer la propriété sur tous les éléments ?",
|
||||||
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
"Are you sure you want to restore this version?": "Êtes-vous sûr de vouloir restaurer cette version ?",
|
||||||
|
@ -537,6 +539,8 @@
|
||||||
"Links": "Liens",
|
"Links": "Liens",
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Catégories",
|
"Tags": "Thèmes",
|
||||||
"Geocode": "Géocoder"
|
"Geocode": "Géocoder",
|
||||||
|
"Undo": "Annuler",
|
||||||
|
"Redo": "Rejouer"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transicións animadas",
|
"Animated transitions": "Transicións animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
||||||
|
"Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
|
||||||
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("gl", locale)
|
L.registerLocale("gl", locale)
|
||||||
L.setLocale("gl")
|
L.setLocale("gl")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transicións animadas",
|
"Animated transitions": "Transicións animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
"Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
|
||||||
|
"Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
|
||||||
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
"Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "תמיד",
|
"always": "תמיד",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
||||||
|
"Are you sure you want to delete the feature?": "למחוק את התכונה הזו?",
|
||||||
|
"Are you sure you want to delete this layer?": "למחוק את השכבה הזו?",
|
||||||
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
||||||
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
||||||
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("he", locale)
|
L.registerLocale("he", locale)
|
||||||
L.setLocale("he")
|
L.setLocale("he")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "תמיד",
|
"always": "תמיד",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
"Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
|
||||||
|
"Are you sure you want to delete the feature?": "למחוק את התכונה הזו?",
|
||||||
|
"Are you sure you want to delete this layer?": "למחוק את השכבה הזו?",
|
||||||
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
"Are you sure you want to delete this map?": "למחוק את המפה הזו?",
|
||||||
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
"Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
|
||||||
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Jeste li sigurni da želite obrisati ovaj element?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("hr", locale)
|
L.registerLocale("hr", locale)
|
||||||
L.setLocale("hr")
|
L.setLocale("hr")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Jeste li sigurni da želite obrisati ovaj element?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "mindig",
|
"always": "mindig",
|
||||||
"Animated transitions": "Animált áttűnések",
|
"Animated transitions": "Animált áttűnések",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Biztosan klónozza a térképet és az összes adatrétegét?",
|
"Are you sure you want to clone this map and all its datalayers?": "Biztosan klónozza a térképet és az összes adatrétegét?",
|
||||||
|
"Are you sure you want to delete the feature?": "Biztosan törölni szeretné ezt az objektumot?",
|
||||||
|
"Are you sure you want to delete this layer?": "Biztosan törölni szeretné ezt a réteget?",
|
||||||
"Are you sure you want to delete this map?": "Biztosan törölni szeretné ezt a térképet?",
|
"Are you sure you want to delete this map?": "Biztosan törölni szeretné ezt a térképet?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Biztosan törölni szeretné ezt a tulajdonságot az összes objektumról?",
|
"Are you sure you want to delete this property on all the features?": "Biztosan törölni szeretné ezt a tulajdonságot az összes objektumról?",
|
||||||
"Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
|
"Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("hu", locale)
|
L.registerLocale("hu", locale)
|
||||||
L.setLocale("hu")
|
L.setLocale("hu")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "mindig",
|
"always": "mindig",
|
||||||
"Animated transitions": "Animált áttűnések",
|
"Animated transitions": "Animált áttűnések",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Biztosan klónozza a térképet és az összes adatrétegét?",
|
"Are you sure you want to clone this map and all its datalayers?": "Biztosan klónozza a térképet és az összes adatrétegét?",
|
||||||
|
"Are you sure you want to delete the feature?": "Biztosan törölni szeretné ezt az objektumot?",
|
||||||
|
"Are you sure you want to delete this layer?": "Biztosan törölni szeretné ezt a réteget?",
|
||||||
"Are you sure you want to delete this map?": "Biztosan törölni szeretné ezt a térképet?",
|
"Are you sure you want to delete this map?": "Biztosan törölni szeretné ezt a térképet?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Biztosan törölni szeretné ezt a tulajdonságot az összes objektumról?",
|
"Are you sure you want to delete this property on all the features?": "Biztosan törölni szeretné ezt a tulajdonságot az összes objektumról?",
|
||||||
"Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
|
"Are you sure you want to restore this version?": "Biztosan ezt a változatot akarja helyreállítani?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("id", locale)
|
L.registerLocale("id", locale)
|
||||||
L.setLocale("id")
|
L.setLocale("id")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "alltaf",
|
"always": "alltaf",
|
||||||
"Animated transitions": "Millifærslur með hreyfingu",
|
"Animated transitions": "Millifærslur með hreyfingu",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og allar gagnaþekjur þess?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og allar gagnaþekjur þess?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ertu viss um að þú viljir eyða fitjunni?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ertu viss um að þú viljir eyða þessari þekju?",
|
||||||
"Are you sure you want to delete this map?": "Ertu viss um að þú viljir eyða þessu korti?",
|
"Are you sure you want to delete this map?": "Ertu viss um að þú viljir eyða þessu korti?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
|
"Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
|
||||||
"Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
|
"Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("is", locale)
|
L.registerLocale("is", locale)
|
||||||
L.setLocale("is")
|
L.setLocale("is")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "alltaf",
|
"always": "alltaf",
|
||||||
"Animated transitions": "Millifærslur með hreyfingu",
|
"Animated transitions": "Millifærslur með hreyfingu",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og allar gagnaþekjur þess?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ertu viss um að þú viljir klóna þetta kort og allar gagnaþekjur þess?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ertu viss um að þú viljir eyða fitjunni?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ertu viss um að þú viljir eyða þessari þekju?",
|
||||||
"Are you sure you want to delete this map?": "Ertu viss um að þú viljir eyða þessu korti?",
|
"Are you sure you want to delete this map?": "Ertu viss um að þú viljir eyða þessu korti?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
|
"Are you sure you want to delete this property on all the features?": "Ertu viss um að þú viljir eyða þessu eigindi á öllum fitjum?",
|
||||||
"Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
|
"Are you sure you want to restore this version?": "Ertu viss um að vilja endurheimta þessa útgáfu?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transizioni animate",
|
"Animated transitions": "Transizioni animate",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
||||||
|
"Are you sure you want to delete the feature?": "Si è sicuri di voler cancellare questo oggetto?",
|
||||||
|
"Are you sure you want to delete this layer?": "Si è certi di volere eliminare questo livello?",
|
||||||
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
||||||
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("it", locale)
|
L.registerLocale("it", locale)
|
||||||
L.setLocale("it")
|
L.setLocale("it")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transizioni animate",
|
"Animated transitions": "Transizioni animate",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
"Are you sure you want to clone this map and all its datalayers?": "Confermi di duplicare questa mappa e tutti i suoi livelli?",
|
||||||
|
"Are you sure you want to delete the feature?": "Si è sicuri di voler cancellare questo oggetto?",
|
||||||
|
"Are you sure you want to delete this layer?": "Si è certi di volere eliminare questo livello?",
|
||||||
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
"Are you sure you want to delete this map?": "Si è certi di voler eliminare questa mappa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
"Are you sure you want to delete this property on all the features?": "Si è sicuri di voler cancellare questa proprietà per tutti gli oggetti?",
|
||||||
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
"Are you sure you want to restore this version?": "Si vuole veramente ripristinare questa versione?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "常時",
|
"always": "常時",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "すべてのデータレイヤを含むマップ全体を複製してよいですか?",
|
"Are you sure you want to clone this map and all its datalayers?": "すべてのデータレイヤを含むマップ全体を複製してよいですか?",
|
||||||
|
"Are you sure you want to delete the feature?": "地物を削除してよいですか?",
|
||||||
|
"Are you sure you want to delete this layer?": "本当にこのレイヤを削除してよいですか?",
|
||||||
"Are you sure you want to delete this map?": "本当にこのマップを削除してよいですか?",
|
"Are you sure you want to delete this map?": "本当にこのマップを削除してよいですか?",
|
||||||
"Are you sure you want to delete this property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
|
"Are you sure you want to delete this property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
|
||||||
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
|
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ja", locale)
|
L.registerLocale("ja", locale)
|
||||||
L.setLocale("ja")
|
L.setLocale("ja")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "常時",
|
"always": "常時",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "すべてのデータレイヤを含むマップ全体を複製してよいですか?",
|
"Are you sure you want to clone this map and all its datalayers?": "すべてのデータレイヤを含むマップ全体を複製してよいですか?",
|
||||||
|
"Are you sure you want to delete the feature?": "地物を削除してよいですか?",
|
||||||
|
"Are you sure you want to delete this layer?": "本当にこのレイヤを削除してよいですか?",
|
||||||
"Are you sure you want to delete this map?": "本当にこのマップを削除してよいですか?",
|
"Are you sure you want to delete this map?": "本当にこのマップを削除してよいですか?",
|
||||||
"Are you sure you want to delete this property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
|
"Are you sure you want to delete this property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
|
||||||
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
|
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "항상",
|
"always": "항상",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "정말 이 지도와 모든 데이터 레이어를 복제하시겠습니까?",
|
"Are you sure you want to clone this map and all its datalayers?": "정말 이 지도와 모든 데이터 레이어를 복제하시겠습니까?",
|
||||||
|
"Are you sure you want to delete the feature?": "정말 이 지물을 삭제하시겠습니까?",
|
||||||
|
"Are you sure you want to delete this layer?": "정말 이 레이어를 삭제하시겠습니까?",
|
||||||
"Are you sure you want to delete this map?": "정말 이 지도를 삭제하시겠습니까?",
|
"Are you sure you want to delete this map?": "정말 이 지도를 삭제하시겠습니까?",
|
||||||
"Are you sure you want to delete this property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
|
"Are you sure you want to delete this property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
|
||||||
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
|
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ko", locale)
|
L.registerLocale("ko", locale)
|
||||||
L.setLocale("ko")
|
L.setLocale("ko")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "항상",
|
"always": "항상",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "정말 이 지도와 모든 데이터 레이어를 복제하시겠습니까?",
|
"Are you sure you want to clone this map and all its datalayers?": "정말 이 지도와 모든 데이터 레이어를 복제하시겠습니까?",
|
||||||
|
"Are you sure you want to delete the feature?": "정말 이 지물을 삭제하시겠습니까?",
|
||||||
|
"Are you sure you want to delete this layer?": "정말 이 레이어를 삭제하시겠습니까?",
|
||||||
"Are you sure you want to delete this map?": "정말 이 지도를 삭제하시겠습니까?",
|
"Are you sure you want to delete this map?": "정말 이 지도를 삭제하시겠습니까?",
|
||||||
"Are you sure you want to delete this property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
|
"Are you sure you want to delete this property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
|
||||||
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
|
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ar tikrai norite ištrinti šį objektą?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
"Are you sure you want to delete this map?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("lt", locale)
|
L.registerLocale("lt", locale)
|
||||||
L.setLocale("lt")
|
L.setLocale("lt")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ar tikrai norite nukopijuoti šį žemėlapį ir visus jo duomenų sluoksnius?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ar tikrai norite ištrinti šį objektą?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
"Are you sure you want to delete this map?": "Ar Jūs tikrai norite ištrinti šį žemėlapį?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
"Are you sure you want to delete this property on all the features?": "Ar tikrai norite pašalinti šią savybę visiem objektams?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sentiasa",
|
"always": "sentiasa",
|
||||||
"Animated transitions": "Transisi beranimasi",
|
"Animated transitions": "Transisi beranimasi",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
||||||
|
"Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
|
||||||
|
"Are you sure you want to delete this layer?": "Adakah anda ingin memadamkan lapisan ini?",
|
||||||
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
||||||
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ms", locale)
|
L.registerLocale("ms", locale)
|
||||||
L.setLocale("ms")
|
L.setLocale("ms")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sentiasa",
|
"always": "sentiasa",
|
||||||
"Animated transitions": "Transisi beranimasi",
|
"Animated transitions": "Transisi beranimasi",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
"Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
|
||||||
|
"Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
|
||||||
|
"Are you sure you want to delete this layer?": "Adakah anda ingin memadamkan lapisan ini?",
|
||||||
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
"Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
"Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
|
||||||
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
"Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "altijd",
|
"always": "altijd",
|
||||||
"Animated transitions": "Geavanceerde overgangen",
|
"Animated transitions": "Geavanceerde overgangen",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
||||||
|
"Are you sure you want to delete the feature?": "Weet je zeker dat je het object wil verwijderen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Weet je zeker dat je deze laag wil verwijderen?",
|
||||||
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
||||||
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("nl", locale)
|
L.registerLocale("nl", locale)
|
||||||
L.setLocale("nl")
|
L.setLocale("nl")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "altijd",
|
"always": "altijd",
|
||||||
"Animated transitions": "Geavanceerde overgangen",
|
"Animated transitions": "Geavanceerde overgangen",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
"Are you sure you want to clone this map and all its datalayers?": "Weet je zeker dat je deze kaart en alle gegevenslagen wil klonen?",
|
||||||
|
"Are you sure you want to delete the feature?": "Weet je zeker dat je het object wil verwijderen?",
|
||||||
|
"Are you sure you want to delete this layer?": "Weet je zeker dat je deze laag wil verwijderen?",
|
||||||
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
"Are you sure you want to delete this map?": "Weet je zeker dat je deze kaart wilt verwijderen?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
"Are you sure you want to delete this property on all the features?": "Ben je zeker dat je deze eigenschap bij alle objecten wil verwijderen?",
|
||||||
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
"Are you sure you want to restore this version?": "Weet je zeker dat je deze versie wilt terugzetten?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "alltid",
|
"always": "alltid",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
||||||
|
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objektet?",
|
||||||
|
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette laget?",
|
||||||
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
||||||
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("no", locale)
|
L.registerLocale("no", locale)
|
||||||
L.setLocale("no")
|
L.setLocale("no")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "alltid",
|
"always": "alltid",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på at du vil klone dette kartet og alle tilhørende datalag?",
|
||||||
|
"Are you sure you want to delete the feature?": "Er du sikker på at du vil slette dette objektet?",
|
||||||
|
"Are you sure you want to delete this layer?": "Er du sikker på at du vil slette dette laget?",
|
||||||
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
"Are you sure you want to delete this map?": "Er du sikker på at du vil slette dette kartet?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
"Are you sure you want to delete this property on all the features?": "Er du sikker på at du vil slette denne egenskapen fra alle objektene?",
|
||||||
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
"Are you sure you want to restore this version?": "Er du sikker på at du vil gjenopprette denne versjonen?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "zawsze",
|
"always": "zawsze",
|
||||||
"Animated transitions": "Animowane przejścia",
|
"Animated transitions": "Animowane przejścia",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
||||||
|
"Are you sure you want to delete the feature?": "Na pewno chcesz usunąć ten obiekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Na pewno chcesz usunąć tę warstwę?",
|
||||||
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
||||||
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("pl", locale)
|
L.registerLocale("pl", locale)
|
||||||
L.setLocale("pl")
|
L.setLocale("pl")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "zawsze",
|
"always": "zawsze",
|
||||||
"Animated transitions": "Animowane przejścia",
|
"Animated transitions": "Animowane przejścia",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
"Are you sure you want to clone this map and all its datalayers?": "Na pewno chcesz sklonować tę mapę razem z jej warstwami?",
|
||||||
|
"Are you sure you want to delete the feature?": "Na pewno chcesz usunąć ten obiekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Na pewno chcesz usunąć tę warstwę?",
|
||||||
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
"Are you sure you want to delete this map?": "Na pewno chcesz usunąć tą mapę?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
"Are you sure you want to delete this property on all the features?": "Na pewno chcesz usunąć tę właściwość we wszystkich obiektach?",
|
||||||
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
"Are you sure you want to restore this version?": "Na pewno chcesz przywrócić tę wersję?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "always",
|
"always": "always",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transições animadas",
|
"Animated transitions": "Transições animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("pt", locale)
|
L.registerLocale("pt", locale)
|
||||||
L.setLocale("pt")
|
L.setLocale("pt")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transições animadas",
|
"Animated transitions": "Transições animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("pt_BR", locale)
|
L.registerLocale("pt_BR", locale)
|
||||||
L.setLocale("pt_BR")
|
L.setLocale("pt_BR")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transições animadas",
|
"Animated transitions": "Transições animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("pt_PT", locale)
|
L.registerLocale("pt_PT", locale)
|
||||||
L.setLocale("pt_PT")
|
L.setLocale("pt_PT")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "sempre",
|
"always": "sempre",
|
||||||
"Animated transitions": "Transições animadas",
|
"Animated transitions": "Transições animadas",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
"Are you sure you want to clone this map and all its datalayers?": "Tem a certeza que quer clonar este mapa, incluindo todas as camadas de dados?",
|
||||||
|
"Are you sure you want to delete the feature?": "Tem a certeza que quer eliminar o elemento?",
|
||||||
|
"Are you sure you want to delete this layer?": "Tem a certeza que quer eliminar esta camada?",
|
||||||
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
"Are you sure you want to delete this map?": "Tem a certeza que quer eliminar este mapa?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
"Are you sure you want to delete this property on all the features?": "Tem a certeza que quer eliminar esta propriedade em todos os elementos?",
|
||||||
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
"Are you sure you want to restore this version?": "Tem a certeza que quer restaurar esta versão?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "mereu",
|
"always": "mereu",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ro", locale)
|
L.registerLocale("ro", locale)
|
||||||
L.setLocale("ro")
|
L.setLocale("ro")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "mereu",
|
"always": "mereu",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
"Are you sure you want to clone this map and all its datalayers?": "Are you sure you want to clone this map and all its datalayers?",
|
||||||
|
"Are you sure you want to delete the feature?": "Are you sure you want to delete the feature?",
|
||||||
|
"Are you sure you want to delete this layer?": "Are you sure you want to delete this layer?",
|
||||||
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
"Are you sure you want to delete this map?": "Are you sure you want to delete this map?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
"Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
|
||||||
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
"Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "всегда",
|
"always": "всегда",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Вы уверены, что хотите скопировать эту карту и все её слои данных?",
|
"Are you sure you want to clone this map and all its datalayers?": "Вы уверены, что хотите скопировать эту карту и все её слои данных?",
|
||||||
|
"Are you sure you want to delete the feature?": "Вы уверены, что хотите удалить объект?",
|
||||||
|
"Are you sure you want to delete this layer?": "Вы уверены что хотите удалить этот слой?",
|
||||||
"Are you sure you want to delete this map?": "Вы уверены, что хотите удалить карту?",
|
"Are you sure you want to delete this map?": "Вы уверены, что хотите удалить карту?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
|
"Are you sure you want to delete this property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
|
||||||
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
|
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("ru", locale)
|
L.registerLocale("ru", locale)
|
||||||
L.setLocale("ru")
|
L.setLocale("ru")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "всегда",
|
"always": "всегда",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Вы уверены, что хотите скопировать эту карту и все её слои данных?",
|
"Are you sure you want to clone this map and all its datalayers?": "Вы уверены, что хотите скопировать эту карту и все её слои данных?",
|
||||||
|
"Are you sure you want to delete the feature?": "Вы уверены, что хотите удалить объект?",
|
||||||
|
"Are you sure you want to delete this layer?": "Вы уверены что хотите удалить этот слой?",
|
||||||
"Are you sure you want to delete this map?": "Вы уверены, что хотите удалить карту?",
|
"Are you sure you want to delete this map?": "Вы уверены, что хотите удалить карту?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
|
"Are you sure you want to delete this property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
|
||||||
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
|
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "vždy",
|
"always": "vždy",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Určite chcete vytvoriť kópiu celej tejto mapy a všetkých jej vrstiev?",
|
"Are you sure you want to clone this map and all its datalayers?": "Určite chcete vytvoriť kópiu celej tejto mapy a všetkých jej vrstiev?",
|
||||||
|
"Are you sure you want to delete the feature?": "Určite chcete vymazať tento objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Určite chcete vymazať túto vrstvu?",
|
||||||
"Are you sure you want to delete this map?": "Ste si istí, že chcete vymazať túto mapu?",
|
"Are you sure you want to delete this map?": "Ste si istí, že chcete vymazať túto mapu?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ste si istí že chcete vymazať túto vlastnosť na všetkých objektoch?",
|
"Are you sure you want to delete this property on all the features?": "Ste si istí že chcete vymazať túto vlastnosť na všetkých objektoch?",
|
||||||
"Are you sure you want to restore this version?": "Určite chcete obnoviť túto verziu?",
|
"Are you sure you want to restore this version?": "Určite chcete obnoviť túto verziu?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("sk_SK", locale)
|
L.registerLocale("sk_SK", locale)
|
||||||
L.setLocale("sk_SK")
|
L.setLocale("sk_SK")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "vždy",
|
"always": "vždy",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Určite chcete vytvoriť kópiu celej tejto mapy a všetkých jej vrstiev?",
|
"Are you sure you want to clone this map and all its datalayers?": "Určite chcete vytvoriť kópiu celej tejto mapy a všetkých jej vrstiev?",
|
||||||
|
"Are you sure you want to delete the feature?": "Určite chcete vymazať tento objekt?",
|
||||||
|
"Are you sure you want to delete this layer?": "Určite chcete vymazať túto vrstvu?",
|
||||||
"Are you sure you want to delete this map?": "Ste si istí, že chcete vymazať túto mapu?",
|
"Are you sure you want to delete this map?": "Ste si istí, že chcete vymazať túto mapu?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ste si istí že chcete vymazať túto vlastnosť na všetkých objektoch?",
|
"Are you sure you want to delete this property on all the features?": "Ste si istí že chcete vymazať túto vlastnosť na všetkých objektoch?",
|
||||||
"Are you sure you want to restore this version?": "Určite chcete obnoviť túto verziu?",
|
"Are you sure you want to restore this version?": "Určite chcete obnoviť túto verziu?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "vedno",
|
"always": "vedno",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ali ste prepričani, da želite klonirati ta zemljevid in vse njegove podatkovne plasti?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ali ste prepričani, da želite klonirati ta zemljevid in vse njegove podatkovne plasti?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ali ste prepričani, da želite izbrisati to možnost?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ali ste prepričani, da želite izbrisati to plast?",
|
||||||
"Are you sure you want to delete this map?": "Ali ste prepričani, da želite izbrisati ta zemljevid?",
|
"Are you sure you want to delete this map?": "Ali ste prepričani, da želite izbrisati ta zemljevid?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ali res želite izbrisati to lastnost pri vseh vstavljenih predmetih?",
|
"Are you sure you want to delete this property on all the features?": "Ali res želite izbrisati to lastnost pri vseh vstavljenih predmetih?",
|
||||||
"Are you sure you want to restore this version?": "Ali res želite obnoviti to različico?",
|
"Are you sure you want to restore this version?": "Ali res želite obnoviti to različico?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("sl", locale)
|
L.registerLocale("sl", locale)
|
||||||
L.setLocale("sl")
|
L.setLocale("sl")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "vedno",
|
"always": "vedno",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Ali ste prepričani, da želite klonirati ta zemljevid in vse njegove podatkovne plasti?",
|
"Are you sure you want to clone this map and all its datalayers?": "Ali ste prepričani, da želite klonirati ta zemljevid in vse njegove podatkovne plasti?",
|
||||||
|
"Are you sure you want to delete the feature?": "Ali ste prepričani, da želite izbrisati to možnost?",
|
||||||
|
"Are you sure you want to delete this layer?": "Ali ste prepričani, da želite izbrisati to plast?",
|
||||||
"Are you sure you want to delete this map?": "Ali ste prepričani, da želite izbrisati ta zemljevid?",
|
"Are you sure you want to delete this map?": "Ali ste prepričani, da želite izbrisati ta zemljevid?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Ali res želite izbrisati to lastnost pri vseh vstavljenih predmetih?",
|
"Are you sure you want to delete this property on all the features?": "Ali res želite izbrisati to lastnost pri vseh vstavljenih predmetih?",
|
||||||
"Are you sure you want to restore this version?": "Ali res želite obnoviti to različico?",
|
"Are you sure you want to restore this version?": "Ali res želite obnoviti to različico?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "увек",
|
"always": "увек",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Да ли сте сигурни да желите да умножите мапу и све податке на њој?",
|
"Are you sure you want to clone this map and all its datalayers?": "Да ли сте сигурни да желите да умножите мапу и све податке на њој?",
|
||||||
|
"Are you sure you want to delete the feature?": "Да ли сте сигурни да желите да обришете елемент?",
|
||||||
|
"Are you sure you want to delete this layer?": "Да ли сте сигурни да желите да обришете лејер?",
|
||||||
"Are you sure you want to delete this map?": "Да ли сте сигурни да желите да обришете мапу?",
|
"Are you sure you want to delete this map?": "Да ли сте сигурни да желите да обришете мапу?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
|
"Are you sure you want to delete this property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
|
||||||
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
|
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("sr", locale)
|
L.registerLocale("sr", locale)
|
||||||
L.setLocale("sr")
|
L.setLocale("sr")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "увек",
|
"always": "увек",
|
||||||
"Animated transitions": "Animated transitions",
|
"Animated transitions": "Animated transitions",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Да ли сте сигурни да желите да умножите мапу и све податке на њој?",
|
"Are you sure you want to clone this map and all its datalayers?": "Да ли сте сигурни да желите да умножите мапу и све податке на њој?",
|
||||||
|
"Are you sure you want to delete the feature?": "Да ли сте сигурни да желите да обришете елемент?",
|
||||||
|
"Are you sure you want to delete this layer?": "Да ли сте сигурни да желите да обришете лејер?",
|
||||||
"Are you sure you want to delete this map?": "Да ли сте сигурни да желите да обришете мапу?",
|
"Are you sure you want to delete this map?": "Да ли сте сигурни да желите да обришете мапу?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
|
"Are you sure you want to delete this property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
|
||||||
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
|
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
|
@ -28,6 +28,8 @@ const locale = {
|
||||||
"always": "alltid",
|
"always": "alltid",
|
||||||
"Animated transitions": "Animerade övergångar",
|
"Animated transitions": "Animerade övergångar",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Är du säker på att du vill skapa en kopia av kartan och alla datalager?",
|
"Are you sure you want to clone this map and all its datalayers?": "Är du säker på att du vill skapa en kopia av kartan och alla datalager?",
|
||||||
|
"Are you sure you want to delete the feature?": "Är du säker på att du vill radera objektet?",
|
||||||
|
"Are you sure you want to delete this layer?": "Är du säker på att du vill radera lagret?",
|
||||||
"Are you sure you want to delete this map?": "Är du säker på att du vill radera denna karta?",
|
"Are you sure you want to delete this map?": "Är du säker på att du vill radera denna karta?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Är du säker på att du vill radera denna egenskap för alla objekt?",
|
"Are you sure you want to delete this property on all the features?": "Är du säker på att du vill radera denna egenskap för alla objekt?",
|
||||||
"Are you sure you want to restore this version?": "Är du säker på att du vill återställa till den här versionen?",
|
"Are you sure you want to restore this version?": "Är du säker på att du vill återställa till den här versionen?",
|
||||||
|
@ -538,7 +540,9 @@ const locale = {
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
||||||
L.registerLocale("sv", locale)
|
L.registerLocale("sv", locale)
|
||||||
L.setLocale("sv")
|
L.setLocale("sv")
|
||||||
|
|
|
@ -28,6 +28,8 @@
|
||||||
"always": "alltid",
|
"always": "alltid",
|
||||||
"Animated transitions": "Animerade övergångar",
|
"Animated transitions": "Animerade övergångar",
|
||||||
"Are you sure you want to clone this map and all its datalayers?": "Är du säker på att du vill skapa en kopia av kartan och alla datalager?",
|
"Are you sure you want to clone this map and all its datalayers?": "Är du säker på att du vill skapa en kopia av kartan och alla datalager?",
|
||||||
|
"Are you sure you want to delete the feature?": "Är du säker på att du vill radera objektet?",
|
||||||
|
"Are you sure you want to delete this layer?": "Är du säker på att du vill radera lagret?",
|
||||||
"Are you sure you want to delete this map?": "Är du säker på att du vill radera denna karta?",
|
"Are you sure you want to delete this map?": "Är du säker på att du vill radera denna karta?",
|
||||||
"Are you sure you want to delete this property on all the features?": "Är du säker på att du vill radera denna egenskap för alla objekt?",
|
"Are you sure you want to delete this property on all the features?": "Är du säker på att du vill radera denna egenskap för alla objekt?",
|
||||||
"Are you sure you want to restore this version?": "Är du säker på att du vill återställa till den här versionen?",
|
"Are you sure you want to restore this version?": "Är du säker på att du vill återställa till den här versionen?",
|
||||||
|
@ -538,5 +540,7 @@
|
||||||
"Images": "Images",
|
"Images": "Images",
|
||||||
"Iframes": "Iframes",
|
"Iframes": "Iframes",
|
||||||
"Tags": "Tags",
|
"Tags": "Tags",
|
||||||
"Geocode": "Geocode"
|
"Geocode": "Geocode",
|
||||||
|
"Undo": "Undo",
|
||||||
|
"Redo": "Redo"
|
||||||
}
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue