Compare commits

...

17 commits

Author SHA1 Message Date
Yohan Boniface
aa43d4efa8 3.0.1
Some checks are pending
Test & Docs / tests (postgresql, 3.10) (push) Waiting to run
Test & Docs / tests (postgresql, 3.12) (push) Waiting to run
Test & Docs / lint (push) Waiting to run
2025-04-07 20:01:53 +02:00
Yohan Boniface
4679742b96
fix: fix showLabel wrongly using MultiChoices (#2609) 2025-04-07 20:01:05 +02:00
Yohan Boniface
53329d19fd fix: fix showLabel wrongly using MultiChoices
Co-authored-by: David Larlet <david@larlet.fr>
2025-04-07 19:53:20 +02:00
Yohan Boniface
c09c2c20ee 3.0.0 2025-04-07 18:55:50 +02:00
Yohan Boniface
c0c55075b7 chore: rename WEBSOCKET_ENABLED in REALTIME_ENABLED
Co-authored-by: David Larlet <david@larlet.fr>
2025-04-07 18:55:18 +02:00
Yohan Boniface
3670c47af9 i18n 2025-04-07 18:32:05 +02:00
Yohan Boniface
f1f18ed518
Remove confirm delete for features and datalayers (#2603)
Now that we have granular undo, I'd say we can simplify the delete
process.
2025-04-07 18:24:25 +02:00
Yohan Boniface
5e47a59d07
chore: refine main search form (#2608)
![image](https://github.com/user-attachments/assets/dd73a323-6f80-4b5b-8691-79a3f92f3723)
2025-04-07 18:23:52 +02:00
Yohan Boniface
a59b0110fc
chore: refine undo/redo buttons (#2605)
![image](https://github.com/user-attachments/assets/884b3a8c-ff4e-48e2-9bdf-16d31fb7512a)
2025-04-07 18:23:37 +02:00
Yohan Boniface
e1272ec6cd fix: do not cut kbd in tooltip
Co-authored-by: David Larlet <david@larlet.fr>
2025-04-07 18:23:08 +02:00
Yohan Boniface
55babfde34
chore: refine map list card CSS (#2606) 2025-04-07 18:17:26 +02:00
Yohan Boniface
82b8564520 chore: refine undo/redo buttons
Co-authored-by: David Larlet <david@larlet.fr>
Co-authored-by: Aurélie Jallut <aurelie.jallut@beta.gouv.fr>
2025-04-07 18:16:37 +02:00
Yohan Boniface
5070a5e5b4 chore: refine main search form
Co-authored-by: David Larlet <david@larlet.fr>
2025-04-07 18:11:49 +02:00
Yohan Boniface
06baeb718e fix: fix Textarea trying to clear this.input
Co-authored-by: David Larlet <david@larlet.fr>
2025-04-07 18:09:35 +02:00
Yohan Boniface
f186d3266c chore: refine map list card CSS
Co-authored-by: David Larlet <david@larlet.fr>
Co-authored-by: Aurélie Jallut <aurelie.jallut@beta.gouv.fr>
2025-04-07 16:34:09 +02:00
Yohan Boniface
49bba24b90 feat: remove confirm for feature delete 2025-04-07 10:48:34 +02:00
Yohan Boniface
a2749ce805 feat: remove confirm for datalayer delete
Now that we have granular undo, no needs for this I'd say.
2025-04-07 10:35:39 +02:00
129 changed files with 289 additions and 620 deletions

View file

@ -26,7 +26,7 @@ services:
condition: service_healthy
redis:
condition: service_healthy
image: umap/umap:2.9.3
image: umap/umap:3.0.0
ports:
- "${PORT-8000}:8000"
environment:
@ -35,7 +35,7 @@ services:
- SITE_URL=https://umap.local/
- UMAP_ALLOW_ANONYMOUS=True
- DEBUG=1
- WEBSOCKET_ENABLED=1
- REALTIME_ENABLED=1
- REDIS_URL=redis://redis:6379
volumes:
- data:/srv/umap/uploads

View file

@ -1,5 +1,73 @@
# 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
* be explicit in the message that logout is needed after adding a new oauth provider

View file

@ -88,6 +88,13 @@ Nginx configuration.
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
Must be defined to something unique and secret.
@ -121,6 +128,13 @@ The final URL of you instance, including the protocol:
`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
Where uMap should store static files (CSS, JS…), must be consistent with your
@ -348,16 +362,3 @@ 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.
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.

View file

@ -85,7 +85,7 @@ services
condition: service_healthy
environment:
- WEBSOCKET_ENABLED=1
- REALTIME_ENABLED=1
- REDIS_URL=redis://redis:6379

View file

@ -1 +1 @@
VERSION = "2.9.2"
VERSION = "3.0.1"

View file

@ -360,10 +360,8 @@ LOGGING = {
},
}
# WebSocket configuration
# Real-time editing configuration
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)
REALTIME_ENABLED = env.bool("REALTIME_ENABLED", default=False)
REDIS_URL = env("REDIS_URL", default="redis://localhost:6379")

View file

@ -3,9 +3,7 @@
*/
body, div, ul, ol, li, a, section, nav,
h1, h2, h3, h4, h5, h6, label,
hr, input, textarea {
-moz-box-sizing:border-box;
-webkit-box-sizing:border-box;
hr, input, textarea, select {
box-sizing: border-box;
margin: 0;
padding: 0;
@ -19,7 +17,11 @@ h1, h2, h3, h4, h5, h6, label, hr {
}
a {
text-decoration: none;
color: #1F5C39;
color: var(--link-color);
}
a.main {
font-weight: bold;
text-decoration: underline;
}
a[href^="http"]:not(nav.umap-nav a) {
text-decoration: underline;
@ -81,9 +83,6 @@ hgroup > * {
hgroup {
margin-bottom: var(--box-margin);
}
hgroup > :not(:first-child):last-child {
font-weight: normal;
}
hgroup p,
hgroup button {
margin: 0;
@ -202,6 +201,10 @@ dt {
/* Various */
/* *********** */
.nobr {
white-space: nowrap;
}
.text {
word-break: break-word;
white-space: pre-line;

View file

@ -19,7 +19,6 @@ input:-moz-placeholder, :-moz-placeholder {
.search-form {
display: flex;
align-items: baseline;
gap: calc(var(--gutter) / 2);
max-width: 800px;
margin: 0 auto;
}
@ -186,6 +185,8 @@ h2.tabs a:hover {
white-space: nowrap;
text-overflow: ellipsis;
vertical-align: middle;
font-size: small;
padding: 0 3px;
}
.card {
border: 1px solid var(--color-lightGray);
@ -213,7 +214,6 @@ h2.tabs a:hover {
/* colors */
/* **************************** */
input[type="submit"],
.button {
background-color: var(--button-primary-background);
color: var(--button-primary-color);
@ -405,22 +405,9 @@ html[dir="rtl"] .content .icon-delete {
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"] {
width: 30ch;
}
.table-header form input[type="submit"] {
background-color: var(--color-darkBlue);
color: white;
font-weight: bold;
}
.table-header .button-download {
width: inherit;

View file

@ -4,6 +4,7 @@
background-color: var(--color-darkGray);
width: auto;
margin-bottom: 0;
min-height: initial;
}
.umap-main-edit-toolbox [type=button]:hover {
text-decoration: underline;
@ -13,9 +14,14 @@
padding: 0 var(--text-margin);
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-undo,
.leaflet-container .edit-redo,
.leaflet-container .edit-disable,
.leaflet-container .connected-peers
{
@ -40,8 +46,6 @@
color: var(--color-darkGray);
}
.leaflet-container .edit-undo:hover,
.leaflet-container .edit-redo:hover,
.leaflet-container .edit-disable:hover {
border: 0.5px solid rgba(153, 153, 153, 0.80);
text-decoration: none;

View file

@ -7,16 +7,15 @@ input[type="datetime-local"], input[type="email"], input[type="number"],
input[type="search"], input[type="tel"], input[type="time"], input[type="file"],
input[type="url"], textarea {
background-color: white;
border: 1px solid #CCCCCC;
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);
border: 2px solid var(--color-darkBlue);
color: var(--text-color);
display: block;
font-family: inherit;
margin: 0;
margin-bottom: var(--box-margin);
padding: 7px;
padding: .5rem 1rem;
width: 100%;
line-height: inherit;
min-height: 40px;
}
input[type="range"] {
margin-top: 10px;
@ -47,11 +46,15 @@ input[type=checkbox]:checked:after {
content: '✓';
color: var(--color-darkGray);
}
input[data-modified=true] {
background-color: var(--color-lightCyan);
border: 1px solid var(--color-darkGray);
}
input + select,
select + input,
input + input {
border-left: none;
}
textarea {
height: inherit;
padding: 7px;
@ -59,13 +62,18 @@ textarea {
min-height: 6rlh;
}
select {
border: 1px solid #222;
border: 2px solid var(--color-darkBlue);
width: 100%;
padding: var(--button-padding);
background-color: var(--background-color);
color: var(--text-color);
min-height: 40px;
}
.dark select {
color: #efefef;
background-color: #393F3F;
color: var(--text-color);
background-color: var(--color-darkGray);
border-color: var(--color-dark);
border-width: 1px;
}
select[multiple="multiple"] {
height: auto;
@ -75,16 +83,16 @@ select[multiple="multiple"] {
input[type="submit"] {
display: flex;
align-items: center;
margin-bottom: 14px;
text-align: center;
border-radius: 2px;
font-weight: normal;
cursor: pointer;
padding: var(--button-padding);
border: none;
text-decoration: none;
background-color: white;
justify-content: center;
background-color: var(--color-darkBlue);
color: white;
font-weight: normal;
min-height: 40px;
}
.dark .button,
.dark [type="button"] {
@ -92,6 +100,9 @@ input[type="submit"] {
color: var(--text-color);
border: 1px solid #1b1f20;
}
.button.primary {
font-weight: bold;
}
.dark .button.primary:not([disabled]),
.dark [type="button"].primary:not([disabled]) {
background-color: var(--color-brightCyan);
@ -160,6 +171,14 @@ input + .help-text {
.formbox.with-switch {
padding-top: 2px;
}
.with-switch {
overflow: hidden;
}
.formbox select,
.formbox textarea,
.formbox input {
margin-bottom: var(--text-margin);
}
fieldset.formbox {
border: none;
border-top: 1px solid var(--color-lightGray);
@ -200,8 +219,9 @@ input[value]:invalid {
background-color: darkred;
}
.dark input, .dark textarea {
background-color: #232729;
border-color: #1b1f20;
background-color: var(--color-darkerGray);
border-color: var(--color-dark);
border-width: 1px;
color: #efefef;
}
details {
@ -277,9 +297,6 @@ input.switch:empty ~ label {
text-indent: 6em;
margin: 0.2em 0;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.1);
width: 80px;
@ -567,6 +584,7 @@ input.blur {
vertical-align: middle;
border-start-end-radius: 0;
border-end-end-radius: 0;
margin-bottom: 0;
}
.blur + .button,
.blur + [type="button"] {

View file

@ -61,7 +61,7 @@ export default class Browser {
DomEvent.on(zoom_to, 'click', viewFeature)
DomEvent.on(title, 'click', viewFeature)
DomEvent.on(edit, 'click', feature.edit, feature)
DomEvent.on(del, 'click', feature.confirmDelete, feature)
DomEvent.on(del, 'click', feature.del, feature)
// HOTFIX. Remove when this is released:
// https://github.com/Leaflet/Leaflet/pull/9052
DomEvent.disableClickPropagation(row)

View file

@ -278,7 +278,8 @@ class Feature {
<i class="icon icon-24 icon-delete"></i>${translate('Delete')}
</button>`)
button.addEventListener('click', () => {
this.confirmDelete().then(() => this._umap.editPanel.close())
this.del()
this._umap.editPanel.close()
})
container.appendChild(button)
}
@ -363,17 +364,6 @@ class Feature {
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) {
this.isDirty = true
this._umap._leafletMap.closePopup()
@ -518,7 +508,7 @@ class Feature {
icon: 'icon-edit',
},
{
action: () => this.confirmDelete(),
action: () => this.del(),
title: translate('Delete this feature'),
icon: 'icon-delete',
},
@ -673,7 +663,7 @@ class Feature {
},
{
label: translate('Delete this feature'),
action: () => this.confirmDelete(),
action: () => this.del(),
},
{
label: translate('Clone this feature'),

View file

@ -1237,23 +1237,14 @@ export class DataLayer {
translate('Delete layer')
)
if (this.isReadOnly()) {
DomUtil.addClass(container, 'readonly')
container.classList.add('readonly')
} else {
DomEvent.on(edit, 'click', this.edit, this)
DomEvent.on(table, 'click', this.tableEdit, this)
DomEvent.on(
remove,
'click',
function () {
if (!this.isVisible()) return
this._umap.dialog
.confirm(translate('Are you sure you want to delete this layer?'))
.then(() => {
this.del()
})
},
this
)
edit.addEventListener('click', () => this.edit())
table.addEventListener('click', () => this.tableEdit())
remove.addEventListener('click', () => {
if (!this.isVisible()) return
this.del()
})
}
DomEvent.on(toggle, 'click', () => this.toggle())
DomEvent.on(zoomTo, 'click', this.zoomTo, this)

View file

@ -132,6 +132,9 @@ export class MutatingForm extends Form {
const properties = Object.assign({}, defaults)
if (properties.type === Array) {
properties.handler = 'CheckBoxes'
} else if (properties.type === Boolean) {
if (properties.nullable) properties.handler = 'NullableChoices'
else properties.handler = 'Switch'
} else if (properties.choices) {
const text_length = properties.choices.reduce(
(acc, [_, label]) => acc + label.length,
@ -145,9 +148,6 @@ export class MutatingForm extends Form {
properties.handler = 'Select'
properties.selectOptions = properties.choices
}
} else if (properties.type === Boolean) {
if (properties.nullable) properties.handler = 'NullableChoices'
else properties.handler = 'Switch'
} else if (properties.type === 'Text') {
properties.handler = 'Textarea'
} else if (properties.type === Number) {

View file

@ -152,7 +152,9 @@ Fields.Textarea = class extends BaseElement {
this.textarea.value = value
}
}
clear() {
this.textarea.value = ''
}
value() {
return this.textarea.value
}

View file

@ -196,7 +196,7 @@ export default class Help {
.split('+')
.map((el) => `<kbd>${el}</kbd>`)
.join('+')
label += ` ${shortcut}`
label += ` <span class="nobr">${shortcut}</span>`
} else {
label += ` (${shortcut})`
}

View file

@ -11,13 +11,11 @@ const TOP_BAR_TEMPLATE = `
<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="share-status flat truncate" type="button" data-ref="share"></button>
<button class="edit-undo round" type="button" data-ref="undo" disabled>
<button class="edit-undo round flat" type="button" data-ref="undo" disabled>
<i class="icon icon-16 icon-undo"></i>
<span>${translate('Undo')}</span>
</button>
<button class="edit-redo round" type="button" data-ref="redo" disabled>
<button class="edit-redo round flat" type="button" data-ref="redo" disabled>
<i class="icon icon-16 icon-redo"></i>
<span>${translate('Redo')}</span>
</button>
</div>
<div class="umap-right-edit-toolbox" data-ref="right">

View file

@ -126,6 +126,7 @@ export function escapeHTML(s) {
'frameborder',
'scrolling',
'controls',
'class',
],
ALLOWED_ATTR: ['href', 'src', 'width', 'height', 'style', 'dir', 'title', 'type'],
// Added: `geo:` URL scheme as defined in RFC5870:

View file

@ -28,8 +28,6 @@ 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 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 property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("am_ET", locale)
L.setLocale("am_ET")

View file

@ -28,8 +28,6 @@
"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 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 property on all the features?": "እርግጠኛ ነህ ይህንንባህርይ ከሁሉም ፊቸሮች ላይ መሰረዝ ትችላለህ",
"Are you sure you want to restore this version?": "እርግጠኛ ነዎት ወደዚህኛው እትም መመለስ ይልጋሉ?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ar", locale)
L.setLocale("ar")

View file

@ -28,8 +28,6 @@
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ast", locale)
L.setLocale("ast")

View file

@ -28,8 +28,6 @@
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "винаги",
"Animated transitions": "Animated transitions",
"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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("bg", locale)
L.setLocale("bg")

View file

@ -28,8 +28,6 @@
"always": "винаги",
"Animated transitions": "Animated transitions",
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "bepred",
"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 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 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ñ?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("br", locale)
L.setLocale("br")

View file

@ -28,8 +28,6 @@
"always": "bepred",
"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 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 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ñ?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ca", locale)
L.setLocale("ca")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "vždy",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("cs_CZ", locale)
L.setLocale("cs_CZ")

View file

@ -28,8 +28,6 @@
"always": "vždy",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "altid",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("da", locale)
L.setLocale("da")

View file

@ -28,8 +28,6 @@
"always": "altid",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "immer",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("de", locale)
L.setLocale("de")

View file

@ -28,8 +28,6 @@
"always": "immer",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "πάντα",
"Animated transitions": "Κινούμενες μεταβάσεις",
"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 property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("el", locale)
L.setLocale("el")

View file

@ -28,8 +28,6 @@
"always": "πάντα",
"Animated transitions": "Κινούμενες μεταβάσεις",
"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 property on all the features?": "Θέλετε σίγουρα να διαγραφεί αυτή η ιδιότητα από όλα τα στοιχεία;",
"Are you sure you want to restore this version?": "Θέλετε σίγουρα να γίνει επαναφορά αυτής της έκδοσης;",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("en", locale)
L.setLocale("en")

View file

@ -28,8 +28,6 @@
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "siempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("es", locale)
L.setLocale("es")

View file

@ -28,8 +28,6 @@
"always": "siempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "alati",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("et", locale)
L.setLocale("et")

View file

@ -28,8 +28,6 @@
"always": "alati",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "beti",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("eu", locale)
L.setLocale("eu")

View file

@ -28,8 +28,6 @@
"always": "beti",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "همیشه",
"Animated transitions": "گذارهای پویانما",
"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 property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف می‌کنید؟",
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی می‌کنید؟",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("fa_IR", locale)
L.setLocale("fa_IR")

View file

@ -28,8 +28,6 @@
"always": "همیشه",
"Animated transitions": "گذارهای پویانما",
"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 property on all the features?": "آیا این ویژگی را از همهٔ عناصر حذف می‌کنید؟",
"Are you sure you want to restore this version?": "آیا این نسخه را بازیابی می‌کنید؟",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "aina",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("fi", locale)
L.setLocale("fi")

View file

@ -28,8 +28,6 @@
"always": "aina",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "toujours",
"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 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 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 ?",
@ -539,10 +537,8 @@ const locale = {
"Links": "Liens",
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Thèmes",
"Geocode": "Géocoder",
"Undo": "Annuler",
"Redo": "Rejouer"
"Tags": "Catégories",
"Geocode": "Géocoder"
}
L.registerLocale("fr", locale)
L.setLocale("fr")

View file

@ -28,8 +28,6 @@
"always": "toujours",
"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 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 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 ?",
@ -539,8 +537,6 @@
"Links": "Liens",
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Thèmes",
"Geocode": "Géocoder",
"Undo": "Annuler",
"Redo": "Rejouer"
"Tags": "Catégories",
"Geocode": "Géocoder"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("gl", locale)
L.setLocale("gl")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "תמיד",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("he", locale)
L.setLocale("he")

View file

@ -28,8 +28,6 @@
"always": "תמיד",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
"Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ 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?": "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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("hr", locale)
L.setLocale("hr")

View file

@ -28,8 +28,6 @@
"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?": "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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "mindig",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("hu", locale)
L.setLocale("hu")

View file

@ -28,8 +28,6 @@
"always": "mindig",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("id", locale)
L.setLocale("id")

View file

@ -28,8 +28,6 @@
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "alltaf",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("is", locale)
L.setLocale("is")

View file

@ -28,8 +28,6 @@
"always": "alltaf",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("it", locale)
L.setLocale("it")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "常時",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ja", locale)
L.setLocale("ja")

View file

@ -28,8 +28,6 @@
"always": "常時",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "すべての地物からこのプロパティを削除します。よろしいですか?",
"Are you sure you want to restore this version?": "本当にこのバージョンを復元してよいですか?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "항상",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ko", locale)
L.setLocale("ko")

View file

@ -28,8 +28,6 @@
"always": "항상",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "정말 이 속성을 모든 지물에서 삭제하시겠습니까?",
"Are you sure you want to restore this version?": "정말 이 버전을 복원하시겠습니까?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "always",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("lt", locale)
L.setLocale("lt")

View file

@ -28,8 +28,6 @@
"always": "always",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sentiasa",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ms", locale)
L.setLocale("ms")

View file

@ -28,8 +28,6 @@
"always": "sentiasa",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "altijd",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("nl", locale)
L.setLocale("nl")

View file

@ -28,8 +28,6 @@
"always": "altijd",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "alltid",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("no", locale)
L.setLocale("no")

View file

@ -28,8 +28,6 @@
"always": "alltid",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "zawsze",
"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 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 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ę?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("pl", locale)
L.setLocale("pl")

View file

@ -28,8 +28,6 @@
"always": "zawsze",
"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 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 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ę?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("pt", locale)
L.setLocale("pt")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("pt_BR", locale)
L.setLocale("pt_BR")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "sempre",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("pt_PT", locale)
L.setLocale("pt_PT")

View file

@ -28,8 +28,6 @@
"always": "sempre",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "mereu",
"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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ro", locale)
L.setLocale("ro")

View file

@ -28,8 +28,6 @@
"always": "mereu",
"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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "всегда",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("ru", locale)
L.setLocale("ru")

View file

@ -28,8 +28,6 @@
"always": "всегда",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "Вы уверены, что хотите удалить это свойство у всех объектов?",
"Are you sure you want to restore this version?": "Вы уверены, что хотите восстановить эту версию?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "vždy",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("sk_SK", locale)
L.setLocale("sk_SK")

View file

@ -28,8 +28,6 @@
"always": "vždy",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "vedno",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("sl", locale)
L.setLocale("sl")

View file

@ -28,8 +28,6 @@
"always": "vedno",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "увек",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("sr", locale)
L.setLocale("sr")

View file

@ -28,8 +28,6 @@
"always": "увек",
"Animated transitions": "Animated transitions",
"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 property on all the features?": "Јесте ли сигурни да желите да избришете овај ентитет на свим функцијама?",
"Are you sure you want to restore this version?": "Јесте ли сигурни да желите да вратите ову верзију?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

View file

@ -28,8 +28,6 @@ const locale = {
"always": "alltid",
"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 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 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?",
@ -540,9 +538,7 @@ const locale = {
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}
L.registerLocale("sv", locale)
L.setLocale("sv")

View file

@ -28,8 +28,6 @@
"always": "alltid",
"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 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 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?",
@ -540,7 +538,5 @@
"Images": "Images",
"Iframes": "Iframes",
"Tags": "Tags",
"Geocode": "Geocode",
"Undo": "Undo",
"Redo": "Redo"
"Geocode": "Geocode"
}

Some files were not shown because too many files have changed in this diff Show more