Add localization strings for everything I didn't localize already
This commit is contained in:
parent
4a31ed76cd
commit
920549c43b
10 changed files with 53 additions and 26 deletions
|
|
@ -3,7 +3,7 @@
|
|||
<h2>{{artist.name}}</h2>
|
||||
<div class="grow"></div>
|
||||
<div>
|
||||
{{artist.imageCount}} Images
|
||||
{{localize "IT.apps.ArtistBrowser.image-count" count=artist.imageCount}}
|
||||
</div>
|
||||
</div>
|
||||
{{#if artist.links}}
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
{{/if}}
|
||||
{{#if artist.commonTags}}
|
||||
<section>
|
||||
<h3>Common Image Tags</h3>
|
||||
<h3>{{localize "IT.apps.ArtistBrowser.common-tags"}}</h3>
|
||||
<ul class="chip-list">
|
||||
{{#each artist.commonTags as |tag|}}
|
||||
<li class="chip">{{tag.name}} ({{tag.count}})</li>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
<div class="paginated">
|
||||
<div class="row">
|
||||
{{#if can.upload}}
|
||||
<button data-action="createArtist">Create New Artist</button>
|
||||
<button data-action="createArtist">
|
||||
{{localize "IT.apps.ArtistBrowser.create-artist"}}
|
||||
</button>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{#if artists}}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<form autocomplete="off" class="filters">
|
||||
<label for="{{meta.idp}}-name">Name</label>
|
||||
<label for="{{meta.idp}}-name">
|
||||
{{localize "IT.common.name"}}
|
||||
</label>
|
||||
<input
|
||||
id="{{meta.idp}}-name"
|
||||
type="text"
|
||||
|
|
@ -10,7 +12,7 @@
|
|||
<hr>
|
||||
|
||||
<label for="{{meta.idp}}-sort">
|
||||
Sort By
|
||||
{{localize "IT.common.sort-by"}}
|
||||
</label>
|
||||
<select name="sortBy" id="{{meta.idp}}-sort">
|
||||
{{it-options sortBy sortOptions localize=true}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue