B4J Code Snippet B4J - GoogleTranslateDB

Hello to all forum users,
I am pleased to present my next project "B4JGoogleTranslateDB".

It was created for my own needs of translating applications into other languages.
Surely you will find many similar solutions on the forum,
mine is as follows:

Required Libraries:
ScreenShot00000.png


and a text file that contains lines with the text to be translated:
ScreenShot00001.png

The rest is intuitive I hope :)

Application source code uses library (B4XCheckInternet v1.10)
which is not freeware. :( It is modeled on the idea of @LucaMs with a similar name (B4XCheckInternetLM).
My library version has a different dialog that fits my application.

The source code also contains an example of using my translation method,
i.e. Main.loc.Localize(...):

see: TitleBarAndMoreRefresh:
Sub TitleBarAndMoreRefresh
    TitleBarCV1.setMinimizeIcon(Main.loc.Localize("Minimalizuj"))
    TitleBarCV1.setMaximizeIcon(Main.loc.Localize("Maksymalizuj"))
    TitleBarCV1.setCloseIcon(Main.loc.Localize("Zamknij"))
    ...

Regards

If any of my posts were helpful, please consider a donation of any amount
btn_donate.png .. or clicking the Like button would be appreciated too.
 

Attachments

  • GoogleTranslateDB.zip
    76 KB · Views: 98
  • ScreenShot00002.png
    ScreenShot00002.png
    28.5 KB · Views: 141
  • ScreenShot00003.png
    ScreenShot00003.png
    31.6 KB · Views: 151
  • ScreenShot00004.png
    ScreenShot00004.png
    31.7 KB · Views: 143
Top