change f-string to format function for helping the translation
Compare changes
- AcientSoul authored
@@ -114,39 +114,39 @@ screen person_info_ui(person): #Used to display stats for a person while you're
tooltip __("Girls who love you will be more willing to have sex when you're in private (as long as they aren't family) and be more devoted to you. Girls who hate you will have a lower effective sluttiness regardless of the situation.\nLove: {love_value}").format(love_value=get_attention_number_string(person.love, 100))
@@ -158,10 +158,10 @@ screen person_info_ui(person): #Used to display stats for a person while you're
tooltip f"The higher a girls sluttiness the more slutty actions she will consider acceptable and normal. Temporary sluttiness ({{image=red_heart_token_small}}) is added to her sluttiness based on arousal, for active modifiers see {{image=question_mark_small}}.\nSluttiness: {get_attention_number_string(person.effective_sluttiness(), 100)}"
tooltip __("The higher a girls sluttiness the more slutty actions she will consider acceptable and normal. Temporary sluttiness ({{image=red_heart_token_small}}) is added to her sluttiness based on arousal, for active modifiers see {{image=question_mark_small}}.\nSluttiness: {sluttiness_value}").format(sluttiness_value=get_attention_number_string(person.effective_sluttiness(), 100))
@@ -177,44 +177,44 @@ screen person_info_ui(person): #Used to display stats for a person while you're
@@ -283,3 +283,4 @@ screen person_info_ui(person): #Used to display stats for a person while you're