-
Notifications
You must be signed in to change notification settings - Fork 8
/
nl.csv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 1066.
1687 lines (1687 loc) · 93.3 KB
/
nl.csv
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
"link","link"
"An error has occurred. Please, try again later","Er heeft zich een fout voorgedaan, probeer later opnieuw"
"Action.FlightSheetRemoved","Flight Sheet succesvol verwijderd"
"Action.FlightSheetCreated","Flight Sheet succesvol aangemaakt"
"Command sent","Commando verzonden"
"Action.TransferFarm","Aanvraag voor het wijzigen van eigenaar verzonden"
"Settings updated","instellingen gewijzigd"
"Tag added","Tag toegevoegd"
"Tag edited","Tag gewijzigd"
"Tag removed","Tag verwijderd"
"Wallet added","Wallet toegevoegd"
"Wallet edited","Wallet gewijzigd"
"Wallet removed","Wallet verwijderd"
"Collaborator added","Collaborator toegevoegd"
"Collaborator removed","Collaborator verwijderd"
"Collaborator edited","Collaborator gewijzigd"
"Action.LeftFarm","U heeft de farm verlaten"
"Action.UpdateFs","Flight Sheet succesvol gewijzigd. Offline workers moeten herstart worden om wijzigen te activeren"
"Action.AddOC","Overclocking profiel succesvol gewijzigd"
"Action.RefillFarm","Farm balans aangevuld"
"Action.ErrorServerRequest","Er heeft zich een fout voorgedaan, probeer later opnieuw"
"Error","Fout"
"Action.SendPromocode","U heeft zich succesvol ingeschreven"
"Action.PatchToken","Token succesvol gewijzigd"
"Action.AddToken","Token succesvol aangemaakt"
"Action.DeleteToken","Token succesvol verwijderd"
"Promocode successfully sended","Promotiecode succesvol verzonden"
"Action.UpdatePayoutAddresses","Adres succesvol gewijzigd"
"Action.PayoutToAccount","Uw account balans is succesvol aangevuld"
"Action.SetPassword","Wachtwoord succesvol gewijzigd"
"2FA enabled","2FA geactiveerd"
"2FA removed","2FA verwijderd"
"NVIDIA","NVIDIA"
"Apply","Toepassen"
"Confirm","Bevestigen"
"TelegramSubscribe","Enter telegram id om in te schrijven"
"Enter code to confirm","Enter code om te bevestigen"
"Subscribe","Inschrijven"
"Remove","Verwijderen"
"Are you shure?","Bent u zeker?"
"Edit","Wijzig"
"temp","temp"
"Farms","Farms"
"workers","workers"
"ethash","ethash"
"CriticalIssues",""
"Off","Uit"
"30 seconds","30 seconden"
"1 minute","1 minuut"
"2 minutes","2 minuten"
"5 minutes","5 minuten"
"AutoRefresh","Pagina verversen timer"
"All","Alle"
"Cancel","Annuleren"
"Download VBIOS","Download VBIOS"
"GPU index","GPU index"
"NotGPUDifferent","Nota: GPU index kan verschillend zijn minder volgorde tov PCI Bus volgorde"
"Download","Download"
"Apply Changes","Wijziging doorvoeren"
"WalletWorkTemplate","Wallet and worker template:"
"Pass:","Wachtwoord:"
"Extra config arguments:","Extra configuratie parameters:"
"Pool URL:","Pool URL:"
"Miner Fork:","Miner Fork:"
"Hash algorithm:","Hash algoritme:"
"Extra params for pool:","Extra parameters voor pool:"
"Extra arguments for miner:","Extra parameters voor miner:"
"Version:","Versie:"
"Template examples:","Template voorbeelden:"
"for most of the pools","voor de meeste pools"
"Intensity, -dcri 0...100","Intensity, -dcri 0...100"
"claymore","claymore"
"epools.txt template:","epools.txt template:"
"dpools.txt template:","dpools.txt template:"
"Claymore config override:","Claymore config override:"
"Example for nanopool:","Voorbeeld voor nanopool:"
"Example for nicehash:","Voorbeeld voor nicehash:"
"Second coin algo","2de munt algo"
"Config override:","Config override:"
"Pool server:","Pool server:"
"Port:","Poort:"
"index","index"
"AMD config override:","AMD config override:"
"Nvidia config override:","Nvidia config override:"
"CPU config override:","CPU config override:"
"Errors","Fouten"
"last 24 hours","laatste 24 uur"
"Workers with errors","Workers met fouten"
"No errors found","Geen fouten gevonden"
"Show","Toon"
"Overclocking","Overclocking"
"Coins","Munten"
"Pools","Pools"
"Miners","Miners"
"Select pools","Selecteer pools"
"Select miners","Selecteer miners"
"Select coin","Selecteer munt"
"Select overclocking","Selecteer overclocking"
"by","door"
"View payload","bekijk payload"
"Add Wallet","Wallet toevoegen"
"Red Temperature","Max temperatuur"
"Trust user","Vertrouw gebruiker"
"Add Worker","Worker toevoegen"
"FarmNavCleanWorkers","Verwijder alle worker berichten"
"Save","Opslaan"
"FarmTempHeader.ASICCriticalTemperature","ASIC Kritische Temperatuur"
"Ask a question","Stel een vraag"
"Report an issue","Rapporteer een probleem"
"Tags","Tags"
"Wallets","Wallets"
"Platform","Platform"
"Run","Uitvoeren"
"Wallet","Wallet"
"Coin","Coin"
"Pool","Pool"
"Miner","Miner"
"Select pool","Selecteer pool"
"Select miner","Selecteer miner"
"Select wallet","Selecteer wallet"
"Configure Pool","Configureer Pool"
"Setup Miner Config","Wijzig Miner Configuratie"
"Dual Coin","Dual Coin"
"Dual Wallet","Dual Wallet"
"Dual Pool","Dual Pool"
"Configure in miner","Configureer in miner"
"Update","Wijzig"
"Add New Flight Sheet","Nieuwe Flight Sheet toevoegen"
"Reset","Reset"
"Create Flight Sheet","Nieuwe Flight Sheet aanmaken"
"Add Miner","Miner toevoegen"
"Email","Email"
"worker","worker"
"selected","geselecteerd"
"FlightSheetsRocket.Message","Huidige Flight sheet toegepast voor"
"Choose Flight Sheet for","Kies Flight Sheet voor"
"Your Company","Uw bedrijf"
"Home","Home"
"Admin","Admin"
"Privacy","Privacy"
"Not Found","Niet gevonden"
"off","Uit"
"No","Nee"
"min","min"
"Remote","Remote"
"Consumption","Verbruik"
"AES","AES"
"Cores","Cores"
"Motherboard","Moederbrod"
"Free space","Vrije ruimte"
"Free RAM","Vrij geheugen"
"OS version","OS versie"
"Drivers","Drivers"
"Yes","Ja"
"System type","Systeem type"
"Kernel","Kernel"
"Local IP","Lokaal IP"
"Load Average","Gemiddelde load"
"rigs","rigs"
"Jump to farms, workers...","Switch naar frarms, workers…"
"Notifications","Meldingen"
"unread","ongelezen"
"Show all","Toon alles"
"No notifications yet","nog geen meldingen"
"View geo location","toon geo locatie"
"from","van"
"Accept","Accepteer"
"Decline","Wijger"
"Term expires in","Termijn vervalt in"
"Enter value","Vul waarde in"
"Generate","Genereer"
"Enter start date","Vul start datum in"
"Start date","Start datum"
"End date","Eind datum"
"Enter end date","Vul eind datum in"
"Name","Naam"
"Create","Creeer"
"Russian","Russisch"
"Chinese","Chinees"
"English","Engels"
"NoActiveFound","Nog geen activiteiten gevonden"
"all activities","Alle activiteiten"
"Latest Activity","Laatste activiteiten"
"Load","Load"
"warning","dstm 0.6.0 heeft zijn config syntax gewijzigd"
"Previous","Vorige"
"Next","Volgende"
"configuration","configuratie"
"MiningInfo","Actieve Flight Sheet"
"Account","Account"
"Sign Out","Uitloggen"
"Billing","Betaling"
"Support","Support"
"Community","Community"
"Forum","Forum"
"Referrals","Referrals"
"NoRightsMessage","Sorry, U heeft niet voldoende rechten om deze pagina te bekijken"
"to","naar"
"Login","Login"
"access","toegang"
"Notification.EventChanged","Melding Event gewijzigd"
"Notification.AccessChanged","Rechten gewijzigd voor"
"Notification.WhitelistChanged","Whitelist gewijzigd"
"Account.NotificationDescription6","U kan deze bot aan een chat groep toevoegen zodat meerdere beheerders workers kunnen monitoren. Creeer uw eigen groep en voeg 'hiveosbot' toe als member. De chat code is negatief voor groepen, in de aard van '-12345'."
"Account.NotificationDescription1","Start een nieuw gesprek met deze bot."
"Account.NotificationDescription2","De bot zal antwoorden met uw CODE rechts, in de aard van '-12345'."
"Account.NotificationDescription3","Uw login is"
"Account.NotificationDescription4","Stuur de bot een commando"
"Account.NotificationDescription5","en het zal uw account inschrijven voor meldingen"
"Update Settings","Update Instellingen"
"Fan","Fan"
"Core Clock","Core Clock"
"Memory Clock","Memory Clock"
"Power Limit","Power limiet"
"(0 for auto)","(0 voor auto)"
"(0 for stock value)","(0 voor stock value)"
"NvidiaCardFrom.SpecifyDevice","Specifier welk toestel ingesteld met de 'senior oplossing, --revA"
"NvidiaCardFrom.MemClock","Gewoonlijk is deze waarde het dubbel van wat je ziet in AfterBurner, maw als het in windows +800Mhz is gebruik je 1600."
"NvidiaCardFrom.OffLED","Zet LEDS uit (werkt niet voor alle kaarten)"
"OhGodAnETHlargementPill","OhGodAnETHlargementPill"
"ValueCardSeparatedSpace.","U kan een waarde ingeven voor alle kaarten of een lijst van waardes per kaart dmv een spatie."
"one value for all GPUs.","een waarde voor alle GPUs."
"means GPU0 = none, GPU1 = 100, etc.","betekend GPU0 = none, GPU1 = 100 enz."
"Configure","Configureer"
"Overclocking Settings","Overclocking instellingen"
"OverclockingProfileModal.Text","Kies Overclocking profiel voor"
"ApplyOverclockProfile","Wenst U Overclocking profiel toe te passen voor"
"Invalid Shares","Invalid Shares"
"Show all payments","Toon alle betalingen"
"No payments yet","Nog geen betalingen"
"Pool address","Pool address"
"Select pool address","Selecteer pool adres"
"Add New Pool","Pool toevoegen"
"Enter email","Enter email"
"Select Pool Server","Selecteer Pool Server"
"Selected Pool Servers","Geselecteerde Pool Servers"
"on","aan"
"rights","rechten"
"Workers","Workers"
"Balance","Balans"
"Shared with me","Met mij gedeeld"
"Timezone","Tijdzone"
"Create New Farm","Nieuwe Farm aanmaken"
"Select timezone","Selecteer tijdzone"
"Input farm name","Input farm name"
"Mem State","Mem status"
"Core Voltage","Core Voltage"
"Core State","Core State"
"RadeonCardFrom.fanSpeed2","in claymore config override."
"RadeonCardFrom.fanSpeed1","Je kan fan snelheid instellen maar de miner (claymore) zal de controle overnemen. Je disabled best fan control in the miner configuratie om dit te laten werken."
"RadeonCardFrom.memState.text3","Je dient deze parameter te gebruiken met de 'Mem Clock' instelling."
"RadeonCardFrom.memState.text2","RX kaarten hebben 1 of 2 geheugen statusen (eigenlijk 3 inclusief 0 idle). Standaard is de hoogste waarde geselecteerd. Sommige kaarten zijn gekend om te falen bij undervolt op de hoogste status en dien je en lagere te selecteren. Bvb de hoogste is 2 en voor undervolting wil je de status op 1 zetten."
"RadeonCardFrom.memState.text1","Dit is een zeer geavanceerde parameter. Probeer deze als er problemen zijn met undervolting. Als het werkt - blijf hier af."
"RadeonCardFrom.coreVddc.text5","van VBIOS tabel"
"RadeonCardFrom.coreVddc.text4","meaning mV of waardes zoals"
"RadeonCardFrom.coreVddc.text3","Je kan waardes instellen zoals"
"RadeonCardFrom.coreVddc.text2","status zal gebruikt worden om voltage te zetten."
"RadeonCardFrom.coreVddc.text1","Dit is nodig om je kaart te undervolten. Je MOET set 'Core State' of standaard"
"RadeonCardFrom.coreState.text4.","Verlaag de waarde to downvolt"
"Default is","standaard is"
"RadeonCardFrom.coreState.text2","DPM (Dynamic Power Management)"
"RadeonCardFrom.coreState.text1","Dit is nodig als je je kaart probeert te undervolten. Je dient deze parameter te gebruiken met de 'Core Clock' instelling en 'Core Voltage'"
"RadeonCardFrom.coreClock.text2","Als 'Core State' niet is gezet, dan standaard"
"RadeonCardFrom.coreClock.text1","Zet hier core clock, een goede waarde is rond"
"RadeonCardFrom.coreClock.text3","status zal gebruiker worden om de clock te zetten"
"Refill","Aanvullen"
"balance","balans"
"per month","per maand"
"Recommended payment is","Aanbevolen betaling is"
"From balance","Van balans"
"With Coinpayment","Met Coinpayments"
"Console","Console"
"Execute command","Commando uitvoeren"
"Wrong command","Verkeerd commando"
"Remove all messages?","Alle berichten verwijderen?"
"EDIT","EDIT"
"Overview","Overzicht"
"Cards","Kaarten"
"CONSOLE","CONSOLE"
"Offline","Offline"
"Booted","Gestart"
"Uptime","Uptime"
"TRANSFER","TRANSFER"
"Monitoring","Monitoring"
"Reboot","Herstarten"
"Miner Config","Miner Config"
"Rocket","Rocket"
"Upgrade","Upgrade"
"Shutdown","Uitzetten"
"OpenVPN configuration","OpenVPN configuratie"
"Power actions","Power acties"
"Server URL","Server URL"
"Edit tags","Editeer tags"
"Miner actions","Miner acties"
"Teleconsole Start","Teleconsole Start"
"Teleconsole Stop","Teleconsole Stop"
"Teleconsole Restart","Teleconsole Herstart"
"Hashrate watchdog","Hashrate watchdog"
"Run command","Commando uitvoeren"
"Miner Log","Miner Log"
"Stop Miner","Stop Miner"
"Restart Miner","Miner herstarten"
"Remote access","Remote access"
"more messages","meer berichten"
"Add","toevoegen"
"Password","Wachtwoord"
"Description","Beschrijving"
"Add New Worker","Nieuwe Worker toevoegen"
"RigForm.EnterWorkerName","Worker naam, IP"
"RigForm.EnterWorkerPassword","Worker wachtwoord"
"RigForm.EnterWorkerDescription","Worker beschrijving"
"rejected","gewijgerd"
"shared","gedeeld"
"Upgrade to","Upgrade naar"
"New features","Nieuwe features"
"New version","Nieuwe versie"
"Current version","Huidige versie"
"SaveOCModal","SaveOCModal"
"Enter Name","Naam"
"SaveOverclockingAsTemplate.Name","Overclocking Profiel naam"
"SaveOverclockingAsTemplate.Title","Overclocking opslaan als Template"
"Set","Set"
"Default","Standaard"
"Choose URL","Kies URL"
"ServerUrlFrom.Help3","Wees voorzichtig! Voorzie altijd fysieke of netwerk toegang (SSH) voor je instellingen aanpast. Als de worker niet naar de geslecteerde URL kan connecteren zal deze Offline zijn voor Hive. Alternatieve URL is opgeslaan in /hive-config/rig.conf waar je deze manueel kan wijzigen."
"ServerUrlFrom.Help2","Als je dit 'Standaard' laat zal {os} beslissen naar waar te verbinden. Meestal is het de eerste in de lijst."
"ServerUrlFrom.Help1","Als je problemen hebt met verbinden naar de {os} server vanaf jou worker en regelmatig valse Offline/Onlime meldingen, kan je beter kiezen voor een alternatieve server URL. Soms zijn er problemen met firewalls (van jezelf of je provider) en kan het veranderen van poort helpen."
"Mirror Select","Alternatief Selecteren"
"Stats","Stats"
"gpu","gpu"
"for 24 hours","voor 24 uur"
"View all","Bekijk alle"
"day","dag"
"Day left","Dag te gaan"
"Days left","Dagen te gaan"
"New Tag Name","Niewe Tag naam"
"Add Tag","Tag toevoegen"
"Add tag","Tag toevoegen"
"Explore transaction","Explore transactie"
"Referrals.TransactionsNotFound","nog geen transacties"
"Upload VBIOS","Upload VBIOS"
"VBIOS ROM file","VBIOS ROM bestand"
"UploadingBiosFromLabel","Forceer flashen zonder security checks"
"Upload","Upload"
"VPN.ClientConf","client.conf (met geintegreerde certificaten enkel deze file uploaden)"
"Login (auth-user-pass)","Login (auth-user-pass)"
"Password (auth-user-pass)","Password (auth-user-pass)"
"Address","adres"
"Enter wallet address","Enter wallet address"
"Enter wallet name","Enter wallet naam"
"Accepted shares ratio","Accepted shares ratio"
"Invalid shares","Invalid shares"
"High Temperature","Hoge Temperatuur"
"Low hashrate","Lage hashrate"
"cores","cores"
"Hive OS Version:","{os} Versie:"
"Power:","Power:"
"Free disk space:","Vrije disk ruimte:"
"Restart","Herstart"
"Stop","Stop"
"Shut Down","Uitzetten"
"Overclocking templates","Overclocking profielen"
"WorkerActions.Upgrade","Wenst u de workers te upgraden naar de laatste OS versie?"
"WorkerMiner.Tooltip","Accepted Rejected Invalid, Accepted Ratio"
"NoStatsFoundSoFar","Nog geen statistieken gevonden"
"Delete","Verwijder"
"You can","U kan"
"create one","Creeer een"
"FarmsAccess.NoUsersFound","Nog geen gebruikers gevonden."
"Owner","Eigenaar"
"Access Levels","Access Levels"
"User name","Gebruikersnaam"
"UserEditForm.GrantAccessProject","Geef toegang tot project"
"Grant access","Geef toegang"
"Access Levels...","Access Levels..."
"User login","Gebruiker login"
"ProjectAccess.TrustUserDescription","U kan toegang geven aan andere gebruikers tot uw farm. Bvb U kan Full Access geven aan uw admins zodat zij het beheer in uw plaats kunnen doen. Of je kan enkel leesrechten geven zodat je technische staff je farm kan monitoren en simpele onderhouds acties kan uitvoeren."
"Profile","Profiel"
"Telegram","Telegram"
"here","hier"
"Bio","Bio"
"Update Info","Update Info"
"Company Info","Bedrijf Info"
"Skype","Skype"
"Phone","Telefoon"
"API docs are","API docs zijn"
"Account.SetupTFAuth","Two-Factor Authenticatie instellen"
"Account.TFAuth","Two-Factor Authenticatie"
"Update Password","Wachtwoord wijzigen"
"Confirm New Password","Bevestig nieuw wachtwoord"
"Account.PasswordError","Wachtwoord moet 8 of meer karakters bevatten."
"New Password","Nieuw wachtwoord"
"Current Password","Huidige wachtwoord"
"Full Name","Volledige naam"
"Account.ProfileSettings.Header","Account profiel instellingen"
"Language","Taal"
"Account.BIODescription1","Extra informatie over U."
"Account.BIODescription2","Dit is optioneel"
"Account.AuthenticationDecstiption","Activeer voor een extra laag van beveiliging voor uw {os} account."
"Account.PasswordDescription","Wijzigen van uw wachtwoord zal ook uw API key resetten."
"Account.ProfileDescription","Uw login is uw identiteit op {os} en is gebruikt om in te loggen."
"6 digits code","6 digits code"
"Enable 2FA","Activeer 2FA"
"Turn off 2FA","Deactiveer 2FA"
"Account.AuthenticationTokenButton","Genereer nieuwe Persoonlijke API-token"
"Authentication Tokens","Authentication Tokens"
"Account.AuthenticationToken","Beheer je persoonlijke api tokers. Je kan nieuwe genereren voor je 3de partij toepassingen. Of je verwijderen vreemde sessies."
"Personal Tokens","Persoonlijke Tokens"
"Session Tokens","Sessie Tokens"
"Authy","Authy"
"Account.AuthenticationTwoFactor3","Welke op meerdere toestellen geinstalleerd kan worden inclusief Desktop."
"Account.AuthenticationTwoFactor4","Scan de code met je camera en type de code hieronder."
"Farm Activity Feed","Farm Activiteiten Feed"
"Pay","Betaal"
"Payments","Betalingen"
"Amount to refill, $","Bedrag op te laden, {currencySymbol}"
"Your Current Balance","Uw huidige balans"
"Payments History","Betalingen verleden"
"Farms Balance","Farm balans"
"Free","Vrij"
"Invoice","Factuur"
"days left","Dagen te gaan"
"Disable Paid Features","Disable betaalde Features"
"Enable Paid Features","Enable betaalde Features"
"Log in","Inloggen"
"Return to","Ga terug"
"Reset password","Wijzig wachtwoord"
"Type email to recover password","Type je email adres om je wachtwoorde te herstellen"
"Error.Text","Sorry, Er heeft zich een ernstige fout voorgedaan op deze pagina."
"Just one step!","Just one step!"
"create wallet","creeer wallet"
"first!","eerst!"
"Farm.FarmsFs.Description","Om Flight Sheets te beheren heb je nodig"
"FarmOC.EmptyMessage","Geen Overclocking Profielen gevonden. Je kan"
"Add OC Template","Toevoegen OC profiel"
"Incoming farms","Incoming farms"
"Log in your account","Log je account in"
"2FA code (if enabled)","2FA code (indien geactiveerd)"
"Remember me","Onthoud mij"
"Forgot password?","Wachtwoord vergeten?"
"Register","Registreer"
"Don't have account yet?","Nog geen account?"
"Referral Link","Referral Link"
"Referral.ReferralLink1","Plaats deze link waar je wenst om personen zich te laten registreren, als ze deze link gebruiker krijg je"
"Your referral","Uw referral"
"Copy to Clipboard","Kopieer naar Clipboard"
"Promo Code","Promo Code"
"Referral.PromoCodeDescription1","Soms kan je geen links delen met mensen. Hier kan je je eigen unieke promotiecode aanmaken zoals 'MIKESHIVE' of 'SAVEBUCKSFORLAMBO'. Als je een hardware of service of andere non internet bedrijf bent is dit een mogelijkheid voor jou. Op deze manier kan je klanten winnen om met jou code te registreren."
"Referral.PromoCodeDescription2","naar hun account eens ze dit doen."
"ETH Wallet Address","ETH Wallet Address"
"Referral Balance","Referral balans"
"Deposit to Hive","Stort naar {os}"
"ReferralTransactionsHistory","Referral transactie verleden"
"Referral.BalanceDescription2","Geef jou ETH wallet address door voor automatische uitbetaling bij het begin van elke maand."
"Referral.BalanceDescription1","miners aangesloten door jou uitnodiging."
"Referral.BalanceDescription3","Referral uitbetalingen gebeuren een keer per maand. U zal betaald worden als u uw adres hier ingeeft."
"Referral.BalanceDescription4","Minimale uitbetaling is {currencySymbol}{amount}."
"Referral.BalanceDescription5",""
"Referral.PromoCodeYoungAccount","Uw account is te nieuw om promocodes te gebruiken."
"Referral.BalanceDescription","U heeft nog geen referral opbrensten."
"Passwords do not match","Wachtwoord komt niet overeen"
"Create new account","Maak nieuwe login"
"Confirm password","Bevestig wachtwoord"
"Register.CheckboxLabelText","Door hier te klikken ga je akkoord met"
"Terms","Voorwaarden"
"Register.HaveAccount","Heeft u reeds een account?"
"RestorePassword.Message","Wachtwoord succesvol verzonden, controleer uw email."
"Remove all","Verwijder alles"
"Id","Id"
"Activity Feed","Activiteiten log"
"Build Log","Build Log"
"Other","Andere"
"Flight Sheet","Flight Sheet"
"Flight Sheets","Flight Sheets"
"FlightSheets.Message","Selecteer Flight Sheet om met minen te starten"
"StartConfOverclocking","Start configuratie overclocking"
"Flash VBIOS","Flash VBIOS"
"OverclocingSettingsFoundSoFar","Geen overclock instellingen gevonden."
"Load From Template","Laad van Template"
"Save As Template","Opslaan als Template"
"Reset All","Reset Alles"
"Configure New Algo","Configureer nieuw Algo"
"Transfer","Transfer"
"Advanced Settings","Geavanceerde instellingen"
"Confirmation required","Bevestiging nodig"
"Settings.RemoveProject2","Verwijderde projecten kunnen NIET terug gehaald worden. Ben je HEEL zeker?"
"Settings.RemoveProject3","Deze actie kan leiden tot gegevensverlies. Om vergissingen te voorkomen vragen we om te bevestigen."
"Please type","Type aub"
"Settings.RemoveProject4","Om door te gaan of sluit dit modal om te annuleren."
"Settings.RemoveProject1","U gaat een worker verwijderen"
"Remove Worker","Verwijder worker"
"Settings.RemovedWorker","Verwijderde workers kunnen niet terug geplaatst worden!"
"Update Worker","Update Worker"
"Worker Name","Worker Naam"
"Worker Settings","Worker Instellingen"
"OpenVPN Config","OpenVPN Config"
"Are you sure?","Ben je zeker?"
"Worker Password","Worker Wachtwoord"
"Settings.ChangePass1","Als je het wachtwoord alleen in de database wijzigt en er is een actieve worker dit dit gebruikt zal deze offline gaan."
"Settings.ChangePass2","Verander wachtwoord in DB en probeer het te veranderen op de worker. Deze actie zal het wachtwoord wijzigen op online workers. Het wachtwoord zal enkel wijzigen bij bevestiging van de worker."
"Settings.ChangePass3","Verander wachtwoord in enkel in de DB. De worker met het huidige wachtwoord zal offline gaan."
"Transfer Worker","Verplaats Worker"
"Settings.WalletTransferFarm","Verplaats worker naar een andere farm"
"Settings.RemoveProject5","Wilt u de worker verwijderen?"
"Settings.WalletTransfer","Uw Wallet verplaatst niet mee met de worker. Stel uw wallet in op de andere farm na het verplaatsen."
"Settings.ConfirmTransferWorker","Wilt u de worker verplaatsen?"
"Select farm","Selecteer Farm"
"Settings.TransferWorker","Flight sheet verplaatst niet mee met de worker. Stel uw Flight sheet in op de andere farm na het verplaatsen."
"Transfer Worker?","Verplaats worker?"
"Tuning","Tuning"
"Worker","Worker"
"Online","Online"
"With Errors","Met fouten"
"Hide filters","Verberg filters"
"Show filters","Toon filters"
"with","met"
"Name changed","Naam gewijzigd"
"Farm settings","Farm instellingen"
"Settings.MargeProject","Je kan enkel samenvoegen naar projectien die je beheerd."
"Merge Project","Project samenvoegen"
"Transfer Project","Verplaats Project"
"Type project name","Typ project naam"
"Select user login","Selecteer gebruiker login"
"Remove Project","Verwijder Project"
"Farm.Setting.Text1","Je gaat de farm verwijderen"
"Type Project Name","Typ Project naam"
"You are going to merge farm","Je gaat de farm samenvoegen"
"Merged project CANNOT be restored!","Samengevoegde projecten kunnen niet hersteld worden!"
"Are you ABSOLUTELY sure?","Ben je zeker?"
"Save Changes","Wijzigingen opslaan"
"Timezone changed","Tijdzone gewijzigd"
"Farm changed","Farm gewijzigd"
"Farm.Settings.TagsDescription","Voeg persoonlijke tags toe om workers te herkennen"
"Farm.Settings.RemoveDescription1","Verwijderen van het project zal alle gerelateerde gegevens verwijderen zoals problemen, aanvragen tot samenvoegen enz."
"Farm.Settings.RemoveDescription2","Verwijderde projecten kunnen niet terug gehaald worden!"
"Farm Title","Farm titel"
"Remove Farm","Verwijder Farm"
"Question.ChangeFarmOwner","Verander Farm Eigenaar"
"ChangeOwnership","Om Eigenaar te wijzigen naar"
"Leave Farm","Verlaat Farm"
"Settings.LeaveFarm","Hierna zal je geen toegang meer hebben tot de farm"
"RemoveFarmAccess","Om farm toegang te verwijderen"
"Question.RemoveAccess","Wenst u uw toegang te verwijderen?"
"Question.RemoveFarm","Wenst u de farm te verwijderen?"
"Question.LeaveFarm","Wenst u de farm te verlaten?"
"Farm.Setting.FarmHashDescription1","Farm hash is gebruikt om worket te verbinden met de farm zonder deze eerst aan te maken op het web."
"Farm.Setting.FarmHashDescription2","Just set it in"
"Farm.Setting.FarmHashDescription3","voor eerste gebruik"
"More details","Meer details"
"Farm Hash","Farm Hash"
"Transfer farm","Verplaats farm"
"Farm.Setting.TransferDescription","Verplaats farm naar andere gebruiker. Geef bestaande login van nieuwe eigenaar in."
"No wallets found so far.","Geen wallet gevonden."
"FlightSheetForm.NamePlaceholder","Geef de naam van de Flight Sheet"
"FSFormItem.DcriHelp","Decred/Siacoin/Lbry/Pascal intensity. Standaard waarde is 30. Voor PASC aanvaardbare waarde is rond de 10, voor SIA ongeveer 15. Hogere waardes kunnen dalingen in ETH mining veroorzaken."
"PoolConfigModal.Advanced","Advanced configuration"
"PoolConfigModal.AdvancedHint","<strong>Be careful.</strong> Each url must be a new line."
"PoolConfigModal.PoolUrls","Enter Urls"
"FS.ConfiguredInMiner","Configured in miner"
"AutoFan","AutoFan"
"Token","Token"
"PageNotFound","Sorry, this page does not exist"
"ConfirmPassword.Message","Enter new password and token send on your email"
"Ethminer.OpenCLCudaHint","Choose GPU platform to use. Note that using OpenCL & CUDA together may fail. Try to use <code>--opencl-platform 1</code> or <code>0</code> in Extra Params to make it work."
"AllRedTemps.Hint","Temperature will be colored red above these values"
"RedTemp.Hint","Temperature will be colored red above this value"
"AutoFans.NoAMD","Do not control AMD cards, only Nvidia"
"AutoFans.Info","Enable fans control. It will keep GPU close to the target temperature. Mining will be stopped on critical temp. Don’t forget to disable fan control in miner for AMD cards."
"RadeonCardFrom.coreState.text3","or 'Power Level' of GPU core. For RX cards it's a value from"
"RadeonCardFrom.AggressiveUndervolting","Aggressive undervolting (set OC for each DPM state)"
"Settings.VPN","VPN can't be changed right now. Command is running"
"VPN.HelpInfo","Files will be named as following, so certificates in client.conf should be named ca.crt, client.crt, client.key. Also you can embed certificates in client.conf and upload just one file."
"Required filed","Required filed"
"Promocode","Promocode"
"GPU","GPU"
"ASICS","ASICS"
"Account Login","Account Login"
"Password changed","Password changed"
"Settings.transferTargetText","You have already sent a transfer request to"
"FarmTempHeader.GPUCriticalTemperature","GPU Critical Temperature"
"Account.AuthenticationTwoFactor1","BACKUP THIS CODE. Best way is to make screenshot and print it."
"Account.AuthenticationTwoFactor2","If you loose the code then you will not be able to restore access to account if you loose authenticating device (your phone)."
"SelectAmd","Select AMD card"
"Activity","Activity"
"Access","Access"
"Settings","Settings"
"Unsubscribe","Unsubscribe"
"File shouldn't be empty","File shouldn't be empty"
"TheLatestActivity","The Latest Activity"
"Referal.EnterPromocode","Your creative promo code here"
"FlightSheetFrom.AddMiner","If you need to run several miners"
"Settings.NotificationSubscribe","You are not subscribed."
"OverclockingAlgoFrom.Title1","Edit Overclocking Settings"
"OverclockingAlgoFrom.Title2","Configure Overclocking Settings"
"NewWallet","New Wallet"
"EditWallet","Edit Wallet"
"Settings.Notifications.AccountLogin","Account Login"
"Settings.Notifications.DetectedWorkerOffline","Detected Worker Offline"
"Settings.Notifications.DetectedWorkerOnline","Detected Worker Online"
"Settings.Notifications.WorkerBooted","Worker Booted"
"Settings.Notifications.ErrorMessages","Error messages"
"Settings.Notifications.WarningMessages","Warning messages"
"Settings.Notifications.InfoMessages","Info messages"
"Settings.Notifications.SuccessMessages","Success messages"
"Settings.Notifications.GPUTemp","GPU Temp >= Red Temp + 3°"
"Settings.Notifications.HourlySummary","Hourly Summary"
"ConfirmTransferToHive.Title","How much send to deposit {os}?"
"ConfirmTransferToHive.ErrorMessage","You not have enough amount"
"FS.ConfirmatioTitle","Attention! This Flight Sheet is running at other workers"
"FS.ConfirmatioMessage","Do you want to run as a new Flight Sheet on this worker or update with other workers?"
"FS.UpdateAll","Update all workers"
"FS.CreateNewFS","Create new FS"
"NvidiaCardForm.DelayPill","Delay in seconds before running the pill"
"NvidiaCardForm.DelayPillHint","May help to prevent bug on some 1080 cards, try to set this value to 120 and higher."
"WorkerSettings.CardsQuantityHint","Number of cards in the worker increased automatically. But if you need decrease them, please update this parameter"
"WorkerSettings.CardsQuantityPlaceholder","Enter number"
"Cards Quantity","Cards Quantity"
"WorkerSettings.DisableGUI","Disable GUI on boot"
"WorkerSettings.DisableGUIHint","Don't start X server, console only, no OC for Nvidia"
"WorkerSettings.Resend","Resend all configs"
"WorkerSettings.ResendHint","In case the worker is unsynced you can send all miner, OC and other configs."
"Push","Push"
"MinerForm.Template.examples","Template examples"
"MinerForm.Template.forMost","for most of the pools"
"MinerForm.Template.for","for"
"MinerForm.Template.text1","For correct template string please read your pool help section, they have the details how to format it."
"MinerForm.Template.text2","will be substituted with correct values from the wallet."
"MinerForm.Template.text3","will be replaced with the worker name."
"WDConfig.EnableWatching","Enable watching for hashrate, if it drops below minimal then there will be attempt to restart miner."
"WDConfig.RestartNotHelp","If miner restart does not help, then reboot will be done."
"WDConfig.On","Hashrate Watchdog On"
"WDConfig.Off","Hashrate Watchdog Off"
"WDConfig.SetUsed","Set values for used miners"
"WDConfig.SetOther","Set values for other miners"
"ConsoleCommand.ShowInfo","show info about Nvidia cards"
"ConsoleCommand.ShowFreq","show current frequencies for AMD cards"
"ConsoleCommand.LogsRam","logs in RAM to save USB flash drives"
"ConsoleCommand.LogsDisk","logs on disk, will remain after reboots"
"ConsoleCommand.ShowFreqAmd","show current frequencies for AMD cards"
"ConsoleCommand.AmdExtended","show extended info about AMD card"
"ConsoleCommand.AmdVoltage","show voltage table for AMD GPU #0"
"ConsoleCommand.SayHello","say hello to server again to refresh data"
"ConsoleCommand.ServiceBoot","show {os} service boot log"
"ConsoleCommand.SendReset","send “reset” command to OpenDev watchdog"
"ConsoleCommand.SendPower","send “power” command to OpenDev watchdog"
"ConsoleCommand.GpuScript","script to find GPU by spinning fans"
"Deselect","Deselect"
"Overclocking Templates","Overclocking Profiles"
"MinerForm.Url.PoolUrl","Pool URL including protocol and port like"
"MinerForm.Url.ForFailOver","For failover pools just write them on the next line, pass is used onefor all."
"MinerForm.BminerForm.With","with"
"MinerForm.BminerForm.More","More"
"MinerForm.Url.ItHas","It has the format of"
"MinerForm.Url.LooksLike","For example, it looks like"
"MinerForm.Url.Subscribe","if you are using flypool. Substitute"
"MinerForm.Url.IfYou","if connecting to the pool via SSL."
"MinerForm.Url.Examples","bminer examples"
"MinerForm.UserConfig.Text1","Put extra params to the config if you need. One on each line in the following format without comas or dots at the end of line. Refer to generated config for available miner config values."
"MinerForm.UserConfig.Text2","set frequency"
"MinerForm.UserConfig.Text3","set voltage"
"MinerForm.UserConfig.Text4","miner API available methods"
"MinerForm.BMinerConfig.Text1","You can put here something like"
"MinerForm.BMinerConfig.Text2","Space separated list of cuda devices"
"MinerForm.BMinerConfig.Text3","More options here"
"MinerForm.BMinerConfig.Text4","Bminer reference"
"MinerForm.Fork.List","Detailed list of forks is"
"MinerForm.Fork.here","here"
"MinerForm.Fork.Run","Run"
"MinerForm.Fork.Check","to check fork updates."
"MinerForm.Algo.Which","Which algorithm to use for mining. For"
"MinerForm.Algo.ItShould","it should be"
"MinerForm.Algo.Example","for example"
"MinerForm.InstallUrl.Where","URL where to get"
"MinerForm.InstallUrl.Package","package. It will not be downloaded if already installed."
"MinerForm.Miner","This is the name of installed miner. Like"
"MinerForm.CCPoolExtra","Put extra params to the pool if you need. One on each line in the following format without comas or dots at the end of line. Example parameters"
"MinerForm.CCExtra.Text1","These are extra parameter for the miner. One on each line in the following format without comas or dots at the end of line. Example parameters"
"MinerForm.CCExtra.Text2","verbose dump of protocol-level activities"
"MinerForm.CCExtra.Text3","comma separated list of CUDA devices to use"
"MinerForm.CGMInerConf.Text1","Put extra params to the config if you need. One on each line in the following format without comas or dots at the end of line."
"MinerForm.CGMInerConf.Text2","to turn off fans control"
"MinerForm.CGMInerConf.Text3","Example parameters for Cryptonight"
"MinerForm.CGMInerConf.Text4","Example parameters for Ethash"
"MinerForm.CGMInerConf.Text5","To see what's wrong"
"MinerForm.CGMInerConf.Text6","Select device to use, one value, range and/or comma separated (e.g. 0-2,4)"
"MinerForm.CGMinerFork.Text1","You have to try different versions as each of them may not work with some algos or pools."
"MinerForm.CGMinerFork.Text2","Also try to add"
"MinerForm.CGMinerFork.Text3","and"
"MinerForm.CGMinerFork.Text4","in config to see more details to inspect the problem."
"MinerForm.CGMinerFork.Text5","Detailed list of forks is"
"MinerForm.CGMinerFork.Text6","here"
"MinerForm.DpoolTpl.Text1","example for SIA on nanopool"
"MinerForm.DpoolTpl.Text2","will be substituted with correct values from the wallet. For correct WALLET string please read your pool help section, they have the details how to format it."
"MinerForm.ClaymoreDescr.Text1","Decred/Siacoin/Lbry/Pascal intensity. Default value is 30."
"MinerForm.ClaymoreDescr.Text2","For PASC reasonable value is around 10, for SIA it's around 15. Higher values will cause dropdown on ETH mining."
"MinerForm.ClaymoreConfig.Text1","Put here settings which you want to appear in config.txt of Claymore, ONE ON EACH LINE. For example"
"MinerForm.ClaymoreConfig.Text2","will set fans to 100%"
"MinerForm.ClaymoreConfig.Text3","will set target temperature to 65C"
"MinerForm.ClaymoreConfig.Text4","to disable fan control"
"MinerForm.ClaymoreConfig.Text5","use GPUs 3, 4, 10, 11"
"MinerForm.ClaymoreConfig.Text6","Please refer to"
"MinerForm.ClaymoreConfig.Text7","Claymore documentation"
"MinerForm.ClaymoreConfig.Text8","for other settings"
"MinerForm.CpuMinerConfig.Text1","Put extra params to the config if you need. One on each line in the following format without comas or dots at the end of line. Example parameters"
"MinerForm.CpuMinerConfig.Text2","number of miner threads (default: number of processors). Recommedation for most algos n = cores - 1"
"MinerForm.CpuMinerConfig.Text3","set process affinity to cpu core(s), mask 10 (0xA) for cores 1 and 3"
"MinerForm.CpuMinerConfig.Text4","temp in degrees Celsius (default value is 85), stop mine."
"MinerForm.Server","For failover pools just write them on the next line, pass is used one for all."
"MinerForm.DstmConf.Text1","You can put here something like"
"MinerForm.DstmConf.Text2","Comma separated list of cuda devices"
"MinerForm.DstmConf.Text3","Reduce the load, comma separated list of dev_id:intensity values"
"MinerForm.DstmConf.Text4","The workload of each GPU will be continuously adjusted such that the temperature stays around this value. Comma separated list of of dev_id:temp-target values e.g"
"MinerForm.EthServ.Text1","For getwork use one of the following schemes"
"MinerForm.EthServ.Text2","For stratum use one of the following schemes"
"MinerForm.EthServ.Text3","Examples"
"MinerForm.EthConf.Text1","You can put here something like"
"MinerForm.EthConf.Text2","which OpenCL devices to mine on"
"MinerForm.EthConf.Text3","which CUDA devices to mine on"
"MinerForm.EwbtConf.Text1","Put extra params to the config if you need. One on each line in the following format without comas or dots at the end of line. Example parameters"
"MinerForm.EwbtConf.Text2","to use only specific GPUs"
"MinerForm.EwbtConf.Text3","to set custom temp limit"
"MinerForm.LolConf.Text1","You can put here something like"
"MinerForm.LolConf.Text2","Comma separated list of devices"
"MinerForm.OptiConf.Text1","You can put here something like"
"MinerForm.OptiConf.Text2","OpenCL device id to use. If no devices are specified, all are used"
"MinerForm.OptiConf.Text3","The OpenCL platform id to use"
"MinerForm.OptiConf.Text4","Worker intensity. 0 means auto-detect based on available memory"
"MinerForm.XmConf.Text1","Put extra params to the config if you need. One on each line in the following format without comas or dots at the end of line. Example parameters"
"MinerForm.XmConf.Text2","reduce CPU usage from 75% to 50%"
"MinerForm.XmConf.Text3","Other parameters find in"
"MinerForm.XmConf.Text4","xmrig doc"
"MinerForm.XmUrl.Text1","Pool address should be in the form"
"MinerForm.XmUrl.Text2","Only stratum pools are supported"
"MinerForm.XmUrl.Text3","For failover pools just write them on the next line, pass is used one for all"
"MinerForm.XmStakCpuUrl.Text1","Pool address should be in the form"
"MinerForm.XmStakCpuUrl.Text2","Only stratum pools are supported"
"MinerForm.XmrAmd.Text1","Full contents of amd.txt, example below"
"MinerForm.XmrAmd.Text2","To disable AMD GPUs"
"MinerForm.XmrAmd.Text3","Tuning guide"
"MinerForm.XmrNvidia.Text1","Full contents of nvidia.txt, example below"
"MinerForm.XmrNvidia.Text2","To disable Nvidia GPUs"
"MinerForm.XmrNvidia.Text3","Tuning guide"
"MinerForm.XmrCpu","Full contents of cpu.txt, example below"
"per","per"
"OC.DefaultConfig","Default Config"
"OC.DefaultHint","Used by default. Can be overridden by algo configuration"
"Account.AuthenticationTokenCurrent","Current Session Tokens"
"Account.AuthenticationTokenOther","Other Session Tokens"
"Enter amount","Enter amount"
"Send","Send"
"Revoke","Revoke"
"Monitor","Monitor"
"Tech","Tech"
"AccessLevel.Monitor","Monitor and Stats, Worker details. Tags can be assigned to limit workers visibility for trusted account."
"AccessLevel.Tech","Overclock, Reboot and Shutdown, Upgrade."
"AccessLevel.Rocket","Apply miner and wallet to worker. Create and delete Workers."
"AccessLevel.Advanced","Execute commands, VPN, Wallets, Tuning."
"AccessLevel.Full","Password, 2FA, Notifications, Payments, Ownership."
"Full Access","Full Access"
"Advanced","Advanced"
"CompactView.Status.InvalidShares","Low Ratio or Invalid shares"
"CompactView.Status.HightTemperature","High Temperature"
"CompactView.Status.LowHashrate","Low hashrate"
"Load Avg","Load Avg"
"Subscribed","Subscribed"
"Create Flight Sheets","Create Flight Sheets"
"Worker.FlightSheets.epmtyMessage","To start mining"
"FS.ActiveFSEdit","This Flight Sheet is active."
"FS.ApplyAll","All workers"
"FS.AttachedWorlers","Attached workers"
"FS.ChangesWillBeApplied","Changes will be applied to all the workers using this FS."
"FS.NewFSWillBeCreated","New FS will be created for this worker and applied only to it."
"FS.OnlyThis","Only this worker"
"Account.WhiteList","White List"
"Account.WhiteListHint","Here you can limit IPs that allowed to login to your account. The values are separated by spaces."
"Account.WhiteListHint2","Your current IP address is."
"Account.WhiteListHint3","Basic checks are done on server so you will not cut yourself off."
"Account.WhiteListExamples","Examples:"
"Account.WhiteListExample1","single IP address is allowed"
"Account.WhiteListExample2","two IPs are allowed"
"Account.WhiteListExample3","will match any IP staring with 172.217.16."
"Account.WhiteListExample4","will match any IP staring with 172.217.d"
"Account.WhiteListExample5","single IPV6 address"
"Account.WhiteListExample6","will match any IPV6 address staring with 2001:db8::"
"Account.WhiteListPlaceholder","Enter IP address"
"Account.WhiteListAddNewPlaceholder","Enter new IP address"
"CoinPaymentsDeposits","CoinPayments Deposits"
"Billing.TransactionFee","Add TRANSACTION FEE to the specified amount"
"Billing.FAQ","Payment FAQ"
"WorkerSettings.GuiTurnedOn","GUI turned On"
"WorkerSettings.GuiTurnedOff","GUI turned Off"
"VPN.TurnedOn","VPN turned On"
"VPN.TurnedOff","VPN Turned Off"
"Account.AuthenticationTwoFactor5","Google Authenticator is not the best choice as if you loose break the phone your codes are gone. An advice would be to use"
"BillingFarm.DaysUntil","Days until farm is locked"
"BillingFarm.ToLock","days to lock"
"AMD","AMD"
"Card Types","Card Types"
"TEMP","TEMP"
"FAN","FAN"
"Core","Core"
"MEM","MEM"
"FlightSheets.ToManage","To manage your wallets go to"
"FlightSheets.WalletsPage","Wallets page"
"FS.WallAddress","Wallet Address"
"Claymore User Config","Claymore User Config"
"2FA.ON","Two Factor Authentication turned On"
"2FA.OFF","Two Factor Authentication turned Off"
"Account.TwoFactorDisableDescription","Enter the code to disable 2FA. Saved QR code (secret) will no longer work, you can delete it after."
"MinerForm.Custom.InstallationUrl","Installation URL"
"MinerForm.Custom.MinerName","Miner name"
"AutoFans.ON","AutoFan On"
"AutoFans.OFF","AutoFan Off"
"AutoFans.TargetTemp","Target temperature"
"AutoFans.MinFan","Min fan speed"
"AutoFans.MaxFan","Max fan speed"
"AutoFans.Critical","Critical temperature"
"AutoFans.NoAMDLabel","No AMD"
"AutoFans.RebootOnErrors","Reboot on errors"
"WDConfig.Minutes","minutes"
"WDConfig.MinerRestart","Miner restart after"
"WDConfig.RebootAfter","Reboot rig after"
"Server","Server"
"Pass","Pass"
"Port","Port"
"Template","Template"
"Server Urls","Server Urls"
"PersonalToken.Placeholder","Enter name for personal token"
"2FA Disabled","2FA Disabled"
"2FA Enabled","2FA Enabled"
"Discount","Discount"
"Monthly price","Monthly price"
"Daily use","Daily use"
"Payments.DailyRigsUse","Daily Rigs Use"
"Payments.DailyRigsPrice","Daily Rigs Price"
"Payments.DailyAsicsPrice","Daily ASIC Price"
"Payments.DailyAsicsUse","Daily ASIC Use"
"Payments.Refill","To refill your balance visit"
"rig","rig"
"Coin.TypeIn","Type in Coin"
"CoinPaymentsDeposits.ShowAll","Show All Deposits"
"gained","gained"
"subscribed","subscribed"
"OverclockingAlgoTable.CcAlgoResolved","Click Add to set overclocking to this algo"
"Algo","Algo"
"Billing Page","Billing Page"
"Select algo","Select algo"
"more","more"
"PaymentsList.CheckStatus","Check your payment status"
"AsicTable.Chain","Chain"
"AsicTable.ASIC","ASIC"
"AsicTable.Frequency","Frequency"
"AsicTable.HW","HW"
"AsicTable.Temp","Temp"
"AsicTable.ASICStatus","ASIC Status"
"FilterWallets.more","more wallets"
"Tuned","Tuned"
"MiningInfo.Title","Mining Info"
"MiningInfo.Tuned","Tuned miner"
"OverclockingAlgoTable.more","more"
"PowerGraph.Power","Power"
"The latest","The latest"
"for","for"
"PoolConfigModal.EnterUrls","Enter Urls"
"Intensity:","Intensity:"
"Wallet Address","Wallet Address"
"Dcoin","Dcoin"
"Example for nanopool","Example for nanopool"
"WalletWorkTemplate:","Wallet and worker template:"
"dstm 0.6.0 had changed config syntax","dstm 0.6.0 had changed config syntax"
"Action.OCUpdated","Overclocking Profile successfully updated."
"Action.OCRemoved","Overclocking Profile successfully removed"
"Worker added","Worker added"
"Worker removed","Worker removed"
"Worker updated successfully","Worker updated successfully"
"Password successfully updated","Password successfully updated"
"Worker has been transferred","Worker has been transferred"
"Action.RemoveAllWorkersMessages","All workers' messages have been removed"
"Action.NowFarmYours","Now farm belongs to you"
"Action.RequestRejected","Request have been successfully rejected"
"Action.LoginInvalid","Invalid login"
"Action.KeyUpdated","API KEY updated"
"Action.KeyRemoved","API KEY removed"
"Action.KeyAdded","API KEY added"
"Action.YouUnsubscribed","You successfully unsubscribed"
"Action.YouSubscribed","You successfully subscribed"
"Action.WorkerUpdated","Worker updated successfully"
"Url","Url"
"Should be selected at least one server","Should be selected at least one server"
"Filed is required","Filed is required"
"NewRig","Looks something new! Let`s 🚀 to the 🌕"
"NewRig.Read","Please read the"
"NewRig.Read2","installation guide"
"NewRig.Read3","on how to setup your worker"
"or","or"
"InfoWorker.Password","Password must be 1 or more characters."
"discount","discount"
"RemoveWorkerModal.Text1","You are going to remove workers"
"RemoveWorkerModal.Text2","Removed workers CANNOT be restored! Are you ABSOLUTELY sure?"
"RemoveWorkerModal.Text3","This action can lead to data loss. To prevent accidental actions we ask you to confirm your intention"
"Workers removed","Workers removed"
"Shut down worker?","Shutdown worker?"
"Shut down workers?","Shutdown workers?"
"High Load Avg.","High Load Avg."
"Payments.PricePerRig","Price Per Rig"
"Payments.PricePerAsic","Price Per ASIC"
"30 minutes","30 minutes"
"1 hour","1 hour"
"From farm balance","From farm balance"
"Connect via","Connect via"
"ConsoleCommand.Hello","say hello to server for data refresh"
"ConsoleCommand.Dmesg","show info about core loading and drivers"
"ConsoleCommand.BminerApi","show bminer API info"
"ConsoleCommand.CgminerApi","show cgminer API info"
"ConsoleCommand.Selfupgrade","update to latest version"
"ConsoleCommand.InnosiliconEnableCron","enable cgminer restart once per 24h (only for Innosilicon)"
"YourFunds","Your Funds"
"FarmBalance","Farm Balance"
"RefillBalance","Refill Balance"
"RefillMethod","Choose method to refill"
"Coinpayments","CoinPayments"
"MyDeposit","My Deposit"
"OtherFarms","Other Farms"
"Referal","Referal"
"AddFee","Add Transaction Fee to specified account"
"WhatIsFee","What is a Transaction Fee"
"RefillFromDeposit","You can refill farm from your deposit"
"BillingInformation","Billing information is updated daily."
"DownloadInvoiceInfo","You can download an invoice for choosen period."
"PaidFeatures","Paid Features"
"PaidFeaturesSSL","Secure communication with API over HTTPS"
"PaidFeaturesStats","Statistics are shown for the past 3 month of usage, while comparably for non-paid accounts it's 3 days"
"Invoices","Invoices"
"PaidFeaturesEnabled","Paid Features Enabled"
"PaidFeaturesDisabled","Paid Features Disabled"
"Payer","Payer"
"PayerInfo","You can set another user to be responsible for depositing farms you own. This user can be your financial manager and requires only Monitor access to your farms."
"PayerTransfer","Transfer responsibility of farm billing"
"PayerUser","Set other user as payer"
"Debt","Debt"
"AutomaticWithdraw","Your funds will automatically withdraw the amount of daily use from Your Funds after zero balance was reached."
"Use deposit, $","Use deposit, {currencySymbol}"
"TransferPaymentOwnership","You can transfer payment ownership of the farms to others"
"ManualyTransfer","You can manually transfer funds from Your Deposit to a farm or a user"
"YourDepositUsage","Your Deposit is used by the default auto-withdrawal for all farms where you are the owner"
"RefillDeposit","Refill Deposit"
"BillingFAQ","Billing FAQ"
"IncomingPayerRequest","Do you agree to pay for the next farms?"
"Action.TransferPayerRole","Request for payer change has been sent"
"Billing.transferTargetPayerText","You have already sent a payer request to"
"AutoFans.CriticalAction","Critical Action"
"AutfanTTHint","Autofan controls the fans. Claymore -tt values are ignored."
"GPURedTemp","GPU Temperature"
"AsicRedTemp","ASIC Temperature"
"MonitorThreshold","Monitor Threshold"
"SignIn","Sign In"
"Daily cost","Daily cost"
"TransferToOthers","Transfer funds to others"
"Action.TransferComplete","Transfer complete"
"TransferRules","You can't send funds to user that doesn't exist"
"Amount to transfer, $","Amount to transfer, {currencySymbol}"
"Disk Model","Disk Model"
"FSMinerDuplicates","Miners can't be duplicated in same flight sheet"
"Account.WhiteListWarning","Don't use this on Dynamic IP (if your ISP changes it or you are Mobile network)"
"NewRig.Read4","To"
"Search","Search"
"Sure want to delete selected flight sheets?","Sure want to delete selected flight sheets?"
"Action.SelectedFlightSheetsRemoved","Selected flight sheets removed"
"Action.SelectedWalletsRemoved","Selected wallets removed"
"AccountIsLockedByAdministrator","Account is locked by administrator"
"Farm.FarmsFs.CreateWalletFirst","To manage Flight Sheets you need {createWalletLink} first"
"NvidiaCardForm.RunningDelay","Delay in seconds before applying overclock"
"MinerThreads","Miner Threads"
"Expand","Expand"
"Collapse","Collapse"
"Hashrate","Hashrate"
"Temperature","Temperature"
"Fans","Fans"
"Status","Status"
"Ratio","Accepted Ratio"
"Units","Units"
"No workers found so far.","No workers found so far."
"Shutdown and then boot after 30 seconds","Shutdown & boot in 30s"
"Export CSV","Export CSV"
"Refresh","Refresh"
"per row","per row"
"ConsoleCommand.Wakeralarm","Shutdown and reboot in 120 seconds"
"Import Flight Sheet","Import Flight Sheet"
"Close","Close"
"Impossible to perform action","Impossible to perform action"
"Invalid file format. JSON expected.","Invalid file format. JSON expected."
"To manage overclocking go to Overclocking Templates page","To manage overclocking go to {overclockingTemplatesHref} page"
"To manage your wallets and flightsheets go to wallets page","To manage your flight sheets or wallets go to {flightSheetsHref} or {walletsHref}"
"Reading file error","Reading file error"
"MinerUptime","Miner Uptime"
"SelectOrAddTag","Select or start to type"
"SelectWorkers","Select workers"
"Mode","Mode"
"code replaced by wallet","{code} will be replaced with correct value from the wallet."
"code replaced by email","{code} will be replaced with correct value from the pool config."