-
Notifications
You must be signed in to change notification settings - Fork 1
/
windows.json
129 lines (120 loc) · 4.21 KB
/
windows.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"ENGLISH": {
"name": "ENGLISH",
"title": "ENGLISH window",
"message": "Please select one of the options",
"options": [
{"option": "1", "display": "Basic information", "window": "BASIC_INFO_EN", "active": true},
{"option": "2", "display": "Skills", "window": "SKILLS_EN", "active": true},
{"option": "3", "display": "Contact", "window": "CONTACT_EN", "active": true},
{"option": "4", "display": "Academic Formation", "window": "ACADEMIC_EN", "active": true},
{"option": "5", "display": "Change language", "window": "INITIAL", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"PORTUGUESE": {
"name": "PORTUGUESE",
"title": "window em Portuges",
"message": "Por favor seleccione uma das opcoes",
"options": [
{"option": "1", "display": "Dados pessoais", "window": "BASIC_INFO_PT", "active": true},
{"option": "2", "display": "Habilidades", "window": "SKILLS_PT", "active": true},
{"option": "3", "display": "Contacto", "window": "CONTACT_PT", "active": true},
{"option": "4", "display": "Formacao Academica", "window": "ACADEMIC_PT", "active": true},
{"option": "5", "display": "Mudar idioma", "window": "INITIAL", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"BASIC_INFO_EN": {
"name": "BASIC_INFO_EN",
"title": "Basic information",
"message": "Name: Benjamim Chambule\nProfession: Software Developer",
"options": [
{"option": "0", "display": "Back", "window": "ENGLISH", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"BASIC_INFO_PT": {
"name": "BASIC_INFO_PT",
"title": "Informacao Basica",
"message": "Nome: Benjamim Chambule\nProfissao: Desenvolvedor de Software",
"options": [
{"option": "0", "display": "Voltar", "window": "ENGLISH", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"SKILLS_EN": {
"name": "SKILLS_EN",
"title": "Skills",
"message": "Name: Benjamim Chambule\nProfession: Software Developer",
"options": [
{"option": "0", "display": "Back", "window": "ENGLISH", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"SKILLS_PT": {
"name": "SKILLS_PT",
"title": "Habilidades",
"message": "Nome: Benjamim Chambule\nProfissao: Desenvolvedor de Software",
"options": [
{"option": "0", "display": "Voltar", "window": "PORTUGUESE", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"CONTACT_EN": {
"name": "CONTACT_EN",
"title": "Contact",
"message": "Email: [email protected]\nTelegram: http://t.me/benchambule\nGitHub: http://github.com/benchambule",
"options": [
{"option": "0", "display": "Back", "window": "ENGLISH", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"CONTACT_PT": {
"name": "CONTACT_PT",
"title": "Contacto",
"message": "Email: [email protected]\nTelegram: http://t.me/benchambule\nGitHub: http://github.com/benchambule",
"options": [
{"option": "0", "display": "Back", "window": "PORTUGUESE", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"ACADEMIC_EN": {
"name": "ACADEMIC_EN",
"title": "Academic Formation",
"message": "Name: Benjamim Chambule\nProfession: Software Developer",
"options": [
{"option": "0", "display": "Back", "window": "ENGLISH", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
},
"ACADEMIC_PT": {
"name": "ACADEMIC_PT",
"title": "Formacao academica",
"message": "Nome: Benjamim Chambule\nProfissao: Desenvolvedor de Software",
"options": [
{"option": "0", "display": "Voltar", "window": "PORTUGUESE", "active": true}
],
"type": "FORM",
"auto_process": true,
"active": true
}
}