A copy pass over the Finnish UI. The em-dash aside was doing the work of a second sentence in ten places, so it is a second sentence now, or gone. The sealed-score wording was wrong twice over: it promised "pisteet" when only other people's are hidden, and said "kirjoitat" when the reveal actually happens on save. Both fixed on the queue, the song page and the card badge.
20 lines
660 B
HTML
20 lines
660 B
HTML
{{define "content"}}
|
|
<h1>Jono</h1>
|
|
|
|
{{if .Data.Items}}
|
|
<p class="muted">Arvostelemattomat kappaleet, vanhimmasta uusimpaan. Muiden pisteet paljastuvat
|
|
kun tallennat omasi.</p>
|
|
<div class="songgrid">
|
|
{{range .Data.Items}}{{template "songcard" .}}{{end}}
|
|
</div>
|
|
<p class="pager">
|
|
{{if .Data.Cursor}}<a href="/">← Alkuun</a>{{end}}
|
|
{{with .Data.NextCursor}}<a href="/?cursor={{.}}">Lisää →</a>{{end}}
|
|
</p>
|
|
{{else}}
|
|
<p class="empty">Kaikki kuunneltu.</p>
|
|
<p>Olet arvostellut kaiken, mitä muut ovat lähettäneet.
|
|
<a href="/submit">Lähetä kappale</a> tai lue <a href="/songs">mitä muut sanoivat</a>.</p>
|
|
{{end}}
|
|
{{end}}
|