I like to know how to localize the strings/labels in the B4X Table Header.
In the forum I found an answer to switch hint text "search" of the the search field. But how to localize the others.
For example "1 to 4 out of 4" into "1 / 4 von 4" or others.
What is with the "lbl.." parameters? How to use them?
Localizator is a cross platform solution for strings localization. The strings are defined in an Excel workbook. They are then converted to a SQLite database file with a B4J program: The database file should be added to the Files tab of your application. Localizator is a class. You need...
Sleep(0) 'don't forget this line
B4XTable1.lblFromTo.TextColor= Colors.red
B4XTable1.stringto="/"
B4XTable1.StringOutOf="von"
'1 to 4 out of 4 becomes 1 / 4 von 4
Sleep(0) 'don't forget this line
B4XTable1.lblFromTo.TextColor= Colors.red
B4XTable1.stringto="/"
B4XTable1.StringOutOf="von"
'1 to 4 out of 4 becomes 1 / 4 von 4
It is better to test and report rather than report and then test. You can save yourself an unnecessary post. This way we know whether it worked for you or not.
I think it is important to let us know if the recommendations made to help you out worked or not, so we know whether we are correct or not. If you have issues with the answers, you need to follow up or if satisfied, just click the 'Like' without wasting your time with an answer. I have noticed, you do not give your feedback in many of your threads. Most people who answer posts work hard on their answers, so they deserve to know where they stand.
Clear Statement from you requests clear answer from me. You are absolutly right and I propose to make it better. Thank you I like person who have a direct speech.
Due to your help with the localization the answer is yes, it works fine. Thank you.