Skip to content

Commit e440981

Browse files
committed
Add {{#i18n}} tags in more places (#451)
Some parts of some templates seem to have previously escaped attention, especially placeholder, data-tooltip and aria-label attributes. Besides those, there were some changes that were added in parallel on develop, as well as a few pieces where alternative orthography or sentence structure of other languages needed to be taken into account.
1 parent 7af7b78 commit e440981

12 files changed

+109
-37
lines changed

frontend/src/feedback/feedback-template.hbs

+17-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,24 @@
2020
<div class="field">
2121
<label class="label">{{#i18n 'subject'}}Subject{{/i18n}}</label>
2222
<div class="control">
23-
<input name="subject" class="input" type="text" name="title" placeholder="About READ-IT">
23+
<input
24+
name="subject"
25+
class="input"
26+
type="text"
27+
name="title"
28+
placeholder="{{#i18n 'about_readit'}}About READ-IT{{/i18n}}"
29+
>
2430
</div>
2531
</div>
2632

2733
<div class="field">
2834
<div class="control">
2935
<label class="label">{{#i18n 'feedback'}}Feedback{{/i18n}}</label>
30-
<textarea name="feedback" class="textarea" placeholder="e.g. I love READ-IT!"></textarea>
36+
<textarea
37+
name="feedback"
38+
class="textarea"
39+
placeholder="{{#i18n 'feedback_placeholder'}}e.g. I love READ-IT!{{/i18n}}"
40+
></textarea>
3141
</div>
3242
</div>
3343

@@ -52,4 +62,8 @@
5262
</form>
5363

5464
</div>
55-
<button type=button class="modal-close is-large" aria-label="close"></button>
65+
<button
66+
type=button
67+
class="modal-close is-large"
68+
aria-label="{{#i18n 'close'}}close{{/i18n}}"
69+
></button>

frontend/src/landing/landing-template.hbs

+9-8
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,24 @@
44
</h1>
55
<div class="card sources">
66
<div class="card-content">
7-
<p class="title">Sources</p>
8-
<p class="subtitle">You uploaded {{userSources}} of {{totalSources}} sources.</p>
7+
<p class="title">{{#i18n 'sources'}}Sources{{/i18n}}</p>
8+
<p class="subtitle">{{#i18n 'sources_tally'}}You uploaded {{userSources}} of {{totalSources}} sources.{{/i18n}}</p>
99
</div>
1010
<div class="card-footer">
11-
<a href="explore/sources/mine" class="card-footer-item user-sources">View your sources</a>
12-
<a href="explore/sources" class="card-footer-item user-sources">Explore sources</a>
11+
<a href="explore/sources/mine" class="card-footer-item user-sources">{{#i18n 'view_sources'}}View your sources{{/i18n}}</a>
12+
<a href="explore/sources" class="card-footer-item user-sources">{{#i18n 'explore_sources'}}Explore sources{{/i18n}}</a>
1313
</div>
1414
</div>
1515
<div class="card items">
1616
<div class="card-content">
17-
<p class="title">Items</p>
17+
<p class="title">{{#i18n 'items'}}Items{{/i18n}}</p>
1818
<p class="subtitle">
19-
You created {{userItems}} of {{totalItems}} items.</p>
19+
{{#i18n 'items_tally'}}You created {{userItems}} of {{totalItems}} items.{{/i18n}}
20+
</p>
2021
</div>
2122
<div class="card-footer">
22-
<a href="explore/items/mine" class="card-footer-item user-items">View your items</a>
23-
<a href="explore/items" class="card-footer-item user-items">Explore items</a>
23+
<a href="explore/items/mine" class="card-footer-item user-items">{{#i18n 'view_items'}}View your items{{/i18n}}</a>
24+
<a href="explore/items" class="card-footer-item user-items">{{#i18n 'explore_items'}}Explore items{{/i18n}}</a>
2425
</div>
2526
</div>
2627
</div>

frontend/src/menu/menu-template.hbs

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
<nav class="navbar" role="navigation" aria-label="main navigation">
1+
<nav
2+
class="navbar"
3+
role="navigation"
4+
aria-label="{{#i18n 'main_navigation'}}main navigation{{/i18n}}"
5+
>
26
<div class="container">
37
<div class="navbar-brand">
48
<a class="navbar-item" href="/">
59
<img src="{{static 'image/read-it-logo-med-colour-no-letters.png'}}" alt="Read-It">
610
</a>
7-
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
8-
data-target="navbarMenu">
11+
<a
12+
role="button"
13+
class="navbar-burger burger"
14+
aria-label="{{#i18n 'menu'}}menu{{/i18n}}"
15+
aria-expanded="false"
16+
data-target="navbarMenu"
17+
>
918
<span aria-hidden="true"></span>
1019
<span aria-hidden="true"></span>
1120
<span aria-hidden="true"></span>
@@ -47,7 +56,7 @@
4756
</div>
4857
</div>
4958
{{#if uploadSources}}
50-
<a class="navbar-item tooltip is-tooltip-left"
59+
<a class="navbar-item tooltip is-tooltip-left"
5160
data-tooltip="{{#i18n 'upload_tooltip'}}Upload reading testimonies for annotation{{/i18n}}" href="/upload">
5261
<span class="icon-text">
5362
<span class="icon is-small has-text-primary">
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
<figure class="image notfound">
2-
<img src="{{static 'image/404.svg'}}" alt="404 Not Found">
2+
<img
3+
src="{{static 'image/404.svg'}}"
4+
alt="{{#i18n 'not_found_alt'}}404 Not Found{{/i18n}}"
5+
>
36
</figure>
4-
<p>
7+
<p>{{{#i18n 'not_found_text'}}}
58
Oops, this page doesn't seem to exist.
69
You can <a onclick="history.back()">go back</a>,
710
visit <a href="/landing">Landing</a> or <a href="/search">Search</a>,
811
or report a problem to the maintainers.
9-
</p>
12+
{{{/i18n}}}</p>

frontend/src/pagination/pagination-template.hbs

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<nav class="pagination is-centered" role="navigation" aria-label="pagination">
1+
<nav
2+
class="pagination is-centered"
3+
role="navigation"
4+
aria-label="{{#i18n 'pagination'}}pagination{{/i18n}}"
5+
>
26
<a class="pagination-previous">
37
<i class="fas fa-chevron-left"></i>
48
</a>
@@ -8,7 +12,11 @@
812
<ul class="pagination-list">
913
{{#if showPaginationLinks.start}}
1014
<li>
11-
<a id="page-first" class="pagination-link" aria-label="Goto page 1">1</a>
15+
<a
16+
id="page-first"
17+
class="pagination-link"
18+
aria-label="{{#i18n 'to_first_page'}}Go to page 1{{/i18n}}"
19+
>1</a>
1220
</li>
1321
{{/if}}
1422
{{#if showPaginationLinks.ellipsisStart}}
@@ -34,7 +42,11 @@
3442
{{/if}}
3543
{{#if showPaginationLinks.end}}
3644
<li>
37-
<a id="page-last" class="pagination-link" aria-label="Goto last page">{{totalPages}}</a>
45+
<a
46+
id="page-last"
47+
class="pagination-link"
48+
aria-label="{{#i18n 'to_last_page'}}Go to last page{{/i18n}}"
49+
>{{totalPages}}</a>
3850
</li>
3951
{{/if}}
4052
</ul>

frontend/src/panel-annotation/annotation-template.hbs

+12-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@
4949
<article class="item-section has-mt-10">
5050
<div class="item-section-header" id="btnRelItems">
5151
<p>{{#i18n 'related_items_title'}}Related items{{/i18n}}</p>
52-
<span class="icon is-large has-text-primary tooltip is-tooltip-left" data-tooltip="Open related items">
52+
<span
53+
class="icon is-large has-text-primary tooltip is-tooltip-left"
54+
data-tooltip="{{#i18n 'open_related'}}Open related items{{/i18n}}"
55+
>
5356
<i class="fas fa-arrow-circle-right"></i>
5457
</span>
5558
</div>
@@ -61,16 +64,21 @@
6164
{{else}}
6265
{{#i18n 'annotations_title'}}Annotations{{/i18n}}
6366
{{/if}}</p>
64-
<span class="icon is-large has-text-primary tooltip is-tooltip-left" data-tooltip="Open annotations">
67+
<span
68+
class="icon is-large has-text-primary tooltip is-tooltip-left"
69+
data-tooltip="{{#i18n 'open_annotations'}}Open annotations{{/i18n}}"
70+
>
6571
<i class="fas fa-arrow-circle-right"></i>
6672
</span>
6773
</div>
6874
</article>
6975
<article class="item-section has-mt-10">
7076
<div class="item-section-header" id="btnExtResources">
7177
<p>{{#i18n 'external_resources_title'}}External resources{{/i18n}}</p>
72-
<span class="icon is-large has-text-primary tooltip is-tooltip-left"
73-
data-tooltip="Open external resources">
78+
<span
79+
class="icon is-large has-text-primary tooltip is-tooltip-left"
80+
data-tooltip="{{#i18n 'open_external'}}Open external resources{{/i18n}}"
81+
>
7482
<i class="fas fa-arrow-circle-right"></i>
7583
</span>
7684
</div>

frontend/src/panel-search-results/search-result-item-template.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
{{/unless}}
1010
{{#each properties}}
1111
<p>
12-
<b>{{@key}}: </b>{{this}}
12+
<b>{{@key}}{{#i18n 'interpunction.colon'}}: {{/i18n}}</b>{{this}}
1313
</p>
1414
{{/each}}

frontend/src/panel-source/source-metadata-template.hbs

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
</div>
3333
<div class="panel-footer buttons is-right">{{#userIsOwner}}
34-
<button type=button class="button btn-delete is-danger">Delete source</button>
35-
<button type=reset class="button btn-cancel">Cancel</button>
36-
<button type=button class="button btn-edit">Edit</button>
34+
<button type=button class="button btn-delete is-danger">{{#i18n 'delete_source'}}Delete source{{/i18n}}</button>
35+
<button type=reset class="button btn-cancel">{{#i18n 'cancel'}}Cancel{{/i18n}}</button>
36+
<button type=button class="button btn-edit">{{#i18n 'edit'}}Edit{{/i18n}}</button>
3737
{{/userIsOwner}}</div>

frontend/src/registration/confirm-registration-template.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<form class="box is-narrow-modal-form">
44
{{#if isConfirmed}}
55
<h3 class="title is-3">{{#i18n 'confirmation_complete'}}Confirmation complete{{/i18n}}</h3>
6-
<p>{{#i18n 'sign_up_thanks'}}Thank you for signing up. You can now {{/i18n}}<a href='search'>{{#i18n 'login'}}login{{/i18n}}</a></p>
6+
<p>{{#i18n 'sign_up_thanks_before_link'}}Thank you for signing up. You can now {{/i18n}}<a href='search'>{{#i18n 'sign_up_thanks_link'}}login{{/i18n}}</a>{{#i18n 'sign_up_thanks_after_link'}}.{{/i18n}}</p>
77
{{/if}}
88

99
{{#if wasNotFound}}

frontend/src/registration/registration-template.hbs

+21-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,14 @@
1515
<div class="field">
1616
<label class="label">{{#i18n 'username'}}Username{{/i18n}}</label>
1717
<div class="control">
18-
<input name="username" class="input" type="text" name="title" placeholder="Username" required>
18+
<input
19+
name="username"
20+
class="input"
21+
type="text"
22+
name="title"
23+
placeholder="{{#i18n 'username'}}Username{{/i18n}}"
24+
required
25+
>
1926
</div>
2027
</div>
2128

@@ -29,13 +36,24 @@
2936
<div class="field">
3037
<div class="control">
3138
<label class="label">{{#i18n 'password'}}Password{{/i18n}}</label>
32-
<input name="password1" id="password" class="input" type="password" placeholder="Password">
39+
<input
40+
name="password1"
41+
id="password"
42+
class="input"
43+
type="password"
44+
placeholder="{{#i18n 'password'}}Password{{/i18n}}"
45+
>
3346
</div>
3447
</div>
3548

3649
<div class="field">
3750
<div class="control">
38-
<input name="password2" class="input" type="password" placeholder="Repeat password">
51+
<input
52+
name="password2"
53+
class="input"
54+
type="password"
55+
placeholder="{{#i18n 'repeat_password'}}Repeat password{{/i18n}}"
56+
>
3957
</div>
4058
</div>
4159

frontend/src/search-box/searchbox-template.hbs

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
<a class="button is-info"
44
href="https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html#simple-query-string-syntax"
55
target="_blank">
6-
<span class="icon is-small tooltip is-tooltip-top" data-tooltip="View documentation of search operators">
6+
<span
7+
class="icon is-small tooltip is-tooltip-top"
8+
data-tooltip="{{#i18n 'view_operator_docs'}}View documentation of search operators{{/i18n}}"
9+
>
710
<i class="fas fa-question" aria-hidden="true"></i>
811
</span>
912
</a>
1013
</div>
1114
<div class="control is-expanded">
12-
<input class="input" type="text" placeholder="Search our database">
15+
<input
16+
class="input"
17+
type="text"
18+
placeholder="{{#i18n 'search_database'}}Search our database{{/i18n}}"
19+
>
1320
</div>
1421
<div class="dropdown is-hoverable">
1522
<div class="dropdown-trigger">
@@ -35,4 +42,4 @@
3542
</span>
3643
</a>
3744
</div>
38-
</div>
45+
</div>

frontend/src/semantic-search/semantic-search-template.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
name=label
77
maxlength=100
88
value="{{label}}"
9-
placeholder="optional label for reference"
9+
placeholder="{{#i18n 'optional_label_placeholder'}}optional label for reference{{/i18n}}"
1010
class="input"
1111
>
1212
</div>

0 commit comments

Comments
 (0)