ByteRipper Posted July 10, 2022 Share Posted July 10, 2022 Hi, i was trying to localize my script and this is what i came up with. You need the Multidimensional Associative Arrays UDF from here That's the language file GuiTitle=Example Label=Text from Language-File. Button_Help=Help MsgBox_Title=Test MsgBox_Text=This ist a test for localizing and@LF@using ExpandVarStrings@LF@to use macros in strings@LF@@LF@Have fun! Here is an Example #include <File.au3> #include "Associative.au3" Opt("ExpandVarStrings", 1) $LangFile = @ScriptDir & "\english.lng" _LangToX($LangFile) $hForm = GUICreate(x("GuiTitle"), 300, 300) GUICtrlCreateLabel(x("Label"), 5, 5, 200, 20) $idButton_Help = GUICtrlCreateButton(x("Button_Help"), 5, 30, 50, 20) GUISetState(@SW_SHOW) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE ExitLoop Case $idButton_Help MsgBox($MB_SYSTEMMODAL, x("MsgBox_Title"), x("MsgBox_Text")) EndSwitch WEnd Func _LangToX($LngFile) Local $aKeyValue = 0 Local $i _FileReadToArray($LngFile, $aKeyValue, 0, "=") For $i = 0 To UBound($aKeyValue, 1) - 1 x($aKeyValue[$i][0], $aKeyValue[$i][1]) Next EndFunc ;==>_LangToX Hope someone find this usefull. Link to comment Share on other sites More sharing options...
jchd Posted July 10, 2022 Share Posted July 10, 2022 27 minutes ago, ByteRipper said: Multidimensional Associative Arrays UDF You can simply use the Map datatype. Show function x() This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
ByteRipper Posted July 10, 2022 Author Share Posted July 10, 2022 I thought that Maps is still experimental and may be changed or removed without notice. The Funtion x() comes from the UDF. It gets or sets a value in an Associative Array. Link to comment Share on other sites More sharing options...
jchd Posted July 10, 2022 Share Posted July 10, 2022 Maps are now rock solid and will remain available forever, whatever forever means. TheDcoder 1 This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now