Simple translation library/UDF for AutoIt
Inspired by gettext and AU3Text.
- Place compiled
eci.exebinary undereci\buildfolder - Run
Extract.au3script 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
_.au3in your script - Call
_Translate_LoadTablewith path of your translation table - Use
_to wrap all of your strings which need to be translated