Jump to content

Localizing


ByteRipper
 Share

Recommended Posts

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

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 here
RegExp tutorial: enough to get started
PCRE 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

Maps are now rock solid and will remain available forever, whatever forever means.

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 here
RegExp tutorial: enough to get started
PCRE 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...