-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstrings.js
74 lines (62 loc) · 1.95 KB
/
strings.js
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const __en = {
"alert.selband":"Please choose a band",
"alert.nodata":"No Data Throughput",
"label.options":"Options",
"label.primaryca":"Primary Carrier",
"label.select":"Select",
"label.band":"Band",
"header.band":"NR-Band",
"header.scs":"Sub Carrier Spacing",
"header.bandconf":"Band Config",
"header.sfactor":"Scaling Factor",
"header.dlbandwidth":"Downlink Bandwidth",
"header.ulbandwidth":"Uplink Bandwidth",
"header.bandwidth":"Bandwidth",
"header.layers":"Layers",
"header.rowcaopts":"Carrier Options",
"header.dllayers":"Downlink Layers",
"header.ullayers":"Uplink Layers",
"header.modulation":"Modulation",
"header.dlmodulation":"Downlink Modulation",
"header.ulmodulation":"Uplink Modulation",
"header.tddslotformat":"TDD Slot Format",
"header.tddcustomslot":"Custom Slot Format",
"header.flexsympurpose":"Flexible Symbol Purpose:",
"error.badslotchar":"Slot frame can only be D, U or F",
"error.badslotlength":"Slot frame must be 14 symbols long",
"error.generic":"Error",
"error.speedfail":"Unable to calculate speed",
"error.remprim":"Can't remove the primary carrier",
"ux.aggupl":"Aggregate Uplink",
"ux.deaggupl":"Deaggregate Uplink",
"ux.remca":"Remove Carrier",
"ux.flexdata":"Guard Period",
"ux.flexguard":"Data",
"ux.addca":"Add Component Carrier",
"ux.title":"5G Theoretical Throughput Calculator"
};
const __fr = {
"alert.selband":"Merci de choisir une bande",
"ux.aggupl":"Agrégat téléverser",
"ux.deaggupl":"Désagréger téléverser",
"ux.remca":"Retirer la porteuse",
"ux.addca":"Ajouter une porteuse",
"ux.title":"Calculateur de débit théorique 5G"
};
const __es = {
};
const __de = {
"alert.selband":"Bitte wählen Sie ein Frequenzband",
"ux.aggupl":"Aggregat Uplink",
"ux.deaggupl":"Disaggregieren Uplink",
"ux.remca":"Träger entfernen",
"ux.addca":"Träger hinzufügen",
"ux.title":"5G Theoretische Throughput-Rechner"
};
var strings = {
"en":__en,
"fr":__fr,
"es":__es,
"de":__de
};
var _l = strings["en"];