mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-04-28 13:27:58 +03:00
locale: update localisation for Voice Language
This commit is contained in:
parent
f2e01bbe79
commit
87d2ab5af1
4 changed files with 50 additions and 27 deletions
|
@ -49,6 +49,52 @@ CONFIG_DEFINE_ENUM_LOCALE(ELanguage)
|
|||
}
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_LOCALE(EVoiceLanguage)
|
||||
{
|
||||
{
|
||||
ELanguage::English,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "ENGLISH", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "JAPANESE", "" } }
|
||||
}
|
||||
},
|
||||
{
|
||||
ELanguage::Japanese,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "英語", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "日本語", "" } }
|
||||
}
|
||||
},
|
||||
{
|
||||
ELanguage::German,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "ENGLISCH", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "JAPANISCH", "" } }
|
||||
}
|
||||
},
|
||||
{
|
||||
ELanguage::French,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "ANGLAIS", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "JAPONAIS", "" } }
|
||||
}
|
||||
},
|
||||
{
|
||||
ELanguage::Spanish,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "INGLÉS", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "JAPONÉS", "" } }
|
||||
}
|
||||
},
|
||||
{
|
||||
ELanguage::Italian,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "INGLESE", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "GIAPPONESE", "" } }
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(Hints)
|
||||
{
|
||||
{ ELanguage::English, { "Hints", "Show hint rings in stages." } }
|
||||
|
@ -169,17 +215,6 @@ CONFIG_DEFINE_LOCALE(VoiceLanguage)
|
|||
{ ELanguage::English, { "Voice Language", "Change the language used for character voices." } }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_LOCALE(EVoiceLanguage)
|
||||
{
|
||||
{
|
||||
ELanguage::English,
|
||||
{
|
||||
{ EVoiceLanguage::English, { "ENGLISH", "" } },
|
||||
{ EVoiceLanguage::Japanese, { "日本語", "" } }
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_LOCALE(Subtitles)
|
||||
{
|
||||
{ ELanguage::English, { "Subtitles", "Show subtitles during dialogue." } }
|
||||
|
|
|
@ -18,12 +18,6 @@ CONFIG_DEFINE_ENUM_TEMPLATE(ELanguage)
|
|||
{ "Italian", ELanguage::Italian }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_TEMPLATE(EUnleashGaugeBehaviour)
|
||||
{
|
||||
{ "Original", EUnleashGaugeBehaviour::Original },
|
||||
{ "Revised", EUnleashGaugeBehaviour::Revised }
|
||||
};
|
||||
|
||||
CONFIG_DEFINE_ENUM_TEMPLATE(ETimeOfDayTransition)
|
||||
{
|
||||
{ "Xbox", ETimeOfDayTransition::Xbox },
|
||||
|
|
|
@ -29,10 +29,10 @@ public:
|
|||
|
||||
extern std::vector<IConfigDef*> g_configDefinitions;
|
||||
|
||||
enum class EUnleashGaugeBehaviour : uint32_t
|
||||
enum class EVoiceLanguage : uint32_t
|
||||
{
|
||||
Original,
|
||||
Revised
|
||||
English,
|
||||
Japanese
|
||||
};
|
||||
|
||||
enum class ETimeOfDayTransition : uint32_t
|
||||
|
@ -60,12 +60,6 @@ enum class EChannelConfiguration : uint32_t
|
|||
Surround
|
||||
};
|
||||
|
||||
enum class EVoiceLanguage : uint32_t
|
||||
{
|
||||
English,
|
||||
Japanese
|
||||
};
|
||||
|
||||
enum class EGraphicsAPI : uint32_t
|
||||
{
|
||||
#ifdef UNLEASHED_RECOMP_D3D12
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 598576ff8375631b638298815cba4c5e8777191c
|
||||
Subproject commit 2d135d175dfbedd84d78fb846bcc7de4a859f8ef
|
Loading…
Add table
Add a link
Reference in a new issue