-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_save.tmx
6040 lines (6004 loc) · 183 KB
/
project_save.tmx
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE tmx SYSTEM "tmx11.dtd">
<tmx version="1.1">
<header creationtool="OmegaT" o-tmf="OmegaT TMX" adminlang="EN-US" datatype="plaintext" creationtoolversion="OmegaT-4.1.3" segtype="sentence" srclang="EN"/>
<body>
<!-- Default translations -->
<tu>
<tuv lang="EN">
<seg>&#10004; Good!</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T174208Z">
<seg>&#10004; Bra!</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>&#9888; Think twice!</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T174346Z">
<seg>&#9888; Tänk dig för!</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>&times; Oh no!</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T174426Z">
<seg>&times; Åh nej!</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>'K' or 'L'</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T183552Z">
<seg>'K' eller 'L'</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>(Don't put the wallet/private keys on your web server, otherwise you risk hackers stealing your coins.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T081637Z">
<seg>(Spara inte plånboken/de privata nycklarna på din webbserver, för då riskerar du att hackare stjäl dina bitcoin.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>(Y/Yes/N/No)</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T202653Z" creationid="Dorothy" creationdate="20171026T202653Z">
<seg>(J/Ja/N/Nej)</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>(Y/Yes/N/No):</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T200450Z" creationid="Dorothy" creationdate="20171026T200450Z">
<seg>(J/Ja/N/Nej):</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>(Y/n)</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T202945Z" creationid="Dorothy" creationdate="20171026T202945Z">
<seg>(J/n)</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>+--> block height</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T202813Z" creationid="Dorothy" creationdate="20171026T202813Z">
<seg>+--> blockhöjd</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>, number of keys:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T064052Z">
<seg>, antal nycklar:</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>, of which <x1/> is dust from change</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T194138Z">
<seg>, varav <x1/> är damm från växel</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>, which can break the anonymity of ring signature.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T062346Z">
<seg>, vilket kan bryta "the anonymity of ring signature".</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>--restore-deterministic-wallet uses --generate-new-wallet, not --wallet-file</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T055058Z">
<seg>--restore-deterministic-wallet använder --generate-new-wallet, inte --wallet-file</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T200759Z">
<seg>.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>0 or 1</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T195957Z">
<seg>0 eller 1</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>0, 1, 2, 3, or 4</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T195950Z">
<seg>0, 1, 2, 3 eller 4</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><b>A Bitcoin wallet</b> is as simple as a single pairing of a Bitcoin address with its corresponding Bitcoin private key.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T183727Z">
<seg><b>En bitcoinplånbok</b> är helt enkelt ett par, bestående av en bitcoinadress och dess tillhörande privata nyckel.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><b>Add funds</b> to this wallet by instructing others to send bitcoins to your Bitcoin address.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T080902Z">
<seg><b>För över pengar</b> till denna plånbok genom att be andra att skicka bitcoin till din bitcoinadress.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><b>Check your balance</b> by going to blockchain.info or blockexplorer.com and entering your Bitcoin address.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T083040Z">
<seg><b>Kolla ditt saldo</b> genom att gå till blockchain.info eller blockexplorer.com och ange din bitcoinadress.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><b>Spend your bitcoins</b> by going to blockchain.info and sweep the full balance of your private key into your account at their website.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T184045Z">
<seg><b>Spendera dina bitcoin</b> genom att gå till blockchain.info och svepa din privata nyckels hela saldo till ditt konto på deras webbplats.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><b>To safeguard this wallet</b> you must print or otherwise record the Bitcoin address and private key.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T184439Z">
<seg><b>För att skydda denna plånbok</b> måste du skriva ut eller på annat spara bitcoinadressen och den privata nyckeln.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><br />Tip: Double check you are offline by trying</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T081058Z">
<seg><br />Tips: Kontrollera dessutom att du är offline genom att försöka nå </seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg><min_amount> should be smaller than <max_amount></seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T170747Z">
<seg><min_belopp> should be mindre än <max_belopp></seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg><mixin_count> is the number of extra inputs to include for untraceability.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T064457Z">
<seg><mixin_count> är det antal "extra inputs to include för untraceability".</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><priority> is the priority of the transaction.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T183424Z">
<seg><prioritet> är transaktionens prioritet.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg><x1/> change to <x2/></seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T123123Z">
<seg><x1/> växel till <x2/></seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg><x5/>Is this okay?</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T064319Z">
<seg><x5/>Är this okay?</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>A total of <x1/> from dust change will be sent to dust address</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T194230Z">
<seg>A total of <x1/> från växeldamm kommer att skickas till damm-adress</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Add</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T054816Z">
<seg>Addera</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Address book is empty.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T060449Z">
<seg>Adressboken är tom.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Address:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T060509Z">
<seg>Adress:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Addresses per page:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T054829Z">
<seg>Adresser per sida:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Addresses to generate:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T180430Z">
<seg>Antal adresser att skapa:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Algorithm: SHA256(passphrase)</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T182707Z">
<seg>Algoritm: SHA256(lösenfras)</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>All synchronous unit tests passed.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T171413Z">
<seg>Alla synkrona enhetstester lyckades.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Allow communicating with a daemon that uses a different RPC version</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T055322Z">
<seg>Tillåt kommunikation med en daemon som använder en annan version av RPC</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Also, running the bitcoin daemon on your web server means your private keys are hosted on the server and could get stolen if your web server is hacked.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T181125Z">
<seg>Att köra bitcoindemonen på din webbserver innebär dessutom att dina privata nycklar lagras på servern och kan stjälas om din webbserver blir hackad.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Always use "exit" command when closing monero-wallet-cli to save your
current session's state.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T221742Z">
<seg>Använd alltid kommandot "exit" när du stänger monero-wallet-cli så att ditt aktuella sessionstillstånd sparas.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Amount:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T060109Z">
<seg>Belopp:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>An important part of creating a Bitcoin wallet is ensuring the random numbers used to create the wallet are truly random.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T203743Z">
<seg>Ett viktigt steg när det gäller att skapa en bitcoinplånbok är att säkerställa att de slumptal som används för att skapa plånboken verkligen är slumpmässiga.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>At least one of Electrum-style word list and private view key must be specified</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T153636Z">
<seg>Åtminstone en av "Electrum-style" ordlista och privat visningsnyckel måste anges</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Attempting to generate or restore wallet, but specified file(s) exist.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T050323Z">
<seg>Försöker skapa eller återskapa plånbok, men "specified" fil(er) existerar.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Attempting to save transaction to file, but specified file(s) exist.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T064154Z">
<seg>Försöker spara transaktion till fil, men angiven fil finns redan.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Available options: seed language - set wallet seed language; always-confirm-transfers <1|0> - whether to confirm unsplit txes; print-ring-members <1|0> - whether to print detailed information about ring members during confirmation; store-tx-info <1|0> - whether to store outgoing tx info (destination address, payment ID, tx secret key) for future reference; default-mixin <n> - set default mixin (default is 4); auto-refresh <1|0> - whether to automatically sync new blocks from the daemon; refresh-type <full|optimize-coinbase|no-coinbase|default> - set wallet refresh behaviour; priority [0|1|2|3|4] - default/unimportant/normal/elevated/priority fee; confirm-missing-payment-id <1|0>; ask-password <1|0>; unit <monero|millinero|micronero|nanonero|piconero> - set default monero (sub-)unit; min-outputs-count [n] - try to keep at least that many outputs of value at least min-outputs-value; min-outputs-value [n] - try to keep at least min-outputs-count outputs of at least that value; merge-destinations <1|0> - whether to merge multiple payments to the same destination address</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T152753Z">
<seg>Tillgängliga alternativ: seed language - set plånbok seed language; always-confirm-transfers <1|0> - whether to bekräfta "unsplit txes"; print-ring-members <1|0> - whether skriva ut detaljerad information om ringmedlemmar "during" bekräftelse; store-tx-info <1|0> - whether to store utgående tx info (destinationsadress, betalnings-ID, hemlig nyckel för transaktion) för framtida referens; default-mixin <n> - set default mixin (default is 4); auto-refresh <1|0> - whether automatisk synka nya block från daemonen; refresh-type <full|optimize-coinbase|no-coinbase|default> - set plånbok refresh beteende; prioritet [0|1|2|3|4] - default/unimportant/normal/elevated/priority fee; confirm-missing-payment-id <1|0>; ask-password <1|0>; unit <monero|millinero|micronero|nanonero|piconero> - set default monero (sub-)unit; min-outputs-count [n] - try to keep at least that many outputs of value at least min-outputs-value; min-outputs-value [n] - try to keep at least min-outputs-count outputs of at least that value; merge-destinations <1|0> - "whether to merge multiple" betalningar till samma destinationsadress</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>BIP38 Encrypt?</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T180452Z">
<seg>BIP38-kryptera?</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Backup the file you just created to a secure location.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T081552Z">
<seg>Gör en backup-kopia av filen du just skapade och spara den på en säker plats.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
Not OK
</note>
<tuv lang="EN">
<seg>Bad signature</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T063741Z">
<seg>"Bad" signatur</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Bad signature from</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T060915Z">
<seg>Bad signature från</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Balance:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T182324Z">
<seg>Saldo:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Below we show the Bitcoin Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T192934Z">
<seg>Nedan visas den bitcoinadress och offentliga nyckel som hör ihop med din privata nyckel, tillsammans med den privata nyckeln, i de vanligaste kodningsformaten (WIF, WIFC, HEX, B64).</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Bin size:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bitcoin Address</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T175749Z">
<seg>Bitcoinadress</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bitcoin Address Compressed</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T184229Z">
<seg>Komprimerad bitcoinadress</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bitcoin Address:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171018T172725Z">
<seg>Bitcoinadress:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bitcoin v0.6+ stores public keys in compressed format.</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T192939Z">
<seg>Bitcoin v0.6 och senare sparar offentliga nycklar i komprimerat format.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bitcoins will safely pile up on the block chain.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T191022Z">
<seg>Bitcoin kommer tryggt att samlas upp på blockkedjan.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Blockchain saved</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171026T203455Z">
<seg>Blockkedjan sparad</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Blocks received:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T064050Z">
<seg>Mottagna block:</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Both Electrum-style word list and private key(s) specified</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T153655Z">
<seg>Både "Electrum-style" ordlista och privat nyckel har angivits</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Brain Wallet</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T170324Z">
<seg>Minnesplånbok</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Bulk Wallet</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T170316Z">
<seg>Massplånbok</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>By doing this you are recording the big random number, your private key, in B6 or base 6 format.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T082941Z">
<seg>Genom att göra detta skriver du ned det stora slumptal - din privata nyckel - i B6 eller Base6-format.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Calculate Vanity Wallet</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T075049Z">
<seg>Räkna fram den personliga plånboken</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Can't find config file</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T064620Z">
<seg>Can't find konfigurationsfilen</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Can't specify more than one of --wallet-file and --generate-from-json</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T060631Z">
<seg>Det går inte att ange mer än en av --wallet-file och --generate-from-json</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Cannot create deprecated wallets from JSON</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T213724Z">
<seg>Det går inte att skapa inaktuella plånböcker från JSON</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Cannot multiply two public keys.</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T192444Z">
<seg>Det går inte att multiplicera två offentliga nycklar.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Cannot specify --</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T213806Z">
<seg>Det går inte att ange --</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Change goes to more than one address</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T123101Z">
<seg>Växel går till mer än en adress</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Change wallet password</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T195348Z">
<seg>Ändra lösenord för plånbok</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Check amount going to <address> in <txid></seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T212524Z">
<seg>"Check" belopp som går till <adress> i <txid></seg>
</tuv>
</tu>
<tu>
<note>bestämd form?
</note>
<tuv lang="EN">
<seg>Check permissions or remove file</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T164725Z" creationid="Dorothy" creationdate="20171026T203210Z">
<seg>Kontrollera behörigheter eller ta bort filen</seg>
</tuv>
</tu>
<tu>
<note>
address
Not OK
</note>
<tuv lang="EN">
<seg>Check tx proof for payment going to <address> in <txid></seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171031T063742Z">
<seg>Check tx "proof" för betalning som går till <address> i <txid></seg>
</tuv>
</tu>
<tu>
<note>vad är en "betald adress"?
claimed - inmutade?
Inmutad växel?
La monnaie réclamée ne va pas à une adresse payée
Not OK
</note>
<tuv lang="EN">
<seg>Claimed change does not go to a paid address</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T194051Z">
<seg>"Claimed växel" går inte till en betald adress</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Claimed change is larger than payment to the change address</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T194846Z">
<seg>"Claimed växel" är större än betalning till växeladressen</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Combine Shares</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T064516Z">
<seg>Kombinera delarna</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Combined Private Key</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T183928Z">
<seg>Kombinerad privat nyckel</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Comma Separated Values (CSV):</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T181019Z">
<seg>Kommaseparerade värden (CSV):</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Commands:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T045540Z">
<seg>Kommandon:</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Compressed address?</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T182725Z">
<seg>Komprimerad adress?</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Compressed addresses?</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T180959Z">
<seg>Komprimerade adresser?</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Config file</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T225401Z">
<seg>Konfigurationsfil</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Confirm Passphrase:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T182652Z">
<seg>Bekräfta lösenfras:</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Confirm rpc-bind-ip value is NOT a loopback (local) IP</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T171743Z">
<seg>Bekräfta rpc-bind-ip value är INTE ett loopback- (lokalt) IP</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Consider SSH tunnel or SSL proxy instead.</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T171908Z">
<seg>Överväg att använda SSH-tunnel eller SSL-proxy istället.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Copy and paste the above Private Key field into a text file.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171021T074607Z">
<seg>Kopiera ovanstående privata nyckel och klistra in den i en textfil.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Copy and paste the above into the "Your-Part-Public-Key" field in the Vanity Pool Website.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T183032Z">
<seg>Kopiera ovanstående och klistra in det i fältet "Your public key" på webbplatsen Vanity Pool.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Copy and paste the generated comma separated values (CSV) list to a secure text file on your computer.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T181207Z">
<seg>Kopiera och klistra in den genererade listan med kommaseparerade (CSV) värden i en säker textfil på din dator.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Copyright bitaddress.org</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Could not combine keys.</seg>
</tuv>
<tuv lang="SV" changeid="mini-me" changedate="20171210T142623Z">
<seg>Det gick inte att kombinera nycklarna.</seg>
</tuv>
</tu>
<tu>
<note>Create vs. generate
Not OK
</note>
<tuv lang="EN">
<seg>Create non-deterministic view and spend keys</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T063147Z">
<seg>Skapa non-deterministic visnings- och spendernyckel</seg>
</tuv>
</tu>
<tu>
<note>
passed är resultatet av ett test kanske?
Not OK
</note>
<tuv lang="EN">
<seg>DNSSEC validation passed</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T064237Z">
<seg>DNSSEC validering "passed"</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Daemon either is not started or wrong port was passed.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T063611Z">
<seg>Daemon either inte startad eller fel port was passed.</seg>
</tuv>
</tu>
<tu>
<note>
betrodd
Not OK
</note>
<tuv lang="EN">
<seg>Daemon is local, assuming trusted</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T213750Z">
<seg>Daemon är lokal, "assuming trusted"</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Daemon must also be launched with --testnet flag</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171102T064420Z">
<seg>Daemonen måste också startas med flaggan --testnet</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Daemon uses a different RPC major version (<x1/>) than the wallet (<x2/>): <x3/>.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T210146Z">
<seg>Daemonen använder en annan högre version av RPC (<x1/>) än plånboken (<x2/>): <x3/>.</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Decrypt BIP38</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T165752Z">
<seg>Dekryptera BIP38</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Description:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T060528Z">
<seg>Beskrivning:</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Display Electrum-style mnemonic seed</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T184352Z">
<seg>Visa Electrum-style "mnemonic" frö</seg>
</tuv>
</tu>
<tu>
<note>
private spend key vs secret spend key
</note>
<tuv lang="EN">
<seg>Display private spend key</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171031T184352Z">
<seg>Visa privat spendernyckel</seg>
</tuv>
</tu>
<tu>
<note>private view key vs secret view key
</note>
<tuv lang="EN">
<seg>Display private view key</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171031T064401Z" creationid="Dorothy" creationdate="20171026T202025Z">
<seg>Visa privat visningsnyckel</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Donating</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T064314Z">
<seg>Donerar</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Donations:</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T170736Z">
<seg>Donationer:</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Either update one of them, or use --allow-mismatched-daemon-version.</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171030T210132Z">
<seg>Antingen uppdatera en av dem, eller använd --allow-mismatched-daemon-version.</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Electrum-style word list failed verification</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T164054Z">
<seg>det gick inte att verifiera Electrum-style ordlista</seg>
</tuv>
</tu>
<tu>
<note>
trusted betrodd
Not OK
</note>
<tuv lang="EN">
<seg>Enable commands which rely on a trusted daemon</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171101T055154Z">
<seg>Aktivera kommandon som "beror" på en trusted daemon</seg>
</tuv>
</tu>
<tu>
<note>
Not OK
</note>
<tuv lang="EN">
<seg>Enable with --trusted-daemon</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171027T182407Z">
<seg>Aktivera med --trusted-daemon</seg>
</tuv>
</tu>
<tu>
<tuv lang="EN">
<seg>Encrypt BIP38</seg>
</tuv>
<tuv lang="SV" changeid="Dorothy" changedate="20171019T165757Z">
<seg>Kryptera BIP38</seg>
</tuv>