@graphysdk/react-renderer 1.8.1-beta.1787133579967 → 1.8.1-beta.1787147748310

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.
@@ -139,6 +139,15 @@ export declare const CalloutsSection: ({ title, layout, preview }: OverridableSe
139
139
  */
140
140
  export declare const CaptionSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
141
141
 
142
+ /** Every phrase a chart can say. The editing surface adds its own — see `editable/i18n/editor-i18n`. */
143
+ declare type ChartPhrases = typeof EN_GB;
144
+
145
+ /**
146
+ * Which arrangement a combo's halves take: bars under the line, or lines throughout. Shown only for a
147
+ * chart that is already a combo — the type picker is what makes one.
148
+ */
149
+ export declare const ComboSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
150
+
142
151
  /**
143
152
  * A control where one gesture can produce a run of changes — a drag, a burst of typing, a held
144
153
  * arrow key.
@@ -202,565 +211,10 @@ export declare interface ControlRegistry {
202
211
  Select?: ComponentType<SelectControlProps>;
203
212
  }
204
213
 
205
- declare interface CoreIntlProviderProps {
206
- locale?: I18nLocale;
207
- children: ReactNode;
208
- i18nOverrides?: I18nRuntimeOverrides;
209
- }
210
-
211
214
  declare type DeepValue<T, Path extends string> = Path extends `${infer First}.${infer Rest}` ? First extends keyof T ? DeepValue<T[First], Rest> : never : Path extends keyof T ? T[Path] : never;
212
215
 
213
216
  declare const dictionaries: {
214
217
  readonly 'en-GB': {
215
- readonly common: {
216
- readonly save: "Save";
217
- readonly cancel: "Cancel";
218
- readonly confirm: "Confirm";
219
- readonly delete: "Delete";
220
- readonly confirmDelete: (params: {
221
- item: string;
222
- }) => string;
223
- readonly abbreviations: {
224
- readonly thousands: "k";
225
- readonly millions: "m";
226
- readonly billions: "b";
227
- };
228
- };
229
- readonly editor: {
230
- readonly title: "Graphy Editor";
231
- readonly description: "Edit your content here";
232
- readonly graphTypes: {
233
- readonly column: "Column";
234
- readonly columnStacked: "Stacked column";
235
- readonly columnStackedFill: "100% stacked column";
236
- readonly bar: "Bar";
237
- readonly barStacked: "Stacked bar";
238
- readonly barStackedFill: "100% stacked bar";
239
- readonly line: "Line";
240
- readonly areaStacked: "Stacked area";
241
- readonly pie: "Pie";
242
- readonly donut: "Donut";
243
- readonly scatter: "Scatter";
244
- readonly bubble: "Bubble";
245
- readonly funnel: "Funnel";
246
- readonly combo: "Combo";
247
- readonly heatmap: "Heatmap";
248
- readonly waterfall: "Waterfall";
249
- readonly mekko: "Mekko";
250
- readonly table: "Table";
251
- };
252
- readonly sizePanel: {
253
- readonly toolbarButton: "Size";
254
- readonly presetsSection: {
255
- readonly title: "Presets";
256
- };
257
- readonly customSizeSection: {
258
- readonly title: "Custom size";
259
- };
260
- readonly presets: {
261
- readonly googleSlides: "Google Slides / PowerPoint";
262
- readonly webEmail: "Web / email";
263
- readonly linkedIn: "LinkedIn post";
264
- readonly instagram: "Instagram post";
265
- readonly tiktok: "TikTok / Instagram story";
266
- readonly twitter: "X (Twitter)";
267
- readonly mobile: "Mobile";
268
- };
269
- readonly inputs: {
270
- readonly unitLabel: "px";
271
- };
272
- readonly validation: {
273
- readonly maxSizeError: (params: {
274
- max: number;
275
- }) => string;
276
- readonly minSizeError: (params: {
277
- min: number;
278
- }) => string;
279
- };
280
- };
281
- readonly graphPanel: {
282
- readonly toolbarButton: "Graph";
283
- readonly graphTypeSection: {
284
- readonly title: "Graph type";
285
- };
286
- readonly mappingSection: {
287
- readonly title: "Data";
288
- readonly x: "X-axis";
289
- readonly y: "Value";
290
- readonly color: "Colour";
291
- readonly size: "Size";
292
- readonly label: "Label";
293
- readonly none: "None";
294
- };
295
- readonly polarSection: {
296
- readonly title: "Polar";
297
- readonly innerRadius: "Inner radius";
298
- readonly startAngle: "Start angle";
299
- };
300
- readonly barSection: {
301
- readonly title: "Bars";
302
- readonly thickness: "Bar thickness";
303
- readonly rounding: "Rounding";
304
- readonly roundingOptions: {
305
- readonly none: "None";
306
- readonly xs: "XS";
307
- readonly sm: "S";
308
- readonly md: "M";
309
- readonly lg: "L";
310
- readonly xl: "XL";
311
- readonly full: "Full";
312
- };
313
- };
314
- readonly graphOptionsSection: {
315
- readonly title: "Graph options";
316
- };
317
- readonly gridSection: {
318
- readonly title: "Grid";
319
- readonly horizontalGridLines: "Horizontal lines";
320
- readonly verticalGridLines: "Vertical lines";
321
- readonly rings: "Rings";
322
- readonly spokes: "Spokes";
323
- readonly gridStyle: "Grid style";
324
- readonly gridThickness: "Grid thickness";
325
- readonly lineStyles: {
326
- readonly solid: "Solid";
327
- readonly dashed: "Dashed";
328
- readonly dotted: "Dotted";
329
- };
330
- };
331
- readonly graphOptions: {
332
- readonly sortBars: "Sort high → low";
333
- readonly showPoints: "Show points";
334
- readonly lineFill: "Fill under line";
335
- readonly smoothLines: "Smooth lines";
336
- readonly stackTotals: "Stack totals";
337
- readonly dataLabels: "Data labels";
338
- readonly showPercentages: "Show percentages";
339
- readonly categoryLabels: "Category labels";
340
- };
341
- readonly legendSection: {
342
- readonly title: "Legend";
343
- readonly auto: "Auto";
344
- readonly top: "Top";
345
- readonly bottom: "Bottom";
346
- readonly left: "Left";
347
- readonly right: "Right";
348
- readonly none: "None";
349
- readonly alignLabel: "Alignment";
350
- readonly align: {
351
- readonly auto: "Auto";
352
- readonly start: "Start";
353
- readonly center: "Center";
354
- readonly end: "End";
355
- };
356
- readonly displayLabel: "Style";
357
- readonly display: {
358
- readonly auto: "Auto";
359
- readonly pill: "Pills";
360
- readonly direct: "Direct";
361
- };
362
- };
363
- readonly numberFormatSection: {
364
- readonly title: "Number format";
365
- };
366
- readonly numberFormat: {
367
- readonly abbreviationLabel: "Abbreviation";
368
- readonly valueLabel: "Value";
369
- readonly decimalPlacesLabel: "Decimal places";
370
- readonly options: {
371
- readonly auto: "Auto";
372
- readonly custom: "Custom";
373
- readonly none: "None";
374
- };
375
- };
376
- readonly headlineNumberSize: {
377
- readonly sizeLabel: "Size";
378
- readonly valueLabel: "Value";
379
- readonly sizes: {
380
- readonly small: "S";
381
- readonly medium: "M";
382
- readonly large: "L";
383
- };
384
- };
385
- readonly lineThickness: {
386
- readonly label: "Line thickness";
387
- };
388
- readonly pointSize: {
389
- readonly label: "Point size";
390
- readonly options: {
391
- readonly auto: "Auto";
392
- readonly custom: "Custom";
393
- };
394
- };
395
- readonly headlineNumberSection: {
396
- readonly title: "Headline number";
397
- readonly toggle: "Visible";
398
- readonly metricLabel: "Metric";
399
- readonly compareWithLabel: "Compare with";
400
- readonly metrics: {
401
- readonly total: "Total";
402
- readonly average: "Avg.";
403
- readonly current: "Last";
404
- readonly conversion: "Conversion";
405
- readonly left: "Left";
406
- };
407
- readonly comparison: {
408
- readonly first: "First";
409
- readonly previous: "Previous";
410
- };
411
- readonly position: {
412
- readonly above: "Above";
413
- readonly center: "Center";
414
- };
415
- };
416
- readonly treatEmptyValues: {
417
- readonly leaveGap: {
418
- readonly label: "Leave gap in chart";
419
- readonly description: "Leaves a visible break in the line where data is missing";
420
- };
421
- readonly fillZero: {
422
- readonly label: "Fill with zero";
423
- readonly description: "Displays missing data points as zero";
424
- };
425
- readonly connectGaps: {
426
- readonly label: "Connect across gaps";
427
- readonly description: "Joins the line between available points, skipping the gap";
428
- };
429
- };
430
- readonly comboChartAppearance: {
431
- readonly title: "Combo chart appearance";
432
- readonly groupedBars: "Grouped bars";
433
- readonly stackedBars: "Stacked bars";
434
- readonly linesOnly: "Lines only";
435
- };
436
- };
437
- readonly axesPanel: {
438
- readonly toolbarButton: "Axes";
439
- readonly mainAxisSection: {
440
- readonly yAxis: "Y-axis";
441
- readonly xAxis: "X-axis";
442
- };
443
- readonly crossAxisSection: {
444
- readonly xAxis: "X-axis";
445
- readonly yAxis: "Y-axis";
446
- };
447
- readonly controls: {
448
- readonly title: "Title";
449
- readonly visible: "Visible";
450
- readonly ticks: "Ticks";
451
- readonly labels: "Labels";
452
- readonly position: "Position";
453
- readonly scale: "Scale";
454
- readonly startFrom: "Start from";
455
- readonly endAt: "End at";
456
- readonly value: "Value";
457
- readonly numberOfAxes: "Number of axes";
458
- readonly reverse: "Reverse";
459
- };
460
- readonly labelMode: {
461
- readonly auto: "Auto";
462
- readonly edges: "Edges";
463
- };
464
- readonly scale: {
465
- readonly auto: "Auto";
466
- readonly log: "Log";
467
- };
468
- readonly startFrom: {
469
- readonly auto: "Auto";
470
- readonly zero: "Zero";
471
- readonly custom: "Custom";
472
- };
473
- readonly endAt: {
474
- readonly auto: "Auto";
475
- readonly custom: "Custom";
476
- };
477
- readonly axisCount: {
478
- readonly single: "Single";
479
- readonly double: "Double";
480
- };
481
- readonly position: {
482
- readonly left: "Left";
483
- readonly right: "Right";
484
- readonly top: "Top";
485
- readonly bottom: "Bottom";
486
- };
487
- readonly yesNo: {
488
- readonly yes: "Yes";
489
- readonly no: "No";
490
- };
491
- };
492
- readonly colorPanel: {
493
- readonly toolbarButton: "Color";
494
- readonly themeSection: {
495
- readonly title: "Theme";
496
- };
497
- readonly appearanceSection: {
498
- readonly title: "Appearance";
499
- readonly highlightStyle: "Highlight";
500
- };
501
- readonly paletteSection: {
502
- readonly title: "Palette";
503
- readonly colorScheme: "Color scheme";
504
- readonly colors: "Colors";
505
- readonly colorPalettes: "Color palettes";
506
- };
507
- readonly paletteMode: {
508
- readonly preset: "Preset";
509
- readonly brand: "Brand";
510
- readonly freestyle: "Freestyle";
511
- };
512
- readonly paletteThemes: {
513
- readonly colorful: "Colorful";
514
- readonly pastel: "Pastel";
515
- readonly neon: "Neon";
516
- };
517
- readonly backgroundSection: {
518
- readonly title: "Background";
519
- readonly black: "Black";
520
- readonly white: "White";
521
- readonly grey: "Grey";
522
- readonly tint: "Tint";
523
- readonly custom: "Custom";
524
- readonly none: "None";
525
- };
526
- readonly borderSection: {
527
- readonly title: "Border";
528
- readonly borderColor: "Border color";
529
- readonly thickness: "Thickness";
530
- readonly cornerRadius: "Corner radius";
531
- };
532
- readonly borderType: {
533
- readonly solid: "Solid";
534
- readonly gradient: "Gradient";
535
- readonly grey: "Grey";
536
- readonly preset: "Preset";
537
- readonly custom: "Custom";
538
- readonly none: "None";
539
- };
540
- readonly presetGradients: {
541
- readonly lilac: "Lilac";
542
- readonly neonPink: "Neon Pink";
543
- readonly blackberry: "Blackberry";
544
- readonly sun: "Sun";
545
- readonly iceland: "Iceland";
546
- readonly sunset: "Sunset";
547
- readonly ultraviolet: "Ultraviolet";
548
- readonly purple: "Purple";
549
- readonly iceCream: "Ice Cream";
550
- readonly mint: "Mint";
551
- readonly cool: "Cool";
552
- readonly fresh: "Fresh";
553
- };
554
- };
555
- readonly designPanel: {
556
- readonly toolbarButton: "Design";
557
- readonly defaultExpanded: "Palette";
558
- };
559
- readonly annotatePanel: {
560
- readonly toolbarButton: "Annotate";
561
- readonly callOutSection: {
562
- readonly title: "Callouts";
563
- readonly text: "Text";
564
- readonly arrow: "Arrow";
565
- readonly box: "Box";
566
- readonly difference: "Difference";
567
- };
568
- readonly highlightSection: {
569
- readonly title: "Highlight";
570
- readonly button: "Highlight";
571
- readonly colorLabel: "Highlight color";
572
- };
573
- };
574
- readonly annotationsPanel: {
575
- readonly toolbarButton: "Annotate";
576
- readonly freeformSection: {
577
- readonly title: "Freeform";
578
- readonly text: "Text";
579
- readonly arrow: "Arrow";
580
- readonly box: "Box";
581
- readonly difference: "Difference";
582
- };
583
- readonly goalSection: {
584
- readonly title: "Goal";
585
- readonly labelControl: "Label";
586
- readonly labelPlaceholder: "Goal";
587
- readonly labelAriaLabel: "Custom goal label";
588
- readonly valueControl: "Goal value";
589
- readonly valueAriaLabel: "Goal value";
590
- readonly byDate: "By date";
591
- readonly xAxisValue: "X-axis value";
592
- readonly optional: "(optional)";
593
- };
594
- readonly trendsAndAveragesSection: {
595
- readonly title: "Trends and Averages";
596
- readonly trend: "Trend";
597
- readonly average: "Average";
598
- };
599
- readonly trendType: {
600
- readonly label: "Trend type";
601
- readonly placeholder: "Trend type";
602
- readonly options: {
603
- readonly linear: "Linear";
604
- readonly exponential: "Exponential";
605
- readonly quadratic: "Quadratic";
606
- readonly polynomial: "Polynomial";
607
- readonly logarithmic: "Logarithmic";
608
- readonly power: "Power";
609
- readonly loess: "Loess";
610
- };
611
- };
612
- readonly averageLineSeries: {
613
- readonly label: "Average line series";
614
- readonly placeholder: "Select series";
615
- readonly ariaLabel: "Series dropdown for average line";
616
- };
617
- readonly highlightSection: {
618
- readonly title: "Highlight";
619
- readonly button: "Highlight";
620
- readonly fadeColorLabel: "Fade color";
621
- };
622
- readonly titleAndSubtitleSection: {
623
- readonly title: "Title & Subtitle";
624
- readonly toggleTitle: "Title";
625
- readonly subtitle: "Subtitle";
626
- };
627
- readonly captionAndSourceSection: {
628
- readonly title: "Caption & Source";
629
- readonly caption: "Caption";
630
- readonly source: "Source";
631
- readonly url: "URL";
632
- readonly name: "Name";
633
- };
634
- };
635
- readonly elementsPanel: {
636
- readonly contentVisible: "Visible";
637
- readonly contentValue: "Value";
638
- readonly toolbarButton: "Elements";
639
- readonly headerSection: {
640
- readonly title: "Header";
641
- readonly toggleTitle: "Title";
642
- readonly subtitle: "Subtitle";
643
- };
644
- readonly footerSection: {
645
- readonly title: "Footer";
646
- readonly caption: "Caption";
647
- readonly source: "Source";
648
- readonly url: "URL";
649
- readonly name: "Name";
650
- };
651
- readonly textSizeSection: {
652
- readonly title: "Text size";
653
- readonly scaleFormat: (params: {
654
- value: string;
655
- }) => string;
656
- };
657
- readonly fontSection: {
658
- readonly title: "Font";
659
- };
660
- readonly sourceSection: {
661
- readonly title: "Source";
662
- readonly url: "URL";
663
- readonly name: "Name";
664
- };
665
- };
666
- readonly powerUpPanel: {
667
- readonly toolbarButton: "Power-ups";
668
- readonly goalSection: {
669
- readonly title: "Goal";
670
- readonly toggle: "Goal";
671
- readonly labelControl: "Label";
672
- readonly labelPlaceholder: "Goal";
673
- readonly labelAriaLabel: "Custom goal label";
674
- readonly valueControl: "Goal value";
675
- readonly byDate: "By date";
676
- readonly xAxisValue: "X-axis value";
677
- readonly optional: " (optional)";
678
- readonly xAxisReferenceAriaLabel: "X-axis reference value";
679
- readonly anyXAxisValue: "Any x-axis value";
680
- readonly selectValuePlaceholder: "Select value";
681
- };
682
- readonly trendSection: {
683
- readonly title: "Trend";
684
- readonly toggle: "Trend";
685
- };
686
- readonly averageSection: {
687
- readonly title: "Average";
688
- readonly toggle: "Average";
689
- readonly seriesLabel: "Average line series";
690
- readonly seriesPlaceholder: "Select series";
691
- readonly seriesAriaLabel: "Series dropdown for average line";
692
- };
693
- readonly trendType: {
694
- readonly label: "Trend type";
695
- readonly placeholder: "Trend type";
696
- readonly options: {
697
- readonly linear: "Linear";
698
- readonly exponential: "Exponential";
699
- readonly quadratic: "Quadratic";
700
- readonly polynomial: "Polynomial";
701
- readonly logarithmic: "Logarithmic";
702
- readonly power: "Power";
703
- readonly loess: "Loess";
704
- };
705
- };
706
- readonly valueInput: {
707
- readonly percentagePlaceholder: "Percentage";
708
- readonly numberPlaceholder: "Number";
709
- readonly percentageSymbol: "%";
710
- };
711
- };
712
- readonly highlighting: {
713
- readonly modeHelper: {
714
- readonly title: "Highlight mode";
715
- readonly hover: "Hover";
716
- readonly toHighlight: "to highlight";
717
- readonly anyElement: "any element";
718
- readonly escToExit: "to exit";
719
- readonly esc: "ESC";
720
- };
721
- readonly emptyState: "No highlight options available";
722
- readonly deleteAriaLabel: "Delete highlight";
723
- readonly highlightStyle: {
724
- readonly tint: "Tint";
725
- readonly grey: "Grey";
726
- };
727
- };
728
- readonly fineTunePanel: {
729
- readonly toolbarButton: "Fine tune";
730
- readonly detailSection: {
731
- readonly title: "Detail";
732
- readonly missingValues: "Missing values";
733
- };
734
- readonly lineStyleSection: {
735
- readonly title: "Line style";
736
- readonly lineCurve: "Line curve";
737
- readonly sharp: "Sharp";
738
- readonly smooth: "Smooth";
739
- };
740
- };
741
- readonly customThemeEditor: {
742
- readonly patternDropdownAriaLabel: "Pattern dropdown for series";
743
- readonly patterns: {
744
- readonly solid: "Solid";
745
- readonly pattern: "Pattern";
746
- readonly dotted: "Dotted";
747
- readonly dashed: "Dashed";
748
- readonly hatched: "Hatched";
749
- };
750
- readonly heatmapColorLabel: "Color";
751
- };
752
- readonly accessibility: {
753
- readonly toggleSection: (params: {
754
- title: string;
755
- }) => string;
756
- };
757
- readonly graphyDefaults: {
758
- readonly themeOptions: {
759
- readonly light: "Light";
760
- readonly dark: "Dark";
761
- };
762
- };
763
- };
764
218
  readonly graph: {
765
219
  readonly loading: "Loading";
766
220
  readonly error: "Something went wrong";
@@ -855,790 +309,14 @@ declare const dictionaries: {
855
309
  value: string;
856
310
  }) => string;
857
311
  };
858
- readonly titleEditor: {
859
- readonly titlePlaceholder: "Untitled";
860
- readonly subtitlePlaceholder: "Add a subtitle";
861
- };
862
- readonly toolbar: {
863
- readonly formatting: {
864
- readonly bold: "Bold";
865
- readonly italic: "Italic";
866
- readonly underline: "Underline";
867
- readonly link: "Link";
868
- };
869
- readonly link: {
870
- readonly ariaLabel: "Create link";
871
- readonly placeholder: "Type or paste a link...";
872
- readonly submit: "Submit";
873
- readonly urlLabel: "Link URL";
874
- readonly apply: "Apply link";
875
- };
876
- readonly font: {
877
- readonly label: "Font";
878
- readonly ariaLabel: "Font family";
879
- };
880
- readonly heading: {
881
- readonly label: "Heading level";
882
- readonly ariaLabel: "Text style";
883
- readonly text: "Text";
884
- readonly caption: "Caption";
885
- readonly heading1: "Heading 1";
886
- readonly heading2: "Heading 2";
887
- readonly heading3: "Heading 3";
888
- };
889
- readonly textAlign: {
890
- readonly left: "Align left";
891
- readonly center: "Align center";
892
- readonly right: "Align right";
893
- };
894
- readonly color: {
895
- readonly label: "Text color";
896
- };
897
- };
898
- readonly colorDropdown: {
899
- readonly colors: "Colors";
900
- readonly chartColors: "Chart colors";
901
- readonly custom: "Custom";
902
- readonly opacity: "Opacity";
903
- readonly transparent: "Transparent";
904
- readonly pickCustom: "Pick custom color";
905
- readonly pickColor: "Pick color";
906
- };
907
312
  readonly legend: {
908
313
  readonly hiddenItems: "Hidden legend items";
909
314
  };
910
- readonly annotations: {
911
- readonly differenceArrowToolbar: {
912
- readonly label: "Difference arrow options";
913
- readonly labelKind: {
914
- readonly ariaLabel: "Label";
915
- readonly absoluteDifference: "Absolute change";
916
- readonly relativeDifference: "Percentage change";
917
- readonly proportion: "Proportion";
918
- readonly suspectValue: "This value divides by a baseline of zero.";
919
- readonly incomparableEnds: "The two ends measure different quantities, so a difference between them has no meaning.";
920
- };
921
- readonly color: "Arrow colour";
922
- readonly size: {
923
- readonly ariaLabel: "Size";
924
- readonly small: "Small";
925
- readonly medium: "Medium";
926
- readonly large: "Large";
927
- };
928
- readonly swap: "Swap direction";
929
- readonly remove: "Remove arrow";
930
- };
931
- readonly shapeToolbar: {
932
- readonly label: "Shape options";
933
- readonly color: "Shape colour";
934
- readonly border: {
935
- readonly ariaLabel: "Border";
936
- readonly none: "None";
937
- readonly thin: "Thin (2px)";
938
- readonly medium: "Medium (8px)";
939
- readonly thick: "Thick (16px)";
940
- };
941
- readonly remove: "Remove shape";
942
- readonly resize: {
943
- readonly 'top-left': "Resize from the top left";
944
- readonly 'top-right': "Resize from the top right";
945
- readonly 'bottom-right': "Resize from the bottom right";
946
- readonly 'bottom-left': "Resize from the bottom left";
947
- };
948
- };
949
- readonly arrowToolbar: {
950
- readonly label: "Arrow options";
951
- readonly color: "Arrow colour";
952
- readonly thickness: {
953
- readonly ariaLabel: "Thickness";
954
- readonly thin: "Thin";
955
- readonly medium: "Medium";
956
- readonly thick: "Thick";
957
- };
958
- readonly startArrowhead: "Start of the arrow";
959
- readonly endArrowhead: "End of the arrow";
960
- readonly arrowhead: {
961
- readonly lineArrow: "Line arrow";
962
- readonly none: "None";
963
- };
964
- readonly lineStyle: {
965
- readonly ariaLabel: "Line style";
966
- readonly solid: "Solid";
967
- readonly dashed: "Dotted";
968
- };
969
- readonly sticker: "Sticker effect";
970
- readonly remove: "Remove arrow";
971
- readonly moveEndpoint: {
972
- readonly start: "Move the start of the arrow";
973
- readonly end: "Move the end of the arrow";
974
- };
975
- };
976
- readonly baseMenu: {
977
- readonly pinNumber: "Pin number";
978
- readonly unpinNumber: "Unpin number";
979
- readonly annotate: "Annotate";
980
- readonly removeAnnotation: "Remove annotation";
981
- readonly highlight: "Highlight";
982
- readonly highlightWithLabel: (params: {
983
- label: string;
984
- }) => string;
985
- readonly removeHighlight: "Remove highlight";
986
- readonly differenceArrow: "Difference arrow";
987
- readonly addSticker: "Add sticker";
988
- readonly removeSticker: "Remove sticker";
989
- };
990
- readonly textMenu: {
991
- readonly title: "Annotate";
992
- readonly placeholder: "Add a comment";
993
- readonly addButton: "Add";
994
- };
995
- readonly highlights: {
996
- readonly menuTitle: "Highlight";
997
- readonly labels: {
998
- readonly bar: "bar";
999
- readonly barGroup: "group";
1000
- readonly barStack: "stack";
1001
- readonly barSeries: "series";
1002
- readonly line: "line";
1003
- readonly linePoint: "point";
1004
- readonly lineSeries: "series";
1005
- readonly scatterPoint: "point";
1006
- readonly scatterSeries: "series";
1007
- readonly pieSlice: "slice";
1008
- readonly pointOrBar: "point / bar";
1009
- readonly lineOrSeries: "line / series";
1010
- };
1011
- };
1012
- readonly stickerMenu: {
1013
- readonly title: "Add sticker";
1014
- };
1015
- readonly delete: "Delete";
1016
- readonly arrow: {
1017
- readonly thickness: {
1018
- readonly label: "Thickness";
1019
- readonly thin: "Thin";
1020
- readonly medium: "Medium";
1021
- readonly thick: "Thick";
1022
- };
1023
- readonly arrowhead: {
1024
- readonly startPoint: "Start point";
1025
- readonly endPoint: "End point";
1026
- readonly lineArrow: "Line arrow";
1027
- readonly none: "None";
1028
- };
1029
- readonly lineStyle: {
1030
- readonly label: "Line style";
1031
- readonly solid: "Solid";
1032
- readonly dotted: "Dotted";
1033
- };
1034
- readonly stickerEffect: "Sticker effect";
1035
- readonly toolbarAriaLabel: "Free-form arrow toolbar";
1036
- readonly editorAriaLabel: "Arrow editor";
1037
- };
1038
- readonly differenceArrow: {
1039
- readonly type: {
1040
- readonly proportion: "Proportion";
1041
- readonly difference: ({ absoluteDifference }: {
1042
- absoluteDifference: string;
1043
- }) => string;
1044
- readonly increase: ({ absoluteDifference }: {
1045
- absoluteDifference: string;
1046
- }) => string;
1047
- readonly decrease: ({ absoluteDifference }: {
1048
- absoluteDifference: string;
1049
- }) => string;
1050
- readonly percentageChange: ({ percentageChange }: {
1051
- percentageChange: string;
1052
- }) => string;
1053
- readonly percentIncrease: ({ percentageChange }: {
1054
- percentageChange: string;
1055
- }) => string;
1056
- readonly percentDecrease: ({ percentageChange }: {
1057
- percentageChange: string;
1058
- }) => string;
1059
- };
1060
- readonly size: {
1061
- readonly label: "Size";
1062
- readonly small: "Small";
1063
- readonly medium: "Medium";
1064
- readonly large: "Large";
1065
- };
1066
- readonly flipArrow: "Flip arrow";
1067
- readonly color: "Color";
1068
- readonly toolbarAriaLabel: "Difference arrow toolbar";
1069
- readonly editorAriaLabel: "Difference arrow editor";
1070
- };
1071
- readonly shape: {
1072
- readonly color: "Color";
1073
- readonly border: {
1074
- readonly label: "Border";
1075
- readonly none: "None";
1076
- readonly thin: ({ value }: {
1077
- value: string;
1078
- }) => string;
1079
- readonly medium: ({ value }: {
1080
- value: string;
1081
- }) => string;
1082
- readonly thick: ({ value }: {
1083
- value: string;
1084
- }) => string;
1085
- };
1086
- };
1087
- };
1088
315
  };
1089
316
  readonly dir: "ltr";
1090
317
  };
1091
- readonly 'en-US': LooseLocaleShape;
318
+ readonly 'en-US': LooseShapeOf<LocaleShape>;
1092
319
  readonly ar: {
1093
- readonly common: {
1094
- readonly save: "حفظ";
1095
- readonly cancel: "إلغاء";
1096
- readonly confirm: "تأكيد";
1097
- readonly delete: "حذف";
1098
- readonly confirmDelete: (params: {
1099
- item: string;
1100
- }) => string;
1101
- readonly abbreviations: {
1102
- readonly thousands: "ألف";
1103
- readonly millions: "مليون";
1104
- readonly billions: "مليار";
1105
- };
1106
- };
1107
- readonly editor: {
1108
- readonly title: "محرر Graphy";
1109
- readonly description: "قم بتحرير المحتوى الخاص بك هنا";
1110
- readonly graphTypes: {
1111
- readonly column: "أعمدة";
1112
- readonly columnStacked: "أعمدة مكدسة";
1113
- readonly columnStackedFill: "أعمدة مكدسة 100%";
1114
- readonly bar: "شريطي";
1115
- readonly barStacked: "أشرطة مكدسة";
1116
- readonly barStackedFill: "أشرطة مكدسة 100%";
1117
- readonly line: "خطي";
1118
- readonly areaStacked: "مساحة مكدسة";
1119
- readonly pie: "دائري";
1120
- readonly donut: "حلقي";
1121
- readonly scatter: "نقطي";
1122
- readonly bubble: "فقاعي";
1123
- readonly funnel: "قمعي";
1124
- readonly combo: "مركب";
1125
- readonly heatmap: "خريطة حرارية";
1126
- readonly waterfall: "شلالي";
1127
- readonly mekko: "ميكو";
1128
- readonly table: "جدول";
1129
- };
1130
- readonly sizePanel: {
1131
- readonly toolbarButton: "الحجم";
1132
- readonly presetsSection: {
1133
- readonly title: "إعدادات مسبقة";
1134
- };
1135
- readonly customSizeSection: {
1136
- readonly title: "حجم مخصص";
1137
- };
1138
- readonly presets: {
1139
- readonly googleSlides: "Google Slides / PowerPoint";
1140
- readonly webEmail: "ويب / بريد إلكتروني";
1141
- readonly linkedIn: "منشور LinkedIn";
1142
- readonly instagram: "منشور Instagram";
1143
- readonly tiktok: "TikTok / قصة Instagram";
1144
- readonly twitter: "X (Twitter)";
1145
- readonly mobile: "جوال";
1146
- };
1147
- readonly inputs: {
1148
- readonly unitLabel: "بكسل";
1149
- };
1150
- readonly validation: {
1151
- readonly maxSizeError: (params: {
1152
- max: number;
1153
- }) => string;
1154
- readonly minSizeError: (params: {
1155
- min: number;
1156
- }) => string;
1157
- };
1158
- };
1159
- readonly graphPanel: {
1160
- readonly toolbarButton: "الرسم البياني";
1161
- readonly graphTypeSection: {
1162
- readonly title: "نوع الرسم البياني";
1163
- };
1164
- readonly mappingSection: {
1165
- readonly title: "البيانات";
1166
- readonly x: "المحور السيني";
1167
- readonly y: "القيمة";
1168
- readonly color: "اللون";
1169
- readonly size: "الحجم";
1170
- readonly label: "التسمية";
1171
- readonly none: "بلا";
1172
- };
1173
- readonly polarSection: {
1174
- readonly title: "قطبي";
1175
- readonly innerRadius: "نصف القطر الداخلي";
1176
- readonly startAngle: "زاوية البداية";
1177
- };
1178
- readonly barSection: {
1179
- readonly title: "الأعمدة";
1180
- readonly thickness: "سمك العمود";
1181
- readonly rounding: "التدوير";
1182
- readonly roundingOptions: {
1183
- readonly none: "بلا";
1184
- readonly xs: "XS";
1185
- readonly sm: "S";
1186
- readonly md: "M";
1187
- readonly lg: "L";
1188
- readonly xl: "XL";
1189
- readonly full: "كامل";
1190
- };
1191
- };
1192
- readonly graphOptionsSection: {
1193
- readonly title: "خيارات الرسم البياني";
1194
- };
1195
- readonly gridSection: {
1196
- readonly title: "الشبكة";
1197
- readonly horizontalGridLines: "خطوط أفقية";
1198
- readonly verticalGridLines: "خطوط رأسية";
1199
- readonly rings: "حلقات";
1200
- readonly spokes: "أشعة";
1201
- readonly gridStyle: "نمط الشبكة";
1202
- readonly gridThickness: "سمك الشبكة";
1203
- readonly lineStyles: {
1204
- readonly solid: "متصل";
1205
- readonly dashed: "متقطع";
1206
- readonly dotted: "منقط";
1207
- };
1208
- };
1209
- readonly graphOptions: {
1210
- readonly sortBars: "ترتيب من الأعلى ← الأدنى";
1211
- readonly showPoints: "إظهار النقاط";
1212
- readonly lineFill: "تعبئة تحت الخط";
1213
- readonly smoothLines: "خطوط ناعمة";
1214
- readonly stackTotals: "مجاميع المكدس";
1215
- readonly dataLabels: "تسميات البيانات";
1216
- readonly showPercentages: "إظهار النسب المئوية";
1217
- readonly categoryLabels: "تسميات الفئات";
1218
- };
1219
- readonly legendSection: {
1220
- readonly title: "وسيلة الإيضاح";
1221
- readonly auto: "تلقائي";
1222
- readonly top: "أعلى";
1223
- readonly bottom: "أسفل";
1224
- readonly left: "يسار";
1225
- readonly right: "يمين";
1226
- readonly none: "بدون";
1227
- readonly alignLabel: "المحاذاة";
1228
- readonly align: {
1229
- readonly auto: "تلقائي";
1230
- readonly start: "البداية";
1231
- readonly center: "الوسط";
1232
- readonly end: "النهاية";
1233
- };
1234
- readonly displayLabel: "النمط";
1235
- readonly display: {
1236
- readonly auto: "تلقائي";
1237
- readonly pill: "شارات";
1238
- readonly direct: "على الرسم";
1239
- };
1240
- };
1241
- readonly numberFormatSection: {
1242
- readonly title: "تنسيق الأرقام";
1243
- };
1244
- readonly numberFormat: {
1245
- readonly abbreviationLabel: "الاختصار";
1246
- readonly valueLabel: "القيمة";
1247
- readonly decimalPlacesLabel: "المنازل العشرية";
1248
- readonly options: {
1249
- readonly auto: "تلقائي";
1250
- readonly custom: "مخصص";
1251
- readonly none: "بدون";
1252
- };
1253
- };
1254
- readonly headlineNumberSize: {
1255
- readonly sizeLabel: "الحجم";
1256
- readonly valueLabel: "القيمة";
1257
- readonly sizes: {
1258
- readonly small: "ص";
1259
- readonly medium: "م";
1260
- readonly large: "ك";
1261
- };
1262
- };
1263
- readonly lineThickness: {
1264
- readonly label: "سمك الخط";
1265
- };
1266
- readonly pointSize: {
1267
- readonly label: "حجم النقطة";
1268
- readonly options: {
1269
- readonly auto: "تلقائي";
1270
- readonly custom: "مخصص";
1271
- };
1272
- };
1273
- readonly headlineNumberSection: {
1274
- readonly title: "الرقم الرئيسي";
1275
- readonly toggle: "مرئي";
1276
- readonly metricLabel: "المقياس";
1277
- readonly compareWithLabel: "مقارنة مع";
1278
- readonly metrics: {
1279
- readonly total: "المجموع";
1280
- readonly average: "المتوسط";
1281
- readonly current: "الأخير";
1282
- readonly conversion: "التحويل";
1283
- readonly left: "يسار";
1284
- };
1285
- readonly comparison: {
1286
- readonly first: "الأول";
1287
- readonly previous: "السابق";
1288
- };
1289
- readonly position: {
1290
- readonly above: "أعلى";
1291
- readonly center: "وسط";
1292
- };
1293
- };
1294
- readonly treatEmptyValues: {
1295
- readonly leaveGap: {
1296
- readonly label: "ترك فجوة في الرسم البياني";
1297
- readonly description: "يترك فاصلاً مرئياً في الخط حيث تكون البيانات مفقودة";
1298
- };
1299
- readonly fillZero: {
1300
- readonly label: "ملء بالصفر";
1301
- readonly description: "يعرض نقاط البيانات المفقودة كصفر";
1302
- };
1303
- readonly connectGaps: {
1304
- readonly label: "الاتصال عبر الفجوات";
1305
- readonly description: "يربط الخط بين النقاط المتاحة، متخطياً الفجوة";
1306
- };
1307
- };
1308
- readonly comboChartAppearance: {
1309
- readonly title: "مظهر الرسم البياني المركب";
1310
- readonly groupedBars: "أشرطة مجمعة";
1311
- readonly stackedBars: "أشرطة مكدسة";
1312
- readonly linesOnly: "خطوط فقط";
1313
- };
1314
- };
1315
- readonly axesPanel: {
1316
- readonly toolbarButton: "المحاور";
1317
- readonly mainAxisSection: {
1318
- readonly yAxis: "المحور الصادي";
1319
- readonly xAxis: "المحور السيني";
1320
- };
1321
- readonly crossAxisSection: {
1322
- readonly xAxis: "المحور السيني";
1323
- readonly yAxis: "المحور الصادي";
1324
- };
1325
- readonly controls: {
1326
- readonly title: "العنوان";
1327
- readonly visible: "مرئي";
1328
- readonly ticks: "العلامات";
1329
- readonly labels: "التسميات";
1330
- readonly position: "الموضع";
1331
- readonly scale: "المقياس";
1332
- readonly startFrom: "البدء من";
1333
- readonly endAt: "الانتهاء عند";
1334
- readonly value: "القيمة";
1335
- readonly numberOfAxes: "عدد المحاور";
1336
- readonly reverse: "عكس";
1337
- };
1338
- readonly labelMode: {
1339
- readonly auto: "تلقائي";
1340
- readonly edges: "الحواف";
1341
- };
1342
- readonly scale: {
1343
- readonly auto: "تلقائي";
1344
- readonly log: "لوغاريتمي";
1345
- };
1346
- readonly startFrom: {
1347
- readonly auto: "تلقائي";
1348
- readonly zero: "صفر";
1349
- readonly custom: "مخصص";
1350
- };
1351
- readonly endAt: {
1352
- readonly auto: "تلقائي";
1353
- readonly custom: "مخصص";
1354
- };
1355
- readonly axisCount: {
1356
- readonly single: "مفرد";
1357
- readonly double: "مزدوج";
1358
- };
1359
- readonly position: {
1360
- readonly left: "يسار";
1361
- readonly right: "يمين";
1362
- readonly top: "أعلى";
1363
- readonly bottom: "أسفل";
1364
- };
1365
- readonly yesNo: {
1366
- readonly yes: "نعم";
1367
- readonly no: "لا";
1368
- };
1369
- };
1370
- readonly colorPanel: {
1371
- readonly toolbarButton: "اللون";
1372
- readonly themeSection: {
1373
- readonly title: "السمة";
1374
- };
1375
- readonly appearanceSection: {
1376
- readonly title: "المظهر";
1377
- readonly highlightStyle: "التمييز";
1378
- };
1379
- readonly paletteSection: {
1380
- readonly title: "لوحة الألوان";
1381
- readonly colorScheme: "نظام الألوان";
1382
- readonly colors: "الألوان";
1383
- readonly colorPalettes: "لوحات الألوان";
1384
- };
1385
- readonly paletteMode: {
1386
- readonly preset: "مسبق";
1387
- readonly brand: "العلامة التجارية";
1388
- readonly freestyle: "حر";
1389
- };
1390
- readonly paletteThemes: {
1391
- readonly colorful: "ملون";
1392
- readonly pastel: "باستيل";
1393
- readonly neon: "نيون";
1394
- };
1395
- readonly backgroundSection: {
1396
- readonly title: "الخلفية";
1397
- readonly black: "أسود";
1398
- readonly white: "أبيض";
1399
- readonly grey: "رمادي";
1400
- readonly tint: "صبغة";
1401
- readonly custom: "مخصص";
1402
- readonly none: "بدون";
1403
- };
1404
- readonly borderSection: {
1405
- readonly title: "الحدود";
1406
- readonly borderColor: "لون الحدود";
1407
- readonly thickness: "السمك";
1408
- readonly cornerRadius: "نصف قطر الزاوية";
1409
- };
1410
- readonly borderType: {
1411
- readonly solid: "صلب";
1412
- readonly gradient: "متدرج";
1413
- readonly grey: "رمادي";
1414
- readonly preset: "مسبق";
1415
- readonly custom: "مخصص";
1416
- readonly none: "بدون";
1417
- };
1418
- readonly presetGradients: {
1419
- readonly lilac: "ليلكي";
1420
- readonly neonPink: "وردي نيون";
1421
- readonly blackberry: "توت أسود";
1422
- readonly sun: "شمس";
1423
- readonly iceland: "آيسلندا";
1424
- readonly sunset: "غروب";
1425
- readonly ultraviolet: "فوق بنفسجي";
1426
- readonly purple: "أرجواني";
1427
- readonly iceCream: "آيس كريم";
1428
- readonly mint: "نعناع";
1429
- readonly cool: "بارد";
1430
- readonly fresh: "منعش";
1431
- };
1432
- };
1433
- readonly designPanel: {
1434
- readonly toolbarButton: "التصميم";
1435
- readonly defaultExpanded: "لوحة الألوان";
1436
- };
1437
- readonly annotatePanel: {
1438
- readonly toolbarButton: "التعليقات";
1439
- readonly callOutSection: {
1440
- readonly title: "وسائل الشرح";
1441
- readonly text: "نص";
1442
- readonly arrow: "سهم";
1443
- readonly box: "مربع";
1444
- readonly difference: "الفرق";
1445
- };
1446
- readonly highlightSection: {
1447
- readonly title: "التمييز";
1448
- readonly button: "تمييز";
1449
- readonly colorLabel: "لون التمييز";
1450
- };
1451
- };
1452
- readonly annotationsPanel: {
1453
- readonly toolbarButton: "التعليقات";
1454
- readonly freeformSection: {
1455
- readonly title: "حر";
1456
- readonly text: "نص";
1457
- readonly arrow: "سهم";
1458
- readonly box: "مربع";
1459
- readonly difference: "فرق";
1460
- };
1461
- readonly goalSection: {
1462
- readonly title: "الهدف";
1463
- readonly labelControl: "التسمية";
1464
- readonly labelPlaceholder: "الهدف";
1465
- readonly labelAriaLabel: "تسمية الهدف المخصصة";
1466
- readonly valueControl: "قيمة الهدف";
1467
- readonly valueAriaLabel: "قيمة الهدف";
1468
- readonly byDate: "حسب التاريخ";
1469
- readonly xAxisValue: "قيمة المحور السيني";
1470
- readonly optional: "(اختياري)";
1471
- };
1472
- readonly trendsAndAveragesSection: {
1473
- readonly title: "الاتجاهات والمتوسطات";
1474
- readonly trend: "الاتجاه";
1475
- readonly average: "المتوسط";
1476
- };
1477
- readonly trendType: {
1478
- readonly label: "نوع الاتجاه";
1479
- readonly placeholder: "نوع الاتجاه";
1480
- readonly options: {
1481
- readonly linear: "خطي";
1482
- readonly exponential: "أسي";
1483
- readonly quadratic: "تربيعي";
1484
- readonly polynomial: "متعدد الحدود";
1485
- readonly logarithmic: "لوغاريتمي";
1486
- readonly power: "قوة";
1487
- readonly loess: "لويس";
1488
- };
1489
- };
1490
- readonly averageLineSeries: {
1491
- readonly label: "سلسلة خط المتوسط";
1492
- readonly placeholder: "اختر السلسلة";
1493
- readonly ariaLabel: "قائمة منسدلة للسلسلة لخط المتوسط";
1494
- };
1495
- readonly highlightSection: {
1496
- readonly title: "التمييز";
1497
- readonly button: "تمييز";
1498
- readonly fadeColorLabel: "لون التلاشي";
1499
- };
1500
- readonly titleAndSubtitleSection: {
1501
- readonly title: "العنوان والعنوان الفرعي";
1502
- readonly toggleTitle: "العنوان";
1503
- readonly subtitle: "العنوان الفرعي";
1504
- };
1505
- readonly captionAndSourceSection: {
1506
- readonly title: "التسمية التوضيحية والمصدر";
1507
- readonly caption: "التسمية التوضيحية";
1508
- readonly source: "المصدر";
1509
- readonly url: "الرابط";
1510
- readonly name: "الاسم";
1511
- };
1512
- };
1513
- readonly elementsPanel: {
1514
- readonly contentVisible: "مرئي";
1515
- readonly contentValue: "القيمة";
1516
- readonly toolbarButton: "العناصر";
1517
- readonly headerSection: {
1518
- readonly title: "الرأس";
1519
- readonly toggleTitle: "العنوان";
1520
- readonly subtitle: "العنوان الفرعي";
1521
- };
1522
- readonly footerSection: {
1523
- readonly title: "التذييل";
1524
- readonly caption: "التسمية التوضيحية";
1525
- readonly source: "المصدر";
1526
- readonly url: "الرابط";
1527
- readonly name: "الاسم";
1528
- };
1529
- readonly textSizeSection: {
1530
- readonly title: "حجم النص";
1531
- readonly scaleFormat: (params: {
1532
- value: string;
1533
- }) => string;
1534
- };
1535
- readonly fontSection: {
1536
- readonly title: "الخط";
1537
- };
1538
- readonly sourceSection: {
1539
- readonly title: "المصدر";
1540
- readonly url: "الرابط";
1541
- readonly name: "الاسم";
1542
- };
1543
- };
1544
- readonly powerUpPanel: {
1545
- readonly toolbarButton: "التحسينات";
1546
- readonly goalSection: {
1547
- readonly title: "الهدف";
1548
- readonly toggle: "الهدف";
1549
- readonly labelControl: "التسمية";
1550
- readonly labelPlaceholder: "الهدف";
1551
- readonly labelAriaLabel: "تسمية الهدف المخصصة";
1552
- readonly valueControl: "قيمة الهدف";
1553
- readonly byDate: "حسب التاريخ";
1554
- readonly xAxisValue: "قيمة المحور السيني";
1555
- readonly optional: " (اختياري)";
1556
- readonly xAxisReferenceAriaLabel: "قيمة مرجعية للمحور السيني";
1557
- readonly anyXAxisValue: "أي قيمة للمحور السيني";
1558
- readonly selectValuePlaceholder: "اختر القيمة";
1559
- };
1560
- readonly trendSection: {
1561
- readonly title: "الاتجاه";
1562
- readonly toggle: "الاتجاه";
1563
- };
1564
- readonly averageSection: {
1565
- readonly title: "المتوسط";
1566
- readonly toggle: "المتوسط";
1567
- readonly seriesLabel: "سلسلة خط المتوسط";
1568
- readonly seriesPlaceholder: "اختر السلسلة";
1569
- readonly seriesAriaLabel: "قائمة منسدلة للسلسلة لخط المتوسط";
1570
- };
1571
- readonly trendType: {
1572
- readonly label: "نوع الاتجاه";
1573
- readonly placeholder: "نوع الاتجاه";
1574
- readonly options: {
1575
- readonly linear: "خطي";
1576
- readonly exponential: "أسي";
1577
- readonly quadratic: "تربيعي";
1578
- readonly polynomial: "متعدد الحدود";
1579
- readonly logarithmic: "لوغاريتمي";
1580
- readonly power: "قوة";
1581
- readonly loess: "لويس";
1582
- };
1583
- };
1584
- readonly valueInput: {
1585
- readonly percentagePlaceholder: "النسبة المئوية";
1586
- readonly numberPlaceholder: "الرقم";
1587
- readonly percentageSymbol: "٪";
1588
- };
1589
- };
1590
- readonly highlighting: {
1591
- readonly modeHelper: {
1592
- readonly title: "وضع التمييز";
1593
- readonly hover: "مرر";
1594
- readonly toHighlight: "للتمييز";
1595
- readonly anyElement: "أي عنصر";
1596
- readonly escToExit: "للخروج";
1597
- readonly esc: "ESC";
1598
- };
1599
- readonly emptyState: "لا تتوفر خيارات تمييز";
1600
- readonly deleteAriaLabel: "حذف التمييز";
1601
- readonly highlightStyle: {
1602
- readonly tint: "صبغة";
1603
- readonly grey: "رمادي";
1604
- };
1605
- };
1606
- readonly fineTunePanel: {
1607
- readonly toolbarButton: "الضبط الدقيق";
1608
- readonly detailSection: {
1609
- readonly title: "التفاصيل";
1610
- readonly missingValues: "القيم المفقودة";
1611
- };
1612
- readonly lineStyleSection: {
1613
- readonly title: "نمط الخط";
1614
- readonly lineCurve: "انحناء الخط";
1615
- readonly sharp: "حاد";
1616
- readonly smooth: "ناعم";
1617
- };
1618
- };
1619
- readonly customThemeEditor: {
1620
- readonly patternDropdownAriaLabel: "قائمة منسدلة للنمط للسلسلة";
1621
- readonly patterns: {
1622
- readonly solid: "صلب";
1623
- readonly pattern: "نمط";
1624
- readonly dotted: "منقط";
1625
- readonly dashed: "متقطع";
1626
- readonly hatched: "مظلل";
1627
- };
1628
- readonly heatmapColorLabel: "اللون";
1629
- };
1630
- readonly accessibility: {
1631
- readonly toggleSection: (params: {
1632
- title: string;
1633
- }) => string;
1634
- };
1635
- readonly graphyDefaults: {
1636
- readonly themeOptions: {
1637
- readonly light: "فاتح";
1638
- readonly dark: "داكن";
1639
- };
1640
- };
1641
- };
1642
320
  readonly graph: {
1643
321
  readonly loading: "جاري التحميل";
1644
322
  readonly error: "حدث خطأ ما";
@@ -1680,842 +358,66 @@ declare const dictionaries: {
1680
358
  value: string;
1681
359
  }) => string;
1682
360
  };
1683
- readonly fromPreviousMonth: {
1684
- readonly long: ({ value }: {
1685
- value: string;
1686
- }) => string;
1687
- readonly short: ({ value }: {
1688
- value: string;
1689
- }) => string;
1690
- };
1691
- readonly fromPreviousWeek: {
1692
- readonly long: ({ value }: {
1693
- value: string;
1694
- }) => string;
1695
- readonly short: ({ value }: {
1696
- value: string;
1697
- }) => string;
1698
- };
1699
- readonly fromPreviousDay: {
1700
- readonly long: ({ value }: {
1701
- value: string;
1702
- }) => string;
1703
- readonly short: ({ value }: {
1704
- value: string;
1705
- }) => string;
1706
- };
1707
- readonly fromPreviousHour: {
1708
- readonly long: ({ value }: {
1709
- value: string;
1710
- }) => string;
1711
- readonly short: ({ value }: {
1712
- value: string;
1713
- }) => string;
1714
- };
1715
- };
1716
- readonly headlineMetrics: {
1717
- readonly averageLong: ({ value }: {
1718
- value: string;
1719
- }) => string;
1720
- readonly averageShort: ({ value }: {
1721
- value: string;
1722
- }) => string;
1723
- readonly total: ({ value }: {
1724
- value: string;
1725
- }) => string;
1726
- readonly totalConversionRate: ({ value }: {
1727
- value: string;
1728
- }) => string;
1729
- readonly current: ({ value }: {
1730
- value: string;
1731
- }) => string;
1732
- readonly comparisonReference: ({ value }: {
1733
- value: string;
1734
- }) => string;
1735
- };
1736
- readonly titleEditor: {
1737
- readonly titlePlaceholder: "بدون عنوان";
1738
- readonly subtitlePlaceholder: "إضافة عنوان فرعي";
1739
- };
1740
- readonly toolbar: {
1741
- readonly formatting: {
1742
- readonly bold: "عريض";
1743
- readonly italic: "مائل";
1744
- readonly underline: "تحته خط";
1745
- readonly link: "رابط";
1746
- };
1747
- readonly link: {
1748
- readonly ariaLabel: "إنشاء رابط";
1749
- readonly placeholder: "اكتب أو الصق رابطاً...";
1750
- readonly submit: "إرسال";
1751
- readonly urlLabel: "عنوان الرابط";
1752
- readonly apply: "تطبيق الرابط";
1753
- };
1754
- readonly font: {
1755
- readonly label: "الخط";
1756
- readonly ariaLabel: "عائلة الخط";
1757
- };
1758
- readonly heading: {
1759
- readonly label: "مستوى العنوان";
1760
- readonly ariaLabel: "نمط النص";
1761
- readonly text: "نص";
1762
- readonly caption: "تسمية توضيحية";
1763
- readonly heading1: "عنوان 1";
1764
- readonly heading2: "عنوان 2";
1765
- readonly heading3: "عنوان 3";
1766
- };
1767
- readonly textAlign: {
1768
- readonly left: "محاذاة لليسار";
1769
- readonly center: "توسيط";
1770
- readonly right: "محاذاة لليمين";
1771
- };
1772
- readonly color: {
1773
- readonly label: "لون النص";
1774
- };
1775
- };
1776
- readonly colorDropdown: {
1777
- readonly colors: "الألوان";
1778
- readonly chartColors: "ألوان الرسم البياني";
1779
- readonly custom: "مخصص";
1780
- readonly opacity: "الشفافية";
1781
- readonly transparent: "شفاف";
1782
- readonly pickCustom: "اختيار لون مخصص";
1783
- readonly pickColor: "اختيار لون";
1784
- };
1785
- readonly legend: {
1786
- readonly hiddenItems: "عناصر وسيلة الإيضاح المخفية";
1787
- };
1788
- readonly annotations: {
1789
- readonly differenceArrowToolbar: {
1790
- readonly label: "خيارات سهم الفرق";
1791
- readonly labelKind: {
1792
- readonly ariaLabel: "التسمية";
1793
- readonly absoluteDifference: "التغير المطلق";
1794
- readonly relativeDifference: "التغير المئوي";
1795
- readonly proportion: "النسبة";
1796
- readonly suspectValue: "تقسم هذه القيمة على أساس يساوي صفرًا.";
1797
- readonly incomparableEnds: "يقيس الطرفان كميتين مختلفتين، لذا لا معنى للفرق بينهما.";
1798
- };
1799
- readonly color: "لون السهم";
1800
- readonly size: {
1801
- readonly ariaLabel: "الحجم";
1802
- readonly small: "صغير";
1803
- readonly medium: "متوسط";
1804
- readonly large: "كبير";
1805
- };
1806
- readonly swap: "عكس الاتجاه";
1807
- readonly remove: "إزالة السهم";
1808
- };
1809
- readonly shapeToolbar: {
1810
- readonly label: "خيارات الشكل";
1811
- readonly color: "لون الشكل";
1812
- readonly border: {
1813
- readonly ariaLabel: "الحد";
1814
- readonly none: "بلا";
1815
- readonly thin: "رفيع (2 بكسل)";
1816
- readonly medium: "متوسط (8 بكسل)";
1817
- readonly thick: "سميك (16 بكسل)";
1818
- };
1819
- readonly remove: "إزالة الشكل";
1820
- readonly resize: {
1821
- readonly 'top-left': "تغيير الحجم من الزاوية العلوية اليسرى";
1822
- readonly 'top-right': "تغيير الحجم من الزاوية العلوية اليمنى";
1823
- readonly 'bottom-right': "تغيير الحجم من الزاوية السفلية اليمنى";
1824
- readonly 'bottom-left': "تغيير الحجم من الزاوية السفلية اليسرى";
1825
- };
1826
- };
1827
- readonly arrowToolbar: {
1828
- readonly label: "خيارات السهم";
1829
- readonly color: "لون السهم";
1830
- readonly thickness: {
1831
- readonly ariaLabel: "السماكة";
1832
- readonly thin: "رفيع";
1833
- readonly medium: "متوسط";
1834
- readonly thick: "سميك";
1835
- };
1836
- readonly startArrowhead: "بداية السهم";
1837
- readonly endArrowhead: "نهاية السهم";
1838
- readonly arrowhead: {
1839
- readonly lineArrow: "رأس سهم";
1840
- readonly none: "بلا";
1841
- };
1842
- readonly lineStyle: {
1843
- readonly ariaLabel: "نمط الخط";
1844
- readonly solid: "متصل";
1845
- readonly dashed: "منقّط";
1846
- };
1847
- readonly sticker: "تأثير الملصق";
1848
- readonly remove: "إزالة السهم";
1849
- readonly moveEndpoint: {
1850
- readonly start: "تحريك بداية السهم";
1851
- readonly end: "تحريك نهاية السهم";
1852
- };
1853
- };
1854
- readonly baseMenu: {
1855
- readonly pinNumber: "تثبيت الرقم";
1856
- readonly unpinNumber: "إلغاء تثبيت الرقم";
1857
- readonly annotate: "تعليق";
1858
- readonly removeAnnotation: "إزالة التعليق";
1859
- readonly highlight: "تمييز";
1860
- readonly highlightWithLabel: (params: {
1861
- label: string;
1862
- }) => string;
1863
- readonly removeHighlight: "إزالة التمييز";
1864
- readonly differenceArrow: "سهم الفرق";
1865
- readonly addSticker: "إضافة ملصق";
1866
- readonly removeSticker: "إزالة الملصق";
1867
- };
1868
- readonly textMenu: {
1869
- readonly title: "تعليق";
1870
- readonly placeholder: "إضافة تعليق";
1871
- readonly addButton: "إضافة";
1872
- };
1873
- readonly highlights: {
1874
- readonly menuTitle: "تمييز";
1875
- readonly labels: {
1876
- readonly bar: "شريط";
1877
- readonly barGroup: "مجموعة";
1878
- readonly barStack: "مكدس";
1879
- readonly barSeries: "سلسلة";
1880
- readonly line: "خط";
1881
- readonly linePoint: "نقطة";
1882
- readonly lineSeries: "سلسلة";
1883
- readonly scatterPoint: "نقطة";
1884
- readonly scatterSeries: "سلسلة";
1885
- readonly pieSlice: "شريحة";
1886
- readonly pointOrBar: "نقطة / شريط";
1887
- readonly lineOrSeries: "خط / سلسلة";
1888
- };
1889
- };
1890
- readonly stickerMenu: {
1891
- readonly title: "إضافة ملصق";
1892
- };
1893
- readonly delete: "حذف";
1894
- readonly arrow: {
1895
- readonly thickness: {
1896
- readonly label: "السمك";
1897
- readonly thin: "رفيع";
1898
- readonly medium: "متوسط";
1899
- readonly thick: "سميك";
1900
- };
1901
- readonly arrowhead: {
1902
- readonly startPoint: "نقطة البداية";
1903
- readonly endPoint: "نقطة النهاية";
1904
- readonly lineArrow: "سهم الخط";
1905
- readonly none: "بدون";
1906
- };
1907
- readonly lineStyle: {
1908
- readonly label: "نمط الخط";
1909
- readonly solid: "صلب";
1910
- readonly dotted: "منقط";
1911
- };
1912
- readonly stickerEffect: "تأثير الملصق";
1913
- readonly toolbarAriaLabel: "شريط أدوات السهم الحر";
1914
- readonly editorAriaLabel: "محرر السهم";
1915
- };
1916
- readonly differenceArrow: {
1917
- readonly type: {
1918
- readonly proportion: "النسبة";
1919
- readonly difference: ({ absoluteDifference }: {
1920
- absoluteDifference: string;
1921
- }) => string;
1922
- readonly increase: ({ absoluteDifference }: {
1923
- absoluteDifference: string;
1924
- }) => string;
1925
- readonly decrease: ({ absoluteDifference }: {
1926
- absoluteDifference: string;
1927
- }) => string;
1928
- readonly percentageChange: ({ percentageChange }: {
1929
- percentageChange: string;
1930
- }) => string;
1931
- readonly percentIncrease: ({ percentageChange }: {
1932
- percentageChange: string;
1933
- }) => string;
1934
- readonly percentDecrease: ({ percentageChange }: {
1935
- percentageChange: string;
1936
- }) => string;
1937
- };
1938
- readonly size: {
1939
- readonly label: "الحجم";
1940
- readonly small: "صغير";
1941
- readonly medium: "متوسط";
1942
- readonly large: "كبير";
1943
- };
1944
- readonly flipArrow: "عكس السهم";
1945
- readonly color: "اللون";
1946
- readonly toolbarAriaLabel: "شريط أدوات سهم الفرق";
1947
- readonly editorAriaLabel: "محرر سهم الفرق";
1948
- };
1949
- readonly shape: {
1950
- readonly color: "اللون";
1951
- readonly border: {
1952
- readonly label: "الحدود";
1953
- readonly none: "بدون";
1954
- readonly thin: ({ value }: {
1955
- value: string;
1956
- }) => string;
1957
- readonly medium: ({ value }: {
1958
- value: string;
1959
- }) => string;
1960
- readonly thick: ({ value }: {
1961
- value: string;
1962
- }) => string;
1963
- };
1964
- };
1965
- };
1966
- };
1967
- readonly dir: "rtl";
1968
- };
1969
- readonly 'pt-PT': {
1970
- readonly common: {
1971
- readonly save: "Guardar";
1972
- readonly cancel: "Cancelar";
1973
- readonly confirm: "Confirmar";
1974
- readonly delete: "Eliminar";
1975
- readonly confirmDelete: (params: {
1976
- item: string;
1977
- }) => string;
1978
- readonly abbreviations: {
1979
- readonly thousands: "mil";
1980
- readonly millions: "M";
1981
- readonly billions: "MM";
1982
- };
1983
- };
1984
- readonly editor: {
1985
- readonly title: "Editor Graphy";
1986
- readonly description: "Edite o seu conteúdo aqui";
1987
- readonly graphTypes: {
1988
- readonly column: "Colunas";
1989
- readonly columnStacked: "Colunas sobrepostas";
1990
- readonly columnStackedFill: "100% Colunas sobrepostas";
1991
- readonly bar: "Barras";
1992
- readonly barStacked: "Barras sobrepostas";
1993
- readonly barStackedFill: "100% Barras sobrepostas";
1994
- readonly line: "Linha";
1995
- readonly areaStacked: "Área sobreposta";
1996
- readonly pie: "Circular";
1997
- readonly donut: "Donut";
1998
- readonly scatter: "Dispersão";
1999
- readonly bubble: "Bolhas";
2000
- readonly funnel: "Funil";
2001
- readonly combo: "Combinado";
2002
- readonly heatmap: "Mapa de Calor";
2003
- readonly waterfall: "Cascata";
2004
- readonly mekko: "Mekko";
2005
- readonly table: "Tabela";
2006
- };
2007
- readonly sizePanel: {
2008
- readonly toolbarButton: "Tamanho";
2009
- readonly presetsSection: {
2010
- readonly title: "Predefinições";
2011
- };
2012
- readonly customSizeSection: {
2013
- readonly title: "Tamanho personalizado";
2014
- };
2015
- readonly presets: {
2016
- readonly googleSlides: "Google Slides / PowerPoint";
2017
- readonly webEmail: "Web / email";
2018
- readonly linkedIn: "Publicação LinkedIn";
2019
- readonly instagram: "Publicação Instagram";
2020
- readonly tiktok: "TikTok / Instagram story";
2021
- readonly twitter: "X (Twitter)";
2022
- readonly mobile: "Móvel";
2023
- };
2024
- readonly inputs: {
2025
- readonly unitLabel: "px";
2026
- };
2027
- readonly validation: {
2028
- readonly maxSizeError: (params: {
2029
- max: number;
2030
- }) => string;
2031
- readonly minSizeError: (params: {
2032
- min: number;
2033
- }) => string;
2034
- };
2035
- };
2036
- readonly graphPanel: {
2037
- readonly toolbarButton: "Gráfico";
2038
- readonly graphTypeSection: {
2039
- readonly title: "Tipo de gráfico";
2040
- };
2041
- readonly mappingSection: {
2042
- readonly title: "Dados";
2043
- readonly x: "Eixo X";
2044
- readonly y: "Valor";
2045
- readonly color: "Cor";
2046
- readonly size: "Tamanho";
2047
- readonly label: "Etiqueta";
2048
- readonly none: "Nenhum";
2049
- };
2050
- readonly polarSection: {
2051
- readonly title: "Polar";
2052
- readonly innerRadius: "Raio interno";
2053
- readonly startAngle: "Ângulo inicial";
2054
- };
2055
- readonly barSection: {
2056
- readonly title: "Barras";
2057
- readonly thickness: "Espessura da barra";
2058
- readonly rounding: "Arredondamento";
2059
- readonly roundingOptions: {
2060
- readonly none: "Nenhum";
2061
- readonly xs: "XS";
2062
- readonly sm: "S";
2063
- readonly md: "M";
2064
- readonly lg: "L";
2065
- readonly xl: "XL";
2066
- readonly full: "Total";
2067
- };
2068
- };
2069
- readonly graphOptionsSection: {
2070
- readonly title: "Opções do gráfico";
2071
- };
2072
- readonly gridSection: {
2073
- readonly title: "Grelha";
2074
- readonly horizontalGridLines: "Linhas horizontais";
2075
- readonly verticalGridLines: "Linhas verticais";
2076
- readonly rings: "Anéis";
2077
- readonly spokes: "Raios";
2078
- readonly gridStyle: "Estilo da grelha";
2079
- readonly gridThickness: "Espessura da grelha";
2080
- readonly lineStyles: {
2081
- readonly solid: "Sólida";
2082
- readonly dashed: "Tracejada";
2083
- readonly dotted: "Pontilhada";
2084
- };
2085
- };
2086
- readonly graphOptions: {
2087
- readonly sortBars: "Ordenar maior → menor";
2088
- readonly showPoints: "Mostrar pontos";
2089
- readonly lineFill: "Preencher sob a linha";
2090
- readonly smoothLines: "Linhas suaves";
2091
- readonly stackTotals: "Totais sobrepostos";
2092
- readonly dataLabels: "Etiquetas de dados";
2093
- readonly showPercentages: "Mostrar percentagens";
2094
- readonly categoryLabels: "Etiquetas de categorias";
2095
- };
2096
- readonly legendSection: {
2097
- readonly title: "Legenda";
2098
- readonly auto: "Automático";
2099
- readonly top: "Topo";
2100
- readonly bottom: "Fundo";
2101
- readonly left: "Esquerda";
2102
- readonly right: "Direita";
2103
- readonly none: "Nenhuma";
2104
- readonly alignLabel: "Alinhamento";
2105
- readonly align: {
2106
- readonly auto: "Automático";
2107
- readonly start: "Início";
2108
- readonly center: "Centro";
2109
- readonly end: "Fim";
2110
- };
2111
- readonly displayLabel: "Estilo";
2112
- readonly display: {
2113
- readonly auto: "Automático";
2114
- readonly pill: "Etiquetas";
2115
- readonly direct: "No gráfico";
2116
- };
2117
- };
2118
- readonly numberFormatSection: {
2119
- readonly title: "Formato numérico";
2120
- };
2121
- readonly numberFormat: {
2122
- readonly abbreviationLabel: "Abreviação";
2123
- readonly valueLabel: "Valor";
2124
- readonly decimalPlacesLabel: "Casas decimais";
2125
- readonly options: {
2126
- readonly auto: "Automático";
2127
- readonly custom: "Personalizado";
2128
- readonly none: "Nenhum";
2129
- };
2130
- };
2131
- readonly headlineNumberSize: {
2132
- readonly sizeLabel: "Tamanho";
2133
- readonly valueLabel: "Valor";
2134
- readonly sizes: {
2135
- readonly small: "P";
2136
- readonly medium: "M";
2137
- readonly large: "G";
2138
- };
2139
- };
2140
- readonly lineThickness: {
2141
- readonly label: "Espessura da linha";
2142
- };
2143
- readonly pointSize: {
2144
- readonly label: "Tamanho do ponto";
2145
- readonly options: {
2146
- readonly auto: "Automático";
2147
- readonly custom: "Personalizado";
2148
- };
2149
- };
2150
- readonly headlineNumberSection: {
2151
- readonly title: "Número destaque";
2152
- readonly toggle: "Visível";
2153
- readonly metricLabel: "Métrica";
2154
- readonly compareWithLabel: "Comparar com";
2155
- readonly metrics: {
2156
- readonly total: "Total";
2157
- readonly average: "Média";
2158
- readonly current: "Último";
2159
- readonly conversion: "Conversão";
2160
- readonly left: "Esquerda";
2161
- };
2162
- readonly comparison: {
2163
- readonly first: "Primeiro";
2164
- readonly previous: "Anterior";
2165
- };
2166
- readonly position: {
2167
- readonly above: "Acima";
2168
- readonly center: "Centro";
2169
- };
2170
- };
2171
- readonly treatEmptyValues: {
2172
- readonly leaveGap: {
2173
- readonly label: "Deixar espaço no gráfico";
2174
- readonly description: "Deixa uma quebra visível na linha onde faltam dados";
2175
- };
2176
- readonly fillZero: {
2177
- readonly label: "Preencher com zero";
2178
- readonly description: "Exibe pontos de dados em falta como zero";
2179
- };
2180
- readonly connectGaps: {
2181
- readonly label: "Ligar através dos espaços";
2182
- readonly description: "Une a linha entre pontos disponíveis, ignorando o espaço";
2183
- };
2184
- };
2185
- readonly comboChartAppearance: {
2186
- readonly title: "Aparência do gráfico combinado";
2187
- readonly groupedBars: "Barras agrupadas";
2188
- readonly stackedBars: "Barras sobrepostas";
2189
- readonly linesOnly: "Apenas linhas";
2190
- };
2191
- };
2192
- readonly axesPanel: {
2193
- readonly toolbarButton: "Eixos";
2194
- readonly mainAxisSection: {
2195
- readonly yAxis: "Eixo Y";
2196
- readonly xAxis: "Eixo X";
2197
- };
2198
- readonly crossAxisSection: {
2199
- readonly xAxis: "Eixo X";
2200
- readonly yAxis: "Eixo Y";
2201
- };
2202
- readonly controls: {
2203
- readonly title: "Título";
2204
- readonly visible: "Visível";
2205
- readonly ticks: "Marcas";
2206
- readonly labels: "Etiquetas";
2207
- readonly position: "Posição";
2208
- readonly scale: "Escala";
2209
- readonly startFrom: "Iniciar de";
2210
- readonly endAt: "Terminar em";
2211
- readonly value: "Valor";
2212
- readonly numberOfAxes: "Número de eixos";
2213
- readonly reverse: "Inverter";
2214
- };
2215
- readonly labelMode: {
2216
- readonly auto: "Automático";
2217
- readonly edges: "Extremos";
2218
- };
2219
- readonly scale: {
2220
- readonly auto: "Automático";
2221
- readonly log: "Logarítmico";
2222
- };
2223
- readonly startFrom: {
2224
- readonly auto: "Automático";
2225
- readonly zero: "Zero";
2226
- readonly custom: "Personalizado";
2227
- };
2228
- readonly endAt: {
2229
- readonly auto: "Automático";
2230
- readonly custom: "Personalizado";
2231
- };
2232
- readonly axisCount: {
2233
- readonly single: "Único";
2234
- readonly double: "Duplo";
2235
- };
2236
- readonly position: {
2237
- readonly left: "Esquerda";
2238
- readonly right: "Direita";
2239
- readonly top: "Topo";
2240
- readonly bottom: "Fundo";
2241
- };
2242
- readonly yesNo: {
2243
- readonly yes: "Sim";
2244
- readonly no: "Não";
2245
- };
2246
- };
2247
- readonly colorPanel: {
2248
- readonly toolbarButton: "Cor";
2249
- readonly themeSection: {
2250
- readonly title: "Tema";
2251
- };
2252
- readonly appearanceSection: {
2253
- readonly title: "Aparência";
2254
- readonly highlightStyle: "Destaque";
2255
- };
2256
- readonly paletteSection: {
2257
- readonly title: "Paleta";
2258
- readonly colorScheme: "Esquema de cores";
2259
- readonly colors: "Cores";
2260
- readonly colorPalettes: "Paletas de cores";
2261
- };
2262
- readonly paletteMode: {
2263
- readonly preset: "Predefinido";
2264
- readonly brand: "Marca";
2265
- readonly freestyle: "Livre";
2266
- };
2267
- readonly paletteThemes: {
2268
- readonly colorful: "Colorido";
2269
- readonly pastel: "Pastel";
2270
- readonly neon: "Néon";
2271
- };
2272
- readonly backgroundSection: {
2273
- readonly title: "Fundo";
2274
- readonly black: "Preto";
2275
- readonly white: "Branco";
2276
- readonly grey: "Cinzento";
2277
- readonly tint: "Tonalidade";
2278
- readonly custom: "Personalizado";
2279
- readonly none: "Nenhum";
2280
- };
2281
- readonly borderSection: {
2282
- readonly title: "Contorno";
2283
- readonly borderColor: "Cor do contorno";
2284
- readonly thickness: "Espessura";
2285
- readonly cornerRadius: "Raio dos cantos";
2286
- };
2287
- readonly borderType: {
2288
- readonly solid: "Sólido";
2289
- readonly gradient: "Gradiente";
2290
- readonly grey: "Cinzento";
2291
- readonly preset: "Predefinido";
2292
- readonly custom: "Personalizado";
2293
- readonly none: "Nenhum";
2294
- };
2295
- readonly presetGradients: {
2296
- readonly lilac: "Lilás";
2297
- readonly neonPink: "Rosa Néon";
2298
- readonly blackberry: "Amora";
2299
- readonly sun: "Sol";
2300
- readonly iceland: "Islândia";
2301
- readonly sunset: "Pôr do Sol";
2302
- readonly ultraviolet: "Ultravioleta";
2303
- readonly purple: "Roxo";
2304
- readonly iceCream: "Gelado";
2305
- readonly mint: "Menta";
2306
- readonly cool: "Frio";
2307
- readonly fresh: "Fresco";
2308
- };
2309
- };
2310
- readonly designPanel: {
2311
- readonly toolbarButton: "Design";
2312
- readonly defaultExpanded: "Paleta";
2313
- };
2314
- readonly annotatePanel: {
2315
- readonly toolbarButton: "Anotar";
2316
- readonly callOutSection: {
2317
- readonly title: "Destaques";
2318
- readonly text: "Texto";
2319
- readonly arrow: "Seta";
2320
- readonly box: "Caixa";
2321
- readonly difference: "Diferença";
2322
- };
2323
- readonly highlightSection: {
2324
- readonly title: "Realce";
2325
- readonly button: "Realçar";
2326
- readonly colorLabel: "Cor do realce";
2327
- };
2328
- };
2329
- readonly annotationsPanel: {
2330
- readonly toolbarButton: "Anotar";
2331
- readonly freeformSection: {
2332
- readonly title: "Forma livre";
2333
- readonly text: "Texto";
2334
- readonly arrow: "Seta";
2335
- readonly box: "Caixa";
2336
- readonly difference: "Diferença";
2337
- };
2338
- readonly goalSection: {
2339
- readonly title: "Objetivo";
2340
- readonly labelControl: "Etiqueta";
2341
- readonly labelPlaceholder: "Objetivo";
2342
- readonly labelAriaLabel: "Etiqueta de objetivo personalizada";
2343
- readonly valueControl: "Valor do objetivo";
2344
- readonly valueAriaLabel: "Valor do objetivo";
2345
- readonly byDate: "Por data";
2346
- readonly xAxisValue: "Valor do eixo X";
2347
- readonly optional: "(opcional)";
2348
- };
2349
- readonly trendsAndAveragesSection: {
2350
- readonly title: "Tendências e Médias";
2351
- readonly trend: "Tendência";
2352
- readonly average: "Média";
2353
- };
2354
- readonly trendType: {
2355
- readonly label: "Tipo de tendência";
2356
- readonly placeholder: "Tipo de tendência";
2357
- readonly options: {
2358
- readonly linear: "Linear";
2359
- readonly exponential: "Exponencial";
2360
- readonly quadratic: "Quadrática";
2361
- readonly polynomial: "Polinomial";
2362
- readonly logarithmic: "Logarítmica";
2363
- readonly power: "Potência";
2364
- readonly loess: "Loess";
2365
- };
2366
- };
2367
- readonly averageLineSeries: {
2368
- readonly label: "Série da linha de média";
2369
- readonly placeholder: "Selecionar série";
2370
- readonly ariaLabel: "Dropdown de séries para linha de média";
2371
- };
2372
- readonly highlightSection: {
2373
- readonly title: "Realce";
2374
- readonly button: "Realçar";
2375
- readonly fadeColorLabel: "Cor de esmaecimento";
2376
- };
2377
- readonly titleAndSubtitleSection: {
2378
- readonly title: "Título e Subtítulo";
2379
- readonly toggleTitle: "Título";
2380
- readonly subtitle: "Subtítulo";
2381
- };
2382
- readonly captionAndSourceSection: {
2383
- readonly title: "Legenda e Fonte";
2384
- readonly caption: "Legenda";
2385
- readonly source: "Fonte";
2386
- readonly url: "URL";
2387
- readonly name: "Nome";
2388
- };
2389
- };
2390
- readonly elementsPanel: {
2391
- readonly contentVisible: "Visível";
2392
- readonly contentValue: "Valor";
2393
- readonly toolbarButton: "Elementos";
2394
- readonly headerSection: {
2395
- readonly title: "Cabeçalho";
2396
- readonly toggleTitle: "Título";
2397
- readonly subtitle: "Subtítulo";
2398
- };
2399
- readonly footerSection: {
2400
- readonly title: "Rodapé";
2401
- readonly caption: "Legenda";
2402
- readonly source: "Fonte";
2403
- readonly url: "URL";
2404
- readonly name: "Nome";
2405
- };
2406
- readonly textSizeSection: {
2407
- readonly title: "Tamanho do texto";
2408
- readonly scaleFormat: (params: {
361
+ readonly fromPreviousMonth: {
362
+ readonly long: ({ value }: {
363
+ value: string;
364
+ }) => string;
365
+ readonly short: ({ value }: {
2409
366
  value: string;
2410
367
  }) => string;
2411
368
  };
2412
- readonly fontSection: {
2413
- readonly title: "Tipo de letra";
2414
- };
2415
- readonly sourceSection: {
2416
- readonly title: "Fonte";
2417
- readonly url: "URL";
2418
- readonly name: "Nome";
2419
- };
2420
- };
2421
- readonly powerUpPanel: {
2422
- readonly toolbarButton: "Extras";
2423
- readonly goalSection: {
2424
- readonly title: "Objetivo";
2425
- readonly toggle: "Objetivo";
2426
- readonly labelControl: "Etiqueta";
2427
- readonly labelPlaceholder: "Objetivo";
2428
- readonly labelAriaLabel: "Etiqueta de objetivo personalizada";
2429
- readonly valueControl: "Valor do objetivo";
2430
- readonly byDate: "Por data";
2431
- readonly xAxisValue: "Valor do eixo X";
2432
- readonly optional: " (opcional)";
2433
- readonly xAxisReferenceAriaLabel: "Valor de referência do eixo X";
2434
- readonly anyXAxisValue: "Qualquer valor do eixo X";
2435
- readonly selectValuePlaceholder: "Selecionar valor";
2436
- };
2437
- readonly trendSection: {
2438
- readonly title: "Tendência";
2439
- readonly toggle: "Tendência";
2440
- };
2441
- readonly averageSection: {
2442
- readonly title: "Média";
2443
- readonly toggle: "Média";
2444
- readonly seriesLabel: "Série da linha de média";
2445
- readonly seriesPlaceholder: "Selecionar série";
2446
- readonly seriesAriaLabel: "Dropdown de séries para linha de média";
2447
- };
2448
- readonly trendType: {
2449
- readonly label: "Tipo de tendência";
2450
- readonly placeholder: "Tipo de tendência";
2451
- readonly options: {
2452
- readonly linear: "Linear";
2453
- readonly exponential: "Exponencial";
2454
- readonly quadratic: "Quadrática";
2455
- readonly polynomial: "Polinomial";
2456
- readonly logarithmic: "Logarítmica";
2457
- readonly power: "Potência";
2458
- readonly loess: "Loess";
2459
- };
2460
- };
2461
- readonly valueInput: {
2462
- readonly percentagePlaceholder: "Percentagem";
2463
- readonly numberPlaceholder: "Número";
2464
- readonly percentageSymbol: "%";
2465
- };
2466
- };
2467
- readonly highlighting: {
2468
- readonly modeHelper: {
2469
- readonly title: "Modo de realce";
2470
- readonly hover: "Passe";
2471
- readonly toHighlight: "para realçar";
2472
- readonly anyElement: "qualquer elemento";
2473
- readonly escToExit: "para sair";
2474
- readonly esc: "ESC";
2475
- };
2476
- readonly emptyState: "Sem opções de realce disponíveis";
2477
- readonly deleteAriaLabel: "Eliminar realce";
2478
- readonly highlightStyle: {
2479
- readonly tint: "Tonalidade";
2480
- readonly grey: "Cinzento";
2481
- };
2482
- };
2483
- readonly fineTunePanel: {
2484
- readonly toolbarButton: "Ajuste fino";
2485
- readonly detailSection: {
2486
- readonly title: "Detalhe";
2487
- readonly missingValues: "Valores em falta";
369
+ readonly fromPreviousWeek: {
370
+ readonly long: ({ value }: {
371
+ value: string;
372
+ }) => string;
373
+ readonly short: ({ value }: {
374
+ value: string;
375
+ }) => string;
2488
376
  };
2489
- readonly lineStyleSection: {
2490
- readonly title: "Estilo de linha";
2491
- readonly lineCurve: "Curva da linha";
2492
- readonly sharp: "Angulosa";
2493
- readonly smooth: "Suave";
377
+ readonly fromPreviousDay: {
378
+ readonly long: ({ value }: {
379
+ value: string;
380
+ }) => string;
381
+ readonly short: ({ value }: {
382
+ value: string;
383
+ }) => string;
2494
384
  };
2495
- };
2496
- readonly customThemeEditor: {
2497
- readonly patternDropdownAriaLabel: "Dropdown de padrões para série";
2498
- readonly patterns: {
2499
- readonly solid: "Sólido";
2500
- readonly pattern: "Padrão";
2501
- readonly dotted: "Pontilhado";
2502
- readonly dashed: "Tracejado";
2503
- readonly hatched: "Hachurado";
385
+ readonly fromPreviousHour: {
386
+ readonly long: ({ value }: {
387
+ value: string;
388
+ }) => string;
389
+ readonly short: ({ value }: {
390
+ value: string;
391
+ }) => string;
2504
392
  };
2505
- readonly heatmapColorLabel: "Cor";
2506
393
  };
2507
- readonly accessibility: {
2508
- readonly toggleSection: (params: {
2509
- title: string;
394
+ readonly headlineMetrics: {
395
+ readonly averageLong: ({ value }: {
396
+ value: string;
397
+ }) => string;
398
+ readonly averageShort: ({ value }: {
399
+ value: string;
400
+ }) => string;
401
+ readonly total: ({ value }: {
402
+ value: string;
403
+ }) => string;
404
+ readonly totalConversionRate: ({ value }: {
405
+ value: string;
406
+ }) => string;
407
+ readonly current: ({ value }: {
408
+ value: string;
409
+ }) => string;
410
+ readonly comparisonReference: ({ value }: {
411
+ value: string;
2510
412
  }) => string;
2511
413
  };
2512
- readonly graphyDefaults: {
2513
- readonly themeOptions: {
2514
- readonly light: "Claro";
2515
- readonly dark: "Escuro";
2516
- };
414
+ readonly legend: {
415
+ readonly hiddenItems: "عناصر وسيلة الإيضاح المخفية";
2517
416
  };
2518
417
  };
418
+ readonly dir: "rtl";
419
+ };
420
+ readonly 'pt-PT': {
2519
421
  readonly graph: {
2520
422
  readonly loading: "A carregar";
2521
423
  readonly error: "Algo correu mal";
@@ -2610,236 +512,9 @@ declare const dictionaries: {
2610
512
  value: string;
2611
513
  }) => string;
2612
514
  };
2613
- readonly titleEditor: {
2614
- readonly titlePlaceholder: "Sem título";
2615
- readonly subtitlePlaceholder: "Adicionar subtítulo";
2616
- };
2617
- readonly toolbar: {
2618
- readonly formatting: {
2619
- readonly bold: "Negrito";
2620
- readonly italic: "Itálico";
2621
- readonly underline: "Sublinhado";
2622
- readonly link: "Ligação";
2623
- };
2624
- readonly link: {
2625
- readonly ariaLabel: "Criar ligação";
2626
- readonly placeholder: "Escreva ou cole uma ligação...";
2627
- readonly submit: "Submeter";
2628
- readonly urlLabel: "URL da ligação";
2629
- readonly apply: "Aplicar ligação";
2630
- };
2631
- readonly font: {
2632
- readonly label: "Tipo de letra";
2633
- readonly ariaLabel: "Família do tipo de letra";
2634
- };
2635
- readonly heading: {
2636
- readonly label: "Nível de título";
2637
- readonly ariaLabel: "Estilo de texto";
2638
- readonly text: "Texto";
2639
- readonly caption: "Legenda";
2640
- readonly heading1: "Título 1";
2641
- readonly heading2: "Título 2";
2642
- readonly heading3: "Título 3";
2643
- };
2644
- readonly textAlign: {
2645
- readonly left: "Alinhar à esquerda";
2646
- readonly center: "Alinhar ao centro";
2647
- readonly right: "Alinhar à direita";
2648
- };
2649
- readonly color: {
2650
- readonly label: "Cor do texto";
2651
- };
2652
- };
2653
- readonly colorDropdown: {
2654
- readonly colors: "Cores";
2655
- readonly chartColors: "Cores do gráfico";
2656
- readonly custom: "Personalizado";
2657
- readonly opacity: "Opacidade";
2658
- readonly transparent: "Transparente";
2659
- readonly pickCustom: "Escolher cor personalizada";
2660
- readonly pickColor: "Escolher cor";
2661
- };
2662
515
  readonly legend: {
2663
516
  readonly hiddenItems: "Itens de legenda ocultos";
2664
517
  };
2665
- readonly annotations: {
2666
- readonly differenceArrowToolbar: {
2667
- readonly label: "Opções da seta de diferença";
2668
- readonly labelKind: {
2669
- readonly ariaLabel: "Etiqueta";
2670
- readonly absoluteDifference: "Variação absoluta";
2671
- readonly relativeDifference: "Variação percentual";
2672
- readonly proportion: "Proporção";
2673
- readonly suspectValue: "Este valor divide por uma base igual a zero.";
2674
- readonly incomparableEnds: "As duas pontas medem quantidades diferentes, pelo que a diferença entre elas não tem significado.";
2675
- };
2676
- readonly color: "Cor da seta";
2677
- readonly size: {
2678
- readonly ariaLabel: "Tamanho";
2679
- readonly small: "Pequeno";
2680
- readonly medium: "Médio";
2681
- readonly large: "Grande";
2682
- };
2683
- readonly swap: "Inverter sentido";
2684
- readonly remove: "Remover seta";
2685
- };
2686
- readonly shapeToolbar: {
2687
- readonly label: "Opções da forma";
2688
- readonly color: "Cor da forma";
2689
- readonly border: {
2690
- readonly ariaLabel: "Contorno";
2691
- readonly none: "Nenhum";
2692
- readonly thin: "Fino (2px)";
2693
- readonly medium: "Médio (8px)";
2694
- readonly thick: "Espesso (16px)";
2695
- };
2696
- readonly remove: "Remover forma";
2697
- readonly resize: {
2698
- readonly 'top-left': "Redimensionar a partir do canto superior esquerdo";
2699
- readonly 'top-right': "Redimensionar a partir do canto superior direito";
2700
- readonly 'bottom-right': "Redimensionar a partir do canto inferior direito";
2701
- readonly 'bottom-left': "Redimensionar a partir do canto inferior esquerdo";
2702
- };
2703
- };
2704
- readonly arrowToolbar: {
2705
- readonly label: "Opções da seta";
2706
- readonly color: "Cor da seta";
2707
- readonly thickness: {
2708
- readonly ariaLabel: "Espessura";
2709
- readonly thin: "Fina";
2710
- readonly medium: "Média";
2711
- readonly thick: "Espessa";
2712
- };
2713
- readonly startArrowhead: "Início da seta";
2714
- readonly endArrowhead: "Fim da seta";
2715
- readonly arrowhead: {
2716
- readonly lineArrow: "Ponta de seta";
2717
- readonly none: "Nenhuma";
2718
- };
2719
- readonly lineStyle: {
2720
- readonly ariaLabel: "Estilo da linha";
2721
- readonly solid: "Sólida";
2722
- readonly dashed: "Pontilhada";
2723
- };
2724
- readonly sticker: "Efeito autocolante";
2725
- readonly remove: "Remover seta";
2726
- readonly moveEndpoint: {
2727
- readonly start: "Mover o início da seta";
2728
- readonly end: "Mover o fim da seta";
2729
- };
2730
- };
2731
- readonly baseMenu: {
2732
- readonly pinNumber: "Fixar número";
2733
- readonly unpinNumber: "Desafixar número";
2734
- readonly annotate: "Anotar";
2735
- readonly removeAnnotation: "Remover anotação";
2736
- readonly highlight: "Realçar";
2737
- readonly highlightWithLabel: (params: {
2738
- label: string;
2739
- }) => string;
2740
- readonly removeHighlight: "Remover realce";
2741
- readonly differenceArrow: "Seta de diferença";
2742
- readonly addSticker: "Adicionar autocolante";
2743
- readonly removeSticker: "Remover autocolante";
2744
- };
2745
- readonly textMenu: {
2746
- readonly title: "Anotar";
2747
- readonly placeholder: "Adicionar comentário";
2748
- readonly addButton: "Adicionar";
2749
- };
2750
- readonly highlights: {
2751
- readonly menuTitle: "Realçar";
2752
- readonly labels: {
2753
- readonly bar: "Barra";
2754
- readonly barGroup: "Grupo";
2755
- readonly barStack: "Pilha";
2756
- readonly barSeries: "Série";
2757
- readonly line: "Linha";
2758
- readonly linePoint: "Ponto";
2759
- readonly lineSeries: "Série";
2760
- readonly scatterPoint: "Ponto";
2761
- readonly scatterSeries: "Série";
2762
- readonly pieSlice: "Fatia";
2763
- readonly pointOrBar: "Ponto / barra";
2764
- readonly lineOrSeries: "Linha / série";
2765
- };
2766
- };
2767
- readonly stickerMenu: {
2768
- readonly title: "Adicionar autocolante";
2769
- };
2770
- readonly delete: "Eliminar";
2771
- readonly arrow: {
2772
- readonly thickness: {
2773
- readonly label: "Espessura";
2774
- readonly thin: "Fina";
2775
- readonly medium: "Média";
2776
- readonly thick: "Grossa";
2777
- };
2778
- readonly arrowhead: {
2779
- readonly startPoint: "Ponto inicial";
2780
- readonly endPoint: "Ponto final";
2781
- readonly lineArrow: "Seta de linha";
2782
- readonly none: "Nenhuma";
2783
- };
2784
- readonly lineStyle: {
2785
- readonly label: "Estilo de linha";
2786
- readonly solid: "Sólida";
2787
- readonly dotted: "Pontilhada";
2788
- };
2789
- readonly stickerEffect: "Efeito de autocolante";
2790
- readonly toolbarAriaLabel: "Barra de ferramentas de seta livre";
2791
- readonly editorAriaLabel: "Editor de seta";
2792
- };
2793
- readonly differenceArrow: {
2794
- readonly type: {
2795
- readonly proportion: "Proporção";
2796
- readonly difference: ({ absoluteDifference }: {
2797
- absoluteDifference: string;
2798
- }) => string;
2799
- readonly increase: ({ absoluteDifference }: {
2800
- absoluteDifference: string;
2801
- }) => string;
2802
- readonly decrease: ({ absoluteDifference }: {
2803
- absoluteDifference: string;
2804
- }) => string;
2805
- readonly percentageChange: ({ percentageChange }: {
2806
- percentageChange: string;
2807
- }) => string;
2808
- readonly percentIncrease: ({ percentageChange }: {
2809
- percentageChange: string;
2810
- }) => string;
2811
- readonly percentDecrease: ({ percentageChange }: {
2812
- percentageChange: string;
2813
- }) => string;
2814
- };
2815
- readonly size: {
2816
- readonly label: "Tamanho";
2817
- readonly small: "Pequeno";
2818
- readonly medium: "Médio";
2819
- readonly large: "Grande";
2820
- };
2821
- readonly flipArrow: "Inverter seta";
2822
- readonly color: "Cor";
2823
- readonly toolbarAriaLabel: "Barra de ferramentas de seta de diferença";
2824
- readonly editorAriaLabel: "Editor de seta de diferença";
2825
- };
2826
- readonly shape: {
2827
- readonly color: "Cor";
2828
- readonly border: {
2829
- readonly label: "Contorno";
2830
- readonly none: "Nenhum";
2831
- readonly thin: ({ value }: {
2832
- value: string;
2833
- }) => string;
2834
- readonly medium: ({ value }: {
2835
- value: string;
2836
- }) => string;
2837
- readonly thick: ({ value }: {
2838
- value: string;
2839
- }) => string;
2840
- };
2841
- };
2842
- };
2843
518
  };
2844
519
  readonly dir: "ltr";
2845
520
  };
@@ -2901,555 +576,6 @@ declare interface EditorSurfaceSlotProps {
2901
576
  export declare const ElementsPanel: ({ children, ...rootProps }: PanelProps) => JSX.Element;
2902
577
 
2903
578
  declare const EN_GB: {
2904
- readonly common: {
2905
- readonly save: "Save";
2906
- readonly cancel: "Cancel";
2907
- readonly confirm: "Confirm";
2908
- readonly delete: "Delete";
2909
- readonly confirmDelete: (params: {
2910
- item: string;
2911
- }) => string;
2912
- readonly abbreviations: {
2913
- readonly thousands: "k";
2914
- readonly millions: "m";
2915
- readonly billions: "b";
2916
- };
2917
- };
2918
- readonly editor: {
2919
- readonly title: "Graphy Editor";
2920
- readonly description: "Edit your content here";
2921
- readonly graphTypes: {
2922
- readonly column: "Column";
2923
- readonly columnStacked: "Stacked column";
2924
- readonly columnStackedFill: "100% stacked column";
2925
- readonly bar: "Bar";
2926
- readonly barStacked: "Stacked bar";
2927
- readonly barStackedFill: "100% stacked bar";
2928
- readonly line: "Line";
2929
- readonly areaStacked: "Stacked area";
2930
- readonly pie: "Pie";
2931
- readonly donut: "Donut";
2932
- readonly scatter: "Scatter";
2933
- readonly bubble: "Bubble";
2934
- readonly funnel: "Funnel";
2935
- readonly combo: "Combo";
2936
- readonly heatmap: "Heatmap";
2937
- readonly waterfall: "Waterfall";
2938
- readonly mekko: "Mekko";
2939
- readonly table: "Table";
2940
- };
2941
- readonly sizePanel: {
2942
- readonly toolbarButton: "Size";
2943
- readonly presetsSection: {
2944
- readonly title: "Presets";
2945
- };
2946
- readonly customSizeSection: {
2947
- readonly title: "Custom size";
2948
- };
2949
- readonly presets: {
2950
- readonly googleSlides: "Google Slides / PowerPoint";
2951
- readonly webEmail: "Web / email";
2952
- readonly linkedIn: "LinkedIn post";
2953
- readonly instagram: "Instagram post";
2954
- readonly tiktok: "TikTok / Instagram story";
2955
- readonly twitter: "X (Twitter)";
2956
- readonly mobile: "Mobile";
2957
- };
2958
- readonly inputs: {
2959
- readonly unitLabel: "px";
2960
- };
2961
- readonly validation: {
2962
- readonly maxSizeError: (params: {
2963
- max: number;
2964
- }) => string;
2965
- readonly minSizeError: (params: {
2966
- min: number;
2967
- }) => string;
2968
- };
2969
- };
2970
- readonly graphPanel: {
2971
- readonly toolbarButton: "Graph";
2972
- readonly graphTypeSection: {
2973
- readonly title: "Graph type";
2974
- };
2975
- readonly mappingSection: {
2976
- readonly title: "Data";
2977
- readonly x: "X-axis";
2978
- readonly y: "Value";
2979
- readonly color: "Colour";
2980
- readonly size: "Size";
2981
- readonly label: "Label";
2982
- readonly none: "None";
2983
- };
2984
- readonly polarSection: {
2985
- readonly title: "Polar";
2986
- readonly innerRadius: "Inner radius";
2987
- readonly startAngle: "Start angle";
2988
- };
2989
- readonly barSection: {
2990
- readonly title: "Bars";
2991
- readonly thickness: "Bar thickness";
2992
- readonly rounding: "Rounding";
2993
- readonly roundingOptions: {
2994
- readonly none: "None";
2995
- readonly xs: "XS";
2996
- readonly sm: "S";
2997
- readonly md: "M";
2998
- readonly lg: "L";
2999
- readonly xl: "XL";
3000
- readonly full: "Full";
3001
- };
3002
- };
3003
- readonly graphOptionsSection: {
3004
- readonly title: "Graph options";
3005
- };
3006
- readonly gridSection: {
3007
- readonly title: "Grid";
3008
- readonly horizontalGridLines: "Horizontal lines";
3009
- readonly verticalGridLines: "Vertical lines";
3010
- readonly rings: "Rings";
3011
- readonly spokes: "Spokes";
3012
- readonly gridStyle: "Grid style";
3013
- readonly gridThickness: "Grid thickness";
3014
- readonly lineStyles: {
3015
- readonly solid: "Solid";
3016
- readonly dashed: "Dashed";
3017
- readonly dotted: "Dotted";
3018
- };
3019
- };
3020
- readonly graphOptions: {
3021
- readonly sortBars: "Sort high → low";
3022
- readonly showPoints: "Show points";
3023
- readonly lineFill: "Fill under line";
3024
- readonly smoothLines: "Smooth lines";
3025
- readonly stackTotals: "Stack totals";
3026
- readonly dataLabels: "Data labels";
3027
- readonly showPercentages: "Show percentages";
3028
- readonly categoryLabels: "Category labels";
3029
- };
3030
- readonly legendSection: {
3031
- readonly title: "Legend";
3032
- readonly auto: "Auto";
3033
- readonly top: "Top";
3034
- readonly bottom: "Bottom";
3035
- readonly left: "Left";
3036
- readonly right: "Right";
3037
- readonly none: "None";
3038
- readonly alignLabel: "Alignment";
3039
- readonly align: {
3040
- readonly auto: "Auto";
3041
- readonly start: "Start";
3042
- readonly center: "Center";
3043
- readonly end: "End";
3044
- };
3045
- readonly displayLabel: "Style";
3046
- readonly display: {
3047
- readonly auto: "Auto";
3048
- readonly pill: "Pills";
3049
- readonly direct: "Direct";
3050
- };
3051
- };
3052
- readonly numberFormatSection: {
3053
- readonly title: "Number format";
3054
- };
3055
- readonly numberFormat: {
3056
- readonly abbreviationLabel: "Abbreviation";
3057
- readonly valueLabel: "Value";
3058
- readonly decimalPlacesLabel: "Decimal places";
3059
- readonly options: {
3060
- readonly auto: "Auto";
3061
- readonly custom: "Custom";
3062
- readonly none: "None";
3063
- };
3064
- };
3065
- readonly headlineNumberSize: {
3066
- readonly sizeLabel: "Size";
3067
- readonly valueLabel: "Value";
3068
- readonly sizes: {
3069
- readonly small: "S";
3070
- readonly medium: "M";
3071
- readonly large: "L";
3072
- };
3073
- };
3074
- readonly lineThickness: {
3075
- readonly label: "Line thickness";
3076
- };
3077
- readonly pointSize: {
3078
- readonly label: "Point size";
3079
- readonly options: {
3080
- readonly auto: "Auto";
3081
- readonly custom: "Custom";
3082
- };
3083
- };
3084
- readonly headlineNumberSection: {
3085
- readonly title: "Headline number";
3086
- readonly toggle: "Visible";
3087
- readonly metricLabel: "Metric";
3088
- readonly compareWithLabel: "Compare with";
3089
- readonly metrics: {
3090
- readonly total: "Total";
3091
- readonly average: "Avg.";
3092
- readonly current: "Last";
3093
- readonly conversion: "Conversion";
3094
- readonly left: "Left";
3095
- };
3096
- readonly comparison: {
3097
- readonly first: "First";
3098
- readonly previous: "Previous";
3099
- };
3100
- readonly position: {
3101
- readonly above: "Above";
3102
- readonly center: "Center";
3103
- };
3104
- };
3105
- readonly treatEmptyValues: {
3106
- readonly leaveGap: {
3107
- readonly label: "Leave gap in chart";
3108
- readonly description: "Leaves a visible break in the line where data is missing";
3109
- };
3110
- readonly fillZero: {
3111
- readonly label: "Fill with zero";
3112
- readonly description: "Displays missing data points as zero";
3113
- };
3114
- readonly connectGaps: {
3115
- readonly label: "Connect across gaps";
3116
- readonly description: "Joins the line between available points, skipping the gap";
3117
- };
3118
- };
3119
- readonly comboChartAppearance: {
3120
- readonly title: "Combo chart appearance";
3121
- readonly groupedBars: "Grouped bars";
3122
- readonly stackedBars: "Stacked bars";
3123
- readonly linesOnly: "Lines only";
3124
- };
3125
- };
3126
- readonly axesPanel: {
3127
- readonly toolbarButton: "Axes";
3128
- readonly mainAxisSection: {
3129
- readonly yAxis: "Y-axis";
3130
- readonly xAxis: "X-axis";
3131
- };
3132
- readonly crossAxisSection: {
3133
- readonly xAxis: "X-axis";
3134
- readonly yAxis: "Y-axis";
3135
- };
3136
- readonly controls: {
3137
- readonly title: "Title";
3138
- readonly visible: "Visible";
3139
- readonly ticks: "Ticks";
3140
- readonly labels: "Labels";
3141
- readonly position: "Position";
3142
- readonly scale: "Scale";
3143
- readonly startFrom: "Start from";
3144
- readonly endAt: "End at";
3145
- readonly value: "Value";
3146
- readonly numberOfAxes: "Number of axes";
3147
- readonly reverse: "Reverse";
3148
- };
3149
- readonly labelMode: {
3150
- readonly auto: "Auto";
3151
- readonly edges: "Edges";
3152
- };
3153
- readonly scale: {
3154
- readonly auto: "Auto";
3155
- readonly log: "Log";
3156
- };
3157
- readonly startFrom: {
3158
- readonly auto: "Auto";
3159
- readonly zero: "Zero";
3160
- readonly custom: "Custom";
3161
- };
3162
- readonly endAt: {
3163
- readonly auto: "Auto";
3164
- readonly custom: "Custom";
3165
- };
3166
- readonly axisCount: {
3167
- readonly single: "Single";
3168
- readonly double: "Double";
3169
- };
3170
- readonly position: {
3171
- readonly left: "Left";
3172
- readonly right: "Right";
3173
- readonly top: "Top";
3174
- readonly bottom: "Bottom";
3175
- };
3176
- readonly yesNo: {
3177
- readonly yes: "Yes";
3178
- readonly no: "No";
3179
- };
3180
- };
3181
- readonly colorPanel: {
3182
- readonly toolbarButton: "Color";
3183
- readonly themeSection: {
3184
- readonly title: "Theme";
3185
- };
3186
- readonly appearanceSection: {
3187
- readonly title: "Appearance";
3188
- readonly highlightStyle: "Highlight";
3189
- };
3190
- readonly paletteSection: {
3191
- readonly title: "Palette";
3192
- readonly colorScheme: "Color scheme";
3193
- readonly colors: "Colors";
3194
- readonly colorPalettes: "Color palettes";
3195
- };
3196
- readonly paletteMode: {
3197
- readonly preset: "Preset";
3198
- readonly brand: "Brand";
3199
- readonly freestyle: "Freestyle";
3200
- };
3201
- readonly paletteThemes: {
3202
- readonly colorful: "Colorful";
3203
- readonly pastel: "Pastel";
3204
- readonly neon: "Neon";
3205
- };
3206
- readonly backgroundSection: {
3207
- readonly title: "Background";
3208
- readonly black: "Black";
3209
- readonly white: "White";
3210
- readonly grey: "Grey";
3211
- readonly tint: "Tint";
3212
- readonly custom: "Custom";
3213
- readonly none: "None";
3214
- };
3215
- readonly borderSection: {
3216
- readonly title: "Border";
3217
- readonly borderColor: "Border color";
3218
- readonly thickness: "Thickness";
3219
- readonly cornerRadius: "Corner radius";
3220
- };
3221
- readonly borderType: {
3222
- readonly solid: "Solid";
3223
- readonly gradient: "Gradient";
3224
- readonly grey: "Grey";
3225
- readonly preset: "Preset";
3226
- readonly custom: "Custom";
3227
- readonly none: "None";
3228
- };
3229
- readonly presetGradients: {
3230
- readonly lilac: "Lilac";
3231
- readonly neonPink: "Neon Pink";
3232
- readonly blackberry: "Blackberry";
3233
- readonly sun: "Sun";
3234
- readonly iceland: "Iceland";
3235
- readonly sunset: "Sunset";
3236
- readonly ultraviolet: "Ultraviolet";
3237
- readonly purple: "Purple";
3238
- readonly iceCream: "Ice Cream";
3239
- readonly mint: "Mint";
3240
- readonly cool: "Cool";
3241
- readonly fresh: "Fresh";
3242
- };
3243
- };
3244
- readonly designPanel: {
3245
- readonly toolbarButton: "Design";
3246
- readonly defaultExpanded: "Palette";
3247
- };
3248
- readonly annotatePanel: {
3249
- readonly toolbarButton: "Annotate";
3250
- readonly callOutSection: {
3251
- readonly title: "Callouts";
3252
- readonly text: "Text";
3253
- readonly arrow: "Arrow";
3254
- readonly box: "Box";
3255
- readonly difference: "Difference";
3256
- };
3257
- readonly highlightSection: {
3258
- readonly title: "Highlight";
3259
- readonly button: "Highlight";
3260
- readonly colorLabel: "Highlight color";
3261
- };
3262
- };
3263
- readonly annotationsPanel: {
3264
- readonly toolbarButton: "Annotate";
3265
- readonly freeformSection: {
3266
- readonly title: "Freeform";
3267
- readonly text: "Text";
3268
- readonly arrow: "Arrow";
3269
- readonly box: "Box";
3270
- readonly difference: "Difference";
3271
- };
3272
- readonly goalSection: {
3273
- readonly title: "Goal";
3274
- readonly labelControl: "Label";
3275
- readonly labelPlaceholder: "Goal";
3276
- readonly labelAriaLabel: "Custom goal label";
3277
- readonly valueControl: "Goal value";
3278
- readonly valueAriaLabel: "Goal value";
3279
- readonly byDate: "By date";
3280
- readonly xAxisValue: "X-axis value";
3281
- readonly optional: "(optional)";
3282
- };
3283
- readonly trendsAndAveragesSection: {
3284
- readonly title: "Trends and Averages";
3285
- readonly trend: "Trend";
3286
- readonly average: "Average";
3287
- };
3288
- readonly trendType: {
3289
- readonly label: "Trend type";
3290
- readonly placeholder: "Trend type";
3291
- readonly options: {
3292
- readonly linear: "Linear";
3293
- readonly exponential: "Exponential";
3294
- readonly quadratic: "Quadratic";
3295
- readonly polynomial: "Polynomial";
3296
- readonly logarithmic: "Logarithmic";
3297
- readonly power: "Power";
3298
- readonly loess: "Loess";
3299
- };
3300
- };
3301
- readonly averageLineSeries: {
3302
- readonly label: "Average line series";
3303
- readonly placeholder: "Select series";
3304
- readonly ariaLabel: "Series dropdown for average line";
3305
- };
3306
- readonly highlightSection: {
3307
- readonly title: "Highlight";
3308
- readonly button: "Highlight";
3309
- readonly fadeColorLabel: "Fade color";
3310
- };
3311
- readonly titleAndSubtitleSection: {
3312
- readonly title: "Title & Subtitle";
3313
- readonly toggleTitle: "Title";
3314
- readonly subtitle: "Subtitle";
3315
- };
3316
- readonly captionAndSourceSection: {
3317
- readonly title: "Caption & Source";
3318
- readonly caption: "Caption";
3319
- readonly source: "Source";
3320
- readonly url: "URL";
3321
- readonly name: "Name";
3322
- };
3323
- };
3324
- readonly elementsPanel: {
3325
- readonly contentVisible: "Visible";
3326
- readonly contentValue: "Value";
3327
- readonly toolbarButton: "Elements";
3328
- readonly headerSection: {
3329
- readonly title: "Header";
3330
- readonly toggleTitle: "Title";
3331
- readonly subtitle: "Subtitle";
3332
- };
3333
- readonly footerSection: {
3334
- readonly title: "Footer";
3335
- readonly caption: "Caption";
3336
- readonly source: "Source";
3337
- readonly url: "URL";
3338
- readonly name: "Name";
3339
- };
3340
- readonly textSizeSection: {
3341
- readonly title: "Text size";
3342
- readonly scaleFormat: (params: {
3343
- value: string;
3344
- }) => string;
3345
- };
3346
- readonly fontSection: {
3347
- readonly title: "Font";
3348
- };
3349
- readonly sourceSection: {
3350
- readonly title: "Source";
3351
- readonly url: "URL";
3352
- readonly name: "Name";
3353
- };
3354
- };
3355
- readonly powerUpPanel: {
3356
- readonly toolbarButton: "Power-ups";
3357
- readonly goalSection: {
3358
- readonly title: "Goal";
3359
- readonly toggle: "Goal";
3360
- readonly labelControl: "Label";
3361
- readonly labelPlaceholder: "Goal";
3362
- readonly labelAriaLabel: "Custom goal label";
3363
- readonly valueControl: "Goal value";
3364
- readonly byDate: "By date";
3365
- readonly xAxisValue: "X-axis value";
3366
- readonly optional: " (optional)";
3367
- readonly xAxisReferenceAriaLabel: "X-axis reference value";
3368
- readonly anyXAxisValue: "Any x-axis value";
3369
- readonly selectValuePlaceholder: "Select value";
3370
- };
3371
- readonly trendSection: {
3372
- readonly title: "Trend";
3373
- readonly toggle: "Trend";
3374
- };
3375
- readonly averageSection: {
3376
- readonly title: "Average";
3377
- readonly toggle: "Average";
3378
- readonly seriesLabel: "Average line series";
3379
- readonly seriesPlaceholder: "Select series";
3380
- readonly seriesAriaLabel: "Series dropdown for average line";
3381
- };
3382
- readonly trendType: {
3383
- readonly label: "Trend type";
3384
- readonly placeholder: "Trend type";
3385
- readonly options: {
3386
- readonly linear: "Linear";
3387
- readonly exponential: "Exponential";
3388
- readonly quadratic: "Quadratic";
3389
- readonly polynomial: "Polynomial";
3390
- readonly logarithmic: "Logarithmic";
3391
- readonly power: "Power";
3392
- readonly loess: "Loess";
3393
- };
3394
- };
3395
- readonly valueInput: {
3396
- readonly percentagePlaceholder: "Percentage";
3397
- readonly numberPlaceholder: "Number";
3398
- readonly percentageSymbol: "%";
3399
- };
3400
- };
3401
- readonly highlighting: {
3402
- readonly modeHelper: {
3403
- readonly title: "Highlight mode";
3404
- readonly hover: "Hover";
3405
- readonly toHighlight: "to highlight";
3406
- readonly anyElement: "any element";
3407
- readonly escToExit: "to exit";
3408
- readonly esc: "ESC";
3409
- };
3410
- readonly emptyState: "No highlight options available";
3411
- readonly deleteAriaLabel: "Delete highlight";
3412
- readonly highlightStyle: {
3413
- readonly tint: "Tint";
3414
- readonly grey: "Grey";
3415
- };
3416
- };
3417
- readonly fineTunePanel: {
3418
- readonly toolbarButton: "Fine tune";
3419
- readonly detailSection: {
3420
- readonly title: "Detail";
3421
- readonly missingValues: "Missing values";
3422
- };
3423
- readonly lineStyleSection: {
3424
- readonly title: "Line style";
3425
- readonly lineCurve: "Line curve";
3426
- readonly sharp: "Sharp";
3427
- readonly smooth: "Smooth";
3428
- };
3429
- };
3430
- readonly customThemeEditor: {
3431
- readonly patternDropdownAriaLabel: "Pattern dropdown for series";
3432
- readonly patterns: {
3433
- readonly solid: "Solid";
3434
- readonly pattern: "Pattern";
3435
- readonly dotted: "Dotted";
3436
- readonly dashed: "Dashed";
3437
- readonly hatched: "Hatched";
3438
- };
3439
- readonly heatmapColorLabel: "Color";
3440
- };
3441
- readonly accessibility: {
3442
- readonly toggleSection: (params: {
3443
- title: string;
3444
- }) => string;
3445
- };
3446
- readonly graphyDefaults: {
3447
- readonly themeOptions: {
3448
- readonly light: "Light";
3449
- readonly dark: "Dark";
3450
- };
3451
- };
3452
- };
3453
579
  readonly graph: {
3454
580
  readonly loading: "Loading";
3455
581
  readonly error: "Something went wrong";
@@ -3544,243 +670,17 @@ declare const EN_GB: {
3544
670
  value: string;
3545
671
  }) => string;
3546
672
  };
3547
- readonly titleEditor: {
3548
- readonly titlePlaceholder: "Untitled";
3549
- readonly subtitlePlaceholder: "Add a subtitle";
3550
- };
3551
- readonly toolbar: {
3552
- readonly formatting: {
3553
- readonly bold: "Bold";
3554
- readonly italic: "Italic";
3555
- readonly underline: "Underline";
3556
- readonly link: "Link";
3557
- };
3558
- readonly link: {
3559
- readonly ariaLabel: "Create link";
3560
- readonly placeholder: "Type or paste a link...";
3561
- readonly submit: "Submit";
3562
- readonly urlLabel: "Link URL";
3563
- readonly apply: "Apply link";
3564
- };
3565
- readonly font: {
3566
- readonly label: "Font";
3567
- readonly ariaLabel: "Font family";
3568
- };
3569
- readonly heading: {
3570
- readonly label: "Heading level";
3571
- readonly ariaLabel: "Text style";
3572
- readonly text: "Text";
3573
- readonly caption: "Caption";
3574
- readonly heading1: "Heading 1";
3575
- readonly heading2: "Heading 2";
3576
- readonly heading3: "Heading 3";
3577
- };
3578
- readonly textAlign: {
3579
- readonly left: "Align left";
3580
- readonly center: "Align center";
3581
- readonly right: "Align right";
3582
- };
3583
- readonly color: {
3584
- readonly label: "Text color";
3585
- };
3586
- };
3587
- readonly colorDropdown: {
3588
- readonly colors: "Colors";
3589
- readonly chartColors: "Chart colors";
3590
- readonly custom: "Custom";
3591
- readonly opacity: "Opacity";
3592
- readonly transparent: "Transparent";
3593
- readonly pickCustom: "Pick custom color";
3594
- readonly pickColor: "Pick color";
3595
- };
3596
673
  readonly legend: {
3597
674
  readonly hiddenItems: "Hidden legend items";
3598
675
  };
3599
- readonly annotations: {
3600
- readonly differenceArrowToolbar: {
3601
- readonly label: "Difference arrow options";
3602
- readonly labelKind: {
3603
- readonly ariaLabel: "Label";
3604
- readonly absoluteDifference: "Absolute change";
3605
- readonly relativeDifference: "Percentage change";
3606
- readonly proportion: "Proportion";
3607
- readonly suspectValue: "This value divides by a baseline of zero.";
3608
- readonly incomparableEnds: "The two ends measure different quantities, so a difference between them has no meaning.";
3609
- };
3610
- readonly color: "Arrow colour";
3611
- readonly size: {
3612
- readonly ariaLabel: "Size";
3613
- readonly small: "Small";
3614
- readonly medium: "Medium";
3615
- readonly large: "Large";
3616
- };
3617
- readonly swap: "Swap direction";
3618
- readonly remove: "Remove arrow";
3619
- };
3620
- readonly shapeToolbar: {
3621
- readonly label: "Shape options";
3622
- readonly color: "Shape colour";
3623
- readonly border: {
3624
- readonly ariaLabel: "Border";
3625
- readonly none: "None";
3626
- readonly thin: "Thin (2px)";
3627
- readonly medium: "Medium (8px)";
3628
- readonly thick: "Thick (16px)";
3629
- };
3630
- readonly remove: "Remove shape";
3631
- readonly resize: {
3632
- readonly 'top-left': "Resize from the top left";
3633
- readonly 'top-right': "Resize from the top right";
3634
- readonly 'bottom-right': "Resize from the bottom right";
3635
- readonly 'bottom-left': "Resize from the bottom left";
3636
- };
3637
- };
3638
- readonly arrowToolbar: {
3639
- readonly label: "Arrow options";
3640
- readonly color: "Arrow colour";
3641
- readonly thickness: {
3642
- readonly ariaLabel: "Thickness";
3643
- readonly thin: "Thin";
3644
- readonly medium: "Medium";
3645
- readonly thick: "Thick";
3646
- };
3647
- readonly startArrowhead: "Start of the arrow";
3648
- readonly endArrowhead: "End of the arrow";
3649
- readonly arrowhead: {
3650
- readonly lineArrow: "Line arrow";
3651
- readonly none: "None";
3652
- };
3653
- readonly lineStyle: {
3654
- readonly ariaLabel: "Line style";
3655
- readonly solid: "Solid";
3656
- readonly dashed: "Dotted";
3657
- };
3658
- readonly sticker: "Sticker effect";
3659
- readonly remove: "Remove arrow";
3660
- readonly moveEndpoint: {
3661
- readonly start: "Move the start of the arrow";
3662
- readonly end: "Move the end of the arrow";
3663
- };
3664
- };
3665
- readonly baseMenu: {
3666
- readonly pinNumber: "Pin number";
3667
- readonly unpinNumber: "Unpin number";
3668
- readonly annotate: "Annotate";
3669
- readonly removeAnnotation: "Remove annotation";
3670
- readonly highlight: "Highlight";
3671
- readonly highlightWithLabel: (params: {
3672
- label: string;
3673
- }) => string;
3674
- readonly removeHighlight: "Remove highlight";
3675
- readonly differenceArrow: "Difference arrow";
3676
- readonly addSticker: "Add sticker";
3677
- readonly removeSticker: "Remove sticker";
3678
- };
3679
- readonly textMenu: {
3680
- readonly title: "Annotate";
3681
- readonly placeholder: "Add a comment";
3682
- readonly addButton: "Add";
3683
- };
3684
- readonly highlights: {
3685
- readonly menuTitle: "Highlight";
3686
- readonly labels: {
3687
- readonly bar: "bar";
3688
- readonly barGroup: "group";
3689
- readonly barStack: "stack";
3690
- readonly barSeries: "series";
3691
- readonly line: "line";
3692
- readonly linePoint: "point";
3693
- readonly lineSeries: "series";
3694
- readonly scatterPoint: "point";
3695
- readonly scatterSeries: "series";
3696
- readonly pieSlice: "slice";
3697
- readonly pointOrBar: "point / bar";
3698
- readonly lineOrSeries: "line / series";
3699
- };
3700
- };
3701
- readonly stickerMenu: {
3702
- readonly title: "Add sticker";
3703
- };
3704
- readonly delete: "Delete";
3705
- readonly arrow: {
3706
- readonly thickness: {
3707
- readonly label: "Thickness";
3708
- readonly thin: "Thin";
3709
- readonly medium: "Medium";
3710
- readonly thick: "Thick";
3711
- };
3712
- readonly arrowhead: {
3713
- readonly startPoint: "Start point";
3714
- readonly endPoint: "End point";
3715
- readonly lineArrow: "Line arrow";
3716
- readonly none: "None";
3717
- };
3718
- readonly lineStyle: {
3719
- readonly label: "Line style";
3720
- readonly solid: "Solid";
3721
- readonly dotted: "Dotted";
3722
- };
3723
- readonly stickerEffect: "Sticker effect";
3724
- readonly toolbarAriaLabel: "Free-form arrow toolbar";
3725
- readonly editorAriaLabel: "Arrow editor";
3726
- };
3727
- readonly differenceArrow: {
3728
- readonly type: {
3729
- readonly proportion: "Proportion";
3730
- readonly difference: ({ absoluteDifference }: {
3731
- absoluteDifference: string;
3732
- }) => string;
3733
- readonly increase: ({ absoluteDifference }: {
3734
- absoluteDifference: string;
3735
- }) => string;
3736
- readonly decrease: ({ absoluteDifference }: {
3737
- absoluteDifference: string;
3738
- }) => string;
3739
- readonly percentageChange: ({ percentageChange }: {
3740
- percentageChange: string;
3741
- }) => string;
3742
- readonly percentIncrease: ({ percentageChange }: {
3743
- percentageChange: string;
3744
- }) => string;
3745
- readonly percentDecrease: ({ percentageChange }: {
3746
- percentageChange: string;
3747
- }) => string;
3748
- };
3749
- readonly size: {
3750
- readonly label: "Size";
3751
- readonly small: "Small";
3752
- readonly medium: "Medium";
3753
- readonly large: "Large";
3754
- };
3755
- readonly flipArrow: "Flip arrow";
3756
- readonly color: "Color";
3757
- readonly toolbarAriaLabel: "Difference arrow toolbar";
3758
- readonly editorAriaLabel: "Difference arrow editor";
3759
- };
3760
- readonly shape: {
3761
- readonly color: "Color";
3762
- readonly border: {
3763
- readonly label: "Border";
3764
- readonly none: "None";
3765
- readonly thin: ({ value }: {
3766
- value: string;
3767
- }) => string;
3768
- readonly medium: ({ value }: {
3769
- value: string;
3770
- }) => string;
3771
- readonly thick: ({ value }: {
3772
- value: string;
3773
- }) => string;
3774
- };
3775
- };
3776
- };
3777
676
  };
3778
677
  readonly dir: "ltr";
3779
678
  };
3780
679
 
3781
680
  /**
3782
681
  * Props for the Footer slot, overridable via `slots.Footer` on `GraphRenderer`. Caption editing in
3783
- * `editable` mode is internal to this default; an override replacing the region opts out of it.
682
+ * `editable` mode is internal to this default it hands off to the editor `/editable` supplies
683
+ * and an override replacing the region opts out of it.
3784
684
  */
3785
685
  declare interface FooterSlotProps {
3786
686
  /** Forward this to the region's outer element — the layout measures the rendered DOM to reserve its space. */
@@ -3978,7 +878,8 @@ declare interface GridSlotProps {
3978
878
 
3979
879
  /**
3980
880
  * Props for the Header slot, overridable via `slots.Header` on `GraphRenderer`. Title editing in
3981
- * `editable` mode is internal to this default; an override replacing the region opts out of it.
881
+ * `editable` mode is internal to this default it hands off to the editor `/editable` supplies
882
+ * and an override replacing the region opts out of it.
3982
883
  */
3983
884
  declare interface HeaderSlotProps {
3984
885
  /** Forward this to the region's outer element — the layout measures the rendered DOM to reserve its space. */
@@ -4015,13 +916,23 @@ declare interface HeadlineSlotProps {
4015
916
 
4016
917
  declare type I18nLocale = keyof typeof dictionaries;
4017
918
 
4018
- declare type I18nRuntimeOverrides = {
4019
- dir?: TextDirection;
4020
- } & {
4021
- [K in TranslationKey]?: OverridePhrase<K>;
4022
- };
919
+ declare type I18nRuntimeOverrides = RuntimeOverrides<ChartPhrases>;
920
+
921
+ /**
922
+ * The translation context editor UI needs, already carrying the editing surface's wording. Mount it
923
+ * around a panel a host places outside the chart; `EditableGraphRenderer` mounts its own.
924
+ *
925
+ * It owns the phrase sets, so a caller cannot name one and silently leave the editor untranslated.
926
+ */
927
+ export declare const IntlProvider: ({ children, ...rest }: Omit<IntlProviderProps, "dictionaries">) => JSX.Element;
4023
928
 
4024
- export declare const IntlProvider: React.FC<CoreIntlProviderProps>;
929
+ declare interface IntlProviderProps {
930
+ locale?: I18nLocale;
931
+ children: ReactNode;
932
+ i18nOverrides?: I18nRuntimeOverrides;
933
+ /** The phrase sets this tree translates against, most specific first. Defaults to the chart's own. */
934
+ dictionaries?: readonly PhraseSource[];
935
+ }
4025
936
 
4026
937
  declare interface IntroAnimationOptions {
4027
938
  /** Whether the entrance plays at all */
@@ -4061,14 +972,14 @@ declare type LocaleShape = {
4061
972
  dir?: TextDirection;
4062
973
  } & Dictionary<typeof EN_GB>;
4063
974
 
4064
- declare type LooseLocaleShape = {
4065
- [K in keyof LocaleShape]?: LooseSection<LocaleShape[K]>;
4066
- };
4067
-
4068
975
  declare type LooseSection<T> = {
4069
976
  [K in keyof T]?: T[K] extends object ? LooseSection<T[K]> : LooseValue<T[K]>;
4070
977
  };
4071
978
 
979
+ declare type LooseShapeOf<T> = {
980
+ [K in keyof T]?: LooseSection<T[K]>;
981
+ };
982
+
4072
983
  declare type LooseString<T> = T extends string ? string : T;
4073
984
 
4074
985
  declare type LooseValue<T> = T extends (...args: infer A) => infer R ? (...args: A) => R : LooseString<T>;
@@ -4118,7 +1029,7 @@ export declare const NumberFormatSection: ({ title, layout, preview }: Overridab
4118
1029
  */
4119
1030
  export declare type OverridableSectionProps = Partial<Pick<SectionProps, 'title' | 'layout' | 'preview'>>;
4120
1031
 
4121
- declare type OverridePhrase<K extends TranslationKey> = PhraseOf<K> extends PhraseFn<infer P> ? PhraseFn<P> | string : string;
1032
+ declare type OverridePhrase<Phrases, Key extends string> = DeepValue<Phrases, Key> extends PhraseFn<infer P> ? PhraseFn<P> | string : string;
4122
1033
 
4123
1034
  export { PANEL_ROOT_ATTRIBUTE }
4124
1035
 
@@ -4139,7 +1050,8 @@ export { PanelRootProps }
4139
1050
 
4140
1051
  declare type PhraseFn<P extends Record<string, unknown> = Record<string, unknown>> = (params: P) => string;
4141
1052
 
4142
- declare type PhraseOf<K extends TranslationKey> = DeepValue<typeof EN_GB, K>;
1053
+ /** One surface's phrases, per locale. */
1054
+ declare type PhraseSource = Partial<Record<I18nLocale, object>>;
4143
1055
 
4144
1056
  /**
4145
1057
  * How large a chart's authored points are drawn. Renders nothing unless a point layer is the host's
@@ -4204,6 +1116,12 @@ export declare const Row: ({ label, layout, icon, children }: SettingRowProps) =
4204
1116
 
4205
1117
  export declare type RowLayout = 'stack' | 'grid';
4206
1118
 
1119
+ declare type RuntimeOverrides<Phrases> = {
1120
+ dir?: TextDirection;
1121
+ } & {
1122
+ [Key in DotNotation<Phrases>]?: OverridePhrase<Phrases, Key>;
1123
+ };
1124
+
4207
1125
  /**
4208
1126
  * One block of a panel: a heading, and the settings under it. Defaults to `fixed`, so a section that
4209
1127
  * forgot to declare a layout shows its controls rather than hiding them.
@@ -4449,8 +1367,6 @@ declare interface TooltipSlotProps {
4449
1367
  content: TooltipContent;
4450
1368
  }
4451
1369
 
4452
- declare type TranslationKey = DotNotation<typeof EN_GB>;
4453
-
4454
1370
  export declare const TrendsAndAveragesSection: ({ title, layout, preview }: OverridableSectionProps) => JSX.Element | null;
4455
1371
 
4456
1372
  /** The resolved controls for the surrounding panel. */