RootsLabs

More than a tool ! GitHub Google+ LinkedIn RSS

Récupérer le language courant

Progi1984 - Commentaires (0)

Permet d’obtenir le langage courant du système

  • Systèmes :
    • Windows
    • Linux
    • Mac Os : une piste est présente
  • PureBasic 4.30

;@author : Progi1984
;@desc : Returns the current language of the system
ProcedureDLL.s System_GetCurrentLanguage()
  Protected sLanguage.s
  CompilerSelect #PB_Compiler_OS
    CompilerCase #PB_OS_Linux ;{
      sLanguage = GetEnvironmentVariable("LANG")
    ;}
    CompilerCase #PB_OS_MacOS ;{
      ; http://developer.apple.com/documentation/MacOSX/Conceptual/BPInternational/Articles/ChoosingLocalizations.html#//apple_ref/doc/uid/20002397-SW4
    ;}
    CompilerCase #PB_OS_Windows ;{
      #LOCALE_SISO639LANGNAME = 89
      #LOCALE_SISO3166CTRYNAME = 90

      Protected sBuffer.s
      Protected lBufferLen.l = 1000
      sBuffer=Space(lBufferLen)
      GetLocaleInfo_(#LOCALE_SYSTEM_DEFAULT, #LOCALE_SISO639LANGNAME, sBuffer, lBufferLen)
      sLanguage = sBuffer

      sBuffer=Space(lBufferLen)
      GetLocaleInfo_(#LOCALE_SYSTEM_DEFAULT, #LOCALE_SISO3166CTRYNAME, sBuffer, lBufferLen)
      sLanguage + "." + sBuffer
    ;}  
  CompilerEndSelect
  ProcedureReturn sLanguage
EndProcedure
Debug System_GetCurrentLanguage()

Ajouter un commentaire

Commentaire :