
##################################
#
#  Language section -- Hungarian
#
##################################
# 1. Environments and control sequences
##en env={'exercise':'exercise',
env={'exercise':'feladat',
##en      'solution':'solution',
     'solution':'megold',
##en      'group'   :'exercisegroup'}
     'group'   :'feladatcsoport'}

# 2. Asks
ask={	'group_numbers':'How many groups do you want? ',
       'group':'The name of group %s (Enter = "%s", "kk" = exit) ',
       'exercise':'The code of exercise %s? (Enter = end) ',
       'exercise code':'The code of exercise? ',
       'file name':'From which file? ',
       'file':'Which file search I from? ',
        'enter':'Push >Enter< to continue, or "q" to quit! ',
        'change': 'Do you want to change? (Enter = no, y or yes = yes)',
        'use exercise_numbers': 'I found a base setting for the exercise numbers. Can I use it? ',
#en	'choice': 'Give the number, what do you want? ',
	'choice': 'Hányadikat választod? ',
        'testpapers num':'How many types of testpapers do you need?  '}

# 3. Messages (errors too)
mesg={  'next':'Next step: ',
	'real_order':'1. The order of the exercise_numbers in the file  "%s":',
	'bad_arg_main':'\n4. Bad arguments:',
	'bad_arg':'Bad argument in the row %d: "%s".',
	'intervals':'\n2. Intervals (pl. 12..14 means: 12, 13, 14):',
	'not_uniq_main':'\n3. Not uniq exercise codes I found:',
	'not_uniq':'%d times is the code %d!',
	'none':'None.',
	'not_num':"You didn't wrote a(n integer) number!\n",
	'founded_exercises':'The exercise codes I found:',
	'not enough numbers':'It must be exercise in the groups!',
        'with solution': '*'*55 +
                '\n**\n** If you want to print the exercises with solutions,\n'+
                 '** you must correct the signed row in the .tex file(s).\n**\n' +
                '*'*55,
        'file_written':  'I wrote the exercises into the file "%s".\n',
        'series_in'   :  'Type in the exercisenumbers.\n',
        'file opened' :  'I\'ve opened the file "%s".\n',
        'fixed data'  :  '**** The data in the current form ****',
        'group name'  :  'The name of the group: "%s"',
       'modify'      : '''*** You can modify the brand new .tex file without brakeing the programm.
*** (eg. add or remove \\newpage)
*** If you are ready with it   PRESS >ENTER<
*** and the programm will continue.\n''',
        'group'       :  'The exercises of the group "%s": %s',
        'version'     :  'Ehhez a programhoz legalább 2.0-ás Pythonra van szükség.\n(www.python.hu, www.python.org)'}



# Errors
err=  {'endless definition' :
		'There is no end of definition at the input file',
       'not_num':
		'You didn\'t write an (integer) number!',
       'bad_arg':
		'Bad argument at row %d.: "%s".',
       'bad_value':
		"You didn't write good values!",
       'bad boolean':
		"It isn't 'yes ' or 'not', I use the original.",
       'not enough numbers':
               'It must be minimum one exercise in a group!',
       'bad filename':
               'Bad filename: "%s", write a new one. ',
       'not filename':
               'There is no filename',
       'file not exists':
       		'Not an existing filename: "%s"',
       'not exercises':
       		'There isn\'t any exercises given',
       'bad code'    :
       		'Bad exercise code at row %d',
       'bad code2'    :
       		'Bad exercisecode, there isn\'t such a code at file %d',
       'not var'     :
       		'There isn\'t  %s képletben.',
       'uncomputable':
       		'There are uncomputable values at the exercise number %s.',
       'version'     :  'You need Python 2.0 or newer.\nYours is %s.\n(www.python.org)'}
 
# 4. The strings, which effects sg. (e.g. interrupt sg.)
#  Usually the lowercase forms are enough.
keys=	{'quit':     ['q', 'quit'],
         'yes':    ['1', 1, 'y', 'yes'],
         'no' :    ['n', '0', 0, 'no']}

todo= {'exercises and datas in':
           'Give me the exercise-numbers and some other data!',
       'test' : 'I test the exercise codes',
       'substitute intervalls':
           'I make multiple testpapers with different values',
       'check again' : 'I check this exercise again',
       }

# 5. IT is useful to do a ...?

# 6. Other things (dictionary)
dict={'exercises':'Exercises',
	'group_name':'Group %s',
      'variation'   :'\\subsubsection*{Variation %d}\n'}
