-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathen.json
2463 lines (2463 loc) · 143 KB
/
en.json
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
{
"accountAlreadyExists": "Account already exists",
"accountNotFound": "Account not found",
"activated": "Activated",
"activateTessie": "Activate Tessie",
"activity": "Activity",
"addCostsAndAnalytics": "Add costs and analytics",
"alerts": "Alerts",
"allFeaturesHaveBeenActivatedAndYouCanNowAccess": "All features have been activated and you can now access your Tesla live at tessie.com",
"alreadyPurchasedSignInToTessieUsingTheCorrectEmail": "Already purchased. Sign in to Tessie using the correct email address. Contact [email protected] for help.",
"anAccountWithThatEmailAddressAlreadyExists": "An account with that email address already exists.",
"and": "and",
"annual": "Annual",
"anonymousErrorPleaseContactSupporttessiecom": "Anonymous error. Please contact [email protected].",
"appAndAccountSettings": "App and account settings",
"archiveVehiclesOrUpgradeToFleetManagement": "Archive vehicles or upgrade to fleet management",
"areYouSure": "Are you sure?",
"authorizeWithTesla": "Authorize with Tesla",
"authorizeYourTeslaAccountSoTessieCanCommunicateWithYour": "Authorize your Tesla account so Tessie can communicate with your vehicle",
"automaticTracking": "Automatic tracking",
"automation": "Automation",
"back": "Back",
"battery": "Battery",
"bioweaponDefense": "Bioweapon Defense",
"boringSoftwareLegality": "Boring software legality",
"bySigningUpYouAgreeTo": "By signing up, you agree to:",
"campMode": "Camp Mode",
"cancel": "Cancel",
"cancelAnytime": "Cancel anytime.",
"changeToMonthly": "Change to Monthly",
"charges": "Charges",
"charging": "Charging",
"checkYourInternetConnectionAndTryAgain": "Check your internet connection and try again",
"climate": "Climate",
"codeIsIncorrectOrExpired": "Code is incorrect or expired.",
"codeSentSuccessfully": "Code sent successfully",
"configurationErrorPleaseContactSupporttessiecom": "Configuration error. Please contact [email protected].",
"confirm": "Confirm",
"connect": "Connect",
"connectionErrorCheckYourConnectionAndTryAgain": "Connection error. Check your connection and try again.",
"connectionErrorPleaseTryAgainLater": "Connection error. Please try again later",
"connectToWifiToDownload": "Connect to Wi-Fi to download",
"connectYourTesla": "Connect your Tesla",
"connectYourTeslaAccountToContinue": "Connect your Tesla account to continue",
"contactSales": "Contact sales",
"contactSupport": "Contact support",
"continueTitle": "Continue",
"copiedLabel": "Copied {label}",
"costProjections": "Cost projections",
"createAccount": "Create account",
"createAnAccount": "Create an account",
"customerInfoErrorPleaseContactSupporttessiecom": "Customer info error. Please contact [email protected].",
"dailyPricePerDayBilledAtMonthlyPricePerMonth": "{dailyPrice} per day, billed at {monthlyPrice}/month",
"dailyPricePerDayBilledAtMonthlyPricePerYear": "{dailyPrice} per day, billed at {monthlyPrice}/year",
"dialog": "Dialog",
"dismiss": "Dismiss",
"dogMode": "Dog Mode",
"downloadingVersionPercent": "Downloading {version} ({percent}%)",
"driverWindowOpen": "Driver window open",
"drives": "Drives",
"driving": "Driving",
"efficiencyAndRetentionData": "Efficiency and retention data",
"email": "Email",
"emptySubscriberAttributesPleaseContactSupporttessiecom": "Empty subscriber attributes. Please contact [email protected].",
"enable": "Enable",
"errorSyncingVehicles": "Error syncing vehicles",
"errorValidatingEmailAddress": "Error validating email address.",
"expiresInDuration": "Expires in {duration}",
"findABugLetUsKnowSoWeCanFix": "Find a bug? Let us know so we can fix it!",
"fleetStats": "Fleet Stats",
"fleetView": "Fleet view",
"frontLeftDoorOpen": "Front left door open",
"frontRightDoorOpen": "Front right door open",
"frontTrunkOpen": "Front trunk open",
"garage": "Garage",
"getInTouchWithARealPerson": "Get in touch with a real person",
"gettingVehiclesFromTesla": "Getting vehicles from Tesla",
"goBack": "Go back",
"goBackAndTryAgain": "Go back and try again",
"goHome": "Go home",
"guidesAndFaqs": "Guides and FAQs",
"guidesFaqsAndSupport": "Guides, FAQs and support",
"happinessGuaranteed": "Happiness guaranteed.",
"help": "Help",
"helpCenter": "Help Center",
"helpForRealLife": "Help for real life",
"idles": "Idles",
"idling": "Idling",
"ineligibleForPurchase": "Ineligible for purchase.",
"installingInTime": "Installing in {time}",
"installingVersionPercent": "Installing {version} ({percent}%)",
"insufficientPermissions": "Insufficient permissions",
"insufficientPermissionsPeriod": "Insufficient permissions.",
"invalidAppleSubscriptionKey": "Invalid Apple subscription key.",
"invalidCredentials": "Invalid credentials.",
"invalidEmail": "Invalid email",
"invalidPromotionalOfferPleaseContactSupporttessiecom": "Invalid promotional offer. Please contact [email protected].",
"invalidPurchase": "Invalid purchase.",
"invalidReceiptPleaseContactSupporttessiecom": "Invalid receipt. Please contact [email protected].",
"invalidSubscriberAttributes": "Invalid subscriber attributes.",
"invalidUserId": "Invalid user ID.",
"invalidVerificationCode": "Invalid verification code",
"inviteOthers": "Invite others",
"iUnderstand": "I understand",
"letUsKnow": "Let us know",
"letUsKnowHowToMakeTessieBetter": "Let us know how to make Tessie better",
"lifetime": "Lifetime",
"lookingForFleetManagement": "Looking for fleet management?",
"managePermissions": "Manage permissions",
"manageTeslaAccount": "Manage Tesla account",
"manageVehicles": "Manage vehicles",
"missingIdentifierForDiscountPleaseContactSupporttessiecom": "Missing identifier for discount. Please contact [email protected].",
"missingSubscriptionGroupIdentifierPleaseContactSupporttessiecom": "Missing subscription group identifier. Please contact [email protected].",
"monthly": "Monthly",
"networkEndpointUnreachableCheckYourConnectionAndTryAgain": "Network endpoint unreachable. Check your connection and try again.",
"next": "Next",
"noAccountExistsWithThatEmailAddress": "No account exists with that email address.",
"noActiveVehicles": "No active vehicles",
"noActiveVehiclesWereFoundInYourTeslaAccount": "No active vehicles were found in your Tesla account.",
"noExistingPurchaseFound": "No existing purchase found.",
"noSubscriptionFoundContactSupporttessiecomForHelp": "No subscription found. Contact [email protected] for help.",
"noVehiclesFound": "No vehicles found",
"off": "Off",
"on": "On",
"openGarage": "Open Garage",
"pageNotFound": "Page not found",
"serviceUnavailable": "Service unavailable",
"internalServerError": "Internal server error",
"missingRequiredParameters": "Missing required parameters",
"invalidState": "Invalid state",
"accessTokenRequired": "Access token required",
"invalidAccessToken": "Invalid access token",
"parked": "Parked",
"passengerWindowOpen": "Passenger window open",
"paymentIsPending": "Payment is pending.",
"perVehiclePerMonth": "per vehicle per month",
"pleaseEnterAValidEmailAddress": "Please enter a valid email address.",
"pleaseGoBackAndTryAgain": "Please go back and try again.",
"priceOff": "{price} off",
"privacy": "Privacy",
"privacyPolicy": "Privacy Policy",
"problemDetected": "Problem detected",
"productNotAvailablePleaseContactSupporttessiecom": "Product not available. Please contact [email protected].",
"productRequestTimeoutCheckYourConnectionAndTryAgain": "Product request timeout. Check your connection and try again.",
"purchase": "Purchase",
"purchaseAlreadyInProgress": "Purchase already in progress.",
"purchaseBelongsToADifferentAccountSignInUsingYour": "Purchase belongs to a different account. Sign in using your original Tessie email. If you forgot it, contact [email protected] for help.",
"purchaseInUseByAnotherAccountSignInToTessie": "Purchase in use by another account. Sign in to Tessie using the correct email address.",
"purchaseNotAllowed": "Purchase not allowed.",
"rateTessie": "Rate Tessie",
"rearDriverWindowOpen": "Rear driver window open",
"rearLeftDoorOpen": "Rear left door open",
"rearPassengerWindowOpen": "Rear passenger window open",
"rearRightDoorOpen": "Rear right door open",
"rearTrunkOpen": "Rear trunk open",
"referrals": "Referrals",
"removePermissions": "Remove permissions",
"reportIssue": "Report issue",
"requestFeature": "Request feature",
"resendCode": "Resend code",
"restorePurchases": "Restore Purchases",
"retry": "Retry",
"reviewOurUnparalleledDataPolicy": "Review our unparalleled data policy",
"savedLocations": "Saved locations",
"saveMoney": "Save money",
"schedule": "Schedule",
"scheduled": "Scheduled",
"scheduledForTime": "Scheduled for {time}",
"seeAllVehiclesAtOnce": "See all vehicles at once",
"seeAnalysisAndSavings": "See analysis and savings",
"seeTheLatestReleaseNotes": "See the latest release notes",
"seeWhatsIncluded": "See what's included",
"sentryMode": "Sentry Mode",
"setPlate": "Set plate",
"settings": "Settings",
"shareYourLoveAndHelpTessieThrive": "Share your love and help Tessie thrive",
"signIn": "Sign in",
"signInTitle": "Sign In",
"signOut": "Sign out",
"skip": "Skip",
"sleeping": "Sleeping",
"softwareUpdate": "Software update",
"someEmailProvidersDontSupportSecurityCodesIfYoureNot": "Some email providers don't support security codes. If you're not receiving an email, check your spam folder or use a different email address.",
"somethingWentWrong": "Something went wrong",
"somethingWentWrongYouCanFixThisUnderSettingsConnectivity": "Something went wrong. You can fix this under Settings > Connectivity.",
"started": "Started",
"startFreeTrial": "Start free trial",
"subscribe": "Subscribe",
"subscriptionsArentSupportedOnThisDeviceVisitTessiecomOnYour": "Subscriptions aren't supported on this device. Visit tessie.com on your desktop to subscribe.",
"sunroofOpen": "Sunroof open",
"switchToSignIn": "Switch to sign in",
"syncedOneVehicleFromYourTeslaAccount": "Synced 1 vehicle from your Tesla account",
"syncedSomeVehiclesFromYourTeslaAccount": "Synced {count} vehicles from your Tesla account",
"syncingVehicles": "Syncing vehicles",
"syncSuccessful": "Sync successful",
"syncVehiclesWithTesla": "Sync vehicles with Tesla",
"systemInfoErrorPleaseContactSupporttessiecom": "System info error. Please contact [email protected].",
"systemStatus": "System status",
"terms": "Terms",
"teslaAndTessieNetworkStatus": "Tesla and Tessie network status",
"tessieIsNowTrackingYourTesla": "Tessie is now tracking your Tesla",
"thatTokenIsInvalid": "That token is invalid.",
"theBestCarBetter": "The best car, better",
"thereWasAnUnknownError": "There was an unknown error",
"theStoreHadAProblemWithTheRequest": "The store had a problem with the request.",
"theVehicleChargingManagementPermissionIsRequiredForSuperchargingCosts": "The Vehicle Charging Management permission is required for Supercharging costs and charging controls. You can fix this under Settings > Connectivity.",
"theVehicleCommandsPermissionIsRequiredForControlsYouCan": "The Vehicle Commands permission is required for controls. You can fix this under Settings > Connectivity.",
"theVehicleInformationPermissionIsRequired": "The Vehicle Information permission is required.",
"theVehicleInformationPermissionIsRequiredRemoveTessiesPermissionsAnd": "The Vehicle Information permission is required. Remove Tessie's permissions and reconnect your Tesla account.",
"theVehicleInformationPermissionIsRequiredYouCanFixThis": "The Vehicle Information permission is required. You can fix this under Settings > Connectivity.",
"tires": "Tires",
"tooManyAttempts": "Too many attempts",
"tooManyRequestsPleaseTryAgainIn15Minutes": "Too many requests. Please try again in 15 minutes.",
"tryFreeSubscribe": "Try free & subscribe",
"unableToBeginRefundRequestPleaseContactSupporttessiecom": "Unable to begin refund request. Please contact [email protected].",
"unableToConnectIfThisErrorPersistsDisableAnyAd": "Unable to connect. If this error persists, disable any ad blocker, VPN or firewall, then close the app and try again.",
"unableToConnectToGooglePlay": "Unable to connect to Google Play.",
"unableToConnectToTheAppStore": "Unable to connect to the App Store.",
"unableToLoad": "Unable to load",
"unableToLoadPeriod": "Unable to load.",
"unableToLoadCheckYourInternetConnection": "Unable to load. Check your internet connection.",
"unableToLoadVehicles": "Unable to load vehicles",
"unableToPurchase": "Unable to purchase",
"unableToRestore": "Unable to restore",
"unableToSignIn": "Unable to sign in",
"unableToSignUp": "Unable to sign up",
"unableToSyncVehicles": "Unable to sync vehicles",
"unexpectedResponse": "Unexpected response.",
"unknown": "Unknown",
"unknownBackendErrorPleaseTryAgain": "Unknown backend error. Please try again.",
"unknownErrorContactSupporttessiecomForHelp": "Unknown error. Contact [email protected] for help.",
"unknownNonnativeErrorPleaseContactSupporttessiecom": "Unknown non-native error. Please contact [email protected].",
"unsupportedPleaseContactSupporttessiecom": "Unsupported. Please contact [email protected].",
"upgradeRequired": "Upgrade required",
"upgradeToAnnual": "Upgrade to annual",
"upgradeToFleetManagement": "Upgrade to Fleet Management",
"upgradeToLifetime": "Upgrade to lifetime",
"upgradeYourTesla": "Upgrade your Tesla",
"upgradeYourTeslaTryItFreeFor14Days": "Upgrade your Tesla. Try it free for 14 days.",
"valetMode": "Valet Mode",
"vehiclesSynced": "Vehicles synced",
"verification": "Verification",
"verificationExpired": "Verification expired",
"versionIsReadyToInstall": "{version} is ready to install",
"vin": "VIN",
"weCouldntFindAnyVehiclesInYourAccount": "We couldn't find any vehicles in your account",
"welcomeToTessie": "Welcome to Tessie",
"wellSendYouAVerificationCode": "We'll send you a verification code",
"wellTakeYouToYourTeslaAccountDashboardSoYou": "We'll take you to your Tesla account dashboard so you can remove Tessie's access.",
"weReceivedATeslaNetworkErrorPleaseTryAgainLater": "We received a Tesla network error. Please try again later.",
"weveSentACodeToEmail": "We've sent a code to {email}",
"whatsNew": "What's new",
"youCanTryAgainIn15Minutes": "You can try again in 15 minutes.",
"youWillNeedToCancelAnyExistingSubscriptionThroughApple": "You will need to cancel any existing subscription through Apple or Google.",
"success": "Success",
"deviceLogsUploaded": "Device logs uploaded.",
"unableToUploadLogs": "Unable to upload logs",
"checkYourConnectionAndTryAgain": "Check your connection and try again.",
"account": "Account",
"changeEmail": "Change email",
"thisWillUploadDeviceLogsToAssistWithSupport": "This will upload device logs to assist with support.",
"uploadSupportLogs": "Upload support logs",
"upload": "Upload",
"deleteAccount": "Delete account",
"deleteAccountTitle": "Delete Account",
"enterAnAddress": "Enter an address",
"searchForAPlaceToGetStarted": "Search for a place to get started",
"noResults": "No results",
"addLocation": "Add location",
"unableToSync": "Unable to sync",
"havingTroubleRestartYourWatchAndPhoneThenInstallAny": "Having trouble? Restart your watch and phone, then install any pending software updates.",
"connected": "Connected",
"appInstalled": "App installed",
"linkSentToWatch": "Link sent to watch",
"unableToSendLinkToWatch": "Unable to send link to watch",
"tryReconnectingYourWatchToYourPhone": "Try reconnecting your watch to your phone.",
"openPlayStoreOnWatch": "Open Play Store on watch",
"syncWithWatch": "Sync with watch",
"yes": "Yes",
"no": "No",
"paired": "Paired",
"appOpen": "App Open",
"syncWithAppleWatch": "Sync with Apple Watch",
"unableToChangeEmail": "Unable to change email",
"theDemoAccountCantBeChanged": "The demo account can't be changed.",
"yourAccountIsAlreadyUsingThisEmail": "Your account is already using this email.",
"emailAddressBelongsToAnotherAccount": "Email address belongs to another account.",
"networkErrorPleaseTryAgain": "Network error. Please try again.",
"emailUpdated": "Email updated",
"yourEmailWasUpdatedSuccessfully": "Your email was updated successfully!",
"wellSendAVerificationCodeToTheNewAddress": "We'll send a verification code to the new address.",
"authorize": "Authorize",
"useLegacyConnectivity": "Use legacy connectivity",
"invalidUrl": "Invalid URL",
"vehicleTrackingAlertsAndAutomationsWillStop": "Vehicle tracking, alerts and automations will stop.",
"disable": "Disable",
"theVehicleInformationPermissionIsRequiredToSyncVehicleData": "The Vehicle Information permission is required to sync vehicle data.",
"switchTeslaAccount": "Switch Tesla account",
"signOutOfTeslacomInYourBrowserThenPressContinue": "Sign out of tesla.com in your browser then press Continue to sign in.",
"afterSigningInPressSyncToSyncYourVehicles": "After signing in, press Sync to sync your vehicles.",
"syncedVehiclesFromTeslaAccount": "Synced vehicles from Tesla account.",
"none": "None",
"nextgen": "Next-Gen",
"legacy": "Legacy",
"connectivity": "Connectivity",
"teslaAccount": "Tesla Account",
"upgradeToNextgen": "Upgrade to Next-Gen",
"switchTitle": "Switch",
"connection": "Connection",
"vehicles": "Vehicles",
"sync": "Sync",
"active": "Active",
"archived": "Archived",
"permissions": "Permissions",
"changePermissions": "Change permissions",
"change": "Change",
"vehicleInformation": "Vehicle Information",
"vehicleCommands": "Vehicle Commands",
"vehicleChargingManagement": "Vehicle Charging Management",
"vehicleTracking": "Vehicle Tracking",
"status": "Status",
"telemetryMethod": "Telemetry Method",
"polling": "Polling",
"pollingInterval": "Polling interval",
"tenSeconds": "10 seconds",
"thirtySeconds": "30 seconds",
"sixtySeconds": "60 seconds",
"unableToDeleteAccount": "Unable to delete account",
"theDemoAccountCantBeDeleted": "The demo account can't be deleted.",
"authenticationExpired": "Authentication expired",
"pleaseSignOutAndSignBackIn": "Please sign out and sign back in.",
"authenticationErrorPleaseTryAgain": "Authentication error. Please try again.",
"thisWillDeleteYourAccountAndAllOfYourData": "This will delete your account and all of your data. This cannot be undone.",
"sendVerification": "Send verification",
"accountDeleted": "Account deleted",
"rememberToUnsubscribeInTheGooglePlayApp": "Remember to unsubscribe in the Google Play app",
"rememberToUnsubscribeInTheAppStoreApp": "Remember to unsubscribe in the App Store app",
"youreAlwaysWelcomeBack": "You're always welcome back",
"maximumAccessTokensReached": "Maximum access tokens reached",
"needMoreEmailUsAtSupporttessiecom": "Need more? Email us at [email protected].",
"iAgree": "I agree",
"protectYourAccessTokens": "Protect your access tokens",
"keepYourTokensSafeTheyCanControlYourTesla": "Keep your tokens safe. They can control your Tesla.",
"developerApi": "Developer API",
"useTheTessieApiToViewAndControlYourTesla": "Use the Tessie API to view and control your Tesla, analyze your history and more",
"generateAccessToken": "Generate access token",
"signInToDeveloperPortal": "Sign in to developer portal",
"anyApplicationsOrScriptsUsingThisTokenWillNoLonger": "Any applications or scripts using this token will no longer be able to access the API. This cannot be undone.",
"delete": "Delete",
"percentage": "Percentage",
"range": "Range",
"realWorld": "Real-world",
"recentDistance": "Recent Distance",
"today": "Today",
"yesterday": "Yesterday",
"last7Days": "Last 7 days",
"last30Days": "Last 30 days",
"thisYear": "This year",
"lastYear": "Last year",
"allTime": "All time",
"last50Km": "Last 50 km",
"last30Mi": "Last 30 mi",
"display": "Display",
"appearance": "Appearance",
"currency": "Currency",
"dateFormat": "Date format",
"timeFormat": "Time format",
"tirePressure": "Tire pressure",
"realWorldRangeBasis": "Real-world range basis",
"batteryRange": "Battery range",
"displayedOnTheDashboard": "Displayed on the dashboard",
"displayedOnTheMainScreen": "Displayed on the main screen",
"confirmationPrompts": "Confirmation prompts",
"forSensitiveControls": "For sensitive controls",
"weatherBackground": "Weather background",
"useAnimatedWeatherBackgrounds": "Use animated weather backgrounds",
"releaseNotes": "Release notes",
"releaseNotesTitle": "Release Notes",
"seeWhatsNewAfterAppUpdates": "See what's new after app updates",
"drivingEfficiency": "Driving efficiency",
"showEfficiencyInDriveLists": "Show efficiency in drive lists",
"thisLocationWillBeDeleted": "This location will be deleted.",
"sendToVehicle": "Send to vehicle",
"youHaveUnsavedChanges": "You have unsaved changes",
"doYouWantToSaveYourChanges": "Do you want to save your changes?",
"discard": "Discard",
"save": "Save",
"setHomeLocation": "Set home location",
"name": "Name",
"alreadyUsed": "Already used",
"perKwh": "Per kWh",
"forFlatRates": "For flat rates",
"perMinute": "Per minute",
"forChargersThatBillPerMinute": "For chargers that bill per minute",
"saveLocation": "Save location",
"costs": "Costs",
"edit": "Edit",
"rateSchedules": "Rate schedules",
"forTimeofuseRates": "For time-of-use rates",
"add": "Add",
"tap": "Tap",
"click": "Click",
"costsWillBeRecalculatedForThisLocationItMayTake": "Costs will be recalculated for this location. It may take several minutes.",
"from": "From",
"anytime": "Anytime",
"to": "To",
"updateCosts": "Update costs",
"untitled": "Untitled",
"editLocationName": "Edit {locationName}",
"rateSchedulesForThisLocationWillChangeToTheTimezone": "Rate schedules for this location will change to the {timeZone} time zone.",
"mon": "Mon",
"tue": "Tue",
"wed": "Wed",
"thu": "Thu",
"fri": "Fri",
"sat": "Sat",
"sun": "Sun",
"kwh": "kWh",
"notSet": "Not set",
"timeZone": "Time zone",
"thisRateScheduleWillBeDeleted": "This rate schedule will be deleted.",
"costPerKwh": "Cost per kWh",
"days": "Days",
"startingIn": "Starting in",
"through": "Through",
"saveRateSchedule": "Save rate schedule",
"addRateSchedule": "Add rate schedule",
"editRateSchedule": "Edit rate schedule",
"manageSavedLocations": "Manage saved locations",
"electricCosts": "Electric costs",
"supercharging": "Supercharging",
"chargingAtHomeWorkAndMore": "Charging at home, work and more",
"youCanAddAutomaticCostTrackingForEveryPlaceYou": "You can add automatic cost tracking for every place you charge by saving the location.",
"pleaseTryAgainContactSupporttessiecomIfTheIssuePersists": "Please try again. Contact [email protected] if the issue persists.",
"exportInProgress": "Export in progress",
"tessieIsExportingYourDataWellEmailYouWhenIts": "Tessie is exporting your data. We'll email you when it's done.",
"exportRawData": "Export raw data",
"exportAllOfTheRawVehicleDataThatTessieCollects": "Export all of the raw vehicle data that Tessie collects for you.",
"noVehiclesToExport": "No vehicles to export.",
"selectVehicle": "Select vehicle",
"generateExport": "Generate export",
"export": "Export",
"mpg": "MPG",
"kml": "km/L",
"l100km": "L/100km",
"gallon": "gallon",
"litre": "litre",
"fuelCosts": "Fuel costs",
"instantlyCompareYourDrivingAndChargingCostsToAnyGas": "Instantly compare your driving and charging costs to any gas vehicle",
"efficiencyType": "Efficiency type",
"costPerUnit": "Cost per {unit}",
"vehiclesThatAreActiveWillAppearHere": "Vehicles that are active will appear here",
"noArchivedVehicles": "No archived vehicles",
"vehiclesThatAreNoLongerActiveWillAppearHere": "Vehicles that are no longer active will appear here",
"unarchive": "Unarchive",
"rename": "Rename",
"batteryHealth": "Battery health",
"archive": "Archive",
"trackingWillBeDisabledAndTheVehicleWillBeHidden": "Tracking will be disabled and the vehicle will be hidden. You can unarchive it at any time.",
"manage": "Manage",
"chooseNikolaExportFile": "Choose Nikola Export File",
"tessieMightNotHavePermissionToSelectFiles": "Tessie might not have permission to select files.",
"enableStorageAccessPermissionsToSelectFiles": "Enable storage access permissions to select files.",
"unableToSelectFiles": "Unable to select files",
"unableToUploadFile": "Unable to upload file",
"thereWasAnErrorUploadingDataPleaseTryAgain": "There was an error uploading data. Please try again.",
"unableToImport": "Unable to import",
"importSuccessful": "Import successful",
"yourDataHasBeenImportedSuccessfully": "Your data has been imported successfully!",
"uploadFile": "Upload File",
"importFromNikola": "Import from Nikola",
"importVehicleData": "Import vehicle data",
"teslafi": "TeslaFi",
"importTitle": "Import",
"importDataIntoTessie": "Import data into Tessie",
"username": "username",
"password": "password",
"unableToStartImport": "Unable to start import",
"thereWasAnErrorStartingYourImportPleaseTryAgain": "There was an error starting your import. Please try again.",
"importInProgress": "Import in progress",
"tessieIsProcessingAllOfYourDataWellEmailYou": "Tessie is processing all of your data. We'll email you when it's done.",
"importFileManually": "Import file manually",
"importFromTeslafi": "Import from TeslaFi",
"chooseTeslafiExportFile": "Choose TeslaFi Export File",
"select": "Select",
"chooseTeslamateExportFile": "Choose TeslaMate Export File",
"importFromTeslamate": "Import from TeslaMate",
"chooseTeslascopeExportFile": "Choose Teslascope Export File",
"yourDrivingDataIsBeingProcessedDependingOnTheAmount": "Your driving data is being processed. Depending on the amount of data, it can take up to several hours. We'll email you when it's done.",
"importFromTeslascope": "Import from Teslascope",
"chooseTezlabExportFile": "Choose TezLab Export File",
"importFromTezlab": "Import from TezLab",
"noLocationsSavedYet": "No locations saved yet",
"addChargingCostsAndAnalyticsToPlacesLikeYourHome": "Add charging costs and analytics to places like your home or work",
"anywhere": "Anywhere",
"selectLocation": "Select Location",
"addExtraProtectionToYouAndYourVehiclesIfYour": "Add extra protection to you and your vehicles if your device is lost or stolen.",
"pinMustBe4Digits": "PIN must be 4 digits",
"unableToSignOutAllDevices": "Unable to sign out all devices",
"signingOutAllDevices": "Signing out all devices",
"allDevicesWillBeSignedOutWithin60Seconds": "All devices will be signed out within 60 seconds.",
"security": "Security",
"biometrics": "Biometrics",
"requireBiometricsAuthenticationWhenOpeningTessie": "Require biometrics authentication when opening Tessie",
"pin": "PIN",
"forSensitiveAlexaCommands": "For sensitive Alexa commands",
"securityPinSet": "Security PIN set",
"signOutAllDevices": "Sign out all devices",
"autoWake": "Auto wake",
"wakeVehicleWhenOpeningTessie": "Wake vehicle when opening Tessie",
"subscription": "Subscription",
"inactive": "Inactive",
"interfaceAndUnits": "Interface and units",
"adjustChargingCosts": "Adjust charging costs",
"efficiencyAndRate": "Efficiency and rate",
"appAndAccountSecurity": "App and account security",
"teslaAccountSettings": "Tesla account settings",
"syncWithYourWatch": "Sync with your watch",
"unlockThePowerOfYourTesla": "Unlock the power of your Tesla",
"openAndUnlockTheChargePort": "Open and unlock the charge port.",
"about": "About",
"releaseNotesAndHelpfulLinks": "Release notes and helpful links",
"debug": "Debug",
"aFriendlyReminder": "A friendly reminder",
"manageSubscription": "Manage subscription",
"cancelSubscription": "Cancel subscription",
"subscribeToFleetManagement": "Subscribe to Fleet Management",
"seeBenefits": "See benefits",
"switchToStripeBilling": "Switch to Stripe billing",
"activeLifetime": "Active (Lifetime)",
"fleet": "Fleet",
"personal": "Personal",
"type": "Type",
"thereWasAnErrorErrorPleaseTryAgainOrContact": "There was an error: {error}. Please try again or contact [email protected] for help.",
"version": "Version",
"rememberToCancelYourExistingSubscriptionThroughStorename": "Remember to cancel your existing subscription through {storeName}.",
"filter": "Filter",
"lastHour": "Last hour",
"last24Hours": "Last 24 hours",
"last72Hours": "Last 72 hours",
"exportToCsv": "Export to CSV",
"graphs": "Graphs",
"timeline": "Timeline",
"now": "Now",
"noActivityFound": "No activity found",
"tryADifferentDateRange": "Try a different date range",
"theBatterysChargePercentage": "The battery's charge percentage.",
"usableBattery": "Usable battery",
"theBatterysUsableChargePercentageDecreasesWhenTheBatteryIs": "The battery's usable charge percentage. Decreases when the battery is cold.",
"theVehiclesRangeRemaining": "The vehicle's range remaining.",
"odometer": "Odometer",
"theVehiclesOdometerReading": "The vehicle's odometer reading.",
"interior": "Interior",
"theTemperatureMeasuredInsideTheCabin": "The temperature measured inside the cabin.",
"outsideTemperature": "Outside temperature",
"theTemperatureMeasuredOutsideTheVehicle": "The temperature measured outside the vehicle.",
"power": "Power",
"thePowerFromTheCharger": "The power from the charger.",
"currentTitle": "Current",
"currentVersion": "Current Version",
"updateVersion": "Update Version",
"theCurrentFromTheCharger": "The current from the charger.",
"voltage": "Voltage",
"theVoltageFromTheCharger": "The voltage from the charger.",
"tooManyDataPoints": "Too many data points",
"limitDateRangeToAMonthOrLess": "Limit date range to a month or less.",
"maintenanceMileageAndDatesWillRemainUniqueToEachVehicle": "Maintenance mileage and dates will remain unique to each vehicle.",
"syncToFleet": "Sync to fleet",
"subscribeToEnableAlerts": "Subscribe to enable alerts",
"notificationsAreDisabledOnThisDevice": "Notifications are disabled on this device",
"never": "Never",
"cabinAirFilter": "Cabin air filter",
"theCabinAirFilterKeepsDustDirtPollenBacteriaAnd": "The cabin air filter keeps dust, dirt, pollen, bacteria and exhaust gases from other vehicles from entering the HVAC system. Periodically replacing it decreases interior pollution, keeps the air fresh and increases A/C efficiency.",
"hepaFilter": "HEPA filter",
"tessieHasDetectedAHighEfficiencyParticulateAirHepaFilter": "Tessie has detected a High Efficiency Particulate Air (HEPA) filter in your Tesla. Periodically replacing it decreases interior pollution and increases A/C efficiency.",
"liveDrive": "Live drive",
"seeDrivingLiveOnYourLockScreenAndDynamicIsland": "See driving live on your Lock Screen and Dynamic Island (requires iPhone 14 Pro or newer.)",
"liveCharge": "Live charge",
"seeChargingLiveOnYourLockScreenAndDynamicIsland": "See charging live on your Lock Screen and Dynamic Island (requires iPhone 14 Pro or newer.)",
"brakeCalipers": "Brake calipers",
"periodicallyCleaningAndLubricatingBrakeCalipersCanHelpPreventCorrosion": "Periodically cleaning and lubricating brake calipers can help prevent corrosion and improve braking in regions where roads are salted during winter.",
"setLevel": "Set level",
"set": "Set",
"lowBattery": "Low battery",
"whenAtOrBelowTheSetLevel": "When at or below the set level",
"arrival": "Arrival",
"whenEnteringALocation": "When entering a location",
"notPluggedIn": "Not plugged in",
"whenUnpluggedAtALocation": "When unplugged at a location",
"setSpeed": "Set speed",
"speed": "Speed",
"whenTheSetSpeedIsExceeded": "When the set speed is exceeded",
"departure": "Departure",
"whenLeavingALocation": "When leaving a location",
"unlocked": "Unlocked",
"whenDoorsAreLeftUnlocked": "When doors are left unlocked",
"excludeHome": "Exclude Home",
"setPressure": "Set pressure",
"lowTirePressure": "Low tire pressure",
"whenAnyTireIsBelowTheSetPressure": "When any tire is below the set pressure",
"setToCurrentOdometer": "Set to current odometer",
"setManually": "Set manually",
"tireRotation": "Tire rotation",
"acDesiccantBag": "A/C desiccant bag",
"theDesiccantBagAbsorbsMoistureInTheAirConditionerPeriodically": "The desiccant bag absorbs moisture in the air conditioner. Periodically replacing it increases A/C longevity and efficiency.",
"brakeFluidCheck": "Brake fluid check",
"periodicallyCheckingBrakeFluidAndReplacingItIfNecessaryImproves": "Periodically checking brake fluid and replacing it if necessary improves braking and helps maintain short stopping distances.",
"setTemp": "Set temperature",
"temperature": "temperature",
"climateSafetyMonitoring": "Climate Safety Monitoring",
"whenDogModeOrClimateKeepIsOnAndThe": "When Dog Mode or Climate Keep is on and the set temperature is exceeded",
"excludeKeep": "Exclude Keep",
"remove": "Remove",
"locations": "locations",
"weatherWarnings": "Weather warnings",
"whenPrecipitationIsDetectedWhileAWindowDoorOrTrunk": "When precipitation is detected while a window, door or trunk is open",
"driveStart": "Drive start",
"whenDrivingBegins": "When driving begins",
"driveEnd": "Drive end",
"whenDrivingEnds": "When driving ends",
"chargeStart": "Charge start",
"whenChargingBegins": "When charging begins",
"chargeEnd": "Charge end",
"whenChargingEnds": "When charging ends",
"noPower": "No power",
"whenChargersArentProvidingPower": "When chargers aren't providing power",
"reducedPower": "Reduced power",
"whenChargersSuddenlyReducePower": "When chargers suddenly reduce power",
"dueNowTitle": "Due Now",
"neverDoneThisMaintenance": "Never done this maintenance?",
"useTheDateYouAcquiredTheVehicle": "Use the date you acquired the vehicle",
"energyKwh": "{energy} kWh",
"maintenance": "Maintenance",
"last": "Last",
"allVehiclesWillUseTheAlertSettingsFromVehicleName": "All vehicles will use the alert settings from {vehicleName}.",
"kmh": "km/h",
"mph": "mph",
"km": "km",
"mi": "mi",
"every": "Every",
"rotatingTiresEveryDurationOrWhenTreadDepthDifferenceIs": "Rotating tires every {duration}, or when tread depth difference is 2/32 inches or greater, helps them wear evenly and increases traction and longevity.",
"anyBattery": "Any battery",
"afterUnpluggedafter": "After {unpluggedAfter}",
"belowBatterylevelthreshold": "Below {batteryLevelThreshold}%",
"na": "N/A",
"everyYearInColdRegions": "Every year in cold regions",
"everyNumberofYears": "Every {numberOf} years",
"repeating": "Repeating",
"onetime": "One-time",
"onArrival": "On arrival",
"onDeparture": "On departure",
"chargingSchedule": "Charging schedule",
"percent": "percent",
"automationsWillChangeToTheNewTimeZone": "Automations will change to the {newTimeZone} time zone.",
"allVehiclesWillUseTheAutomationsFromVehicleName": "All vehicles will use the automations from {vehicleName}.",
"controlYourTeslaAutomaticallyCreateCustomChargingSchedulesAndMore": "Control your Tesla automatically. Create custom charging schedules and more.",
"createAutomation": "Create Automation",
"noAutomationsFound": "No automations found",
"createAnAutomationToControlYourTeslaAutomatically": "Create an automation to control your Tesla automatically",
"controlYourTeslaAutomatically": "Control your Tesla automatically",
"learnMore": "Learn more",
"unableToSave": "Unable to save",
"specifyAChargingLocation": "Specify a charging location.",
"existingScheduleDetected": "Existing schedule detected",
"disableScheduleDepartureAndScheduleChargingToPreventConflicts": "Disable Schedule > Departure and Schedule > Charging to prevent conflicts.",
"unableToSaveAutomation": "Unable to save automation",
"thisAutomationWillBeDeleted": "This automation will be deleted.",
"unableToDeleteAutomation": "Unable to delete automation",
"setAmps": "Set Amps",
"ampsShort": "A",
"showNotification": "Show Notification",
"enabled": "Enabled",
"location": "Location",
"action": "Action",
"time": "Time",
"setTime": "Set time",
"chargeLimit": "Charge Limit",
"amps": "Amps",
"seat": "Seat",
"protection": "Protection",
"activationTemperature": "Activation Temperature",
"unsupported": "Unsupported",
"date": "Date",
"whenPluggedInOutsideOfYourScheduleChargingWillBe": "When plugged in outside of your schedule, charging will be stopped within a minute. On days without a schedule, the car is free to charge anytime.",
"start": "Start",
"stop": "Stop",
"dashboard": "Dashboard",
"atCar": "At Car",
"sunrise": "Sunrise",
"feelsLike": "Feels Like",
"humidity": "Humidity",
"cloudiness": "Cloudiness",
"sunset": "Sunset",
"wind": "Wind",
"pressure": "Pressure",
"visibility": "Visibility",
"yourTeslaPeriodicallyUpdatesTirePressuresWhileDriving": "Your Tesla periodically updates tire pressures while driving.",
"youCanConfigureTheLowPressureThresholdInAlertsMaintenance": "You can configure the low pressure threshold in Alerts > Maintenance.",
"frontLeft": "Front left",
"frontRight": "Front right",
"rearLeft": "Rear left",
"rearRight": "Rear right",
"summon": "Summon",
"controls": "Controls",
"forward": "Forward",
"thisWillMoveTheVehicleForward": "This will move the vehicle forward.",
"reverse": "Reverse",
"thisWillMoveTheVehicleInReverse": "This will move the vehicle in reverse.",
"youCanAlsoUseAnyKeyFobOrDoorHandle": "You can also use any key fob or door handle to stop your vehicle.",
"smartSummon": "Smart Summon",
"abort": "Abort",
"noUpdateAvailable": "No update available",
"install": "Install",
"waitingForWifi": "Waiting for Wi-Fi",
"installUpdate": "Install update",
"software": "Software",
"current": "Current",
"update": "Update",
"cancelUpdate": "Cancel update",
"monitorVehiclesSurroundingsForPeopleAnimalsOrUnpredictableMovement": "Monitor vehicle's surroundings for people, animals or unpredictable movement.",
"any": "Any",
"fanOnly": "Fan only",
"invalid": "Invalid",
"invalidLocation": "Invalid location",
"chargingScheduleOverridden": "Charging schedule overridden",
"schedulesAreOverriddenWhenYouStartOrStopChargingThrough": "Schedules are overridden when you start or stop charging through Tessie.",
"removeOverride": "Remove override",
"overridden": "Overridden",
"disabled": "Disabled",
"editAutomation": "Edit Automation",
"waitingForWifiToDownload": "Waiting for Wi-Fi to download {version}",
"installingVersionInTime": "Installing {version} in {time}",
"versionScheduledForTime": "{version} scheduled for {time}",
"versionScheduled": "{version} scheduled",
"downloading": "Downloading",
"installing": "Installing",
"scheduledFor": "Scheduled for",
"viewReleaseNotesForVehicleversion": "View release notes for {vehicleVersion}",
"viewReleaseNotesForShortversion": "View release notes for {shortVersion}",
"itWillTakeAboutDurationToInstall": "It will take about {duration} to install.",
"softwareHistory": "Software history",
"trackTheFirmwareUpdatesToYourTeslaAndDiscoverThe": "Track the firmware updates to your Tesla and discover the average time between updates",
"installedVersion": "Installed version",
"installedUpdates": "Installed updates",
"timeSinceLast": "Time since last",
"averageTimeBetween": "Average time between",
"noDataYet": "No data yet",
"timeSinceLastUpdate": "Time since last update",
"day": "day",
"viewReleaseNotesForHistoryindexversion": "View release notes for {historyIndexVersion}",
"installationHistory": "Installation History",
"loading": "Loading",
"dayCount": "{count} day",
"daysCount": "{count} days",
"averageDay": "{averageDays} day",
"averageDays": "{averageDays} days",
"thisWillMoveTheVehicleToTheTarget": "This will move the vehicle to the target.",
"goToTarget": "Go to Target",
"copiedToClipboard": "Copied to clipboard",
"noDescription": "No description",
"copyServiceCode": "Copy service code",
"serviceAlerts": "Service Alerts",
"compareScheduledChargingOptions": "Compare scheduled charging options",
"forLocation": "For {location}",
"climatePreconditioning": "Climate / Preconditioning",
"setClimateAndPreheatBattery": "Set climate and preheat battery",
"offpeakCharging": "Off-Peak Charging",
"reduceChargingCosts": "Reduce charging costs",
"offpeakEndTime": "Off-Peak End Time",
"startChargingAt": "Start Charging At",
"allWeek": "All Week",
"weekdays": "Weekdays",
"noReleaseNotesProvidedByTesla": "No release notes provided by Tesla",
"pleaseTryAgainOrEmailSupporttessiecomToRedeem": "Please try again or email [email protected] to redeem.",
"congratulations": "Congratulations!",
"youNowHaveUnlimitedLifetimeAccessToTessieYouMay": "You now have unlimited lifetime access to Tessie. You may now cancel any existing subscription.",
"thankYouForYourSupport": "Thank you for your support.",
"checkOutThisTeslaApp": "Check out this Tesla app",
"currentlySubscribedReferralsSubscribed": "{count} subscribed",
"currentlyPendingReferrals": "{count} pending",
"redeemLifetimeAccess": "Redeem Lifetime Access",
"lifetimeAccessGranted": "Lifetime Access Granted",
"errorLoadingReferralDataPleaseTryAgainLater": "Error loading referral data. Please try again later.",
"giveAMonthGetALifetime": "Give a month, get a lifetime",
"unableToGenerateYourReferralLinkDisableAdBlockersAnd": "Unable to generate your referral link. Disable ad blockers and try again.",
"enableBluetoothConnections": "Enable Bluetooth connections",
"allow": "Allow",
"enableBluetooth": "Enable Bluetooth",
"enableLocationService": "Enable location service",
"enableLocationServiceOnDevice": "Enable location service on device",
"enableLocation": "Enable location",
"disconnected": "Disconnected",
"searching": "Searching",
"connecting": "Connecting",
"authorizing": "Authorizing",
"tapKeyCardOnConsole": "Tap key card on console",
"timedOutWhileAuthorizing": "Timed out while authorizing",
"pair": "Pair",
"tooManyDevicesConnected": "Too many devices connected",
"tooManyKeys": "Too many keys",
"connectionLost": "Connection lost",
"controlYourTeslaViaBluetooth": "Control your Tesla via Bluetooth",
"phoneKey": "Phone Key",
"backgroundUnlockingDisabled": "Background unlocking disabled",
"phoneKeyRequiresBackgroundLocationAccessToWorkWhenThe": "Phone Key requires background location access to work when the app is closed",
"openSettings": "Open Settings",
"setTheDateYouAcquiredTheVehicleOrTheBattery": "Set the date you acquired the vehicle or the battery was installed",
"originalCapacity": "Original capacity",
"setCapacity": "Set capacity",
"theAverageOriginalCapacityOfThisVehiclemodelnameConfigurationIs": "The average original capacity of this {vehicleModelName} configuration is {capacity} kWh.",
"newBatteryCapacityKwh": "{newBatteryCapacity} kWh",
"setBatteryDate": "Set battery date",
"measureAndCompareBatteryDegradation": "Measure and compare battery degradation",
"notEnoughDataYet": "Not enough data yet",
"completeAChargeThatAddsAtLeast5Kwh": "Complete a charge that adds at least 5 kWh",
"capacity": "Capacity",
"readingsFromYourTeslasBatteryManagementSystemCollectedAfterEvery": "Readings from your Tesla's battery management system. Collected after every >5 kWh charge. Fleet comparison based on other {vehicleModelName} vehicles with the same configuration.",
"capacityformattedKwh": "{capacityFormatted} kWh",
"yourMeasurements": "Your measurements",
"fleetAverage": "Fleet average",
"maxRange": "Max range",
"chargeCycles": "Charge cycles",
"teslaBatteriesAreExpectedToLastAtLeast1500Cycles": "Tesla batteries are expected to last at least 1,500 cycles.",
"estimated": "Estimated",
"estimatedChargeCycles": "Estimated charge cycles",
"basedOnTheVehiclesEnergyUsagePatterns": "Based on the vehicle's energy usage patterns.",
"readingsFromYourTeslasBatteryManagementSystem": "Readings from your Tesla's battery management system. Collected after every >5 kWh charge.",
"degradation": "Degradation",
"setnewbatterycapacityKwh": "{setNewBatteryCapacity} kWh",
"chargingComplete": "Charging complete",
"chargingStarting": "Charging starting",
"chargingStopped": "Charging stopped",
"basedOnEfficiencySinceUsingTessieYouCanAdjustThe": "Based on efficiency since using Tessie. You can adjust the time period in Settings > Display.",
"chargingState": "Charging state",
"level": "Level",
"usable": "Usable",
"decreasesWhenTheBatteryIsCold": "Decreases when the battery is cold.",
"charge": "Charge",
"drive": "Drive",
"idle": "Idle",
"realWorldRange": "Real-world range",
"theBatteryConsumedSinceTheVehicleWasLastDrivenOr": "The battery consumed since the vehicle was last driven or charged.",
"phantomDrain": "Phantom drain",
"learnHowToPreventDrain": "Learn how to prevent drain",
"liveChargeTracking": "Live charge tracking",
"seeChargingStatisticsInRealtime": "See charging statistics in real-time",
"chargeDetails": "Charge Details",
"trackingDisabled": "Tracking disabled",
"enableTrackingUnderSettingsConnectivity": "Enable tracking under Settings > Connectivity",
"waitingForChargingData": "Waiting for charging data",
"chargeNotFound": "Charge not found",
"expandMap": "Expand map",
"energy": "Energy",
"added": "Added",
"energyAdded": "Energy added",
"theEnergyAddedToTheBattery": "The energy added to the battery.",
"energyAddedKwh": "{energyAdded} kWh",
"used": "Used",
"energyUsed": "Energy used",
"theEnergyUsedByTheCharger": "The energy used by the charger.",
"energyUsedKwh": "{energyUsed} kWh",
"efficiency": "Efficiency",
"chargingEfficiency": "Charging efficiency",
"theEnergyAddedToTheBatteryComparedToTheEnergy": "The energy added to the battery compared to the energy used by the charger.",
"totalAdded": "Total Added",
"chargeFinished": "Charge finished",
"chargeInProgress": "Charge in progress",
"finished": "Finished",
"inProgressTitle": "In Progress",
"cost": "Cost",
"enableAutomaticCosts": "Enable automatic costs",
"deleteCharge": "Delete Charge",
"downloadCsv": "Download CSV",
"setCost": "Set cost",
"electricCost": "Electric cost",
"basedOnTheElectricRateForThisLocation": "Based on the electric rate for this location.",
"electric": "Electric",
"thisChargeWillBeDeletedThisCannotBeUndone": "This charge will be deleted. This cannot be undone.",
"thereWasAnErrorWithTheRequestPleaseTryAgain": "There was an error with the request. Please try again.",
"unableToSyncCost": "Unable to sync cost",
"syncWithTesla": "Sync with Tesla",
"chargeHistory": "Charge History",
"automaticallyTrackYourChargingIncludingLocationsChargingRatesAndCosts": "Automatically track your charging, including locations, charging rates and costs",
"exterior": "Exterior",
"seats": "Seats",
"heat": "Heat",
"cool": "Cool",
"hi": "HI",
"lo": "LO",
"lock": "Lock",
"frontTrunk": "Front trunk",
"frontTrunkTitle": "Front Trunk",
"rearTrunk": "Rear trunk",
"rearTrunkTitle": "Rear Trunk",
"ventWindows": "Vent windows",
"closeWindows": "Close windows",
"ventSunroof": "Vent sunroof",
"closeSunroof": "Close sunroof",
"defrost": "Defrost",
"homelink": "HomeLink",
"flash": "Flash",
"honk": "Honk",
"honking": "Honking.",
"chargePort": "Charge port",
"chargePortTitle": "Charge Port",
"fart": "Fart",
"farting": "Farting.",
"allDoors": "All doors",
"allDoorsTitle": "All Doors",
"activateAllDoors": "Activate all doors.",
"activateTheFrontLeftDoor": "Activate the front left door.",
"activateTheFrontRightDoor": "Activate the front right door.",
"activateTheRearLeftDoor": "Activate the rear left door.",
"activateTheRearRightDoor": "Activate the rear right door.",
"frontLeftDoor": "Front left door",
"frontRightDoor": "Front right door",
"rearLeftDoor": "Rear left door",
"rearRightDoor": "Rear right door",
"frontLeftDoorTitle": "Front Left Door",
"frontRightDoorTitle": "Front Right Door",
"rearLeftDoorTitle": "Rear Left Door",
"rearRightDoorTitle": "Rear Right Door",
"setTheControlsOnTheDashboard": "Set the controls on the dashboard",
"editShortcuts": "Edit shortcuts",
"tessieCanAnalyzeYourChargingTimesComparedToYourHomes": "Tessie can analyze your charging times compared to your home's electric plan and analyze savings opportunities.",
"addYourHomeLocationAndElectricRate": "Add your home location and electric rate.",
"addYourHomesElectricRate": "Add your home's electric rate.",
"keepChargingTessieIsLearningYourCosts": "Keep charging. Tessie is learning your costs.",
"chargingIsScheduled": "Charging is scheduled.",
"limitChargingToOffpeakTimesToSaveUpTo25": "Limit charging to off-peak times to save up to 25%.",
"usingATimeofuseTouRatePlanAndChargingDuringOffpeak": "Using a Time-of-Use (TOU) rate plan and charging during off-peak times can significantly reduce charging costs.",
"youCanCreateAChargingScheduleAutomationToRestrictCharging": "You can create a Charging Schedule automation to restrict charging to off-peak times.",
"compareOptions": "Compare Options",
"electricPlan": "Electric plan",
"tessieCanMeasureYourHomesElectricRateAndAnalyzeSavings": "Tessie can measure your home's electric rate and analyze savings opportunities.",
"yourHomeIsUsingATimeofusePlan": "Your home is using a Time-of-Use plan.",
"upgradeToATimeofuseTouRatePlanAndAddThe": "Upgrade to a Time-of-Use (TOU) rate plan and add the rate schedule to your home location.",
"theAverageOffpeakRateOnATimeofuseTouRatePlan": "The average off-peak rate on a Time-of-Use (TOU) rate plan tends to be about 25% cheaper than a non-TOU rate plan.",
"homeEfficiency": "Home efficiency",
"tessieCanMeasureYourHomesChargingEfficiencyAndAnalyzeSavings": "Tessie can measure your home's charging efficiency and analyze savings opportunities.",
"keepChargingTessieIsLearningYourHomesEfficiency": "Keep charging. Tessie is learning your home's efficiency.",
"chargingEfficiencyCanBe90OrGreaterByOptimizingWiring": "Charging efficiency can be 90% or greater by optimizing wiring and installing a high-powered charger like the Tesla Wall Connector.",
"yourHomeHasOptimalChargingEfficiency": "Your home has optimal charging efficiency.",
"sentryUsage": "Sentry Mode usage",
"sentryUsesAbout6KwhPerDayReducingSentryUsage": "Sentry Mode uses about 6 kWh per day. Reducing Sentry Mode usage can help the vehicle sleep and conserve battery, reducing your charging costs.",
"yourHomesChargingEfficiencyWasEfficiencyOverTheLastMeasurementdays": "Your home's charging efficiency was {efficiency}% over the last {measurementDays} days. You can increase this by around {possibileEfficiencyGain}%.",
"keepDrivingTessieIsLearningYourSentryUsage": "Keep driving. Tessie is learning your Sentry Mode usage.",
"sentryUsageIsOptimal": "Sentry Mode usage is optimal.",
"energyUsageIncreases03ForEvery1UnderTheOptimal": "Energy usage increases 0.3% for every 1% under the optimal pressure, according to NHTSA data.",
"youCanFindTheOptimalPressureOnTheStickerInside": "You can find the optimal pressure on the sticker inside the driver door of your Tesla.",
"sentryUsedAboutTotalkwhusedKwhOverTotalsentryhoursHoursWhileIdle": "Sentry Mode used about {totalkWhUsed} kWh over {totalSentryHours} hours while idle in the last {measurementDays} days. You can reduce Sentry Mode usage to save on charging costs.",
"theRecommendedPressureForMostTeslasAndTiresIs": "The recommended pressure for most Teslas and tires is {convertTirePressureToUserUnit} {unitLabel}.",
"tiresAreNearTheRecommendedPressure": "Tires are near the recommended pressure.",
"keepDrivingTessieIsLearningYourTirePressure": "Keep driving. Tessie is learning your tire pressure.",
"tiresAreTotalunderinflatedpercentUnderTheRecommendedPressureYouCanInflate": "Tires are {totalUnderInflatedPercent}% under the recommended pressure. You can inflate your tires to save charging costs.",
"theRecommendedPressureForMostTeslasAndTiresIsConverttirepressuretouserunit": "The recommended pressure for most Teslas and tires is {convertTirePressureToUserUnit} {unitLabel}.",
"theRecommendedPressureForMostTeslasAndTiresIsPressure": "The recommended pressure for most Teslas and tires is {pressure} {unitLabel}.",
"wheelSize": "Wheel size",
"smallerWheelsAreUpTo12MoreEfficientAccordingTo": "Smaller wheels are up to 12% more efficient according to EPA data, reducing your charging costs.",
"wheelsAreOptimallySized": "Wheels are optimally sized.",
"changingFromWheelsizeToOptimalwheelsizeReducesEnergy": "Changing from {wheelSize}\" to {optimalWheelSizeForModel}\" wheels on {vehicleModelName} reduces energy usage by at least {wheelSizeEfficiencyOffset}%.",
"saveMoneyWithCostAnalysisAndSavingsRecommendations": "Save money with cost analysis and savings recommendations",
"yearly": "Yearly",
"fiveYears": "5 years",
"totalSpent": "Total spent",
"projected": "Projected",
"savingsFound": "Savings found",
"home": "Home",
"superchargers": "Superchargers",
"other": "Other",
"recommendations": "Recommendations",
"tessieContinuouslyUpdatesRecommendationsBasedOnDataOverTheLast": "Tessie continuously updates recommendations based on data over the last {measurementDays} days to help you keep saving",
"learning": "Learning",
"ignored": "Ignored",
"fixMeTitle": "Fix Me",
"optimal": "Optimal",
"found": "Found",
"showTitle": "Show",
"ignoreTitle": "Ignore",
"addHomeLocation": "Add home location",
"setElectricRate": "Set electric rate",
"liveDriveTracking": "Live drive tracking",
"seeDrivingStatisticsInRealtime": "See driving statistics in real-time",
"driveDetails": "Drive Details",
"waitingForDrivingData": "Waiting for driving data",
"driveNotFound": "Drive not found",
"average": "Average",
"max": "Max",
"elevation": "Elevation",
"total": "Total",
"peak": "Peak",
"rangeEfficiency": "Range efficiency",
"theRangeUsedComparedToTheRealworldDistanceDriven": "The range used compared to the real-world distance driven.",
"hundredPercentEfficiency": "100 % efficiency",
"startedAt": "Started At",
"endedAt": "Ended At",
"totalUsed": "Total Used",
"averageEnergyEfficiency": "Average Energy Efficiency",
"theEnergyUsedDividedByTheDistanceDrivenMayDiffer": "The energy used divided by the distance driven. May differ from the in-vehicle energy measurement, which excludes certain factors.",
"distance": "Distance",