F fabio borges Member Licensed User Longtime User Mar 30, 2021 #1 I need to translate the text "X to Y out of N" to portuguese, how can I do?
DonManfred Expert Licensed User Longtime User Mar 30, 2021 #2 B4X: B4XTable1.lblFirst.Text = "1st" B4XTable1.lblLast.Text = "last" B4XTable1.lblFromTo.Text = "fromto" ' There are more Labels.... Upvote 0
B4X: B4XTable1.lblFirst.Text = "1st" B4XTable1.lblLast.Text = "last" B4XTable1.lblFromTo.Text = "fromto" ' There are more Labels....
M Mahares Expert Licensed User Longtime User Mar 30, 2021 #3 fabio borges said: I need to translate the text "X to Y out of N" to portuguese, how can I do? Click to expand... Use this: B4X: sleep(0) 'don't forget this line B4XTable1.stringto="portuguese here equiv" B4XTable1.StringOutOf="portuguese here equiv" Upvote 0
fabio borges said: I need to translate the text "X to Y out of N" to portuguese, how can I do? Click to expand... Use this: B4X: sleep(0) 'don't forget this line B4XTable1.stringto="portuguese here equiv" B4XTable1.StringOutOf="portuguese here equiv"