-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathcopyq_sv.ts
3875 lines (3840 loc) · 165 KB
/
copyq_sv.ts
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 TS>
<TS version="2.1" language="sv_SE">
<context>
<name>AboutDialog</name>
<message>
<location filename="../src/ui/aboutdialog.ui" line="14"/>
<source>About</source>
<translation>Om</translation>
</message>
<message>
<location filename="../src/gui/aboutdialog.cpp" line="84"/>
<source>Clipboard Manager</source>
<translation>Urklippshanterare</translation>
</message>
<message>
<location filename="../src/gui/aboutdialog.cpp" line="91"/>
<source>Author</source>
<translation>Utvecklare</translation>
</message>
<message>
<location filename="../src/gui/aboutdialog.cpp" line="92"/>
<source>E-mail</source>
<translation>E-post</translation>
</message>
<message>
<location filename="../src/gui/aboutdialog.cpp" line="93"/>
<source>Web</source>
<translation>Webb</translation>
</message>
<message>
<location filename="../src/gui/aboutdialog.cpp" line="94"/>
<source>Donate</source>
<translation>Donera</translation>
</message>
</context>
<context>
<name>ActionDialog</name>
<message>
<location filename="../src/ui/actiondialog.ui" line="14"/>
<source>Action Dialog</source>
<translation>Åtgärdsdialog</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="33"/>
<source>Co&mmand:</source>
<translation>Ko&mmando:</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="58"/>
<source>Standard &input:</source>
<translation>Standard &indata:</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="68"/>
<source>Store standard o&utput:</source>
<translation>Lagra standard &utdata:</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="78"/>
<source>Send data of given media type to standard input of command (leave empty to turn off)</source>
<translation>Skicka data av given mediatyp till standardinmatning av kommandot (lämna tomt för att stänga av)</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="85"/>
<source>Create items from standard output of the program (leave empty to turn off)</source>
<translation>Skapa objekt från programmets standardutgång (lämna tomt för att stänga av)</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="102"/>
<source>&Separator for new items:</source>
<translation>Av&skiljare för nya objekt:</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="112"/>
<source><p>Regular expression for splitting output into multiple items.<\p>
<p>Use <b>\n</b> to store each line to separate item.</p></source>
<translation><p>Reguljärt uttryck för att dela upp utdata i flera objekt.<\p>
<p>Använd <b>\n</b> för att lagra varje rad till ett separat objekt.</p></translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="116"/>
<source>\n</source>
<translation>\n</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="123"/>
<source>Output &tab:</source>
<translation>U&tdataflik:</translation>
</message>
<message>
<location filename="../src/ui/actiondialog.ui" line="133"/>
<source>Save items in tab with given name (leave empty to save in the current tab)</source>
<translation>Spara objekt i flik med angivet namn (lämna tomt för att spara i aktuell flik)</translation>
</message>
<message>
<source>Command saved</source>
<translation type="vanished">Kommandot sparat</translation>
</message>
<message>
<source>Command was saved and can be accessed from item menu.
You can set up the command in preferences.</source>
<translation type="vanished">Kommandot sparades och kan kommas åt från objektmenyn.
Du kan konfigurera kommandot i inställningar.</translation>
</message>
</context>
<context>
<name>ActionHandler</name>
<message>
<location filename="../src/gui/actionhandler.cpp" line="118"/>
<source>Error: %1</source>
<translation>Fel: %1</translation>
</message>
<message>
<location filename="../src/gui/actionhandler.cpp" line="128"/>
<source>Exit code: %1</source>
<translation>Slutstatus: %1</translation>
</message>
<message>
<location filename="../src/gui/actionhandler.cpp" line="158"/>
<source>Command %1</source>
<translation>Kommando %1</translation>
</message>
</context>
<context>
<name>ActionHandlerDialog</name>
<message>
<location filename="../src/ui/actionhandlerdialog.ui" line="14"/>
<source>Process Manager</source>
<translation>Processhanterare</translation>
</message>
<message>
<location filename="../src/ui/actionhandlerdialog.ui" line="22"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
<location filename="../src/ui/actionhandlerdialog.ui" line="32"/>
<source>&Terminate Selected</source>
<translation>&Avsluta valda</translation>
</message>
</context>
<context>
<name>AddCommandDialog</name>
<message>
<location filename="../src/ui/addcommanddialog.ui" line="14"/>
<source>Add Commands</source>
<translation>Lägg till kommandon</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="63"/>
<source>Show/hide main window</source>
<translation>Visa/dölj huvudfönster</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="64"/>
<source>Show the tray menu</source>
<translation>Visa aktivitetsfältsmenyn</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="65"/>
<source>Show main window under mouse cursor</source>
<translation>Visa huvudfönster under muspekare</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="66"/>
<source>Edit clipboard</source>
<translation>Redigera urklipp</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="67"/>
<source>Edit first item</source>
<translation>Redigera första objektet</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="68"/>
<source>Copy second item</source>
<translation>Kopiera andra objektet</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="69"/>
<source>Show action dialog</source>
<translation>Visa åtgärdsdialog</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="70"/>
<source>Create new item</source>
<translation>Skapa nytt objekt</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="71"/>
<source>Copy next item</source>
<translation>Kopiera nästa objekt</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="72"/>
<source>Copy previous item</source>
<translation>Kopiera föregående objekt</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="73"/>
<source>Paste clipboard as plain text</source>
<translation>Klistra in urklipp som vanlig text</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="74"/>
<source>Disable clipboard storing</source>
<translation>Inaktivera urklippslagring</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="75"/>
<source>Enable clipboard storing</source>
<translation>Aktivera urklippslagring</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="76"/>
<source>Paste and copy next</source>
<translation>Klistra in och kopiera nästa</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="77"/>
<source>Paste and copy previous</source>
<translation>Klistra in och kopiera föregående</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="78"/>
<source>Take screenshot</source>
<translation>Ta skärmbild</translation>
</message>
<message>
<location filename="../src/common/globalshortcutcommands.cpp" line="79"/>
<source>Paste current date and time</source>
<translation>Klistra in aktuellt datum och tid</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="40"/>
<source>New command</source>
<translation>Nytt kommando</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="47"/>
<source>Ignore items with no or single character</source>
<translation>Ignorera objekt med inget eller ett tecken</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="84"/>
<source>Open in &Browser</source>
<translation>Öppna i we&bbläsare</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="92"/>
<source>Paste as Plain Text</source>
<translation>Klistra in som vanlig text</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="100"/>
<source>Autoplay videos</source>
<translation>Spela upp videoklipp automatiskt</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="109"/>
<source>Copy URL (web address) to other tab</source>
<translation>Kopiera URL (webbadress) till annan flik</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="116"/>
<source>Create thumbnail (needs ImageMagick)</source>
<translation>Skapa miniatyrbild (kräver ImageMagick)</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="124"/>
<source>Create QR Code from URL (needs qrencode)</source>
<translation>Skapa QR-kod från URL (kräver qrencode)</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="132"/>
<source>Tasks</source>
<comment>Tab name for some predefined commands</comment>
<translation>Uppgifter</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="135"/>
<source>Add to %1 tab</source>
<comment>%1 is quoted Tasks tab name</comment>
<translation>Lägg till i fliken %1</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="143"/>
<source>Move to %1 tab</source>
<comment>%1 is quoted Tasks tab name</comment>
<translation>Flytta till fliken %1</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="151"/>
<source>Ignore copied files</source>
<translation>Ignorera kopierade filer</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="160"/>
<source>Ignore *"Password"* window</source>
<translation>Ignorera fönster för *"Lösenord"*</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="161"/>
<source>Password</source>
<translation>Lösenord</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="169"/>
<source>Move to Trash</source>
<translation>Flytta till papperskorgen</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="172"/>
<source>(trash)</source>
<translation>(papperskorg)</translation>
</message>
<message>
<location filename="../src/common/predefinedcommands.cpp" line="176"/>
<source>Clear Current Tab</source>
<translation>Rensa aktuell flik</translation>
</message>
</context>
<context>
<name>ClipboardBrowser</name>
<message>
<source>Cannot Add New Items</source>
<translation type="vanished">Det går inte att lägga till nya objekt</translation>
</message>
<message>
<source>Tab is full. Failed to remove any items.</source>
<translation type="vanished">Fliken är full. Kunde inte ta bort några objekt.</translation>
</message>
<message>
<location filename="../src/gui/clipboardbrowser.cpp" line="1591"/>
<source>Cannot add new items to tab %1. Please remove items manually to make space.</source>
<translation>Det går inte att lägga till nya objekt på fliken %1. Ta bort objekt manuellt för att skapa utrymme.</translation>
</message>
<message>
<location filename="../src/gui/clipboardbrowser.cpp" line="1910"/>
<source>Discard Changes?</source>
<translation>Förkasta ändringar?</translation>
</message>
<message>
<location filename="../src/gui/clipboardbrowser.cpp" line="1911"/>
<source>Do you really want to <strong>discard changes</strong>?</source>
<translation>Vill du verkligen <strong>förkasta ändringar</strong>?</translation>
</message>
</context>
<context>
<name>ClipboardClient</name>
<message>
<location filename="../src/app/clipboardclient.cpp" line="108"/>
<source>Cannot connect to server! Start CopyQ server first.</source>
<translation>Det går inte att ansluta till servern! Starta CopyQ-servern först.</translation>
</message>
<message>
<location filename="../src/app/clipboardclient.cpp" line="101"/>
<source>Connection lost!</source>
<translation>Anslutningen förlorades!</translation>
</message>
</context>
<context>
<name>ClipboardDialog</name>
<message>
<location filename="../src/ui/clipboarddialog.ui" line="20"/>
<source>Clipboard Content</source>
<translation>Urklippsinnehåll</translation>
</message>
<message>
<location filename="../src/ui/clipboarddialog.ui" line="73"/>
<source>&Formats:</source>
<translation>&Format:</translation>
</message>
<message>
<location filename="../src/ui/clipboarddialog.ui" line="112"/>
<source>C&ontent:</source>
<translation>I&nnehåll:</translation>
</message>
<message>
<location filename="../src/ui/clipboarddialog.ui" line="205"/>
<source>Remove Format</source>
<translation>Ta bort format</translation>
</message>
<message>
<location filename="../src/gui/clipboarddialog.cpp" line="82"/>
<source>Item Content</source>
<translation>Objektinnehåll</translation>
</message>
<message>
<location filename="../src/gui/clipboarddialog.cpp" line="151"/>
<source><strong>Size:</strong> %1 bytes</source>
<comment>Size of clipboard/item data in bytes</comment>
<translation><strong>Storlek:</strong> %1 byte</translation>
</message>
<message>
<source><strong>Size:</strong> %1 bytes</source>
<comment>Size of data in bytes</comment>
<translation type="vanished"><strong>Storlek:</strong> %1 byte</translation>
</message>
</context>
<context>
<name>ClipboardServer</name>
<message>
<location filename="../src/app/clipboardserver.cpp" line="105"/>
<source>CopyQ server is already running.</source>
<translation>CopyQ-servern körs redan.</translation>
</message>
<message>
<location filename="../src/app/clipboardserver.cpp" line="369"/>
<source>Cancel Active Commands</source>
<translation>Avbryt aktiva kommandon</translation>
</message>
<message>
<location filename="../src/app/clipboardserver.cpp" line="370"/>
<source>Cancel active commands and exit?</source>
<translation>Avbryt aktiva kommandon och avsluta?</translation>
</message>
<message>
<location filename="../src/app/clipboardserver.cpp" line="373"/>
<source>Cancel Exiting</source>
<translation>Avbryt avslutande</translation>
</message>
<message>
<location filename="../src/app/clipboardserver.cpp" line="374"/>
<source>Exit Anyway</source>
<translation>Avsluta i alla fall</translation>
</message>
</context>
<context>
<name>CommandCompleter</name>
<message>
<location filename="../src/gui/commandcompleter.cpp" line="221"/>
<source>Ctrl+Space</source>
<comment>Shortcut to show completion menu</comment>
<translation>Ctrl+Blanksteg</translation>
</message>
</context>
<context>
<name>CommandDialog</name>
<message>
<location filename="../src/ui/commanddialog.ui" line="14"/>
<source>Commands</source>
<translation>Kommandon</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="26"/>
<source>Define new commands that can be either invoked automatically on new clipboard content or by user from menu or using system shortcut.</source>
<translation>Definiera nya kommandon som antingen kan anropas automatiskt vid nytt urklippsinnehåll eller av användaren från meny eller med systemgenväg.</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="51"/>
<source>&Find:</source>
<translation>&Sök:</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="64"/>
<source>&Load Commands…</source>
<translation>&Ladda kommandon…</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="74"/>
<source>Sa&ve Selected…</source>
<translation>Spara markerade…</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="84"/>
<source>Copy Selected</source>
<translation>Kopiera valda</translation>
</message>
<message>
<location filename="../src/ui/commanddialog.ui" line="91"/>
<source>Paste Commands</source>
<translation>Klistra in kommandon</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="177"/>
<source>Unsaved Changes</source>
<translation>Osparade ändringar</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="177"/>
<source>Command dialog has unsaved changes.</source>
<translation>Kommandodialogen har osparade ändringar.</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="255"/>
<source>Open Files with Commands</source>
<translation>Öppna filer med kommandon</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="256"/>
<source>Commands (*.ini);; CopyQ Configuration (copyq.conf copyq-*.conf)</source>
<translation>Kommandon (*.ini);; CopyQ-konfiguration (copyq.conf copyq-*.conf)</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="267"/>
<source>Save Selected Commands</source>
<translation>Spara valda kommandon</translation>
</message>
<message>
<location filename="../src/gui/commanddialog.cpp" line="268"/>
<source>Commands (*.ini)</source>
<translation>Kommandon (*.ini)</translation>
</message>
</context>
<context>
<name>CommandHelpButton</name>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="56"/>
<source>Command contains list of programs with arguments which will be executed. For example:</source>
<translation>Kommandon innehåller listor över program med argument som kommer att köras. Till exempel:</translation>
</message>
<message>
<source>Program argument %1 will be substituted for item text, and %2 through %9 for texts captured by regular expression.</source>
<translation type="vanished">Programargument %1 kommer ersättas för objekttext, och %2 till %9 för texter fångade av reguljärt uttryck.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="60"/>
<source>Program argument %1 will be substituted for item text.</source>
<translation>Programargument %1 kommer ersättas med objekttext.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="64"/>
<source>Character %1 can be used to pass standard output to the next program.</source>
<translation>Tecknet %1 kan användas för att skicka standard ut till nästa program.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="70"/>
<source>Following syntax can be used to pass rest of the command as single parameter.</source>
<translation>Följande syntax kan användas för att skicka resten av kommandot som en enda parameter.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="73"/>
<source>This gives same output as %1 but is more useful for longer commands.</source>
<translation>Detta ger samma utdata som %1 men är mer användbart för längre kommandon.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="80"/>
<source>Functions listed below can be used as in following commands.</source>
<translation>Funktioner som listas nedan kan användas som i följande kommandon.</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="81"/>
<source>&clipboard</source>
<comment>Example tab name</comment>
<translation>&urklipp</translation>
</message>
<message>
<location filename="../src/gui/commandhelpbutton.cpp" line="115"/>
<source>Show command help (F1)</source>
<translation>Visa kommandohjälp (F1)</translation>
</message>
</context>
<context>
<name>CommandWidget</name>
<message>
<location filename="../src/ui/commandwidget.ui" line="31"/>
<source>&Name:</source>
<translation>&Namn:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="41"/>
<source>Command name shown in menu</source>
<translation>Kommandonamn visat i meny</translation>
</message>
<message>
<source>Type of Action</source>
<translation type="vanished">Åtgärdstyp</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="63"/>
<source>Run the command automatically if clipboard has new content</source>
<translation>Kör kommandot automatiskt om urklipp har nytt innehåll</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="66"/>
<source>Auto&matic</source>
<extracomment>Type of command; triggered by whenever clipboard changes</extracomment>
<translation>Auto&matiskt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="79"/>
<source>Show command in context menu of matching items</source>
<translation>Visa kommando i snabbvalsmeny för matchande objekt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="82"/>
<source>In M&enu</source>
<extracomment>Type of command; triggered by a custom application shortcut</extracomment>
<translation>I m&eny</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="159"/>
<source>&Shortcut:</source>
<translation>&Genväg:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="197"/>
<source>&Global Shortcut:</source>
<translation>G&lobal genväg:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="95"/>
<source>Global Shortcut</source>
<extracomment>Type of command; triggered by a custom global/system shortcut</extracomment>
<translation>Global genväg</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="316"/>
<source>Match Items</source>
<translation>Matcha objekt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="405"/>
<source>Data of this MIME type will be sent to standard input of command.
Leave empty to disable this.</source>
<translation>Data av denna MIME-typ kommer sändas till standard in för kommando.
Lämna tomt för att inaktivera detta.</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="372"/>
<source>&Window:</source>
<translation>Fö&nster:</translation>
</message>
<message>
<source><p>Use command only for items whose text match this regular expression (leave empty to match anything).</p><p><span style=" font-weight:600;">Examples:</span></p><p> Match URL <span style=" font-weight:600;">^(https?|ftp)://</span></p><p> Match PDF filenames <span style=" font-weight:600;">\.pdf$</span></p><p> Match single character <span style=" font-weight:600;">^.$</span></p><p> Match remote multimedia <span style=" font-weight:600;">^http://.*\.(ogv|vlc|mp4|mp3)$</span></p></source>
<translation type="vanished"><p>Använd kommando endast för objekt vars text matchar detta reguljära uttryck (lämna tomt för att matcha vad som helst).</p><p><span style=" font-weight:600;">Exempel:</span></p><p> Matcha URL <span style=" font-weight:600;">^(https?|ftp)://</span></p><p> Matcha PDF-filnamn <span style=" font-weight:600;">\.pdf$</span></p><p> Matcha enstaka tecken <span style=" font-weight:600;">^.$</span></p><p> Matcha fjärrmultimedia <span style=" font-weight:600;">^http://.*\.(ogv|vlc|mp4|mp3)$</span></p></translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="108"/>
<source>Script</source>
<extracomment>Type of command; allows to extend scripting capabilities</extracomment>
<translation>Skript</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="121"/>
<source>Display</source>
<extracomment>Type of command; allows change how items are displayed</extracomment>
<translation>Visa</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="346"/>
<source>&Content:</source>
<translation>&Innehåll:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="416"/>
<source>&Filter:</source>
<translation>&Filter:</translation>
</message>
<message>
<source><p>Use commands only if filter command succeeds.</p>
<p>Item text is passed to <b>standard input</b> of the filter command. The item is <b>matched only if the filter command exit code is 0</b>.</p>
<p>Use <b>%1</b> for item text passed as argument and <b>%2</b> to <b>%9</b> for arguments captured by regular expression (parts enclosed in parentheses).</p>
<p>Use <b>|</b> to chain commands (pass standard output to next command).</p></source>
<translation type="vanished"><p>Använd kommandon endast om filterkommando lyckas.</p>
<p>Objekttext skickas till <b>standard in</b> för filterkommandot. Objektet <b>matchas endast om slutstatus för filterkommandot är 0</b>.</p>
<p>Använd <b>%1</b> för objekttext som skickas som argument och <b>%2</b> till <b>%9</b> för argument som fångas av reguljärt uttryck (delar innefattade i parenteser).</p>
<p>Använd <b>|</b> för att kedja ihop kommandon (skicka standard ut till nästa kommando).</p></translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="243"/>
<source>Comman&d</source>
<translation>Komman&do</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="56"/>
<source>Type:</source>
<translation>Typ:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="275"/>
<source>&Advanced</source>
<translation>&Avancerad</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="356"/>
<source>Skips the command if the input text does not match this regular expression (leave empty to match everything).
%2 through %9 (or argument[1] and up in script) in Command and Filter will be replaced with the captured texts.
Examples:
- Match URL: ^(https?|ftp)://
- Match PDF filenames: \.pdf$
- Match single character: ^.$
- Match remote multimedia: ^http://.*\.(ogv|vlc|mp4|mp3)$</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="435"/>
<source>Skips the command if the filter command fails with non-zero exit code.</source>
<translation>Hoppar över kommandot om filterkommandot misslyckas med nollskild avslutningskod.</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="447"/>
<source>Action</source>
<translation>Åtgärd</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="480"/>
<source>Name of tab to copy new items into (leave empty not to copy)</source>
<translation>Namn på flik att kopiera nya objekt till (lämna tomt för att inte kopiera)</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="492"/>
<source>Remove matching item
Note: If this is applied automatically, no other automatic commands are executed.</source>
<translation>Ta bort matchande objekt
Observera: Om detta verkställs automatiskt körs inga andra automatiska kommandon.</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="497"/>
<source>&Remove Item</source>
<translation>&Ta bort objekt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="507"/>
<source>Menu Action</source>
<translation>Menyåtgärd</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="528"/>
<source>Hide window after command is activated from context menu of an item</source>
<translation>Dölj fönster efter att kommando aktiveras från ett objekts snabbvalsmeny</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="531"/>
<source>&Hide main window after activation</source>
<translation>&Dölj huvudfönster efter aktivering</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="541"/>
<source>Command options</source>
<translation>Kommandoalternativ</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="637"/>
<source>Show action dialog before executing the command</source>
<translation>Visa åtgärdsdialog innan kommandot körs</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="640"/>
<source>&Wait</source>
<translation>&Vänta</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="647"/>
<source>Change item, don't create any new items</source>
<translation>Ändra objekt, skapa inte några nya objekt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="650"/>
<source>Tr&ansform</source>
<translation>Tr&ansformera</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="570"/>
<source>O&utput:</source>
<translation>&Utdata:</translation>
</message>
<message>
<source>Skips the command if the input text does not match this regular expression (leave empty to match everything).
%2 through %9 in Command and Filter will be replaced with the captured texts.
Examples:
- Match URL: ^(https?|ftp)://
- Match PDF filenames: \.pdf$
- Match single character: ^.$
- Match remote multimedia: ^http://.*\.(ogv|vlc|mp4|mp3)$</source>
<translation type="vanished">Hoppa över kommandot om inmatningstexten inte matchar detta reguljära uttryck (lämna tomt för att matcha allt).
%2 till %9 i kommando och filter kommer att ersättas med de infångade texterna.
Exempel:
Matcha webbadress: ^(https?|ftp):
Matcha PDF-filnamn: \.pdf$
Matcha ett tecken: ^.$
Matcha fjärrmultimedia: ^http://.*\.(ogv|vlc|mp4|mp3)$</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="382"/>
<source><p>Use command only for items copied to clipboard from window with title text that matches this regular expression (leave empty to match any window). On macOS, this contains the application name followed by a dash (&quot;-&quot;) then the window title. E.g. &quot;Safari - GitHub&quot;.</p></source>
<translation><p>Använd kommando endast för objekt som kopieras till urklipp från fönster med titeltext som matchar detta vanliga uttryck (lämna tomt för att matcha vilket fönster som helst). På macOS innehåller detta applikationsnamnet följt av ett bindestreck (&quot; -&quot;) sedan fönstertiteln. T.ex. &quot;Safari - GitHub &quot;.</p></translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="389"/>
<source>For&mat:</source>
<translation>For&mat:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="470"/>
<source>Cop&y to tab:</source>
<translation>Kop&iera till flik:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="580"/>
<source>Create items from standard output of the program (leave empty to disable)</source>
<translation>Skapa objekt från standard ut för programmet (lämna tomt för att inaktivera)</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="590"/>
<source>&Separator:</source>
<translation>Av&skiljare:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="600"/>
<source>Separator to match for splitting the output to multiple items</source>
<translation>Avskiljare att använda för att dela utdata till flera objekt</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="603"/>
<source>\n</source>
<translation>\n</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="610"/>
<source>Output &tab:</source>
<translation>U&tdataflik:</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="620"/>
<source>Save items in tab with given name (leave empty to save in first tab)</source>
<translation>Spara objekt i flik med angivet namn (lämna tomt för att spara i första fliken)</translation>
</message>
<message>
<location filename="../src/ui/commandwidget.ui" line="722"/>
<source>Show Advanced</source>
<translation>Visa avancerat</translation>
</message>
</context>
<context>
<name>ConfigTabAppearance</name>
<message>
<location filename="../src/ui/configtabappearance.ui" line="62"/>
<source>Background</source>
<translation>Bakgrund</translation>
</message>
<message>
<source>Notes</source>
<translation type="vanished">Anteckningar</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="69"/>
<source>Tooltips</source>
<translation>Inforutor</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="104"/>
<source>Found</source>
<translation>Hittad</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="111"/>
<source>Selected</source>
<translation>Vald</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="174"/>
<source>Number</source>
<translation>Nummer</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="181"/>
<source>Normal</source>
<translation>Normal</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="188"/>
<source>Editor</source>
<translation>Redigerare</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="195"/>
<source>Font</source>
<translation>Typsnitt</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="223"/>
<source>Alternate</source>
<translation>Alternera</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="230"/>
<source>Foreground</source>
<translation>Förgrund</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="251"/>
<source>Notification</source>
<translation>Avisering</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="283"/>
<source>Show &Number</source>
<translation>Visa &nummer</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="290"/>
<source>Show scrollbars</source>
<translation>Visa rullningslister</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="293"/>
<source>S&crollbars</source>
<translation>R&ullningslister</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="300"/>
<source>Use icons from desktop environment whenever possible</source>
<translation>Använd ikoner från skrivbordsmiljön närhelst möjligt</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="303"/>
<source>S&ystem Icons</source>
<translation>S&ystemikoner</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="310"/>
<source>&Antialias</source>
<translation>&Kantutjämning</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="319"/>
<source>S&et colors for tabs, tool bar and menus</source>
<translation>Stä&ll in färger för flikar, verktygsfält och menyer</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="341"/>
<source>&Reset Theme</source>
<translation>Åt&erställ tema</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="348"/>
<source>Theme:</source>
<translation>Tema:</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="355"/>
<source>&Load Theme</source>
<translation>&Läs in tema</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="362"/>
<source>&Save Theme</source>
<translation>&Spara tema</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="369"/>
<source>Edit current theme in external editor</source>
<translation>Redigera aktuellt tema i extern redigerare</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="372"/>
<source>E&dit Theme</source>
<translation>Re&digera tema</translation>
</message>
<message>
<location filename="../src/ui/configtabappearance.ui" line="393"/>
<source>Preview:</source>
<translation>Förhandsvisning:</translation>
</message>
<message>
<location filename="../src/gui/configtabappearance.cpp" line="476"/>
<source>item</source>
<comment>Search expression in preview in Appearance tab.</comment>
<translation>objekt</translation>
</message>
<message>
<location filename="../src/gui/configtabappearance.cpp" line="478"/>
<source>Search string is %1.</source>
<translation>Söksträngen är %1.</translation>
</message>
<message>
<location filename="../src/gui/configtabappearance.cpp" line="479"/>
<source>Select an item and
press F2 to edit.</source>
<translation>Välj ett objekt och tryck
F2 för att redigera.</translation>
</message>
<message>
<location filename="../src/gui/configtabappearance.cpp" line="481"/>
<source>Example item %1</source>
<translation>Exempelobjekt %1</translation>
</message>
<message>
<location filename="../src/gui/configtabappearance.cpp" line="486"/>
<source>Some random notes (Shift+F2 to edit)</source>