IDs - Language

The place to discuss scripting and game modifications for X4: Foundations.

Moderators: Scripting / Modding Moderators, Moderators for English X Forum

User avatar
alexalsp
Posts: 1955
Joined: Fri, 18. Jul 14, 05:28
x4

IDs - Language

Post by alexalsp »

7 = Russian
33 = French
34 = Spanish
39 = Italian
42 = Czech
44 = English (obviously)
48 = Polish
49 = German
55 = Portuguese (Brazilian)
81 = Japanese
82 = Korean
86 = Chinese (Simplified)
88 = Chinese (Traditional)
90 = Turkish
380 = Ukrainian
Last edited by alexalsp on Fri, 16. Jan 26, 00:26, edited 2 times in total.
sprIder
Posts: 141
Joined: Sat, 3. Jul 10, 23:23
x4

Re: IDs - Language

Post by sprIder »

44 = English (obviously)
90 = Turkish
380 = Ukrainian

See also libraries/languages.xml
User avatar
alexalsp
Posts: 1955
Joined: Fri, 18. Jul 14, 05:28
x4

Re: IDs - Language

Post by alexalsp »

Thanks, I checked it out. For some reason, Turkish and Ukrainian are commented out in the file.
These languages are not specified in Steam. :gruebel:

Code: Select all

  <?xml version="1.0" encoding="utf-8" ?> 
- <languages>
- <!--  English 
  --> 
  <language id="44" name="English" voice="true" warning="A restart is required for changes to take effect!" /> 
- <!--  German 
  --> 
  <language id="49" name="Deutsch" voice="true" warning="Damit die Änderung wirksam wird, ist ein Neustart notwendig!" /> 
- <!--  French 
  --> 
  <language id="33" name="Français" voice="true" warning="Un redémarrage est nécessaire pour la prise en compte des changements !" /> 
- <!--  Italian 
  --> 
  <language id="39" name="Italiano" warning="I cambiamenti saranno effettivi al prossimo riavvio!" /> 
- <!--  Russian 
  --> 
  <language id="7" name="Русский" voice="true" warning="Перезагрузите игру, чтобы изменения вступили в силу!" /> 
- <!--  Spanish 
  --> 
  <language id="34" name="Español" warning="¡Es necesario reiniciar para que los cambios surtan efecto!" /> 
- <!--  Portuguese (Brazil) 
  --> 
  <language id="55" name="Português (Brasil)" voice="true" warning="Para que as mudanças funcionem, é preciso reiniciar!" /> 
- <!--  Polish 
  --> 
  <language id="48" name="Polski" warning="Wymagane jest ponowne uruchomienie, aby zmiany zadziałały!" /> 
- <!--  Czech 
  --> 
  <language id="42" name="Čeština" warning="Aby se změny projevily, je nutný restart!" /> 
- <!--  Turkish 
  --> 
- <!--  language id="90" name="Türkçe" warning="Değişikliklerin etkili olması için yeniden başlatma gerekiyor!" /
  --> 
- <!--  Ukrainian 
  --> 
- <!--  language id="380" name="Українська" warning="Перезавантажте гру, щоб зміни набули чинності!" /
  --> 
- <!--  Simplified Chinese 
  --> 
  <language id="86" name="简体中文" font="csfont" displaytimefactor="5.0" warning="需要重新启动以使更改生效!" /> 
- <!--  Traditional Chinese 
  --> 
  <language id="88" name="繁體中文" font="ctfont" displaytimefactor="5.0" warning="需要重新啟動以使更改生效!" /> 
- <!--  Korean 
  --> 
  <language id="82" name="한국어" font="kofont" displaytimefactor="5.0" warning="변경내용이 적용되기 위해서는 새로 시작하셔야 합니다." /> 
- <!--  Japanese 
  --> 
  <language id="81" name="日本語" font="jfont" displaytimefactor="5.0" warning="変更を有効にするには再起動してください!" /> 
  </languages>
User avatar
alexalsp
Posts: 1955
Joined: Fri, 18. Jul 14, 05:28
x4

Re: IDs - Language

Post by alexalsp »

What game launch parameters exist? Where can I find and read them, if they exist?

I know about these, are there any others?

Code: Select all

X4.exe -skipintro -logfile debuglog.txt -voicelanguage 44 -language 44
User avatar
euclid
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 13537
Joined: Sun, 15. Feb 04, 20:12
x4

Re: IDs - Language

Post by euclid »

alexalsp wrote: Fri, 16. Jan 26, 02:25 What game launch parameters exist? Where can I find and read them, if they exist?

I know about these, are there any others?

Code: Select all

X4.exe -skipintro -logfile debuglog.txt -voicelanguage 44 -language 44
Might not be up-to-date:

Code: Select all

antialiasing
borderless
captureformat
capturefps
confinemouse
clearstatsandachievements
capturepath
clearstats
difficulty
disableallplayershiprendering
disableambientsounds
disableassertions
disablecockpit
disableeffectsounds
disablemusic
disableplayershipgeometry
disablesound
disableui
disableuisounds
disablevoicesounds
enablexmlvalidation
forcehmd
fpusecameraforward
fullscreen
handle_activateapp
instantplayerrespawn 
language
logfile
mouselooksteering
mpar
noantialiasing
nocompress
nocputhrottle
nodefaultlog
noglow
noshadows
nosoundthrottle
nossao
notestassets
noworkshopsync
offline
personalfolderid
prefersinglefiles
scriptlogfiles
skipgpucheck
skipintro
showfps
soundsystem
usefallbacktext
voicelanguage
volumeambient
volumeeffects
volumemusic
volumevoice
volumeui
vrfpusediscreterotation
vrpointerhand
vsync
warnonfallbacktext
windowed
Cheers Euclid
"In any special doctrine of nature there can be only as much proper science as there is mathematics therein.”
- Immanuel Kant (1724-1804), Metaphysical Foundations of the Science of Nature, 4:470, 1786
User avatar
alexalsp
Posts: 1955
Joined: Fri, 18. Jul 14, 05:28
x4

Re: IDs - Language

Post by alexalsp »

Thank you. :x4: :thumb_up:

Return to “X4: Foundations - Scripts and Modding”