File tree Expand file tree Collapse file tree 5 files changed +23
-9
lines changed
src/components/sections/submissions Expand file tree Collapse file tree 5 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 149
149
"communities.challenge.evaluation.total" : " Total" ,
150
150
"communities.challenge.evaluation.points" : " Points" ,
151
151
"communities.challenge.evaluation.message" : " Congratulations you gained at least 70% of the available learning points." ,
152
+ "communities.challenge.evaluation.message.nominated" : " Поздравления, печеленето на 90% ви номинира за наградния фонд от:" ,
152
153
"communities.submission.title" : " Submissions" ,
153
154
"communities.feedbacks" : " Feedbacks" ,
154
155
"communities.navigation.overview" : " Преглед" ,
Original file line number Diff line number Diff line change 150
150
"communities.challenge.evaluation.total" : " Total" ,
151
151
"communities.challenge.evaluation.points" : " Points" ,
152
152
"communities.challenge.evaluation.message" : " Congratulations you gained at least 70% of the available learning points." ,
153
+ "communities.challenge.evaluation.message.nominated" : " Congratulations, earning 90% nominates you for the prize pool of:" ,
153
154
"communities.submission.title" : " Submissions" ,
154
155
"communities.feedbacks" : " Feedbacks" ,
155
156
"communities.navigation.overview" : " Overview" ,
Original file line number Diff line number Diff line change 153
153
"communities.challenge.evaluation.total" : " Total" ,
154
154
"communities.challenge.evaluation.points" : " Puntos" ,
155
155
"communities.challenge.evaluation.message" : " ¡Felicidades, ha ganado al menos el 70% de los puntos disponibles!" ,
156
+ "communities.challenge.evaluation.message.nominated" : " Felicitaciones, ganar el 90% te nominó para el fondo de premios de:" ,
156
157
"communities.submission.title" : " Propuestas" ,
157
158
"communities.feedbacks" : " Feedbacks" ,
158
159
"communities.navigation.overview" : " Vista general" ,
Original file line number Diff line number Diff line change 136
136
"communities.challenge.evaluation.total" : " Total" ,
137
137
"communities.challenge.evaluation.points" : " Points" ,
138
138
"communities.challenge.evaluation.message" : " Congratulations you gained at least 70% of the available learning points." ,
139
+ "communities.challenge.evaluation.message.nominated" : " Čestitamo, osvajanje 90% nominira vas za nagradni fond od:" ,
139
140
"communities.submission.title" : " Submissions" ,
140
141
"communities.feedbacks" : " Feedbacks" ,
141
142
"communities.navigation.overview" : " Pregled" ,
Original file line number Diff line number Diff line change @@ -55,15 +55,25 @@ export default function Evaluations(): ReactElement {
55
55
</ div >
56
56
{ evaluation . reward && (
57
57
< div className = "relative text-sm" >
58
- < span className = "block font-medium" > { t ( "communities.challenge.evaluation.total" ) } </ span >
59
- < div className = "absolute -left-5 top-7" >
60
- < Coin token = { evaluation . reward . token } size = "small" />
61
- </ div >
62
- < div className = "inline-block font-medium" style = { { color : colors ?. textAccent } } >
63
- < span className = "text-xl" > { evaluation . reward . amount } </ span >
64
- < span > { evaluation . reward . token } </ span >
65
- </ div >
66
- < div > { t ( "communities.challenge.evaluation.message" ) } </ div >
58
+ { challenge ?. isHackathon ? (
59
+ < >
60
+ < div > { t ( "communities.challenge.evaluation.message.nominated" ) } </ div >
61
+ < div className = "inline-block font-medium" style = { { color : colors ?. textAccent } } >
62
+ < span className = "text-xl" > { evaluation . reward . amount } </ span > USD
63
+ </ div >
64
+ </ >
65
+ ) : (
66
+ < >
67
+ < span className = "block font-medium" > { t ( "communities.challenge.evaluation.total" ) } </ span >
68
+ < div className = "absolute -left-5 top-7" >
69
+ < Coin token = { evaluation . reward . token } size = "small" />
70
+ </ div >
71
+ < div className = "inline-block font-medium" style = { { color : colors ?. textAccent } } >
72
+ < span className = "text-xl" > { evaluation . reward . amount } </ span > < span > { evaluation . reward . token } </ span >
73
+ </ div >
74
+ < div > { t ( "communities.challenge.evaluation.message" ) } </ div >
75
+ </ >
76
+ ) }
67
77
</ div >
68
78
) }
69
79
</ div >
You can’t perform that action at this time.
0 commit comments