Home | History | Annotate | Download | only in scripts
      1 #!/bin/bash
      2 
      3 ######################
      4 # Language Parameter:
      5 ######################
      6 #
      7 # Value: languageID_countryID (The _countryID may be ommited)
      8 # language_ID = An identifier from ISO 639-1
      9 # country_ID = An identifier from ISO 3166-1
     10 #
     11 # Uncomment the "LANGUAGE" parameter below to start the MOTODEV Studio for Android in the language you want
     12 #
     13 
     14 #LANGUAGE="-nl en"
     15 #LANGUAGE="-nl pt_BR"
     16 
     17 START_COMMAND=${0%.sh}
     18 unset UBUNTU_MENUPROXY
     19 
     20 # added duo to a eclipse bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=345979
     21 
     22 export LIBOVERLAY_SCROLLBAR=0 
     23 
     24 if [ ${START_COMMAND:0:1} == "/" ]
     25 then
     26 $START_COMMAND $@ $LANGUAGE
     27 else
     28 ./$START_COMMAND $@ $LANGUAGE
     29 fi
     30