en: start_message: "Welcome to The Game" choice_options: "Choose option: %{commands}" difficulty_level: "What difficulty do you want to play? %{levels}" goodbye_message: "Good luck and good bye!" command_error: "Unexpected command. Please choose one from listed commands" rules: "codebreaker is a logic game in which a code-breaker tries to break a secret code created by a code-maker. The codemaker, which will be played by the application we’re going to write, creates a secret code of four numbers between 1 and 6. The codebreaker gets some number of chances to break the code (depends on chosen difficulty). In each turn, the codebreaker makes a guess of 4 numbers. The codemaker then marks the guess with up to 4 signs - + or - or empty spaces. A + indicates an exact match: one of the numbers in the guess is the same as one of the numbers in the secret code and in the same position. For example: Secret number - 1234 Input number - 6264 Number of pluses - 2 (second and fourth position) A - indicates a number match: one of the numbers in the guess is the same as one of the numbers in the secret code but in a different position. For example: Secret number - 1234 Input number - 6462 Number of minuses - 2 (second and fourth position) An empty space indicates that there is not a current digit in a secret number. If codebreaker inputs the exact number as a secret number - codebreaker wins the game. If all attempts are spent - codebreaker loses. codebreaker also has some number of hints(depends on chosen difficulty). If a user takes a hint - he receives back a separate digit of the secret code. " registration: "Introduce yourself, please " difficulty: "You had to %{hints} hints and %{attempts} attempts" round_message: "1. Enter your secret code 2. hint 3. exit " guess: "Incorrect code! Secret code must to be from four digits in range from 1 to 6" lost_game_message: "You spent all attempts and lose a game... Your code was: %{code}" win_game_message: "Congratulations! You won the game" save_results_message: "Do you want to save result? 1. YES 2. NO" have_no_hints_message: "You have no more hints" print_hint_number: "Hint number: %{code}" registration_name_length_error: "Yor name is incorrect. It must be more than 3 and less than 20 characters."