adjust defaults and add comments

This commit is contained in:
dazedanon 2025-08-25 15:06:05 -05:00
parent f9f7f50bca
commit 2dae0178e9
2 changed files with 5 additions and 2 deletions

View file

@ -74,11 +74,15 @@ TRANSLATION_CONFIG = TranslationConfig(
LEAVE = False
# Config (Default)
# FIRSTLINESPEAKERS: Guess speaker from first line.
FIRSTLINESPEAKERS = False
# FACENAME101: Map face name -> speaker.
FACENAME101 = False
NAMES = False
# BRFLAG: Newlines -> <br>.
BRFLAG = False
# FIXTEXTWRAP: Rewrap text to WIDTH/NOTEWIDTH.
FIXTEXTWRAP = True
# IGNORETLTEXT: Skip Translated Text.
IGNORETLTEXT = False
# Dialogue / Scroll / Choices (Main Codes)

View file

@ -8,7 +8,6 @@ def set_defaults(file_path):
defaults = {
'FIRSTLINESPEAKERS': 'False',
'FACENAME101': 'False',
'NAMES': 'False',
'BRFLAG': 'False',
'FIXTEXTWRAP': 'True',
'IGNORETLTEXT': 'False',