diff --git a/frontend/src/Pages/Debate/Arguments.elm b/frontend/src/Pages/Debate/Arguments.elm index c87550b..46d2c13 100755 --- a/frontend/src/Pages/Debate/Arguments.elm +++ b/frontend/src/Pages/Debate/Arguments.elm @@ -385,52 +385,52 @@ strengthMaker shared = _ -> if not shared.isNavbarExpanded then - [ tooltip IsRight - "This represents my confidence that the argument is sound." + [ tooltip IsLeft + "This represents how dope I think the inference/reductio is." ] else [] ) <| - detailTitleMaker TextLightOrange "Confidence:" + detailTitleMaker TextLightOrange "Banger Rating:" getConfidenceTooltip : Int -> String getConfidenceTooltip num = case num of 0 -> - "Extremely low. Speculative reasoning." + "Extremely low. Highly speculative." 1 -> - "Very low. Extremely weak reasoning." + "Very low. Almost entirely uncertain." 2 -> - "Low. Weak reasoning." + "Low. Highly uncertain." 3 -> - "Kinda low. Somewhat weak reasoning." + "Kinda low. More uncertain than not." 4 -> - "Below average. More weak than strong." + "Below average. Some significant doubts." 5 -> - "Moderate. OK reasoning." + "Moderate. Equal mix of certainty and doubt." 6 -> - "Above average. More strong than weak." + "Above average. More certain than not." 7 -> - "Kinda high. Somewhat strong reasoning." + "Kinda high. Fairly confident." 8 -> - "High. Robust reasoning." + "High. Strongly confident." 9 -> - "Very high. Extremely robust reasoning." + "Very high. Almost entirely certain." 10 -> - "Extremely high. Air tight reasoning." + "Extremely high. Completely certain." _ -> "Confidence level out of expected range."