Reorganizing languages files properties

This commit is contained in:
Vlyan
2022-02-26 13:27:24 +01:00
parent 0d3ac2ce83
commit b5bb4e04f2
61 changed files with 530 additions and 531 deletions

View File

@@ -1,5 +1,5 @@
<fieldset class="xp">
<legend>{{localize 'l5r5e.experience'}}</legend>
<legend>{{localize 'l5r5e.sheets.experience'}}</legend>
<label class="attribute-label">
{{localize 'l5r5e.advancements.total'}}
<input class="centered-input select-on-focus" type="number" name="data.xp_total" value="{{data.data.xp_total}}" data-dtype="Number" min="0" placeholder="0" {{^if data.editable_not_soft_locked}}disabled{{/if}}/>
@@ -19,7 +19,7 @@
{{#if data.data.identity.school_curriculum_journal.id}}
<a class="school-journal-link"><i class="fas fa-file-alt"></i></a> {{data.data.identity.school_curriculum_journal.name}}
{{else}}
<i class="fas fa-question-circle" title="{{localize 'l5r5e.advancements.school_curriculum_journal'}}"></i> {{localize 'l5r5e.school'}}
<i class="fas fa-question-circle" title="{{localize 'l5r5e.advancements.school_curriculum_journal'}}"></i> {{localize 'l5r5e.sheets.school'}}
{{/if}}
{{#if data.editable_not_soft_locked}}
<a data-item-type="advancement" class="advancement-control item-add" title="{{localize 'l5r5e.global.add'}}"><i class="fas fa-plus"></i></a>
@@ -36,10 +36,10 @@
<table>
<thead class="flex">
<tr class="flexrow row">
<th class="name">{{localize 'l5r5e.name'}}</th>
<th class="name">{{localize 'l5r5e.sheets.name'}}</th>
<th class="curriculum"><i class="fas fa-graduation-cap"></i></th>
<th class="xp">{{localize 'l5r5e.advancements.spent'}}</th>
<th class="rank">{{localize 'l5r5e.rank'}}</th>
<th class="rank">{{localize 'l5r5e.sheets.rank'}}</th>
{{#if data.editable_not_soft_locked}}
<th class="actions"></th>
{{/if}}
@@ -84,9 +84,9 @@
<table>
<thead class="flex">
<tr class="flexrow row">
<th class="name">{{localize 'l5r5e.name'}}</th>
<th class="name">{{localize 'l5r5e.sheets.name'}}</th>
<th class="xp">{{localize 'l5r5e.advancements.spent'}}</th>
<th class="rank">{{localize 'l5r5e.rank'}}</th>
<th class="rank">{{localize 'l5r5e.sheets.rank'}}</th>
{{#if data.editable_not_soft_locked}}
<th class="actions"></th>
{{/if}}

View File

@@ -2,9 +2,9 @@
<li>
<label class="attribute-label">
{{#ifCond data.data.template '==' 'pow'}}
{{localize 'l5r5e.region'}}
{{localize 'l5r5e.sheets.region'}}
{{else}}
{{localize 'l5r5e.clan'}}
{{localize 'l5r5e.clans.label'}}
{{/ifCond}}
<input type="text" name="data.identity.clan" value="{{data.data.identity.clan}}" {{^if data.editable_not_soft_locked}}disabled{{/if}}/>
</label>
@@ -12,22 +12,22 @@
<li>
<label class="attribute-label">
{{#ifCond data.data.template '==' 'pow'}}
{{localize 'l5r5e.upbringing'}}
{{localize 'l5r5e.sheets.upbringing'}}
{{else}}
{{localize 'l5r5e.family'}}
{{localize 'l5r5e.sheets.family'}}
{{/ifCond}}
<input type="text" name="data.identity.family" value="{{data.data.identity.family}}" {{^if data.editable_not_soft_locked}}disabled{{/if}}/>
</label>
</li>
<li>
<label class="attribute-label">
{{localize 'l5r5e.rank'}}
{{localize 'l5r5e.sheets.rank'}}
<input type="number" name="data.identity.school_rank" value="{{data.data.identity.school_rank}}" class="select-on-focus" data-dtype="Number" min="0" placeholder="1" {{^if data.editable_not_soft_locked}}disabled{{/if}}/>
</label>
</li>
<li>
<label class="attribute-label">
{{localize 'l5r5e.school'}}
{{localize 'l5r5e.sheets.school'}}
<input type="text" name="data.identity.school" value="{{data.data.identity.school}}" {{^if data.editable_not_soft_locked}}disabled{{/if}}/>
</label>
</li>

View File

@@ -27,7 +27,7 @@
</fieldset>
{{!-- items list --}}
<fieldset class="items-wrapper">
<legend>{{localize 'l5r5e.equipment'}}</legend>
<legend>{{localize 'l5r5e.sheets.equipment'}}</legend>
{{> 'systems/l5r5e/templates/items/item/items.html'}}
</fieldset>
{{!-- item patterns list --}}

View File

@@ -81,12 +81,12 @@
<div class="narrative-fluff">
{{!-- Description (public) --}}
<fieldset class="narrative-description">
<legend class="text-block-header">{{localize 'l5r5e.description' }}</legend>
<legend class="text-block-header">{{localize 'l5r5e.sheets.description' }}</legend>
{{editor content=data.data.description target="data.description" button=true editable=options.editable}}
</fieldset>
{{!-- Notes (private) --}}
<fieldset class="narrative-note">
<legend class="text-block-header">{{localize 'l5r5e.notes' }}</legend>
<legend class="text-block-header">{{localize 'l5r5e.sheets.notes' }}</legend>
{{editor content=data.data.notes target="data.notes" button=true editable=options.editable}}
</fieldset>
</div>