Move "Reset to default" button label to XML

This commit is contained in:
amevarashi 2022-04-19 23:41:07 +05:00
parent 678ffc995a
commit a3d23a436a
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,7 @@
<LanguageData>
<RS_Mod_Title>RJW Sexperience</RS_Mod_Title>
<!-- Sex status screen -->
<LustStatFactor>Lust: x{0}%</LustStatFactor>
<SlaveStatFactor>Slave: x{0}%</SlaveStatFactor>
<SlaveStatFactorDefault>Not Slave: x100%</SlaveStatFactorDefault>
@ -59,6 +60,7 @@
<RS_LastSex>last sex</RS_LastSex>
<RS_HadBestSexDaysAgo>Had best sex {0}.</RS_HadBestSexDaysAgo>
<!-- Mod settings -->
<RSOption_1_Label>Enable record randomizer</RSOption_1_Label>
<RSOption_1_Desc>Randomize pawn's sex records.</RSOption_1_Desc>
<RSOption_2_Label>Lust effect power</RSOption_2_Label>
@ -85,7 +87,9 @@
<RSOption_MaxSingleLustChange_Desc>Set how much lust can change from a single sex act</RSOption_MaxSingleLustChange_Desc>
<RSOption_EnableBastardRelation_Label>Enable Bastard relation</RSOption_EnableBastardRelation_Label>
<RSOption_EnableBastardRelation_Desc>Child is marked as a bastard if they have only one parent or their parents are (or was) married</RSOption_EnableBastardRelation_Desc>
<Button_ResetToDefault>Reset to default</Button_ResetToDefault>
<!-- Sex types -->
<Vaginal>Vaginal</Vaginal>
<Anal>Anal</Anal>
<Oral>Oral</Oral>
@ -104,6 +108,7 @@
<Cunnilingus>Cunnilingus</Cunnilingus>
<Sixtynine>Sixtynine</Sixtynine>
<!-- Sexuality -->
<None>None</None>
<Asexual>Asexual</Asexual>
<Pansexual>Pansexual</Pansexual>
@ -115,11 +120,13 @@
<MostlyHomosexual>Mostly gay</MostlyHomosexual>
<Homosexual>Gay</Homosexual>
<!-- Misc -->
<Lust>lust</Lust>
<Unknown>unknown</Unknown>
<Virgin>virgin</Virgin>
<Incest>incest</Incest>
<!-- Order mode -->
<RS_PONormal>Unordered</RS_PONormal>
<RS_PoRecent>Recent</RS_PoRecent>
<RS_PoMost>Most</RS_PoMost>

View File

@ -128,7 +128,7 @@ namespace RJWSexperience
listmain.CheckboxLabeled(Keyed.Option_EnableBastardRelation_Label, ref enableBastardRelation, Keyed.Option_EnableBastardRelation_Desc);
if (listmain.ButtonText("reset to default"))
if (listmain.ButtonText(Keyed.Button_ResetToDefault))
{
ResetToDefault();
}

View File

@ -89,6 +89,7 @@ namespace RJWSexperience
public static readonly string Option_MaxSingleLustChange_Desc = "RSOption_MaxSingleLustChange_Desc".Translate();
public static readonly string Option_EnableBastardRelation_Label = "RSOption_EnableBastardRelation_Label".Translate();
public static readonly string Option_EnableBastardRelation_Desc = "RSOption_EnableBastardRelation_Desc".Translate();
public static readonly string Button_ResetToDefault = "Button_ResetToDefault".Translate();
public static string Translate(this PartnerOrderMode mode)
{