-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenglish.go
More file actions
32 lines (25 loc) · 776 Bytes
/
english.go
File metadata and controls
32 lines (25 loc) · 776 Bytes
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
package luxwslang
import "regexp"
// English language terminology.
var English = &Terminology{
ID: "en",
Name: "English",
timestampFormat: "02.01.06 15:04:05",
NavInformation: "information",
NavTemperatures: "temperatures",
NavElapsedTimes: "elapsed times",
NavInputs: "inputs",
NavOutputs: "outputs",
NavHeatQuantity: "heat quantity",
NavErrorMemory: "error memory",
NavSwitchOffs: "switch offs",
NavOpHours: "operating hours",
HoursImpulsesRe: regexp.MustCompile(`^impulse\s`),
NavSystemStatus: "system status",
StatusType: "type of heat pump",
StatusSoftwareVersion: "software version",
StatusOperationMode: "operation mode",
StatusPowerOutput: "actual capacity",
BoolFalse: "off",
BoolTrue: "on",
}