mirror of
https://github.com/wassname/Clover-Edition.git
synced 2026-09-11 11:51:53 +08:00
update
This commit is contained in:
+4
-4
@@ -137,7 +137,7 @@ def capitalize_first_letters(text):
|
||||
|
||||
|
||||
def first_to_second_person(text):
|
||||
print("F_TO_S First person text:")
|
||||
print("\nF_TO_S First person text:")
|
||||
print(text)
|
||||
for pair in first_to_second_mappings:
|
||||
variations = mapping_variation_pairs(pair)
|
||||
@@ -145,11 +145,11 @@ def first_to_second_person(text):
|
||||
text = replace_outside_quotes(text, variation[0], variation[1])
|
||||
|
||||
return capitalize_first_letters(text)
|
||||
print("F_TO_S second person text:")
|
||||
print("\nF_TO_S second person text:")
|
||||
print(text)
|
||||
|
||||
def second_to_first_person(text):
|
||||
print("S_TO_F second person text:")
|
||||
print("\nS_TO_F second person text:")
|
||||
print(text)
|
||||
|
||||
for pair in second_to_first_mappings:
|
||||
@@ -157,7 +157,7 @@ def second_to_first_person(text):
|
||||
for variation in variations:
|
||||
text = replace_outside_quotes(text, variation[0], variation[1])
|
||||
|
||||
print("S_TO_F first person text:")
|
||||
print("\nS_TO_F first person text:")
|
||||
print(text)
|
||||
return capitalize_first_letters(text)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user