Returns the Locale ID (LCID) of the language the current Windows OS is installed in, meaning it tells you the language of the installed Windows.
' is this a norwegian Windows ?
if PBXScript.SystemLanguageID = 1044 Then
...
End If
This property returns an integer value.
The following is a list of all LCIDs of Windows the SwyxWare is/was localized to:
| Language |
hex value |
decimal value |
short string |
| Danish |
0x0406 |
1030 |
dk |
| Dutch |
0x0813 |
1043 |
nl |
| English UK |
0x0809 |
2057 |
en-GB |
| French |
0x040C |
1036 |
fr |
| German |
0x0407 |
1031 |
de |
| Italian |
0x0410 |
1040 |
it |
| Norwegian |
0x0414 |
1044 |
no |
| Spanish |
0x0C0A |
3082 |
es |
Using the PBXScript.InstallLanguageID function you can additionally request the LCID of the installed SwyxWare.
A complete list of all existing LCIDs can be found within the MSDN.
? Server Script API
|
| View Topic History
|