# lexicon_en.py class Lexicon: welcome = "Welcome to the risk aversion task!" instructions = "Please make your choice below." language_choice_title = "Select Your Preferred Language" language_choice_instruction = "Please choose the language in which you'd like to complete the experiment." investment_label = "Investment" next = "Next" slider_title = "Lottery" slider_instruction_preamble_test = """ On this screen, we will present you an example of the lottery task. This example only serves to familiarize you with the real task, and will not be relevant for your final payoff. """ slider_instruction_preamble_real = """ On this page, you decide how many of your 100 tokens you want to invest in a lottery. This lottery will be played at the end of the experiment and may result in a real-money payoff. It is therefore important that you think carefully about how many tokens you would like to invest in this lottery.

""" slider_instruction = """ Lottery-Example
You have 100 tokens available to invest in a lottery that has a 50% chance of increasing your investment by 30%, and a 50% chance of decreasing your investment by 10%. Any tokens you do not invest in the lottery remain unchanged. You can think of those as a risk-free investment.
Use the slider below to see how different choices will affect your outcome. When you have made your choice, click Next. """ slider_label = "You chose to invest" feedback_gain = "If the investment increases, you receive" feedback_loss = "If it decreases, you receive" feedback_total = "Your total outcome will be" equally_likely = "These outcomes are equally likely (50%)." feedback_template = """ Your payoff explained: If out of 100 tokens you invest {invested} tokens in the lottery, it is equally likely that you will gain {gain} tokens or lose {loss} tokens. Hence, your total outcome from the lottery will be either {total_gain} (100+{gain}) or {total_loss} (100-{loss}) tokens, each with equal probability. """ results_title = "Possible outcomes" results_text = ( "

You invested {invested} tokens in the lottery.

" "

If this had been the real lottery, it could affect your final payment.

" "

With a 50% chance, you would get {loss_amt} tokens, and with a " "50% chance, you would get {gain_amt} tokens.

" )