-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang.js
77 lines (74 loc) · 2.44 KB
/
lang.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const dictionary = {
'pt': {
'final-score': 'GxUxT (total) =',
'subject': [
'Gravidade',
'Urgência',
'Tendência'
],
'gravity': [
'Sem Gravidade',
'Pouco Grave',
'Grave',
'Muito Grave',
'Extremamente Grave',
],
'urgency': [
'Fica tranquilo, pode esperar',
'pouco urgente, o prazo ainda é longo',
'O mais rápido possível',
'É Urgente',
'Precisa de Ação Imediata'
],
'tendency': [
'A situação não tem tendência a piorar',
'Irá piorar a longo prazo',
'Irá piorar',
'Irá piorar em pouco tempo se nada for feito',
'Irá piorar rapidamente se nada for feito'
]
},
'en': {
'final-score': 'GxUxT (total) =',
'subject': [
'Gravity',
'Urgency',
'Tendency'
],
'gravity': [
'No Gravity',
'Low Gravity',
'Grave',
'High Gravity',
'Extremelly Grave',
],
'urgency': [
'Can Wait',
'A bit urgent, but the term is long',
'As soon as possible',
'Is urgent',
'Needs imediatelly action'
],
'tendency': [
'The situation Won\'t get worse',
'Will be worse in a long term',
'Will be worse',
'Will be worse if nothing is done',
'Will be worse fast if nothing is done'
]
}
}
const setLanguage = (language) => {
const finalScoreLabel = document.getElementById('final-score-label')
finalScoreLabel.textContent = dictionary[language]['final-score']
const subjectElements = document.getElementsByClassName('subject')
subjectElements[0].textContent = dictionary[language]['subject'][0]
subjectElements[1].textContent = dictionary[language]['subject'][1]
subjectElements[2].textContent = dictionary[language]['subject'][2]
for (let i = 0; i < 5; i++) {
const descriptionElements = document.getElementsByClassName('description-' + i)
descriptionElements[0].textContent = dictionary[language]['gravity'][i]
descriptionElements[1].textContent = dictionary[language]['urgency'][i]
descriptionElements[2].textContent = dictionary[language]['tendency'][i]
}
}