This repository has been archived by the owner on Sep 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
legal.js
223 lines (197 loc) · 6.34 KB
/
legal.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import * as sections from 'constants/sections'
import { i18n } from 'config'
export const LEGAL = {
key: sections.LEGAL,
name: 'legal',
path: 'legal',
store: 'Legal',
label: i18n.t('legal.section.name'),
}
export const LEGAL_INTRO = {
key: sections.LEGAL_INTRO,
name: 'intro',
path: 'intro',
label: i18n.t('legal.subsection.intro'),
}
export const LEGAL_POLICE = {
key: sections.LEGAL_POLICE,
name: 'police',
path: 'police',
label: i18n.t('legal.subsection.police.label'),
}
export const LEGAL_POLICE_INTRO = {
key: sections.LEGAL_POLICE_INTRO,
name: 'police/intro',
path: 'intro',
label: i18n.t('legal.subsection.police.intro'),
}
export const LEGAL_POLICE_OFFENSES = {
key: sections.LEGAL_POLICE_OFFENSES,
name: 'police/offenses',
path: 'offenses',
storeKey: 'PoliceOffenses',
label: i18n.t('legal.subsection.police.offenses'),
}
export const LEGAL_POLICE_ADDITIONAL_OFFENSES = {
key: sections.LEGAL_POLICE_ADDITIONAL_OFFENSES,
name: 'police/additionaloffenses',
path: 'additionaloffenses',
storeKey: 'PoliceOtherOffenses',
label: i18n.t('legal.subsection.police.additionalOffenses'),
}
export const LEGAL_POLICE_DOMESTIC_VIOLENCE = {
key: sections.LEGAL_POLICE_DOMESTIC_VIOLENCE,
name: 'police/domesticviolence',
path: 'domesticviolence',
storeKey: 'PoliceDomesticViolence',
label: i18n.t('legal.subsection.police.domesticViolence'),
}
export const LEGAL_INVESTIGATIONS = {
key: sections.LEGAL_INVESTIGATIONS,
name: 'investigations',
path: 'investigations',
label: i18n.t('legal.subsection.investigations.label'),
}
export const LEGAL_INVESTIGATIONS_HISTORY = {
key: sections.LEGAL_INVESTIGATIONS_HISTORY,
name: 'investigations/history',
path: 'history',
storeKey: 'History',
label: i18n.t('legal.subsection.investigations.history'),
}
export const LEGAL_INVESTIGATIONS_REVOKED = {
key: sections.LEGAL_INVESTIGATIONS_REVOKED,
name: 'investigations/revoked',
path: 'revoked',
storeKey: 'Revoked',
label: i18n.t('legal.subsection.investigations.revoked'),
}
export const LEGAL_INVESTIGATIONS_DEBARRED = {
key: sections.LEGAL_INVESTIGATIONS_DEBARRED,
name: 'investigations/debarred',
path: 'debarred',
storeKey: 'Debarred',
label: i18n.t('legal.subsection.investigations.debarred'),
}
export const LEGAL_COURT = {
key: sections.LEGAL_COURT,
name: 'court',
path: 'court',
storeKey: 'NonCriminalCourtActions',
label: i18n.t('legal.subsection.court'),
}
export const LEGAL_TECHNOLOGY = {
key: sections.LEGAL_TECHNOLOGY,
name: 'technology',
path: 'technology',
label: i18n.t('legal.subsection.technology.label'),
}
export const LEGAL_TECHNOLOGY_UNAUTHORIZED = {
key: sections.LEGAL_TECHNOLOGY_UNAUTHORIZED,
name: 'technology/unauthorized',
path: 'unauthorized',
storeKey: 'Unauthorized',
label: i18n.t('legal.subsection.technology.unauthorized'),
}
export const LEGAL_TECHNOLOGY_MANIPULATING = {
key: sections.LEGAL_TECHNOLOGY_MANIPULATING,
name: 'technology/manipulating',
path: 'manipulating',
storeKey: 'Manipulating',
label: i18n.t('legal.subsection.technology.manipulating'),
}
export const LEGAL_TECHNOLOGY_UNLAWFUL = {
key: sections.LEGAL_TECHNOLOGY_UNLAWFUL,
name: 'technology/unlawful',
path: 'unlawful',
storeKey: 'Unlawful',
label: i18n.t('legal.subsection.technology.unlawful'),
}
export const LEGAL_ASSOCIATIONS = {
key: sections.LEGAL_ASSOCIATIONS,
name: 'associations',
path: 'associations',
label: i18n.t('legal.subsection.associations.label'),
}
export const LEGAL_ASSOCIATIONS_TERRORIST_ORGANIZATION = {
key: sections.LEGAL_ASSOCIATIONS_TERRORIST_ORGANIZATION,
name: 'associations/terrorist-organization',
path: 'terrorist-organization',
storeKey: 'TerroristOrganization',
label: i18n.t('legal.subsection.associations.terroristOrganization'),
}
export const LEGAL_ASSOCIATIONS_ENGAGED_IN_TERRORISM = {
key: sections.LEGAL_ASSOCIATIONS_ENGAGED_IN_TERRORISM,
name: 'associations/engaged-in-terrorism',
path: 'engaged-in-terrorism',
storeKey: 'EngagedInTerrorism',
label: i18n.t('legal.subsection.associations.engagedTerrorism'),
}
export const LEGAL_ASSOCIATIONS_ADVOCATING = {
key: sections.LEGAL_ASSOCIATIONS_ADVOCATING,
name: 'associations/advocating',
path: 'advocating',
storeKey: 'Advocating',
label: i18n.t('legal.subsection.associations.advocating'),
}
export const LEGAL_ASSOCIATIONS_MEMBERSHIP_OVERTHROW = {
key: sections.LEGAL_ASSOCIATIONS_MEMBERSHIP_OVERTHROW,
name: 'associations/membership-overthrow',
path: 'membership-overthrow',
storeKey: 'MembershipOverthrow',
label: i18n.t('legal.subsection.associations.overthrow'),
}
export const LEGAL_ASSOCIATIONS_MEMBERSHIP_VIOLENCE = {
key: sections.LEGAL_ASSOCIATIONS_MEMBERSHIP_VIOLENCE,
name: 'associations/membership-violence-or-force',
path: 'membership-violence-or-force',
storeKey: 'MembershipViolence',
label: i18n.t('legal.subsection.associations.violence'),
}
export const LEGAL_ASSOCIATIONS_ACTIVITIES_TO_OVERTHROW = {
key: sections.LEGAL_ASSOCIATIONS_ACTIVITIES_TO_OVERTHROW,
name: 'associations/activities-to-overthrow',
path: 'activities-to-overthrow',
storeKey: 'ActivitiesToOverthrow',
label: i18n.t('legal.subsection.associations.activitiesOverthrow'),
}
export const LEGAL_ASSOCIATIONS_TERRORISM_ASSOCIATION = {
key: sections.LEGAL_ASSOCIATIONS_TERRORISM_ASSOCIATION,
name: 'associations/terrorism-association',
path: 'terrorism-association',
storeKey: 'TerrorismAssociation',
label: i18n.t('legal.subsection.associations.terrorismAssociation'),
}
export const LEGAL_REVIEW = {
key: sections.LEGAL_REVIEW,
name: 'review',
path: 'review',
label: i18n.t('legal.subsection.review'),
}
export default {
LEGAL,
LEGAL_INTRO,
LEGAL_POLICE,
LEGAL_POLICE_INTRO,
LEGAL_POLICE_OFFENSES,
LEGAL_POLICE_ADDITIONAL_OFFENSES,
LEGAL_POLICE_DOMESTIC_VIOLENCE,
LEGAL_INVESTIGATIONS,
LEGAL_INVESTIGATIONS_HISTORY,
LEGAL_INVESTIGATIONS_REVOKED,
LEGAL_INVESTIGATIONS_DEBARRED,
LEGAL_COURT,
LEGAL_TECHNOLOGY,
LEGAL_TECHNOLOGY_UNAUTHORIZED,
LEGAL_TECHNOLOGY_MANIPULATING,
LEGAL_TECHNOLOGY_UNLAWFUL,
LEGAL_ASSOCIATIONS,
LEGAL_ASSOCIATIONS_TERRORIST_ORGANIZATION,
LEGAL_ASSOCIATIONS_ENGAGED_IN_TERRORISM,
LEGAL_ASSOCIATIONS_ADVOCATING,
LEGAL_ASSOCIATIONS_MEMBERSHIP_OVERTHROW,
LEGAL_ASSOCIATIONS_MEMBERSHIP_VIOLENCE,
LEGAL_ASSOCIATIONS_ACTIVITIES_TO_OVERTHROW,
LEGAL_ASSOCIATIONS_TERRORISM_ASSOCIATION,
LEGAL_REVIEW,
}