Renamed "Crypto" project settings section to "Encryption" to better describe it

#preflight none
#rnx

#ROBOMERGE-AUTHOR: michael.noland
#ROBOMERGE-SOURCE: CL 18751113 in //UE5/Release-5.0/... via CL 18751116 via CL 18751143
#ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v903-18687472)

[CL 18751156 by michael noland in ue5-main branch]
This commit is contained in:
michael noland
2022-01-27 02:46:51 -05:00
parent 0a1045f7f4
commit 4d57453b3e

View File

@@ -44,9 +44,9 @@ public:
{
if (ISettingsModule* SettingsModule = FModuleManager::GetModulePtr<ISettingsModule>("Settings"))
{
SettingsModule->RegisterSettings("Project", "Project", "Crypto",
LOCTEXT("CryptoSettingsName", "Crypto"),
LOCTEXT("CryptoSettingsDescription", "Configure the project crypto keys"),
SettingsModule->RegisterSettings("Project", "Project", "Encryption",
LOCTEXT("CryptoSettingsName", "Encryption"),
LOCTEXT("CryptoSettingsDescription", "Configure the project encryption keys"),
GetMutableDefault<UCryptoKeysSettings>());
}
}
@@ -55,7 +55,7 @@ public:
{
if (ISettingsModule* SettingsModule = FModuleManager::GetModulePtr<ISettingsModule>("Settings"))
{
SettingsModule->UnregisterSettings("Project", "Project", "Crypto");
SettingsModule->UnregisterSettings("Project", "Project", "Encryption");
}
}