-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathlang_nn.json
More file actions
1074 lines (1074 loc) · 94.8 KB
/
lang_nn.json
File metadata and controls
1074 lines (1074 loc) · 94.8 KB
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
{
"\"{0}\" is a local package and can't be shared": "«{0}» er ein lokal pakke og kan ikkje delast",
"\"{0}\" is a local package and does not have available details": "«{0}» er ein lokal pakke og har ikkje tilgjengelege detaljar",
"\"{0}\" is a local package and is not compatible with this feature": "«{0}» er ein lokal pakke og støttar ikkje denne funksjonen",
"(Last checked: {0})": "(Sist sjekka: {0})",
"(Number {0} in the queue)": "(Nummer {0} i køen)",
"0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@yrjarv",
"0 packages found": "0 pakkar funne",
"0 updates found": "0 oppdateringar funne",
"1 - Errors": "1 - Feilmeldingar",
"1 day": "1 dag",
"1 hour": "1 time",
"1 month": "1 månad",
"1 package was found": "1 pakke vart funne",
"1 update is available": "1 oppdatering er tilgjengeleg",
"1 week": "1 veke",
"1 year": "1 år",
"1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Naviger til «{0}»- eller «{1}»-sida.",
"2 - Warnings": "2 - Åtvaringar",
"2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. Finn pakka(ne) du vil legge til i bundlen, og vel den venstre avmerkingsboksen.",
"3 - Information (less)": "3 - Informasjon (mindre)",
"3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. Når pakkane du vil legge til i bundlen er valde, finn og klikk på valet «{0}» på verktøylinja.",
"4 - Information (more)": "4 - Informasjon (meir)",
"4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Pakkane dine vil ha vorte lagde til i bundlen. Du kan fortsette med å legge til pakkar, eller eksportere bundlen.",
"5 - information (debug)": "5 - Informasjon (feilsøking)",
"A popular C/C++ library manager. Full of C/C++ libraries and other C/C++-related utilities<br>Contains: <b>C/C++ libraries and related utilities</b>": "Ein populær C/C++-bibliotekhåndterar. Full av C/C++-bibliotek og andre relaterte verktøy.<br>Inneheld: <b>C/C++-bibliotek og relaterte verktøy</b>",
"A repository full of tools and executables designed with Microsoft's .NET ecosystem in mind.<br>Contains: <b>.NET related tools and scripts</b>": "Eit repository fullt av verktøy og programmar desingna for Microsoft sitt .NET-økosystem.<br>Inneheld: <b>.NET-relaterte verktøy og skript</b>",
"A repository full of tools designed with Microsoft's .NET ecosystem in mind.<br>Contains: <b>.NET related Tools</b>": "Eit repository fylt med verktøy, designa med Microsoft sitt .NET-økosystem i tankane.<br>Inneheld: <b>.NET-relaterte verktøy</b>",
"A restart is required": "Omstart av maskina krevst",
"Abort install if pre-install command fails": "Avbryt installasjon viss pre-installasjonskommandoen mislykjast",
"Abort uninstall if pre-uninstall command fails": "Avbryt avinstallasjonen viss pre-avinstallasjonskommandoen mislykjast",
"Abort update if pre-update command fails": "Avbryt oppdateringa viss pre-oppdateringskommandoen mislykjast",
"About": "Om",
"About Qt6": "Om Qt6",
"About WingetUI": "Om WingetUI",
"About WingetUI version {0}": "Om WingetUI versjon {0}",
"About the dev": "Om utveklaren",
"Accept": "Aksepter",
"Action when double-clicking packages, hide successful installations": "Handling ved dobbelklikk på pakkar, skjul ferdige installasjonar",
"Add": "Legg til",
"Add a source to {0}": "Legg til ein kjelde til {0}",
"Add a timestamp to the backup file names": "Legg til eit tidsstempel til backup-filnamna",
"Add a timestamp to the backup files": "Legg til eit tidsstempel til backup-filane",
"Add packages or open an existing bundle": "Legg til pakkar eller opne ein eksisterande bundle",
"Add packages or open an existing package bundle": "Legg til pakkar eller opne ein eksisterande bundle",
"Add packages to bundle": "Legg til pakkar til bundlen",
"Add packages to start": "Legg til pakkar for å starte",
"Add selection to bundle": "Legg til utval til bundlen",
"Add source": "Legg til kjelde",
"Add updates that fail with a 'no applicable update found' to the ignored updates list": "Legg til oppdateringar som mislykjast med «ingen gjeldande oppdatering funne» i lista over ignorerte oppdateringar.",
"Adding source {source}": "Legg til kjelda {source}",
"Adding source {source} to {manager}": "Legg til kjelde {source} til {manager}",
"Addition succeeded": "Suksessfull tillegging",
"Administrator privileges": "Administratorrettar",
"Administrator privileges preferences": "Preferansar for adminstaratorrettar",
"Administrator rights": "Administratorrettar",
"Administrator rights and other dangerous settings": "Administratorrettar og andre risikofylte innstillingar",
"Advanced options": "Avanserte val",
"All files": "Alle filar",
"All versions": "Alle versjonar",
"Allow changing the paths for package manager executables": "Tillat endring av stiar for pakkehåndterar-kjørbare filer",
"Allow custom command-line arguments": "Tillat tilpassa kommandolinjeparametrar",
"Allow importing custom command-line arguments when importing packages from a bundle": "Tillat import av tilpassa kommandolinjeparametrar ved import av pakkar frå ein pakke-bundle",
"Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Tillat import av tilpassa pre-installasjons- og post-installasjonskommandoar ved import av pakkar frå ein pakke-bundle",
"Allow package operations to be performed in parallel": "Tillat at pakkehandlingar skjer parallelt",
"Allow parallel installs (NOT RECOMMENDED)": "Tillat parallelle installasjonar (IKKJE ANBEFALT)",
"Allow pre-release versions": "Tillat forhandsversjonar",
"Allow {pm} operations to be performed in parallel": "Tillat at {pm}-operasjonar kan køyre i parallell",
"Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Du kan eventuelt også installere {0} ved å køyre følgjande kommando i Windows PowerShell:",
"Always elevate {pm} installations by default": "Alltid auk tillatingsnivået for {pm}-installasjonar",
"Always run {pm} operations with administrator rights": "Alltid køyr {pm}-operasjonar med administratorrettar",
"An error occurred": "Ein feil oppstod",
"An error occurred when adding the source: ": "Ein feil oppstod då kjelden vart lagt til:",
"An error occurred when attempting to show the package with Id {0}": "Ein feil oppstod med visinga av ein pakke med ID {0}",
"An error occurred when checking for updates: ": "Ein feil oppstod ved sjekking for oppdateringar",
"An error occurred while attempting to create an installation script:": "Ein feil oppstod ved forsøk på å lage eit installasjonsskript:",
"An error occurred while loading a backup: ": "Ein feil oppstod under lasting av ein sikkerheitskopi: ",
"An error occurred while logging in: ": "Ein feil oppstod under innlogging: ",
"An error occurred while processing this package": "Ein feil oppstod i behandlinga av denne pakken",
"An error occurred:": "Ein feil oppstod:",
"An interal error occurred. Please view the log for further details.": "Ein intern feil oppstod. Venlegst sjå loggen for fleire detaljar.",
"An unexpected error occurred:": "Ein uventa feil oppstod:",
"An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Ein uventa feil oppstod ved forsøk på å reparere WinGet. Venlegst prøv igjen seinare",
"An update was found!": "Ein oppdatering vart funnen!",
"Android Subsystem": "Android-undersystem",
"Another source": "Annen kjelde",
"Any new shorcuts created during an install or an update operation will be deleted automatically, instead of showing a confirmation prompt the first time they are detected.": "Nye snarveiar som blir oppretta under ein installasjon eller oppdateringshandling vil bli sletta automatisk, i staden for å visa ein bekreftingsdialog første gangen dei blir oppdaga.",
"Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Snarveiar oppretta eller endra utanfor UniGetUI vil bli ignorerte. Du vil kunne legge dei til via {0}-knappen.",
"Any unsaved changes will be lost": "Ulagra endringar vil gå tapt",
"App Name": "Appnamn",
"Appearance": "Utsjånad",
"Application theme, startup page, package icons, clear successful installs automatically": "App-tema, startsida, pakkeikon, fjern ferdige installasjonar automatisk",
"Application theme:": "Applikasjonstema:",
"Apply": "Bruk",
"Architecture to install:": "Arkitektur som blir installert:",
"Are these screenshots wron or blurry?": "Er desse skjermbilda feil eller uklare?",
"Are you really sure you want to enable this feature?": "Er du verkeleg sikker på at du vil aktivere denne funksjonen?",
"Are you sure you want to create a new package bundle? ": "Er du sikker på at du vil lage ein ny pakke-bundle?",
"Are you sure you want to delete all shortcuts?": "Er du sikker på at du vil slette alle snarveiane?",
"Are you sure?": "Er du sikker?",
"Ascendant": "Stigande",
"Ask for administrator privileges once for each batch of operations": "Spør etter administratorrettar ein gong per gruppe operasjonar",
"Ask for administrator rights when required": "Spør om administratorrettar ved behov",
"Ask once or always for administrator rights, elevate installations by default": "Spør ein gong eller alltid etter administratorrettar, auk tillatingsnivået som standard",
"Ask only once for administrator privileges": "Spør berre ein gong for administratorrettar",
"Ask only once for administrator privileges (not recommended)": "Berre spør om administratortilgang ein gong (ikkje anbefalt)",
"Ask to delete desktop shortcuts created during an install or upgrade.": "Spør om å slette skrivebordssnarveiar opprettede under installasjon eller oppgradering.",
"Attention required": "Oppmerksemd krevst",
"Authenticate to the proxy with an user and a password": "Autentiser til proxy-en med brukar og passord",
"Author": "Forfattar",
"Automatic desktop shortcut remover": "Automatisk fjerning av skrivebordssnarveiar",
"Automatic updates": "Automatiske oppdateringar",
"Automatically save a list of all your installed packages to easily restore them.": "Lagre ei liste over alle dine installerte pakkar automatisk for å forenkle gjenoppretting av dei.",
"Automatically save a list of your installed packages on your computer.": "Lagre ei liste over dine installerte pakkar på datamaskina di automatisk",
"Automatically update this package": "Oppdater denne pakka automatisk",
"Autostart WingetUI in the notifications area": "Start WingetUI automatisk i varslingsfeltet",
"Available Updates": "Tilgjengelege oppdateringar",
"Available updates: {0}": "Tilgjengelege oppdateringar: {0}",
"Available updates: {0}, not finished yet...": "Tilgjengelege oppdateringar: {0}, jobbar framleis...",
"Backing up packages to GitHub Gist...": "Sikkerheitskopier pakkar til GitHub Gist...",
"Backup": "Ta backup",
"Backup Failed": "Sikkerheitskopi feilet",
"Backup Successful": "Sikkerheitskopia vart fullført",
"Backup and Restore": "Sikkerheitskopi og gjenoppretting",
"Backup installed packages": "Sikkerheitskopier installerte pakkar",
"Backup location": "Plassering for sikkerheitskopi",
"Become a contributor": "Bli ein bidragsytar",
"Become a translator": "Bli ein omsettar",
"Begin the process to select a cloud backup and review which packages to restore": "Starta prosessen for å velje ein skya-sikkerheitskopi og gjennomgå kva pakkar som skal gjenoppretta",
"Beta features and other options that shouldn't be touched": "Beta-funksjonalitet og andre innstillingar som ikkje må rørast",
"Both": "Båe",
"Bundle security report": "Sikkerheitsrapport for bundle",
"But here are other things you can do to learn about WingetUI even more:": "Men her er andre ting du kan gjere for å lære enda meir om WingetUI:",
"By toggling a package manager off, you will no longer be able to see or update its packages.": "Ved å deaktivere ein pakkehandterar kjem du ikkje lenger til å kunne sjå eller oppdatere pakkane hans",
"Cache administrator rights and elevate installers by default": "Bufre administratorrettar og gjev installasjonsprogrammar administratorrettar automatisk",
"Cache administrator rights, but elevate installers only when required": "Bufre administratorrettar, men berre gjev installasjonsprogrammar administratorrettar når det er naudsynt",
"Cache was reset successfully!": "Buffer var vorte nullstilt!",
"Can't {0} {1}": "Kan ikke {0} {1}",
"Cancel": "Avbryt",
"Cancel all operations": "Avbryt alle handlingar",
"Change backup output directory": "Endre mappa for sikkerheitskopien",
"Change default options": "Endra standardval",
"Change how UniGetUI checks and installs available updates for your packages": "Endre korleis UniGetUI sjekkar for og installerar tilgjengelege oppdateringar for pakkane dine",
"Change how UniGetUI handles install, update and uninstall operations.": "Endra korleis UniGetUI handsamar installasjon, oppdatering og avinstallasjon.",
"Change how UniGetUI installs packages, and checks and installs available updates": "Endra korleis UniGetUI installerar pakkar, og sjekkar og installerar tilgjengelege oppdateringar",
"Change how operations request administrator rights": "Endra korleis handlingar ber om administratorrettar",
"Change install location": "Endre plasseringa for installasjon",
"Change this": "Endra dette",
"Change this and unlock": "Endra dette og låst opp",
"Check for package updates periodically": "Sjekk etter pakkoppdateringar med jamne mellomrom",
"Check for updates": "Sjekk for oppdateringar",
"Check for updates every:": "Søk etter oppdateringar kvar:",
"Check for updates periodically": "Søk etter nye oppdateringar med jamne mellomrom",
"Check for updates regularly, and ask me what to do when updates are found.": "Sjekk etter oppdateringar regelmesseg og spør meg kva jeg vil gjere når oppdateringar er funne.",
"Check for updates regularly, and automatically install available ones.": "Sjekk for oppdateringar jamnleg, og installer tilgjengelege oppdateringar automatisk.",
"Check out my {0} and my {1}!": "Sjekk ut min {0} og min {1}!",
"Check out some WingetUI overviews": "Sjekk ut nokre WingetUI-oversikter",
"Checking for other running instances...": "Søkar etter andre kjørande instansar...",
"Checking for updates...": "Søkar etter oppdateringar...",
"Checking found instace(s)...": "Sjekkar oppdaga instans(ar)...",
"Choose how many operations shouls be performed in parallel": "Vel kor mange handlingar som skal utførast i parallell",
"Clear cache": "Tøm buffer",
"Clear finished operations": "Tøm ferdige handlingar",
"Clear selection": "Tøm val",
"Clear successful operations": "Tøm vellukkede handlingar",
"Clear successful operations from the operation list after a 5 second delay": "Tøm vellukkede handlingar frå handlingslista etter ein 5-sekunders forsinking",
"Clear the local icon cache": "Tøm det lokale ikonbufferet",
"Clearing Scoop cache - WingetUI": "Rensar Scoop-cachen - WingetUI",
"Clearing Scoop cache...": "Tømmar Scoop sin buffer...",
"Click here for more details": "Klikk her for fleire detaljar",
"Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Trykk på \"Installer\" for å starte installasjonsprosessen. Viss du hoppar over installasjonen, kan det hende at UniGetUI ikkje fungerar som forventa.",
"Close": "Lukk",
"Close UniGetUI to the system tray": "Lukk UniGetUI til systemstatusfeltet",
"Close WingetUI to the notification area": "Minimer WingetUI til systemstatusfeltet",
"Cloud backup uses a private GitHub Gist to store a list of installed packages": "Skya-sikkerheitskopi brukar ein privat GitHub Gist til å lagre ei liste over installerte pakkar",
"Cloud package backup": "Skya-pakke-sikkerheitskopi",
"Command-line Output": "Kommandolinje-output",
"Command-line to run:": "Kommandolinje som skal køyrast:",
"Compare query against": "Samanlikn spørring mot",
"Compatible with authentication": "Kompatibel med autentisering",
"Compatible with proxy": "Kompatibel med proxy",
"Component Information": "Komponentinformasjon",
"Concurrency and execution": "Parallell prosessering og eksekusjon",
"Connect the internet using a custom proxy": "Kople til internett med ein tilpassa proxy",
"Continue": "Fortsett",
"Contribute to the icon and screenshot repository": "Bidra til ikon- og skjembildearkivet",
"Contributors": "Bidragsytare",
"Copy": "Kopier",
"Copy to clipboard": "Kopier til utklippstavla",
"Could not add source": "Kunne ikkje legge til kjelde",
"Could not add source {source} to {manager}": "Kunne ikkje legge til kjelde {source} til {manager}",
"Could not back up packages to GitHub Gist: ": "Kunne ikkje sikkerheitskopiere pakkar til GitHub Gist: ",
"Could not create bundle": "Kunne ikkje lage bundle",
"Could not load announcements - ": "Kunne ikkje laste inn annonseringar -",
"Could not load announcements - HTTP status code is $CODE": "Kunne ikkje laste inn annonseringar - HTTP-statuskoden er $CODE",
"Could not remove source": "Kunne ikkje fjerne kjelde",
"Could not remove source {source} from {manager}": "Kunne ikkje fjerne kjelde {source} frå {manager}",
"Could not remove {source} from {manager}": "Kunne ikkje fjerne {source} frå {manager}",
"Create .ps1 script": "Opprett .ps1-skript",
"Credentials": "Legitimasjon",
"Current Version": "Nåværande versjon",
"Current executable file:": "Gjeldande kjørbar fil:",
"Current status: Not logged in": "Gjeldande status: Ikkje innlogga",
"Current user": "Nåværande brukar",
"Custom arguments:": "Tilpassa parameter:",
"Custom command-line arguments can change the way in which programs are installed, upgraded or uninstalled, in a way UniGetUI cannot control. Using custom command-lines can break packages. Proceed with caution.": "Tilpassa kommandolinjeparametrar kan endre korleis program blir installerte, oppgradera eller avinstallerte, på ein måte UniGetUI ikkje kan kontrollere. Å bruke tilpassa kommandolinjeparametrar kan bryte pakkar. Gå fram med forsiktighet.",
"Custom command-line arguments:": "Tilpassa kommandolinje-parametrar:",
"Custom install arguments:": "Tilpassa installasjonsparametrar:",
"Custom uninstall arguments:": "Tilpassa avinstallasjonsparametrar:",
"Custom update arguments:": "Tilpassa oppdateringsparametrar:",
"Customize WingetUI - for hackers and advanced users only": "Tilpass WingetUI - berre for hackarar og avanserte brukarar",
"DEBUG BUILD": "DEBUG-BUILD",
"DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "ANSVARSFRÅSKRIVING: VI ER IKKJE ANSVARLEGE FOR DEI NEDLASTA PAKKANE, VENLEGST BERRE INSTALLER PROGRAMVARE DU STOLAR PÅ.",
"Dark": "Mørk",
"Decline": "Avslå",
"Default": "Standard",
"Default installation options for {0} packages": "Standardinstallasjonsval for {0}-pakkar",
"Default preferences - suitable for regular users": "Standardpreferansar - tilpassa normale brukarar",
"Default vcpkg triplet": "Standard vcpkg-triplett",
"Delete?": "Slette?",
"Dependencies:": "Avhengigheiter:",
"Descendant": "Synkande",
"Description:": "Beskriving:",
"Desktop shortcut created": "Skrivebordssnarveien vart opprett",
"Details of the report:": "Detaljar av rapporten:",
"Developing is hard, and this application is free. But if you liked the application, you can always <b>buy me a coffee</b> :)": "Utvekling er vanskeleg og dette programmet er gradis, men viss du liker det kan du alltids <b>spandere ein kaffi på meg</b>",
"Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Installer direkte ved å dobbeltklikke på eit element under fana \"{discoveryTab}\" (i staden for å¨vise pakkeinformasjon)",
"Disable new share API (port 7058)": "Deaktiver det nye delings-APIet (port 7058)",
"Disable the 1-minute timeout for package-related operations": "Deaktiver 1-minutts-tidsavbrøytinga for pakke-relaterte handlingar",
"Disabled": "Deaktivert",
"Disclaimer": "Ansvarsfråskriving",
"Discover Packages": "Utforsk pakkar",
"Discover packages": "Utforsk pakkar",
"Distinguish between\nuppercase and lowercase": "Skill mellom store og små bokstavar",
"Distinguish between uppercase and lowercase": "Skilj mellom store og små bokstavar",
"Do NOT check for updates": "IKKJE søk etter oppdateringar",
"Do an interactive install for the selected packages": "Utfør ein interaktiv installasjon for den valte pakka",
"Do an interactive uninstall for the selected packages": "Utfør ein interaktiv avinstallasjon for den valte pakka",
"Do an interactive update for the selected packages": "Utfør ein interaktiv oppdatering for den valte pakka",
"Do not automatically install updates when the battery saver is on": "Ikkje installer oppdateringar automatisk når batteri-sparing er på",
"Do not automatically install updates when the device runs on battery": "Ikkje installer oppdateringar automatisk når eininga køyrer på batteri",
"Do not automatically install updates when the network connection is metered": "Ikkje installer oppdateringar automatisk når nettverksforbindinga er målbar",
"Do not download new app translations from GitHub automatically": "Ikkje last ned nye oversettingar av appen automatisk frå GitHub",
"Do not ignore updates for this package anymore": "Ikkje ignorer oppdateringar for denne pakka lenger",
"Do not remove successful operations from the list automatically": "Ikkje fjern suksessfulle operasjonar automatisk frå lista",
"Do not show this dialog again for {0}": "Ikkje vis denne dialogen igjen for {0}",
"Do not update package indexes on launch": "Ikkje oppdater pakkeindeksar ved oppstart",
"Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Godtar du at UniGetUI samlar og sendar anonyme brukarstatistikkar, med det einaste formålet å forstå og forbetre brukarerfaringa?",
"Do you find WingetUI useful? If you can, you may want to support my work, so I can continue making WingetUI the ultimate package managing interface.": "Synest du at WingetUI er nyttig? Viss du kan, vil du kanskje støtte arbeidet mitt, så eg kan fortsetje med å gjere WingetUI til det ultimate pakkehandterargrensesnittet.",
"Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Synest du at WingetUI er nyttig? Ynskjer du å støtte utveklaren? I so fall kan du {0}, det hjelper masse!",
"Do you really want to reset this list? This action cannot be reverted.": "Vil du verkeleg nullstille denne lista? Denne handlinga kan ikkje omgjørast.",
"Do you really want to uninstall the following {0} packages?": "Vil du verkeleg avinstallere føljande {0} pakkar?",
"Do you really want to uninstall {0} packages?": "Vil du verkeleg avinstallere {0} pakkar?",
"Do you really want to uninstall {0}?": "Vil du verkeleg avinstallere {0}?",
"Do you want to restart your computer now?": "Vil du starte datamaskina på nytt no?",
"Do you want to translate WingetUI to your language? See how to contribute <a style=\"color:{0}\" href=\"{1}\"a>HERE!</a>": "Vil du omsette WingetUI til ditt språk? Sjå korleis du kan bidra <a style=\"color:{0}\" href=\"{1}\"a>Her!<\\a> (PS: Viss du klarar å finne feil i nynorsk-omsettinga må du gjerne også hjelpe til!)",
"Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Har du ikkje lyst til å donere? Null stress, du kan alltid dele WingetUI med vennane dine. Sprei ordet om WingetUI.",
"Donate": "Donér",
"Done!": "Ferdig!",
"Download failed": "Nedlasting feilet",
"Download installer": "Last ned installasjonsprogram",
"Download operations are not affected by this setting": "Nedlastingshandlingar blir ikkje påverka av denne innstillinga",
"Download selected installers": "Last ned valde installasjonsprogarammar",
"Download succeeded": "Nedlasting var suksessfull",
"Download updated language files from GitHub automatically": "Last ned oppdaterte språkfilar frå GitHub automatisk",
"Downloading": "Lastar ned",
"Downloading backup...": "Lastar ned sikkerheitskopi...",
"Downloading installer for {package}": "Lastar ned installasjonsprogram for {package}",
"Downloading package metadata...": "Lastar ned metadata for pakka...",
"Enable Scoop cleanup on launch": "Aktiver Scoop-cleanup (nullstilling av buffer) ved oppstart",
"Enable WingetUI notifications": "Aktiver varslingar frå WingetUI",
"Enable an [experimental] improved WinGet troubleshooter": "Aktiver ein [eksperimental] forbetrad WinGet-feilsøkar",
"Enable and disable package managers, change default install options, etc.": "Aktiver og deaktiver pakkehåndterarar, endra standardinstallasjonsval, osv.",
"Enable background CPU Usage optimizations (see Pull Request #3278)": "Aktiver bakgrunns-CPU-brukaroptimaliseringar (sjå Pull Request #3278)",
"Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)",
"Enable it to install packages from {pm}.": "Aktiver det for å installere pakkar frå {pm}",
"Enable the automatic WinGet troubleshooter": "Aktiver automatisk WinGet-feilsøkjar",
"Enable the new UniGetUI-Branded UAC Elevator": "Aktiver den nye UniGetUI-merkja UAC-heisvaren",
"Enable the new process input handler (StdIn automated closer)": "Aktiver den nye prosessinngangshåndteraren (StdIn automatisk lukker)",
"Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Aktiver innstillingane under BERRE DERSOM du fullstendig forstår kva dei gjer, og kva konsekvensar og farar dei kan ha.",
"Enable {pm}": "Aktiver {pm}",
"Enabled": "Aktivert",
"Enter proxy URL here": "Skriv inn proxy-URL her",
"Entries that show in RED will be IMPORTED.": "Oppføringar som vart vist i RØD vil bli IMPORTERTE.",
"Entries that show in YELLOW will be IGNORED.": "Oppføringar som vart vist i GULT vil bli IGNORERTE.",
"Error": "Feil",
"Everything is up to date": "Alt er oppdatert",
"Exact match": "Eksakt match",
"Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Eksisterande snarveiar på skriveborddet ditt vil bli skannade, og du må velje kva du vil behalde og kva du vil fjerne.",
"Expand version": "Utvid versjon",
"Experimental settings and developer options": "Eksperimentelle innstillingar og val for utveklare",
"Export": "Eksporter",
"Export log as a file": "Eksporter logg som ei fil",
"Export packages": "Eksporter pakkar",
"Export selected packages to a file": "Eksporter valte pakkar til ei fil",
"Export settings to a local file": "Eksporter innstillingar til ei lokal fil",
"Export to a file": "Eksporter til ei fil",
"Failed": "Feilet",
"Fetching available backups...": "Hentar tilgjengelege sikkerheitskopiar...",
"Fetching latest announcements, please wait...": "Hentar siste annonseringar, venlegst vent...",
"Filters": "Filtrar",
"Finish": "Ferdig",
"Follow system color scheme": "Følj systemtemaet",
"Follow the default options when installing, upgrading or uninstalling this package": "Følg standardvala når denne pakka blir installert, oppgradert eller avinstallert",
"For security reasons, changing the executable file is disabled by default": "Av tryggjingsgrunnar er endring av kjørbar fil deaktivert som standard",
"For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "Av tryggjingsgrunnar er tilpassa kommandolinjeparametrar deaktiverte som standard. Gå til UniGetUI-tryggjingsinnstillingar for å endra dette. ",
"For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "Av tryggjingsgrunnar er pre-operasjons- og post-operasjons-skript deaktiverte som standard. Gå til UniGetUI-tryggjingsinnstillingar for å endra dette. ",
"Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Bruk ARM-kompilert versjon av winget (BERRE FOR ARM64-SYSTEM)",
"Force install location parameter when updating packages with custom locations": "Tving installasjonsplassering-parameter når du oppdaterar pakkar med tilpassa plasseringar",
"Formerly known as WingetUI": "Tidlegare kjend som WingetUI",
"Found": "Funne",
"Found packages: ": "Funne pakkar:",
"Found packages: {0}": "Fann pakkar: {0}",
"Found packages: {0}, not finished yet...": "Fann pakkar: {0}, jobbar framleis...",
"General preferences": "Generelle innstillingar",
"GitHub profile": "GitHub-profil",
"Global": "Globalt",
"Go to UniGetUI security settings": "Gå til UniGetUI-tryggjingsinnstillingar",
"Great repository of unknown but useful utilities and other interesting packages.<br>Contains: <b>Utilities, Command-line programs, General Software (extras bucket required)</b>": "Flott repository med ukjende men nyttige verktøy og andre interessante pakkar.<br>Inneheld:<b>Verktøy, kommandolinjeprogram, generell programvare (ekstra buckets krevst)</b>",
"Great! You are on the latest version.": "Flott! Du er på siste versjon.",
"Grid": "Rutenett",
"Help": "Hjelp",
"Help and documentation": "Hjelp og dokumentasjon",
"Here you can change UniGetUI's behaviour regarding the following shortcuts. Checking a shortcut will make UniGetUI delete it if if gets created on a future upgrade. Unchecking it will keep the shortcut intact": "Her kan du endra UniGetUI si åtferd angåande dei følgjande snarviene. Om du merkar av ein snarvei vil UniGetUI slette den viss ho blir opprett på ein framtidig oppgradering. Om du ikkje merkar ho av vil snarveia bli bevart intakt",
"Hi, my name is Martí, and i am the <i>developer</i> of WingetUI. WingetUI has been entirely made on my free time!": "Hei, mitt navn er Martí, og eg er <i>utveklaren</i> som står bak WingetUI. WingetUI har utelukkande vore utvekla på fritida mi!",
"Hide details": "Skjul detaljar",
"Homepage": "Heimeside",
"homepage": "heimeside",
"Hooray! No updates were found.": "Hurra! Ingen oppdateringar funne!",
"How should installations that require administrator privileges be treated?": "Kva skal gjerast med installasjonar som krev administratorrettar?",
"How to add packages to a bundle": "Korleis å legge til pakkar til ein bundle",
"I understand": "Eg forstår",
"Icons": "Ikon",
"Id": "ID",
"If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Viss du har skya-sikkerheitskopi aktivert, vil ho bli lagra som ein GitHub Gist på denne kontoen",
"Ignore custom pre-install and post-install commands when importing packages from a bundle": "Tillat at tilpassa pre-installasjons- og post-installasjonskommandoar skal køyrast",
"Ignore future updates for this package": "Ignorer framtidige oppdateringar for denne pakka",
"Ignore packages from {pm} when showing a notification about updates": "Ignorer pakkar frå {pm} når ein varsling om oppdateringar blir vist",
"Ignore selected packages": "Ignorer valte pakkar",
"Ignore special characters": "Ignorer spesialtekn",
"Ignore updates for the selected packages": "Ignorer oppdateringar for de valte pakkane",
"Ignore updates for this package": "Ignorer oppdateringar til denne pakka",
"Ignored updates": "Ignorerte oppdateringar",
"Ignored version": "Ignorert versjon",
"Import": "Importer",
"Import packages": "Importer pakkar",
"Import packages from a file": "Importer pakkar frå ei fil",
"Import settings from a local file": "Eksporter innstillingar frå ei lokal fil",
"In order to add packages to a bundle, you will need to: ": "For å legge til pakkar til ein bundle må du: ",
"Initializing WingetUI...": "Initialiserar WingetUI...",
"Install": "Installer",
"install": "installer",
"Install Scoop": "Installer Scoop",
"Install and more": "Installasjon og meir",
"Install and update preferences": "Innstillingar for installasjon og oppdatering",
"Install as administrator": "Installer som administrator",
"Install available updates automatically": "Installer tilgjengelege oppdateringar automatisk",
"Install location can't be changed for {0} packages": "Installasjonsplassering kan ikkje endrast for {0}-pakkar",
"Install location:": "Installasjonsplassering:",
"Install options": "Installasjonsval",
"Install packages from a file": "Installer pakkar frå ei fil",
"Install prerelease versions of UniGetUI": "Installer forhandsversjonar av UniGetUI",
"Install script": "Installasjonsskript",
"Install selected packages": "Installer valte pakkar",
"Install selected packages with administrator privileges": "Installer valte pakkar med administratorrettar",
"Install selection": "Installer utval",
"Install the latest prerelease version": "Installer siste forhandsutgivingsversjon",
"Install updates automatically": "Installer oppdateringar automatisk",
"Install {0}": "Installer {0}",
"Installation canceled by the user!": "Installasjon avbroten av brukar!",
"Installation failed": "Installasjon feilet",
"Installation options": "Installasjonsval",
"Installation scope:": "Installasjonsomfang:",
"Installation succeeded": "Installasjon fullført",
"Installed Packages": "Installerte pakkar",
"Installed packages": "Installerte pakkar",
"Installed Version": "Installer versjon",
"Installer SHA256": "Installasjonsprogram SHA256",
"Installer SHA512": "Installasjonsprogram SHA512",
"Installer Type": "Type installasjonsprogram",
"Installer URL": "URL til installasjonsprogram",
"Installer not available": "Installerar ikkje tilgjengeleg",
"Instance {0} responded, quitting...": "Instans {0} ga svar, avsluttar...",
"Instant search": "Hurtigsøk",
"Integrity checks can be disabled from the Experimental Settings": "Integritetssjekkar kan deaktiveringast frå Eksperimentelle innstillingar",
"Integrity checks skipped": "Integritetssjekkar hoppa over",
"Integrity checks will not be performed during this operation": "Integritetssjekkar vil ikkje bli utførte under denne handlinga",
"Interactive installation": "Interaktiv installasjon",
"Interactive operation": "Interaktiv handling",
"Interactive uninstall": "Interaktiv avinstallering",
"Interactive update": "Interaktiv oppdatering",
"Internet connection settings": "Innstillingar for internettforbinding",
"Invalid selection": "Ugyldig val",
"Is this package missing the icon?": "Manglar ikonet for denne pakka?",
"Is your language missing or incomplete?": "Manglar språket ditt eller er det uferdig? (viss språket ditt er bokmål eller nynorsk jobbar eg med saka)",
"It is not guaranteed that the provided credentials will be stored safely, so you may as well not use the credentials of your bank account": "Det er ikkje garantert at den oppgitte legitimasjonen vil bli lagra på ein trygg måte, så du kan like godt ikkje bruke legitimasjonen din for bankkontoen din",
"It is recommended to restart UniGetUI after WinGet has been repaired": "Det blir tilrådd å starte UniGetUI på nytt etter at WinGet har vorte reparert",
"It is strongly recommended to reinstall UniGetUI to adress the situation.": "Det blir sterkt tilrådd å reinstallere UniGetUI for å løyse situasjonen.",
"It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Det ser ut som WinGet ikkje fungerar riktig. Vil du forsøke å reparere WinGet?",
"It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"{showDetails}\" to see why.": "Det ser ut som om du kjørte WingetUI som administrator, som ikkje anbefalast. Du kan framleis bruke programmet, men vi anbefalar sterkt å ikkje kjøre WingetUI med administratorrettar. Klikk på \"{showDetails}\" for å vise grunnen til det.",
"Language": "Språk",
"Language, theme and other miscellaneous preferences": "Språk, tema, og diverse andre preferansar",
"Last updated:": "Sist oppdatert:",
"Latest": "Siste",
"Latest Version": "Siste versjon",
"Latest Version:": "Siste versjon:",
"Latest details...": "Siste detaljar...",
"Launching subprocess...": "Startar subprosess...",
"Leave empty for default": "La stå tomt for standardvalet",
"License": "Lisens",
"Licenses": "Lisensar",
"Light": "Lys",
"List": "Liste",
"Live command-line output": "Direkte output frå kommandolinja",
"Live output": "Direkte output",
"Loading UI components...": "Lastar UI-komponentar...",
"Loading WingetUI...": "Lastar inn WingetUI...",
"Loading packages": "Lastar inn pakkar",
"Loading packages, please wait...": "Lastar pakkar, venlegst vent...",
"Loading...": "Lastar...",
"Local": "Lokal",
"Local PC": "Lokal PC",
"Local backup advanced options": "Avanserte val for lokal sikkerheitskopi",
"Local machine": "Lokal maskin",
"Local package backup": "Lokal pakke-sikkerheitskopi",
"Locating {pm}...": "Finnar {pm}...",
"Log in": "Logg inn",
"Log in failed: ": "Innlogging feilet: ",
"Log in to enable cloud backup": "Logg inn for å aktivere skya-sikkerheitskopi",
"Log in with GitHub": "Logg inn med GitHub",
"Log in with GitHub to enable cloud package backup.": "Logg inn med GitHub for å aktivere skya-pakke-sikkerheitskopi.",
"Log level:": "Loggnivå:",
"Log out": "Logg ut",
"Log out failed: ": "Utlogging feilet: ",
"Log out from GitHub": "Logg ut frå GitHub",
"Looking for packages...": "Ser etter pakkar...",
"Machine | Global": "Maskin | Global",
"Malformed command-line arguments can break packages, or even allow a malicious actor to gain privileged execution. Therefore, importing custom command-line arguments is disabled by default": "Feilformatterte kommandolinjeparametrar kan bryte pakkar, eller til og med tillate ein skadeleg aktør å få privilegert kjøring. Difor er import av tilpassa kommandolinjeparametrar deaktivert som standard.",
"Manage": "Handsamar",
"Manage UniGetUI settings": "Handsamar UniGetUI-innstillingar",
"Manage WingetUI autostart behaviour from the Settings app": "Behandle autostartåtferd for WingetUI frå innstillingsappen",
"Manage ignored packages": "Behandle ignorerte pakkar",
"Manage ignored updates": "Behandle ignorerte oppdateringar",
"Manage shortcuts": "Handsamar snarveiar",
"Manage telemetry settings": "Handsamar telemetri-innstillingar",
"Manage {0} sources": "Behandle {0} kjelder",
"Manifest": "Konfigurasjonsfil",
"Manifests": "Konfigurasjonsfilar",
"Manual scan": "Manuell skanning",
"Microsoft's official package manager. Full of well-known and verified packages<br>Contains: <b>General Software, Microsoft Store apps</b>": "Microsoft sin offisielle pakkehandterar. Full av velkjende og verifiserte pakkar<br>Inneheld: <b>Generell programvare, Microsoft Store-appar</b>",
"Missing dependency": "Manglar avhengigheit",
"More": "Meir",
"More details": "Fleire detaljar",
"More details about the shared data and how it will be processed": "Fleire detaljar om dei delte dataa og korleis dei vil bli handsama",
"More info": "Meir informasjon",
"More than 1 package was selected": "Meir enn 1 pakke vart vald",
"NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "MERK: Denne feilsøkaren kan deaktiveringast frå UniGetUI-innstillingar, på WinGet-delen",
"Name": "Namn",
"New": "Ny",
"New Version": "Ny versjon",
"New version": "Ny versjon",
"New bundle": "Ny bundle",
"Nice! Backups will be uploaded to a private gist on your account": "Fint! Sikkerheitskopiar vil bli lasta opp til ein privat gist på kontoen din",
"No": "Nei",
"No applicable installer was found for the package {0}": "Ingen gjeldande installasjonsprogaramm vart funne for pakka {0}",
"No dependencies specified": "Ingen avhengigheiter spesifiserte",
"No new shortcuts were found during the scan.": "Ingen nye snarveiar vart funne under skanningen.",
"No package was selected": "Ingen pakke vart vald",
"No packages found": "Ingen pakkar funne",
"No packages found matching the input criteria": "Fann ingen pakkar som samsvarar med søkekriteriane",
"No packages have been added yet": "Ingen pakkar er lagt til enda",
"No packages selected": "Ingen pakkar er valt",
"No packages were found": "Ingen pakkar vart funne",
"No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Ingen personleg informasjon blir samla eller sendt, og den samla dataa er anonymisert, så ho kan ikkje bli tilbakefølgd til deg.",
"No results were found matching the input criteria": "Ingen resultatar som matcha kriteria vart funne",
"No sources found": "Ingen kjelder vart funne",
"No sources were found": "Ingen kjelder har vorte funne",
"No updates are available": "Ingen oppdaterinar tilgjengelege",
"Node JS's package manager. Full of libraries and other utilities that orbit the javascript world<br>Contains: <b>Node javascript libraries and other related utilities</b>": "Node JS sin pakkehandterer. Full av bibliotek og andre verktøy som svevar rundt i JavaScript-universet<br>Inneheld: <b>Node.js-bibliotek og andre relaterte verktøy</b>",
"Not available": "Ikkje tilgjengeleg",
"Not finding the file you are looking for? Make sure it has been added to path.": "Finn du ikkje fila du leit etter? Viss at ho har vorte lagt til stien.",
"Not found": "Ikkje funne",
"Not right now": "Ikkje akkurat no",
"Notes:": "Notatar:",
"Notification preferences": "Varselinstillingar",
"Notification tray options": "Innstillingar for varslingsområdet:",
"Notification types": "Varslingtypar",
"NuPkg (zipped manifest)": "NuPkg (zippa manifest)",
"OK": "Ok",
"Ok": "Ok",
"Open": "Åpne",
"Open GitHub": "Åpne GitHub",
"Open UniGetUI": "Opne UniGetUI",
"Open UniGetUI security settings": "Opne UniGetUI-tryggjingsinnstillingar",
"Open WingetUI": "Opne WingetUI",
"Open backup location": "Åpne backup-plasseringa",
"Open existing bundle": "Opne eksisterande bundle",
"Open install location": "Opne installasjonsplassering",
"Open the welcome wizard": "Åpne velkomstveiledaren",
"Operation canceled by user": "Operasjon avbroten av brukar",
"Operation cancelled": "Handling avbroten",
"Operation history": "Handlingshistorikk",
"Operation in progress": "Handlingar som utførast",
"Operation on queue (position {0})...": "Handlinga er i køen (posisjon {0})...",
"Operation profile:": "Handlingsprofil:",
"Options saved": "Innstillingar lagra",
"Order by:": "Sorter etter:",
"Other": "Andre",
"Other settings": "Andre innstillingar",
"Package": "Pakke",
"Package Bundles": "Pakkebundlar",
"Package ID": "Pakke-ID",
"Package Manager": "Pakkehåndterar",
"Package manager": "Pakkehåndterar",
"Package Manager logs": "Pakkehandteringsloggar",
"Package Managers": "Pakkehåndterarar",
"Package managers": "Pakkehåndterarar",
"Package Name": "Pakkenamn",
"Package backup": "Pakke-sikkerheitskopi",
"Package backup settings": "Innstillingar for pakke-sikkerheitskopi",
"Package bundle": "Pakkebundle",
"Package details": "Pakkedetaljar",
"Package lists": "Pakkelister",
"Package management made easy": "Pakkestyring gjort enkelt",
"Package manager preferences": "Innstillingar for pakkehandterar",
"Package not found": "Pakke vart ikkje funne",
"Package operation preferences": "Preferansar for pakkehandlingar",
"Package update preferences": "Preferansar for pakkeoppdateringar",
"Package {name} from {manager}": "Pakke {name} frå {manager}",
"Package's default": "Pakkens standard",
"Packages": "Pakkar",
"Packages found: {0}": "Pakkar funne: {0}",
"Partially": "Delvis",
"Password": "Passord",
"Paste a valid URL to the database": "Lim inn ein gyldig URL til databasen",
"Pause updates for": "Pause oppdateringar i",
"Perform a backup now": "Utfør ein sikkerheitskopi no",
"Perform a cloud backup now": "Utfør ein skya-sikkerheitskopi no",
"Perform a local backup now": "Utfør ein lokal sikkerheitskopi no",
"Perform integrity checks at startup": "Utfør integritetssjekkar ved oppstart",
"Performing backup, please wait...": "Utførar sikkerheitskopi, venlegst vent...",
"Periodically perform a backup of the installed packages": "Utfør ein sikkerheitskopi av dei installerte pakkane med jamne mellamrom",
"Periodically perform a cloud backup of the installed packages": "Utfør periodemessig ein skya-sikkerheitskopi av installerte pakkar",
"Periodically perform a local backup of the installed packages": "Utfør periodemessig ein lokal sikkerheitskopi av installerte pakkar",
"Please check the installation options for this package and try again": "Venlegst sjekk installasjonsvaline for denne pakka og prøv igjen",
"Please click on \"Continue\" to continue": "Venlegst klikk på \"Fortsett\" for å fortsette",
"Please enter at least 3 characters": "Venlegst skriv inn minst 3 tekn",
"Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Venlegst vær oppmerksam på at enkelte pakkar kan hende at ikkje er installerbare, på grunn av pakkehåndterarane som er aktivert på denne maskina.",
"Please note that not all package managers may fully support this feature": "Ver merksam på at ikkje alle pakkehåndterarar kan fullstendig støtte denne funksjonen",
"Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Venlegst vær oppmerksam på at pakkar frå enkelte kjelder kan være at ikkje er eksporterbare. Dei er gråa ut, og kjem ikkje til å verte eksportert.",
"Please run UniGetUI as a regular user and try again.": "Venlegst køyr UniGetUI som ein vanlег brukar og prøv igjen.",
"Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Venlegst sjå på kommandolinje-outputen eller handlingshistorikken for meir informasjon om problemet.",
"Please select how you want to configure WingetUI": "Venlegst vel korleis du vil konfigurere WingetUI",
"Please try again later": "Venlegst prøv igjen seinare",
"Please type at least two characters": "Venlegst tast minst to tekn",
"Please wait": "Venlegst vent",
"Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Venlegst vent medan {0} blir installert. Eit svart (eller blått) vindauge kan dukke opp. Venlegst vent til det lukkar seg.",
"Please wait...": "Venlegst vent...",
"Portable": "Portabel",
"Portable mode": "Bærbar modus\n",
"Post-install command:": "Post-installasjonskommando:",
"Post-uninstall command:": "Post-avinstallasjonskommando:",
"Post-update command:": "Post-oppdateringskommando:",
"PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities<br>Contains: <b>Modules, Scripts, Cmdlets</b>": "PowerShell sin pakkehandterar. Finn bibliotek og skript for å utvide PowerShell sine evnar<br>Inneheld: <b>Modular, skript, cmdlets</b>",
"Pre and post install commands can do very nasty things to your device, if designed to do so. It can be very dangerous to import the commands from a bundle, unless you trust the source of that package bundle": "Pre- og post-installasjonskommandoar kan gjere veldig skadelege ting med eininga di, viss dei er designa for det. Det kan vera veldig farleg å importere kommandoane frå ein bundle, med mindre du stolar på kjelden av den pakke-bundlen",
"Pre and post install commands will be run before and after a package gets installed, upgraded or uninstalled. Be aware that they may break things unless used carefully": "Pre- og post-installasjonskommandoar vil bli køyrte før og etter ein pakke blir installert, oppgradert eller avinstallert. Ver merksam på at dei kan bryte ting med mindre dei blir brukte med forsiktighet",
"Pre-install command:": "Pre-installasjonskommando:",
"Pre-uninstall command:": "Pre-avinstallasjonskommando:",
"Pre-update command:": "Pre-oppdateringskommando:",
"PreRelease": "Forhandsutgiving",
"Preparing packages, please wait...": "Forbereiar pakkar, venlegst vent...",
"Proceed at your own risk.": "Gå fram på eiga hand og risiko.",
"Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Forbyd alle former for høgninga via UniGetUI Elevator eller GSudo",
"Proxy URL": "Proxy-URL",
"Proxy compatibility table": "Proxy-kompatibilitetstabell",
"Proxy settings": "Proxy-innstillingar",
"Proxy settings, etc.": "Proxy-innstillingar, osv.",
"Publication date:": "Publiseringsdato:",
"Publisher": "Utgjevar",
"Python's library manager. Full of python libraries and other python-related utilities<br>Contains: <b>Python libraries and related utilities</b>": "Python sin pakkehandterer. Full av bibliotek og andre Python-relaterte verktøy<br>Inneheld: <b>Python-bibliotek og andre relaterte verktøy</b>",
"Quit": "Lukk",
"Quit WingetUI": "Avslutt WingetUI",
"Ready": "Klar",
"Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Reduser UAC-spørsmål, høgna installasjonar som standard, låst opp visse farefulle funksjonar, osv.",
"Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Sjå UniGetUI-loggane for å få fleire detaljar angåande dei påverka fil(ane)",
"Reinstall": "Installer på nytt",
"Reinstall package": "Installer pakke på nytt",
"Related settings": "Relaterte innstillingar",
"Release notes": "Utgivingsnotatar",
"Release notes URL": "URL for utgivingsnotatar",
"Release notes URL:": "URL til utgivingsnotatar:",
"Release notes:": "Utgivingsnotatar:",
"Reload": "Last inn på ny",
"Reload log": "Last inn logg på ny",
"Removal failed": "Fjerning feila",
"Removal succeeded": "Suksessfull fjerning",
"Remove from list": "Fjern frå liste",
"Remove permanent data": "Fjern permanente data",
"Remove selection from bundle": "Fjern utval frå bundle",
"Remove successful installs/uninstalls/updates from the installation list": "Fjern vellykka installasjonar/avinstallasjonar/oppdateringar frå installasjonslista",
"Removing source {source}": "Fjernar kjelden {source}",
"Removing source {source} from {manager}": "Fjernar kjelde {source} frå {manager}",
"Repair UniGetUI": "Reparer UniGetUI",
"Repair WinGet": "Reparer WinGet",
"Report an issue or submit a feature request": "Si frå om ein feil eller send inn forslag til nye funksjonar",
"Repository": "Lager",
"Reset": "Tilbakestill",
"Reset Scoop's global app cache": "TIlbakestill Scoop sin globale app-buffer",
"Reset UniGetUI": "Nullstill UniGetUI",
"Reset WinGet": "Nullstill WinGet",
"Reset Winget sources (might help if no packages are listed)": "Tilbakestill Winget-kjelder (kan hjelpe viss ingen pakkar visast)",
"Reset WingetUI": "Tilbakestill WingetUI",
"Reset WingetUI and its preferences": "Tilbakestill WingetUI med tilhørande innstillingar",
"Reset WingetUI icon and screenshot cache": "Tilbakestill WingetUI-ikonet og bufra skjermbildar",
"Reset list": "Nullstill liste",
"Resetting Winget sources - WingetUI": "Nullstillar Winget-kjelder - WingetUI",
"Restart": "Start på nytt",
"Restart UniGetUI": "Start UniGetUI på nytt",
"Restart WingetUI": "Start WingetUI på ny",
"Restart WingetUI to fully apply changes": "Start WingetUI på ny for at alle endringane skal bli brukt",
"Restart later": "Start på ny seinare",
"Restart now": "Start på ny no",
"Restart required": "Omstart krevst",
"Restart your PC to finish installation": "Start PC-en på ny for å fullføre installasjonen",
"Restart your computer to finish the installation": "Start datamaskina på ny for å fullføre installasjonen",
"Restore a backup from the cloud": "Gjenopprett ein sikkerheitskopi frå skya",
"Restrictions on package managers": "Avgrensingar på pakkehåndterarar",
"Restrictions on package operations": "Avgrensingar på pakkehandlingar",
"Restrictions when importing package bundles": "Avgrensingar ved import av pakke-bundlar",
"Retry": "Prøv igjen",
"Retry as administrator": "Prøv igjen som administrator",
"Retry failed operations": "Prøv på nytt feilna operasjonar",
"Retry interactively": "Prøv på nytt interaktivt",
"Retry skipping integrity checks": "Prøv på nytt og hoppa over integritetssjekkar",
"Retrying, please wait...": "Prøvar på ny, venlegst vent...",
"Return to top": "Til toppen",
"Run": "Køyr",
"Run as admin": "Køyr som administrator",
"Run cleanup and clear cache": "Køyr opprensing og fjern buffer",
"Run last": "Køyr sist",
"Run next": "Køyr neste",
"Run now": "Køyr no",
"Running the installer...": "Køyrar installasjonsprogrammet...",
"Running the uninstaller...": "Køyrar avinstallasjonsprogrammet",
"Running the updater...": "Køyrar oppdateringsprogrammet..",
"Save": "Lagre",
"Save File": "Lagre fil",
"Save and close": "Lagre og lukk",
"Save as": "Lagre som",
"Save bundle as": "Lagre bundle som",
"Save now": "Lagre no",
"Saving packages, please wait...": "Lagrar pakkar, venlegst vent...",
"Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI",
"Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI",
"Scoop package": "Skoop-pakke",
"Search": "Søk",
"Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want WingetUI to overcomplicate, I just want a simple <b>software store</b>": "Søk etter skrivebordsprogramvare, åtvar meg når oppdateringar er tilgjengelege og ikkje gjer nerdete ting. Eg vil ikkje at WingetUI skal overkomplisere, eg vil berre ha ein enkel <b>programvarebehandlar</b>",
"Search for packages": "Søk etter pakkar",
"Search for packages to start": "Søk etter ein eller fleire pakkar for å starte",
"Search mode": "Søkemodus",
"Search on available updates": "Søk etter tilgjengelege oppdateringar",
"Search on your software": "Søk i din programvare",
"Searching for installed packages...": "Søkar etter installerte pakkar...",
"Searching for packages...": "Søkar etter pakkar...",
"Searching for updates...": "Søkar etter oppdateringar...",
"Select": "Velj",
"Select \"{item}\" to add your custom bucket": "Velj \"{item}\" for å legge til i din tilpassa bucket",
"Select a folder": "Velj ei mappe",
"Select all": "Velj alle",
"Select all packages": "Velj alle pakkar",
"Select backup": "Vel sikkerheitskopi",
"Select only <b>if you know what you are doing</b>.": "Berre velj <b>viss du veit kva du gjer</b>",
"Select package file": "Velj pakkefil",
"Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Vel sikkerheitskopien du vil opne. Seinare vil du kunne gjennomgå kva pakkar du vil installere.",
"Select the executable to be used. The following list shows the executables found by UniGetUI": "Vel kjørbar fil som skal brukast. Den følgjande lista viser kjørbare filer funne av UniGetUI",
"Select the processes that should be closed before this package is installed, updated or uninstalled.": "Vel prosessane som skal lukka før denne pakka blir installert, oppdatert eller avinstallert.",
"Select the source you want to add:": "Velj kjelden du ynskjer å legge til:",
"Select upgradable packages by default": "Vel oppgradeingsbare pakkar som standard",
"Select which <b>package managers</b> to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Velj kva for <b>pakkebehandlare</b> som skal verte brukt ({0}), konfigurer korleis pakkar blir installert, behandle korleis administratorrettat handteras, etc.",
"Sent handshake. Waiting for instance listener's answer... ({0}%)": "Handtrykk sendt. Ventar på svar frå instanslyttaren... ({0}%)",
"Set a custom backup file name": "Velj eit eige namn for sikkerheitskopifila",
"Set custom backup file name": "Velj eit eiga namn for sikkerhetskopifila",
"Settings": "Innstillingar",
"Share": "Del",
"Share WingetUI": "Del WingetUI",
"Share anonymous usage data": "Del anonyme brukardata",
"Share this package": "Del denne pakka",
"Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Viss du endrar tryggjingsinnstillingane må du opne bundlen igjen for at endringane skal få effekt.",
"Show UniGetUI on the system tray": "Vis UniGetUI i systemfeltet",
"Show UniGetUI's version and build number on the titlebar.": "Vis UniGetUI si versjon på tittelbalken",
"Show WingetUI": "Vis WingetUI",
"Show a notification when an installation fails": "Vis ei varsling når ein installasjon er mislykka",
"Show a notification when an installation finishes successfully": "Vis ei varsling når ein installasjon blir fullført utan feil",
"Show a notification when an operation fails": "Vis ein varsling når ein operasjon feilar",
"Show a notification when an operation finishes successfully": "Vis ein varsling når ein operasjon er fullført",
"Show a notification when there are available updates": "Vis ei varsling når oppdateringar er tilgjengelege",
"Show a silent notification when an operation is running": "Vis ein stille varsling når ein operasjon køyrar",
"Show details": "Vis detaljar",
"Show in explorer": "Vis i utforskar",
"Show info about the package on the Updates tab": "Vis info om pakka under fana Oppdateringar",
"Show missing translation strings": "Vis manglande omsettingsstrengar",
"Show notifications on different events": "Vis varslingar for ulike hendingar",
"Show package details": "Vis pakkedetaljar",
"Show package icons on package lists": "Vis pakkeikon på pakkelister",
"Show similar packages": "Vis lignande pakkar",
"Show the live output": "Vis utdata i sanntid",
"Size": "Storleik",
"Skip": "Hopp over",
"Skip hash check": "Hopp over sjekk av hash",
"Skip hash checks": "Hopp over sjekka av hasj",
"Skip integrity checks": "Hopp over integritetssjekkar",
"Skip minor updates for this package": "Hopp over mindre oppdateringar for denne pakka",
"Skip the hash check when installing the selected packages": "Hopp over sjekken av hash når valte pakkar blir installert",
"Skip the hash check when updating the selected packages": "Hopp over sjekken av hash når valte pakkar blir oppdatert",
"Skip this version": "Hopp over denne versjonen",
"Software Updates": "Programvareoppdateringar",
"Something went wrong": "Noko gikk galt",
"Something went wrong while launching the updater.": "Noko gjekk gale ved oppstart av oppdateraren.",
"Source": "Kjelde",
"Source URL:": "Kilde-URL:",
"Source added successfully": "Kjelde lagd til med suksess",
"Source addition failed": "Kunne ikkje legge til kjelde",
"Source name:": "Kjeldenamn:",
"Source removal failed": "Fjerning av kjelde feila",
"Source removed successfully": "Kjelde fjerna med suksess",
"Source:": "Kjelde:",
"Sources": "Kjelder",
"Start": "Byrja",
"Starting daemons...": "Startar bakgrunnsprosessar...",
"Starting operation...": "Startar handling...",
"Startup options": "Innstillingar for oppstart",
"Status": "Tilstand",
"Stuck here? Skip initialization": "Kjem du ikkje vidare? Hopp over initialiseringa",
"Success!": "Suksess!",
"Suport the developer": "Støtt utveklaren",
"Support me": "Støtt meg",
"Support the developer": "Støtt utveklaren",
"Systems are now ready to go!": "Systema er no klare for bruk!",
"Telemetry": "Telemetri",
"Text": "Tekst",
"Text file": "Tekstfil",
"Thank you ❤": "Takk ❤",
"Thank you 😉": "Takk 😉",
"The Rust package manager.<br>Contains: <b>Rust libraries and programs written in Rust</b>": "Rust-pakkehåndteraren.<br>Inneheld: <b>Rust-bibliotek og program skrivne i Rust</b>",
"The backup will NOT include any binary file nor any program's saved data.": "Sikkerheitskopien kjem ikkje til å innehelde nokre binære filar eller programmar sine lagrede data",
"The backup will be performed after login.": "Sikkerheitskopien kjem til å bli utført etter innlogging",
"The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "Sikkerheitskopien kjem til å innehelde ein fullstendig liste over dei installerte pakkane og deira installasjonsval. Ignorerte oppdateringar og versjonar som har vorte hoppa over kjem også til å bli lagra.",
"The bundle was created successfully on {0}": "Bundlen vart opprett med suksess på {0}",
"The bundle you are trying to load appears to be invalid. Please check the file and try again.": "Bundlen du forsøkar å laste ser ut til å vera ugyldig. Venlegst sjekk fila og prøv igjen.",
"The checksum of the installer does not coincide with the expected value, and the authenticity of the installer can't be verified. If you trust the publisher, {0} the package again skipping the hash check.": "Sjekksummen til installasjonsprogrammet stemmar ikkje overens med den forventa verdien, og autentisiteten til installasjonsprogrammet kan ikkje bekreftas. Viss du stolar på utgjevaren, {0} pakken igjen og hopp over hash-sjekken.",
"The classical package manager for windows. You'll find everything there. <br>Contains: <b>General Software</b>": "Den klassiske pakkehandteraren for Windows. Du kan finne alt der. <br>Inneheld: <b>Generell programvare</b>",
"The cloud backup completed successfully.": "Skya-sikkerheitskopien vart fullført med suksess.",
"The cloud backup has been loaded successfully.": "Skya-sikkerheitskopien vart lasta inn med suksess.",
"The current bundle has no packages. Add some packages to get started": "Nåverande bundle har ingen pakkar. Legg til pakkar for å setje i gong",
"The executable file for {0} was not found": "Kjørbar fil for {0} vart ikkje funne",
"The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Dei følgjande vala vil bli brukte som standard kvar gong ein {0}-pakke blir installert, oppgradert eller avinstallert.",
"The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "Føljande pakkar vil bli eksportert til ein JSON-fil. Ingen brukerdata eller binære filar kjem til å bli lagra.",
"The following packages are going to be installed on your system.": "Føljande pakkar kjem til å bli installert på ditt system.",
"The following settings may pose a security risk, hence they are disabled by default.": "Dei følgjande innstillingane kan me ein tryggleiksfråfall, så dei er deaktiverte som standard.",
"The following settings will be applied each time this package is installed, updated or removed.": "Føljande innstillingar kjem til å bli brukt kvar gong denne pakken blir installert, oppdatert, eller fjerna.",
"The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "Føljande innstillingar kjem til å bli påførd kvar gang denne pakken innstalleras, oppdateras, eller fjernas. Dei kjem til å bli lagra automatisk.",
"The icons and screenshots are maintained by users like you!": "Ikonar og skjermbilde vedlikehaldast av brukare som deg!",
"The installation script saved to {0}": "Installasjonsskriptet vart lagra til {0}",
"The installer authenticity could not be verified.": "Autentisiteten til installasjonsprogram kunne ikkje blir stadfest.",
"The installer has an invalid checksum": "Installasjonsprogrammets sjekksum er ugyldig",
"The installer hash does not match the expected value.": "Installasjonsprogrammet hash matchar ikkje den forventa verdien.",
"The local icon cache currently takes {0} MB": "Det lokale ikonbufferet tek for tida {0} MB",
"The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop.": "Hovudmålet med dette prosjektet er å lage eit intuitivt grensesnitt for å administrere dei mest vanlege CLI-pakkehandterarane for Windows, til dømes Winget og Scoop.",
"The package \"{0}\" was not found on the package manager \"{1}\"": "Pakka «{0}» vart ikkje funne på pakkehåndteraren «{1}»",
"The package bundle could not be created due to an error.": "Pakke-bundlen kunne ikkje bli laga på grunn av ein feil.",
"The package bundle is not valid": "Pakke-bundlen er ikkje gyldig",
"The package manager \"{0}\" is disabled": "Pakkehåndteraren «{0}» er deaktivert",
"The package manager \"{0}\" was not found": "Pakkehåndteraren «{0}» vart ikkje funne",
"The package {0} from {1} was not found.": "Pakka {0} frå {1} vart ikkje funne.",
"The packages listed here won't be taken in account when checking for updates. Double-click them or click the button on their right to stop ignoring their updates.": "Pakkane i denne lista kjem ikkje til å bli tatt hensyn til ved sjekking etter oppdateringar. Dobbeltklikk på dei eller klikk på knappen til høgre for dei for å slutte å ignorere oppdateringa deira.",
"The selected packages have been blacklisted": "Valte pakkar har blitt svartelista",
"The settings will list, in their descriptions, the potential security issues they may have.": "Innstillingane vil lista opp, i sine beskrivingarar, dei potensielle tryggleikspråfalla dei kan ha.",
"The size of the backup is estimated to be less than 1MB.": "Storleiken på sikkerheitskopien er estimert til å vere mindre enn 1MB.",
"The source {source} was added to {manager} successfully": "Kjelden {source} vart suksessfullt lagt til hos {manager}",
"The source {source} was removed from {manager} successfully": "Kjelden {source} vart suksessfullt fjerna frå {manager}",
"The system tray icon must be enabled in order for notifications to work": "Systemstatusfeltet-ikonet må vera aktivert for at varslingane skal virke",
"The update process has been aborted.": "Oppdateringsprosessen vart avbroten.",
"The update process will start after closing UniGetUI": "Oppdateringsprosessen vil starta etter at UniGetUI blir lukka",
"The update will be installed upon closing WingetUI": "Oppdateringa kjem til å bli installert når du lukkar WingetUI",
"The update will not continue.": "Oppdateringa kjem ikkje til å fortsetje.",
"The user has canceled {0}, that was a requirement for {1} to be run": "Brukaren har avslått {0}, det var eit krav for at {1} skulle køyre",
"There are no new UniGetUI versions to be installed": "Det finst ingen nye UniGetUI-versjonar som skal installeras",
"There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Det er mange pågåande operasjonar. Å avslutte WingetUI kan føre til at dei feilar. Vil du fortsetje?",
"There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "Det finst nokre flotte videoar på YouTube som visar fram WingetUI og dets funksjonalitet. Du kan lære nyttige triks og tips!",
"There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator.": "Det er to hovudgrunnar til å ikkje køyre WingetUI som administrator: Den fyrste er at Scoop-pakkebehandlaren kan forårsake problemar med nokre kommandoer når han bli kjørt med administratorrettar. Den andre grunne er at å køyre WingetUI som administrator betyr at alle pakkane du lastar ned kjem til å bli køyrd som administrator (og dette er ikkje trygt). Husk at viss du treng å installere ein spesifikk pakke som administrator, kan du alltid høgreklikke på elementet -> Installer/Oppdater/Avinstaller som administrator.",
"There is an error with the configuration of the package manager \"{0}\"": "Det er ein feil med konfigurasjonen av pakkehåndteraren «{0}»",
"There is an installation in progress. If you close WingetUI, the installation may fail and have unexpected results. Do you still want to quit WingetUI?": "Ein installasjon utførast. Viss du lukkar WingetUI, kan installasjonen feile og gje uventa resultatar. Vil du framleis avslutte WIngetUI?",
"They are the programs in charge of installing, updating and removing packages.": "Dei er programmar som er ansvarlege for å installere, oppdatere, og fjerne pakkar.",
"Third-party licenses": "Tredjepartslisensar",
"This could represent a <b>security risk</b>.": "Dette kan medføre ein <b>sikkerheitsrisiko</b>.",
"This is not recommended.": "Dette blir ikkje tilrådd.",
"This is probably due to the fact that the package you were sent was removed, or published on a package manager that you don't have enabled. The received ID is {0}": "Dette er meist sannsynleg fordi pakken du fikk tilsendt er fjerna, eller er publisert på ein pakkehandterar du ikkje har aktivert. Mottatt ID er {0}",
"This is the <b>default choice</b>.": "Dette er <b>standardvalet</b>.",
"This may help if WinGet packages are not shown": "Dette kan hjelpe viss WinGet-pakkar ikkje visast",
"This may help if no packages are listed": "Dette kan hjelpe viss ingen pakkar blir lista opp",
"This may take a minute or two": "Dette kan ta nokre få minutt",
"This operation is running interactively.": "Denne handlinga køyrer interaktivt.",
"This operation is running with administrator privileges.": "Denne handlinga køyrer med administratorrettar.",
"This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Dette valet VIL medføre problem. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.",
"This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "Denne pakke-bundlen hadde nokre innstillingar som potensielt kan vera farefulle, og kan bli ignorerte som standard.",
"This package can be updated": "Denne pakken kan bli oppdatert",
"This package can be updated to version {0}": "Denne pakken kan bli oppdatert til versjon {0}",
"This package can be upgraded to version {0}": "Denne pakka kan bli oppgradert til versjon {0}",
"This package cannot be installed from an elevated context.": "Denne pakka kan ikkje bli installert frå ein høgna kontekst.",
"This package has no screenshots or is missing the icon? Contrbute to WingetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakka har ingen skjermbilde eller manglar eit ikon? Bidra til WingetUI ved å leggje til dei manglande ikona og skjermbilda til vår opne, offentlege database.",
"This package is already installed": "Denne pakken er allereie installert",
"This package is being processed": "Denne pakken behandlas",
"This package is not available": "Denne pakka er ikkje tilgjengeleg",
"This package is on the queue": "Denne pakken er i køen",
"This process is running with administrator privileges": "Denne prosessen køyrar med administratorrettar",
"This project has no connection with the official {0} project — it's completely unofficial.": "Dette prosjektet har ingen kopling til det offisielle {0}-prosjektet - det er fullstendig uoffisielt.",
"This setting is disabled": "Denne innstillinga er deaktivert",
"This wizard will help you configure and customize WingetUI!": "Denne vegvisaren vil hjelpe deg med å konfigurere og tilpasse WingetUI!",
"Toggle search filters pane": "Skru av/på panelet for søkefilter",
"Translators": "Omsettare",
"Try to kill the processes that refuse to close when requested to": "Forsøk å doda dei prosessane som nektar av lukke seg når dei blir bedt om det",
"Turning this on enables changing the executable file used to interact with package managers. While this allows finer-grained customization of your install processes, it may also be dangerous": "Om du slår dette på kan du endra kjørbar fil som blir brukt til å samhandle med pakkehåndterarar. Medan dette tillat finare tilpassingar av instalasjonsplassane dine, kan det og vera farleg",
"Type here the name and the URL of the source you want to add, separed by a space.": "Skriv inn namn og URL til kjelden du vil legge til her, skilt av mellomrom.",
"Unable to find package": "Kan ikkje finne pakka",
"Unable to load informarion": "Kan ikkje laste informasjon",
"UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI samlar anonyme brukardata for å forbetre brukarerfaringa.",
"UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI samlar anonyme brukardata med det einaste formålet å forstå og forbetre brukarerfaringa.",
"UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI har oppdaga ein ny skrivebordssnarveie som kan bli sletta automatisk.",
"UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI har oppdaga dei følgjande skrivebordssnarveiane som kan bli fjerna automatisk på framtidige oppgraderingar",
"UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI har oppdaga {0} nye skrivebordssnarveiar som kan bli sletta automatisk.",
"UniGetUI is being updated...": "UniGetUI blir oppdatert...",
"UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGet UI er ikkje knytta til nokon av dei kompatible pakkehandterarne. UniGetUI er eit uavhengig prosjekt.",
"UniGetUI on the background and system tray": "UniGetUI i bakgrunnen og systemstatusfeltet",
"UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller nokre av komponenta hans manglar eller er øydelagde.",
"UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI krev {0} for å virke, men det vart ikkje funne på systemet ditt.",
"UniGetUI startup page:": "UniGetUI-startsida:",
"UniGetUI updater": "UniGetUI-oppdaterar",
"UniGetUI version {0} is being downloaded.": "UniGetUI versjon {0} blir lasta ned.",
"UniGetUI {0} is ready to be installed.": "UniGetUI {0} er klar til å bli installert.",
"Uninstall": "Avinstaller",
"uninstall": "avinstaller",
"Uninstall Scoop (and its packages)": "Avinstaller Scoop (og alle tilhørande pakkar)",
"Uninstall and more": "Avinstallasjon og meir",
"Uninstall and remove data": "Avinstaller og fjern data",
"Uninstall as administrator": "Avinstaller som administrator",
"Uninstall canceled by the user!": "Avinstallasjon avbroten av brukaren!",
"Uninstall failed": "Avinstallering feila",
"Uninstall options": "Avinstallasjonsval",
"Uninstall package": "Avinstaller pakka",
"Uninstall package, then reinstall it": "Avinstaller pakka, og så reinstaller han",
"Uninstall package, then update it": "Avinstaller pakka, og so oppdater ho",
"Uninstall previous versions when updated": "Avinstaller tidlegare versjonar når dei blir oppdatera",
"Uninstall selected packages": "Avinstaller valte pakkar",
"Uninstall selection": "Avinstaller utval",
"Uninstall succeeded": "Suksessfull avinstallering",
"Uninstall the selected packages with administrator privileges": "Avinstaller dei valte pakkane med administratorrettar",
"Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.": "Avinstallerbare pakkar med opprinninga oppført som \"{0}\" er ikkje publisert på nokon pakkebehandlar, så det finnest ingen informasjon tilgjengeleg for visning.",
"Unknown": "Ukjend",
"Unknown size": "Ukjent storleik",
"Unset or unknown": "Ikkje sett eller ukjend",
"Up to date": "Oppdatert",
"Update": "Uppdater",
"Update WingetUI automatically": "Oppdater WingetUI automatisk",
"Update all": "Oppdater alle",
"Update and more": "Oppdatering og meir",
"Update as administrator": "Oppdater som administrator",
"Update check frequency, automatically install updates, etc.": "Frekvens for oppdateringskontroll, installer oppdateringar automatisk, osv.",
"Update checking": "Oppdateringskontroll",
"Update date": "Oppdateringsdato",
"Update failed": "Oppdatering feila",
"Update found!": "Oppdatering funne!",
"Update now": "Oppdater no",
"Update options": "Oppdateringsval",
"Update package indexes on launch": "Oppdater pakkeindeksar ved oppstart",
"Update packages automatically": "Oppdater pakkar automatisk",
"Update selected packages": "Oppdater valte pakkar",
"Update selected packages with administrator privileges": "Oppdater valte pakkar med administratorrettar",
"Update selection": "Oppdater utval",
"Update succeeded": "Suksessfull oppdatering",
"Update to version {0}": "Oppdater til versjon {0}",
"Update to {0} available": "Oppdatering for {0} er tilgjengeleg",
"Update vcpkg's Git portfiles automatically (requires Git installed)": "Oppdater vcpkg sine Git portfiles automatisk (krev Git installert)",
"Updates": "Oppdateringar",
"Updates available!": "Oppdateringar er tilgjengelege!",
"Updates for this package are ignored": "Oppdateringar for denne pakka er ignorert",
"Updates found!": "Oppdateringar funne!",
"Updates preferences": "Oppdateringsinnstillingar",
"Updating WingetUI": "Oppdaterar WingetUI",
"Url": "Nettadresse",
"Use Legacy bundled WinGet instead of PowerShell CMDLets": "Bruk gamle bundla WinGet i staden for PowerShell CMDLets",
"Use a custom icon and screenshot database URL": "Bruk eit eigendefinert ikon og ein eigendefinert URL til databasen",
"Use bundled WinGet instead of PowerShell CMDlets": "Bruk bundla WinGet i staden for PowerShell CMDlets",
"Use bundled WinGet instead of system WinGet": "Bruk bundla WinGet i staden for systemets WinGet",
"Use installed GSudo instead of UniGetUI Elevator": "Bruk installert GSudo i staden for UniGetUI Elevator",
"Use installed GSudo instead of the bundled one": "Bruk systemets installerte GSudo i staden for den medføljande (krevar omstart av programmet)",
"Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Bruk legacy UniGetUI Elevator (kan vera nyttig viss du har problem med UniGetUI Elevator)",
"Use system Chocolatey": "Bruk systemet Chocolatey",
"Use system Chocolatey (Needs a restart)": "Bruk systemets Chocolatey (Omstart krevst)",
"Use system Winget (Needs a restart)": "Bruk systemets Winget (Omstart krevst)",
"Use system Winget (System language must be set to english)": "Bruk systemets Winget (Systemspråket må være satt til engelsk)",
"Use the WinGet COM API to fetch packages": "Bruk WinGet sitt COM-API for å hente pakkar",
"Use the WinGet PowerShell Module instead of the WinGet COM API": "Bruk WinGet-PowerShell-modulen i staden for WinGet-COM-APIet",
"Useful links": "Nyttige lenkar",
"User": "Brukar",
"User interface preferences": "Alternativar for brukargrensesnitt",
"User | Local": "Brukar | Lokal",
"Username": "Brukarnamn",
"Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Å bruke WingetUI medførar at du aksepterar lisensen GNU Lesser General Public License v2.1",
"Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen",
"Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Vcpkg-rota vart ikkje funne. Venlegst definer %VCPKG_ROOT%-miljøvariabelen eller definer ho frå UniGetUI-innstillingar",
"Vcpkg was not found on your system.": "Vcpkg vart ikkje funne på systemet ditt.",
"Verbose": "Uttømmande",
"Version": "Versjon",
"Version to install:": "Versjon å installere:",
"Version:": "Versjon:",
"View GitHub Profile": "Vis GitHub-profil",
"View WingetUI on GitHub": "Vis WingetUI på GitHub",
"View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "Vis WingetUI sin kjeldekode. Herfrå kan du rapportere feil eller foreslå ny funksjonalitet. Du kan også bidra direkte til WingetUI-prosjektet",
"View mode:": "Visningsmodus:",
"View on UniGetUI": "Sjå på UniGetUI",
"View page on browser": "Vis sida i nettlesaren",
"View {0} logs": "Sjå {0}-logger",
"Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Vent til eininga er kopla til internett før du forsøk å utføre oppgåver som krev internettsamband.",
"Waiting for other installations to finish...": "Venter på at andre installasjonar skal fullførast...",
"Waiting for {0} to complete...": "Ventar på at {0} skal bli fullført...",
"Warning": "Åtvaring",
"Warning!": "Åtvaring!",
"We are checking for updates.": "Me er av sjekk for oppdateringar.",
"We could not load detailed information about this package, because it was not found in any of your package sources": "Vi kunne ikkje laste inn detaljert informasjon om denne pakken, ettersom han ikkje var funne i nokon av dine pakkekjelder",
"We could not load detailed information about this package, because it was not installed from an available package manager.": "Vi kunne ikkje laste inn detaljert informasjon denne pakka, fordi han ikkje var installert frå ein tilgjengeleg pakkebehandlar",
"We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "Vi kunne ikkje {action} {package}. Venlegst prøv igjen seinare. Klikk på \"{showDetails}\" for å vise loggane frå installasjonsprogrammet.",
"We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "Vi kunne ikkje {action} {package}. Venlegst prøv igjen seinare. Klikk på \"{showDetails}\" for å vise loggane frå avinstallasjonsprogrammet.",
"We couldn't find any package": "Vi kunne ikkje finne nokon pakkje",
"Welcome to WingetUI": "Velkommen til WingetUI",
"When batch installing packages from a bundle, install also packages that are already installed": "Når dei installerar pakkar frå ein bundle i batch, installer og pakkar som alt er installerte",
"When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Når nye snarveiar blir oppdaga, slette dei automatisk i staden for å visa denne dialogen.",
"Which backup do you want to open?": "Kva sikkerheitskopi vil du opne?",
"Which package managers do you want to use?": "Kva for pakkehandterare ynskjer du å bruke?",
"Which source do you want to add?": "Kva for kjelde ynskjer du å legge til?",
"While Winget can be used within WingetUI, WingetUI can be used with other package managers, which can be confusing. In the past, WingetUI was designed to work only with Winget, but this is not true anymore, and therefore WingetUI does not represent what this project aims to become.": "Mens Winget kan bli brukt i WingetUI, kan WingetUI også bli brukt med andre pakkehandterarar, som kan være forvirrande. Før var WingerUI berre laga for å fungere med Winget, men dette stemmar ikkje lenger, og difor representerar ikkje WingetUI kva dette prosjektet har som mål å bli.",
"WinGet could not be repaired": "WinGet kunne ikkje bli reparert",
"WinGet malfunction detected": "WinGet-mangel oppdaga",
"WinGet was repaired successfully": "WinGet vart reparert med suksess",
"WingetUI": "WingetUI",
"WingetUI - Everything is up to date": "WingetUI - Alt er oppdatert",
"WingetUI - {0} updates are available": "WingetUI - {0} oppdateringar er tilgjengelege",
"WingetUI - {0} {1}": "WingetUI - {0} {1}",
"WingetUI Homepage": "WingetUI - Heimeside",
"WingetUI Homepage - Share this link!": "WingetUI sin heimeside - Del denne lenka!",
"WingetUI License": "WingetUI - Lisens",
"WingetUI log": "Logg for WingetUI",
"WingetUI Repository": "WingetUI - Repository",
"WingetUI Settings": "Innstillingar for WingetUI",
"WingetUI Settings File": "Innstillingsfil for WingetUI",
"WingetUI Log": "WingetUI-logg",
"WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI brukar føljande bibliotek. Utan dei ville ikkje WingetUI ha vore mogleg.",
"WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "WingetUI brukar føljande bibliotek. Utan dei ville ikkje WingetUI ha vore mogleg.",
"WingetUI Version {0}": "WingetUI versjon {0}",
"WingetUI autostart behaviour, application launch settings": "WingetUI sin autostartoppførsel, innstillingar for oppstart",
"WingetUI can check if your software has available updates, and install them automatically if you want to": "WingetUI kan sjekke om programvaren din har tilgjengelege oppdateringar, og installere dei automatisk viss du vil",
"WingetUI display language:": "WingetUI sitt visningsspråk:",
"WingetUI has been ran as administrator, which is not recommended. When running WingetUI as administrator, EVERY operation launched from WingetUI will have administrator privileges. You can still use the program, but we highly recommend not running WingetUI with administrator privileges.": "WingetUI blir køyrd som administrator, noko som ikkje anbefalast. Når du køyrer WingetUI som administrator, får ALLE programmar som WingetUI startar administratortillatingar. Du kan fortfarande bruke programmet, men vi anbefalar på det sterkaste å ikke køyre WingetUI med administratortillatingar.",
"WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "WingetUI har blitt omsett til meir enn 40 språk takka vere frivillige omsetjare. Takk 🤝",
"WingetUI has not been machine translated. The following users have been in charge of the translations:": "WingetUI er ikkje atuomatisk omsett. Føljande brukare var vore ansvarlege for omsettingane:",
"WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "WingetUI er ein applikasjon som forenklar handtering av programvare, ved å tilby eit alt-i-eitt grafisk grensesnitt for kommandolinjepakkehandterarane dine.",
"WingetUI is being renamed in order to emphasize the difference between WingetUI (the interface you are using right now) and Winget (a package manager developed by Microsoft with which I am not related)": "WingetUI byttar namn for å tydeleggjere forskjellen mellom WingetUI (grensesnittet du brukar nett no) og Winget (ein pakkehandterar utvikla av Microsoft som eg ikkje har nokon tilkobling til)",
"WingetUI is being updated. When finished, WingetUI will restart itself": "WingetUI blir oppdatert. Når oppdateringa er ferdig startar WingetUI på ny",
"WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "WingetUI er gratis, og kjem til å forbli gratis til evig tid. Ingen reklame, ingen kredittkort, ingen premiumversjon. 100% gratis, for alltid.",
"WingetUI tray application preferences": "Val for UniGetUI sin bruk av systemfeltet",
"WingetUI version {0} is being downloaded.": "WingetUI versjon {0} blir lasta ned.",
"WingetUI will become {newname} soon!": "WingetUI kjem til å bli til {newname} snart!",
"WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "WingetUI kjem ikkje til å sjekke etter oppdaterinar periodisk. Det kjem fortatt til å bli sjekka ved oppstart, men du kjem ikkje til å bli åtvart om dei.",
"WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "WingetUI kjem til å vise eit UAC-prompt kvar gong ein pakke krev administratorrettar for å installerast.",
"WingetUI will soon be named {newname}. This will not represent any change in the application. I (the developer) will continue the development of this project as I am doing right now, but under a different name.": "WingetUI kjem snart til å bytte namn til {newname}. Dette kjem ikkje til å føre til endringar i applikasjonen. Eg (utveklaren) kjem til å fortsetje utveklinga av dette prosjektet slik som eg gjer no, men under et anna namn.",
"WingetUI wouldn't have been possible with the help of our dear contributors. Check out their GitHub profile, WingetUI wouldn't be possible without them!": "WingetUI hadde ikkje vore mogleg uten hjelp frå våre kjære bidragsytare. Sjekk ut GitHub-profilane deira, WingetUI ville ikkje vore mogleg utan dei!",
"WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "WingetUI ville ikkje vore mogleg uten hjelp frå alle bidragsytarane. Takk alle saman🥳",
"WingetUI {0} is ready to be installed.": "WingetUI {0} er klar for installering.",
"Write here the process names here, separated by commas (,)": "Skriv her prosessnamna, separerte med komma (,)",
"Yes": "Ja",
"You are logged in as {0} (@{1})": "Du er innlogga som {0} (@{1})",
"You can change this behavior on UniGetUI security settings.": "Du kan endra denne åtferda på UniGetUI-tryggjingsinnstillingar.",
"You can define the commands that will be run before or after this package is installed, updated or uninstalled. They will be run on a command prompt, so CMD scripts will work here.": "Du kan definer kommandoane som vil bli køyrte før eller etter denne pakka blir installert, oppdatert eller avinstallert. Dei vil bli køyrte på ein kommandoleie, så CMD-skript vil virke her.",
"You have currently version {0} installed": "No har du versjon {0} installert",
"You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}",
"You may lose unsaved data": "Du kan miste ulagra data",
"You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.",
"You may restart your computer later if you wish": "Du kan starte datamaskina på ny seinare viss du ynskjer det",
"You will be prompted only once, and administrator rights will be granted to packages that request them.": "Du vil berre bli bedt om å gje administratorrettar ein gong, og rettane kjem til å bli gitt til pakkar som ber om det.",
"You will be prompted only once, and every future installation will be elevated automatically.": "Du vil berre bli bedd om å gje administratorrettar ein gong, og alle framtidige installasjoner kjem til å bli gitt rettar automatisk.",
"You will likely need to interact with the installer.": "Du vil truleg måtta samhandle med installasjonsprogram.",
"[RAN AS ADMINISTRATOR]": "KØYRTE SOM ADMINISTRATOR",
"buy me a coffee": "spander ein kopp kaffi på meg",
"extracted": "utpakka",
"feature": "funksjon",
"formerly WingetUI": "tidlegare WingetUI",
"installation": "installasjon",
"installed": "installert",
"installing": "installerar",
"library": "bibliotek",
"mandatory": "obligatorisk",