summaryrefslogtreecommitdiffstats
path: root/templates/repo/unicode_escape_prompt.tmpl
blob: ab3452efa4bbcfefde0a23f3a272d4fef20a410b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{if .EscapeStatus}}
	{{if .EscapeStatus.HasInvisible}}
		<div class="ui error message unicode-escape-prompt tl">
			<span class="close icon hide-panel button" data-panel-closest=".message">{{svg "octicon-x" 16 "close inside"}}</span>
			<div class="header">
				{{$.root.locale.Tr "repo.invisible_runes_header"}}
			</div>
			<p>{{$.root.locale.Tr "repo.invisible_runes_description" | Str2html}}</p>
			{{if .EscapeStatus.HasAmbiguous}}
				<p>{{$.root.locale.Tr "repo.ambiguous_runes_description" | Str2html}}</p>
			{{end}}
		</div>
	{{else if .EscapeStatus.HasAmbiguous}}
		<div class="ui warning message unicode-escape-prompt tl">
			<span class="close icon hide-panel button" data-panel-closest=".message">{{svg "octicon-x" 16 "close inside"}}</span>
			<div class="header">
				{{$.root.locale.Tr "repo.ambiguous_runes_header"}}
			</div>
			<p>{{$.root.locale.Tr "repo.ambiguous_runes_description" | Str2html}}</p>
		</div>
	{{end}}
{{end}}