@kepler.gl/localization 3.3.0-alpha.1 → 3.3.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/formatted-message.js +27 -0
- package/dist/{index.js → cjs/index.js} +1 -1
- package/dist/{locales.js → cjs/locales.js} +1 -1
- package/dist/cjs/messages.js +46 -0
- package/dist/cjs/translations/ca.js +741 -0
- package/dist/cjs/translations/cn.js +742 -0
- package/dist/cjs/translations/en.js +789 -0
- package/dist/cjs/translations/es.js +741 -0
- package/dist/cjs/translations/fi.js +740 -0
- package/dist/cjs/translations/ja.js +740 -0
- package/dist/cjs/translations/pt.js +742 -0
- package/dist/cjs/translations/ru.js +742 -0
- package/dist/esm/formatted-message.js +20 -0
- package/dist/esm/index.js +7 -0
- package/dist/esm/locales.js +42 -0
- package/dist/esm/messages.js +43 -0
- package/dist/esm/translations/ca.js +736 -0
- package/dist/esm/translations/cn.js +737 -0
- package/dist/esm/translations/en.js +784 -0
- package/dist/esm/translations/es.js +736 -0
- package/dist/esm/translations/fi.js +735 -0
- package/dist/esm/translations/ja.js +735 -0
- package/dist/esm/translations/pt.js +737 -0
- package/dist/esm/translations/ru.js +737 -0
- package/dist/formatted-message.d.ts +2 -2
- package/dist/translations/ca.d.ts +46 -0
- package/dist/translations/cn.d.ts +46 -0
- package/dist/translations/en.d.ts +64 -0
- package/dist/translations/es.d.ts +46 -0
- package/dist/translations/fi.d.ts +46 -0
- package/dist/translations/ja.d.ts +46 -0
- package/dist/translations/pt.d.ts +46 -0
- package/dist/translations/ru.d.ts +46 -0
- package/package.json +18 -11
- package/dist/formatted-message.js +0 -22
- package/dist/messages.js +0 -46
- package/dist/translations/ca.js +0 -695
- package/dist/translations/cn.js +0 -696
- package/dist/translations/en.js +0 -725
- package/dist/translations/es.js +0 -695
- package/dist/translations/fi.js +0 -694
- package/dist/translations/ja.js +0 -694
- package/dist/translations/pt.js +0 -696
- package/dist/translations/ru.js +0 -696
|
@@ -4,9 +4,9 @@ type EnhancedFormattedMessageProps = {
|
|
|
4
4
|
defaultMessage?: string;
|
|
5
5
|
defaultValue?: string;
|
|
6
6
|
values?: {
|
|
7
|
-
[key: string]:
|
|
7
|
+
[key: string]: React.ReactNode;
|
|
8
8
|
};
|
|
9
|
-
children?: () => React.ReactElement;
|
|
9
|
+
children?: (chunks: React.ReactNode[]) => React.ReactElement;
|
|
10
10
|
};
|
|
11
11
|
declare const EnhancedFormattedMessage: React.FC<EnhancedFormattedMessageProps>;
|
|
12
12
|
export default EnhancedFormattedMessage;
|
|
@@ -97,6 +97,8 @@ declare const _default: {
|
|
|
97
97
|
layer: string;
|
|
98
98
|
appearance: string;
|
|
99
99
|
uniqueIdField: string;
|
|
100
|
+
hideNulls: string;
|
|
101
|
+
hideNullsDescription: string;
|
|
100
102
|
type: {
|
|
101
103
|
point: string;
|
|
102
104
|
arc: string;
|
|
@@ -112,6 +114,7 @@ declare const _default: {
|
|
|
112
114
|
hexagonid: string;
|
|
113
115
|
trip: string;
|
|
114
116
|
s2: string;
|
|
117
|
+
geohash: string;
|
|
115
118
|
'3d': string;
|
|
116
119
|
flow: string;
|
|
117
120
|
vectortile: string;
|
|
@@ -266,6 +269,16 @@ declare const _default: {
|
|
|
266
269
|
datasetTitle: {
|
|
267
270
|
showDataTable: string;
|
|
268
271
|
removeDataset: string;
|
|
272
|
+
refreshDataset: string;
|
|
273
|
+
refreshFailed: string;
|
|
274
|
+
refreshSettings: string;
|
|
275
|
+
refreshOff: string;
|
|
276
|
+
refresh10s: string;
|
|
277
|
+
refresh15s: string;
|
|
278
|
+
refresh1m: string;
|
|
279
|
+
refresh5m: string;
|
|
280
|
+
refresh15m: string;
|
|
281
|
+
refreshCustom: string;
|
|
269
282
|
};
|
|
270
283
|
datasetInfo: {
|
|
271
284
|
rowCount: string;
|
|
@@ -273,6 +286,11 @@ declare const _default: {
|
|
|
273
286
|
rasterTile: string;
|
|
274
287
|
wmsTile: string;
|
|
275
288
|
tile3d: string;
|
|
289
|
+
remoteFile: string;
|
|
290
|
+
refreshInterval: string;
|
|
291
|
+
refreshCustomSeconds: string;
|
|
292
|
+
refreshing: string;
|
|
293
|
+
refreshingPercent: string;
|
|
276
294
|
};
|
|
277
295
|
tooltip: {
|
|
278
296
|
hideLayer: string;
|
|
@@ -288,10 +306,18 @@ declare const _default: {
|
|
|
288
306
|
layerSettings: string;
|
|
289
307
|
closePanel: string;
|
|
290
308
|
switchToDualView: string;
|
|
309
|
+
selectSplitMode: string;
|
|
310
|
+
singleView: string;
|
|
311
|
+
dualView: string;
|
|
312
|
+
swipeView: string;
|
|
291
313
|
showLegend: string;
|
|
292
314
|
disable3DMap: string;
|
|
293
315
|
DrawOnMap: string;
|
|
316
|
+
copyAllSketches: string;
|
|
317
|
+
convertToLayer: string;
|
|
294
318
|
selectLocale: string;
|
|
319
|
+
switchToLightTheme: string;
|
|
320
|
+
switchToDarkTheme: string;
|
|
295
321
|
showAiAssistantPanel: string;
|
|
296
322
|
hideAiAssistantPanel: string;
|
|
297
323
|
hideLayerPanel: string;
|
|
@@ -344,8 +370,13 @@ declare const _default: {
|
|
|
344
370
|
shareMapURL: string;
|
|
345
371
|
saveMap: string;
|
|
346
372
|
select: string;
|
|
373
|
+
point: string;
|
|
374
|
+
line: string;
|
|
347
375
|
polygon: string;
|
|
348
376
|
rectangle: string;
|
|
377
|
+
circle: string;
|
|
378
|
+
copyAll: string;
|
|
379
|
+
convertToLayer: string;
|
|
349
380
|
hide: string;
|
|
350
381
|
show: string;
|
|
351
382
|
};
|
|
@@ -353,6 +384,11 @@ declare const _default: {
|
|
|
353
384
|
filterLayer: string;
|
|
354
385
|
filterLayerDisabled: string;
|
|
355
386
|
copyGeometry: string;
|
|
387
|
+
editProperties: string;
|
|
388
|
+
propertyName: string;
|
|
389
|
+
propertyValue: string;
|
|
390
|
+
removeProperty: string;
|
|
391
|
+
polygonFilter: string;
|
|
356
392
|
noLayersToFilter: string;
|
|
357
393
|
};
|
|
358
394
|
exportVideoModal: {
|
|
@@ -449,6 +485,9 @@ declare const _default: {
|
|
|
449
485
|
title: string;
|
|
450
486
|
subtitle: string;
|
|
451
487
|
};
|
|
488
|
+
providerSelect: {
|
|
489
|
+
disclaimer: string;
|
|
490
|
+
};
|
|
452
491
|
exportMap: {
|
|
453
492
|
formatTitle: string;
|
|
454
493
|
formatSubtitle: string;
|
|
@@ -619,8 +658,15 @@ declare const _default: {
|
|
|
619
658
|
configUploadMessage: string;
|
|
620
659
|
browseFiles: string;
|
|
621
660
|
uploading: string;
|
|
661
|
+
downloading: string;
|
|
622
662
|
fileNotSupported: string;
|
|
623
663
|
or: string;
|
|
664
|
+
dropMessage: string;
|
|
665
|
+
urlPlaceholder: string;
|
|
666
|
+
fetch: string;
|
|
667
|
+
format: string;
|
|
668
|
+
formatAuto: string;
|
|
669
|
+
cors: string;
|
|
624
670
|
};
|
|
625
671
|
tilesetSetup: {
|
|
626
672
|
header: string;
|
|
@@ -97,6 +97,8 @@ declare const _default: {
|
|
|
97
97
|
layer: string;
|
|
98
98
|
appearance: string;
|
|
99
99
|
uniqueIdField: string;
|
|
100
|
+
hideNulls: string;
|
|
101
|
+
hideNullsDescription: string;
|
|
100
102
|
type: {
|
|
101
103
|
point: string;
|
|
102
104
|
arc: string;
|
|
@@ -112,6 +114,7 @@ declare const _default: {
|
|
|
112
114
|
hexagonid: string;
|
|
113
115
|
trip: string;
|
|
114
116
|
s2: string;
|
|
117
|
+
geohash: string;
|
|
115
118
|
'3d': string;
|
|
116
119
|
flow: string;
|
|
117
120
|
vectortile: string;
|
|
@@ -266,6 +269,16 @@ declare const _default: {
|
|
|
266
269
|
datasetTitle: {
|
|
267
270
|
showDataTable: string;
|
|
268
271
|
removeDataset: string;
|
|
272
|
+
refreshDataset: string;
|
|
273
|
+
refreshFailed: string;
|
|
274
|
+
refreshSettings: string;
|
|
275
|
+
refreshOff: string;
|
|
276
|
+
refresh10s: string;
|
|
277
|
+
refresh15s: string;
|
|
278
|
+
refresh1m: string;
|
|
279
|
+
refresh5m: string;
|
|
280
|
+
refresh15m: string;
|
|
281
|
+
refreshCustom: string;
|
|
269
282
|
};
|
|
270
283
|
datasetInfo: {
|
|
271
284
|
rowCount: string;
|
|
@@ -273,6 +286,11 @@ declare const _default: {
|
|
|
273
286
|
rasterTile: string;
|
|
274
287
|
wmsTile: string;
|
|
275
288
|
tile3d: string;
|
|
289
|
+
remoteFile: string;
|
|
290
|
+
refreshInterval: string;
|
|
291
|
+
refreshCustomSeconds: string;
|
|
292
|
+
refreshing: string;
|
|
293
|
+
refreshingPercent: string;
|
|
276
294
|
};
|
|
277
295
|
tooltip: {
|
|
278
296
|
hideLayer: string;
|
|
@@ -288,10 +306,18 @@ declare const _default: {
|
|
|
288
306
|
layerSettings: string;
|
|
289
307
|
closePanel: string;
|
|
290
308
|
switchToDualView: string;
|
|
309
|
+
selectSplitMode: string;
|
|
310
|
+
singleView: string;
|
|
311
|
+
dualView: string;
|
|
312
|
+
swipeView: string;
|
|
291
313
|
showLegend: string;
|
|
292
314
|
disable3DMap: string;
|
|
293
315
|
DrawOnMap: string;
|
|
316
|
+
copyAllSketches: string;
|
|
317
|
+
convertToLayer: string;
|
|
294
318
|
selectLocale: string;
|
|
319
|
+
switchToLightTheme: string;
|
|
320
|
+
switchToDarkTheme: string;
|
|
295
321
|
showAiAssistantPanel: string;
|
|
296
322
|
hideAiAssistantPanel: string;
|
|
297
323
|
hideLayerPanel: string;
|
|
@@ -344,8 +370,13 @@ declare const _default: {
|
|
|
344
370
|
shareMapURL: string;
|
|
345
371
|
saveMap: string;
|
|
346
372
|
select: string;
|
|
373
|
+
point: string;
|
|
374
|
+
line: string;
|
|
347
375
|
polygon: string;
|
|
348
376
|
rectangle: string;
|
|
377
|
+
circle: string;
|
|
378
|
+
copyAll: string;
|
|
379
|
+
convertToLayer: string;
|
|
349
380
|
hide: string;
|
|
350
381
|
show: string;
|
|
351
382
|
};
|
|
@@ -353,6 +384,11 @@ declare const _default: {
|
|
|
353
384
|
filterLayer: string;
|
|
354
385
|
filterLayerDisabled: string;
|
|
355
386
|
copyGeometry: string;
|
|
387
|
+
editProperties: string;
|
|
388
|
+
propertyName: string;
|
|
389
|
+
propertyValue: string;
|
|
390
|
+
removeProperty: string;
|
|
391
|
+
polygonFilter: string;
|
|
356
392
|
noLayersToFilter: string;
|
|
357
393
|
};
|
|
358
394
|
exportVideoModal: {
|
|
@@ -449,6 +485,9 @@ declare const _default: {
|
|
|
449
485
|
title: string;
|
|
450
486
|
subtitle: string;
|
|
451
487
|
};
|
|
488
|
+
providerSelect: {
|
|
489
|
+
disclaimer: string;
|
|
490
|
+
};
|
|
452
491
|
exportMap: {
|
|
453
492
|
formatTitle: string;
|
|
454
493
|
formatSubtitle: string;
|
|
@@ -620,8 +659,15 @@ declare const _default: {
|
|
|
620
659
|
configUploadMessage: string;
|
|
621
660
|
browseFiles: string;
|
|
622
661
|
uploading: string;
|
|
662
|
+
downloading: string;
|
|
623
663
|
fileNotSupported: string;
|
|
624
664
|
or: string;
|
|
665
|
+
dropMessage: string;
|
|
666
|
+
urlPlaceholder: string;
|
|
667
|
+
fetch: string;
|
|
668
|
+
format: string;
|
|
669
|
+
formatAuto: string;
|
|
670
|
+
cors: string;
|
|
625
671
|
};
|
|
626
672
|
tilesetSetup: {
|
|
627
673
|
header: string;
|
|
@@ -42,6 +42,16 @@ declare const _default: {
|
|
|
42
42
|
land: string;
|
|
43
43
|
'3dBuilding': string;
|
|
44
44
|
background: string;
|
|
45
|
+
atmosphere: string;
|
|
46
|
+
hugeHalo: string;
|
|
47
|
+
hugeHaloRadius: string;
|
|
48
|
+
hugeHaloOpacity: string;
|
|
49
|
+
basemap: string;
|
|
50
|
+
adminBorders: string;
|
|
51
|
+
terminator: string;
|
|
52
|
+
sunAzimuth: string;
|
|
53
|
+
surface: string;
|
|
54
|
+
stars: string;
|
|
45
55
|
};
|
|
46
56
|
panel: {
|
|
47
57
|
text: {
|
|
@@ -100,7 +110,10 @@ declare const _default: {
|
|
|
100
110
|
appearance: string;
|
|
101
111
|
bounds: string;
|
|
102
112
|
imageSource: string;
|
|
113
|
+
alignment: string;
|
|
103
114
|
uniqueIdField: string;
|
|
115
|
+
hideNulls: string;
|
|
116
|
+
hideNullsDescription: string;
|
|
104
117
|
type: {
|
|
105
118
|
point: string;
|
|
106
119
|
arc: string;
|
|
@@ -116,6 +129,7 @@ declare const _default: {
|
|
|
116
129
|
hexagonid: string;
|
|
117
130
|
trip: string;
|
|
118
131
|
s2: string;
|
|
132
|
+
geohash: string;
|
|
119
133
|
'3d': string;
|
|
120
134
|
flow: string;
|
|
121
135
|
vectortile: string;
|
|
@@ -149,6 +163,7 @@ declare const _default: {
|
|
|
149
163
|
imageUrl: string;
|
|
150
164
|
showBounds: string;
|
|
151
165
|
editBounds: string;
|
|
166
|
+
alignMode: string;
|
|
152
167
|
boundsWest: string;
|
|
153
168
|
boundsSouth: string;
|
|
154
169
|
boundsEast: string;
|
|
@@ -234,12 +249,14 @@ declare const _default: {
|
|
|
234
249
|
addLayer: string;
|
|
235
250
|
layerBlending: string;
|
|
236
251
|
overlayBlending: string;
|
|
252
|
+
globeUnsupported: string;
|
|
237
253
|
};
|
|
238
254
|
mapManager: {
|
|
239
255
|
mapStyle: string;
|
|
240
256
|
addMapStyle: string;
|
|
241
257
|
'3dBuildingColor': string;
|
|
242
258
|
backgroundColor: string;
|
|
259
|
+
globeLayers: string;
|
|
243
260
|
};
|
|
244
261
|
effectManager: {
|
|
245
262
|
effects: string;
|
|
@@ -294,6 +311,16 @@ declare const _default: {
|
|
|
294
311
|
datasetTitle: {
|
|
295
312
|
showDataTable: string;
|
|
296
313
|
removeDataset: string;
|
|
314
|
+
refreshDataset: string;
|
|
315
|
+
refreshFailed: string;
|
|
316
|
+
refreshSettings: string;
|
|
317
|
+
refreshOff: string;
|
|
318
|
+
refresh10s: string;
|
|
319
|
+
refresh15s: string;
|
|
320
|
+
refresh1m: string;
|
|
321
|
+
refresh5m: string;
|
|
322
|
+
refresh15m: string;
|
|
323
|
+
refreshCustom: string;
|
|
297
324
|
};
|
|
298
325
|
datasetInfo: {
|
|
299
326
|
rowCount: string;
|
|
@@ -302,6 +329,11 @@ declare const _default: {
|
|
|
302
329
|
wmsTile: string;
|
|
303
330
|
tile3d: string;
|
|
304
331
|
bitmap: string;
|
|
332
|
+
remoteFile: string;
|
|
333
|
+
refreshInterval: string;
|
|
334
|
+
refreshCustomSeconds: string;
|
|
335
|
+
refreshing: string;
|
|
336
|
+
refreshingPercent: string;
|
|
305
337
|
};
|
|
306
338
|
tooltip: {
|
|
307
339
|
hideLayer: string;
|
|
@@ -317,10 +349,22 @@ declare const _default: {
|
|
|
317
349
|
layerSettings: string;
|
|
318
350
|
closePanel: string;
|
|
319
351
|
switchToDualView: string;
|
|
352
|
+
selectSplitMode: string;
|
|
353
|
+
singleView: string;
|
|
354
|
+
dualView: string;
|
|
355
|
+
swipeView: string;
|
|
320
356
|
showLegend: string;
|
|
321
357
|
disable3DMap: string;
|
|
358
|
+
globeMap: string;
|
|
359
|
+
disableGlobeMap: string;
|
|
360
|
+
viewMode: string;
|
|
361
|
+
top: string;
|
|
322
362
|
DrawOnMap: string;
|
|
363
|
+
copyAllSketches: string;
|
|
364
|
+
convertToLayer: string;
|
|
323
365
|
selectLocale: string;
|
|
366
|
+
switchToLightTheme: string;
|
|
367
|
+
switchToDarkTheme: string;
|
|
324
368
|
showAiAssistantPanel: string;
|
|
325
369
|
hideAiAssistantPanel: string;
|
|
326
370
|
hideLayerPanel: string;
|
|
@@ -373,8 +417,13 @@ declare const _default: {
|
|
|
373
417
|
shareMapURL: string;
|
|
374
418
|
saveMap: string;
|
|
375
419
|
select: string;
|
|
420
|
+
point: string;
|
|
421
|
+
line: string;
|
|
376
422
|
polygon: string;
|
|
377
423
|
rectangle: string;
|
|
424
|
+
circle: string;
|
|
425
|
+
copyAll: string;
|
|
426
|
+
convertToLayer: string;
|
|
378
427
|
hide: string;
|
|
379
428
|
show: string;
|
|
380
429
|
};
|
|
@@ -382,6 +431,11 @@ declare const _default: {
|
|
|
382
431
|
filterLayer: string;
|
|
383
432
|
filterLayerDisabled: string;
|
|
384
433
|
copyGeometry: string;
|
|
434
|
+
editProperties: string;
|
|
435
|
+
propertyName: string;
|
|
436
|
+
propertyValue: string;
|
|
437
|
+
removeProperty: string;
|
|
438
|
+
polygonFilter: string;
|
|
385
439
|
noLayersToFilter: string;
|
|
386
440
|
};
|
|
387
441
|
exportVideoModal: {
|
|
@@ -478,6 +532,9 @@ declare const _default: {
|
|
|
478
532
|
title: string;
|
|
479
533
|
subtitle: string;
|
|
480
534
|
};
|
|
535
|
+
providerSelect: {
|
|
536
|
+
disclaimer: string;
|
|
537
|
+
};
|
|
481
538
|
exportMap: {
|
|
482
539
|
formatTitle: string;
|
|
483
540
|
formatSubtitle: string;
|
|
@@ -648,8 +705,15 @@ declare const _default: {
|
|
|
648
705
|
configUploadMessage: string;
|
|
649
706
|
browseFiles: string;
|
|
650
707
|
uploading: string;
|
|
708
|
+
downloading: string;
|
|
651
709
|
fileNotSupported: string;
|
|
652
710
|
or: string;
|
|
711
|
+
dropMessage: string;
|
|
712
|
+
urlPlaceholder: string;
|
|
713
|
+
fetch: string;
|
|
714
|
+
format: string;
|
|
715
|
+
formatAuto: string;
|
|
716
|
+
cors: string;
|
|
653
717
|
};
|
|
654
718
|
tilesetSetup: {
|
|
655
719
|
header: string;
|
|
@@ -97,6 +97,8 @@ declare const _default: {
|
|
|
97
97
|
layer: string;
|
|
98
98
|
appearance: string;
|
|
99
99
|
uniqueIdField: string;
|
|
100
|
+
hideNulls: string;
|
|
101
|
+
hideNullsDescription: string;
|
|
100
102
|
type: {
|
|
101
103
|
point: string;
|
|
102
104
|
arc: string;
|
|
@@ -112,6 +114,7 @@ declare const _default: {
|
|
|
112
114
|
hexagonid: string;
|
|
113
115
|
trip: string;
|
|
114
116
|
s2: string;
|
|
117
|
+
geohash: string;
|
|
115
118
|
'3d': string;
|
|
116
119
|
flow: string;
|
|
117
120
|
vectortile: string;
|
|
@@ -266,6 +269,16 @@ declare const _default: {
|
|
|
266
269
|
datasetTitle: {
|
|
267
270
|
showDataTable: string;
|
|
268
271
|
removeDataset: string;
|
|
272
|
+
refreshDataset: string;
|
|
273
|
+
refreshFailed: string;
|
|
274
|
+
refreshSettings: string;
|
|
275
|
+
refreshOff: string;
|
|
276
|
+
refresh10s: string;
|
|
277
|
+
refresh15s: string;
|
|
278
|
+
refresh1m: string;
|
|
279
|
+
refresh5m: string;
|
|
280
|
+
refresh15m: string;
|
|
281
|
+
refreshCustom: string;
|
|
269
282
|
};
|
|
270
283
|
datasetInfo: {
|
|
271
284
|
rowCount: string;
|
|
@@ -273,6 +286,11 @@ declare const _default: {
|
|
|
273
286
|
rasterTile: string;
|
|
274
287
|
wmsTile: string;
|
|
275
288
|
tile3d: string;
|
|
289
|
+
remoteFile: string;
|
|
290
|
+
refreshInterval: string;
|
|
291
|
+
refreshCustomSeconds: string;
|
|
292
|
+
refreshing: string;
|
|
293
|
+
refreshingPercent: string;
|
|
276
294
|
};
|
|
277
295
|
tooltip: {
|
|
278
296
|
hideLayer: string;
|
|
@@ -288,10 +306,18 @@ declare const _default: {
|
|
|
288
306
|
layerSettings: string;
|
|
289
307
|
closePanel: string;
|
|
290
308
|
switchToDualView: string;
|
|
309
|
+
selectSplitMode: string;
|
|
310
|
+
singleView: string;
|
|
311
|
+
dualView: string;
|
|
312
|
+
swipeView: string;
|
|
291
313
|
showLegend: string;
|
|
292
314
|
disable3DMap: string;
|
|
293
315
|
DrawOnMap: string;
|
|
316
|
+
copyAllSketches: string;
|
|
317
|
+
convertToLayer: string;
|
|
294
318
|
selectLocale: string;
|
|
319
|
+
switchToLightTheme: string;
|
|
320
|
+
switchToDarkTheme: string;
|
|
295
321
|
showAiAssistantPanel: string;
|
|
296
322
|
hideAiAssistantPanel: string;
|
|
297
323
|
hideLayerPanel: string;
|
|
@@ -344,8 +370,13 @@ declare const _default: {
|
|
|
344
370
|
shareMapURL: string;
|
|
345
371
|
saveMap: string;
|
|
346
372
|
select: string;
|
|
373
|
+
point: string;
|
|
374
|
+
line: string;
|
|
347
375
|
polygon: string;
|
|
348
376
|
rectangle: string;
|
|
377
|
+
circle: string;
|
|
378
|
+
copyAll: string;
|
|
379
|
+
convertToLayer: string;
|
|
349
380
|
hide: string;
|
|
350
381
|
show: string;
|
|
351
382
|
};
|
|
@@ -353,6 +384,11 @@ declare const _default: {
|
|
|
353
384
|
filterLayer: string;
|
|
354
385
|
filterLayerDisabled: string;
|
|
355
386
|
copyGeometry: string;
|
|
387
|
+
editProperties: string;
|
|
388
|
+
propertyName: string;
|
|
389
|
+
propertyValue: string;
|
|
390
|
+
removeProperty: string;
|
|
391
|
+
polygonFilter: string;
|
|
356
392
|
noLayersToFilter: string;
|
|
357
393
|
};
|
|
358
394
|
exportVideoModal: {
|
|
@@ -449,6 +485,9 @@ declare const _default: {
|
|
|
449
485
|
title: string;
|
|
450
486
|
subtitle: string;
|
|
451
487
|
};
|
|
488
|
+
providerSelect: {
|
|
489
|
+
disclaimer: string;
|
|
490
|
+
};
|
|
452
491
|
exportMap: {
|
|
453
492
|
formatTitle: string;
|
|
454
493
|
formatSubtitle: string;
|
|
@@ -619,8 +658,15 @@ declare const _default: {
|
|
|
619
658
|
configUploadMessage: string;
|
|
620
659
|
browseFiles: string;
|
|
621
660
|
uploading: string;
|
|
661
|
+
downloading: string;
|
|
622
662
|
fileNotSupported: string;
|
|
623
663
|
or: string;
|
|
664
|
+
dropMessage: string;
|
|
665
|
+
urlPlaceholder: string;
|
|
666
|
+
fetch: string;
|
|
667
|
+
format: string;
|
|
668
|
+
formatAuto: string;
|
|
669
|
+
cors: string;
|
|
624
670
|
};
|
|
625
671
|
tilesetSetup: {
|
|
626
672
|
header: string;
|
|
@@ -96,6 +96,8 @@ declare const _default: {
|
|
|
96
96
|
layer: string;
|
|
97
97
|
appearance: string;
|
|
98
98
|
uniqueIdField: string;
|
|
99
|
+
hideNulls: string;
|
|
100
|
+
hideNullsDescription: string;
|
|
99
101
|
type: {
|
|
100
102
|
point: string;
|
|
101
103
|
arc: string;
|
|
@@ -111,6 +113,7 @@ declare const _default: {
|
|
|
111
113
|
hexagonid: string;
|
|
112
114
|
trip: string;
|
|
113
115
|
s2: string;
|
|
116
|
+
geohash: string;
|
|
114
117
|
'3d': string;
|
|
115
118
|
flow: string;
|
|
116
119
|
vectortile: string;
|
|
@@ -265,6 +268,16 @@ declare const _default: {
|
|
|
265
268
|
datasetTitle: {
|
|
266
269
|
showDataTable: string;
|
|
267
270
|
removeDataset: string;
|
|
271
|
+
refreshDataset: string;
|
|
272
|
+
refreshFailed: string;
|
|
273
|
+
refreshSettings: string;
|
|
274
|
+
refreshOff: string;
|
|
275
|
+
refresh10s: string;
|
|
276
|
+
refresh15s: string;
|
|
277
|
+
refresh1m: string;
|
|
278
|
+
refresh5m: string;
|
|
279
|
+
refresh15m: string;
|
|
280
|
+
refreshCustom: string;
|
|
268
281
|
};
|
|
269
282
|
datasetInfo: {
|
|
270
283
|
rowCount: string;
|
|
@@ -272,6 +285,11 @@ declare const _default: {
|
|
|
272
285
|
rasterTile: string;
|
|
273
286
|
wmsTile: string;
|
|
274
287
|
tile3d: string;
|
|
288
|
+
remoteFile: string;
|
|
289
|
+
refreshInterval: string;
|
|
290
|
+
refreshCustomSeconds: string;
|
|
291
|
+
refreshing: string;
|
|
292
|
+
refreshingPercent: string;
|
|
275
293
|
};
|
|
276
294
|
tooltip: {
|
|
277
295
|
hideLayer: string;
|
|
@@ -287,10 +305,18 @@ declare const _default: {
|
|
|
287
305
|
layerSettings: string;
|
|
288
306
|
closePanel: string;
|
|
289
307
|
switchToDualView: string;
|
|
308
|
+
selectSplitMode: string;
|
|
309
|
+
singleView: string;
|
|
310
|
+
dualView: string;
|
|
311
|
+
swipeView: string;
|
|
290
312
|
showLegend: string;
|
|
291
313
|
disable3DMap: string;
|
|
292
314
|
DrawOnMap: string;
|
|
315
|
+
copyAllSketches: string;
|
|
316
|
+
convertToLayer: string;
|
|
293
317
|
selectLocale: string;
|
|
318
|
+
switchToLightTheme: string;
|
|
319
|
+
switchToDarkTheme: string;
|
|
294
320
|
showAiAssistantPanel: string;
|
|
295
321
|
hideAiAssistantPanel: string;
|
|
296
322
|
hideLayerPanel: string;
|
|
@@ -343,8 +369,13 @@ declare const _default: {
|
|
|
343
369
|
shareMapURL: string;
|
|
344
370
|
saveMap: string;
|
|
345
371
|
select: string;
|
|
372
|
+
point: string;
|
|
373
|
+
line: string;
|
|
346
374
|
polygon: string;
|
|
347
375
|
rectangle: string;
|
|
376
|
+
circle: string;
|
|
377
|
+
copyAll: string;
|
|
378
|
+
convertToLayer: string;
|
|
348
379
|
hide: string;
|
|
349
380
|
show: string;
|
|
350
381
|
};
|
|
@@ -352,6 +383,11 @@ declare const _default: {
|
|
|
352
383
|
filterLayer: string;
|
|
353
384
|
filterLayerDisabled: string;
|
|
354
385
|
copyGeometry: string;
|
|
386
|
+
editProperties: string;
|
|
387
|
+
propertyName: string;
|
|
388
|
+
propertyValue: string;
|
|
389
|
+
removeProperty: string;
|
|
390
|
+
polygonFilter: string;
|
|
355
391
|
noLayersToFilter: string;
|
|
356
392
|
};
|
|
357
393
|
exportVideoModal: {
|
|
@@ -448,6 +484,9 @@ declare const _default: {
|
|
|
448
484
|
title: string;
|
|
449
485
|
subtitle: string;
|
|
450
486
|
};
|
|
487
|
+
providerSelect: {
|
|
488
|
+
disclaimer: string;
|
|
489
|
+
};
|
|
451
490
|
exportMap: {
|
|
452
491
|
formatTitle: string;
|
|
453
492
|
formatSubtitle: string;
|
|
@@ -618,8 +657,15 @@ declare const _default: {
|
|
|
618
657
|
configUploadMessage: string;
|
|
619
658
|
browseFiles: string;
|
|
620
659
|
uploading: string;
|
|
660
|
+
downloading: string;
|
|
621
661
|
fileNotSupported: string;
|
|
622
662
|
or: string;
|
|
663
|
+
dropMessage: string;
|
|
664
|
+
urlPlaceholder: string;
|
|
665
|
+
fetch: string;
|
|
666
|
+
format: string;
|
|
667
|
+
formatAuto: string;
|
|
668
|
+
cors: string;
|
|
623
669
|
};
|
|
624
670
|
density: string;
|
|
625
671
|
'Bug Report': string;
|