Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n improvement to Deployer.json #560

Merged
merged 3 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions data/csvs/child_trees/human-impact.csv
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
Situated Safety Impact , Mission Impact , Human Impact
None , None , Low
None , Degraded , Low
None , Crippled , Low
None , MEF Failure , Medium
None , Mission Failure , Very High
Minor , None , Low
Minor , Degraded , Low
Minor , Crippled , Low
Minor , MEF Failure , Medium
Minor , Mission Failure , Very High
Major , None , Medium
Major , Degraded , Medium
Major , Crippled , Medium
Major , MEF Failure , High
Major , Mission Failure , Very High
Hazardous , None , High
Hazardous , Degraded , High
Hazardous , Crippled , High
Hazardous , MEF Failure , High
Hazardous , Mission Failure , Very High
Catastrophic , None , Very High
Catastrophic , Degraded , Very High
Catastrophic , Crippled , Very High
Catastrophic , MEF Failure , Very High
Expand Down
15 changes: 4 additions & 11 deletions docs/ssvc-calc/Deployer.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,6 @@
"label": "Mission Impact",
"key": "M",
"options": [
{
"label": "none",
"key": "N",
"description": "Little to no impact up to degradation of non-essential functions; chronic degradation would eventually harm essential functions. (aka Non-Essential Degraded)"
},
{
"label": "degraded",
"key": "D",
Expand Down Expand Up @@ -132,6 +127,7 @@
{
"label": "Human Impact",
"decision_type": "complex",
"key": "H",
"children": [
{
"label": "Situated Safety Impact"
Expand All @@ -158,7 +154,6 @@
"child_label": "Mission Impact",
"child_key": "M",
"child_option_labels":[
"none",
"degraded",
"crippled"
]
Expand Down Expand Up @@ -201,7 +196,6 @@
"child_label": "Mission Impact",
"child_key": "M",
"child_option_labels":[
"none",
"degraded",
"crippled"
]
Expand Down Expand Up @@ -243,7 +237,6 @@
"child_label": "Mission Impact",
"child_key": "M",
"child_option_labels":[
"none",
"degraded",
"crippled",
"mef failure"
Expand Down Expand Up @@ -292,7 +285,6 @@
"child_label": "Mission Impact",
"child_key": "M",
"child_option_labels":[
"none",
"degraded",
"crippled",
"mef failure",
Expand Down Expand Up @@ -335,7 +327,8 @@
"color": "#EA3423"
}
],
"label": "Priority"
"label": "Priority",
"key": "P"
} ],
"decisions_table": [
{
Expand Down Expand Up @@ -844,6 +837,6 @@
}
],
"lang": "en",
"version": "2.0",
"version": "2.0.0",
"title": "Deployer v2.1.0"
}
5 changes: 4 additions & 1 deletion docs/ssvc-calc/css.css
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,15 @@ span.bold {
text-decoration: none;
color: #fefefe;
}
.blackbody .top_fixed {
background-color: rgba(0,0,0,0.9);
}
.top_fixed {
display:none;
position:fixed;
top:10px;
z-index: 1051;
background-color: rgba(0,0,0,0.9);
background-color: #f8f8ff;
height: 100%;
width:75%;
padding:12px;
Expand Down