Skip to content

Commit

Permalink
incorporated suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritJanssen committed Jan 31, 2022
1 parent 1dcafb7 commit a8cf83a
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions frontend/src/item-metadata/item-metadata-template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<table class="accordion-content table is-bordered">
<thead>
<tr>
<th>{{#i18n 'table_name'}}Name{{/i18n}}</th>
<th>{{#i18n 'table_value'}}Value{{/i18n}}</th>
<th>{{#i18n 'name'}}Name{{/i18n}}</th>
<th>{{#i18n 'value'}}Value{{/i18n}}</th>
</tr>
</thead>
<tbody>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/menu/menu-template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
{{#i18n 'landing-page'}}Personal landing page{{/i18n}}
</a>
<a class="navbar-item" href="/explore/sources/mine">
{{#i18n 'my-sources'}}My sources{{/i18n}}
{{#i18n 'my_sources'}}My sources{{/i18n}}
</a>
<a class="navbar-item" href="/explore/items/mine">
{{#i18n 'my-items'}}My items{{/i18n}}
{{#i18n 'my_items'}}My items{{/i18n}}
</a>
<hr class="navbar-divider">
<a class="navbar-item tooltip is-tooltip-left" data-tooltip="{{#i18n 'feedback-tooltip'}}Give us feedback on the interface{{/i18n}}" id="feedback">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="buttons is-right">
<button type=button class="button filter">
<span class="icon is-large has-text-primary tooltip is-tooltip-left"
data-tooltip="{{#i18n 'adjust_filter'}}Adjust filter{{/i18n}}">
data-tooltip="{{#i18n 'filter'}}Filter{{/i18n}}">
<i class="fas fa-filter"></i>
</span>
</button>
Expand All @@ -21,7 +21,7 @@
<i class="fas fa-times"></i>
</button>
<header>
<h4 class="title is-4">{{#i18n 'adjust_filter'}}Adjust filter{{/i18n}}</h4>
<h4 class="title is-4">{{#i18n 'filter'}}Filter{{/i18n}}</h4>
</header>
</div>
<div class="panel-content"></div>
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/panel-annotation/annotation-edit-template.hbs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<div class="panel-header">
<header>
<p class="title is-3">{{#i18n 'Edit Annotation'}}Edit Annotation{{/i18n}}</p>
<p class="subtitle is-7">{{#i18n 'annotation_info'}}(Find more info on what and how to annotate in{{/i18n}}
<a class="is-link" href="http://dhstatic.hum.uu.nl/readit/AnnotationGuide.pdf" target="_blank">{{#i18n 'annotation_guide'}}the
<p class="title is-3">{{#i18n 'edit_annotation'}}Edit Annotation{{/i18n}}</p>
<p class="subtitle is-7">{{#i18n 'annotation_info'}}(Find more info on what and how to annotate in
<a class="is-link" href="http://dhstatic.hum.uu.nl/readit/AnnotationGuide.pdf" target="_blank"> the
Annotation Guide{{/i18n}}</a>)
</p>
</header>
Expand Down Expand Up @@ -50,7 +50,7 @@
</fieldset>
<fieldset class="item-edit-container is-hidden">
<div class="field">
<label class="label">{{#i18n 'Edit properties'}}Edit properties{{/i18n}}</label>
<label class="label">{{#i18n 'edit_properties'}}Edit properties{{/i18n}}</label>
<p class="help">
{{#i18n 'xsd_available_types_before_link'}}See{{/i18n}}
<a href="https://www.w3.org/TR/2004/REC-xmlschema-2-20041028/#built-in-datatypes" target=_blank>
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/panel-annotation/annotation-template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
{{/if}}{{/if}}{{#if itemSerial }}
{{#i18n 'item'}}item{{/i18n}}/{{ itemSerial }}
{{/if}}</h6>
{{#if needs_verification_explanation}}
{{#if needsVerification}}
<h6 class="title is-6">
{{#i18n 'annotation verification'}}This annotation needs to be verified.{{/i18n}}
{{#i18n 'annotation_verification'}}This annotation needs to be verified.{{/i18n}}
</h6>{{/if}}
</header>
</div>
Expand All @@ -25,8 +25,8 @@
<table class="table is-bordered">
<thead>
<tr>
<th>{{#i18n 'table_name'}}Name{{/i18n}}</th>
<th>{{#i18n 'table_value'}}Value{{/i18n}}</th>
<th>{{#i18n 'name'}}Name{{/i18n}}</th>
<th>{{#i18n 'value'}}Value{{/i18n}}</th>
</tr>
</thead>
<tbody>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/panel-source/source-metadata-template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<table class="table is-bordered">
<thead>
<tr>
<th>{{#i18n 'table_name'}}Name{{/i18n}}</th>
<th>{{#i18n 'table_value'}}Value{{/i18n}}</th>
<th>{{#i18n 'name'}}Name{{/i18n}}</th>
<th>{{#i18n 'value'}}Value{{/i18n}}</th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit a8cf83a

Please sign in to comment.