forked from l20n/lol-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplex_strings.lol
49 lines (46 loc) · 1.24 KB
/
complex_strings.lol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<brandName "Firefox">
<brandNameHash {
release: "Firefox",
testing: "Aurora"
}>
<brandNameDeep {
masculine: {
nominative: {
short: "Firefox",
long: "Mozilla Firefox"
},
genitive: {
short: "Firefox's",
long: "Mozilla Firefox's"
}
},
feminine: {
nominative: {
short: "Aurora",
long: "Mozilla Aurora"
},
genitive: {
short: "Aurora's",
long: "Mozilla Aurora's"
}
}
}>
<channels {
testing: 'testing',
release: 'release'
}>
<about1 "About {{ brandName }}">
<about2 "About {{ brandNameHash.release }}">
<about4 "About {{ brandNameHash['release'] }}">
<about3 "About {{ brandNameHash.testing }}">
<about5 "About {{ brandNameHash['testing'] }}">
<about21 "About {{ brandNameDeep }}">
<about22 "About {{ brandNameDeep.feminine }}">
<about23 "About {{ brandNameDeep['feminine'] }}">
<about24 "About {{ brandNameDeep.feminine.genitive }}">
<about25 "About {{ brandNameDeep['feminine'].genitive }}">
<about26 "About {{ brandNameDeep['feminine']['genitive'] }}">
<about27 "About {{ brandNameDeep.feminine.genitive.long }}">
<about31 "About {{ brandNameHash[channels] }}">
<about32 "About {{ brandNameHash[channels.testing] }}">
<about33 "About {{ brandNameHash[channels['testing']] }}">