@@ -93,7 +93,7 @@ function JobPostInner() {
9393 < FileText className = "w-7 h-7 text-zinc-500" />
9494 </ div >
9595 < h2 className = "font-display text-2xl font-bold text-white mb-2" >
96- Job not found
96+ { t ( "noJobFound" ) }
9797 </ h2 >
9898 < p className = "text-sm text-zinc-500 mb-6" >
9999 This job post may have been removed or is no longer available.
@@ -169,7 +169,7 @@ function JobPostInner() {
169169 className = "inline-flex items-center gap-2 text-sm text-zinc-500 hover:text-zinc-200 transition-colors duration-200"
170170 >
171171 < ArrowLeft className = "w-4 h-4" />
172- < span className = "font-mono text-xs uppercase tracking-wider" > Jobs </ span >
172+ < span className = "font-mono text-xs uppercase tracking-wider" > { t ( "allJobs" ) } </ span >
173173 </ MseLink >
174174
175175 < button
@@ -178,7 +178,7 @@ function JobPostInner() {
178178 className = "inline-flex items-center gap-1.5 px-3 py-1.5 rounded-lg text-[11px] font-mono uppercase tracking-wider text-zinc-500 hover:text-zinc-200 bg-white/[0.03] border border-white/[0.06] hover:border-white/[0.1] transition-all duration-200"
179179 >
180180 < Share2 className = "w-3 h-3" />
181- Share
181+ { t ( "share" ) }
182182 </ button >
183183 </ motion . div >
184184
@@ -257,7 +257,7 @@ function JobPostInner() {
257257 ) }
258258 >
259259 { isExpired ? < AlertTriangle className = "w-3.5 h-3.5" /> : < CalendarClock className = "w-3.5 h-3.5" /> }
260- { isExpired ? "Expired" : "Expires" } { " " }
260+ { isExpired ? t ( "expired" ) : t ( "expires" ) } { " " }
261261 { post . expiredAt . toLocaleDateString ( "en-US" , { month : "short" , day : "numeric" , year : "numeric" } ) }
262262 </ span >
263263 ) ;
@@ -290,7 +290,7 @@ function JobPostInner() {
290290 </ div >
291291 < div >
292292 < p className = "text-sm font-medium text-zinc-200" > { post . authorName } </ p >
293- < p className = "text-[10px] font-mono text-zinc-600 uppercase tracking-wider" > Posted by </ p >
293+ < p className = "text-[10px] font-mono text-zinc-600 uppercase tracking-wider" > { t ( "postedBy" ) } </ p >
294294 </ div >
295295 </ div >
296296 </ motion . div >
@@ -421,7 +421,7 @@ function JobPostInner() {
421421 className = "inline-flex items-center gap-2 text-sm text-zinc-500 hover:text-zinc-200 transition-colors duration-200"
422422 >
423423 < ArrowLeft className = "w-4 h-4" />
424- < span className = "font-mono text-xs uppercase tracking-wider" > All jobs </ span >
424+ < span className = "font-mono text-xs uppercase tracking-wider" > { t ( "allJobs" ) } </ span >
425425 </ MseLink >
426426
427427 < button
@@ -430,7 +430,7 @@ function JobPostInner() {
430430 className = "inline-flex items-center gap-1.5 px-3 py-1.5 rounded-lg text-[11px] font-mono uppercase tracking-wider text-zinc-500 hover:text-zinc-200 bg-white/[0.03] border border-white/[0.06] hover:border-white/[0.1] transition-all duration-200"
431431 >
432432 < Share2 className = "w-3 h-3" />
433- Share
433+ { t ( "share" ) }
434434 </ button >
435435 </ div >
436436 </ motion . div >
0 commit comments