1 '''
2 Created on 06.09.2010
3
4 - delievers a dictionary for local translation
5 - beta stage and not used
6 @author: Tobias Heimpold
7 '''
8
9 """ just a integer value which sets the localication in local file
10 """
11 local = 1
12
13 LOCAL = { 1: {
14 '3D Slicing Tree' : '3D Schnittbaum',
15 'Sequence Triple' : 'Sequence Triple',
16 'Sequence Quintuple' : 'Sequence Quintuple' ,
17 'O-Sequence' : ' O-Sequence' ,
18 'T-Tree' : 'T-Tree',
19
20 'Monte Carlo' : 'Monte Carlo',
21 'Simulated Annealing' : 'Simulierte Abkuehlung',
22 'Evolutionary Algorithm' : 'Evolutionaerer Algorithmus' ,
23 'Great Deluge Algorithm' : 'Sintflutalgorithmus',
24
25 'Cost development': ' Kostenentwicklung',
26 'Scatter plot' : 'Streudiagramm',
27 'Histogram' : 'Histogramm',
28
29 'HESA' : 'Flaeche',
30 'MPMWE' : 'Weglaenge',
31 'SUM' : 'Gesamtkosten',
32
33 'Tsamples' : 'Tauschversuche pro Temperatur',
34 'Tsteps' : 'Temperaturstufen',
35 'Tstart' : 'Anfangstemperatur',
36 'Tend' : 'Endtemperatur',
37
38 'parents' : 'Eltern pro Generation',
39 'children' : 'Kinder pro Rekombination',
40 'generations' : 'Generationen',
41
42 'samples per evaporation' : 'Versuche pro Wasserspiegel',
43 'evaporation value' : 'Verdunstungsmenge',
44
45 'filename' : 'Dateiname'
46 }
47 }
48
49 LOCAL = LOCAL[local]
50