Simple translation library/UDF for AutoIt
Inspired by gettext and AU3Text.
- Place compiled
eci.exe
binary undereci\build
folder - Run
Extract.au3
script to interactively extract all translatable strings from your script
NOTE: The extractor will only extract translatable strings from your code (i.e strings wrapped in the _
function):
#include "_.au3"
ConsoleWrite("This string will NOT be extracted")
ConsoleWrite(_("This string will be extracted"))
- Include
_.au3
in your script - Call
_Translate_LoadTable
with path of your translation table - Use
_
to wrap all of your strings which need to be translated