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 = (
6666 { trans ( "tour.placement.tooltip" ) }
6767 < br />
6868 < 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 >
7171 < ul >
7272 < li > < code > topLeft</ code > </ li >
7373 < li > < code > top</ code > </ li >
7474 < li > < code > topRight</ code > </ li >
7575 </ ul >
76- < h5 > To the left of the component: </ h5 >
76+ < h5 > { trans ( "tour.placement.tooltipValidOptionsLeft" ) } </ h5 >
7777 < ul >
7878 < li > < code > leftTop</ code > </ li >
7979 < li > < code > left</ code > </ li >
8080 < li > < code > leftBottom</ code > </ li >
8181 </ ul >
82- < h5 > To the right of the component: </ h5 >
82+ < h5 > { trans ( "tour.placement.tooltipValidOptionsRight" ) } </ h5 >
8383 < ul >
8484 < li > < code > rightTop</ code > </ li >
8585 < li > < code > right</ code > </ li >
8686 < li > < code > rightBottom</ code > </ li >
8787 </ ul >
88- < h5 > Below the component: </ h5 >
88+ < h5 > { trans ( "tour.placement.tooltipValidOptionsBelow" ) } </ h5 >
8989 < ul >
9090 < li > < code > bottomLeft</ code > </ li >
9191 < li > < code > bottom</ code > </ li >
9292 < li > < code > bottomRight</ code > </ li >
9393 </ ul >
94- < h5 > On top of the component: </ h5 >
94+ < h5 > { trans ( "tour.placement.tooltipValidOptionsOnTop" ) } </ h5 >
9595 < ul >
9696 < li > center</ li >
9797 </ ul >
Original file line number Diff line number Diff line change @@ -2882,7 +2882,12 @@ export const en = {
28822882 placement : {
28832883 label : "Placement" ,
28842884 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:" ,
28862891 } ,
28872892 arrow : {
28882893 label : "Arrow" ,
You can’t perform that action at this time.
0 commit comments