-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.json
More file actions
1571 lines (1571 loc) · 64.8 KB
/
en.json
File metadata and controls
1571 lines (1571 loc) · 64.8 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"authProviders": {
"authCode": "Authentication Code",
"authCodeHelp": "Copy this code and use it in the next step. Valid for {duration}.",
"authorizationFailed": "Authorization Failed",
"authorizationRequired": "Authorization Required",
"authorizationSuccessful": "Authorization Successful",
"buttonConnect": "Connect to {provider}",
"buttonDisconnect": "Disconnect",
"confirmLogout": "Are you sure you want to disconnect {title}?",
"connect": "connect",
"disconnect": "disconnect",
"loggedOut": "Successfully logged out",
"logoutFailed": "Failed to logout",
"modalDescriptionLogin": "Complete the authorization process to establish connection with {provider}.",
"modalDescriptionLogout": "This will disconnect your {provider} account and remove access to its data.",
"success": "{title} is now connected and ready to use.",
"successCloseModal": "You can now close this dialog.",
"successCloseTab": "You can now close this tab.",
"title": "Authorization Status"
},
"batterySettings": {
"batteryLevel": "Battery level",
"bufferStart": {
"above": "when above {soc}.",
"full": "when at {soc}.",
"never": "only with enough surplus."
},
"capacity": "{energy} of {total}",
"control": "Battery control",
"discharge": "Prevent discharge in fast mode and planned charging.",
"disclaimerHint": "Note:",
"disclaimerText": "These settings only affect solar mode. Charging behaviour is adjusted accordingly.",
"gridChargeTab": "Grid charging",
"legendBottomName": "Prioritize home battery charging",
"legendBottomSubline": "until it reaches {soc}.",
"legendMiddleName": "Prioritize vehicle charging",
"legendMiddleSubline": "when home battery is above {soc}.",
"legendTopAutostart": "Start automatically",
"legendTopName": "Battery-supported vehicle charging",
"legendTopSubline": "when home battery is above {soc}.",
"modalTitle": "Home Battery",
"noBattery": "No batteries configured.",
"usageTab": "Battery usage"
},
"config": {
"aux": {
"description": "Device that adjusts its consumption based on available surplus (like smart water heaters). evcc expects that this device reduces its power consumption if needed.",
"titleAdd": "Add Self-Regulating Consumer",
"titleEdit": "Edit Self-Regulating Consumer"
},
"battery": {
"titleAdd": "Add Battery",
"titleEdit": "Edit Battery"
},
"charge": {
"titleAdd": "Add Charge Meter",
"titleEdit": "Edit Charge Meter"
},
"charger": {
"chargers": "EV chargers",
"generic": "Generic integrations",
"heatingdevices": "Heating devices",
"ocppConfirmContinue": "Your charger has not connected to evcc yet. Are you sure you want to continue?",
"ocppConnected": "Connected!",
"ocppDescription": "evcc has a built-in OCPP server. Follow these steps:",
"ocppHelp": "Copy this URL into your charger's configuration. Check the manufacturer's manual for details. The charger is expected to automatically append its unique identifier (station ID) to the url. In rare cases, you may need to manually specify the identifier. Example: `{url}`",
"ocppLabel": "OCPP-Server URL",
"ocppNextStep": "Next step",
"ocppStep1": "Configure your charger to use evcc as OCPP server.",
"ocppStep2": "Wait for your charger to connect to evcc.",
"ocppStep3": "Proceed and complete the configuration.",
"ocppWaiting": "Waiting for connection",
"switchsockets": "Switchable sockets",
"template": "Manufacturer",
"titleAdd": {
"charging": "Add Charger",
"heating": "Add Heater"
},
"titleEdit": {
"charging": "Edit Charger",
"heating": "Edit Heater"
},
"type": {
"custom": {
"charging": "User-defined charger",
"heating": "User-defined heater"
},
"heatpump": "User-defined heat pump",
"sgready": "User-defined heat pump (sg-ready via plugins)",
"sgready-boost": "User-defined heat pump (sg-ready-boost, deprecated)",
"sgready-relay": "User-defined heat pump (sg-ready via relays)",
"switchsocket": "User-defined switch socket"
}
},
"circuits": {
"description": "Ensures, that the sum of all loadpoints connected to a circuit does not exceed the configured power and current limits. Circuits can be nested to build a hierarchy.",
"title": "Load Management",
"usableMeters": "Usable meter references"
},
"control": {
"description": "Usually the default values are fine. Only change them if you know what you are doing.",
"descriptionInterval": "Update cycle in seconds. Defines how often evcc reads meter data and adjusts charging. The default of 30 seconds is a safe choice. Devices like vehicles, wallboxes and inverters typically need several seconds to adjust their behavior. If your components react quickly you can use lower values. We strongly recommend not going below 10 seconds. If you observe erratic control behavior or jumping power values choose a larger interval.",
"descriptionResidualPower": "Shifts the operation point of the control loop. If you have a home battery it's recommended to set a value of 100 W. This way the battery will get slight priority over grid use.",
"labelInterval": "Update interval",
"labelResidualPower": "Residual power",
"title": "Control behavior"
},
"currency": {
"description": "Used to format energy prices, costs and savings based on your tariff.",
"example": "Your charging price was {price}. You saved {amount}.",
"label": "Currency",
"title": "Currency"
},
"deviceValue": {
"activeClients": "Active clients",
"amount": "Amount",
"broker": "Broker",
"bucket": "Bucket",
"capacity": "Capacity",
"chargeStatus": "Status",
"chargeStatusA": "not connected",
"chargeStatusB": "connected",
"chargeStatusC": "charging",
"chargeStatusE": "no power",
"chargeStatusF": "error",
"chargedEnergy": "Charged",
"co2": "Grid CO₂",
"configured": "Configured",
"connected": "Connected",
"connections": "Connections",
"controllable": "Controllable",
"currency": "Currency",
"current": "Current",
"currentRange": "Current",
"curtailed": "Feed-in limited",
"detected": "Detected",
"dimmed": "Consumption limited",
"enabled": "Enabled",
"energy": "Energy",
"events": "Events",
"feedinPrice": "Feed-in price",
"forecast": "Forecast",
"gridPrice": "Grid price",
"heaterTempLimit": "Heater limit",
"hemsActiveLimit": "Active limit",
"hemsType": "Communication",
"identifier": "RFID-Identifier",
"loginBlocked": "Login limit reached",
"max": "max",
"messengers": "Services",
"no": "no",
"odometer": "Odometer",
"org": "Organization",
"phaseCurrents": "Current",
"phasePowers": "Power",
"phaseVoltages": "Voltage",
"phases1p3p": "Phase switch",
"power": "Power",
"powerRange": "Power",
"price": "Price",
"range": "Range",
"singlePhase": "Single phase",
"soc": "Charge",
"solarForecast": "Solar forecast",
"temp": "Temperature",
"topic": "Topic",
"url": "URL",
"vehicleLimitSoc": "Charge limit",
"yes": "yes"
},
"deviceValueChargeStatus": {
"A": "A (not connected)",
"B": "B (connected)",
"C": "C (charging)"
},
"deviceValueHemsType": {
"eebus": "via EEBus",
"relay": "via Relay"
},
"devices": {
"auxMeter": "Smart consumer",
"batteryStorage": "Battery storage",
"consumer": "Consumer",
"solarSystem": "Solar system"
},
"editor": {
"loading": "Loading YAML editor…"
},
"eebus": {
"certificate": {
"private": "Private key",
"public": "Public certificate",
"title": "Certificates"
},
"description": "Configuration that enables evcc to communicate with EEBus compatible devices like chargers or a control unit of your grid operator. All relevant initialization and certificate generation is done automatically on first start.",
"descriptionAdvanced": "No changes required. Only perform changes if you really know what you're doing. If you change either the SHIP-id or the certificates, you'll need to pair your devices again.",
"interfaces": "Interfaces",
"interfacesHelp": "Limit the network interfaces that EEBus should use to avoid communication problems. Leave the field blank to use all interfaces. One entry per line.",
"port": "Port",
"portHelp": "The port to be used.",
"removeConfirm": "All EEBus configuration will be removed. New certificates and identifiers will be generated on next start. Are you sure?",
"shipid": "SHIP-ID",
"shipidExplain": "Permanent device identifier for identification in the EEBus network.",
"shipidHelp": "This SHIP-ID is linked to the certificates below.",
"ski": "SKI",
"skiExplain": "Unique security identifier for pairing EEBus devices.",
"title": "EEBus"
},
"experimental": {
"description": "Provides early access to features that are still being tested. These may be unstable and could change or be removed in future versions.",
"title": "Experimental"
},
"ext": {
"description": "Records energy values of uncontrolled consumers (e.g. refrigerator, washing machine, etc.) for statistical purposes. These meters can also be used for load management (e.g. sub-distribution).",
"titleAdd": "Add Consumer Meter",
"titleEdit": "Edit Consumer Meter"
},
"form": {
"danger": "Danger",
"deprecated": "deprecated",
"example": "Example",
"optional": "optional"
},
"general": {
"applyAndClose": "Apply & close",
"authPerform": "Connect with {provider}",
"authPerformHint": "Will open in a new tab. Return here to continue.",
"authPrepare": "Prepare connection",
"cancel": "Cancel",
"clear": "Clear",
"close": "Close",
"confirmSave": "There are unsaved changes. Save now?",
"copied": "Copied!",
"copy": "Copy",
"customHelp": "Create a user-defined device using evcc's plugin system.",
"customOption": "User-defined device",
"delete": "Delete",
"docsLink": "See documentation.",
"dragHandle": "Drag handle",
"dragItem": "Draggable: {title}",
"dragList": "Reorderable list",
"error": "Error",
"experimental": "Experimental",
"forceSave": "Save anyway",
"fromYamlHint": "Note: Configured via evcc.yaml. Remove the entry from the file to enable editing here.",
"hideAdvancedSettings": "Hide advanced settings",
"invalidFileSelected": "Invalid file selected",
"legacy": "legacy",
"noFileSelected": "No file selected.",
"off": "off",
"on": "on",
"password": "Password",
"readFromFile": "Read from file",
"remove": "Remove",
"required": "required",
"reset": "Reset",
"save": "Save",
"saved": "Saved.",
"saving": "Saving…",
"selectFile": "Browse",
"showAdvancedSettings": "Show advanced settings",
"telemetry": "Telemetry",
"templateLoading": "Loading...",
"title": "Title",
"typeDeprecated": "The type '{type}' is outdated and will be removed in a future version. Please check the changelog and recreate this device.",
"validateSave": "Validate & save"
},
"grid": {
"title": "Grid meter",
"titleAdd": "Add Grid Meter",
"titleEdit": "Edit Grid Meter"
},
"hems": {
"csv": {
"created": "Created",
"finished": "Finished",
"gridpower": "Grid Power (kW)",
"limitpower": "Limit (kW)",
"type": "Type"
},
"description": "Power limitation by external systems (e.g. §14a EnWG, §9 EEG interface or higher-level energy management system). Works together with the load management feature.",
"downloadCsv": "Download CSV",
"eventsRecorded": "Recorded {count} grid limitation events.",
"lastEvent": "Most recent {timeAgo}.",
"title": "External Limit"
},
"icon": {
"change": "change",
"label": "Icon"
},
"influx": {
"description": "Writes charging data and other metrics to InfluxDB. Use Grafana or other tools to visualize the data.",
"descriptionToken": "Check the InfluxDB documentation to learn how to create one. https://docs.influxdata.com/influxdb/v2/admin/",
"labelBucket": "Bucket",
"labelCheckInsecure": "Allow self-signed certificates",
"labelDatabase": "Database",
"labelInsecure": "Certificate validation",
"labelOrg": "Organization",
"labelPassword": "Password",
"labelToken": "API Token",
"labelUrl": "URL",
"labelUser": "Username",
"title": "InfluxDB",
"v1Support": "Need support for InfluxDB 1.x?",
"v2Support": "Back to InfluxDB 2.x"
},
"loadpoint": {
"addCharger": {
"charging": "Add charger",
"heating": "Add heater"
},
"addMeter": "Add dedicated energy meter",
"cancel": "Cancel",
"chargerError": {
"charging": "Configuring a charger is required.",
"heating": "Configuring a heater is required."
},
"chargerLabel": {
"charging": "Charger",
"heating": "Heater"
},
"chargerPower11kw": "11 kW",
"chargerPower11kwHelp": "Will use a current range of 6 to 16 A.",
"chargerPower22kw": "22 kW",
"chargerPower22kwHelp": "Will use a current range of 6 to 32 A.",
"chargerPowerCustom": "other",
"chargerPowerCustomHelp": "Define a custom current range.",
"chargerTypeLabel": "Charger type",
"chargingTitle": "Behaviour",
"circuitHelp": "Load management assignment to ensure power and current limits are not exceeded.",
"circuitInvalid": "Circuit does not exist",
"circuitLabel": "Circuit",
"circuitUnassigned": "unassigned",
"defaultModeHelp": {
"charging": "Charging mode when connecting the vehicle.",
"heating": "Is set when on system start."
},
"defaultModeHelpKeep": "Keeps the last selected mode.",
"defaultModeLabel": "Default mode",
"defaultsHint": "Default mode, solar behaviour and electrical details use sensible defaults.",
"defaultsHintLink": "Adjust settings",
"delete": "Delete",
"electricalSubtitle": "When in doubt, ask your electrician.",
"electricalTitle": "Electrics",
"energyMeterHelp": "Additional meter if the charger doesn't have an integrated one.",
"energyMeterLabel": "Energy meter",
"estimateLabel": "Interpolate charge level between API updates",
"maxCurrentHelp": "Must be greater than minimum current.",
"maxCurrentLabel": "Maximum current",
"minCurrentHelp": "Only go below 6 A if you know what you're doing.",
"minCurrentLabel": "Minimum current",
"noVehicles": "No vehicles are configured.",
"option": {
"charging": "Add charging point",
"heating": "Add heating device"
},
"phases1p": "1-phase",
"phases3p": "3-phase",
"phasesAutomatic": "Automatic phases",
"phasesAutomaticHelp": "Your charger supports automatic switching between 1- and 3-phase charging. In the main screen you can adjust phase behaviour while charging.",
"phasesHelp": "Number of phases connected.",
"phasesLabel": "Phases",
"pollIntervalDanger": "Regularly querying the vehicle may drain the vehicle battery. Some vehicle manufacturers may actively prevent charging in this case. Not recommended! Only use this if you're aware of the risks.",
"pollIntervalHelp": "Time between vehicle API updates. Short intervals may drain the vehicle battery.",
"pollIntervalLabel": "Update interval",
"pollModeAlways": "always",
"pollModeAlwaysHelp": "Always request status updates in regular intervals.",
"pollModeCharging": "charging",
"pollModeChargingHelp": "Only request vehicle status updates when charging.",
"pollModeConnected": "connected",
"pollModeConnectedHelp": "Update vehicle status in regular intervals when connected.",
"pollModeLabel": "Update behaviour",
"priorityHelp": "Higher priority get preferred access to solar surplus.",
"priorityLabel": "Priority",
"save": "Save",
"solarBehaviorCustomHelp": "Define your own enable and disable thresholds and delays.",
"solarBehaviorDefaultHelp": "Start after {enableDelay} of sufficient surplus. Stop when there is not enough surplus for {disableDelay}.",
"solarBehaviorLabel": "Solar",
"solarModeCustom": "custom",
"solarModeMaximum": "maximum solar",
"thresholdDisableDelayLabel": "Disable delay",
"thresholdDisableHelpInvalid": "Please use a positive value.",
"thresholdDisableHelpPositive": "Stop, when more than {power} is used from the grid for {delay}.",
"thresholdDisableHelpZero": "Stop when minimum required power can't be satisfied for {delay}.",
"thresholdDisableLabel": "Disable grid power",
"thresholdEnableDelayLabel": "Enable delay",
"thresholdEnableHelpInvalid": "Please use a negative value.",
"thresholdEnableHelpNegative": "Start, when {surplus} surplus is available for {delay}.",
"thresholdEnableHelpZero": "Start when minimum required power can be satisfied for {delay}.",
"thresholdEnableLabel": "Enable grid power",
"titleAdd": {
"charging": "Add Charging Point",
"heating": "Add Heating Device",
"unknown": "Add Charger or Heater"
},
"titleEdit": {
"charging": "Edit Charging Point",
"heating": "Edit Heating Device",
"unknown": "Edit Charger or Heater"
},
"titleExample": {
"charging": "Garage, Carport, etc.",
"heating": "Heatpump, Heater, etc."
},
"titleLabel": "Title",
"vehicleAutoDetection": "auto detection",
"vehicleHelpAutoDetection": "Automatically selects the most plausible vehicle. Manual override is possible.",
"vehicleHelpDefault": "Always assume this vehicle is charging here. Auto-detection disabled. Manual override is possible.",
"vehicleInvalid": "Vehicle does not exist",
"vehicleLabel": "Default vehicle",
"vehiclesTitle": "Vehicles"
},
"main": {
"addAdditional": "Add additional meter",
"addGrid": "Add grid meter",
"addLoadpoint": "Add charger or heater",
"addPvBattery": "Add solar or battery",
"addTariffs": "Add tariffs",
"addVehicle": "Add vehicle",
"configured": "configured",
"edit": "edit",
"loadpointRequired": "At least one charging point has to be configured.",
"name": "Name",
"title": "Configuration",
"unconfigured": "not configured",
"vehicles": "My Vehicles",
"welcomeBannerText": "Start with creating at least one **charger**, **heater**, **grid**, **solar**, **battery** or **additional meter**. If you just want to test, pick a **demo device**.",
"welcomeBannerTitle": "Let's configure your system!"
},
"messaging": {
"addMessenger": "Add service",
"description": "Receive notifications about your charging sessions.",
"event": {
"asleep": {
"messageDefault": "Charge release, vehicle {vehicleName} not charging.",
"title": "When waiting for vehicle",
"titleDefault": "Vehicle asleep"
},
"connect": {
"messageDefault": "Car connected at {pvPower}kW PV",
"title": "When a car connects",
"titleDefault": "Car connected"
},
"disconnect": {
"messageDefault": "Car disconnected after {connectedDuration}",
"title": "When a car disconnects",
"titleDefault": "Car disconnected"
},
"guest": {
"messageDefault": "Unknown vehicle, guest connected?",
"title": "When an unknown car connects",
"titleDefault": "Unknown vehicle"
},
"planoverrun": {
"messageDefault": "{vehicleTitle}: Plan will overrun.",
"title": "When plan charging is going to overrun",
"titleDefault": "Plan overrun"
},
"soc": {
"messageDefault": "Battery charged to {vehicleSoc}%",
"title": "Charge level update",
"titleDefault": "Charge level updated"
},
"start": {
"messageDefault": "Started charging in {mode} mode.",
"title": "When charging starts",
"titleDefault": "Charge started"
},
"stop": {
"messageDefault": "Finished charging {chargedEnergy}kWh in {chargeDuration}.",
"title": "When charging stops",
"titleDefault": "Charge finished"
}
},
"eventMessage": "Message",
"eventTitle": "Title",
"events": "Events",
"legacyWarning": "New notification configuration available! Remove and save your configuration here to use the new guided process.",
"messengers": "Services",
"seePlaceholders": "see placeholders",
"title": "Notifications"
},
"messenger": {
"custom": "User-defined service",
"generic": "Generic service",
"primary": "Specific service",
"template": "Service",
"titleAdd": "Add Service",
"titleEdit": "Edit Service"
},
"meter": {
"cancel": "Cancel",
"delete": "Delete",
"generic": "Generic integrations",
"option": {
"aux": "Add self-regulating consumer",
"battery": "Add battery meter",
"ext": "Add regular consumer",
"pv": "Add solar meter"
},
"save": "Save",
"specific": "Specific integrations",
"template": "Manufacturer",
"titleChoice": "What Do You Want To Add?",
"titleLabel": "Title",
"usage": {
"aux": "Self-regulating consumer",
"battery": "Battery",
"charge": "Consumer / Charger",
"grid": "Grid",
"label": "Usage",
"pv": "Production"
},
"validateSave": "Validate & save"
},
"modbus": {
"baudrate": "Baud rate",
"comset": "ComSet",
"connection": "Modbus connection",
"connectionHintSerial": "The device is directly connected via RS485 (or USB-to-RS485 adapter).",
"connectionHintTcpip": "The device is reachable via network (LAN/WiFi).",
"connectionValueSerial": "RS485",
"connectionValueTcpip": "Network",
"device": "Device name",
"deviceHint": "Example: /dev/ttyUSB0",
"host": "IP address or hostname",
"hostHint": "Example: 192.0.2.2",
"id": "Modbus ID",
"port": "Port",
"protocol": "Modbus protocol",
"protocolHintRtu": "Connection through a RS485 to Ethernet adapter without protocol translation.",
"protocolHintTcp": "Device has native LAN/Wifi support or is connected through a RS485 to Ethernet adapter with protocol translation.",
"protocolValueRtu": "RTU",
"protocolValueTcp": "TCP"
},
"modbusproxy": {
"add": "Add proxy connection",
"connection": "Connection #{number}",
"description": "Some Modbus devices only support a single or very few connections. evcc can act as a proxy, enabling simultaneous access for multiple clients (home automation, scripts, etc.).",
"device": "Device",
"option": {
"deny": "error",
"false": "no",
"true": "silent"
},
"readonly": {
"help": {
"deny": "Write access is blocked with a Modbus error.",
"false": "Write access is forwarded.",
"true": "Write access is blocked without response."
},
"label": "Readonly"
},
"sourcePortHelp": "Port for incoming client connections. Must be available.",
"title": "Modbus Proxy"
},
"mqtt": {
"authentication": "Authentication",
"description": "Connect to an MQTT broker to exchange data with other systems on your network.",
"descriptionClientId": "Author of the messages. If empty `evcc-[rand]` is used.",
"descriptionTopic": "Leave empty to disable publishing.",
"labelBroker": "Broker",
"labelCaCert": "Server certificate (CA)",
"labelCheckInsecure": "Allow self-signed certificates",
"labelClientCert": "Client certificate",
"labelClientId": "Client ID",
"labelClientKey": "Client key",
"labelInsecure": "Certificate validation",
"labelPassword": "Password",
"labelTopic": "Topic",
"labelUser": "Username",
"publishing": "Publishing",
"title": "MQTT"
},
"network": {
"descriptionExternalUrl": "Address for other devices that want to connect to evcc and for autodiscovery of the evcc app.",
"descriptionHost": "Used to announce evcc in your local network.",
"descriptionInternalUrl": "Local network address of evcc.",
"descriptionPort": "Port for the web interface and API. You'll need to update your browser URL if you change this.",
"labelExternalUrl": "External URL",
"labelHost": "mDNS Hostname",
"labelInternalUrl": "Internal URL",
"labelPort": "Port",
"title": "Network",
"warningUrlPath": "The URL usually doesn't need a path. Are you sure this is correct?"
},
"ocpp": {
"connectedChargers": "Connected chargers",
"connectionStatus": "Configured station IDs",
"connectionStatusHelp": "Connection status of configured chargers.",
"detectedChargers": "Detected station IDs",
"detectedHelp": "These chargers have tried to connect to evcc. To use a charger, create a loadpoint with its station ID.",
"noChargers": "No OCPP chargers detected.",
"noStations": "No stations connected",
"status": {
"configured": "Not connected",
"connected": "Connected",
"unknown": "Unknown"
},
"title": "OCPP Server",
"url": "Server URL",
"urlHelp": "Copy this URL into your charger's configuration. Check the manufacturer's manual for details. The charger is expected to automatically append its unique identifier (station ID) to the url. In rare cases, you may need to manually specify the identifier. Example: `{url}`"
},
"optimizer": {
"description": "Analyzes solar forecast, electricity prices, and your consumption patterns to optimize battery and charging strategy. Data is sent to the evcc optimization service for processing. Currently only calculates and visualizes. Does not control devices yet.",
"enable": "Enable Optimizer",
"info": "It may take a few minutes for the optimizer menu entry to become visible. For new installations, it may take up to 24 hours until evcc has collected enough data.",
"title": "Optimizer"
},
"options": {
"boolean": {
"no": "no",
"yes": "yes"
},
"endianness": {
"big": "big-endian",
"little": "little-endian"
},
"operationMode": {
"heating": "Heating",
"standby": "Standby"
},
"schema": {
"http": "HTTP (unencrypted)",
"https": "HTTPS (encrypted)"
},
"status": {
"A": "A (not connected)",
"B": "B (connected)",
"C": "C (charging)"
}
},
"pv": {
"titleAdd": "Add Solar Meter",
"titleEdit": "Edit Solar Meter"
},
"remote": {
"active": "Active",
"addClient": "Add client",
"addClientDescription": "Credentials are stored and verified only locally on your evcc instance.",
"addClientTitle": "Add Remote Client",
"clientCreated": "Client created",
"clients": "Clients",
"confirmDelete": "Delete client?",
"connected": "Connected",
"createClient": "Create client",
"description": "Access your evcc installation from anywhere using the evcc mobile app. No port forwarding or VPN required.",
"deviceName": "Device name",
"disconnected": "Disconnected",
"done": "Done",
"enableLabel": "Enable remote access",
"expiration": "Expiration",
"expirationNone": "Never",
"expired": "expired",
"expiresIn": "expires {time}",
"lastActive": "active {time}",
"loginBlocked": "Remote logins are blocked for one minute due to too many failed login attempts.",
"manualLogin": "Or sign in manually at {url} in your browser using these credentials:",
"noClients": "No clients yet. No one can connect yet.",
"password": "Password",
"passwordOnce": "This password is shown only once. Scan the QR code or copy it now. You won't be able to see it again.",
"qrInstall": "Install the evcc app for {ios} or {android}.",
"qrScan": "Scan the code with your phone's camera to connect. Click it, if you're already using your phone.",
"removeClient": "Remove client",
"title": "Remote Access",
"url": "Public URL",
"username": "Username"
},
"section": {
"additionalMeter": "Additional meters",
"general": "General",
"grid": "Grid",
"integrations": "Integrations",
"loadpoints": "Charging & Heating",
"meter": "Solar & Battery",
"services": "Services",
"system": "System",
"vehicles": "Vehicles"
},
"shm": {
"cardTitle": "Sunny Home Manager",
"description": "evcc is equipped with integration for the SMA Sunny Home Manager (SHM) via SEMP protocol. If it is running on the same network, after logging into your Sunny Portal account, you should automatically be offered to add all chargers configured in evcc as newly discovered consumers. Everything should be ready to use immediately, without any adjustments required below.",
"descriptionDeviceId": "12 characters HEX string. Prefix for all devices (charging point, ..).",
"descriptionDeviceSerial": "12 characters HEX string. Base serial for all devices (charging point, ..). By default evcc derives this from the MAC address of the host.",
"descriptionIdPattern": "Identifier pattern",
"descriptionIds": "In Sunny Portal every consumer device needs a unique identifier. evcc generates a unique identifier based on your hardware. If you migrate evcc to another hardware these identifiers might change. If you want to maintain history you can override the generated identifiers here. Open the SEMP URL (/semp) to check your current identifiers.",
"descriptionSempUrl": "SEMP URL",
"descriptionVendorId": "8 characters HEX string. General prefix of all entities. By default evcc will use its own internal vendor ID.",
"labelDeviceId": "Device ID",
"labelDeviceSerial": "Device Serial",
"labelVendorId": "Vendor ID",
"title": "SMA Sunny Home Manager"
},
"sponsor": {
"addToken": "Enter token",
"changeToken": "Change token",
"description": "The sponsoring model helps us to maintain the project and sustainably build new and exciting features. As a sponsor you get access to all charger implementations.",
"descriptionToken": "Sponsors find their token on {url}. For getting-started, we offer a {trialToken}.",
"enterYourToken": "Enter your token",
"error": "The sponsor token is not valid.",
"invalid": "invalid",
"labelToken": "Sponsor token",
"title": "Sponsorship",
"tokenRequired": "You must configure a sponsor token before you can create this device.",
"tokenRequiredFeature": "This feature requires a sponsor token.",
"tokenRequiredLearnMore": "Learn more.",
"tokenRequiredShort": "No sponsor token configured.",
"trialToken": "trial token",
"viaYaml": "via evcc.yaml",
"yourToken": "Your token"
},
"system": {
"backupRestore": {
"backup": {
"action": "Download backup...",
"confirmationButton": "Download backup",
"confirmationText": "Download the database file.",
"description": "Backup your data to a file. This file can be used to restore your data in case of a system failure.",
"title": "Backup"
},
"cancel": "Cancel",
"description": "Backup, restore and reset your data. Useful if you want to move your data to another system.",
"note": "Note: All above actions only affect your database data. The evcc.yaml configuration file remains unchanged.",
"reset": {
"action": "Reset...",
"confirmationButton": "Reset & restart",
"confirmationText": "This will permanently delete your selected data. Ensure you've downloaded a backup first.",
"description": "Having problems with configuration and want to start over? Delete all data and start fresh.",
"sessions": "Charging sessions",
"sessionsDescription": "Deletes your charging session history.",
"settings": "Configuration & settings",
"settingsDescription": "Deletes all configured devices, services, plans, caches, etc.",
"title": "Reset"
},
"restore": {
"action": "Restore...",
"confirmationButton": "Restore & restart",
"confirmationText": "This will overwrite your complete database. Ensure you've downloaded a backup first.",
"description": "Restore your data from a backup file. This will overwrite all your current data.",
"labelFile": "Backup file",
"title": "Restore"
},
"title": "Backup & Restore"
},
"logs": "Logs",
"restart": "Restart",
"restartRequiredDescription": "Please restart to see the effect.",
"restartRequiredMessage": "Configuration changed.",
"restartingDescription": "Please wait…",
"restartingMessage": "Restarting evcc."
},
"tariff": {
"addForecast": "Add forecast",
"addTariff": "Add tariff",
"co2": {
"description": "CO₂ intensity forecast for grid electricity. For CO₂-optimized charging and calculating emission savings.",
"titleAdd": "Add CO₂ Forecast",
"titleEdit": "Edit CO₂ Forecast"
},
"co2Services": "CO₂ Services",
"customForecast": "User defined forecast",
"customTariff": "User defined tariff",
"description": "Configure your energy tariffs and forecasts. Use device-based configuration for dynamic management or YAML for static settings.",
"feedIn": {
"description": "Compensation for electricity exported to the grid. Used to calculate actual charging costs.",
"titleAdd": "Add Grid Export Tariff",
"titleEdit": "Edit Grid Export Tariff"
},
"generic": "Generic integrations",
"grid": {
"description": "Electricity price for grid consumption. For calculating actual charging costs and price-optimized charging of vehicles, heating devices, or grid charging your home battery.",
"titleAdd": "Add Grid Import Tariff",
"titleEdit": "Edit Grid Import Tariff"
},
"legacyWarning": "New tariff configuration available! Remove and save your tariffs here to use the new guided process.",
"option": {
"co2": "Add CO₂ forecast",
"feedIn": "Add grid export tariff",
"grid": "Add grid import tariff",
"planner": "Add planner forecast",
"solar": "Add solar forecast"
},
"planner": {
"description": "Advanced setting. Usually not needed as dynamic electricity tariffs or CO₂ forecasts are used automatically. Enables an additional data source that's only used for charge planning, not for statistics and price calculations.",
"titleAdd": "Add Planner Forecast",
"titleEdit": "Edit Planner Forecast"
},
"services": "Services",
"solar": {
"description": "Solar production forecast for your PV system. Displayed in the interface and will be used for optimization algorithms in the future.",
"titleAdd": "Add Solar Forecast",
"titleEdit": "Edit Solar Forecast"
},
"template": "Provider",
"title": "Tariffs & Forecasts",
"titleChoice": "What Do You Want To Add?",
"type": {
"co2": "CO₂ Intensity",
"feedIn": "Grid Export Price",
"grid": "Grid Import Price",
"planner": "Planner",
"solar": "Solar"
},
"zones": {
"add": "Add zone",
"allDays": "All days",
"allMonths": "All months",
"allTimes": "All times",
"cancel": "Cancel",
"days": "Days",
"edit": "Edit",
"hours": "Hours",
"months": "Months",
"price": "Price",
"priceRequired": "Price is required",
"remove": "Remove zone",
"save": "Save",
"selectAll": "All days",
"timeFrom": "From",
"timeRangeError": "Start time must be before end time. To span midnight, create two separate zones.",
"timeTo": "To",
"weekdays": "Weekdays"
}
},
"telemetry": {
"description": "Configure data sharing to help improve evcc. Your privacy is important to us and participation is completely optional.",
"title": "Telemetry"
},
"title": {
"description": "Displayed on main screen and browser tab.",
"label": "Title",
"title": "Edit Title"
},
"validation": {
"failed": "failed",
"label": "Status",
"running": "validating…",
"success": "successful",
"unknown": "unknown",
"validate": "validate"
},
"vehicle": {
"cancel": "Cancel",
"chargingSettings": "Charging settings",
"defaultMode": "Default mode",
"defaultModeHelp": "Charging mode when connecting the vehicle.",
"delete": "Delete",
"generic": "Other integrations",
"identifiers": "RFID identifiers",
"identifiersHelp": "List of RFID strings to identify the vehicle. One entry per line. The current identifier can be found at the respective charging point on the overview page.",
"maximumCurrent": "Maximum current",
"maximumCurrentHelp": "Must be greater than minimum current.",
"maximumPhases": "Maximum phases",
"maximumPhasesHelp": "How many phases can this vehicle charge with? Used to calculate required minimum solar surplus and plan duration.",
"maximumPower": "Maximum charging power",
"maximumPowerHelp": "Maximum power the vehicle can consume",
"minimumCurrent": "Minimum current",
"minimumCurrentHelp": "Only go below 6A if you know what you're doing.",
"online": "Vehicles with online API",
"primary": "Generic integrations",
"priority": "Priority",
"priorityHelp": "Higher priority means this vehicle gets preferred access to solar surplus.",
"save": "Save",
"scooter": "Scooter",
"template": "Manufacturer",
"titleAdd": "Add Vehicle",
"titleEdit": "Edit Vehicle",
"validateSave": "Validate & save"
}
},
"footer": {
"community": {
"greenEnergy": "Solar",
"greenEnergySub1": "charged with evcc",
"greenEnergySub2": "since October 2022",
"greenShare": "Solar share",
"greenShareSub1": "power provided by",
"greenShareSub2": "solar, and battery storage",
"power": "Charging power",
"powerSub1": "{activeClients} of {totalClients} participants",
"powerSub2": "charging…",
"tabTitle": "Live community"
},
"savings": {
"co2Saved": "{value} saved",
"co2Title": "CO₂ Emissons",
"configurePriceCo2": "Learn how to configure price and CO₂ data.",
"footerLong": "{percent} solar energy",
"footerShort": "{percent} solar",
"indicator": {
"co2": "CO₂ emissions",
"co2saved": "CO₂ saved",
"none": "none",
"price": "energy price",
"savings": "savings",
"solar": "solar energy"
},
"indicatorLabel": "Header info",
"modalTitle": "Charge Energy Overview",
"moneySaved": "{value} saved",
"percentGrid": "{grid} kWh grid",
"percentSelf": "{self} kWh solar",
"percentTitle": "Solar Energy",
"period": {
"30d": "last 30 days",
"365d": "last 365 days",
"thisYear": "this year",
"total": "all time"
},
"periodLabel": "Period",
"priceTitle": "Energy Price",
"referenceGrid": "grid",
"referenceLabel": "Reference data",
"sessionInfo": "Based on completed charging sessions.",
"tabTitle": "My data"
},
"sponsor": {
"becomeSponsor": "Become a sponsor",
"becomeSponsorExtended": "Support us directly to get stickers.",
"confetti": "Ready for confetti?",
"confettiPromise": "You get stickers and digital confetti",
"sticker": "… or evcc stickers?",
"supportUs": "Our mission is to make solar charging the norm. Help evcc by paying what it is worth to you.",
"thanks": "Thank you, {sponsor}! Your contribution helps develop evcc further.",
"titleNoSponsor": "Support us",
"titleSponsor": "You are a supporter",
"titleTrial": "Trial mode",
"titleVictron": "Sponsored by Victron Energy",
"trial": "You are in trial mode and can use all features. Please consider supporting the project.",
"victron": "You're using evcc on Victron Energy hardware and have access to all features."
},
"telemetry": {
"optIn": "I want to contribute my data.",
"optInMoreDetails": "More details {0}.",
"optInMoreDetailsLink": "here",
"optInSponsorship": "Sponsoring required."
},
"version": {
"availableLong": "new version available",
"community": "evcc community",
"labelRelease": "Release",
"labelVersion": "Version",
"labelWebsite": "Website",
"latestVersion": "latest version",
"madeByCommunity": "Made by the {0}.",
"modalCancel": "Cancel",
"modalDownload": "Download",
"modalInstalledVersion": "Installed version",
"modalLatest": "You're running the latest version.",
"modalNextRelease": "What's in the next release",
"modalNoReleaseNotes": "No release notes available. More info about the new version:",
"modalTitle": "New version available",
"modalUpdate": "Install",
"modalUpdateNow": "Install now",
"modalUpdateStarted": "Starting the new version of evcc…",
"modalUpdateStatusStart": "Installation started:",
"modalViewOnGitHub": "View on GitHub",
"openSource": "open source",
"poweredByOpenSource": "Powered by {0}."
}
},
"forecast": {
"co2": {
"average": "Average",
"constant": "CO₂ intensity",
"lowestHour": "Cleanest hour",
"range": "Range"
},
"empty": {
"co2": "See when grid energy in your region is clean. Charging plans will optimize for low emissions and calculate CO₂ savings.",
"price": "Configure your dynamic electricity tariff to automatically optimize charging plans and calculate savings.",
"setup": "Set up tariffs and forecasts",
"solar": "See expected solar production for today and the coming days. Will also be used for automatic charging optimization in the future."
},
"hideLine": "hide line",
"modalTitle": "Forecast",
"price": {
"average": "Average",
"constant": "Price",
"lowestHour": "Cheapest hour",
"range": "Range"
},
"priceZoom": "zoom in",
"showLine": "show line",
"solar": {
"dayAfterTomorrow": "Day after tomorrow",
"partly": "partly",
"remaining": "remaining",
"today": "Today",
"tomorrow": "Tomorrow"
},
"solarAdjust": "Adjust solar forecast based on real production data{percent}.",
"solarAdjustMedium": "real data adjust",
"solarAdjustShort": "adjust",
"type": {
"co2": "CO₂ Emissions",
"price": "Grid Price",
"solar": "Solar Production"
}