forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
1198 lines (1198 loc) · 47.2 KB
/
en.json
File metadata and controls
1198 lines (1198 loc) · 47.2 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
{
"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",
"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",
"ocppHelp": "Copy this address into your chargers configuration.",
"ocppLabel": "OCPP-Server URL",
"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": "Control loop update cycle in seconds. Defines how often evcc reads meter data, adjusts charging power and updates the UI. Short intervals (< 30s) can cause oscillations and unwanted behavior.",
"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"
},
"deviceValue": {
"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",
"controllable": "Controllable",
"currency": "Currency",
"current": "Current",
"currentRange": "Current",
"dimmed": "Dimmed",
"enabled": "Enabled",
"energy": "Energy",
"feedinPrice": "Feed-in price",
"gridPrice": "Grid price",
"heaterTempLimit": "Heater limit",
"hemsActiveLimit": "Active limit",
"hemsType": "Communication",
"identifier": "RFID-Identifier",
"no": "no",
"odometer": "Odometer",
"org": "Organization",
"phaseCurrents": "Current L1, L2, L3",
"phasePowers": "Power L1, L2, L3",
"phaseVoltages": "Voltage L1, L2, L3",
"phases1p3p": "Phase switch",
"power": "Power",
"powerRange": "Power",
"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": {
"description": "Configuration that enables evcc to communicate with other EEBus devices.",
"title": "EEBus"
},
"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",
"cancel": "Cancel",
"close": "Close",
"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",
"experimental": "Experimental",
"forceSave": "Save anyway",
"hideAdvancedSettings": "Hide advanced settings",
"invalidFileSelected": "Invalid file selected",
"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": {
"description": "Power limitation by external systems (e.g. EnWG 14a controllers). Requires load management configuration.",
"title": "HEMS"
},
"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.",
"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",
"delete": "Delete",
"electricalSubtitle": "When in doubt, ask your electrician.",
"electricalTitle": "Electrical",
"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",
"showAllSettings": "Show all settings",
"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.",
"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",
"yaml": "Devices from evcc.yaml are not editable."
},
"messaging": {
"description": "Receive messages about your charging sessions.",
"title": "Notifications"
},
"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 to evcc via a RS485 interface.",
"connectionHintTcpip": "The device is addressable from evcc via LAN/Wifi.",
"connectionValueSerial": "Serial / USB",
"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": {
"description": "Allow multiple clients to access a single Modbus device.",
"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": {
"descriptionHost": "Use .local suffix to enable mDNS. Relevant for discovery of the mobile app and some OCPP chargers.",
"descriptionPort": "Port for the web interface and API. You'll need to update your browser URL if you change this.",
"descriptionSchema": "Only affects how URLs are generated. Selecting HTTPS will not enable encryption.",
"labelHost": "Hostname",
"labelPort": "Port",
"labelSchema": "Schema",
"title": "Network"
},
"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"
},
"section": {
"additionalMeter": "Additional meters",
"general": "General",
"grid": "Grid",
"integrations": "Integrations",
"loadpoints": "Charging & Heating",
"meter": "Solar & Battery",
"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, ..).",
"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",
"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.",
"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": "Please enter your password to 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."
},
"tariffs": {
"description": "Define your energy tariffs to calculate the costs of your charging sessions.",
"title": "Tariffs"
},
"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.",
"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",
"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:",
"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",
"modalCancel": "Cancel",
"modalDownload": "Download",
"modalInstalledVersion": "Installed version",
"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:"
}
},
"forecast": {
"co2": {
"average": "Average",
"lowestHour": "Cleanest hour",
"range": "Range"
},
"modalTitle": "Forecast",
"price": {
"average": "Average",
"lowestHour": "Cheapest hour",
"range": "Range"
},
"solar": {
"dayAfterTomorrow": "Day after tomorrow",
"partly": "partly",
"remaining": "remaining",
"today": "Today",
"tomorrow": "Tomorrow"
},
"solarAdjust": "Adjust solar forecast based on real production data{percent}.",
"type": {
"co2": "CO₂",
"price": "Price",
"solar": "Solar"
}
},
"header": {
"about": "About",
"authProviders": {
"confirmLogout": "Are you sure you want to disconnect {title}?",
"loggedOut": "Successfully logged out",
"title": "Authorization Status"
},
"blog": "Blog",
"docs": "Documentation",
"github": "GitHub",
"logout": "Logout",
"nativeSettings": "Change Server",
"needHelp": "Need Help?",
"sessions": "Charging Sessions"
},
"help": {
"discussionsButton": "GitHub discussions",
"documentationButton": "Documentation",
"issueButton": "Report a problem",
"issueDescription": "Found a strange or wrong behavior?",
"logsButton": "View logs",
"logsDescription": "Check the logs for errors.",
"modalTitle": "Need help?",
"primaryActions": "Something does not work the way it supposed to do? These are good places to get help.",
"restart": {
"cancel": "Cancel",
"confirm": "Yes, restart!",
"description": "Under normal circumstances restarting should not be necessary. Please consider filing a bug if you need to restart evcc on a regular basis.",
"disclaimer": "Note: evcc will terminate and rely on the operating system to restart the service.",
"modalTitle": "Are you sure you want to restart?"
},
"restartButton": "Restart",
"restartDescription": "Tried turning it off and on again?",
"secondaryActions": "Still not able to solve your problem? Here are some more heavy-handed options."
},
"issue": {
"additional": {
"description": "Include configuration and logs to help us reproduce the issue quickly. We encourage sharing as much as possible. State is usually not needed.",
"include": "include",
"lines": "lines",
"logs": "Logs",
"logsDescription": "Recent log entries that may help identify the issue.",
"showDetails": "show details",
"source": "Source",
"state": "State",
"stateDescription": "Complete runtime state including charging point, device, and energy information. Include only if requested.",
"title": "Additional Information",
"uiConfig": "Configuration (UI)",
"uiConfigDescription": "Configuration settings made through the web interface.",
"yamlConfig": "Configuration (YAML)",
"yamlConfigDescription": "Your complete configuration file."
},
"additionalContext": "Additional context",
"additionalContextPlaceholder": "Any additional information that might be helpful...\n- Configuration details\n- What you tried\n- Environment details",
"createButtonDiscussion": "Start GitHub Discussion...",
"createButtonIssue": "Create GitHub Issue...",
"description": "Your installation is not working as expected? Use this page to get help or report issues. Provide enough detail to help us understand and reproduce the problem, while keeping your description concise, clear and easy to follow.",
"helpType": {
"discussion": "Need help with my setup",
"discussionDescription": "Community discussions provide answers.",
"issue": "Found a bug",
"issueDescription": "I'm certain something is broken and needs to be fixed.",
"title": "What problem are we talking about?"
},
"issueDescription": "Description",
"issueTitle": "Title",
"stepsToReproduce": "Steps to reproduce",
"subTitleDiscussion": "Describe your problem",
"subTitleIssue": "Describe the issue",
"summary": {
"confirmationButtonDiscussion": "Start GitHub Discussion",
"confirmationButtonIssue": "Create GitHub Issue",
"copied": "Copied!",
"copyButton": "Copy additional information",
"instructions": "Due to GitHub's URL size limitations, this is a two-step process:",
"singleStepDescription": "Click the button below to open GitHub with a pre-filled form containing your problem details. Sensitive data has been automatically redacted, but please double-check before sharing.",
"step1Description": "Click the button below to create a basic GitHub entry with your title, description, and details.",
"step2Description": "After creating the entry, return here to copy the additional information below and paste it into your GitHub form. Sensitive data has been redacted, but please double-check before sharing.",
"stepOneDiscussion": "Step 1: Create basic discussion",
"stepOneIssue": "Step 1: Create basic issue",
"stepTwo": "Step 2: Copy additional information",
"title": "GitHub Problem Summary"
},
"title": "Report a problem",
"version": "Version"
},
"log": {
"areaLabel": "Filter by area",
"areas": "All areas",
"download": "Download complete log",
"levelLabel": "Filter by log level",
"nAreas": "{count} areas",
"noResults": "No matching log entries.",
"search": "Search",
"selectAll": "select all",
"showAll": "Show all entries",
"title": "Logs",
"update": "Auto update"
},
"loginModal": {
"cancel": "Cancel",
"demoMode": "Login is not supported in demo mode.",
"iframeHint": "Open evcc in a new tab.",
"iframeIssue": "Your password is correct, but your browser seems to have dropped the authentication cookie. This can happen if you run evcc in an iframe via HTTP.",
"invalid": "Password is invalid.",
"login": "Login",
"password": "Administrator Password",
"reset": "Reset password?",
"title": "Authentication"
},
"main": {
"chargingPlan": {
"active": "Active",
"addRepeatingPlan": "Add repeating plan",
"arrivalTab": "Arrival",
"day": "Day",
"departureTab": "Departure",
"goal": "Charging goal",
"modalTitle": "Charging Plan",
"none": "none",
"planNumber": "Plan {number}",
"preconditionDescription": "Charge {duration} before departure for battery preconditioning.",
"preconditionLong": "Late Charging",
"preconditionOptionAll": "everything",
"preconditionOptionNo": "no",
"preconditionShort": "Late",
"remove": "Remove",
"repeating": "repeating",
"repeatingPlans": "Repeating plans",
"selectAll": "Select all",
"time": "Time",
"title": "Plan",
"titleMinSoc": "Min charge",
"titleTargetCharge": "Departure",
"unsavedChanges": "There are unsaved changes. Apply now?",
"update": "Apply",
"weekdays": "Days"
},
"energyflow": {
"battery": "Battery",
"batteryCharge": "Battery charging",
"batteryDischarge": "Battery discharging",
"batteryGridChargeActive": "grid charging active",
"batteryGridChargeLimit": "grid charging when",
"batteryHold": "Battery (locked)",
"batteryTooltip": "{energy} of {total} ({soc})",
"forecastTooltip": "forecast: remaining solar production today",
"gridImport": "Grid use",
"homePower": "Consumption",
"loadpoints": "Charger| Charger | {count} chargers",
"loadpointsLimit": "{limit} limit",
"noEnergy": "No meter data",
"pv": "Solar system",
"pvExport": "Grid export",
"pvProduction": "Production",
"selfConsumption": "Self-consumption"
},
"heatingStatus": {
"charging": "Heating…",
"connected": "Standby.",
"vehicleLimit": "Heater limit",
"waitForVehicle": "Ready. Waiting for heater…"
},
"hemsWarning": {
"description": "Reduced charging to not exceed {limit}.",
"title": "External limit:"
},
"loadpoint": {
"avgPrice": "⌀ Price",
"charged": "Charged",
"co2": "⌀ CO₂",
"duration": "Duration",
"fallbackName": "Charging point",
"finished": "Finish time",
"power": "Power",
"price": "Cost",
"remaining": "Remaining",
"remoteDisabledHard": "{source}: turned off",
"remoteDisabledSoft": "{source}: turned off adaptive solar-charging",
"solar": "Solar"
},
"loadpointSettings": {
"batteryBoost": {
"description": "Fast charge from home battery.",
"label": "Battery Boost",
"mode": "Only available in solar and min+solar mode.",
"once": "Boost active for this charging session."
},
"batteryUsage": "Home Battery",
"currents": "Charging Current",
"default": "default",
"disclaimerHint": "Note:",
"limitSoc": {
"description": "Charging limit that is used when this vehicle is connected.",
"label": "Default limit"
},
"maxCurrent": {
"label": "Max. Current"
},
"minCurrent": {
"label": "Min. Current"
},
"minSoc": {
"description": "The vehicle gets „fast” charged to {0} in solar mode. Then continues with solar surplus. Useful to ensure a minimum range even for darker days.",
"label": "Min. charge %"
},
"onlyForSocBasedCharging": "These options are only available for vehicles with known charging level.",
"phasesConfigured": {
"label": "Phases",
"no1p3pSupport": "How is your charger connected?",
"phases_0": "auto-switching",
"phases_1": "1 phase",
"phases_1_hint": "({min} to {max})",
"phases_3": "3 phase",
"phases_3_hint": "({min} to {max})"
},
"smartCostCheap": "Cheap Grid Charging",
"smartCostClean": "Clean Grid Charging",
"title": "Settings {0}",
"vehicle": "Vehicle"
},
"mode": {
"minpv": "Min+Solar",
"now": "Fast",
"off": "Off",
"pv": "Solar",
"smart": "Smart"
},
"provider": {
"login": "log in",
"logout": "log out"
},
"startConfiguration": "Let's start configuration",
"targetCharge": {
"activate": "Activate",
"co2Limit": "CO₂ limit of {co2}",
"costLimitIgnore": "The configured {limit} will be ignored during this period.",
"currentPlan": "Active plan",
"descriptionEnergy": "Until when should {targetEnergy} be loaded into the vehicle?",
"descriptionSoc": "When should the vehicle be charged to {targetSoc}?",
"goalReached": "Goal already reached",
"inactiveLabel": "Target time",
"nextPlan": "Next plan",
"notReachableInTime": "Goal will be reached {overrun} later.",
"onlyInPvMode": "Charging plan only works in solar mode.",
"planDuration": "Charging time",
"planPeriodLabel": "Period",
"planPeriodValue": "{start} to {end}",
"planUnknown": "not known yet",
"preview": "Preview plan",
"priceLimit": "price limit of {price}",
"remove": "Remove",
"setTargetTime": "none",
"targetIsAboveLimit": "The configured charging limit of {limit} will be ignored during this period.",
"targetIsAboveVehicleLimit": "Vehicle limit is below charging goal.",
"targetIsInThePast": "Pick a time in the future, Marty.",
"targetIsTooFarInTheFuture": "We will adjust the plan as soon as we know more about the future.",
"title": "Target Time",
"today": "today",
"tomorrow": "tomorrow",
"update": "Update",
"vehicleCapacityDocs": "Learn how to configure it.",
"vehicleCapacityRequired": "The vehicle battery capacity is required to estimate the charging time."
},
"targetChargePlan": {
"chargeDuration": "Charging time",
"co2Label": "CO₂ emission ⌀",
"priceLabel": "Energy price",
"timeRange": "{day} {range} h",
"unknownPrice": "still unknown"
},
"targetEnergy": {
"label": "Limit",
"noLimit": "none"
},
"vehicle": {
"addVehicle": "Add vehicle",
"changeVehicle": "Change vehicle",
"detectionActive": "Detecting vehicle…",
"fallbackName": "Vehicle",
"moreActions": "More actions",
"none": "No vehicle",
"notReachable": "Vehicle was not reachable. Try restarting evcc.",
"targetSoc": "Limit",
"temp": "Temp.",
"tempLimit": "Temp. limit",
"unknown": "Guest vehicle",
"vehicleSoc": "Charge"
},
"vehicleStatus": {
"awaitingAuthorization": "Waiting for authorization.",
"batteryBoost": "Battery boost active.",
"charging": "Charging…",
"cheapEnergyCharging": "Cheap energy available.",
"cheapEnergyNextStart": "Cheap energy in {duration}.",
"cheapEnergySet": "Price limit set.",
"cleanEnergyCharging": "Clean energy available.",
"cleanEnergyNextStart": "Clean energy in {duration}.",
"cleanEnergySet": "CO₂ limit set.",
"climating": "Pre-conditioning detected.",
"connected": "Connected.",
"disconnectRequired": "Session terminated. Please reconnect.",
"disconnected": "Disconnected.",
"feedinPriorityNextStart": "High feed-in rates start in {duration}.",
"feedinPriorityPausing": "Solar charging paused to maximize feed-in.",
"finished": "Finished.",
"minCharge": "Minimum charging to {soc}.",
"pvDisable": "Not enough surplus. Pausing soon.",
"pvEnable": "Surplus available. Starting soon.",
"scale1p": "Reducing to 1-phase charging soon.",
"scale3p": "Increasing to 3-phase charging soon.",
"targetChargeActive": "Charging plan active. Estimated finish in {duration}.",
"targetChargePlanned": "Charging plan starts in {duration}.",
"targetChargeWaitForVehicle": "Charging plan ready. Waiting for vehicle…",
"vehicleLimit": "Vehicle limit",
"vehicleLimitReached": "Vehicle limit reached.",
"waitForVehicle": "Ready. Waiting for vehicle…",
"welcome": "Short initial charge to confirm connection."
},
"vehicles": "Parking",
"welcome": "Hello aboard!"
},
"notifications": {
"dismissAll": "Dismiss all",
"logs": "View full logs",
"modalTitle": "Notifications"
},
"offline": {
"configurationError": "Error during startup. Check your configuration and restart.",
"message": "Not connected to a server.",