#! /usr/bin/python2.2 #! /usr/bin/env python # -*- coding: iso-8859-1 -*- "Gets the english language strings for gjettTall.py" #InterruptLang = "You have to chose a number between 1 and %s" Welcome = "WELCOME TO AXELS GUESSING PROGRAM" Welcome2 = "In this program you will have to guess one or more numbers." Welcome3 = "The numbers are not (quite) random." # "%s" below will automatically be replaced by code for the format of the message. Welcome4 = 'If you choose to stop in the middle of the game, press "%sctrl + c%s%s".' Welcome5 = 'Press "%sEnter%s%s" after each answer.' Round = "round" # Gives the number of rounds that you have played InputNumber1 = "Now type a number between 1 and 10: " InputNumber2 = "Type a number between 1 and 10: " GuessSmall = "Guess a Number between 1 and 100: " # "\n" means a line break, don't remove it. GuessHigh = "Now it is getting harder.\nYou will have to guess on a number up to 10 times bigger than your first number: " GuessNegative = "Now guess on a number below zero: " GuessZero = "Zero times another number is: " MessageH0 = "The chosen number is too high." MessageL0 = "The chosen number is too low." MessageH1 = "The number is too high." MessageH2 = "The number still is too high." MessageH3 = "Too high again." MessageL1 = "The number is too low." MessageL2 = "The number still is too low." MessageL3 = "To low again." TryAgain = "Try again: " # "%s" below will automatically be replaced by numbers. CorrectSi = "Correct, the number was %s, and you guessed only once!" CorrectPl = "Correct, the number was %s. You had to try %s times." Excellent = "You lucky thing! But you can't do that again, can you?" VeryGood = "Excellent! Good guessing there." Good = "Well done; with some luck it will be even better!" Nice = "I suppose you very unlucky with this one." Hmm = "Hmm. I suppose you were guessing wild now?." ResultH0 = "You never guessed too high but" ResultHsi = "You guessed one time too high and" ResultHpl = "You guessed %s times too high and" # The three messages above and below this line are combined into # a message like this: 'You guessed one time too high and %s times too low'. ResultL0 = "never too low." ResultLsi = "one time too low." ResultLpl = "%s times too low." Question2 = "Which number was multiplied? " Congratulations = "Congratulation! Your answer was right;" Sorry = "I am sorry! Wrong answer." Tips1 = "Tip: For a greater challenge," Tips2 = "try other numbers than those between 1 and 10." # '%s' below will automatically be replaced by the shortcuts. Again = 'Do you want to try again? (press "%s" for yes or "%s" for no): ' # Shortcuts for stopping or taking another round. Yes = "y" No = "n" Interrupt = "The program is stopped." ThankYou = "Thank you for the game!" # Last translated by: Axel Bojer 5.9.2004