Share My Creation B4X Localizator 2-Way File Converter (strings.db <-> strings.xlsx)

1763405349266.png


This is a 2-way converter for B4X Localizator files which is a combination between Erel's B4J Localizator Convertor (xlsx->db) and my Localizator File Converter (db->xlsx).

GitHub: https://github.com/pyhoon/localizator-file-converter-b4j
Download (22MB): https://github.com/pyhoon/localizator-file-converter-b4j/releases/download/v2.01/result.jar
 

Attachments

  • localizator-file-converter.zip
    11.9 KB · Views: 19
Last edited:

aeric

Expert
Licensed User
Longtime User
Minor update:
Fixed bug Log was showing excel file instead of sqlite file.
SaveSQLite:
'LogMessage("Success", "SQLite file saved: " & ExcelPath)
LogMessage("Success", "SQLite file saved: " & SQLitePath)

Tips:
Maybe you are not aware, this tool can also run using command line or Macro.
B4X:
#Macro: Title, Convert, ide://run?File=result.jar&Args=strings.xlsx&Args=strings.db

You can also pass the absolute path in any project by putting the Macro in Main module or B4XMainPage. For convenient, you can put the compile jar in B4J/B4X Additional Libraries folder for sharing between the B4X platforms.

For example (B4J Additional Libraries folder):
B4X:
#Macro: Title, Convert, ide://run?File=%ADDITIONAL%\localizator-file-converter.jar&Args=strings.db&Args=strings.xlsx
The first argument is input, the second argument is output. You can switch between them.
 
Top