Skip to content

Commit a6a9e83

Browse files
committed
Organize the translation strings (#451)
1 parent 6cf200a commit a6a9e83

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+696
-599
lines changed

frontend/src/explorer/explorer-event-controller.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class ExplorerEventController {
172172
const flatItems = new FlatItemCollection(items);
173173
const filteredItems = new FilteredCollection(flatItems, 'annotation');
174174
const resultView = new SearchResultListPanel({
175-
title:i18next.t('heading.annotations', 'Annotations'),
175+
title:i18next.t('annotation.list-title', 'Annotations'),
176176
model: item,
177177
collection: filteredItems,
178178
selectable: false,
@@ -311,14 +311,14 @@ class ExplorerEventController {
311311
landing = false;
312312
}
313313
const title = `${landing ? 'My' : 'Sample'} ${queryMode}`;
314-
const i18nKey = title.toLowerCase().replace(' ', '-');
314+
const i18nKey = `button.${title.toLowerCase().replace(' ', '-')}`;
315315
const endpoint = `${queryMode}:${landing ? 'user' : 'sample'}`;
316316
const collection = new FlatItemCollection(ldChannel.request(endpoint));
317317
const browsePanel = new SearchResultListPanel({
318-
// i18next.t('my-sources', 'My sources');
319-
// i18next.t('sample-sources', 'Sample sources');
320-
// i18next.t('my-items', 'My items');
321-
// i18next.t('sample-items', 'Sample items');
318+
// i18next.t('button.my-sources', 'My sources');
319+
// i18next.t('button.sample-sources', 'Sample sources');
320+
// i18next.t('button.my-items', 'My items');
321+
// i18next.t('button.sample-items', 'Sample items');
322322
title: i18next.t(i18nKey, title),
323323
collection,
324324
selectable: false,

frontend/src/feedback/feedback-template.hbs

+15-12
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,61 @@
33
<form class="box register-form is-narrow-modal-form">
44
{{#if wasSentSuccessfully}}
55
<header>
6-
<h3 class="title is-3 page-header">{{#i18n 'feedback-submitted'}}Feedback submitted{{/i18n}}</h3>
6+
<h3 class="title is-3 page-header">
7+
{{#i18n 'feedback.success-heading'
8+
}}Feedback submitted{{/i18n}}
9+
</h3>
710
</header>
811
<div class="field">
9-
<p>{{#i18n 'thanks-feedback'}}Thank you very much for your feedback, it is highly appreciated!{{/i18n}}</p>
12+
<p>{{#i18n 'feedback.thanks'}}Thank you very much for your feedback, it is highly appreciated!{{/i18n}}</p>
1013
</div>
1114
<div class="field is-grouped">
1215
<div class="control">
13-
<button class="button btn-close" type=button>{{#i18n 'close'}}Close{{/i18n}}</button>
16+
<button class="button btn-close" type=button>{{#i18n 'button.close'}}Close{{/i18n}}</button>
1417
</div>
1518
</div>
1619
{{else}}
1720
<header>
18-
<h3 class="title is-3 page-header">{{#i18n 'feedback'}}Feedback{{/i18n}}</h3>
21+
<h3 class="title is-3 page-header">{{#i18n 'feedback.form-heading'}}Feedback{{/i18n}}</h3>
1922
</header>
2023
<div class="field">
21-
<label class="label">{{#i18n 'subject'}}Subject{{/i18n}}</label>
24+
<label class="label">{{#i18n 'label.subject'}}Subject{{/i18n}}</label>
2225
<div class="control">
2326
<input
2427
name="subject"
2528
class="input"
2629
type="text"
2730
name="title"
28-
placeholder="{{#i18n 'about-readit'}}About READ-IT{{/i18n}}"
31+
placeholder="{{#i18n 'placeholder.feedback-subject'}}About READ-IT{{/i18n}}"
2932
>
3033
</div>
3134
</div>
3235

3336
<div class="field">
3437
<div class="control">
35-
<label class="label">{{#i18n 'feedback'}}Feedback{{/i18n}}</label>
38+
<label class="label">{{#i18n 'label.feedback'}}Feedback{{/i18n}}</label>
3639
<textarea
3740
name="feedback"
3841
class="textarea"
39-
placeholder="{{#i18n 'feedback-placeholder'}}e.g. I love READ-IT!{{/i18n}}"
42+
placeholder="{{#i18n 'placeholder.feedback-content'}}e.g. I love READ-IT!{{/i18n}}"
4043
></textarea>
4144
</div>
4245
</div>
4346

4447
{{#if hasError}}
4548
<div class="field form-feedback-bar has-background-danger has-text-white">
46-
<p class="help">{{#i18n 'feedback-failed'}}Feedback submission failed. Please try again and if this error keeps occuring, contact the
49+
<p class="help">{{#i18n 'feedback.failed'}}Feedback submission failed. Please try again and if this error keeps occuring, contact the
4750
site administrator.{{/i18n}}</p>
4851
</div>
4952
{{/if}}
5053

5154
<div class="field is-grouped">
5255
<div class="control">
53-
<button class="button is-link btn-submit" type=submit>{{#i18n 'submit'}}Submit{{/i18n}}</button>
56+
<button class="button is-link btn-submit" type=submit>{{#i18n 'button.submit'}}Submit{{/i18n}}</button>
5457
</div>
5558

5659
<div class="control">
57-
<button class="button btn-close" type=button>{{#i18n 'close'}}Close{{/i18n}}</button>
60+
<button class="button btn-close" type=button>{{#i18n 'button.close'}}Close{{/i18n}}</button>
5861
</div>
5962
</div>
6063
{{/if}}
@@ -65,5 +68,5 @@
6568
<button
6669
type=button
6770
class="modal-close is-large"
68-
aria-label="{{#i18n 'close'}}Close{{/i18n}}"
71+
aria-label="{{#i18n 'button.close'}}Close{{/i18n}}"
6972
></button>

frontend/src/footer/footer-template.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<figure class="footer-dh">
2-
<p>{{#i18n 'developed-by'}}Developed by{{/i18n}}</p>
2+
<p>{{#i18n 'footer.developed-by'}}Developed by{{/i18n}}</p>
33
<a href="https://dig.hum.uu.nl" target="_blank"><img class="dhlab"
44
src="{{static 'image/dighum-logo-blue.svg'}}"></a>
55
<div class="footer-project is-pulled-right">
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<button type=button class="button is-success">
2-
<span>{{#i18n 'add'}}Add{{/i18n}}</span>
2+
<span>{{#i18n 'button.add'}}Add{{/i18n}}</span>
33
<span class="icon is-small"><i class="fas fa-plus"></i></span>
44
</button>

frontend/src/forms/ontology-class-picker-template.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div class="dropdown">
22
<div class="dropdown-trigger">
33
<button type=button class="button" aria-haspopup="true" aria-controls="dropdown-menu">
4-
<span class="dropdown-label">{{#i18n 'define-category'}}This is a{{/i18n}}
4+
<span class="dropdown-label">{{#i18n 'annotation.define-category'}}This is a{{/i18n}}
55
<span class="dropdown-label-tag">...</span>
66
</span>
77
<span class="icon is-small">
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<button type=button class="button is-danger">
2-
<span>{{#i18n 'remove'}}Remove{{/i18n}}</span>
2+
<span>{{#i18n 'button.remove'}}Remove{{/i18n}}</span>
33
<span class="icon is-small"><i class="fas fa-times"></i></span>
44
</button>

frontend/src/global/annotation-hierarchy.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,27 @@ const hierarchyPromise = i18nPromise.then(() => {
3131
collection: new Collection([{
3232
model: new Model({
3333
id: 'mine',
34-
label: i18next.t('filterHierarchy.mine', 'by me'),
34+
label: i18next.t('annotation.filters.mine', 'by me'),
3535
cssClass: 'rit-self-made',
3636
}),
3737
}, {
3838
model: new Model({
3939
id: 'others',
40-
label: i18next.t('filterHierarchy.others', 'by others'),
40+
label: i18next.t('annotation.filters.others', 'by others'),
4141
cssClass: 'rit-other-made',
4242
}),
4343
}]),
4444
}, {
4545
collection: new Collection([{
4646
model: new Model({
4747
id: 'verified',
48-
label: i18next.t('filterHierarchy.verified', 'verified'),
48+
label: i18next.t('annotation.filters.verified', 'verified'),
4949
cssClass: 'rit-verified',
5050
}),
5151
}, {
5252
model: new Model({
5353
id: 'unverified',
54-
label: i18next.t('filterHierarchy.unverified', 'unverified'),
54+
label: i18next.t('annotation.filters.unverified', 'unverified'),
5555
cssClass: 'rit-unverified',
5656
}),
5757
}]),
@@ -60,14 +60,14 @@ const hierarchyPromise = i18nPromise.then(() => {
6060
fullHierarchy.add([{
6161
model: new Model({
6262
id: 'semantic',
63-
label: i18next.t('filterHierarchy.semantic', 'human'),
63+
label: i18next.t('annotation.filters.semantic', 'human'),
6464
cssClass: 'rit-is-semantic',
6565
}),
6666
collection: semanticHierarchy,
6767
}, {
6868
model: new Model({
6969
id: 'nlp',
70-
label: i18next.t('filterHierarchy.nlp', 'automated'),
70+
label: i18next.t('annotation.filters.nlp', 'automated'),
7171
cssClass: 'rit-is-nlp',
7272
}),
7373
collection: nlpHierarchy,

0 commit comments

Comments
 (0)