private void CreateProfileSectionList()
        {
            ProfileSections.Clear();

            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.AdministrationSection, SectionName = _globalizer.GetResourceString("ServerSettings_AdministrationSectionLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.AutomaticManagement, SectionName = _globalizer.GetResourceString("ServerSettings_AutomaticManagementLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.RulesSection, SectionName = _globalizer.GetResourceString("ServerSettings_RulesLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.ChatAndNotificationsSection, SectionName = _globalizer.GetResourceString("ServerSettings_ChatAndNotificationsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.HudAndVisualsSection, SectionName = _globalizer.GetResourceString("ServerSettings_HUDAndVisualsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.PlayerSettingsSection, SectionName = _globalizer.GetResourceString("ServerSettings_PlayerSettingsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.DinoSettingsSection, SectionName = _globalizer.GetResourceString("ServerSettings_DinoSettingsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.EnvironmentSection, SectionName = _globalizer.GetResourceString("ServerSettings_EnvironmentLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.StructuresSection, SectionName = _globalizer.GetResourceString("ServerSettings_StructuresLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.EngramsSection, SectionName = _globalizer.GetResourceString("ServerSettings_EngramsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.CustomSettingsSection, SectionName = _globalizer.GetResourceString("ServerSettings_CustomSettingsLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.CustomLevelsSection, SectionName = _globalizer.GetResourceString("ServerSettings_CustomLevelProgressionsLabel")
            });
            if (Config.Default.SectionCraftingOverridesEnabled)
            {
                ProfileSections.Add(new ProfileSection()
                {
                    Selected = false, Section = ServerProfile.ServerProfileSection.CraftingOverridesSection, SectionName = _globalizer.GetResourceString("ServerSettings_CraftingOverridesLabel")
                });
            }
            if (Config.Default.SectionMapSpawnerOverridesEnabled)
            {
                ProfileSections.Add(new ProfileSection()
                {
                    Selected = false, Section = ServerProfile.ServerProfileSection.MapSpawnerOverridesSection, SectionName = _globalizer.GetResourceString("ServerSettings_MapSpawnerOverridesLabel")
                });
            }
            if (Config.Default.SectionSupplyCrateOverridesEnabled)
            {
                ProfileSections.Add(new ProfileSection()
                {
                    Selected = false, Section = ServerProfile.ServerProfileSection.SupplyCrateOverridesSection, SectionName = _globalizer.GetResourceString("ServerSettings_SupplyCrateOverridesLabel")
                });
            }
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.PGMSection, SectionName = _globalizer.GetResourceString("ServerSettings_PGMLabel")
            });
            ProfileSections.Add(new ProfileSection()
            {
                Selected = false, Section = ServerProfile.ServerProfileSection.SOTFSection, SectionName = _globalizer.GetResourceString("ServerSettings_SOTFLabel")
            });
        }