-
Notifications
You must be signed in to change notification settings - Fork 8
/
ka.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) · 105 KB
/
ka.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","ბმული"
"An error has occurred. Please, try again later","დაფიქსირდა შეცდომა. გთხოვთ სცადოთ მოგვიანებით"
"Action.FlightSheetRemoved","დასრულებულია. FlightSheet წაშლილია"
"Action.FlightSheetCreated","დასრულებულია. FlightSheet შექმნილია"
"Command sent","ბრაძანება გადაეცა"
"Action.TransferFarm","მფლობელის შეცვლაზე ბრძანება გადაეცა"
"Settings updated","პარამეტრები განახლდა"
"Tag added","იარლიყი დაემატა"
"Tag edited","იარლიყი შეიცვალა"
"Tag removed","იარლიყი წაიშალა"
"Wallet added","საფულე დაემატა"
"Wallet edited","საფულე შეიცვალა"
"Wallet removed","საფულე წაიშალა"
"Collaborator added","თანამშრომელი დაემატა"
"Collaborator removed","თანამშრომელი წაიშალა"
"Collaborator edited","თანამშრომელი შეიცვალა"
"Action.LeftFarm","თქვენ გახვედით ფერმიდან"
"Action.UpdateFs","საფრენი სია განახლდა.ვორკერებისთვის როემლნიც ონლაინ არ არიან იმისათვის რომ დასრულდეს განახელბა უნდ აგადატვირთოთ სისტემა"
"Action.AddOC","დამაჩქარებელი პროფილი წარმატებით შეიქმნა"
"Action.RefillFarm","ფერმის ბალანსი შეივსო"
"Action.ErrorServerRequest","შეცდომა მოხდა,გთხოვთ გაიმოეროთ მოგვიანებით"
"Error","შეცდომა"
"Action.SendPromocode","თქვენ წარმატებით ჩაეწერეთ"
"Action.PatchToken","ტოკენი წარმატებით განახლდა"
"Action.AddToken","ტოკენი წარმატებით შეიქმნა"
"Action.DeleteToken","ტოკენი წარმატებით წაიშალა"
"Promocode successfully sended","პრომოკოდი წარმატებით გაიგზავნა"
"Action.UpdatePayoutAddresses","მისამართი წარმატებით შეიცვალა"
"Action.PayoutToAccount","თქვენი ბალანსი შეივსო"
"Action.SetPassword","პაროლი წარმატებით განახლდა"
"2FA enabled","2FA გააკტიურდა"
"2FA removed","2FA წაიშალა"
"NVIDIA","NVIDIA"
"Apply","Applicare"
"Confirm","დასტური"
"TelegramSubscribe","შეიყვანეთ ტელეგრამის ID რატა მიიღოთ განახლებები"
"Enter code to confirm","დასტურისთვის შეიყვანეთ კოდი"
"Subscribe","გამოწერა"
"Remove","წაშლა"
"Are you shure?","დარწმუნებული ხართ?"
"Edit","რედაკტირება"
"temp","ტემპერატურა"
"Farms","ფერმები"
"workers","ვორკერები"
"ethash","ethash"
"CriticalIssues",""
"Off","გამ"
"30 seconds","30 წამი"
"1 minute","1 წუთი"
"2 minutes","2 წუთი"
"5 minutes","5 წუთი"
"AutoRefresh","გვერდის განახლების ტაიმერი"
"All","მთლიანად"
"Cancel","დასრულება"
"Download VBIOS"," VBIOS გადმოწერა"
"GPU index"," GPU ინდექსი"
"NotGPUDifferent","შენიშვნა:GPU ინდექსი მაინერში შესაძლებელია განსხავდებოდეს PCI დასართის მიმდევრობისგან"
"Download","გადაწერა"
"Apply Changes","ცვლილების გამოყენება"
"WalletWorkTemplate","საფულე და ვორკერის შაბლონი:"
"Pass:","პაროლი"
"Extra config arguments:","გამართვის დამატებითი პარამეტრები:"
"Pool URL:","pool-ის url"
"Miner Fork:","მაინერის ჩანგალი:"
"Hash algorithm:"," hash: ალგორითმი"
"Extra params for pool:","pool-ის დამატებითი არგუმენტები"
"Extra arguments for miner:","მაინერის დამატებითი არგუმენტები:"
"Version:","ვერსია"
"Template examples:","შაბლონების მაგალითები:"
"for most of the pools","per la maggior parte delle pool"
"Intensity, -dcri 0...100","ინტენსიურობა, -dcri 0 ... 100"
"claymore","claymore"
"epools.txt template:"," epools.txt შაბლონები:"
"dpools.txt template:"," dpools.tx შაბლონები"
"Claymore config override:","Claymore კონფიგის გადაწერა"
"Example for nanopool:"," nanopool-ის მაგალიტი:"
"Example for nicehash:"," nicehash-ის მაგალითი:"
"Second coin algo","მეორე მონეტის ალგორითმი"
"Config override:","კონფიგურაციის ნაცვალი"
"Pool server:","Pool სერვერი"
"Port:","პორტი"
"index","ინდექს"
"AMD config override:"," AMD-ს კონფიგურაციის ჩანაცვლება:"
"Nvidia config override:"," Nvidia კონფიგურაციის ჩანაცვლება:"
"CPU config override:","CPU კონფიგურაციის ჩანაცვლება"
"Errors","შეცდომა"
"last 24 hours","ბოლო 24 საათი"
"Workers with errors","ვორკერები ერორებით"
"No errors found","შეცდომა არ არის"
"Show","ჩვენება"
"Overclocking","გაქანება"
"Coins","მონეტები"
"Pools","პული"
"Miners","მაინერები"
"Select pools","ავირჩიოთ პული"
"Select miners","ავირჩიოთ მაინერი"
"Select coin","ავირჩიოთ მაინერი"
"Select overclocking","ავირჩიოთ ოვერკლოკინგი"
"by","-დან"
"View payload","დაზუსტებით"
"Add Wallet","საფულის დამატება"
"Red Temperature","მაქს ტემპერატურა"
"Trust user","სანდო მომხმარებელი"
"Add Worker","ვორკერის დამატება"
"FarmNavCleanWorkers","ყველა ვორკერის მესიჯის წაშლა"
"Save","დამახსოვრება"
"FarmTempHeader.ASICCriticalTemperature"," ASIC კრიტიკული ტემპერატურა"
"Ask a question","შეკითხვის დასმა"
"Report an issue","პრობლემის შეტყობინება"
"Tags","იარლიყი"
"Wallets","საფულე"
"Platform","პლატფორმა"
"Run","გაშვება"
"Wallet","საფულე"
"Coin","მონეტა"
"Pool","პული"
"Miner","მაინერი"
"Select pool","Select pool"
"Select miner","Select miner"
"Select wallet","Select wallet"
"Configure Pool","Configure pool"
"Setup Miner Config","Setup Miner Config"
"Dual Coin","ორმაგი მონეტა"
"Dual Wallet","ორმაგი საფულე"
"Dual Pool","ორმაგი პული"
"Configure in miner","მაინერის დაკონფიგურირება"
"Update","განახლება"
"Add New Flight Sheet","ახალი საფრენი ფურცლის დამატება"
"Reset","ჩამოყრა"
"Create Flight Sheet","საფრენი ფურცლის შექმნა"
"Add Miner","მაინერის დამატება"
"Email","ელ-ფოსტა"
"worker","ვორკერი"
"selected","არჩეული"
"FlightSheetsRocket.Message","გინდათ დავადასტუროთ ეს საფრენი ფურცელი?"
"Choose Flight Sheet for","საფრენი ფურცლის არჩევა"
"Your Company","შენი კომპანია"
"Home","სახლი"
"Admin","ადმინი"
"Privacy","პირადი"
"Not Found","არ მოიძებნა"
"off","გამორთვა"
"No","ჩატრთვა"
"min","მინ"
"Remote","დაშორებული აიპი"
"Consumption","მოთხოვნა"
"AES","AES"
"Cores","ბირთვები"
"Motherboard","დედაპლატა"
"Free space","ცარიელი სივრცე"
"Free RAM","თავსიფალი რამი"
"OS version","ოპერაციული სისტემის ვერსია"
"Drivers","დრაივერები"
"Yes","დიახ"
"System type","სისტემის ტიპი"
"Kernel","ბირთვი"
"Local IP","ლოკალური აიპი"
"Load Average","Load Average"
"rigs","რიგები"
"Jump to farms, workers...","ფერმერებიში გადასვლა,ვორკერები"
"Notifications","შეტყობინება"
"unread","წაუკითავი"
"Show all","ყველაფრის ჩვენება"
"No notifications yet","არაა შეტყობინება"
"View geo location","გეოლოკაციის შემოწმება"
"from","დან"
"Accept","მიღება"
"Decline","გაუქმება"
"Term expires in","ვადა გასდის"
"Enter value","შეიყვანეთ მნიშვნელობა"
"Generate","დაგნერირება"
"Enter start date","შეიყვანეთ საწყისი ტარიღი"
"Start date","საწყისი თარიღი"
"End date","დასრულების ი თარიღი"
"Enter end date","შეიყვანეთ დასრულების თარიღი"
"Name","სახელი"
"Create","შევქმნათ"
"Russian","რუსული"
"Chinese","ჩინური"
"English","ინგლისური"
"NoActiveFound","არ გააქტიურებულა"
"all activities","ყველა აქტიობა"
"Latest Activity","ბოლო აქტიობა"
"Load","ატვირთვა"
"warning","dstm 0.6.0 შეიცვალა სინტაქსი დაკონფიგურებული ფაილისა"
"Previous","წინა"
"Next","შემდეგი"
"configuration","დაკონფიგურირება"
"MiningInfo","მფრინავი სიის გაშვება"
"Account","აქაუნთი"
"Sign Out","აქაუნთიდან გამოსვლა"
"Billing","ბილინგი"
"Support","მხარდაჭერა"
"Community","გერთიანება"
"Forum","ფორუმი"
"Referrals","რეფერალი"
"NoRightsMessage","ბოიდიში გიხდით არ გაქვთ ამ გვერდის დათვალიერების უფლება"
"to","ში"
"Login","ლოგსახელი"
"access","ნებართვა"
"Notification.EventChanged","ცვლილების ნოთიფიკაცია"
"Notification.AccessChanged","ნებართვა შესაცვლელად"
"Notification.WhitelistChanged","ცლიელბის თეთრი სია"
"Account.NotificationDescription6","შეგიძლიატ დაამატოთ ბოდტი ჯგუფის ჩატში რატა რამდენიმე ადმინსტრატორამ ერთად ადევნონ თვალიშექმენით თქვენი ჯგუფი დაამატეთ მონაწილე.ჩათის კოდი ურაყოფითა მსგავსი 12345 "
"Account.NotificationDescription1","ამ ბოტთან ჩატის დაწყება"
"Account.NotificationDescription2","ბოტი გიპასუხებთ და ნახავთ თქვენს კოდს რომელიც უნდა შეყვანოთ მარჯვნივ ველში."
"Account.NotificationDescription3","თქვენი ლოგსახელი"
"Account.NotificationDescription4","ბრძანების ბოტისთვის გაგზავნა"
"Account.NotificationDescription5","თვენ ხარტ გაფორუმებული რომ მიიღოთ გაბრთხილებები"
"Update Settings","გმართულობის განახელბა"
"Fan","ვენტ."
"Core Clock","ბირთვის სიხშირე"
"Memory Clock","მეხსიერების სიხშირე"
"Power Limit","ენერგიის ლიმიტი"
"(0 for auto)","0 ავტო"
"(0 for stock value)","0"
"NvidiaCardFrom.SpecifyDevice","მიუთითეთ რომელ მოწყობილობასთან უნდა იყოს შესაბამისი მიმართულება"
"NvidiaCardFrom.MemClock","ჩვეულებრივ ეს მნიშვნელობა ორჯერ მეტია იმის რასაც ხედავთ afterburnerთანმაგალითად თუ არის windows +800mhz აქ უნდა იყოს 1600"
"NvidiaCardFrom.OffLED","მნათების გათიშვა(შეძ₾ება არ იმუშავოს სხვადასხვა რუქაზე)"
"OhGodAnETHlargementPill","OhGodAnETHlargementPill (only for GTX 1080 series)"
"ValueCardSeparatedSpace.","შეგიძლიათ ანახოთ ერთი მნიშვენლობა ყველა რუქისთვის და სხვადასხვა მნიშვნელობა ყველა რუქისთვის,რომელსაც გამოტყოფთ ტილდით"
"one value for all GPUs.","ერთი მნიშვნელობა ყველა GPU სთვის"
"means GPU0 = none, GPU1 = 100, etc.","GPU0=არაფერი,GPU1=100 და ასე შემდეგ"
"Configure","მომართვა"
"Overclocking Settings","აჩქარების პარამეტრები"
"OverclockingProfileModal.Text","აჩქარების პროფილის არჩევა"
"ApplyOverclockProfile","გინდათ გამოიყენოთ მოცემული აჩქარების პორფილი?"
"Invalid Shares","უნებართვო გაზარება"
"Show all payments","ყველა გადახდის ჩვენება"
"No payments yet","არ არის გადახდა"
"Pool address","პულის მისამართი"
"Select pool address","პულის მისამართის ჩვენება"
"Add New Pool","ახალი პულის დამატება"
"Enter email","შიყვანეტ ელფოსტა"
"Select Pool Server","აირჩიეთ პულის სერვერი"
"Selected Pool Servers","პულის არჩეული სერვერები"
"on","ჩართვა"
"rights","უფლებებით"
"Workers","ვორკერები"
"Balance","ბალანსი"
"Shared with me","გამიზიარა"
"Timezone","დროის ზოლი"
"Create New Farm","ახალი ფერმის შექმნაა"
"Select timezone","დოის ზოლის არჩევა"
"Input farm name","ფერმის სახელის შეყვანა"
"Mem State","მეხსიერების მდგომარეობა"
"Core Voltage","ბირთვის ძაბვა"
"Core State","ბირთვის მდგომარეობა"
"RadeonCardFrom.fanSpeed2","claymore-ში კონფიგურაციის გადაწყობა"
"RadeonCardFrom.fanSpeed1","შეგიძლიათ დააყენოთ ვენტილიატორის ბრუნვის სიჩქარე.მაგრამ ამას მაინერი გააკონტროლებსუნდა გათიშოთ ვენტილატორის სამართავი მაინერის კონფიგურაციაში.რომ იმუშავოს.გაწერა "
"RadeonCardFrom.memState.text3","უნდა გამოიყენოთ ეს პარამეტრი 'მეხსიერების სიხშირესთან' ერთად"
"RadeonCardFrom.memState.text2","RX რუქა,რომელიც,როგორც ცნობილია აქვს 1 ან 2 მეხსიერების მდგომარეობა(3 ფაკტიური,0-უბრალო მდგორამრეობა)არჩეული იქნება ყველაზე მაღალი მდგომარეობა.მაგრამ ზოგი იშვიათი ბარათები,როგორც ცნობილია ,არ ექვემდებარება ძაბვის დაწევას.ყევაზე დიდ მდგონმაეობაში უნდა ავირჩიოთ ყველაზე დაბალი.მაგალითად ყველაზე მაღალი მნიშვენლობა არის 2.რატა დავაკლოთ მდგომარეობა ვირჩევთ1."
"RadeonCardFrom.memState.text1","ეს ძაან დაწინაურებული პარამეტრია.ცადეთ თუ გაქვთ პრობლემები ძაბვასთან.თუ არ გაქვთ-არ ახლოთ ხელი"
"RadeonCardFrom.coreVddc.text5","vbios-ის ცხრილიდან"
"RadeonCardFrom.coreVddc.text4","იგულისხმება mB ან დაგვარი მნიშვნელობა"
"RadeonCardFrom.coreVddc.text3","თქვენ შეგიძლიატ დაგვარი მნიშვნელობა გაწეროთ"
"RadeonCardFrom.coreVddc.text2","ეს მდგომარეობა გამოიყენება ძაბვის დაყენებისთვის"
"RadeonCardFrom.coreVddc.text1","აუცილებელია თუ გინდათ ვიდეობარათის ბირთვის ძაბვა გინდათ დააკლოთ.უნდა დააყენოთ 'ბირთვის მდგომარეობა' ან დეფოლტი"
"RadeonCardFrom.coreState.text4.","დააკელით ძაბვის მაჩენებელი გამოყენების დაკლებისთვის"
"Default is","დეფალტი"
"RadeonCardFrom.coreState.text2","ძაბვის ავტომატური მართვა,ძამ"
"RadeonCardFrom.coreState.text1","აცილებელია თუ უნდა დააკლოთ ვიდეოკარტის კვება.უნდა გამოიყენოთ 'ბირთვის სიხშირე' და'ბირთვის ძაბვა'"
"RadeonCardFrom.coreClock.text2","თუ არაა მითითებული 'ბირთვის მოდგომარეობა' მაშინ დეფალტი"
"RadeonCardFrom.coreClock.text1","დაყენეთ ბირთვის სიხშირე,აქ იქნება საუკეტესო მოანცემები"
"RadeonCardFrom.coreClock.text3","გმოიყენება სიხშირის დასაყენებლად"
"Refill","შევსება"
"balance","ბალანსი"
"per month","1 თვეში"
"Recommended payment is","გირჩევთ გადახდას"
"From balance","ბალანსიდან"
"With Coinpayment","coinpayment-დან გადახდა"
"Console","კონსოლი"
"Execute command","ბრძანების შესრულება"
"Wrong command","შეცდომა"
"Remove all messages?","წავშალოთ ყველა შეტყობინება?"
"EDIT","რედაქტირება"
"Overview","მიმოხილვა"
"Cards","ბარათები"
"CONSOLE","კონსოლი"
"Offline","ოფლაინშია"
"Booted","ჩიტვირთა"
"Uptime","მუშაობის დრო"
"TRANSFER","გადაცემა"
"Monitoring","მონიტორინგი"
"Reboot","გადატვირთვა"
"Miner Config","მაინერის გამართვა"
"Rocket","რაკეტა"
"Upgrade","განახელება"
"Shutdown","გამორთვა"
"OpenVPN configuration","openVPN გამართვა"
"Power actions","კვების რეაქცია"
"Server URL","სერვერის URL"
"Edit tags","ტეგების შეცვლა"
"Miner actions","მაინერის მოქმედება"
"Teleconsole Start","teleconsole-ის გაშვება"
"Teleconsole Stop","teleconsole-ის გაჩერება"
"Teleconsole Restart","teleconsole- ის გადატვირთვა"
"Hashrate watchdog","Hashrate wachdog"
"Run command","ბრძანების შესრულება"
"Miner Log","მაინერის ლოგი"
"Stop Miner","მაინერის გაჩერება"
"Restart Miner","მაინერის გადატვირთვა"
"Remote access","დაშვება შორიდან"
"more messages","მეტი შეტყობინებები"
"Add","დამატება"
"Password","პაროლი"
"Description","აღწერა"
"Add New Worker","ახალი ვორკერის დამატება"
"RigForm.EnterWorkerName","ვორკერის სახელის შეყვანა, IP"
"RigForm.EnterWorkerPassword","ვორკერის პაროლის შეყავანა"
"RigForm.EnterWorkerDescription","ვორკერის აღწერის შეყვანა"
"rejected","დაბლოკილები"
"shared","საერთოები"
"Upgrade to","განახელება"
"New features","ახალი შესაძლებლობები"
"New version","ახალი ვერსია"
"Current version","მოცემული ვერსია"
"SaveOCModal","დაჩქარების პროფილის დამახსვრება"
"Enter Name","შეიყვანეთ სახელი"
"SaveOverclockingAsTemplate.Name","აჩქარების პროფილის სახელი"
"SaveOverclockingAsTemplate.Title","აჩქარების დამახსვრება შაბლონის სახით"
"Set","დაყენება"
"Default","Default"
"Choose URL","url-ის არჩევა"
"ServerUrlFrom.Help3","Warning! Always prepare physical or network access (SSH) to the worker before changing this setting. If the worker is unable to connect to selected URL, it will become Offline in {os}. Mirror URL is saved in /hive-config/rig.conf where you can edit it manually."
"ServerUrlFrom.Help2","If you leave it as 'Default' then {os} can decide where to connect. Usually it will be the first in the list."
"ServerUrlFrom.Help1","If you have problems connecting to {os} server from your worker and have often false Offline/Online events, then try choosing a different server connection URL. Sometimes there are firewall problems (your own or ISP) and switching ports may help."
"Mirror Select","Mirror Select"
"Stats","Stats"
"gpu","gpu"
"for 24 hours","for 24 hours"
"View all","View all"
"day","day"
"Day left","Day left"
"Days left","Days left"
"New Tag Name","New Tag Name"
"Add Tag","Add Tag"
"Add tag","Add tag"
"Explore transaction","Explore transaction"
"Referrals.TransactionsNotFound","No transactions yet"
"Upload VBIOS","Upload VBIOS"
"VBIOS ROM file","VBIOS ROM file"
"UploadingBiosFromLabel","Force flashing ignoring security checking"
"Upload","Upload"
"VPN.ClientConf","client.conf ( upload only the file with embeded certs)"
"Login (auth-user-pass)","Login (auth-user-pass)"
"Password (auth-user-pass)","Password (auth-user-pass)"
"Address","Address"
"Enter wallet address","Enter wallet address or pool login (depends on pool you use)"
"Enter wallet name","Enter wallet name"
"Accepted shares ratio","Accepted shares ratio"
"Invalid shares","Invalid shares"
"High Temperature","High Temperature"
"Low hashrate","Low hashrate"
"cores","cores"
"Hive OS Version:","{os} Version:"
"Power:","Power:"
"Free disk space:","Free disk space:"
"Restart","Restart"
"Stop","Stop"
"Shut Down","Shutdown"
"Overclocking templates","Overclocking templates"
"WorkerActions.Upgrade","Do you want to upgrade workers to the latest OS version?"
"WorkerMiner.Tooltip","Accepted Rejected Invalid, Accepted Ratio"
"NoStatsFoundSoFar","No stats found so far"
"Delete","Delete"
"You can","You can"
"create one","Create one"
"FarmsAccess.NoUsersFound","No users found so far."
"Owner","Owner"
"Access Levels","Access Levels"
"User name","User name"
"UserEditForm.GrantAccessProject","Grant access to project"
"Grant access","Grant access"
"Access Levels...","Access Levels..."
"User login","User login"
"ProjectAccess.TrustUserDescription","You can give control access to your farm to other users, for example, you could give Full Access privileges to your admins in order for them to manage everything in your stead. Or you can give the read-only Monitor access privileges to your technical staff that do simple maintenance and monitoring and nothing more."
"Profile","Profile"
"Telegram","Telegram"
"here","here"
"Bio","Bio"
"Update Info","Update Info"
"Company Info","Company Info"
"Skype","Skype"
"Phone","Phone"
"API docs are","API docs are"
"Account.SetupTFAuth","Setup Two-factor Authentication"
"Account.TFAuth","Two-factor Authentication"
"Update Password","Update Password"
"Confirm New Password","Confirm New Password"
"Account.PasswordError","Password must be 8 or more characters."
"New Password","New Password"
"Current Password","Current Password"
"Full Name","Full Name"
"Account.ProfileSettings.Header","Account Profile Settings"
"Language","Language"
"Account.BIODescription1","Additional information about you."
"Account.BIODescription2","This is optional."
"Account.AuthenticationDecstiption","Enable to give your {os} account an extra layer of security."
"Account.PasswordDescription","Changing your password will also reset your API key."
"Account.ProfileDescription","Your login is your identity on {os} and is used to sign in."
"6 digits code","6 digits code"
"Enable 2FA","Enable 2FA"
"Turn off 2FA","Dissable 2FA"
"Account.AuthenticationTokenButton","Generate new Personal API-token"
"Authentication Tokens","Authentication Tokens"
"Account.AuthenticationToken","You can manage your personal API tokens. Generate a new one for your third party application. Or remove a suspicious session"
"Personal Tokens","Personal Tokens"
"Session Tokens","Session Tokens"
"Authy","Authy"
"Account.AuthenticationTwoFactor3","which can be installed on multiple devices including Desktop."
"Account.AuthenticationTwoFactor4","Scan the QR code with your camera and enter the code below."
"Farm Activity Feed","Farm Activity Feed"
"Pay","Pay"
"Payments","Payments"
"Amount to refill, $","Amount to refill, {currencySymbol}"
"Your Current Balance","Your Current Balance"
"Payments History","Payments History"
"Farms Balance","Farms Balance"
"Free","Free"
"Invoice","Invoice"
"days left","days left"
"Disable Paid Features","Disable Paid Features"
"Enable Paid Features","Enable Paid Features"
"Log in","Log in"
"Return to","Return to"
"Reset password","Reset password"
"Type email to recover password","Enter email to recover password"
"Error.Text","Sorry, a critical error occurred on this page."
"Just one step!","Just one step!"
"create wallet","create wallet"
"first!","first!"
"Farm.FarmsFs.Description","To manage Flight Sheets you need"
"FarmOC.EmptyMessage","No Overclocking Templates found. You can"
"Add OC Template","Add OC Template"
"Incoming farms","Incoming farms"
"Log in your account","Log into your account"
"2FA code (if enabled)","2FA code (if enabled)"
"Remember me","Remember me"
"Forgot password?","Forgot password?"
"Register","Register"
"Don't have account yet?","Don't have an account yet?"
"Referral Link","Referral Link"
"Referral.ReferralLink1","Share this link with others. They will be marked as your referrals after registering via your link. After they register you get"
"Your referral","Your referral"
"Copy to Clipboard","Copy to Clipboard"
"Promo Code","Promo Code"
"Referral.PromoCodeDescription1","Sometimes you can't share your link with people. Here you can generate your unique promocode. For example, 'MIKESHIVE' or 'SAVEBUCKSFORLAMBO'. If you are a seller, service shop or any other offline business this may work for you. To motivate clients to register with your code {os} will deposit"
"Referral.PromoCodeDescription2","to their account as soon as they do."
"ETH Wallet Address","ETH Wallet Address"
"Referral Balance","Referral Balance"
"Deposit to Hive","Deposit to {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","Passwords do not match"
"Create new account","Create new account"
"Confirm password","Confirm password"
"Register.CheckboxLabelText","By clicking Register you agree with"
"Terms","Terms"
"Register.HaveAccount","Have an account already?"
"RestorePassword.Message","Password successfully sent, please check your email"
"Remove all","Remove all"
"Id","ID"
"Activity Feed","Activity Feed"
"Build Log","Build Log"
"Other","Other"
"Flight Sheet","Flight Sheet"
"Flight Sheets","Flight Sheets"
"FlightSheets.Message","To start mining please select a Flight Sheet first!"
"StartConfOverclocking","Start Configuring Overclocking"
"Flash VBIOS","Flash VBIOS"
"OverclocingSettingsFoundSoFar","No Overclocking Settings found."
"Load From Template","Load From Template"
"Save As Template","Save As Template"
"Reset All","Reset All"
"Configure New Algo","Configure New Algorithm"
"Transfer","Transfer"
"Advanced Settings","Advanced Settings"
"Confirmation required","Confirmation required"
"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","Please type"
"Settings.RemoveProject4","to proceed or close this modal to cancel."
"Settings.RemoveProject1","You are going to remove a worker"
"Remove Worker","Remove Worker"
"Settings.RemovedWorker","Removed Worker cannot be restored!"
"Update Worker","Update Worker"
"Worker Name","Worker Name"
"Worker Settings","Worker Settings"
"OpenVPN Config","OpenVPN Config"
"Are you sure?","Are you sure?"
"Worker Password","Worker Password"
"Settings.ChangePass1","If you change the password only in database and there is an active worker using it, then that worker will go offline."
"Settings.ChangePass2","Change password in database and attempt changing it on worker. Will attempt to change password on an online worker. Password will be changed only after notification from the worker."
"Settings.ChangePass3","Change password in database only. The worker with current password will go offline."
"Transfer Worker","Transfer Worker"
"Settings.WalletTransferFarm","Move worker to another farm"
"Settings.RemoveProject5","Do you want to remove worker?"
"Settings.WalletTransfer","Wallet is not transferred with worker. Please apply a wallet from another farm after this transfer is done."
"Settings.ConfirmTransferWorker","Do you want to transfer worker?"
"Select farm","Select farm"
"Settings.TransferWorker","Flight sheet is not copied with the worker. Please apply flight sheet in a new farm after the movement is done."
"Transfer Worker?","Transfer Worker?"
"Tuning","Tuning"
"Worker","Worker"
"Online","Online"
"With Errors","With Errors"
"Hide filters","Hide filters"
"Show filters","Show filters"
"with","with"
"Name changed","Name changed"
"Farm settings","Farm settings"
"Settings.MargeProject","You can only merge the project with others you manage."
"Merge Project","Merge Project"
"Transfer Project","Transfer Project"
"Type project name","Type project name"
"Select user login","Select user login"
"Remove Project","Remove Project"
"Farm.Setting.Text1","You are going to remove a farm"
"Type Project Name","Type Project Name"
"You are going to merge farm","You are going to merge a farm"
"Merged project CANNOT be restored!","Merged projects CANNOT be restored!"
"Are you ABSOLUTELY sure?","Are you ABSOLUTELY sure?"
"Save Changes","Save Changes"
"Timezone changed","Timezone changed"
"Farm changed","Farm changed"
"Farm.Settings.TagsDescription","Add your custom tags to mark the workers"
"Farm.Settings.RemoveDescription1","Removing the project will delete its repository and all related resources including issues, merge requests etc."
"Farm.Settings.RemoveDescription2","Removed projects cannot be restored!"
"Farm Title","Farm Title"
"Remove Farm","Remove Farm"
"Question.ChangeFarmOwner","Change farm owner?"
"ChangeOwnership","to change ownership to"
"Leave Farm","Leave Farm"
"Settings.LeaveFarm","After this you won't have access to this farm anymore"
"RemoveFarmAccess","to remove farm access"
"Question.RemoveAccess","Do you want to remove your access?"
"Question.RemoveFarm","Do you want to remove farm?"
"Question.LeaveFarm","Do you want to leave farm?"
"Farm.Setting.FarmHashDescription1","Farm hash is used for connecting workers to farm without precreating it on the web first."
"Farm.Setting.FarmHashDescription2","Simply set it in"
"Farm.Setting.FarmHashDescription3","before the first run."
"More details","More details"
"Farm Hash","Farm Hash"
"Transfer farm","Transfer farm"
"Farm.Setting.TransferDescription","Transfer farm to another user. Enter login of an existing user who will be the farm's new owner."
"No wallets found so far.","No wallets found."
"FlightSheetForm.NamePlaceholder","Enter the name of the Flight Sheet"
"FSFormItem.DcriHelp","Decred/Siacoin/Lbry/Pascal intensity. Default value is 30. For PASC, a reasonable value is about 10, for SIA — 15. Higher values will cause reduced hashrates on ETH mining."
"PoolConfigModal.Advanced","Advanced configuration"
"PoolConfigModal.AdvancedHint","<strong>Note!</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 a new password and a token will be sent to 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 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."