Rename "secrets" to "extras".

This commit is contained in:
sphere 2019-11-21 01:34:32 +01:00
parent f587069d0e
commit 9608021824
5 changed files with 9 additions and 9 deletions

View File

@ -4336,9 +4336,9 @@ static void Command_Isgamemodified_f(void)
if (savemoddata) if (savemoddata)
CONS_Printf(M_GetText("modifiedgame is true, but you can save emblem and time data in this mod.\n")); CONS_Printf(M_GetText("modifiedgame is true, but you can save emblem and time data in this mod.\n"));
else if (modifiedgame) else if (modifiedgame)
CONS_Printf(M_GetText("modifiedgame is true, secrets will not be unlocked\n")); CONS_Printf(M_GetText("modifiedgame is true, extras will not be unlocked\n"));
else else
CONS_Printf(M_GetText("modifiedgame is false, you can unlock secrets\n")); CONS_Printf(M_GetText("modifiedgame is false, you can unlock extravalues\n"));
} }
static void Command_Cheats_f(void) static void Command_Cheats_f(void)

View File

@ -8904,7 +8904,7 @@ static const char *const MENUTYPES_LIST[] = {
"OP_SCREENSHOTS", "OP_SCREENSHOTS",
"OP_ERASEDATA", "OP_ERASEDATA",
// Secrets // Extras
"SR_MAIN", "SR_MAIN",
"SR_PANDORA", "SR_PANDORA",
"SR_LEVELSELECT", "SR_LEVELSELECT",

View File

@ -1386,7 +1386,7 @@ boolean F_CreditResponder(event_t *event)
void F_StartGameEvaluation(void) void F_StartGameEvaluation(void)
{ {
// Credits option in secrets menu // Credits option in extras menu
if (cursaveslot == -1) if (cursaveslot == -1)
{ {
S_FadeOutStopMusic(2*MUSICRATE); S_FadeOutStopMusic(2*MUSICRATE);

View File

@ -480,7 +480,7 @@ static menuitem_t MainMenu[] =
#else #else
{IT_STRING|IT_CALL, NULL, "Multiplayer", M_StartSplitServerMenu, 84}, {IT_STRING|IT_CALL, NULL, "Multiplayer", M_StartSplitServerMenu, 84},
#endif #endif
{IT_STRING|IT_CALL, NULL, "Secrets", M_SecretsMenu, 92}, {IT_STRING|IT_CALL, NULL, "Extras", M_SecretsMenu, 92},
{IT_CALL |IT_STRING, NULL, "Addons", M_Addons, 100}, {IT_CALL |IT_STRING, NULL, "Addons", M_Addons, 100},
{IT_STRING|IT_CALL, NULL, "Options", M_Options, 108}, {IT_STRING|IT_CALL, NULL, "Options", M_Options, 108},
{IT_STRING|IT_CALL, NULL, "Quit Game", M_QuitSRB2, 116}, {IT_STRING|IT_CALL, NULL, "Quit Game", M_QuitSRB2, 116},
@ -661,7 +661,7 @@ static menuitem_t SR_PandorasBox[] =
// Sky Room Custom Unlocks // Sky Room Custom Unlocks
static menuitem_t SR_MainMenu[] = static menuitem_t SR_MainMenu[] =
{ {
{IT_STRING|IT_SUBMENU,NULL, "Secrets Checklist", &SR_UnlockChecklistDef, 0}, {IT_STRING|IT_SUBMENU,NULL, "Extras Checklist", &SR_UnlockChecklistDef, 0},
{IT_DISABLED, NULL, "", NULL, 0}, // Custom1 {IT_DISABLED, NULL, "", NULL, 0}, // Custom1
{IT_DISABLED, NULL, "", NULL, 0}, // Custom2 {IT_DISABLED, NULL, "", NULL, 0}, // Custom2
{IT_DISABLED, NULL, "", NULL, 0}, // Custom3 {IT_DISABLED, NULL, "", NULL, 0}, // Custom3
@ -1455,7 +1455,7 @@ enum
static menuitem_t OP_EraseDataMenu[] = static menuitem_t OP_EraseDataMenu[] =
{ {
{IT_STRING | IT_CALL, NULL, "Erase Record Data", M_EraseData, 10}, {IT_STRING | IT_CALL, NULL, "Erase Record Data", M_EraseData, 10},
{IT_STRING | IT_CALL, NULL, "Erase Secrets Data", M_EraseData, 20}, {IT_STRING | IT_CALL, NULL, "Erase Extras Data", M_EraseData, 20},
{IT_STRING | IT_CALL, NULL, "\x85" "Erase ALL Data", M_EraseData, 40}, {IT_STRING | IT_CALL, NULL, "\x85" "Erase ALL Data", M_EraseData, 40},
}; };
@ -10910,7 +10910,7 @@ static void M_EraseData(INT32 choice)
if (choice == 0) if (choice == 0)
eschoice = M_GetText("Record Attack data"); eschoice = M_GetText("Record Attack data");
else if (choice == 1) else if (choice == 1)
eschoice = M_GetText("Secrets data"); eschoice = M_GetText("Extras data");
else else
eschoice = M_GetText("ALL game data"); eschoice = M_GetText("ALL game data");

View File

@ -99,7 +99,7 @@ typedef enum
MN_OP_SCREENSHOTS, MN_OP_SCREENSHOTS,
MN_OP_ERASEDATA, MN_OP_ERASEDATA,
// Secrets // Extras
MN_SR_MAIN, MN_SR_MAIN,
MN_SR_PANDORA, MN_SR_PANDORA,
MN_SR_LEVELSELECT, MN_SR_LEVELSELECT,