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