-
Notifications
You must be signed in to change notification settings - Fork 770
Expand file tree
/
Copy pathlang_nn.json
More file actions
1155 lines (1155 loc) · 103 KB
/
lang_nn.json
File metadata and controls
1155 lines (1155 loc) · 103 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
{
"Operation in progress": "Handlingar som utførast",
"Please wait...": "Venlegst vent...",
"Success!": "Suksess!",
"Failed": "Feilet",
"An error occurred while processing this package": "Ein feil oppstod i behandlinga av denne pakken",
"Log in to enable cloud backup": "Logg inn for å aktivere skya-sikkerheitskopi",
"Backup Failed": "Sikkerheitskopi feilet",
"Downloading backup...": "Lastar ned sikkerheitskopi...",
"An update was found!": "Ein oppdatering vart funnen!",
"{0} can be updated to version {1}": "{0} kan bli oppdatert til versjon {1}",
"Updates found!": "Oppdateringar funne!",
"{0} packages can be updated": "{0} pakkar kan bli oppdatert",
"You have currently version {0} installed": "No har du versjon {0} installert",
"Desktop shortcut created": "Skrivebordssnarveien vart opprett",
"UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI har oppdaga ein ny skrivebordssnarveie som kan bli sletta automatisk.",
"{0} desktop shortcuts created": "{0} skrivebordssnarveiar oppretta",
"UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI har oppdaga {0} nye skrivebordssnarveiar som kan bli sletta automatisk.",
"Are you sure?": "Er du sikker?",
"Do you really want to uninstall {0}?": "Vil du verkeleg avinstallere {0}?",
"Do you really want to uninstall the following {0} packages?": "Vil du verkeleg avinstallere føljande {0} pakkar?",
"No": "Nei",
"Yes": "Ja",
"View on UniGetUI": "Sjå på UniGetUI",
"Update": "Uppdater",
"Open UniGetUI": "Opne UniGetUI",
"Update all": "Oppdater alle",
"Update now": "Oppdater no",
"This package is on the queue": "Denne pakken er i køen",
"installing": "installerar",
"updating": "oppdaterar",
"uninstalling": "avinstallerar",
"installed": "installert",
"Retry": "Prøv igjen",
"Install": "Installer",
"Uninstall": "Avinstaller",
"Open": "Åpne",
"Operation profile:": "Handlingsprofil:",
"Follow the default options when installing, upgrading or uninstalling this package": "Følg standardvala når denne pakka blir installert, oppgradert eller avinstallert",
"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.",
"Version to install:": "Versjon å installere:",
"Architecture to install:": "Arkitektur som blir installert:",
"Installation scope:": "Installasjonsomfang:",
"Install location:": "Installasjonsplassering:",
"Select": "Velj",
"Reset": "Tilbakestill",
"Custom install arguments:": "Tilpassa installasjonsparametrar:",
"Custom update arguments:": "Tilpassa oppdateringsparametrar:",
"Custom uninstall arguments:": "Tilpassa avinstallasjonsparametrar:",
"Pre-install command:": "Pre-installasjonskommando:",
"Post-install command:": "Post-installasjonskommando:",
"Abort install if pre-install command fails": "Avbryt installasjon viss pre-installasjonskommandoen mislykjast",
"Pre-update command:": "Pre-oppdateringskommando:",
"Post-update command:": "Post-oppdateringskommando:",
"Abort update if pre-update command fails": "Avbryt oppdateringa viss pre-oppdateringskommandoen mislykjast",
"Pre-uninstall command:": "Pre-avinstallasjonskommando:",
"Post-uninstall command:": "Post-avinstallasjonskommando:",
"Abort uninstall if pre-uninstall command fails": "Avbryt avinstallasjonen viss pre-avinstallasjonskommandoen mislykjast",
"Command-line to run:": "Kommandolinje som skal køyrast:",
"Save and close": "Lagre og lukk",
"General": "Generelt",
"Architecture & Location": "Arkitektur og plassering",
"Command-line": "Kommandolinje",
"Pre/Post install": "Før/etter installasjon",
"Run as admin": "Køyr som administrator",
"Interactive installation": "Interaktiv installasjon",
"Skip hash check": "Hopp over sjekk av hash",
"Uninstall previous versions when updated": "Avinstaller tidlegare versjonar når dei blir oppdatera",
"Skip minor updates for this package": "Hopp over mindre oppdateringar for denne pakka",
"Automatically update this package": "Oppdater denne pakka automatisk",
"{0} installation options": "{0} sine installasjonsval",
"Latest": "Siste",
"PreRelease": "Forhandsutgiving",
"Default": "Standard",
"Manage ignored updates": "Behandle ignorerte oppdateringar",
"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.",
"Reset list": "Nullstill liste",
"Do you really want to reset the ignored updates list? This action cannot be reverted": "Vil du verkeleg nullstille lista over ignorerte oppdateringar? Denne handlinga kan ikkje omgjerast",
"No ignored updates": "Ingen ignorerte oppdateringar",
"Package Name": "Pakkenamn",
"Package ID": "Pakke-ID",
"Ignored version": "Ignorert versjon",
"New version": "Ny versjon",
"Source": "Kjelde",
"All versions": "Alle versjonar",
"Unknown": "Ukjend",
"Up to date": "Oppdatert",
"Cancel": "Avbryt",
"Administrator privileges": "Administratorrettar",
"This operation is running with administrator privileges.": "Denne handlinga køyrer med administratorrettar.",
"Interactive operation": "Interaktiv handling",
"This operation is running interactively.": "Denne handlinga køyrer interaktivt.",
"You will likely need to interact with the installer.": "Du vil truleg måtta samhandle med installasjonsprogram.",
"Integrity checks skipped": "Integritetssjekkar hoppa over",
"Integrity checks will not be performed during this operation.": "Integritetssjekkar blir ikkje utførte under denne handlinga.",
"Proceed at your own risk.": "Gå fram på eiga hand og risiko.",
"Close": "Lukk",
"Loading...": "Lastar...",
"Installer SHA256": "Installasjonsprogram SHA256",
"Homepage": "Heimeside",
"Author": "Forfattar",
"Publisher": "Utgjevar",
"License": "Lisens",
"Manifest": "Konfigurasjonsfil",
"Installer Type": "Type installasjonsprogram",
"Size": "Storleik",
"Installer URL": "URL til installasjonsprogram",
"Last updated:": "Sist oppdatert:",
"Release notes URL": "URL for utgivingsnotatar",
"Package details": "Pakkedetaljar",
"Dependencies:": "Avhengigheiter:",
"Release notes": "Utgivingsnotatar",
"Version": "Versjon",
"Install as administrator": "Installer som administrator",
"Update to version {0}": "Oppdater til versjon {0}",
"Installed Version": "Installer versjon",
"Update as administrator": "Oppdater som administrator",
"Interactive update": "Interaktiv oppdatering",
"Uninstall as administrator": "Avinstaller som administrator",
"Interactive uninstall": "Interaktiv avinstallering",
"Uninstall and remove data": "Avinstaller og fjern data",
"Not available": "Ikkje tilgjengeleg",
"Installer SHA512": "Installasjonsprogram SHA512",
"Unknown size": "Ukjent storleik",
"No dependencies specified": "Ingen avhengigheiter spesifiserte",
"mandatory": "obligatorisk",
"optional": "valfritt",
"UniGetUI {0} is ready to be installed.": "UniGetUI {0} er klar til å bli installert.",
"The update process will start after closing UniGetUI": "Oppdateringsprosessen vil starta etter at UniGetUI blir lukka",
"UniGetUI has been ran as administrator, which is not recommended. When running UniGetUI as administrator, EVERY operation launched from UniGetUI will have administrator privileges. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges.": "UniGetUI har vorte køyrt som administrator, noko som ikkje er tilrådd. Når du køyrer UniGetUI som administrator, vil ALLE handlingar som blir starta frå UniGetUI få administratorrettar. Du kan framleis bruke programmet, men vi tilrår sterkt at du ikkje køyrer UniGetUI med administratorrettar.",
"Share anonymous usage data": "Del anonyme brukardata",
"UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI samlar anonyme brukardata for å forbetre brukarerfaringa.",
"Accept": "Aksepter",
"You have installed UniGetUI Version {0}": "Du har installert UniGetUI versjon {0}",
"Disclaimer": "Ansvarsfråskriving",
"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 wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI ville ikkje vore mogleg uten hjelp frå alle bidragsytarane. Takk alle saman🥳",
"UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI brukar føljande bibliotek. Utan dei ville ikkje UniGetUI ha vore mogleg.",
"{0} homepage": "{0} si heimeside",
"UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI har blitt omsett til meir enn 40 språk takka vere frivillige omsetjare. Takk 🤝",
"Verbose": "Uttømmande",
"1 - Errors": "1 - Feilmeldingar",
"2 - Warnings": "2 - Åtvaringar",
"3 - Information (less)": "3 - Informasjon (mindre)",
"4 - Information (more)": "4 - Informasjon (meir)",
"5 - information (debug)": "5 - Informasjon (feilsøking)",
"Warning": "Åtvaring",
"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.",
"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.",
"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 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 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 size of the backup is estimated to be less than 1MB.": "Storleiken på sikkerheitskopien er estimert til å vere mindre enn 1MB.",
"The backup will be performed after login.": "Sikkerheitskopien kjem til å bli utført etter innlogging",
"{pcName} installed packages": "{pcName}: Installerte pakkar",
"Current status: Not logged in": "Gjeldande status: Ikkje innlogga",
"You are logged in as {0} (@{1})": "Du er innlogga som {0} (@{1})",
"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",
"Select backup": "Vel sikkerheitskopi",
"UniGetUI Settings": "UniGetUI-innstillingar",
"Allow pre-release versions": "Tillat forhandsversjonar",
"Apply": "Bruk",
"For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Av tryggingsgrunnar er tilpassa kommandolinjeparametrar deaktiverte som standard. Gå til UniGetUI-tryggingsinnstillingane for å endre dette.",
"Go to UniGetUI security settings": "Gå til UniGetUI-tryggjingsinnstillingar",
"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.",
"Package's default": "Pakkens standard",
"Install location can't be changed for {0} packages": "Installasjonsplassering kan ikkje endrast for {0}-pakkar",
"The local icon cache currently takes {0} MB": "Det lokale ikonbufferet tek for tida {0} MB",
"Username": "Brukarnamn",
"Password": "Passord",
"Credentials": "Legitimasjon",
"It is not guaranteed that the provided credentials will be stored safely": "Det er ikkje garantert at dei oppgjevne legitimasjonsopplysningane blir lagra trygt",
"Partially": "Delvis",
"Package manager": "Pakkehåndterar",
"Compatible with proxy": "Kompatibel med proxy",
"Compatible with authentication": "Kompatibel med autentisering",
"Proxy compatibility table": "Proxy-kompatibilitetstabell",
"{0} settings": "{0} innstillingar",
"{0} status": "{0}-tilstand",
"Default installation options for {0} packages": "Standardinstallasjonsval for {0}-pakkar",
"Expand version": "Utvid versjon",
"The executable file for {0} was not found": "Kjørbar fil for {0} vart ikkje funne",
"{pm} is disabled": "{pm} er deaktivert",
"Enable it to install packages from {pm}.": "Aktiver det for å installere pakkar frå {pm}",
"{pm} is enabled and ready to go": "{pm} er aktivert og klar for bruk",
"{pm} version:": "{pm} versjon:",
"{pm} was not found!": "{pm} vart ikkje funne!",
"You may need to install {pm} in order to use it with UniGetUI.": "Du må kanskje installere {pm} for å bruke det med UniGetUI.",
"Scoop Installer - UniGetUI": "Scoop-installasjonsprogram - UniGetUI",
"Scoop Uninstaller - UniGetUI": "Scoop-avinstallasjonsprogram - UniGetUI",
"Clearing Scoop cache - UniGetUI": "Rensar Scoop-cachen - UniGetUI",
"Restart UniGetUI to fully apply changes": "Start UniGetUI på nytt for å ta i bruk endringane fullt ut",
"Restart UniGetUI": "Start UniGetUI på nytt",
"Manage {0} sources": "Behandle {0} kjelder",
"Add source": "Legg til kjelde",
"Add": "Legg til",
"Source name": "Kjeldenamn",
"Source URL": "Kjelde-URL",
"Other": "Andre",
"No minimum age": "Ingen minimumsalder",
"1 day": "1 dag",
"{0} days": "{0} dagar",
"Custom...": "Tilpassa...",
"{0} minutes": "{0} minutt",
"1 hour": "1 time",
"{0} hours": "{0} timar",
"1 week": "1 veke",
"Supports release dates": "Støttar utgivingsdatoar",
"Release date support per package manager": "Støtte for utgivingsdatoar per pakkehandterar",
"UniGetUI Version {0}": "UniGetUI versjon {0}",
"Search for packages": "Søk etter pakkar",
"Local": "Lokal",
"OK": "Ok",
"{0} packages were found, {1} of which match the specified filters.": "{0} pakkar var funne, av dei matcha {1} dine filter.",
"{0} selected": "{0} vald",
"(Last checked: {0})": "(Sist sjekka: {0})",
"Enabled": "Aktivert",
"Disabled": "Deaktivert",
"More info": "Meir informasjon",
"GitHub account": "GitHub-konto",
"Log in with GitHub to enable cloud package backup.": "Logg inn med GitHub for å aktivere skya-pakke-sikkerheitskopi.",
"More details": "Fleire detaljar",
"Log in": "Logg inn",
"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",
"Log out": "Logg ut",
"About UniGetUI": "Om UniGetUI",
"About": "Om",
"Third-party licenses": "Tredjepartslisensar",
"Contributors": "Bidragsytare",
"Translators": "Omsettare",
"Manage shortcuts": "Handsamar snarveiar",
"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",
"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.",
"Open in explorer": "Opne i Filutforskar",
"Remove from list": "Fjern frå liste",
"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.",
"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.",
"More details about the shared data and how it will be processed": "Fleire detaljar om dei delte dataa og korleis dei vil bli handsama",
"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?",
"Decline": "Avslå",
"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.",
"Toggle navigation panel": "Vis/skjul navigasjonspanelet",
"Minimize": "Minimer",
"Maximize": "Maksimer",
"UniGetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI er ein applikasjon som forenklar handtering av programvare, ved å tilby eit alt-i-eitt grafisk grensesnitt for kommandolinjepakkehandterarane dine.",
"Useful links": "Nyttige lenkar",
"UniGetUI Homepage": "UniGetUI-heimeside",
"Report an issue or submit a feature request": "Si frå om ein feil eller send inn forslag til nye funksjonar",
"UniGetUI Repository": "UniGetUI-kodelager",
"View GitHub Profile": "Vis GitHub-profil",
"UniGetUI License": "UniGetUI - Lisens",
"Using UniGetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen",
"Become a translator": "Bli ein omsettar",
"View page on browser": "Vis sida i nettlesaren",
"Copy to clipboard": "Kopier til utklippstavla",
"Export to a file": "Eksporter til ei fil",
"Log level:": "Loggnivå:",
"Reload log": "Last inn logg på ny",
"Export log": "Eksporter logg",
"UniGetUI Log": "UniGetUI-logg",
"Text": "Tekst",
"Change how operations request administrator rights": "Endra korleis handlingar ber om administratorrettar",
"Restrictions on package operations": "Avgrensingar på pakkehandlingar",
"Restrictions on package managers": "Avgrensingar på pakkehåndterarar",
"Restrictions when importing package bundles": "Avgrensingar ved import av pakke-bundlar",
"Ask for administrator privileges once for each batch of operations": "Spør etter administratorrettar ein gong per gruppe operasjonar",
"Ask only once for administrator privileges": "Spør berre ein gong for administratorrettar",
"Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Forbyd alle former for høgninga via UniGetUI Elevator eller GSudo",
"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.",
"Allow custom command-line arguments": "Tillat tilpassa kommandolinjeparametrar",
"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.",
"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",
"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",
"Allow changing the paths for package manager executables": "Tillat endring av stiar for pakkehåndterar-kjørbare filer",
"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",
"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",
"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.",
"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",
"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",
"Administrator rights and other dangerous settings": "Administratorrettar og andre risikofylte innstillingar",
"Package backup": "Pakke-sikkerheitskopi",
"Cloud package backup": "Skya-pakke-sikkerheitskopi",
"Local package backup": "Lokal pakke-sikkerheitskopi",
"Local backup advanced options": "Avanserte val for lokal sikkerheitskopi",
"Log in with GitHub": "Logg inn med GitHub",
"Log out from GitHub": "Logg ut frå GitHub",
"Periodically perform a cloud backup of the installed packages": "Utfør periodemessig ein skya-sikkerheitskopi av installerte pakkar",
"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",
"Perform a cloud backup now": "Utfør ein skya-sikkerheitskopi no",
"Backup": "Ta backup",
"Restore a backup from the cloud": "Gjenopprett ein sikkerheitskopi frå skya",
"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",
"Periodically perform a local backup of the installed packages": "Utfør periodemessig ein lokal sikkerheitskopi av installerte pakkar",
"Perform a local backup now": "Utfør ein lokal sikkerheitskopi no",
"Change backup output directory": "Endre mappa for sikkerheitskopien",
"Set a custom backup file name": "Velj eit eige namn for sikkerheitskopifila",
"Leave empty for default": "La stå tomt for standardvalet",
"Add a timestamp to the backup file names": "Legg til eit tidsstempel til backup-filnamna",
"Backup and Restore": "Sikkerheitskopi og gjenoppretting",
"Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (UniGetUI Widgets and Sharing, port 7058)",
"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.",
"Disable the 1-minute timeout for package-related operations": "Deaktiver 1-minutts-tidsavbrøytinga for pakke-relaterte handlingar",
"Use installed GSudo instead of UniGetUI Elevator": "Bruk installert GSudo i staden for UniGetUI Elevator",
"Use a custom icon and screenshot database URL": "Bruk eit eigendefinert ikon og ein eigendefinert URL til databasen",
"Enable background CPU Usage optimizations (see Pull Request #3278)": "Aktiver bakgrunns-CPU-brukaroptimaliseringar (sjå Pull Request #3278)",
"Perform integrity checks at startup": "Utfør integritetssjekkar ved oppstart",
"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",
"Experimental settings and developer options": "Eksperimentelle innstillingar og val for utveklare",
"Show UniGetUI's version and build number on the titlebar.": "Vis UniGetUI si versjon på tittelbalken",
"Language": "Språk",
"UniGetUI updater": "UniGetUI-oppdaterar",
"Telemetry": "Telemetri",
"Manage UniGetUI settings": "Handsamar UniGetUI-innstillingar",
"Related settings": "Relaterte innstillingar",
"Update UniGetUI automatically": "Oppdater UniGetUI automatisk",
"Check for updates": "Sjekk for oppdateringar",
"Install prerelease versions of UniGetUI": "Installer forhandsversjonar av UniGetUI",
"Manage telemetry settings": "Handsamar telemetri-innstillingar",
"Manage": "Handsamar",
"Import settings from a local file": "Eksporter innstillingar frå ei lokal fil",
"Import": "Importer",
"Export settings to a local file": "Eksporter innstillingar til ei lokal fil",
"Export": "Eksporter",
"Reset UniGetUI": "Nullstill UniGetUI",
"User interface preferences": "Alternativar for brukargrensesnitt",
"Application theme, startup page, package icons, clear successful installs automatically": "App-tema, startsida, pakkeikon, fjern ferdige installasjonar automatisk",
"General preferences": "Generelle innstillingar",
"UniGetUI display language:": "UniGetUI sitt visningsspråk:",
"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)",
"Appearance": "Utsjånad",
"UniGetUI on the background and system tray": "UniGetUI i bakgrunnen og systemstatusfeltet",
"Package lists": "Pakkelister",
"Close UniGetUI to the system tray": "Lukk UniGetUI til systemstatusfeltet",
"Manage UniGetUI autostart behaviour": "Handsam autostartåtferda til UniGetUI",
"Show package icons on package lists": "Vis pakkeikon på pakkelister",
"Clear cache": "Tøm buffer",
"Select upgradable packages by default": "Vel oppgradeingsbare pakkar som standard",
"Light": "Lys",
"Dark": "Mørk",
"Follow system color scheme": "Følj systemtemaet",
"Application theme:": "Applikasjonstema:",
"Discover Packages": "Utforsk pakkar",
"Software Updates": "Programvareoppdateringar",
"Installed Packages": "Installerte pakkar",
"Package Bundles": "Pakkebundlar",
"Settings": "Innstillingar",
"UniGetUI startup page:": "UniGetUI-startsida:",
"Proxy settings": "Proxy-innstillingar",
"Other settings": "Andre innstillingar",
"Connect the internet using a custom proxy": "Kople til internett med ein tilpassa proxy",
"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",
"Proxy URL": "Proxy-URL",
"Enter proxy URL here": "Skriv inn proxy-URL her",
"Authenticate to the proxy with a user and a password": "Autentiser mot proxyen med brukarnamn og passord",
"Internet and proxy settings": "Internett- og proxyinnstillingar",
"Package manager preferences": "Innstillingar for pakkehandterar",
"Ready": "Klar",
"Not found": "Ikkje funne",
"Notification preferences": "Varselinstillingar",
"Notification types": "Varslingtypar",
"The system tray icon must be enabled in order for notifications to work": "Systemstatusfeltet-ikonet må vera aktivert for at varslingane skal virke",
"Enable UniGetUI notifications": "Aktiver varslingar frå UniGetUI",
"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 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",
"Concurrency and execution": "Parallell prosessering og eksekusjon",
"Automatic desktop shortcut remover": "Automatisk fjerning av skrivebordssnarveiar",
"Choose how many operations should be performed in parallel": "Vel kor mange handlingar som skal utførast parallelt",
"Clear successful operations from the operation list after a 5 second delay": "Tøm vellukkede handlingar frå handlingslista etter ein 5-sekunders forsinking",
"Download operations are not affected by this setting": "Nedlastingshandlingar blir ikkje påverka av denne innstillinga",
"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",
"You may lose unsaved data": "Du kan miste ulagra data",
"Ask to delete desktop shortcuts created during an install or upgrade.": "Spør om å slette skrivebordssnarveiar opprettede under installasjon eller oppgradering.",
"Package update preferences": "Preferansar for pakkeoppdateringar",
"Update check frequency, automatically install updates, etc.": "Frekvens for oppdateringskontroll, installer oppdateringar automatisk, osv.",
"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.",
"Package operation preferences": "Preferansar for pakkehandlingar",
"Enable {pm}": "Aktiver {pm}",
"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.",
"For security reasons, changing the executable file is disabled by default": "Av tryggjingsgrunnar er endring av kjørbar fil deaktivert som standard",
"Change this": "Endra dette",
"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",
"Current executable file:": "Gjeldande kjørbar fil:",
"Ignore packages from {pm} when showing a notification about updates": "Ignorer pakkar frå {pm} når ein varsling om oppdateringar blir vist",
"Update security": "Oppdateringstryggleik",
"Use global setting": "Bruk global innstilling",
"e.g. 10": "t.d. 10",
"{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} oppgir ikkje utgivingsdatoar for pakkane sine, så denne innstillinga vil ikkje ha nokon effekt",
"Override the global minimum update age for this package manager": "Overstyr den globale minimumsalderen for oppdateringar for denne pakkehandteraren",
"Minimum age for updates": "Minimumsalder for oppdateringar",
"Custom minimum age (days)": "Tilpassa minimumsalder (dagar)",
"View {0} logs": "Sjå {0}-logger",
"If Python cannot be found or is not listing packages but is installed on the system, ": "Viss Python ikkje kan finnast eller ikkje listar pakkar, men er installert på systemet, ",
"Advanced options": "Avanserte val",
"Reset WinGet": "Nullstill WinGet",
"This may help if no packages are listed": "Dette kan hjelpe viss ingen pakkar blir lista opp",
"Force install location parameter when updating packages with custom locations": "Tving installasjonsplassering-parameter når du oppdaterar pakkar med tilpassa plasseringar",
"Use bundled WinGet instead of system WinGet": "Bruk bundla WinGet i staden for systemets WinGet",
"This may help if WinGet packages are not shown": "Dette kan hjelpe viss WinGet-pakkar ikkje visast",
"Install Scoop": "Installer Scoop",
"Uninstall Scoop (and its packages)": "Avinstaller Scoop (og alle tilhørande pakkar)",
"Run cleanup and clear cache": "Køyr opprensing og fjern buffer",
"Run": "Køyr",
"Enable Scoop cleanup on launch": "Aktiver Scoop-cleanup (nullstilling av buffer) ved oppstart",
"Use system Chocolatey": "Bruk systemet Chocolatey",
"Default vcpkg triplet": "Standard vcpkg-triplett",
"Change vcpkg root location": "Endre rotplasseringa for vcpkg",
"Language, theme and other miscellaneous preferences": "Språk, tema, og diverse andre preferansar",
"Show notifications on different events": "Vis varslingar for ulike hendingar",
"Change how UniGetUI checks and installs available updates for your packages": "Endre korleis UniGetUI sjekkar for og installerar tilgjengelege oppdateringar for pakkane dine",
"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.",
"Enable and disable package managers, change default install options, etc.": "Aktiver og deaktiver pakkehåndterarar, endra standardinstallasjonsval, osv.",
"Internet connection settings": "Innstillingar for internettforbinding",
"Proxy settings, etc.": "Proxy-innstillingar, osv.",
"Beta features and other options that shouldn't be touched": "Beta-funksjonalitet og andre innstillingar som ikkje må rørast",
"Update checking": "Oppdateringskontroll",
"Automatic updates": "Automatiske oppdateringar",
"Check for package updates periodically": "Sjekk etter pakkoppdateringar med jamne mellomrom",
"Check for updates every:": "Søk etter oppdateringar kvar:",
"Install available updates automatically": "Installer tilgjengelege oppdateringar automatisk",
"Do not automatically install updates when the network connection is metered": "Ikkje installer oppdateringar automatisk når nettverksforbindinga er målbar",
"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 battery saver is on": "Ikkje installer oppdateringar automatisk når batteri-sparing er på",
"Only show updates that are at least the specified number of days old": "Vis berre oppdateringar som er minst det oppgjevne talet på dagar gamle",
"Change how UniGetUI handles install, update and uninstall operations.": "Endra korleis UniGetUI handsamar installasjon, oppdatering og avinstallasjon.",
"Package Managers": "Pakkehåndterarar",
"More": "Meir",
"Package Manager logs": "Pakkehandteringsloggar",
"Operation history": "Handlingshistorikk",
"Help": "Hjelp",
"Quit UniGetUI": "Avslutt UniGetUI",
"Order by:": "Sorter etter:",
"Name": "Namn",
"Id": "ID",
"Ascendant": "Stigande",
"Descendant": "Synkande",
"View mode:": "Visningsmodus:",
"Filters": "Filtrar",
"Sources": "Kjelder",
"Search for packages to start": "Søk etter ein eller fleire pakkar for å starte",
"Select all": "Velj alle",
"Clear selection": "Tøm val",
"Instant search": "Hurtigsøk",
"Distinguish between uppercase and lowercase": "Skilj mellom store og små bokstavar",
"Ignore special characters": "Ignorer spesialtekn",
"Search mode": "Søkemodus",
"Both": "Båe",
"Exact match": "Eksakt match",
"Show similar packages": "Vis lignande pakkar",
"Nothing to share": "Ingenting å dele",
"Please select a package first.": "Vel ei pakke først.",
"Share link copied": "Delenkja vart kopiert",
"The share link for {0} has been copied to the clipboard.": "Delenkja for {0} er kopiert til utklippstavla.",
"No results were found matching the input criteria": "Ingen resultatar som matcha kriteria vart funne",
"No packages were found": "Ingen pakkar vart funne",
"Loading packages": "Lastar inn pakkar",
"Skip integrity checks": "Hopp over integritetssjekkar",
"Download selected installers": "Last ned valde installasjonsprogarammar",
"Install selection": "Installer utval",
"Install options": "Installasjonsval",
"Share": "Del",
"Add selection to bundle": "Legg til utval til bundlen",
"Download installer": "Last ned installasjonsprogram",
"Share this package": "Del denne pakka",
"Uninstall selection": "Avinstaller utval",
"Uninstall options": "Avinstallasjonsval",
"Ignore selected packages": "Ignorer valte pakkar",
"Open install location": "Opne installasjonsplassering",
"Reinstall package": "Installer pakke på nytt",
"Uninstall package, then reinstall it": "Avinstaller pakka, og så reinstaller han",
"Ignore updates for this package": "Ignorer oppdateringar til denne pakka",
"Do not ignore updates for this package anymore": "Ikkje ignorer oppdateringar for denne pakka lenger",
"Add packages or open an existing package bundle": "Legg til pakkar eller opne ein eksisterande bundle",
"Add packages to start": "Legg til pakkar for å starte",
"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",
"New": "Ny",
"Save as": "Lagre som",
"Remove selection from bundle": "Fjern utval frå bundle",
"Skip hash checks": "Hopp over sjekka av hasj",
"The package bundle is not valid": "Pakke-bundlen er ikkje gyldig",
"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.",
"Package bundle": "Pakkebundle",
"Could not create bundle": "Kunne ikkje lage bundle",
"The package bundle could not be created due to an error.": "Pakke-bundlen kunne ikkje bli laga på grunn av ein feil.",
"Unsaved changes": "Ulagra endringar",
"Discard changes": "Forkast endringar",
"You have unsaved changes in the current bundle. Do you want to discard them?": "Du har ulagra endringar i den noverande pakkebundelen. Vil du forkaste dei?",
"Bundle security report": "Sikkerheitsrapport for bundle",
"The bundle contained restricted content": "Pakkebundelen inneheldt avgrensa innhald",
"Hooray! No updates were found.": "Hurra! Ingen oppdateringar funne!",
"Everything is up to date": "Alt er oppdatert",
"Uninstall selected packages": "Avinstaller valte pakkar",
"Update selection": "Oppdater utval",
"Update options": "Oppdateringsval",
"Uninstall package, then update it": "Avinstaller pakka, og so oppdater ho",
"Uninstall package": "Avinstaller pakka",
"Skip this version": "Hopp over denne versjonen",
"Pause updates for": "Pause oppdateringar i",
"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 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>",
"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>",
"NuPkg (zipped manifest)": "NuPkg (zippa manifest)",
"The Missing Package Manager for macOS (or Linux).<br>Contains: <b>Formulae, Casks</b>": "Den manglande pakkehandteraren for macOS (eller Linux).<br>Inneheld: <b>Formulae, Casks</b>",
"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>",
"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>",
"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>",
"extracted": "utpakka",
"Scoop package": "Skoop-pakke",
"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>",
"library": "bibliotek",
"feature": "funksjon",
"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>",
"option": "val",
"This package cannot be installed from an elevated context.": "Denne pakka kan ikkje bli installert frå ein høgna kontekst.",
"Please run UniGetUI as a regular user and try again.": "Venlegst køyr UniGetUI som ein vanlег brukar og prøv igjen.",
"Please check the installation options for this package and try again": "Venlegst sjekk installasjonsvaline for denne pakka og prøv igjen",
"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>",
"Local PC": "Lokal PC",
"Android Subsystem": "Android-undersystem",
"Operation on queue (position {0})...": "Handlinga er i køen (posisjon {0})...",
"Click here for more details": "Klikk her for fleire detaljar",
"Operation canceled by user": "Operasjon avbroten av brukar",
"Running PreOperation ({0}/{1})...": "Køyrer PreOperation ({0}/{1})...",
"PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} av {1} mislukkast og var merkt som naudsynt. Avbryt...",
"PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} av {1} blei fullført med resultatet {2}",
"Starting operation...": "Startar handling...",
"Running PostOperation ({0}/{1})...": "Køyrer PostOperation ({0}/{1})...",
"PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} av {1} mislukkast og var merkt som naudsynt. Avbryt...",
"PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} av {1} blei fullført med resultatet {2}",
"{package} installer download": "{package} installasjonsprogram nedlasting",
"{0} installer is being downloaded": "{0} installasjonsprogram blir lasta ned",
"Download succeeded": "Nedlasting var suksessfull",
"{package} installer was downloaded successfully": "{package} installasjonsprogram vart lasta ned med suksess",
"Download failed": "Nedlasting feilet",
"{package} installer could not be downloaded": "{package} installasjonsprogram kunne ikkje bli lasta ned",
"{package} Installation": "{package} Installasjon",
"{0} is being installed": "{0} blir installert",
"Installation succeeded": "Installasjon fullført",
"{package} was installed successfully": "{package} vart suksessfullt installert",
"Installation failed": "Installasjon feilet",
"{package} could not be installed": "{package} kunne ikkje bli installert",
"{package} Update": "{package} Oppdater",
"{0} is being updated to version {1}": "{0} blir oppdatert til versjon {1}",
"Update succeeded": "Suksessfull oppdatering",
"{package} was updated successfully": "{package} vart suksessfullt oppdatert",
"Update failed": "Oppdatering feila",
"{package} could not be updated": "{package} kunne ikkje bli oppdatert",
"{package} Uninstall": "{package} Avinstaller",
"{0} is being uninstalled": "{0} blir avinstallert",
"Uninstall succeeded": "Suksessfull avinstallering",
"{package} was uninstalled successfully": "{package} vart suksessfullt avinstallert",
"Uninstall failed": "Avinstallering feila",
"{package} could not be uninstalled": "{package} kunne ikkje bli avinstallert",
"Adding source {source}": "Legg til kjelda {source}",
"Adding source {source} to {manager}": "Legg til kjelde {source} til {manager}",
"Source added successfully": "Kjelde lagd til med suksess",
"The source {source} was added to {manager} successfully": "Kjelden {source} vart suksessfullt lagt til hos {manager}",
"Could not add source": "Kunne ikkje legge til kjelde",
"Could not add source {source} to {manager}": "Kunne ikkje legge til kjelde {source} til {manager}",
"Removing source {source}": "Fjernar kjelden {source}",
"Removing source {source} from {manager}": "Fjernar kjelde {source} frå {manager}",
"Source removed successfully": "Kjelde fjerna med suksess",
"The source {source} was removed from {manager} successfully": "Kjelden {source} vart suksessfullt fjerna frå {manager}",
"Could not remove source": "Kunne ikkje fjerne kjelde",
"Could not remove source {source} from {manager}": "Kunne ikkje fjerne kjelde {source} frå {manager}",
"The package manager \"{0}\" was not found": "Pakkehåndteraren «{0}» vart ikkje funne",
"The package manager \"{0}\" is disabled": "Pakkehåndteraren «{0}» er deaktivert",
"There is an error with the configuration of the package manager \"{0}\"": "Det er ein feil med konfigurasjonen av pakkehåndteraren «{0}»",
"The package \"{0}\" was not found on the package manager \"{1}\"": "Pakka «{0}» vart ikkje funne på pakkehåndteraren «{1}»",
"{0} is disabled": "{0} er deaktivert",
"Something went wrong": "Noko gikk galt",
"An interal error occurred. Please view the log for further details.": "Ein intern feil oppstod. Venlegst sjå loggen for fleire detaljar.",
"No applicable installer was found for the package {0}": "Ingen gjeldande installasjonsprogaramm vart funne for pakka {0}",
"We are checking for updates.": "Me er av sjekk for oppdateringar.",
"Please wait": "Venlegst vent",
"UniGetUI version {0} is being downloaded.": "UniGetUI versjon {0} blir lasta ned.",
"This may take a minute or two": "Dette kan ta nokre få minutt",
"The installer authenticity could not be verified.": "Autentisiteten til installasjonsprogram kunne ikkje blir stadfest.",
"The update process has been aborted.": "Oppdateringsprosessen vart avbroten.",
"Great! You are on the latest version.": "Flott! Du er på siste versjon.",
"There are no new UniGetUI versions to be installed": "Det finst ingen nye UniGetUI-versjonar som skal installeras",
"An error occurred when checking for updates: ": "Ein feil oppstod ved sjekking for oppdateringar",
"UniGetUI is being updated...": "UniGetUI blir oppdatert...",
"Something went wrong while launching the updater.": "Noko gjekk gale ved oppstart av oppdateraren.",
"Please try again later": "Venlegst prøv igjen seinare",
"Integrity checks will not be performed during this operation": "Integritetssjekkar vil ikkje bli utførte under denne handlinga",
"This is not recommended.": "Dette blir ikkje tilrådd.",
"Run now": "Køyr no",
"Run next": "Køyr neste",
"Run last": "Køyr sist",
"Retry as administrator": "Prøv igjen som administrator",
"Retry interactively": "Prøv på nytt interaktivt",
"Retry skipping integrity checks": "Prøv på nytt og hoppa over integritetssjekkar",
"Installation options": "Installasjonsval",
"Show in explorer": "Vis i utforskar",
"This package is already installed": "Denne pakken er allereie installert",
"This package can be upgraded to version {0}": "Denne pakka kan bli oppgradert til versjon {0}",
"Updates for this package are ignored": "Oppdateringar for denne pakka er ignorert",
"This package is being processed": "Denne pakken behandlas",
"This package is not available": "Denne pakka er ikkje tilgjengeleg",
"Select the source you want to add:": "Velj kjelden du ynskjer å legge til:",
"Source name:": "Kjeldenamn:",
"Source URL:": "Kilde-URL:",
"An error occurred": "Ein feil oppstod",
"An error occurred when adding the source: ": "Ein feil oppstod då kjelden vart lagt til:",
"Package management made easy": "Pakkestyring gjort enkelt",
"version {0}": "versjon {0}",
"[RAN AS ADMINISTRATOR]": "KØYRTE SOM ADMINISTRATOR",
"Portable mode": "Bærbar modus\n",
"DEBUG BUILD": "DEBUG-BUILD",
"Available Updates": "Tilgjengelege oppdateringar",
"Show UniGetUI": "Vis UniGetUI",
"Quit": "Lukk",
"Attention required": "Oppmerksemd krevst",
"Restart required": "Omstart krevst",
"1 update is available": "1 oppdatering er tilgjengeleg",
"{0} updates are available": "{0} oppdateringar er tilgjengelege",
"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",
"Manual scan": "Manuell skanning",
"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.",
"Continue": "Fortsett",
"Delete?": "Slette?",
"Missing dependency": "Manglar avhengigheit",
"Not right now": "Ikkje akkurat no",
"Install {0}": "Installer {0}",
"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.",
"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.",
"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:",
"Do not show this dialog again for {0}": "Ikkje vis denne dialogen igjen for {0}",
"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.",
"{0} has been installed successfully.": "{0} har vorte installert med suksess.",
"Please click on \"Continue\" to continue": "Venlegst klikk på \"Fortsett\" for å fortsette",
"{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} har vorte installert med suksess. Det blir tilrådd å starte UniGetUI på nytt for å fullføre installasjonen",
"Restart later": "Start på ny seinare",
"An error occurred:": "Ein feil oppstod:",
"I understand": "Eg forstår",
"WinGet was repaired successfully": "WinGet vart reparert med suksess",
"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",
"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",
"Restart": "Start på nytt",
"WinGet could not be repaired": "WinGet kunne ikkje bli reparert",
"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",
"Are you sure you want to delete all shortcuts?": "Er du sikker på at du vil slette alle snarveiane?",
"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.",
"Are you really sure you want to enable this feature?": "Er du verkeleg sikker på at du vil aktivere denne funksjonen?",
"No new shortcuts were found during the scan.": "Ingen nye snarveiar vart funne under skanningen.",
"How to add packages to a bundle": "Korleis å legge til pakkar til ein bundle",
"In order to add packages to a bundle, you will need to: ": "For å legge til pakkar til ein bundle må du: ",
"1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Naviger til «{0}»- eller «{1}»-sida.",
"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. 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. 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.",
"Which backup do you want to open?": "Kva sikkerheitskopi vil du opne?",
"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.",
"There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Det er mange pågåande operasjonar. Å avslutte UniGetUI kan føre til at dei feilar. Vil du fortsetje?",
"UniGetUI or some of its components are missing or corrupt.": "UniGetUI eller nokre av komponenta hans manglar eller er øydelagde.",
"It is strongly recommended to reinstall UniGetUI to adress the situation.": "Det blir sterkt tilrådd å reinstallere UniGetUI for å løyse situasjonen.",
"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)",
"Integrity checks can be disabled from the Experimental Settings": "Integritetssjekkar kan deaktiveringast frå Eksperimentelle innstillingar",
"Repair UniGetUI": "Reparer UniGetUI",
"Live output": "Direkte output",
"Package not found": "Pakke vart ikkje funne",
"An error occurred when attempting to show the package with Id {0}": "Ein feil oppstod med visinga av ein pakke med ID {0}",
"Package": "Pakke",
"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.",
"Entries that show in YELLOW will be IGNORED.": "Oppføringar som vart vist i GULT vil bli IGNORERTE.",
"Entries that show in RED will be IMPORTED.": "Oppføringar som vart vist i RØD vil bli IMPORTERTE.",
"You can change this behavior on UniGetUI security settings.": "Du kan endra denne åtferda på UniGetUI-tryggjingsinnstillingar.",
"Open UniGetUI security settings": "Opne UniGetUI-tryggjingsinnstillingar",
"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.",
"Details of the report:": "Detaljar av rapporten:",
"\"{0}\" is a local package and can't be shared": "«{0}» er ein lokal pakke og kan ikkje delast",
"Are you sure you want to create a new package bundle? ": "Er du sikker på at du vil lage ein ny pakke-bundle?",
"Any unsaved changes will be lost": "Ulagra endringar vil gå tapt",
"Warning!": "Åtvaring!",
"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. ",
"Change default options": "Endra standardval",
"Ignore future updates for this package": "Ignorer framtidige oppdateringar for denne pakka",
"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. ",
"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.",
"Change this and unlock": "Endra dette og låst opp",
"{0} Install options are currently locked because {0} follows the default install options.": "{0} Installasjonsval er for tida låste fordi {0} følgjer standardinstallasjonsvaline.",
"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.",
"Write here the process names here, separated by commas (,)": "Skriv her prosessnamna, separerte med komma (,)",
"Unset or unknown": "Ikkje sett eller ukjend",
"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.",
"This package has no screenshots or is missing the icon? Contrbute to UniGetUI by adding the missing icons and screenshots to our open, public database.": "Denne pakka har ingen skjermbilde eller manglar eit ikon? Bidra til UniGetUI ved å leggje til dei manglande ikona og skjermbilda til vår opne, offentlege database.",
"Become a contributor": "Bli ein bidragsytar",
"Save": "Lagre",
"Update to {0} available": "Oppdatering for {0} er tilgjengeleg",
"Reinstall": "Installer på nytt",
"Installer not available": "Installerar ikkje tilgjengeleg",
"Version:": "Versjon:",
"Performing backup, please wait...": "Utførar sikkerheitskopi, venlegst vent...",
"An error occurred while logging in: ": "Ein feil oppstod under innlogging: ",
"Fetching available backups...": "Hentar tilgjengelege sikkerheitskopiar...",
"Done!": "Ferdig!",
"The cloud backup has been loaded successfully.": "Skya-sikkerheitskopien vart lasta inn med suksess.",
"An error occurred while loading a backup: ": "Ein feil oppstod under lasting av ein sikkerheitskopi: ",
"Backing up packages to GitHub Gist...": "Sikkerheitskopier pakkar til GitHub Gist...",
"Backup Successful": "Sikkerheitskopia vart fullført",
"The cloud backup completed successfully.": "Skya-sikkerheitskopien vart fullført med suksess.",
"Could not back up packages to GitHub Gist: ": "Kunne ikkje sikkerheitskopiere pakkar til GitHub Gist: ",
"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",
"Enable the automatic WinGet troubleshooter": "Aktiver automatisk WinGet-feilsøkjar",
"Enable an [experimental] improved WinGet troubleshooter": "Aktiver ein [eksperimental] forbetrad WinGet-feilsøkar",
"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.",
"Invalid selection": "Ugyldig val",
"No package was selected": "Ingen pakke vart vald",
"More than 1 package was selected": "Meir enn 1 pakke vart vald",
"List": "Liste",
"Grid": "Rutenett",
"Icons": "Ikon",
"\"{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",
"WinGet malfunction detected": "WinGet-mangel oppdaga",
"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?",
"Repair WinGet": "Reparer WinGet",
"Create .ps1 script": "Opprett .ps1-skript",
"Add packages to bundle": "Legg til pakkar til bundlen",
"Preparing packages, please wait...": "Forbereiar pakkar, venlegst vent...",
"Loading packages, please wait...": "Lastar pakkar, venlegst vent...",
"Saving packages, please wait...": "Lagrar pakkar, venlegst vent...",
"The bundle was created successfully on {0}": "Bundlen vart opprett med suksess på {0}",
"Install script": "Installasjonsskript",
"The installation script saved to {0}": "Installasjonsskriptet vart lagra til {0}",
"An error occurred while attempting to create an installation script:": "Ein feil oppstod ved forsøk på å lage eit installasjonsskript:",
"{0} packages are being updated": "{0} pakkar blir oppdatert",
"Error": "Feil",
"Log in failed: ": "Innlogging feilet: ",
"Log out failed: ": "Utlogging feilet: ",
"Package backup settings": "Innstillingar for pakke-sikkerheitskopi",
"__LEGACY_TRANSLATION_KEYS_BELOW__": "Legacy translation keys below are kept for backward compatibility with older UniGetUI builds. Do not translate or remove yet.",
"About WingetUI": "Om WingetUI",
"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.",
"You have installed WingetUI Version {0}": "Du har installert WingetUI versjon {0}",
"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 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 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 Settings": "Innstillingar for WingetUI",
"You may need to install {pm} in order to use it with WingetUI.": "Du må kanskje installere {pm} for å bruke det med WingetUI.",
"Scoop Installer - WingetUI": "Scoop-installasjonsprogram - WingetUI",
"Scoop Uninstaller - WingetUI": "Scoop-avinstallasjonsprogram - WingetUI",
"Clearing Scoop cache - WingetUI": "Rensar Scoop-cachen - WingetUI",
"WingetUI Version {0}": "WingetUI versjon {0}",
"WingetUI License": "WingetUI - Lisens",
"Using WingetUI implies the acceptation of the MIT License": "Bruk av UniGetUI inneber å godta MIT-lisensen",
"Enable background api (WingetUI Widgets and Sharing, port 7058)": "Aktiver bakgrunns-API-et (WingetUI Widgets and Sharing, port 7058)",
"Update WingetUI automatically": "Oppdater WingetUI automatisk",
"Reset WingetUI": "Tilbakestill WingetUI",
"WingetUI display language:": "WingetUI sitt visningsspråk:",
"Manage WingetUI autostart behaviour": "Handsam autostartåtferda til WingetUI",
"Enable WingetUI notifications": "Aktiver varslingar frå WingetUI",
"WingetUI Log": "WingetUI-logg",
"Show WingetUI": "Vis WingetUI",
"WingetUI Homepage": "WingetUI - Heimeside",
"WingetUI Repository": "WingetUI - Repository",
"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.",
"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?",
"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.",
"Restart WingetUI to fully apply changes": "Start WingetUI på ny for at alle endringane skal bli brukt",
"Restart WingetUI": "Start WingetUI på ny",
"UniGetUI": "UniGetUI",
"Manage UniGetUI autostart behaviour from the Settings app": "Behandle autostartåtferd for UniGetUI frå innstillingsappen",
"(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 month": "1 månad",
"1 package was found": "1 pakke vart funne",
"1 year": "1 år",
"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",
"About Qt6": "Om Qt6",
"About WingetUI version {0}": "Om WingetUI versjon {0}",
"About the dev": "Om utveklaren",
"Action when double-clicking packages, hide successful installations": "Handling ved dobbelklikk på pakkar, skjul ferdige installasjonar",
"Add a source to {0}": "Legg til ein kjelde til {0}",
"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",
"Addition succeeded": "Suksessfull tillegging",
"Administrator privileges preferences": "Preferansar for adminstaratorrettar",
"Administrator rights": "Administratorrettar",
"All files": "Alle filar",
"Allow package operations to be performed in parallel": "Tillat at pakkehandlingar skjer parallelt",
"Allow parallel installs (NOT RECOMMENDED)": "Tillat parallelle installasjonar (IKKJE ANBEFALT)",
"Allow {pm} operations to be performed in parallel": "Tillat at {pm}-operasjonar kan køyre i parallell",
"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 unexpected error occurred:": "Ein uventa feil oppstod:",
"Another source": "Annen kjelde",
"App Name": "Appnamn",
"Are these screenshots wron or blurry?": "Er desse skjermbilda feil eller uklare?",
"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 (not recommended)": "Berre spør om administratortilgang ein gong (ikkje anbefalt)",
"Authenticate to the proxy with an user and a password": "Autentiser til proxy-en med brukar og passord",
"Automatically save a list of your installed packages on your computer.": "Lagre ei liste over dine installerte pakkar på datamaskina di automatisk",
"Autostart WingetUI in the notifications area": "Start WingetUI automatisk i varslingsfeltet",
"Available updates: {0}": "Tilgjengelege oppdateringar: {0}",
"Available updates: {0}, not finished yet...": "Tilgjengelege oppdateringar: {0}, jobbar framleis...",
"Backup installed packages": "Sikkerheitskopier installerte pakkar",
"Backup location": "Plassering for sikkerheitskopi",
"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 all operations": "Avbryt alle handlingar",
"Change how UniGetUI installs packages, and checks and installs available updates": "Endra korleis UniGetUI installerar pakkar, og sjekkar og installerar tilgjengelege oppdateringar",
"Change install location": "Endre plasseringa for installasjon",
"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 finished operations": "Tøm ferdige handlingar",
"Clear successful operations": "Tøm vellukkede handlingar",
"Clear the local icon cache": "Tøm det lokale ikonbufferet",
"Clearing Scoop cache...": "Tømmar Scoop sin buffer...",
"Close WingetUI to the notification area": "Minimer WingetUI til systemstatusfeltet",
"Command-line Output": "Kommandolinje-output",
"Compare query against": "Samanlikn spørring mot",
"Component Information": "Komponentinformasjon",
"Contribute to the icon and screenshot repository": "Bidra til ikon- og skjembildearkivet",
"Copy": "Kopier",
"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} from {manager}": "Kunne ikkje fjerne {source} frå {manager}",
"Current Version": "Nåværande versjon",
"Current user": "Nåværande brukar",
"Custom arguments:": "Tilpassa parameter:",
"Custom command-line arguments:": "Tilpassa kommandolinje-parametrar:",
"Customize WingetUI - for hackers and advanced users only": "Tilpass WingetUI - berre for hackarar og avanserte brukarar",
"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Å.",
"Default preferences - suitable for regular users": "Standardpreferansar - tilpassa normale brukarar",
"Description:": "Beskriving:",
"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)",
"Discover packages": "Utforsk pakkar",
"Distinguish between\nuppercase and lowercase": "Skill 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 download new app translations from GitHub automatically": "Ikkje last ned nye oversettingar av appen automatisk frå GitHub",
"Do not remove successful operations from the list automatically": "Ikkje fjern suksessfulle operasjonar automatisk frå lista",
"Do not update package indexes on launch": "Ikkje oppdater pakkeindeksar ved oppstart",
"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 uninstall {0} packages?": "Vil du verkeleg avinstallere {0} pakkar?",
"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",
"Download updated language files from GitHub automatically": "Last ned oppdaterte språkfilar frå GitHub automatisk",
"Downloading": "Lastar ned",
"Downloading installer for {package}": "Lastar ned installasjonsprogram for {package}",
"Downloading package metadata...": "Lastar ned metadata for pakka...",
"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)",
"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",
"Fetching latest announcements, please wait...": "Hentar siste annonseringar, venlegst vent...",
"Finish": "Ferdig",
"Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Bruk ARM-kompilert versjon av winget (BERRE FOR ARM64-SYSTEM)",
"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...",
"GitHub profile": "GitHub-profil",
"Global": "Globalt",
"Help and documentation": "Hjelp og dokumentasjon",
"Hide details": "Skjul detaljar",
"How should installations that require administrator privileges be treated?": "Kva skal gjerast med installasjonar som krev administratorrettar?",
"Ignore updates for the selected packages": "Ignorer oppdateringar for de valte pakkane",
"Ignored updates": "Ignorerte oppdateringar",
"Import packages": "Importer pakkar",
"Import packages from a file": "Importer pakkar frå ei fil",
"Initializing WingetUI...": "Initialiserar WingetUI...",
"Install and more": "Installasjon og meir",
"Install and update preferences": "Innstillingar for installasjon og oppdatering",
"Install packages from a file": "Installer pakkar frå ei fil",
"Install selected packages": "Installer valte pakkar",
"Install selected packages with administrator privileges": "Installer valte pakkar med administratorrettar",
"Install the latest prerelease version": "Installer siste forhandsutgivingsversjon",
"Install updates automatically": "Installer oppdateringar automatisk",
"Installation canceled by the user!": "Installasjon avbroten av brukar!",
"Installed packages": "Installerte pakkar",
"Instance {0} responded, quitting...": "Instans {0} ga svar, avsluttar...",
"Is this package missing the icon?": "Manglar ikonet for denne pakka?",
"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.",
"Latest Version": "Siste versjon",
"Latest Version:": "Siste versjon:",
"Latest details...": "Siste detaljar...",
"Launching subprocess...": "Startar subprosess...",
"Licenses": "Lisensar",
"Live command-line output": "Direkte output frå kommandolinja",
"Loading UI components...": "Lastar UI-komponentar...",
"Loading WingetUI...": "Lastar inn WingetUI...",
"Local machine": "Lokal maskin",
"Locating {pm}...": "Finnar {pm}...",
"Looking for packages...": "Ser etter pakkar...",
"Machine | Global": "Maskin | Global",
"Manage WingetUI autostart behaviour from the Settings app": "Behandle autostartåtferd for WingetUI frå innstillingsappen",
"Manage ignored packages": "Behandle ignorerte pakkar",
"Manifests": "Konfigurasjonsfilar",
"New Version": "Ny versjon",
"New bundle": "Ny bundle",
"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 sources found": "Ingen kjelder vart funne",
"No sources were found": "Ingen kjelder har vorte funne",
"No updates are available": "Ingen oppdaterinar tilgjengelege",
"Notes:": "Notatar:",
"Notification tray options": "Innstillingar for varslingsområdet:",
"Ok": "Ok",
"Open GitHub": "Åpne GitHub",
"Open WingetUI": "Opne WingetUI",
"Open backup location": "Åpne backup-plasseringa",
"Open existing bundle": "Opne eksisterande bundle",
"Open the welcome wizard": "Åpne velkomstveiledaren",
"Operation cancelled": "Handling avbroten",
"Options saved": "Innstillingar lagra",
"Package Manager": "Pakkehåndterar",
"Package managers": "Pakkehåndterarar",
"Package {name} from {manager}": "Pakke {name} frå {manager}",
"Packages": "Pakkar",
"Packages found: {0}": "Pakkar funne: {0}",
"Paste a valid URL to the database": "Lim inn ein gyldig URL til databasen",
"Perform a backup now": "Utfør ein sikkerheitskopi no",
"Periodically perform a backup of the installed packages": "Utfør ein sikkerheitskopi av dei installerte pakkane med jamne mellamrom",
"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 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 select how you want to configure WingetUI": "Venlegst vel korleis du vil konfigurere WingetUI",
"Please type at least two characters": "Venlegst tast minst to tekn",
"Portable": "Portabel",
"Publication date:": "Publiseringsdato:",
"Quit WingetUI": "Avslutt WingetUI",
"Release notes URL:": "URL til utgivingsnotatar:",
"Release notes:": "Utgivingsnotatar:",
"Reload": "Last inn på ny",
"Removal failed": "Fjerning feila",
"Removal succeeded": "Suksessfull fjerning",
"Remove permanent data": "Fjern permanente data",
"Remove successful installs/uninstalls/updates from the installation list": "Fjern vellykka installasjonar/avinstallasjonar/oppdateringar frå installasjonslista",
"Repository": "Lager",
"Reset Scoop's global app cache": "TIlbakestill Scoop sin globale app-buffer",
"Reset Winget sources (might help if no packages are listed)": "Tilbakestill Winget-kjelder (kan hjelpe viss ingen pakkar visast)",
"Reset WingetUI and its preferences": "Tilbakestill WingetUI med tilhørande innstillingar",
"Reset WingetUI icon and screenshot cache": "Tilbakestill WingetUI-ikonet og bufra skjermbildar",
"Resetting Winget sources - WingetUI": "Nullstillar Winget-kjelder - WingetUI",
"Restart now": "Start på ny no",
"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",
"Retry failed operations": "Prøv på nytt feilna operasjonar",
"Retrying, please wait...": "Prøvar på ny, venlegst vent...",
"Return to top": "Til toppen",
"Running the installer...": "Køyrar installasjonsprogrammet...",
"Running the uninstaller...": "Køyrar avinstallasjonsprogrammet",
"Running the updater...": "Køyrar oppdateringsprogrammet..",
"Save File": "Lagre fil",
"Save bundle as": "Lagre bundle som",
"Save now": "Lagre no",
"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 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 \"{item}\" to add your custom bucket": "Velj \"{item}\" for å legge til i din tilpassa bucket",
"Select a folder": "Velj ei mappe",
"Select all packages": "Velj alle pakkar",
"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 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 custom backup file name": "Velj eit eiga namn for sikkerhetskopifila",
"Share WingetUI": "Del WingetUI",
"Show UniGetUI on the system tray": "Vis UniGetUI i systemfeltet",
"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 details": "Vis detaljar",
"Show info about the package on the Updates tab": "Vis info om pakka under fana Oppdateringar",
"Show missing translation strings": "Vis manglande omsettingsstrengar",
"Show package details": "Vis pakkedetaljar",