@kepler.gl/localization 3.3.0-alpha.0 → 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 +280 -0
- package/dist/translations/cn.d.ts +286 -0
- package/dist/translations/en.d.ts +196 -0
- package/dist/translations/es.d.ts +280 -0
- package/dist/translations/fi.d.ts +307 -0
- package/dist/translations/ja.d.ts +280 -0
- package/dist/translations/pt.d.ts +309 -0
- package/dist/translations/ru.d.ts +281 -0
- package/package.json +23 -14
- package/dist/formatted-message.js +0 -22
- package/dist/messages.js +0 -46
- package/dist/translations/ca.js +0 -461
- package/dist/translations/cn.js +0 -456
- package/dist/translations/en.js +0 -593
- package/dist/translations/es.js +0 -461
- package/dist/translations/fi.js +0 -433
- package/dist/translations/ja.js +0 -460
- package/dist/translations/pt.js +0 -433
- package/dist/translations/ru.js +0 -461
|
@@ -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;
|
|
@@ -22,6 +22,7 @@ declare const _default: {
|
|
|
22
22
|
selectValue: string;
|
|
23
23
|
enterValue: string;
|
|
24
24
|
empty: string;
|
|
25
|
+
selectLayer: string;
|
|
25
26
|
};
|
|
26
27
|
misc: {
|
|
27
28
|
by: string;
|
|
@@ -47,10 +48,14 @@ declare const _default: {
|
|
|
47
48
|
label: string;
|
|
48
49
|
labelWithId: string;
|
|
49
50
|
fontSize: string;
|
|
51
|
+
fontWeight: string;
|
|
50
52
|
fontColor: string;
|
|
53
|
+
backgroundColor: string;
|
|
51
54
|
textAnchor: string;
|
|
52
55
|
alignment: string;
|
|
53
56
|
addMoreLabel: string;
|
|
57
|
+
outlineWidth: string;
|
|
58
|
+
outlineColor: string;
|
|
54
59
|
};
|
|
55
60
|
};
|
|
56
61
|
sidebar: {
|
|
@@ -59,10 +64,16 @@ declare const _default: {
|
|
|
59
64
|
filter: string;
|
|
60
65
|
interaction: string;
|
|
61
66
|
basemap: string;
|
|
67
|
+
annotation: string;
|
|
68
|
+
};
|
|
69
|
+
panelViewToggle: {
|
|
70
|
+
list: string;
|
|
71
|
+
byDataset: string;
|
|
62
72
|
};
|
|
63
73
|
};
|
|
64
74
|
layer: {
|
|
65
75
|
required: string;
|
|
76
|
+
columnModesSeparator: string;
|
|
66
77
|
radius: string;
|
|
67
78
|
color: string;
|
|
68
79
|
fillColor: string;
|
|
@@ -82,6 +93,12 @@ declare const _default: {
|
|
|
82
93
|
aggregateBy: string;
|
|
83
94
|
'3DModel': string;
|
|
84
95
|
'3DModelOptions': string;
|
|
96
|
+
service: string;
|
|
97
|
+
layer: string;
|
|
98
|
+
appearance: string;
|
|
99
|
+
uniqueIdField: string;
|
|
100
|
+
hideNulls: string;
|
|
101
|
+
hideNullsDescription: string;
|
|
85
102
|
type: {
|
|
86
103
|
point: string;
|
|
87
104
|
arc: string;
|
|
@@ -97,9 +114,21 @@ declare const _default: {
|
|
|
97
114
|
hexagonid: string;
|
|
98
115
|
trip: string;
|
|
99
116
|
s2: string;
|
|
117
|
+
geohash: string;
|
|
100
118
|
'3d': string;
|
|
119
|
+
flow: string;
|
|
120
|
+
vectortile: string;
|
|
121
|
+
rastertile: string;
|
|
122
|
+
wms: string;
|
|
123
|
+
tile3d: string;
|
|
124
|
+
};
|
|
125
|
+
wms: {
|
|
126
|
+
hover: string;
|
|
101
127
|
};
|
|
102
128
|
layerUpdateError: string;
|
|
129
|
+
interaction: string;
|
|
130
|
+
heatmap: string;
|
|
131
|
+
aggregation: string;
|
|
103
132
|
};
|
|
104
133
|
layerVisConfigs: {
|
|
105
134
|
angle: string;
|
|
@@ -115,6 +144,7 @@ declare const _default: {
|
|
|
115
144
|
billboardDescription: string;
|
|
116
145
|
fadeTrail: string;
|
|
117
146
|
opacity: string;
|
|
147
|
+
pointSize: string;
|
|
118
148
|
coverage: string;
|
|
119
149
|
outline: string;
|
|
120
150
|
colorRange: string;
|
|
@@ -124,6 +154,7 @@ declare const _default: {
|
|
|
124
154
|
targetColor: string;
|
|
125
155
|
colorAggregation: string;
|
|
126
156
|
heightAggregation: string;
|
|
157
|
+
weightAggregation: string;
|
|
127
158
|
resolutionRange: string;
|
|
128
159
|
sizeScale: string;
|
|
129
160
|
worldUnitSize: string;
|
|
@@ -141,16 +172,43 @@ declare const _default: {
|
|
|
141
172
|
enablePolygonHeight: string;
|
|
142
173
|
showWireframe: string;
|
|
143
174
|
weightIntensity: string;
|
|
175
|
+
intensity: string;
|
|
176
|
+
threshold: string;
|
|
144
177
|
zoomScale: string;
|
|
145
178
|
heightRange: string;
|
|
146
179
|
heightMultiplier: string;
|
|
147
180
|
fixedHeight: string;
|
|
148
181
|
fixedHeightDescription: string;
|
|
182
|
+
allowHover: string;
|
|
183
|
+
allowHoverDescription: string;
|
|
184
|
+
flow: {
|
|
185
|
+
fade: string;
|
|
186
|
+
fadeEnabled: string;
|
|
187
|
+
fadeAmount: string;
|
|
188
|
+
display: string;
|
|
189
|
+
renderingMode: string;
|
|
190
|
+
renderingModes: {
|
|
191
|
+
straight: string;
|
|
192
|
+
curved: string;
|
|
193
|
+
'animated-straight': string;
|
|
194
|
+
};
|
|
195
|
+
adaptiveScalesEnabled: string;
|
|
196
|
+
clusteringEnabled: string;
|
|
197
|
+
lineThicknessScale: string;
|
|
198
|
+
lineCurviness: string;
|
|
199
|
+
locationTotalsEnabled: string;
|
|
200
|
+
maxTopFlowsDisplayNum: string;
|
|
201
|
+
};
|
|
202
|
+
showNeighborOnHover: string;
|
|
203
|
+
showHighlightColor: string;
|
|
204
|
+
darkModeEnabled: string;
|
|
205
|
+
transparentBackground: string;
|
|
149
206
|
};
|
|
150
207
|
layerManager: {
|
|
151
208
|
addData: string;
|
|
152
209
|
addLayer: string;
|
|
153
210
|
layerBlending: string;
|
|
211
|
+
overlayBlending: string;
|
|
154
212
|
};
|
|
155
213
|
mapManager: {
|
|
156
214
|
mapStyle: string;
|
|
@@ -158,19 +216,81 @@ declare const _default: {
|
|
|
158
216
|
'3dBuildingColor': string;
|
|
159
217
|
backgroundColor: string;
|
|
160
218
|
};
|
|
219
|
+
effectManager: {
|
|
220
|
+
effects: string;
|
|
221
|
+
addEffect: string;
|
|
222
|
+
pickDateTime: string;
|
|
223
|
+
currentTime: string;
|
|
224
|
+
pickCurrrentTime: string;
|
|
225
|
+
date: string;
|
|
226
|
+
time: string;
|
|
227
|
+
timezone: string;
|
|
228
|
+
};
|
|
229
|
+
annotationManager: {
|
|
230
|
+
title: string;
|
|
231
|
+
addAnnotation: string;
|
|
232
|
+
type: string;
|
|
233
|
+
lineWidth: string;
|
|
234
|
+
color: string;
|
|
235
|
+
};
|
|
236
|
+
effectDescription: {
|
|
237
|
+
lightAndShadow: string;
|
|
238
|
+
ink: string;
|
|
239
|
+
brightnessContrast: string;
|
|
240
|
+
hueSaturation: string;
|
|
241
|
+
vibrance: string;
|
|
242
|
+
sepia: string;
|
|
243
|
+
dotScreen: string;
|
|
244
|
+
colorHalftone: string;
|
|
245
|
+
noise: string;
|
|
246
|
+
triangleBlur: string;
|
|
247
|
+
zoomBlur: string;
|
|
248
|
+
tiltShift: string;
|
|
249
|
+
edgeWork: string;
|
|
250
|
+
vignette: string;
|
|
251
|
+
magnify: string;
|
|
252
|
+
hexagonalPixelate: string;
|
|
253
|
+
distanceFog: string;
|
|
254
|
+
surfaceFog: string;
|
|
255
|
+
};
|
|
161
256
|
layerConfiguration: {
|
|
162
257
|
defaultDescription: string;
|
|
163
258
|
howTo: string;
|
|
259
|
+
showColorChart: string;
|
|
260
|
+
hideColorChart: string;
|
|
164
261
|
};
|
|
165
262
|
filterManager: {
|
|
166
263
|
addFilter: string;
|
|
264
|
+
timeFilterSync: string;
|
|
265
|
+
timeLayerSync: string;
|
|
266
|
+
timeLayerUnsync: string;
|
|
267
|
+
column: string;
|
|
167
268
|
};
|
|
168
269
|
datasetTitle: {
|
|
169
270
|
showDataTable: string;
|
|
170
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;
|
|
171
282
|
};
|
|
172
283
|
datasetInfo: {
|
|
173
284
|
rowCount: string;
|
|
285
|
+
vectorTile: string;
|
|
286
|
+
rasterTile: string;
|
|
287
|
+
wmsTile: string;
|
|
288
|
+
tile3d: string;
|
|
289
|
+
remoteFile: string;
|
|
290
|
+
refreshInterval: string;
|
|
291
|
+
refreshCustomSeconds: string;
|
|
292
|
+
refreshing: string;
|
|
293
|
+
refreshingPercent: string;
|
|
174
294
|
};
|
|
175
295
|
tooltip: {
|
|
176
296
|
hideLayer: string;
|
|
@@ -180,22 +300,34 @@ declare const _default: {
|
|
|
180
300
|
hide: string;
|
|
181
301
|
show: string;
|
|
182
302
|
removeLayer: string;
|
|
303
|
+
duplicateLayer: string;
|
|
304
|
+
zoomToLayer: string;
|
|
183
305
|
resetAfterError: string;
|
|
184
306
|
layerSettings: string;
|
|
185
307
|
closePanel: string;
|
|
186
308
|
switchToDualView: string;
|
|
309
|
+
selectSplitMode: string;
|
|
310
|
+
singleView: string;
|
|
311
|
+
dualView: string;
|
|
312
|
+
swipeView: string;
|
|
187
313
|
showLegend: string;
|
|
188
314
|
disable3DMap: string;
|
|
189
315
|
DrawOnMap: string;
|
|
316
|
+
copyAllSketches: string;
|
|
317
|
+
convertToLayer: string;
|
|
190
318
|
selectLocale: string;
|
|
319
|
+
switchToLightTheme: string;
|
|
320
|
+
switchToDarkTheme: string;
|
|
191
321
|
showAiAssistantPanel: string;
|
|
192
322
|
hideAiAssistantPanel: string;
|
|
193
323
|
hideLayerPanel: string;
|
|
194
324
|
showLayerPanel: string;
|
|
195
325
|
moveToTop: string;
|
|
196
326
|
selectBaseMapStyle: string;
|
|
327
|
+
removeBaseMapStyle: string;
|
|
197
328
|
delete: string;
|
|
198
329
|
timePlayback: string;
|
|
330
|
+
timeFilterSync: string;
|
|
199
331
|
cloudStorage: string;
|
|
200
332
|
'3DMap': string;
|
|
201
333
|
animationByWindow: string;
|
|
@@ -204,6 +336,23 @@ declare const _default: {
|
|
|
204
336
|
play: string;
|
|
205
337
|
pause: string;
|
|
206
338
|
reset: string;
|
|
339
|
+
export: string;
|
|
340
|
+
timeLayerSync: string;
|
|
341
|
+
timeLayerUnsync: string;
|
|
342
|
+
syncTimelineStart: string;
|
|
343
|
+
syncTimelineEnd: string;
|
|
344
|
+
showEffectPanel: string;
|
|
345
|
+
hideEffectPanel: string;
|
|
346
|
+
showAnnotationPanel: string;
|
|
347
|
+
hideAnnotationPanel: string;
|
|
348
|
+
removeAnnotation: string;
|
|
349
|
+
duplicateAnnotation: string;
|
|
350
|
+
hideAnnotation: string;
|
|
351
|
+
showAnnotation: string;
|
|
352
|
+
annotationSettings: string;
|
|
353
|
+
removeEffect: string;
|
|
354
|
+
disableEffect: string;
|
|
355
|
+
effectSettings: string;
|
|
207
356
|
};
|
|
208
357
|
toolbar: {
|
|
209
358
|
en: string;
|
|
@@ -217,14 +366,35 @@ declare const _default: {
|
|
|
217
366
|
exportImage: string;
|
|
218
367
|
exportData: string;
|
|
219
368
|
exportMap: string;
|
|
369
|
+
exportVideo: string;
|
|
220
370
|
shareMapURL: string;
|
|
221
371
|
saveMap: string;
|
|
222
372
|
select: string;
|
|
373
|
+
point: string;
|
|
374
|
+
line: string;
|
|
223
375
|
polygon: string;
|
|
224
376
|
rectangle: string;
|
|
377
|
+
circle: string;
|
|
378
|
+
copyAll: string;
|
|
379
|
+
convertToLayer: string;
|
|
225
380
|
hide: string;
|
|
226
381
|
show: string;
|
|
227
382
|
};
|
|
383
|
+
editor: {
|
|
384
|
+
filterLayer: string;
|
|
385
|
+
filterLayerDisabled: string;
|
|
386
|
+
copyGeometry: string;
|
|
387
|
+
editProperties: string;
|
|
388
|
+
propertyName: string;
|
|
389
|
+
propertyValue: string;
|
|
390
|
+
removeProperty: string;
|
|
391
|
+
polygonFilter: string;
|
|
392
|
+
noLayersToFilter: string;
|
|
393
|
+
};
|
|
394
|
+
exportVideoModal: {
|
|
395
|
+
animation: string;
|
|
396
|
+
settings: string;
|
|
397
|
+
};
|
|
228
398
|
modal: {
|
|
229
399
|
title: {
|
|
230
400
|
deleteDataset: string;
|
|
@@ -235,6 +405,7 @@ declare const _default: {
|
|
|
235
405
|
addCustomMapboxStyle: string;
|
|
236
406
|
saveMap: string;
|
|
237
407
|
shareURL: string;
|
|
408
|
+
exportVideo: string;
|
|
238
409
|
};
|
|
239
410
|
button: {
|
|
240
411
|
delete: string;
|
|
@@ -258,6 +429,10 @@ declare const _default: {
|
|
|
258
429
|
mapLegendTitle: string;
|
|
259
430
|
mapLegendAdd: string;
|
|
260
431
|
};
|
|
432
|
+
exportVideo: {
|
|
433
|
+
animation: string;
|
|
434
|
+
settings: string;
|
|
435
|
+
};
|
|
261
436
|
exportData: {
|
|
262
437
|
datasetTitle: string;
|
|
263
438
|
datasetSubtitle: string;
|
|
@@ -270,6 +445,7 @@ declare const _default: {
|
|
|
270
445
|
unfilteredData: string;
|
|
271
446
|
fileCount: string;
|
|
272
447
|
rowCount: string;
|
|
448
|
+
tiledDatasetWarning: string;
|
|
273
449
|
};
|
|
274
450
|
deleteData: {
|
|
275
451
|
warning: string;
|
|
@@ -285,11 +461,15 @@ declare const _default: {
|
|
|
285
461
|
publishSubtitle7: string;
|
|
286
462
|
exampleToken: string;
|
|
287
463
|
pasteTitle: string;
|
|
464
|
+
pasteSubtitle0: string;
|
|
288
465
|
pasteSubtitle1: string;
|
|
289
466
|
pasteSubtitle2: string;
|
|
467
|
+
pasteSubtitle3: string;
|
|
468
|
+
pasteSubtitle4: string;
|
|
290
469
|
namingTitle: string;
|
|
291
470
|
};
|
|
292
471
|
shareMap: {
|
|
472
|
+
title: string;
|
|
293
473
|
shareUriTitle: string;
|
|
294
474
|
shareUriSubtitle: string;
|
|
295
475
|
cloudTitle: string;
|
|
@@ -305,6 +485,9 @@ declare const _default: {
|
|
|
305
485
|
title: string;
|
|
306
486
|
subtitle: string;
|
|
307
487
|
};
|
|
488
|
+
providerSelect: {
|
|
489
|
+
disclaimer: string;
|
|
490
|
+
};
|
|
308
491
|
exportMap: {
|
|
309
492
|
formatTitle: string;
|
|
310
493
|
formatSubtitle: string;
|
|
@@ -314,6 +497,7 @@ declare const _default: {
|
|
|
314
497
|
tokenSubtitle: string;
|
|
315
498
|
tokenPlaceholder: string;
|
|
316
499
|
tokenMisuseWarning: string;
|
|
500
|
+
tokenSecurityWarning: string;
|
|
317
501
|
tokenDisclaimer: string;
|
|
318
502
|
tokenUpdate: string;
|
|
319
503
|
modeTitle: string;
|
|
@@ -335,6 +519,7 @@ declare const _default: {
|
|
|
335
519
|
};
|
|
336
520
|
loadData: {
|
|
337
521
|
upload: string;
|
|
522
|
+
tileset: string;
|
|
338
523
|
storage: string;
|
|
339
524
|
};
|
|
340
525
|
tripInfo: {
|
|
@@ -343,6 +528,8 @@ declare const _default: {
|
|
|
343
528
|
code: string;
|
|
344
529
|
description2: string;
|
|
345
530
|
example: string;
|
|
531
|
+
titleTable: string;
|
|
532
|
+
descriptionTable1: string;
|
|
346
533
|
};
|
|
347
534
|
iconInfo: {
|
|
348
535
|
title: string;
|
|
@@ -352,6 +539,12 @@ declare const _default: {
|
|
|
352
539
|
example: string;
|
|
353
540
|
icons: string;
|
|
354
541
|
};
|
|
542
|
+
polygonInfo: {
|
|
543
|
+
title: string;
|
|
544
|
+
titleTable: string;
|
|
545
|
+
descriptionTable: string;
|
|
546
|
+
exampleTable: string;
|
|
547
|
+
};
|
|
355
548
|
storageMapViewer: {
|
|
356
549
|
lastModified: string;
|
|
357
550
|
back: string;
|
|
@@ -365,11 +558,13 @@ declare const _default: {
|
|
|
365
558
|
goToPage: string;
|
|
366
559
|
storageMaps: string;
|
|
367
560
|
noSavedMaps: string;
|
|
561
|
+
foursquareStorageMessage: string;
|
|
368
562
|
};
|
|
369
563
|
};
|
|
370
564
|
header: {
|
|
371
565
|
visibleLayers: string;
|
|
372
566
|
layerLegend: string;
|
|
567
|
+
annotations: string;
|
|
373
568
|
};
|
|
374
569
|
interactions: {
|
|
375
570
|
tooltip: string;
|
|
@@ -383,13 +578,29 @@ declare const _default: {
|
|
|
383
578
|
normal: string;
|
|
384
579
|
subtractive: string;
|
|
385
580
|
};
|
|
581
|
+
overlayBlending: {
|
|
582
|
+
title: string;
|
|
583
|
+
description: string;
|
|
584
|
+
screen: string;
|
|
585
|
+
normal: string;
|
|
586
|
+
darken: string;
|
|
587
|
+
};
|
|
386
588
|
columns: {
|
|
387
589
|
title: string;
|
|
388
590
|
lat: string;
|
|
389
591
|
lng: string;
|
|
390
592
|
altitude: string;
|
|
593
|
+
alt: string;
|
|
594
|
+
id: string;
|
|
595
|
+
timestamp: string;
|
|
391
596
|
icon: string;
|
|
392
597
|
geojson: string;
|
|
598
|
+
geoarrow: string;
|
|
599
|
+
geoarrow0: string;
|
|
600
|
+
geoarrow1: string;
|
|
601
|
+
token: string;
|
|
602
|
+
sortBy: string;
|
|
603
|
+
neighbors: string;
|
|
393
604
|
arc: {
|
|
394
605
|
lat0: string;
|
|
395
606
|
lng0: string;
|
|
@@ -407,17 +618,37 @@ declare const _default: {
|
|
|
407
618
|
worldUnitSize: string;
|
|
408
619
|
};
|
|
409
620
|
hex_id: string;
|
|
621
|
+
flow: {
|
|
622
|
+
source: {
|
|
623
|
+
lat: string;
|
|
624
|
+
lng: string;
|
|
625
|
+
name: string;
|
|
626
|
+
h3: string;
|
|
627
|
+
};
|
|
628
|
+
target: {
|
|
629
|
+
lat: string;
|
|
630
|
+
lng: string;
|
|
631
|
+
name: string;
|
|
632
|
+
h3: string;
|
|
633
|
+
};
|
|
634
|
+
count: string;
|
|
635
|
+
};
|
|
410
636
|
};
|
|
411
637
|
color: {
|
|
412
638
|
customPalette: string;
|
|
413
639
|
steps: string;
|
|
414
640
|
type: string;
|
|
641
|
+
colorBlindSafe: string;
|
|
415
642
|
reversed: string;
|
|
643
|
+
disableStepReason: string;
|
|
644
|
+
preset: string;
|
|
645
|
+
picker: string;
|
|
416
646
|
};
|
|
417
647
|
scale: {
|
|
418
648
|
colorScale: string;
|
|
419
649
|
sizeScale: string;
|
|
420
650
|
strokeScale: string;
|
|
651
|
+
strokeColorScale: string;
|
|
421
652
|
scale: string;
|
|
422
653
|
};
|
|
423
654
|
fileUploader: {
|
|
@@ -427,8 +658,20 @@ declare const _default: {
|
|
|
427
658
|
configUploadMessage: string;
|
|
428
659
|
browseFiles: string;
|
|
429
660
|
uploading: string;
|
|
661
|
+
downloading: string;
|
|
430
662
|
fileNotSupported: string;
|
|
431
663
|
or: string;
|
|
664
|
+
dropMessage: string;
|
|
665
|
+
urlPlaceholder: string;
|
|
666
|
+
fetch: string;
|
|
667
|
+
format: string;
|
|
668
|
+
formatAuto: string;
|
|
669
|
+
cors: string;
|
|
670
|
+
};
|
|
671
|
+
tilesetSetup: {
|
|
672
|
+
header: string;
|
|
673
|
+
rasterTileHeader: string;
|
|
674
|
+
addTilesetText: string;
|
|
432
675
|
};
|
|
433
676
|
geocoder: {
|
|
434
677
|
title: string;
|
|
@@ -453,5 +696,42 @@ declare const _default: {
|
|
|
453
696
|
'User Guide': string;
|
|
454
697
|
Save: string;
|
|
455
698
|
Share: string;
|
|
699
|
+
flow: {
|
|
700
|
+
tooltip: {
|
|
701
|
+
location: {
|
|
702
|
+
name: string;
|
|
703
|
+
incomingCount: string;
|
|
704
|
+
outgoingCount: string;
|
|
705
|
+
internalCount: string;
|
|
706
|
+
};
|
|
707
|
+
flow: {
|
|
708
|
+
sourceName: string;
|
|
709
|
+
targetName: string;
|
|
710
|
+
count: string;
|
|
711
|
+
};
|
|
712
|
+
};
|
|
713
|
+
};
|
|
714
|
+
mapLegend: {
|
|
715
|
+
layers: {
|
|
716
|
+
line: {
|
|
717
|
+
singleColor: {
|
|
718
|
+
sourceColor: string;
|
|
719
|
+
targetColor: string;
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
arc: {
|
|
723
|
+
singleColor: {
|
|
724
|
+
sourceColor: string;
|
|
725
|
+
targetColor: string;
|
|
726
|
+
};
|
|
727
|
+
};
|
|
728
|
+
default: {
|
|
729
|
+
singleColor: {
|
|
730
|
+
color: string;
|
|
731
|
+
strokeColor: string;
|
|
732
|
+
};
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
};
|
|
456
736
|
};
|
|
457
737
|
export default _default;
|