-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabels_locale.py
More file actions
47 lines (46 loc) · 1.68 KB
/
Copy pathlabels_locale.py
File metadata and controls
47 lines (46 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
labels = {
'subtitle_lbl': {
'ENG': 'Welcome to the informative app to calculate the winning odds of different lottery games configurations',
'SPA': 'Bienvenido a la aplicación educativa que calcula las probabilidades de ganar diferentes loterías'
},
'regular_drum_lbl': {
'ENG': 'Main pool of numbers drawings ',
'SPA': 'Bolas extraídas del bombo principal'
},
'bonus_drum_lbl': {
'ENG': 'Bonus pool of numbers drawings',
'SPA': 'Bolas extra del bombo especial'
},
'main_drum_lbl': {
'ENG': 'Main drum is mandatory ',
'SPA': 'El bombo principal es obligatorio'
},
'bonus_disable_cbox': {
'ENG': 'Game without bonus balls ',
'SPA': 'Este juego no tiene bolas extra'
},
'draws_lbl': {
'ENG': 'Number of balls: ',
'SPA': 'Número de bolas: '
},
'max_num_lbl': {
'ENG': 'Maximum number: ',
'SPA': 'Número más alto: '
},
'calculate_btn': {
'ENG': 'Calculate',
'SPA': 'Calcular'
},
'result1_lbl': {
'ENG': 'Please, use the spinner options to select a specific lottery game configuration ',
'SPA': 'Por favor, use los controles numéricos para seleccionar una configuración de lotería'
},
'formatted_odds_lbl': {
'ENG': 'The odds of winning the specified lottery game are 1 in {:,} ',
'SPA': 'Las probabilidades de ganar la lotería especificada son de 1 entre {:,}'
},
'wrong_config_lbl': {
'ENG': 'Incorrect lottery game configuration ',
'SPA': 'La configuración del juego de lotería es incorrecta'
},
}