-
Notifications
You must be signed in to change notification settings - Fork 8
/
pt.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) · 89.7 KB
/
pt.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","um erro ocorreu , por favor tente mais tarde."
"Action.FlightSheetRemoved","Plano de mineração removido"
"Action.FlightSheetCreated","Plano de mineração criado"
"Command sent","Comando enviado"
"Action.TransferFarm","Tranferir Farm"
"Settings updated","Configurações actualizadas"
"Tag added","Tag Adicionada"
"Tag edited","Tag Editada"
"Tag removed","Tag Removida"
"Wallet added","Adicionar Carteira"
"Wallet edited","Editar Carteira"
"Wallet removed","Remover Carteira"
"Collaborator added","Adicionar Colaborador"
"Collaborator removed","Remover Colaborador"
"Collaborator edited","Editar Colaborador"
"Action.LeftFarm","Sair da Fazenda"
"Action.UpdateFs","Atualizar Plano"
"Action.AddOC","Adicionar OC"
"Action.RefillFarm","Recarga de Farm"
"Action.ErrorServerRequest","Erro na solicitação do servidor"
"Error","Erro"
"Action.SendPromocode","Enviar código promocional"
"Action.PatchToken","Corrigir Token"
"Action.AddToken","Adicionar Token"
"Action.DeleteToken","Apagar Token"
"Promocode successfully sended","Código promocional enviado com sucesso"
"Action.UpdatePayoutAddresses","Atualizar endereço de pagamento"
"Action.PayoutToAccount","Pagar para conta"
"Action.SetPassword","Informar senha"
"2FA enabled","2FA Activada"
"2FA removed","2FA Desativada"
"NVIDIA","NVIDIA"
"Apply","Aplicar "
"Confirm","Confirmar"
"TelegramSubscribe","Inscrever-se no Telegram"
"Enter code to confirm","Intruduzir código para confirmar"
"Subscribe","Subscrever "
"Remove","Remover"
"Are you shure?","Você tem certeza?"
"Edit","Editar"
"temp","Temperatura"
"Farms","Farms"
"workers","Mineradoras"
"ethash","ethash"
"CriticalIssues",""
"Off","Desligar"
"30 seconds","30 Segundos"
"1 minute","1 Minuto"
"2 minutes","2 Minutos"
"5 minutes","5 Minutos"
"AutoRefresh","Carregamento automático"
"All","Todos"
"Cancel","Cancelar"
"Download VBIOS","Download VBIOS"
"GPU index","Número da GPU"
"NotGPUDifferent","Não sao GPU diferentes"
"Download","Descarregar"
"Apply Changes","Aplicar Modificações"
"WalletWorkTemplate","Padrão de funcionamento da carteira"
"Pass:","Senha:"
"Extra config arguments:","Argumentos extras de configuração:"
"Pool URL:","URL da Poll:"
"Miner Fork:","Variação do Mineiro:"
"Hash algorithm:","Algoritimo de Hash:"
"Extra params for pool:","Parametros Extra para Pool:"
"Extra arguments for miner:","Argumentos extras do minerador:"
"Version:","Versão:"
"Template examples:","Exemplos de Templates:"
"for most of the pools","para a maioria das pools"
"Intensity, -dcri 0...100","Intensidade, -dcri 0...100"
"claymore","claymore"
"epools.txt template:","modelo epool.txt:"
"dpools.txt template:","modelo dpool.txt:"
"Claymore config override:","Substituição de configuração do Claymore:"
"Example for nanopool:","Exemplo de Nanopool:"
"Example for nicehash:","Exemplo de NiceHash:"
"Second coin algo","Algoritimo da segunda moeda"
"Config override:","Substituição de configuração:"
"Pool server:","Servidor da Pool"
"Port:","Porta:"
"index","Indiçe"
"AMD config override:","Substituição da configuração AMD:"
"Nvidia config override:","Substituição da configuração Nvidia:"
"CPU config override:","Substituição da configuração CPU:"
"Errors","Erros"
"last 24 hours","últimas 24 horas"
"Workers with errors","Mineradora com erros"
"No errors found","Nenhum erro encontrado"
"Show","Exibir"
"Overclocking","Overclocking"
"Coins","Moedas"
"Pools","Pools"
"Miners","Mineradores"
"Select pools","Selecione a pool"
"Select miners","Selecione o minerador"
"Select coin","Selecione a moeda"
"Select overclocking","Selecione o overclock"
"by","por"
"View payload","Ver pagamento"
"Add Wallet","Adicionar Carteira"
"Red Temperature","Modelo vermelho"
"Trust user","Usuário confiável"
"Add Worker","Adicionar Mineradora"
"FarmNavCleanWorkers","FarmNavClamWorkers"
"Save","Salvar"
"FarmTempHeader.ASICCriticalTemperature","FarmTempHeader.ASICCriticalTemperature"
"Ask a question","Fazer uma pergunta"
"Report an issue","Comunicar um problema"
"Tags","Tags"
"Wallets","Carteiras"
"Platform","Plataforma"
"Run","Executar"
"Wallet","Carteira"
"Coin","Moeda"
"Pool","Pool"
"Miner","Minerador"
"Select pool","Selecione a pool"
"Select miner","Selecione o minerador"
"Select wallet","Selecione a carteira"
"Configure Pool","Configurar Pool"
"Setup Miner Config","Configuração do Minerador"
"Dual Coin","Segunda Moeda"
"Dual Wallet","Segunda Carteira"
"Dual Pool","Segunda Pool"
"Configure in miner","Configurado no minerador"
"Update","Atualizar"
"Add New Flight Sheet","Adicionar Novo Plano de Mineração"
"Reset","Reiniciar"
"Create Flight Sheet","Criar Plano de Mineração"
"Add Miner","Adicionar Minerador"
"Email","Email"
"worker","mineradora"
"selected","selecione"
"FlightSheetsRocket.Message","FlightSheetsRocket.Message"
"Choose Flight Sheet for","Selecione o plano de mineração para"
"Your Company","Sua companhia"
"Home","Início"
"Admin","Administrador"
"Privacy","Privacidade"
"Not Found","Não encontrado"
"off","desligado"
"No","Não"
"min","mínimo"
"Remote","Remoto"
"Consumption","Consumo"
"AES","AES"
"Cores","Cores"
"Motherboard","Placa mãe"
"Free space","Espaço livre"
"Free RAM","RAM livre"
"OS version","Versão do OS"
"Drivers","Drivers"
"Yes","Sim"
"System type","Tipo do systema"
"Kernel","Kernel"
"Local IP","IP local"
"Load Average","Média de carga"
"rigs","rigs"
"Jump to farms, workers...","Ir para farms, mineradoras"
"Notifications","Notificações"
"unread","não lida"
"Show all","Exibir todos"
"No notifications yet","Ainda sem notificações"
"View geo location","Ver localização geográfica"
"from","de"
"Accept","Aceitar"
"Decline","Recusar"
"Term expires in","Prazo termina em"
"Enter value","Digita um valor"
"Generate","Gerar"
"Enter start date","Digite a data inicial"
"Start date","Data inicial"
"End date","Data final"
"Enter end date","Digite a data final"
"Name","Nome"
"Create","Criar"
"Russian","Rúsia"
"Chinese","Chinês"
"English","Inglês"
"NoActiveFound","NoActiveFound"
"all activities","todas as atividades"
"Latest Activity","Últimas atividades"
"Load","Carregando"
"warning","atenção"
"Previous","Anterior"
"Next","Próximo"
"configuration","configuração"
"MiningInfo","Informação da mineração"
"Account","Conta"
"Sign Out","Sair"
"Billing","Faturamento"
"Support","Suporte"
"Community","Comunidade"
"Forum","Forum"
"Referrals","Referências"
"NoRightsMessage","NoRightsMessage"
"to","para"
"Login","Entrar"
"access","acesso"
"Notification.EventChanged","Notification.EventChanged"
"Notification.AccessChanged","Notification.AccessChanged"
"Notification.WhitelistChanged","Notification.WhitelistChanged"
"Account.NotificationDescription6","Account.NotificationDescription6"
"Account.NotificationDescription1","Account.NotificationDescription1"
"Account.NotificationDescription2","Account.NotificationDescription2"
"Account.NotificationDescription3","Account.NotificationDescription3"
"Account.NotificationDescription4","Account.NotificationDescription4"
"Account.NotificationDescription5","Account.NotificationDescription5"
"Update Settings","Atualizar configurações"
"Fan","Fan"
"Core Clock","Core Clock"
"Memory Clock","Memory Clock"
"Power Limit","Power Limit"
"(0 for auto)","(0 para automático)"
"(0 for stock value)","(0 para valor armazenado)"
"NvidiaCardFrom.SpecifyDevice","NvidiaCardFrom.SpecifyDevice"
"NvidiaCardFrom.MemClock","NvidiaCardFrom.MemClock"
"NvidiaCardFrom.OffLED","NvidiaCardFrom.OffLED"
"OhGodAnETHlargementPill","OhGodAnETHlargementPill"
"ValueCardSeparatedSpace.","ValueCardSeparatedSpace."
"one value for all GPUs.","um valor para todas as GPUs"
"means GPU0 = none, GPU1 = 100, etc.","significa que GPU0=nenhum, GPU1=100, etc."
"Configure","Configurar"
"Overclocking Settings","Configurações de Overclock"
"OverclockingProfileModal.Text","OverclockingProfileModal.Text"
"ApplyOverclockProfile","Aplicar perfil de overclock"
"Invalid Shares","Ações Inválidas"
"Show all payments","Exibir totos os pagamentos"
"No payments yet","Nenhum pagamento ainda"
"Pool address","Endereço da pool"
"Select pool address","Selecione o endereço da pool"
"Add New Pool","Adicionar nova Pool"
"Enter email","Digite o email"
"Select Pool Server","Selecione o Servidor da Pool"
"Selected Pool Servers","Selecionado o Servidor da Pool"
"on","ligado"
"rights","direitos"
"Workers","Mineradoras"
"Balance","Saldo"
"Shared with me","Compartilhar comigo"
"Timezone","Timezone"
"Create New Farm","Criar nova Farm"
"Select timezone","Selecionar timezone"
"Input farm name","Informe o nome da farm"
"Mem State","Mem State"
"Core Voltage","Core Volage"
"Core State","Core State"
"RadeonCardFrom.fanSpeed2","RadeonCardFrom.fanSpeed2"
"RadeonCardFrom.fanSpeed1","RadeonCardFrom.fanSpeed1"
"RadeonCardFrom.memState.text3","RadeonCardFrom.memState.text3"
"RadeonCardFrom.memState.text2","RadeonCardFrom.memState.text2"
"RadeonCardFrom.memState.text1","RadeonCardFrom.memState.text1"
"RadeonCardFrom.coreVddc.text5","RadeonCardFrom.coreVddc.text5"
"RadeonCardFrom.coreVddc.text4","RadeonCardFrom.coreVddc.text4"
"RadeonCardFrom.coreVddc.text3","RadeonCardFrom.coreVddc.text3"
"RadeonCardFrom.coreVddc.text2","RadeonCardFrom.coreVddc.text2"
"RadeonCardFrom.coreVddc.text1","RadeonCardFrom.coreVddc.text1"
"RadeonCardFrom.coreState.text4.","RadeonCardFrom.coreState.text4."
"Default is","Padrão é"
"RadeonCardFrom.coreState.text2","RadeonCardFrom.coreState.text2"
"RadeonCardFrom.coreState.text1","RadeonCardFrom.coreState.text1"
"RadeonCardFrom.coreClock.text2","RadeonCardFrom.coreClock.text2"
"RadeonCardFrom.coreClock.text1","RadeonCardFrom.coreClock.text1"
"RadeonCardFrom.coreClock.text3","RadeonCardFrom.coreClock.text3"
"Refill","Reabastecer"
"balance","saldo"
"per month","por mês"
"Recommended payment is","O pagamento recomendado é"
"From balance","do saldo"
"With Coinpayment","Pagamento com moeda"
"Console","Console"
"Execute command","Executar comando"
"Wrong command","Comando errado"
"Remove all messages?","Remover todas as mensagens?"
"EDIT","EDITAR"
"Overview","Visão geral"
"Cards","Placas"
"CONSOLE","CONSOLE"
"Offline","desligada"
"Booted","Inicializado"
"Uptime","Tempo de atividade"
"TRANSFER","TRANSFERIR"
"Monitoring","Monitoramento"
"Reboot","Reinicie"
"Miner Config","Configuração do mineiro"
"Rocket","Enviar"
"Upgrade","Atualizar"
"Shutdown","Desligar"
"OpenVPN configuration","Configuração OpenVPN"
"Power actions","Ações de energia"
"Server URL","URL do servidor"
"Edit tags","Editar tags"
"Miner actions","Ações do mineiro"
"Teleconsole Start","Iniciar Teleconsole"
"Teleconsole Stop","Parar Teleconsole"
"Teleconsole Restart","Reiniciar Teleconsole"
"Hashrate watchdog","Hashrate watchdog"
"Run command","Executar comando"
"Miner Log","Log do mineiro"
"Stop Miner","Parare o mineiro"
"Restart Miner","Reinicie o Minerador"
"Remote access","Acesso remoto"
"more messages","mais mensagens"
"Add","Adicionar"
"Password","Senha"
"Description","Descrição"
"Add New Worker","Adicionar nova mineradora"
"RigForm.EnterWorkerName","RigForm.EnterWorkerName, IP"
"RigForm.EnterWorkerPassword","RigForm.EnterWorkerPassword"
"RigForm.EnterWorkerDescription","RigForm.EnterWorkerDescription"
"rejected","rejeitado"
"shared","compartilhado"
"Upgrade to","Atualize para"
"New features","Novas características"
"New version","Nova versão"
"Current version","Versão Atual"
"SaveOCModal","SaveOCModal"
"Enter Name","Insira o nome"
"SaveOverclockingAsTemplate.Name","SaveOverclockingAsTemplate.Name"
"SaveOverclockingAsTemplate.Title","SaveOverclockingAsTemplate.Title"
"Set","Set"
"Default","Padrão"
"Choose URL","Escolha o URL"
"ServerUrlFrom.Help3","ServerUrlFrom.Help3"
"ServerUrlFrom.Help2","ServerUrlFrom.Help2"
"ServerUrlFrom.Help1","ServerUrlFrom.Help1"
"Mirror Select","Seleção Espelho"
"Stats","Estatísticas"
"gpu","gpu"
"for 24 hours","por 24 horas"
"View all","Ver tudo"
"day","dia"
"Day left","Dia restante"
"Days left","Dias restantes"
"New Tag Name","Novo nome da tag"
"Add Tag","Adicionar tag"
"Add tag","Adicionar tag"
"Explore transaction","Explorar transação"
"Referrals.TransactionsNotFound","Referências.TransactionsNotFound"
"Upload VBIOS","Carregar VBIOS"
"VBIOS ROM file","Arquivo ROM VBIOS"
"UploadingBiosFromLabel","UploadBiosFromLabel"
"Upload","Envio"
"VPN.ClientConf","VPN.ClientConf"
"Login (auth-user-pass)","Login (auth-user-pass)"
"Password (auth-user-pass)","Senha (auth-user-pass)"
"Address","Endereço"
"Enter wallet address","Digite o endereço da carteira"
"Enter wallet name","Digite o nome da carteira"
"Accepted shares ratio","Proporção de ações aceitas"
"Invalid shares","Compartilhamentos inválidos"
"High Temperature","Temperatura alta"
"Low hashrate","Hashrate baixo"
"cores","cores"
"Hive OS Version:","Versão do {os}:"
"Power:","Consumo"
"Free disk space:","Espaço livre em disco:"
"Restart","Reiniciar"
"Stop","Pare"
"Shut Down","Desligar"
"Overclocking templates","Perfis de overclock"
"WorkerActions.Upgrade","WorkerActions.Upgrade"
"WorkerMiner.Tooltip","WorkerMiner.Tooltip"
"NoStatsFoundSoFar","NoStatsFoundSoFar"
"Delete","Excluir"
"You can","Você pode"
"create one","crie um"
"FarmsAccess.NoUsersFound","FarmsAccess.NoUsersFound"
"Owner","Proprietário"
"Access Levels","Níveis de acesso"
"User name","Nome de usuário"
"UserEditForm.GrantAccessProject","UserEditForm.GrantAccessProject"
"Grant access","Garantir acesso"
"Access Levels...","Níveis de Acesso ..."
"User login","Login de usuário"
"ProjectAccess.TrustUserDescription","ProjectAccess.TrustUserDescription"
"Profile","Perfil"
"Telegram","Telegrama"
"here","Aqui"
"Bio","Bio"
"Update Info","Informação de atualização"
"Company Info","Informação da companhia"
"Skype","Skype"
"Phone","Telefone"
"API docs are","Documentos da API são"
"Account.SetupTFAuth","Account.SetupTFAuth"
"Account.TFAuth","Account.TFAuth"
"Update Password","Atualizar senha"
"Confirm New Password","Confirme a nova senha"
"Account.PasswordError","Account.PasswordError"
"New Password","Nova senha"
"Current Password","senha atual"
"Full Name","Nome completo"
"Account.ProfileSettings.Header","Account.ProfileSettings.Header"
"Language","Língua"
"Account.BIODescription1","Account.BIODescription1"
"Account.BIODescription2","Account.BIODescription2"
"Account.AuthenticationDecstiption","Account.AuthenticationDecstiption"
"Account.PasswordDescription","Account.PasswordDescription"
"Account.ProfileDescription","Account.ProfileDescription"
"6 digits code","Código de 6 dígitos"
"Enable 2FA","Ativar 2FA"
"Turn off 2FA","Desligue o 2FA"
"Account.AuthenticationTokenButton","Account.AuthenticationTokenButton"
"Authentication Tokens","Tokens de Autenticação"
"Account.AuthenticationToken","Account.AuthenticationToken"
"Personal Tokens","Tokens Pessoais"
"Session Tokens","Tokens de Sessão"
"Authy","Authy"
"Account.AuthenticationTwoFactor3","Conta.AuthenticationTwoFactor3"
"Account.AuthenticationTwoFactor4","Conta.AuthenticationTwoFactor4"
"Farm Activity Feed","Taxa de atividade da Farm"
"Pay","Pagamento"
"Payments","Pagamentos"
"Amount to refill, $","Quantidade para reabastecer, {currencySymbol}"
"Your Current Balance","Seu saldo atual"
"Payments History","Histórico de pagamentos"
"Farms Balance","Saldo das Farms"
"Free","Taxa"
"Invoice","Fatura"
"days left","dias restantes"
"Disable Paid Features","Desativar recursos pagos"
"Enable Paid Features","Ativar recursos pagos"
"Log in","Entrar"
"Return to","Retornar para"
"Reset password","Redefinir senha"
"Type email to recover password","Digite email para recuperar a senha"
"Error.Text","Error.Text"
"Just one step!","Apenas um passo!"
"create wallet","criar carteira"
"first!","primeiro!"
"Farm.FarmsFs.Description","Farm.FarmsFs.Description"
"FarmOC.EmptyMessage","FarmOC.EmptyMessage"
"Add OC Template","Adicionar perfil do OC"
"Incoming farms","Rendimento das Farms"
"Log in your account","Entre na sua conta"
"2FA code (if enabled)","Código 2FA (se ativado)"
"Remember me","Lembre de mim"
"Forgot password?","Esqueceu a senha?"
"Register","Registre"
"Don't have account yet?","Ainda não tem conta?"
"Referral Link","Link de referência"
"Referral.ReferralLink1","Referral.ReferralLink1"
"Your referral","Sua referência"
"Copy to Clipboard","Copiar para área de transferência"
"Promo Code","Código promocional"
"Referral.PromoCodeDescription1","Referral.PromoCodeDescription1"
"Referral.PromoCodeDescription2","Referral.PromoCodeDescription2"
"ETH Wallet Address","Endereço de carteira ETH"
"Referral Balance","Saldo de referência"
"Deposit to Hive","Depositar para {os}"
"ReferralTransactionsHistory","Referral transactions history"
"Referral.BalanceDescription2","Specify your ETH wallet address for automatic payouts at the beginning of each month."
"Referral.BalanceDescription1","miners joined by your invitation."
"Referral.BalanceDescription3","Referral withdrawal are done once a month. You will be payed if you've entered an address here."
"Referral.BalanceDescription4","Minimum payout is {currencySymbol}{amount}."
"Referral.BalanceDescription5",""
"Referral.PromoCodeYoungAccount","Your account is too young to use promocodes."
"Referral.BalanceDescription","You don't have any referral rewards yet."
"Passwords do not match","As senhas não coincidem"
"Create new account","Criar nova conta"
"Confirm password","Confirme a Senha"
"Register.CheckboxLabelText","By clicking Register you agree with"
"Terms","Termos"
"Register.HaveAccount","Have an account already?"
"RestorePassword.Message","Password successfully sent, please check your email"
"Remove all","Deletar tudo"
"Id","Id"
"Activity Feed","Taxa de atividade"
"Build Log","Criar log"
"Other","Outros"
"Flight Sheet","Plano de mineração"
"Flight Sheets","Planos de mineração"
"FlightSheets.Message","FlightSheets.Message"
"StartConfOverclocking","StartConfOverclocking"
"Flash VBIOS","Flash VBIOS"
"OverclocingSettingsFoundSoFar","OverclocingSettingsFoundSoFar"
"Load From Template","Carregar do modelo"
"Save As Template","Guardar como modelo"
"Reset All","Reiniciar tudo"
"Configure New Algo","Configurar novo Algo"
"Transfer","Transferir"
"Advanced Settings","Configurações avançadas"
"Confirmation required","Necessária confirmação"
"Settings.RemoveProject2","A removed project CANNOT be restored! Are you ABSOLUTELY sure?"
"Settings.RemoveProject3","This action can lead to data loss. To prevent accidental actions, please, confirm your intentions"
"Please type","Por favor digite"
"Settings.RemoveProject4","to proceed or close this modal to cancel."
"Settings.RemoveProject1","You are going to remove a worker"
"Remove Worker","Remover Mineradora"
"Settings.RemovedWorker","Settings.RemovedWorker"
"Update Worker","Atualizar mineradora"
"Worker Name","Nome da mineradora"
"Worker Settings","Configurações da mineradora"
"OpenVPN Config","Configuração OpenVPN"
"Are you sure?","Você tem certeza?"
"Worker Password","Senha da mineradora"
"Settings.ChangePass1","Settings.ChangePass1"
"Settings.ChangePass2","Settings.ChangePass2"
"Settings.ChangePass3","Settings.ChangePass3"
"Transfer Worker","Trabalhador de transferência"
"Settings.WalletTransferFarm","Configurações.WalletTransferFarm"
"Settings.RemoveProject5","Configurações.RemoverProject5"
"Settings.WalletTransfer","Configurações.WalletTransfer"
"Settings.ConfirmTransferWorker","Settings.ConfirmTransferWorker"
"Select farm","Selecione a farm"
"Settings.TransferWorker","Settings.TransferWorker"
"Transfer Worker?","Transferir Trabalhador?"
"Tuning","Ajuste"
"Worker","Mineradora"
"Online","Conectados"
"With Errors","Com erros"
"Hide filters","Ocultar filtros"
"Show filters","Mostrar filtros"
"with","com"
"Name changed","Nome alterado"
"Farm settings","Configurações da fazenda"
"Settings.MargeProject","Settings.MargeProject"
"Merge Project","Mesclar projeto"
"Transfer Project","Projeto de Transferência"
"Type project name","Digite o nome do projeto"
"Select user login","Selecione o login do usuário"
"Remove Project","Remover projeto"
"Farm.Setting.Text1","Farm.Setting.Text1"
"Type Project Name","Digite o nome do projeto"
"You are going to merge farm","Você vai mesclar fazenda"
"Merged project CANNOT be restored!","Projeto mesclado NÃO PODE ser restaurado!"
"Are you ABSOLUTELY sure?","Você está absolutamente certo?"
"Save Changes","Salvar alterações"
"Timezone changed","Fuso horário alterado"
"Farm changed","Farm alterada"
"Farm.Settings.TagsDescription","Farm.Settings.TagsDescription"
"Farm.Settings.RemoveDescription1","Farm.Settings.RemoveDescription1"
"Farm.Settings.RemoveDescription2","Farm.Settings.RemoveDescription2"
"Farm Title","Título da Farm"
"Remove Farm","Remover Farm"
"Question.ChangeFarmOwner","Question.ChangeFarmOwner"
"ChangeOwnership","ChangeOwnership"
"Leave Farm","Deixar Fazenda"
"Settings.LeaveFarm","Settings.LeaveFarm"
"RemoveFarmAccess","RemoveFarmAccess"
"Question.RemoveAccess","Question.RemoveAccess"
"Question.RemoveFarm","Question.RemoveFarm"
"Question.LeaveFarm","Question.LeaveFarm"
"Farm.Setting.FarmHashDescription1","Farm.Setting.FarmHashDescription1"
"Farm.Setting.FarmHashDescription2","Farm.Setting.FarmHashDescription2"
"Farm.Setting.FarmHashDescription3","Farm.Setting.FarmHashDescription3"
"More details","Mais detalhes"
"Farm Hash","Hash Farm"
"Transfer farm","Fazenda de transferência"
"Farm.Setting.TransferDescription","Farm.Setting.TransferDescription"
"No wallets found so far.","Nenhuma carteira encontrada até agora."
"FlightSheetForm.NamePlaceholder","FlightSheetForm.NamePlaceholder"
"FSFormItem.DcriHelp","FSFormItem.DcriHelp"
"PoolConfigModal.Advanced","PoolConfigModal.Advanced"
"PoolConfigModal.AdvancedHint","PoolConfigModal.AdvancedHint"
"PoolConfigModal.PoolUrls","PoolConfigModal.PoolUrls"
"FS.ConfiguredInMiner","FS.ConfiguredInMiner"
"AutoFan","AutoFan"
"Token","Símbolo"
"PageNotFound","Página não encontrada"
"ConfirmPassword.Message","ConfirmPassword.Message"
"Ethminer.OpenCLCudaHint","Ethminer.OpenCLCudaHint"
"AllRedTemps.Hint","AllRedTe"
"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 temperature. 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. The best way is to make a screenshot and print it."
"Account.AuthenticationTwoFactor2","If you lose the code then you won't be able to restore access to account in case of a lost 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","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 to send to {os} deposit?"
"ConfirmTransferToHive.ErrorMessage","The amount is insufficient"
"FS.ConfirmatioTitle","Attention! This Flight Sheet is running on other workers"
"FS.ConfirmatioMessage","Do you want to run as a new Flight Sheet on this worker or update for other workers too?"
"FS.UpdateAll","Update all workers"
"FS.CreateNewFS","Create new Flight Sheet"
"NvidiaCardForm.DelayPill","Delay in seconds before running the pill"
"NvidiaCardForm.DelayPillHint","May help preventing glitches on some 1080 cards, try to set this value to 120 or higher."
"WorkerSettings.CardsQuantityHint","Number of cards in the worker has increased automatically. If you need to decrease them, please update this parameter"
"WorkerSettings.CardsQuantityPlaceholder","Enter a number"
"Cards Quantity","Cards Quantity"
"WorkerSettings.DisableGUI","Disable GUI on boot"
"WorkerSettings.DisableGUIHint","Don't start X server, console only. There will be no OC for Nvidia"
"WorkerSettings.Resend","Resend all configs"
"WorkerSettings.ResendHint","In case the worker is unsynchronised you can send all miner, OC and other configs."
"Push","Push"
"MinerForm.Template.examples","Template examples"
"MinerForm.Template.forMost","for most of pools"
"MinerForm.Template.for","for"
"MinerForm.Template.text1","For correct template strings please read your pool's help section for correct formatting details."
"MinerForm.Template.text2","will be replaced with correct values from the wallet."
"MinerForm.Template.text3","will be replaced with worker name."
"WDConfig.EnableWatching","Enable hashrate monitoring, if it drops below minimal then miner will attempt to restart."
"WDConfig.RestartNotHelp","If miner restart won't help, then a system 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 Nvidia cards info"
"ConsoleCommand.ShowFreq","show current frequencies for AMD cards"
"ConsoleCommand.LogsRam","logs on RAM to reduсe USB flash drive wear"
"ConsoleCommand.LogsDisk","logs on disk, will remain after reboots"
"ConsoleCommand.ShowFreqAmd","show current frequencies for AMD cards"
"ConsoleCommand.AmdExtended","show extended AMD cards info"
"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 a `reset` command to OpenDev watchdog"
"ConsoleCommand.SendPower","send a `power` command to OpenDev watchdog"
"ConsoleCommand.GpuScript","script for finding GPUs by spinning fans"
"Deselect","Deselect"
"Overclocking Templates","Overclocking Templates"
"MinerForm.Url.PoolUrl","Pool URL including protocol and port, for example"
"MinerForm.Url.ForFailOver","Write any other failover pools in the next line, the password is one for 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 this"
"MinerForm.Url.Subscribe","if you are using flypool. Replace"
"MinerForm.Url.IfYou","if connecting to the pool via SSL."
"MinerForm.Url.Examples","bminer examples"
"MinerForm.UserConfig.Text1","Add extra parameters in the config if required. One per line in the following format without commas or dots at the end of a 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","For extra values, for example"
"MinerForm.BMinerConfig.Text2","Use space to separate the list of CUDA devices"
"MinerForm.BMinerConfig.Text3","For more options visit"
"MinerForm.BMinerConfig.Text4","Bminer reference"
"MinerForm.Fork.List","Detailed list of forks is"
"MinerForm.Fork.here","available 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 for "
"MinerForm.InstallUrl.Package","package download. It will not be downloaded if already installed."
"MinerForm.Miner","This is the name of the installed miner. For example,"
"MinerForm.CCPoolExtra","Add extra parameters in the pool if required. One per line in the following format without commas or dots at the end of a line. Example parameters:"
"MinerForm.CCExtra.Text1","These are extra parameter for the miner. One per line in the following format without commas or dots at the end of a line. Example parameters:"
"MinerForm.CCExtra.Text2","detailed dump of protocol-level activities"
"MinerForm.CCExtra.Text3","a comma separated list of CUDA devices to use"
"MinerForm.CGMInerConf.Text1","Add extra parameters in the config if required. One per line in the following format without commas or dots at the end of a line."
"MinerForm.CGMInerConf.Text2","to turn off fan control"
"MinerForm.CGMInerConf.Text3","Example parameters for Cryptonight"
"MinerForm.CGMInerConf.Text4","Example parameters for Ethash"
"MinerForm.CGMInerConf.Text5","For debugging"
"MinerForm.CGMInerConf.Text6","to 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 some of them may not work with certain algos or pools."
"MinerForm.CGMinerFork.Text2","Also try to add"
"MinerForm.CGMinerFork.Text3","and"
"MinerForm.CGMinerFork.Text4","in config to for more details for inspecting 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's help section for format details."
"MinerForm.ClaymoreDescr.Text1","Decred/Siacoin/Lbry/Pascal intensity. Default value is 30."
"MinerForm.ClaymoreDescr.Text2","For PASC a reasonable value is around 10, for SIA it's around 15. Higher values will cause a hashrate reduction on ETH mining."
"MinerForm.ClaymoreConfig.Text1","Enter settings for the config.txt of Claymore. One per line in the following format:"
"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","Add extra parameters in the config if required. One per line in the following format without commas or dots at the end of a line:"
"MinerForm.CpuMinerConfig.Text2","number of miner threads (default: number of processors). Recommeded 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","temperature in degrees Celsius (default value is 85) — stops mining."
"MinerForm.Server","Write any other failover pools in the next line, the password is one for all."
"MinerForm.DstmConf.Text1","For extra values, for example:"
"MinerForm.DstmConf.Text2","A comma separated list of cuda devices"
"MinerForm.DstmConf.Text3","For load reduction, a comma separated list of dev_id:intensity values"
"MinerForm.DstmConf.Text4","The workload of each GPU will be continuously adjusted in order for the temperature to stay around a specific value. A comma separated list of of dev_id:temp-target values, e.g."
"MinerForm.EthServ.Text1","For getwork use one of the following:"
"MinerForm.EthServ.Text2","For stratum use one of the following:"
"MinerForm.EthServ.Text3","Examples"
"MinerForm.EthConf.Text1","For extra values, for example"
"MinerForm.EthConf.Text2","which OpenCL devices to mine on"
"MinerForm.EthConf.Text3","which CUDA devices to mine on"
"MinerForm.EwbtConf.Text1","Add extra parameters in the config if required. One per line in the following format without commas or dots at the end of a line. For example:"
"MinerForm.EwbtConf.Text2","to use only specific GPUs"
"MinerForm.EwbtConf.Text3","to set custom temperature limit"
"MinerForm.LolConf.Text1","For extra values, for example"
"MinerForm.LolConf.Text2","A comma separated list of devices"
"MinerForm.OptiConf.Text1","For extra values, for example"
"MinerForm.OptiConf.Text2","OpenCL device ID to use. If no devices are specified, all are used"
"MinerForm.OptiConf.Text3","OpenCL platform ID to use"
"MinerForm.OptiConf.Text4","Worker intensity. 0 means auto-detect based on available memory"
"MinerForm.XmConf.Text1","Add extra parameters in the config if required. One per line in the following format without commas or dots at the end of a line. For example:"
"MinerForm.XmConf.Text2","reduce CPU usage from 75% to 50%"
"MinerForm.XmConf.Text3","Other parameters can be found in"
"MinerForm.XmConf.Text4","xmrig doc"
"MinerForm.XmUrl.Text1","Pool address should be in the following 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 following 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","The full contents of nvidia.txt, example below"
"MinerForm.XmrNvidia.Text2","To disable Nvidia GPUs"
"MinerForm.XmrNvidia.Text3","Tuning guide"
"MinerForm.XmrCpu","The full contents of cpu.txt, example below"
"per","per"
"OC.DefaultConfig","Default Config"
"OC.DefaultHint","Used by default. Can be overridden by the algorithm's 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","Workers, Overview, Stats and Activity. 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 and Tuning."
"AccessLevel.Full","Password, 2FA, Notifications, Payments and 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 Average"
"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 on all the workers using this Flight Sheet."
"FS.NewFSWillBeCreated","New Flight Sheet 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 are allowed to login to your account. The values are separated by spaces."
"Account.WhiteListHint2","Your current IP address."
"Account.WhiteListHint3","Basic checks are done on server so you will not cut yourself off from the rig."
"Account.WhiteListExamples","Examples:"
"Account.WhiteListExample1","single IP address is allowed"
"Account.WhiteListExample2","two IPs are allowed"
"Account.WhiteListExample3","will match any IP starting with 172.217.16."
"Account.WhiteListExample4","will match any IP starting with 172.217.d"
"Account.WhiteListExample5","single IPv6 address"
"Account.WhiteListExample6","will match any IPv6 address starting with 2001:db8::"
"Account.WhiteListPlaceholder","Enter an 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 enabled"
"WorkerSettings.GuiTurnedOff","GUI disabled"
"VPN.TurnedOn","VPN turned On"
"VPN.TurnedOff","VPN Turned Off"
"Account.AuthenticationTwoFactor5","Google Authenticator is not a good choice. If you loose or break your device, your codes will be 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 afterwards."
"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 a 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 Ticker"
"CoinPaymentsDeposits.ShowAll","Show All Deposits"
"gained","gained"
"subscribed","subscribed"
"OverclockingAlgoTable.CcAlgoResolved","Click Add to set overclocking for this algorithm"
"Algo","Algorithm"
"Billing Page","Billing Page"
"Select algo","Select algorithm"
"more","more"
"PaymentsList.CheckStatus","Check your payment status"
"AsicTable.Chain","Chain"
"AsicTable.ASIC","ASIC"
"AsicTable.Frequency","Frequency"
"AsicTable.HW","Hardware"
"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 Template successfully updated."
"Action.OCRemoved","Overclocking Template 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 messages have been removed"
"Action.NowFarmYours","This farm now belongs to you"
"Action.RequestRejected","Requests 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","At least one server should be selected"
"Filed is required","This filed is required"
"NewRig","Looks like 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 intentions"
"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."