class Lexicon:
# InvestmentDecisionPage.html
investment_title = "Example of an Investment Decision"
advisor_info = "Advisor Allocation"
treatment_allocation = "The recommended allocation is {allocation}%."
treatment_forecast = "The best forecast for next period's return is {best_forecast}%."
treatment_allocation_forecast = """
The best forecast for next period's return is {best_forecast}%,
and the recommended allocation is {allocation}%.
"""
treatment_autonomous = "Your advisor has invested {allocation} of your tokens in the risky asset."
# Form field labels
return_expectation_label = "What is your expected return for this investment? You may enter any negative or positive value, with up to one decimal place."
portfolio_allocation_label = "How much do you allocate to this investment?"
# InvestmentResultsPage.html
feedback_template = """
The realized return on the investment is {realized_return}%,
and {allocation} of your tokens were invested in the risky asset.
Your total payoff in this example would therefore be {payoff} tokens.
"""
# Transition
transition_title = "You're Ready!"
transition_text = """
You have completed the practice round. If you have any remaining questions, please ask the experimenter now.
In the next part, you will make real investment decisions that may affect your final payoff.
"""