Skip to content

Commit 8b5aa6f

Browse files
authored
Merge pull request #44817 from arujjval/main
Corrected Hindi Sentence Formating
2 parents 7647fd3 + b350b37 commit 8b5aa6f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

layouts/case-studies/list.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,13 @@ <h3>{{ .Title }}</h3>
7373
<div class="case-study">
7474
{{ with $logo }}<img src="{{ .RelPermalink }}" alt="{{ $altText }}">{{ end }}
7575
<p class="quote">"{{ .page.Params.quote | html }}"</p>
76-
<a href="{{ .page.RelPermalink }}"{{ if $isForeignLanguage }} target="_blank"{{ end }}>{{ T "main_read_about"}} {{ .page.LinkTitle }}</a>
76+
<a href="{{ .page.RelPermalink }}"{{ if $isForeignLanguage }} target="_blank"{{ end }}>
77+
{{ if eq .ctx.Lang "hi" }}
78+
{{ .page.LinkTitle }} {{ T "main_read_about"}}
79+
{{ else }}
80+
{{ T "main_read_about"}} {{ .page.LinkTitle }}
81+
{{ end }}
82+
</a>
7783
</div>
7884
{{ end }}
7985
{{ define "announcement" }}

0 commit comments

Comments
 (0)