Fully localize the Attribute Manager app

This commit is contained in:
Oliver 2026-01-21 15:39:23 -07:00
parent 9f6c117c84
commit 3819db1ce4
4 changed files with 23 additions and 9 deletions

View file

@ -15,13 +15,13 @@
type="text"
data-bind="{{ attr.id }}.name"
value="{{ attr.name }}"
placeholder="Attribute Name..."
placeholder="{{localize "taf.Apps.AttributeManager.name-placeholder"}}"
>
{{else}}
<span>{{ attr.name }}</span>
{{/if}}
<label>
Has Maximum?
{{localize "taf.Apps.AttributeManager.has-max"}}
<input
type="checkbox"
data-bind="{{ attr.id }}.isRange"
@ -32,10 +32,12 @@
type="button"
data-action="removeAttribute"
>
Delete
{{localize "taf.misc.delete"}}
</button>
</div>
{{else}}
<p>No attributes yet</p>
<p>
{{localize "taf.Apps.AttributeManager.no-attributes"}}
</p>
{{/each}}
</div>