File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
client/packages/lowcoder/src Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -66,32 +66,32 @@ export const TourPlacementTooltip = (
66
66
{ trans ( "tour.placement.tooltip" ) }
67
67
< br />
68
68
< br />
69
- < h4 > Valid options </ h4 >
70
- < h5 > Above the component: </ h5 >
69
+ < h4 > { trans ( "tour.placement.tooltipValidOptions" ) } </ h4 >
70
+ < h5 > { trans ( "tour.placement.tooltipValidOptionsAbove" ) } </ h5 >
71
71
< ul >
72
72
< li > < code > topLeft</ code > </ li >
73
73
< li > < code > top</ code > </ li >
74
74
< li > < code > topRight</ code > </ li >
75
75
</ ul >
76
- < h5 > To the left of the component: </ h5 >
76
+ < h5 > { trans ( "tour.placement.tooltipValidOptionsLeft" ) } </ h5 >
77
77
< ul >
78
78
< li > < code > leftTop</ code > </ li >
79
79
< li > < code > left</ code > </ li >
80
80
< li > < code > leftBottom</ code > </ li >
81
81
</ ul >
82
- < h5 > To the right of the component: </ h5 >
82
+ < h5 > { trans ( "tour.placement.tooltipValidOptionsRight" ) } </ h5 >
83
83
< ul >
84
84
< li > < code > rightTop</ code > </ li >
85
85
< li > < code > right</ code > </ li >
86
86
< li > < code > rightBottom</ code > </ li >
87
87
</ ul >
88
- < h5 > Below the component: </ h5 >
88
+ < h5 > { trans ( "tour.placement.tooltipValidOptionsBelow" ) } </ h5 >
89
89
< ul >
90
90
< li > < code > bottomLeft</ code > </ li >
91
91
< li > < code > bottom</ code > </ li >
92
92
< li > < code > bottomRight</ code > </ li >
93
93
</ ul >
94
- < h5 > On top of the component: </ h5 >
94
+ < h5 > { trans ( "tour.placement.tooltipValidOptionsOnTop" ) } </ h5 >
95
95
< ul >
96
96
< li > center</ li >
97
97
</ ul >
Original file line number Diff line number Diff line change @@ -2882,7 +2882,12 @@ export const en = {
2882
2882
placement : {
2883
2883
label : "Placement" ,
2884
2884
tooltip : "Position of the guide card relative to the target element. Can be overridden at the step level." ,
2885
- tooltipValidOptions : "center left leftTop leftBottom right rightTop rightBottom top topLeft topRight bottom bottomLeft bottomRight"
2885
+ tooltipValidOptions : "Valid options" ,
2886
+ tooltipValidOptionsAbove : "Above the component:" ,
2887
+ tooltipValidOptionsLeft : "To the left of the component:" ,
2888
+ tooltipValidOptionsRight : "To the right of the component:" ,
2889
+ tooltipValidOptionsBelow : "Below the component:" ,
2890
+ tooltipValidOptionsOnTop : "On top of the component:" ,
2886
2891
} ,
2887
2892
arrow : {
2888
2893
label : "Arrow" ,
You can’t perform that action at this time.
0 commit comments