Space Engineers

Space Engineers

Solar Panel Alignment Script [BROKEN]
 This topic has been pinned, so it's probably important
mezzodrinker  [developer] Nov 9, 2015 @ 3:01pm
How To: Configure the Script for Non-English Languages
How To: Configuring the Script for Non-English Languages
Since this script needs to parse some values from the detailed descriptions of certain blocks (which are localized, means dependent on the user's language), options to configure this script appropriately have been added.

1, Find the class that contains all localization values for the script. The line should look like this:
public static class Localization {

2, Set all variables there to the appropriate values. The comments (lines starting with //) above all variables should give you a hint as to what you need to write there to make the script work.

3, You're done!

Sample configurations
German/Deutsch (last updated: 10 Nov 2015)
public const string MaxOutput = "Max. Abgabe: "; public const string CurrentOutput = "Derzeitige Abgabe: ";

French/Français (last updated: 10 Nov 2015)
public const string MaxOutput = "Sortie max : "; public const string CurrentOutput = "Courant de sortie:";