Commit 7a22f2b 1 parent 7972229 commit 7a22f2b Copy full SHA for 7a22f2b
File tree 3 files changed +13
-8
lines changed
src/routes/$lang/dashboard/_dashboard
3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change 439
439
"add" : " Add" ,
440
440
"allowReceivingEmails" : " I agree to receive emails from Plan ₿ Network about potential job opportunities" ,
441
441
"applicationSaved" : " Your application is saved!" ,
442
- "applicationStatus" : " Your application is" ,
442
+ "applicationComplete" : " Your application is <highlight>Complete</highlight>" ,
443
+ "applicationIncomplete" : " Your application is <highlight>Incomplete</highlight>" ,
443
444
"availability" : " Your availability" ,
444
445
"availabilityStart" : " When can you start?" ,
445
446
"availabilityStartPlaceholder" : " Date" ,
Original file line number Diff line number Diff line change @@ -419,12 +419,16 @@ function CareerPortal() {
419
419
{ existingCareerProfile ? (
420
420
< >
421
421
< p className = "bg-newGray-6 text-center text-lg font-medium text-newBlack-1 px-4 py-2 md:px-8 md:py-4 rounded-[16px] border-b border-b-newGray-4 uppercase w-fit mx-auto mb-2" >
422
- { t ( 'dashboard.careerPortal.applicationStatus' ) } { ' ' }
423
- < span className = "text-darkOrange-5" >
424
- { validatedSteps === 4
425
- ? t ( 'words.complete' )
426
- : t ( 'words.incomplete' ) }
427
- </ span >
422
+ < Trans
423
+ i18nKey = {
424
+ validatedSteps === 4
425
+ ? 'dashboard.careerPortal.applicationComplete'
426
+ : 'dashboard.careerPortal.applicationIncomplete'
427
+ }
428
+ components = { {
429
+ highlight : < span className = "text-darkOrange-5" /> ,
430
+ } }
431
+ />
428
432
</ p >
429
433
< p className = "w-full text-center text-newBlack-5 body-16px md:label-medium-16px mb-[25px] md:mb-[60px] whitespace-pre-line" >
430
434
{ validatedSteps === 4
Original file line number Diff line number Diff line change 53
53
" biome check --no-errors-on-unmatched --files-ignore-unknown=true --diagnostic-level=warn"
54
54
]
55
55
},
56
- "packageManager" : " pnpm@10.6.2 "
56
+ "packageManager" : " pnpm@10.6.3 "
57
57
}
You can’t perform that action at this time.
0 commit comments