Skip to content

Commit 9929899

Browse files
committed
Move anno-edit type hints entirely into translation JSON (#451)
This also adds dynamism so that the translation strings cannot be requested before they are available.
1 parent e2b0e4d commit 9929899

File tree

3 files changed

+17
-29
lines changed

3 files changed

+17
-29
lines changed

frontend/src/i18n/en/translation.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
"permitted_types_before_list": "This property permits",
3131
"current_type": "Current type:",
3232
"typeHints": {
33-
"integer": "",
34-
"base64Binary": "",
35-
"gYear": "",
36-
"string": ""
33+
"integer": "Include extra leading zeros to force interpretation as an integer type.",
34+
"base64Binary": "Include internal whitespace to force interpretation as base 64 binary data.",
35+
"gYear": "Include time zone information (such as a final “Z”) to force interpretation as a Gregorian year.",
36+
"string": "Start with a space to force interpretation as text or a derived string type."
3737
},
3838
"all_types_permitted": "This property permits any simple type.",
3939
"no_type_matched": "This value does not match the permitted type(s).",

frontend/src/i18n/fr/translation.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
"permitted_types_before_list": "This property permits",
3131
"current_type": "Current type:",
3232
"typeHints": {
33-
"integer": "",
34-
"base64Binary": "",
35-
"gYear": "",
36-
"string": ""
33+
"integer": "Include extra leading zeros to force interpretation as an integer type.",
34+
"base64Binary": "Include internal whitespace to force interpretation as base 64 binary data.",
35+
"gYear": "Include time zone information (such as a final “Z”) to force interpretation as a Gregorian year.",
36+
"string": "Start with a space to force interpretation as text or a derived string type."
3737
},
3838
"all_types_permitted": "This property permits any simple type.",
3939
"no_type_matched": "This value does not match the permitted type(s).",

frontend/src/item-edit/detected-type-help-view.ts

+9-21
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { map, extend, propertyOf } from 'lodash';
1+
import { map, extend, fromPairs } from 'lodash';
22
import * as i18next from 'i18next';
33

44
import { CompositeView } from '../core/view';
@@ -8,26 +8,14 @@ import { xsd } from '../common-rdf/ns';
88
import ScopedIriLink from './scoped-iri-href-view';
99
import template from './detected-type-help-template';
1010

11-
const disambiguationHints = {
12-
[xsd.integer]: i18next.t('typeHints.integer',
13-
'Include extra leading zeros to force interpretation ' +
14-
'as an integer type.'
15-
),
16-
[xsd.base64Binary]: i18next.t('typeHints.base64Binary',
17-
'Include internal whitespace to force interpretation ' +
18-
'as base 64 binary data.'
19-
),
20-
[xsd.gYear]: i18next.t('typeHints.gYear',
21-
'Include time zone information (such as a final "Z") to force ' +
22-
'interpretation as a Gregorian year.'
23-
),
24-
[xsd.string]: i18next.t('typeHints.string',
25-
'Start with a space to force interpretation as text or ' +
26-
'a derived string type.'
27-
),
28-
};
29-
30-
const getHint = propertyOf(disambiguationHints);
11+
// i18next.t('typeHints.integer')
12+
// i18next.t('typeHints.base64Binary')
13+
// i18next.t('typeHints.gYear')
14+
// i18next.t('typeHints.string')
15+
const typesWithHints = ['integer', 'base64Binary', 'gYear', 'string'];
16+
const typeAsPair = name => [xsd[name], `typeHints.${name}`];
17+
const disambiguationHints = fromPairs(map(typesWithHints, typeAsPair));
18+
const getHint = type => i18next.t(disambiguationHints[type]);
3119

3220
/**
3321
* This is one of the p.help views used in LinkedItemEditor, to give the user

0 commit comments

Comments
 (0)