-
Notifications
You must be signed in to change notification settings - Fork 737
Expand file tree
/
Copy pathlang_be.json
More file actions
1074 lines (1074 loc) · 112 KB
/
lang_be.json
File metadata and controls
1074 lines (1074 loc) · 112 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}\" - лакальны пакет і ім нельга падзяліцца",
"\"{0}\" is a local package and does not have available details": "\"{0}\" - лакальны пакет, падрабязнасці недаступныя",
"\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" - лакальны пакет і ён не падтрымлівае гэтую функцыю",
"(Last checked: {0})": "(Апошняя праверка: {0})",
"(Number {0} in the queue)": "(Нумар {0} у чарзе)",
"0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@bthos",
"0 packages found": "Пакеты не знойдзены",
"0 updates found": "Абнаўленняў не знойдзена",
"1 - Errors": "1 - Збоі",
"1 day": "1 дзень",
"1 hour": "1 гадзіна",
"1 month": "1 месяц",
"1 package was found": "Знойдзены 1 пакет",
"1 update is available": "Даступнае 1 абнаўленне",
"1 week": "1 тыдзень",
"1 year": "1 год",
"1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Перайдзіце на старонку \"{0}\" або \"{1}\".",
"2 - Warnings": "2 - Папярэджанні",
"2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. Знайдзіце пакет(ы), якія жадаеце дадаць у набор, і пастаўце птушку ў самым левым слупку.",
"3 - Information (less)": "3 - Інфармацыя (менш)",
"3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. Пасля выбару пакетаў знайдзіце і націсніце \"{0}\" на панэлі інструментаў.",
"4 - Information (more)": "4 - Інфармацыя (больш)",
"4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Вашы пакеты будуць дададзены ў набор. Можна працягваць дадаваць пакеты або экспартаваць набор.",
"5 - information (debug)": "5 - Інфармацыя (адладка)",
"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>": "Папулярны мэнэджар бібліятэк C/C++. Мноства бібліятэк і ўтыліт C/C++<br>Змяшчае: <b>Бібліятэкі і ўтыліты C/C++</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>": "Рэпазітарый інструментаў і выканальных файлаў для экасістэмы Microsoft .NET.<br>Змяшчае: <b>Інструменты і сцэнарыі .NET</b>",
"A repository full of tools designed with Microsoft's .NET ecosystem in mind.<br>Contains: <b>.NET related Tools</b>": "Рэпазітарый інструментаў, распрацаваных для экасістэмы Microsoft .NET.<br>Змяшчае: <b>Інструменты .NET</b>",
"A restart is required": "Патрабуецца перазапуск",
"Abort install if pre-install command fails": "Скасаваць устаноўку ў выпадку памылкі ў падрыхтоўчай камандзе",
"Abort uninstall if pre-uninstall command fails": "Скасаваць выдаленне ў выпадку памылкі ў падрыхтоўчай камандзе",
"Abort update if pre-update command fails": "Скасаваць абнауленне ў выпадку памылкі ў падрыхтоўчай камандзе",
"About": "Аб праграме",
"About Qt6": "Аб Qt6",
"About WingetUI": "Аб UniGetUI",
"About WingetUI version {0}": "Аб UniGetUI версіі {0}",
"About the dev": "Інфармацыя пра распрацоўніка",
"Accept": "Прыняць",
"Action when double-clicking packages, hide successful installations": "Дзеянне пры двайным кліку па пакетах, хаваць паспяховыя ўстаноўкі",
"Add": "Дадаць",
"Add a source to {0}": "Дадаць крыніцу ў {0}",
"Add a timestamp to the backup file names": "Дабаўляць адзнаку часу ў назвы файлаў рэзервовай копіі",
"Add a timestamp to the backup files": "Дабаўляць адзнаку часу ў рэзервовыя файлы",
"Add packages or open an existing bundle": "Дадаць пакеты або адкрыць існы набор",
"Add packages or open an existing package bundle": "Дадаць пакеты або адкрыць набор пакетаў",
"Add packages to bundle": "Дадаць пакеты ў набор",
"Add packages to start": "Дадайце пакеты каб пачаць",
"Add selection to bundle": "Дадаць выбраныя ў набор",
"Add source": "Дадаць крыніцу",
"Add updates that fail with a 'no applicable update found' to the ignored updates list": "Дадаваць абнаўленні з памылкай 'няма адпаведнага абнаўлення' у спіс ігнараваных",
"Adding source {source}": "Дадаецца крыніца {source}",
"Adding source {source} to {manager}": "Дадаецца крыніца {source} у {manager}",
"Addition succeeded": "Дабаўленне завершана ўдала",
"Administrator privileges": "Паўнамоцтвы адміністратара",
"Administrator privileges preferences": "Налады паўнамоцтваў адміністратара",
"Administrator rights": "Правы адміністратара",
"Administrator rights and other dangerous settings": "Правы адміністратара і іншыя небяспечныя налады",
"Advanced options": "Дадатковыя налады",
"All files": "Усе файлы",
"All versions": "Усе версіі",
"Allow changing the paths for package manager executables": "Дазволіць змяняць шляхі для выканальных файлаў менеджара пакетаў",
"Allow custom command-line arguments": "Дазволіць ўвод уласных аргументаў каманднага радка",
"Allow importing custom command-line arguments when importing packages from a bundle": "Дазволіць імпарт уласных аргументаў каманднага радка пры імпарце пакетаў з набору",
"Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Дазволіць імпарт перад- і паслякамандаў пры імпарце з набора",
"Allow package operations to be performed in parallel": "Дазволіць паралельныя аперацыі з пакетамі",
"Allow parallel installs (NOT RECOMMENDED)": "Дазволіць паралельныя ўсталёўкі (НЕ РЭКАМЕНДУЕЦЦА)",
"Allow pre-release versions": "Дазволіць папярэднія версіі",
"Allow {pm} operations to be performed in parallel": "Дазволіць паралельныя аперацыі {pm}",
"Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Таксама можна ўсталяваць {0} праз наступную каманду ў PowerShell:",
"Always elevate {pm} installations by default": "Заўсёды падымаць прывілеі для {pm}",
"Always run {pm} operations with administrator rights": "Заўсёды запускаць {pm} з правамі адміністратара",
"An error occurred": "Адбылася памылка",
"An error occurred when adding the source: ": "Памылка пры даданні крыніцы: ",
"An error occurred when attempting to show the package with Id {0}": "Памылка пры паказе пакета з ID {0}",
"An error occurred when checking for updates: ": "Памылка пры праверцы абнаўленняў: ",
"An error occurred while attempting to create an installation script:": "Памылка пры стварэнні скрыпту ўсталявання:",
"An error occurred while loading a backup: ": "Памылка пры загрузцы рэзервовай копіі: ",
"An error occurred while logging in: ": "Памылка ўваходу: ",
"An error occurred while processing this package": "Памылка апрацоўкі гэтага пакета",
"An error occurred:": "Адбылася памылка:",
"An interal error occurred. Please view the log for further details.": "Унутраная памылка. Прагледзьце журнал для падрабязнасцей.",
"An unexpected error occurred:": "Нечаканая памылка:",
"An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Нечаканая праблема пры спробе аднавіць WinGet. Паспрабуйце пазней",
"An update was found!": "Знойдзена абнаўленне!",
"Android Subsystem": "Падсістэма Android",
"Another source": "Іншая крыніца",
"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.": "Новыя ярлыкі, створаныя падчас усталявання або абнаўлення, будуць аўтаматычна выдалены без пацвярджэння.",
"Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Ярлыкі, створаныя або змененыя па-за UniGetUI, будуць ігнаравацца. Можна дадаць іх праз кнопку {0}.",
"Any unsaved changes will be lost": "Незахаваныя змены будуць страчаныя",
"App Name": "Назва праграмы",
"Appearance": "Выгляд",
"Application theme, startup page, package icons, clear successful installs automatically": "Тэма, стартавая старонка, іконкі пакетаў, аўтаачыстка ўдалых аперацый",
"Application theme:": "Тэма праграммы:",
"Apply": "Ужыць",
"Architecture to install:": "Архітэктура для ўсталявання:",
"Are these screenshots wron or blurry?": "Скрыншоты няправільныя або размытыя?",
"Are you really sure you want to enable this feature?": "Сапраўды ўключыць гэтую функцыю?",
"Are you sure you want to create a new package bundle? ": "Стварыць новы набор пакетаў? ",
"Are you sure you want to delete all shortcuts?": "Выдаліць усе ярлыкі?",
"Are you sure?": "Вы ўпэўнены?",
"Ascendant": "Па ўзрастанні",
"Ask for administrator privileges once for each batch of operations": "Запытваць правы адміністратара адзін раз на партыю аперацый",
"Ask for administrator rights when required": "Пытаць правы адміністратара па меры патрэбы",
"Ask once or always for administrator rights, elevate installations by default": "Запыт разавы або заўсёды, падымаць прывілеі па змаўчанні",
"Ask only once for administrator privileges": "Запытаць толькі раз",
"Ask only once for administrator privileges (not recommended)": "Запытаць толькі раз (не рэкамендуецца)",
"Ask to delete desktop shortcuts created during an install or upgrade.": "Пытаць аб выдаленні ярлыкоў, створаных падчас усталявання/абнаўлення.",
"Attention required": "Патрабуецца ўвага",
"Authenticate to the proxy with an user and a password": "Аўтарызавацца на проксі з лагінам і паролем",
"Author": "Аўтар",
"Automatic desktop shortcut remover": "Аўтавылучэнне ярлыкоў на працоўным стале",
"Automatic updates": "Аўтаабнаўленні",
"Automatically save a list of all your installed packages to easily restore them.": "Аўтаматычна захоўваць спіс усталяваных пакетаў для хуткага аднаўлення.",
"Automatically save a list of your installed packages on your computer.": "Захоўваць спіс усталяваных пакетаў на камп'ютары.",
"Automatically update this package": "Аўтаматычна абнаўляць гэты пакет",
"Autostart WingetUI in the notifications area": "Аўтазапуск UniGetUI у вобласці паведамленняў",
"Available Updates": "Даступныя абнаўленні",
"Available updates: {0}": "Даступна абнаўленняў: {0}",
"Available updates: {0}, not finished yet...": "Даступна абнаўленняў: {0}, яшчэ не скончана...",
"Backing up packages to GitHub Gist...": "Адпраўка рэзервовай копіі пакетаў у GitHub Gist...",
"Backup": "Рэзервовае капіраванне",
"Backup Failed": "Памылка стварэння рэзервовай копіі",
"Backup Successful": "Рэзервовая копія створана ўдала",
"Backup and Restore": "Копія і аднаўленне",
"Backup installed packages": "Стварыць рэзервовыя копіі усталяваных пакетаў",
"Backup location": "Размяшчэнне рэзервовая копіі",
"Become a contributor": "Стаць удзельнікам",
"Become a translator": "Стаць перакладчыкам",
"Begin the process to select a cloud backup and review which packages to restore": "Пачаць выбар воблачнай копіі і перагляд пакетаў для аднаўлення",
"Beta features and other options that shouldn't be touched": "Бэта-функцыі і іншыя рызыкоўныя налады",
"Both": "Назва і ID пакета",
"Bundle security report": "Справаздача бяспекі набора",
"But here are other things you can do to learn about WingetUI even more:": "Існуюць і іншыя спосабы даведацца пра UniGetUI яшчэ больш:",
"By toggling a package manager off, you will no longer be able to see or update its packages.": "Адключыўшы мэнэджар, вы не ўбачыце і не зможаце абнаўляць яго пакеты.",
"Cache administrator rights and elevate installers by default": "Кэшаваць правы і падымаць усталёўкі па змаўчанні",
"Cache administrator rights, but elevate installers only when required": "Кэшаваць правы, падымаць толькі пры неабходнасці",
"Cache was reset successfully!": "Кэш паспяхова ачышчаны!",
"Can't {0} {1}": "Немагчыма {0} {1}",
"Cancel": "Скасаваць",
"Cancel all operations": "Скасаваць усе аперацыі",
"Change backup output directory": "Змяніць каталог для рэзервовай копіі",
"Change default options": "Змяніць налады па змаўчанні",
"Change how UniGetUI checks and installs available updates for your packages": "Змяніць як UniGetUI правярае і ўсталёўвае абнаўленні",
"Change how UniGetUI handles install, update and uninstall operations.": "Змяніць як UniGetUI апрацоўвае ўсталяванні, абнаўленні і выдаленні.",
"Change how UniGetUI installs packages, and checks and installs available updates": "Змяніць усталяванне і праверку абнаўленняў у UniGetUI",
"Change how operations request administrator rights": "Змяніць спосаб запыту правоў адміністратара",
"Change install location": "Змяніць месца ўсталявання",
"Change this": "Змяніць гэта",
"Change this and unlock": "Змяніць і разблакаваць",
"Check for package updates periodically": "Перыядычна правяраць абнаўленні пакетаў",
"Check for updates": "Праверыць абнаўленні",
"Check for updates every:": "Правяраць абнаўленні кожныя:",
"Check for updates periodically": "Правяраць абнаўленні перыядычна",
"Check for updates regularly, and ask me what to do when updates are found.": "Рэгулярна правяраць і пытаць дзеянне пры знаходжанні абнаўленняў.",
"Check for updates regularly, and automatically install available ones.": "Рэгулярна правяраць і аўтаматычна ўсталёўваць абнаўленні.",
"Check out my {0} and my {1}!": "Паглядзіце мой {0} і мой {1}!",
"Check out some WingetUI overviews": "Азнаёмцеся з аглядамі UniGetUI",
"Checking for other running instances...": "Праверка іншых запушчаных асобнікаў...",
"Checking for updates...": "Праверка абнаўленняў...",
"Checking found instace(s)...": "Праверка знойдзеных асобнікаў...",
"Choose how many operations shouls be performed in parallel": "Абярыце колькі аперацый выконваць паралельна",
"Clear cache": "Ачысціць кэш",
"Clear finished operations": "Ачысціць завершаныя аперацыі",
"Clear selection": "Ачысціць выбар",
"Clear successful operations": "Ачысціць удалыя аперацыі",
"Clear successful operations from the operation list after a 5 second delay": "Выдаляць удалыя аперацыі праз 5 секунд",
"Clear the local icon cache": "Ачысціць лакальны кэш ікон",
"Clearing Scoop cache - WingetUI": "Ачыстка кэша Scoop - UniGetUI",
"Clearing Scoop cache...": "Ачыстка кэша Scoop...",
"Click here for more details": "Падрабязнасці тут",
"Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Націсніце Усталяваць, каб пачаць. Калі прапусціце, UniGetUI можа працаваць некарэктна.",
"Close": "Закрыць",
"Close UniGetUI to the system tray": "Згарнуць UniGetUI у трэй",
"Close WingetUI to the notification area": "Згарнуць UniGetUI ў вобласць паведамленняў",
"Cloud backup uses a private GitHub Gist to store a list of installed packages": "Воблачная копія выкарыстоўвае прыватны GitHub Gist для спісу ўсталяваных пакетаў",
"Cloud package backup": "Воблачная копія пакетаў",
"Command-line Output": "Вывад каманднага радка",
"Command-line to run:": "Каманда для запуску:",
"Compare query against": "Параўнаць запыт з",
"Compatible with authentication": "Сумяшчальна з аўтэнтыфікацыяй",
"Compatible with proxy": "Сумяшчальна з проксі",
"Component Information": "Звесткі пра кампанент",
"Concurrency and execution": "Паралелізм і выкананне",
"Connect the internet using a custom proxy": "Злучацца праз уласны проксі",
"Continue": "Працягнуць",
"Contribute to the icon and screenshot repository": "Дапамагчы з базай ікон і скрыншотаў",
"Contributors": "Удзельнікі",
"Copy": "Капіяваць",
"Copy to clipboard": "Капіяваць у буфер",
"Could not add source": "Немагчыма дадаць крыніцу",
"Could not add source {source} to {manager}": "Немагчыма дадаць крыніцу {source} у {manager}",
"Could not back up packages to GitHub Gist: ": "Немагчыма зрабіць рэзервовую копію ў GitHub Gist: ",
"Could not create bundle": "Немагчыма стварыць набор",
"Could not load announcements - ": "Немагчыма загрузіць паведамленні - ",
"Could not load announcements - HTTP status code is $CODE": "Немагчыма загрузіць паведамленні - код HTTP $CODE",
"Could not remove source": "Немагчыма выдаліць крыніцу",
"Could not remove source {source} from {manager}": "Немагчыма выдаліць {source} з {manager}",
"Could not remove {source} from {manager}": "Немагчыма выдаліць {source} з {manager}",
"Create .ps1 script": "Стварыць .ps1 скрыпт",
"Credentials": "Уліковыя даныя",
"Current Version": "Бягучая версія",
"Current executable file:": "Бягучы выканальны файл:",
"Current status: Not logged in": "Статус: не ўвайшлі",
"Current user": "Бягучы карыстальнік",
"Custom arguments:": "Уласныя аргументы:",
"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.": "Уласныя аргументы могуць змяніць працэс усталявання/абнаўлення/выдалення. Будзьце асцярожныя - гэта можа сапсаваць пакеты.",
"Custom command-line arguments:": "Уласныя аргументы каманднага радка:",
"Custom install arguments:": "Уласныя аргументы ўсталявання:",
"Custom uninstall arguments:": "Уласныя аргументы выдалення:",
"Custom update arguments:": "Уласныя аргументы абнаўлення:",
"Customize WingetUI - for hackers and advanced users only": "Наладзіць UniGetUI (для дасведчаных карыстальнікаў)",
"DEBUG BUILD": "АДЛАДАЧНАЯ ЗБОРКА",
"DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "АДМОВА: АЎТАРЫ НЕ НЯСУЦЬ АДКАЗНАСЦІ ЗА ЗАГРУЖАНЫЯ ПАКЕТЫ. УСТАЛЯЙЦЕ ТОЛЬКІ ДАВЕРАНЫ СОФТ.",
"Dark": "Цёмная",
"Decline": "Адхіліць",
"Default": "Па змаўчанні",
"Default installation options for {0} packages": "Параметры ўсталявання па змаўчанні для пакетаў {0}",
"Default preferences - suitable for regular users": "Налады па змаўчанні - для большасці карыстальнікаў",
"Default vcpkg triplet": "Трыплет vcpkg па змаўчанні",
"Delete?": "Выдаліць?",
"Dependencies:": "Залежнасці:",
"Descendant": "Па змяншэнні",
"Description:": "Апісанне:",
"Desktop shortcut created": "Створаны ярлык на працоўным стале",
"Details of the report:": "Падрабязнасці справаздачы:",
"Developing is hard, and this application is free. But if you liked the application, you can always <b>buy me a coffee</b> :)": "Распрацоўка — справа нялёгкая, а гэтая праграма — бясплатная. Але калі яна вам прыйшлася да густу, заўсёды можна <b>падтрымаць кавай</b> :)",
"Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Падвойны клік па \"{discoveryTab}\" - адразу ўсталёўваць (без інфармацыі)",
"Disable new share API (port 7058)": "Адключыць новы Share API (порт 7058)",
"Disable the 1-minute timeout for package-related operations": "Адключыць 1-хвілінны таймаўт аперацый",
"Disabled": "Адключана",
"Disclaimer": "Адмова ад адказнасці",
"Discover Packages": "Пошук пакетаў",
"Discover packages": "Пошук пакетаў",
"Distinguish between\nuppercase and lowercase": "Распазнаваць\nрэгістр",
"Distinguish between uppercase and lowercase": "Адрозніваць вялікія і малыя літары",
"Do NOT check for updates": "НЕ правяраць абнаўленні",
"Do an interactive install for the selected packages": "Інтэрактыўнае ўсталяванне абраных пакетаў",
"Do an interactive uninstall for the selected packages": "Інтэрактыўнае выдаленне абраных пакетаў",
"Do an interactive update for the selected packages": "Інтэрактыўнае абнаўленне абраных пакетаў",
"Do not automatically install updates when the battery saver is on": "Не ўсталёўваць аўтаабнаўленні пры рэжыме эканоміі",
"Do not automatically install updates when the device runs on battery": "Не ўсталёўваць аўтаабнаўленні пры працы ад батарэі",
"Do not automatically install updates when the network connection is metered": "Не ўсталёўваць аўтаабнаўленні пры лімітаванавай сетцы",
"Do not download new app translations from GitHub automatically": "Не сцягваць новыя пераклады аўтаматычна",
"Do not ignore updates for this package anymore": "Больш не ігнараваць абнаўленні гэтага пакета",
"Do not remove successful operations from the list automatically": "Не выдаляць удалыя аперацыі аўтаматычна",
"Do not show this dialog again for {0}": "Больш не паказваць гэта акно на {0}",
"Do not update package indexes on launch": "Не абнаўляць індэксы пры запуску",
"Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Пагаджаецеся на збор ананімнай статыстыкі для паляпшэння UX?",
"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.": "Ці карысны вам UniGetUI? Можна падтрымаць распрацоўку для яе развіцця.",
"Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Ці карысны UniGetUI? Жадаеце падтрымаць? Можна {0} - гэта вельмі дапамагае!",
"Do you really want to reset this list? This action cannot be reverted.": "Скід спісу незваротны. Працягнуць?",
"Do you really want to uninstall the following {0} packages?": "Выдаліць наступныя {0} пакетаў?",
"Do you really want to uninstall {0} packages?": "Выдаліць {0} пакетаў?",
"Do you really want to uninstall {0}?": "Выдаліць {0}?",
"Do you want to restart your computer now?": "Перазапусціць камп'ютар зараз?",
"Do you want to translate WingetUI to your language? See how to contribute <a style=\"color:{0}\" href=\"{1}\"a>HERE!</a>": "Жадаеце перакласці UniGetUI? Інструкцыя <a style=\"color:{0}\" href=\"{1}\"a>ТУТ!</a>",
"Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Няма магчымасці ахвяраваць? Проста раскажыце сябрам пра UniGetUI.",
"Donate": "Падтрымаць",
"Done!": "Гатова!",
"Download failed": "Спампоўка не ўдалася",
"Download installer": "Спампаваць усталёўшчык",
"Download operations are not affected by this setting": "На спампоўкі гэта не ўплывае",
"Download selected installers": "Спампаваць выбраныя ўсталёўшчыкі",
"Download succeeded": "Спампоўванне завершана ўдала",
"Download updated language files from GitHub automatically": "Аўтаспампоўка абноўленых файлаў мовы з GitHub",
"Downloading": "Спампоўка",
"Downloading backup...": "Спампоўка рэзервовай копіі...",
"Downloading installer for {package}": "Спампоўка ўсталёўшчыка для {package}",
"Downloading package metadata...": "Спампоўка метаданых пакета...",
"Enable Scoop cleanup on launch": "Уключыць ачыстку Scoop пры запуску",
"Enable WingetUI notifications": "Уключыць апавяшчэнні UniGetUI",
"Enable an [experimental] improved WinGet troubleshooter": "Уключыць [эксперыментальны] палепшаны сродак выпраўлення WinGet",
"Enable and disable package managers, change default install options, etc.": "Уключэнне / выключэнне мэнэджараў пакетаў, змена параметраў усталявання па змаўчанні і інш.",
"Enable background CPU Usage optimizations (see Pull Request #3278)": "Уключыць аптымізацыю выкарыстання CPU у фоне (гл. Pull Request #3278)",
"Enable background api (WingetUI Widgets and Sharing, port 7058)": "Уключыць фонавы API (віджэты і абмен UniGetUI, порт 7058)",
"Enable it to install packages from {pm}.": "Уключыце, каб усталёўваць пакеты з {pm}.",
"Enable the automatic WinGet troubleshooter": "Уключыць аўтаматычны сродак выпраўлення WinGet",
"Enable the new UniGetUI-Branded UAC Elevator": "Уключыць новы UAC UniGetUI Elevator",
"Enable the new process input handler (StdIn automated closer)": "Уключыць новы апрацоўшчык StdIn (аўтаматычнае закрыццё)",
"Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Уключайце ніжэйшыя параметры ТОЛЬКІ калі разумееце іх наступствы і рызыкі.",
"Enable {pm}": "Уключыць {pm}",
"Enabled": "Уключана",
"Enter proxy URL here": "Увядзіце URL проксі тут",
"Entries that show in RED will be IMPORTED.": "Радкі ЧЫРВОНАГА колеру будуць ІМПАРТАВАНЫ.",
"Entries that show in YELLOW will be IGNORED.": "Радкі ЖОЎТАГА колеру будуць ІГНАРАВАНЫ.",
"Error": "Памылка",
"Everything is up to date": "Усё актуальна",
"Exact match": "Дакладнае супадзенне",
"Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Існыя ярлыкі на працоўным стале будуць прасканіраваны; выберыце, якія пакінуць, а якія выдаліць.",
"Expand version": "Разгарнуць версію",
"Experimental settings and developer options": "Эксперыментальныя і распрацоўніцкія налады",
"Export": "Экспарт",
"Export log as a file": "Экспартаваць лог у файл",
"Export packages": "Экспартаваць пакеты",
"Export selected packages to a file": "Экспартаваць выбраныя пакеты ў файл",
"Export settings to a local file": "Экспартаваць налады ў лакальны файл",
"Export to a file": "Экспартаваць у файл",
"Failed": "Няўдала",
"Fetching available backups...": "Атрыманне даступных рэзервовых копій...",
"Fetching latest announcements, please wait...": "Атрыманне апошніх аб'яў, пачакайце...",
"Filters": "Фільтры",
"Finish": "Гатова",
"Follow system color scheme": "Сачыць за сістэмнай колеравай схемай",
"Follow the default options when installing, upgrading or uninstalling this package": "Выкарыстоўваць налады па змаўчанні для ўсталявання/абнаўлення/выдалення гэтага пакета",
"For security reasons, changing the executable file is disabled by default": "З меркаванняў бяспекі змена выканальнага файла адключана па змаўчанні",
"For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "З меркаванняў бяспекі ўласныя аргументы адключаны. Змяніце ў наладах бяспекі UniGetUI.",
"For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "З меркаванняў бяспекі перад- і пасляскрыпты адключаны. Змяніце ў наладах бяспекі UniGetUI.",
"Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Прымусіць ARM-версію winget (УВАГА: толькі для ARM64)",
"Force install location parameter when updating packages with custom locations": "Прымусова выкарыстоўваць параметр месца ўсталявання пры абнаўленні пакетаў з карыстальніцкімі шляхамі",
"Formerly known as WingetUI": "Раней вядомы як WingetUI",
"Found": "Знойдзена",
"Found packages: ": "Знойдзена пакетаў: ",
"Found packages: {0}": "Знойдзена пакетаў: {0}",
"Found packages: {0}, not finished yet...": "Знойдзена пакетаў: {0}, яшчэ не скончана...",
"General preferences": "Агульныя налады",
"GitHub profile": "Профіль GitHub",
"Global": "Глабальна",
"Go to UniGetUI security settings": "Адкрыць налады бяспекі UniGetUI",
"Great repository of unknown but useful utilities and other interesting packages.<br>Contains: <b>Utilities, Command-line programs, General Software (extras bucket required)</b>": "Выдатны рэпазітарый карысных утыліт і цікавых пакетаў.<br>Змяшчае: <b>Утыліты, камандныя праграмы, праграмнае забеспячэнне (патрабуецца extras bucket)</b>",
"Great! You are on the latest version.": "Вы выкарыстоўваеце апошнюю версію.",
"Grid": "Сетка",
"Help": "Дапамога",
"Help and documentation": "Дапамога і дакументацыя",
"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": "Тут можна змяніць паводзіны адносна ярлыкоў. Адзначаныя ярлыкі будуць аўтавыдалены пры будучых абнаўленнях, іншыя будуць захаваны.",
"Hi, my name is Martí, and i am the <i>developer</i> of WingetUI. WingetUI has been entirely made on my free time!": "Вітаю! Я Martí - <i>распрацоўнік</i> UniGetUI. Праект створаны ў вольны час!",
"Hide details": "Схаваць падрабязнасці",
"Homepage": "Хатняя старонка",
"Hooray! No updates were found.": "Нарэшце! Абнаўленняў не знойдзена.",
"How should installations that require administrator privileges be treated?": "Як абыходзіцца з усталяваннямі, што патрабуюць правы адміністратара?",
"How to add packages to a bundle": "Як дадаць пакеты ў набор",
"I understand": "Я разумею",
"Icons": "Іконкі",
"Id": "ID",
"If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Калі ўключана воблачная копія, яна захоўваецца як GitHub Gist гэтага акаўнта",
"Ignore custom pre-install and post-install commands when importing packages from a bundle": "Дазволіць выкананне карыстальніцкіх каманд перад і пасля ўсталявання пры імпарце пакетаў з набору",
"Ignore future updates for this package": "Ігнараваць будучыя абнаўленні пакета",
"Ignore packages from {pm} when showing a notification about updates": "Ігнараваць пакеты з {pm} у апавяшчэннях пра абнаўленні",
"Ignore selected packages": "Ігнараваць выбраныя пакеты",
"Ignore special characters": "Ігнараваць спецзнакі",
"Ignore updates for the selected packages": "Ігнараваць абнаўленні для выбраных пакетаў",
"Ignore updates for this package": "Ігнараваць абнаўленні гэтага пакета",
"Ignored updates": "Ігнараваныя абнаўленні",
"Ignored version": "Ігнараваная версія",
"Import": "Імпарт",
"Import packages": "Імпартаваць пакеты",
"Import packages from a file": "Імпартаваць пакеты з файла",
"Import settings from a local file": "Імпартаваць налады з лакальнага файла",
"In order to add packages to a bundle, you will need to: ": "Каб дадаць пакеты ў набор неабходна: ",
"Initializing WingetUI...": "Ініцыялізацыя UniGetUI...",
"Install": "Усталяваць",
"Install Scoop": "Усталяваць Scoop",
"Install and more": "Усталяваць і яшчэ",
"Install and update preferences": "Налады ўсталявання і абнаўлення",
"Install as administrator": "Усталяваць як адміністратар",
"Install available updates automatically": "Аўтаматычна ўсталёўваць даступныя абнаўленні",
"Install location can't be changed for {0} packages": "Месца ўсталявання нельга змяніць для пакетаў {0}",
"Install location:": "Месца ўсталявання:",
"Install options": "Параметры ўсталявання",
"Install packages from a file": "Усталяваць пакеты з файла",
"Install prerelease versions of UniGetUI": "Усталёўваць перадрэлізныя версіі UniGetUI",
"Install script": "Скрыпт усталявання",
"Install selected packages": "Усталяваць выбраныя пакеты",
"Install selected packages with administrator privileges": "Усталяваць выбраныя пакеты з правамі адміністратара",
"Install selection": "Усталяваць выбранае",
"Install the latest prerelease version": "Усталяваць апошнюю перадрэлізную версію",
"Install updates automatically": "Аўтаабнаўленне пакетаў",
"Install {0}": "Усталяваць {0}",
"Installation canceled by the user!": "Усталяванне скасавана карыстальнікам!",
"Installation failed": "Усталяванне не ўдалося",
"Installation options": "Параметры ўсталявання",
"Installation scope:": "Ахоп усталявання:",
"Installation succeeded": "Усталяванне завершана ўдала",
"Installed Packages": "Усталяваныя пакеты",
"Installed Version": "Усталяваная версія",
"Installed packages": "Усталяваныя пакеты",
"Installer SHA256": "SHA256 усталёўшчыка",
"Installer SHA512": "SHA512 усталёўшчыка",
"Installer Type": "Тып усталёўшчыка",
"Installer URL": "URL усталёўшчыка",
"Installer not available": "Усталёўшчык недаступны",
"Instance {0} responded, quitting...": "Асобнік {0} адказаў, выхад...",
"Instant search": "Імгненны пошук",
"Integrity checks can be disabled from the Experimental Settings": "Праверкі цэласнасці можна адключыць у эксперыментальных наладах",
"Integrity checks skipped": "Праверкі цэласнасці прапушчаны",
"Integrity checks will not be performed during this operation": "Праверкі цэласнасці не будуць выконвацца для гэтай аперацыі",
"Interactive installation": "Інтэрактыўнае ўсталяванне",
"Interactive operation": "Інтэрактыўная аперацыя",
"Interactive uninstall": "Інтэрактыўнае выдаленне",
"Interactive update": "Інтэрактыўнае абнаўленне",
"Internet connection settings": "Налады падключэння да Інтэрнэту",
"Invalid selection": "Няправільны выбар",
"Is this package missing the icon?": "У гэтага пакета няма іконкі?",
"Is your language missing or incomplete?": "Вашай мовы няма або яна няпоўная?",
"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": "Няма гарантый бяспечнага захавання ўліковых даных - не выкарыстоўвайце важныя (банкаўскія) даныя",
"It is recommended to restart UniGetUI after WinGet has been repaired": "Рэкамендуецца перазапусціць UniGetUI пасля рамонту WinGet",
"It is strongly recommended to reinstall UniGetUI to adress the situation.": "Настойліва раім перавсталяваць UniGetUI для вырашэння праблемы.",
"It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Падобна 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.": "Праграма запушчана з правамі адміністратара - гэта не рэкамендуецца. Вы можаце працягваць, але лепш запускаць без правоў. Націсніце \"{showDetails}\" каб даведацца чаму.",
"Language": "Мова",
"Language, theme and other miscellaneous preferences": "Мова, тэма і іншыя налады",
"Last updated:": "Апошняе абнаўленне:",
"Latest": "Апошняя",
"Latest Version": "Апошняя версія",
"Latest Version:": "Апошняя версія:",
"Latest details...": "Апошнія падрабязнасці...",
"Launching subprocess...": "Запуск падпрацэсу...",
"Leave empty for default": "Пакіньце пустым для значэння па змаўчанні",
"License": "Ліцэнзія",
"Licenses": "Ліцэнзіі",
"Light": "Светлая",
"List": "Спіс",
"Live command-line output": "Вывад каманднага радка ў рэжыме рэальнага часу",
"Live output": "Жывы вывад",
"Loading UI components...": "Загрузка кампанентаў інтэрфейсу...",
"Loading WingetUI...": "Загрузка UniGetUI...",
"Loading packages": "Загрузка пакетаў",
"Loading packages, please wait...": "Загрузка пакетаў, пачакайце...",
"Loading...": "Загрузка...",
"Local": "Лакальна",
"Local PC": "Мясцовы ПК",
"Local backup advanced options": "Пашыраныя параметры лакальнага рэзерву",
"Local machine": "Машына (глабальна)",
"Local package backup": "Лакальнае рэзерваванне пакетаў",
"Locating {pm}...": "Пошук {pm}...",
"Log in": "Увайсці",
"Log in failed: ": "Памылка ўваходу: ",
"Log in to enable cloud backup": "Увайдзіце, каб уключыць воблачную копію",
"Log in with GitHub": "Увайсці праз GitHub",
"Log in with GitHub to enable cloud package backup.": "Увайдзіце праз GitHub, каб уключыць воблачную копію пакетаў.",
"Log level:": "Узровень лагавання:",
"Log out": "Выйсці",
"Log out failed: ": "Не ўдалося выйсці: ",
"Log out from GitHub": "Выйсці з GitHub",
"Looking for packages...": "Пошук пакетаў...",
"Machine | 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": "Няправільныя аргументы каманднага радка могуць пашкодзіць пакеты або нават дазволіць злоўмысніку атрымаць прывілеяваны доступ. Таму імпарт карыстальніцкіх аргументаў каманднага радка па змаўчанні адключаны.",
"Manage": "Кіраванне",
"Manage UniGetUI settings": "Рэгуляваць налады UniGetUI",
"Manage WingetUI autostart behaviour from the Settings app": "Рэгуляваць аўтазапуск UniGetUI у наладах сістэмы",
"Manage ignored packages": "Рэгуляваць ігнараваныя пакеты",
"Manage ignored updates": "Рэгуляваць ігнараваныя абнаўленні",
"Manage shortcuts": "Рэгуляваць цэтлікі",
"Manage telemetry settings": "Рэгуляваць тэлеметрыю",
"Manage {0} sources": "Рэгуляваць {0} крыніцы",
"Manifest": "Маніфест",
"Manifests": "Маніфесты",
"Manual scan": "Ручное сканаванне",
"Microsoft's official package manager. Full of well-known and verified packages<br>Contains: <b>General Software, Microsoft Store apps</b>": "Афіцыйны мэнэджар пакетаў Microsoft. Мноства вядомых правераных пакетаў<br>Змяшчае: <b>Праграмы агульнага прызначэння, праграмы з Microsoft Store</b>",
"Missing dependency": "Адсутнічае залежнасць",
"More": "Болей",
"More details": "Больш падрабязнасцей",
"More details about the shared data and how it will be processed": "Больш пра даные і іх апрацоўку",
"More info": "Больш інфармацыі",
"More than 1 package was selected": "Выбрана больш за адзін пакет",
"NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "ЗАЎВАГА: гэты сродак можна адключыць у наладах UniGetUI (раздзел WinGet)",
"Name": "Назва",
"New": "Новы",
"New Version": "Новая версія",
"New bundle": "Новы набор",
"New version": "Новая версія",
"Nice! Backups will be uploaded to a private gist on your account": "Цудоўна! Рэзервовыя копіі будуць загружаныя ў прыватны gist вашага акаўнта",
"No": "Не",
"No applicable installer was found for the package {0}": "Не знойдзена адпаведнага ўсталёўшчыка для пакета {0}",
"No dependencies specified": "Залежнасці не зададзены",
"No new shortcuts were found during the scan.": "Падчас сканавання новых ярлыкоў не знойдзена.",
"No package was selected": "Не выбрана ніводнага пакета",
"No packages found": "Пакеты не знойдзены",
"No packages found matching the input criteria": "Па крытэрыях нічога не знойдзена",
"No packages have been added yet": "Пакеты яшчэ не дададзены",
"No packages selected": "Пакеты не выбраны",
"No packages were found": "Пакеты не былі знойдзены",
"No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Асабістыя даныя не збіраюцца; усё ананімізавана і не прывязана да вас",
"No results were found matching the input criteria": "Няма вынікаў па крытэрыях",
"No sources found": "Крыніц не знойдзена",
"No sources were found": "Крыніцы не знойдзены",
"No updates are available": "Няма даступных абнаўленняў",
"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. Бібліятэкі і ўтыліты JS<br>Змяшчае: <b>JS бібліятэкі і ўтыліты</b>",
"Not available": "Недаступна",
"Not finding the file you are looking for? Make sure it has been added to path.": "Не знаходзіце файл? Праверце, што шлях дададзены ў PATH.",
"Not found": "Не знойдзена",
"Not right now": "Не цяпер",
"Notes:": "Заўвагі:",
"Notification preferences": "Налады апавяшчэнняў",
"Notification tray options": "Параметры трэя",
"Notification types": "Тыпы апавяшчэнняў",
"NuPkg (zipped manifest)": "NuPkg (заціснуты маніфест)",
"OK": "OK",
"Ok": "Ok",
"Open": "Адкрыць",
"Open GitHub": "Адкрыць GitHub",
"Open UniGetUI": "Адкрыць UniGetUI",
"Open UniGetUI security settings": "Адкрыць налады бяспекі UniGetUI",
"Open WingetUI": "Адкрыць UniGetUI",
"Open backup location": "Адкрыць каталог рэзерву",
"Open existing bundle": "Адкрыць існы набор",
"Open install location": "Адкрыць месца ўсталявання",
"Open the welcome wizard": "Адкрыць майстар вітаньня",
"Operation canceled by user": "Аперацыя скасавана карыстальнікам",
"Operation cancelled": "Аперацыя скасавана",
"Operation history": "Гісторыя аперацый",
"Operation in progress": "Аперацыя выконваецца",
"Operation on queue (position {0})...": "Аперацыя ў чарзе (пазіцыя {0})...",
"Operation profile:": "Профіль аперацыі:",
"Options saved": "Налады захаваны",
"Order by:": "Упарадкаванне:",
"Other": "Іншае",
"Other settings": "Іншыя налады",
"Package": "Пакет",
"Package Bundles": "Наборы пакетаў",
"Package ID": "ID пакета",
"Package Manager": "Мэнэджар пакетаў",
"Package Manager logs": "Логі мэнэджара пакетаў",
"Package Managers": "Мэнэджары пакетаў",
"Package Name": "Назва пакета",
"Package backup": "Рэзерваванне пакетаў",
"Package backup settings": "Налады рэзервовай копіі пакетаў",
"Package bundle": "Набор пакетаў",
"Package details": "Падрабязнасці пакета",
"Package lists": "Спісы пакетаў",
"Package management made easy": "Кіраванне пакетамі стала прасцей",
"Package manager": "Мэнэджар пакетаў",
"Package manager preferences": "Налады мэнэджара пакетаў",
"Package managers": "Мэнэджары пакетаў",
"Package not found": "Пакет не знойдзены",
"Package operation preferences": "Налады аперацый пакетаў",
"Package update preferences": "Налады абнаўлення пакетаў",
"Package {name} from {manager}": "Пакет {name} з {manager}",
"Package's default": "Па змаўчанні пакета",
"Packages": "Пакеты",
"Packages found: {0}": "Знойдзена пакетаў: {0}",
"Partially": "Часткова",
"Password": "Пароль",
"Paste a valid URL to the database": "Устаўце карэктны URL базы",
"Pause updates for": "Прыпыніць абнаўленні на",
"Perform a backup now": "Стварыць рэзервовую копію зараз",
"Perform a cloud backup now": "Стварыць воблачную копію зараз",
"Perform a local backup now": "Стварыць лакальную копію зараз",
"Perform integrity checks at startup": "Правяраць цэласнасць пры запуску",
"Performing backup, please wait...": "Стварэнне рэзерву, пачакайце...",
"Periodically perform a backup of the installed packages": "Перыядычна ствараць рэзервовую копію усталяваных пакетаў",
"Periodically perform a cloud backup of the installed packages": "Перыядычна ствараць воблачную копію спіса ўсталяваных пакетаў",
"Periodically perform a local backup of the installed packages": "Перыядычна ствараць лакальную копію пакетаў",
"Please check the installation options for this package and try again": "Праверце параметры ўсталявання гэтага пакета і паўторыце",
"Please click on \"Continue\" to continue": "Націсніце \"Працягнуць\" каб працягнуць",
"Please enter at least 3 characters": "Увядзіце мінімум 3 сімвалы",
"Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Пэўныя пакеты нельга ўсталяваць з-за адключаных мэнэджараў на гэтай машыне.",
"Please note that not all package managers may fully support this feature": "Не ўсе мэнэджары пакетаў падтрымліваюць гэтую функцыю",
"Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Звярніце ўвагу, што пакеты з некаторых крыніц могуць быць недаступныя для экспарту. Яны пазначаны шэрым колерам і не будуць экспартаваныя.",
"Please run UniGetUI as a regular user and try again.": "Запусціце UniGetUI як звычайны карыстальнік і паспрабуйце зноў.",
"Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Глядзіце вывад каманднага радка або звярніцеся да гісторыі аперацый, каб атрымаць больш звестак пра праблему.",
"Please select how you want to configure WingetUI": "Абярыце спосаб канфігурацыі UniGetUI",
"Please try again later": "Паспрабуйце пазней",
"Please type at least two characters": "Увядзіце як мінімум два сімвалы",
"Please wait": "Пачакайце",
"Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Пачакайце пакуль усталёўваецца {0}. Можа з'явіцца чорнае (ці сіняе) акно. Пачакайце пакуль яно закрыецца.",
"Please wait...": "Пачакайце...",
"Portable": "Партатыўны",
"Portable mode": "Партатыўны рэжым",
"Post-install command:": "Каманда пасля ўсталявання:",
"Post-uninstall command:": "Каманда пасля выдалення:",
"Post-update command:": "Каманда пасля абнаўлення:",
"PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities<br>Contains: <b>Modules, Scripts, Cmdlets</b>": "Мэнэджар пакетаў PowerShell. Бібліятэкі і скрыпты для пашырэння<br>Змяшчае: <b>Модулі, скрыпты, Cmdlet</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 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-install command:": "Каманда перад усталяваннем:",
"Pre-uninstall command:": "Каманда перад выдаленнем:",
"Pre-update command:": "Каманда перад абнаўленнем:",
"PreRelease": "Перадрэліз",
"Preparing packages, please wait...": "Падрыхтоўка пакетаў, пачакайце...",
"Proceed at your own risk.": "Працягвайце на ўласную рызыку.",
"Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Забараніць павышэнне прывілеяў праз UniGetUI Elevator або GSudo",
"Proxy URL": "URL проксі",
"Proxy compatibility table": "Табліца сумяшчальнасці проксі",
"Proxy settings": "Налады проксі",
"Proxy settings, etc.": "Налады проксі і інш.",
"Publication date:": "Дата публікацыі:",
"Publisher": "Выдавец",
"Python's library manager. Full of python libraries and other python-related utilities<br>Contains: <b>Python libraries and related utilities</b>": "Мэнэджар бібліятэк Python. Бібліятэкі і ўтыліты Python<br>Змяшчае: <b>Бібліятэкі і ўтыліты Python</b>",
"Quit": "Выхад",
"Quit WingetUI": "Выйсці з UniGetUI",
"Ready": "Гатова",
"Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Менш UAC акон, падняцце правоў па змаўчанні, разблакаванне рызыкоўных функцый",
"Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Глядзіце логі UniGetUI для падрабязнасцей пра файл(ы)",
"Reinstall": "Пераўсталяваць",
"Reinstall package": "Пераўсталяваць пакет",
"Related settings": "Звязаныя налады",
"Release notes": "Нататкі выпуску",
"Release notes URL": "URL нататак выпуску",
"Release notes URL:": "URL нататак выпуску:",
"Release notes:": "Нататкі выпуску:",
"Reload": "Перазагрузіць",
"Reload log": "Перазагрузіць лог",
"Removal failed": "Выдаленне не ўдалося",
"Removal succeeded": "Выдаленне завершана ўдала",
"Remove from list": "Выдаліць са спісу",
"Remove permanent data": "Выдаліць пастаянныя даныя",
"Remove selection from bundle": "Выдаліць выбранае з набора",
"Remove successful installs/uninstalls/updates from the installation list": "Выдаляць удалыя ўсталяванні/выдаленні/абнаўленні са спісу",
"Removing source {source}": "Выдаленне крыніцы {source}",
"Removing source {source} from {manager}": "Выдаленне {source} з {manager}",
"Repair UniGetUI": "Аднавіць UniGetUI",
"Repair WinGet": "Аднавіць WinGet",
"Report an issue or submit a feature request": "Паведаміць пра памылку або прапанаваць функцыю",
"Repository": "Рэпазітарый",
"Reset": "Скід",
"Reset Scoop's global app cache": "Скінуць глабальны кэш Scoop",
"Reset UniGetUI": "Скінуць UniGetUI",
"Reset WinGet": "Скінуць WinGet",
"Reset Winget sources (might help if no packages are listed)": "Скінуць крыніцы WinGet (калі няма пакетаў)",
"Reset WingetUI": "Скінуць UniGetUI",
"Reset WingetUI and its preferences": "Скінуць UniGetUI і яго налады",
"Reset WingetUI icon and screenshot cache": "Скінуць кэш ікон і скрыншотаў UniGetUI",
"Reset list": "Скінуць спіс",
"Resetting Winget sources - WingetUI": "Скід крыніц WinGet - UniGetUI",
"Restart": "Перазапуск",
"Restart UniGetUI": "Перазапусціць UniGetUI",
"Restart WingetUI": "Перазапусціць UniGetUI",
"Restart WingetUI to fully apply changes": "Перазапусціце UniGetUI для прымянення змен",
"Restart later": "Перазапусціць пазней",
"Restart now": "Перазапусціць зараз",
"Restart required": "Патрабуецца перазапуск",
"Restart your PC to finish installation": "Перазапусціце ПК для завяршэння ўсталявання",
"Restart your computer to finish the installation": "Перазапусціце камп'ютар для завяршэння ўсталявання",
"Restore a backup from the cloud": "Аднавіць з воблачная копіі",
"Restrictions on package managers": "Абмежаванні для мэнэджараў пакетаў",
"Restrictions on package operations": "Абмежаванні аперацый пакетаў",
"Restrictions when importing package bundles": "Абмежаванні імпарту набораў",
"Retry": "Паўтарыць",
"Retry as administrator": "Паўтарыць як адміністратар",
"Retry failed operations": "Паўтарыць няўдалыя аперацыі",
"Retry interactively": "Паўтарыць інтэрактыўна",
"Retry skipping integrity checks": "Паўтарыць без праверкі цэласнасці",
"Retrying, please wait...": "Паўтор, пачакайце...",
"Return to top": "Уверх",
"Run": "Запусціць",
"Run as admin": "Запусціць як адміністратар",
"Run cleanup and clear cache": "Ачысціць і скінуць кэш",
"Run last": "Запусціць апошнім",
"Run next": "Запусціць наступным",
"Run now": "Запусціць цяпер",
"Running the installer...": "Запуск усталёўшчыка...",
"Running the uninstaller...": "Запуск выдалення...",
"Running the updater...": "Запуск абнаўлення...",
"Save": "Захаваць",
"Save File": "Захаваць файл",
"Save and close": "Захаваць і закрыць",
"Save as": "Захаваць як",
"Save bundle as": "Захаваць набор як",
"Save now": "Захаваць цяпер",
"Saving packages, please wait...": "Захаванне пакетаў, пачакайце...",
"Scoop Installer - WingetUI": "Усталёўшчык Scoop - UniGetUI",
"Scoop Uninstaller - WingetUI": "Выдаленне Scoop - UniGetUI",
"Scoop package": "Пакет Scoop",
"Search": "Пошук",
"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>": "Шукаць праграмы працоўнага стала, папярэджваць пра абнаўленні. Хачу простую <b>краму праграм</b>",
"Search for packages": "Пошук пакетаў",
"Search for packages to start": "Пачніце з пошуку пакетаў",
"Search mode": "Рэжым пошуку",
"Search on available updates": "Шукаць у даступных абнаўленнях",
"Search on your software": "Шукаць у вашых праграмах",
"Searching for installed packages...": "Пошук усталяваных пакетаў...",
"Searching for packages...": "Пошук пакетаў...",
"Searching for updates...": "Пошук абнаўленняў...",
"Select": "Абраць",
"Select \"{item}\" to add your custom bucket": "Абярыце \"{item}\" каб дадаць уласны bucket",
"Select a folder": "Абраць папку",
"Select all": "Абраць усё",
"Select all packages": "Абраць усе пакеты",
"Select backup": "Абраць рэзервовую копію",
"Select only <b>if you know what you are doing</b>.": "Абірайце толькі <b>калі дакладна ведаеце што робіце</b>.",
"Select package file": "Абраць файл пакета",
"Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Абярыце копію, якую хочаце загрузіць. Пазней будзе магчымасць вызначыць, якія пакеты аднавіць.",
"Select the executable to be used. The following list shows the executables found by UniGetUI": "Абярыце выканальны файл. Ніжэй спіс знойдзеных UniGetUI файлаў",
"Select the processes that should be closed before this package is installed, updated or uninstalled.": "Абярыце працэсы, якія трэба закрыць перад усталяваннем/абнаўленнем/выдаленнем пакета.",
"Select the source you want to add:": "Абярыце крыніцу для дадання:",
"Select upgradable packages by default": "Абраць абнаўляльныя пакеты па змаўчанні",
"Select which <b>package managers</b> to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Абярыце якія <b>мэнэджары пакетаў</b> выкарыстоўваць ({0}), наладзьце ўсталяванні і правы адміністратара і г.д.",
"Sent handshake. Waiting for instance listener's answer... ({0}%)": "Адпраўлены handshake. Чаканне адказу асобніка... ({0}%)",
"Set a custom backup file name": "Задаць уласную назву файла рэзерву",
"Set custom backup file name": "Уласная назва файла рэзерву",
"Settings": "Налады",
"Share": "Падзяліцца",
"Share WingetUI": "Падзяліцца UniGetUI",
"Share anonymous usage data": "Дзяліцца ананімнымі данымі выкарыстання",
"Share this package": "Падзяліцца пакетам",
"Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Пасля змены налад бяспекі зноў адкрыйце набор для прымянення.",
"Show UniGetUI on the system tray": "Паказваць UniGetUI у сістэмным трэі",
"Show UniGetUI's version and build number on the titlebar.": "Паказваць версію UniGetUI ў загалоўку",
"Show WingetUI": "Паказаць UniGetUI",
"Show a notification when an installation fails": "Паказваць апавяшчэнне пры памылцы ўсталявання",
"Show a notification when an installation finishes successfully": "Паказваць апавяшчэнне пра ўдалае ўсталяванне",
"Show a notification when an operation fails": "Паказваць апавяшчэнне пры няўдалай аперацыі",
"Show a notification when an operation finishes successfully": "Паказваць апавяшчэнне пра ўдалую аперацыю",
"Show a notification when there are available updates": "Паказваць апавяшчэнне пра даступныя абнаўленні",
"Show a silent notification when an operation is running": "Паказваць ціхае апавяшчэнне падчас аперацыі",
"Show details": "Паказаць падрабязнасці",
"Show in explorer": "Паказаць у провадніку",
"Show info about the package on the Updates tab": "Паказваць звесткі пра пакет на ўкладцы Абнаўленні",
"Show missing translation strings": "Паказваць адсутныя радкі перакладу",
"Show notifications on different events": "Паказваць апавяшчэнні пры розных падзеях",
"Show package details": "Паказаць падрабязнасці пакета",
"Show package icons on package lists": "Паказваць іконкі ў спісах",
"Show similar packages": "Паказаць падобныя пакеты",
"Show the live output": "Паказаць жывы вывад",
"Size": "Памер",
"Skip": "Прапусціць",
"Skip hash check": "Прапусціць праверку хэша",
"Skip hash checks": "Прапускаць праверкі хэша",
"Skip integrity checks": "Прапусціць праверку цэласнасці",
"Skip minor updates for this package": "Прапускаць дробныя абнаўленні для пакета",
"Skip the hash check when installing the selected packages": "Прапусціць праверку хэша пры ўсталяванні абраных пакетаў",
"Skip the hash check when updating the selected packages": "Прапусціць праверку хэша пры абнаўленні абраных пакетаў",
"Skip this version": "Прапусціць гэтую версію",
"Software Updates": "Абнаўленні",
"Something went wrong": "Нешта пайшло не так",
"Something went wrong while launching the updater.": "Памылка пры запуску абнаўлення.",
"Source": "Крыніца",
"Source URL:": "URL крыніцы:",
"Source added successfully": "Крыніца паспяхова дададзена",
"Source addition failed": "Не ўдалося дадаць крыніцу",
"Source name:": "Назва крыніцы:",
"Source removal failed": "Не ўдалося выдаліць крыніцу",
"Source removed successfully": "Крыніца паспяхова выдалена",
"Source:": "Крыніца:",
"Sources": "Крыніцы",
"Start": "Пачаць",
"Starting daemons...": "Запуск службаў...",
"Starting operation...": "Запуск аперацыі...",
"Startup options": "Параметры запуску",
"Status": "Статус",
"Stuck here? Skip initialization": "Завісла? Прапусціць ініцыялізацыю",
"Success!": "Поспех!",
"Suport the developer": "Падтрымаць распрацоўніка",
"Support me": "Падтрымаць мяне",
"Support the developer": "Падтрымаць распрацоўніка",
"Systems are now ready to go!": "Сістэма гатовая да працы!",
"Telemetry": "Тэлеметрыя",
"Text": "Тэкст",
"Text file": "Тэкставы файл",
"Thank you ❤": "Дзякуй ❤",
"Thank you \uD83D\uDE09": "Дзякуй \uD83D\uDE09",
"The Rust package manager.<br>Contains: <b>Rust libraries and programs written in Rust</b>": "Мэнэджар пакетаў Rust.<br>Змяшчае: <b>Бібліятэкі і праграмы на Rust</b>",
"The backup will NOT include any binary file nor any program's saved data.": "Рэзервовая копію НЕ ўключае ні бінарныя файлы ні даныя праграм.",
"The backup will be performed after login.": "Рэзервовая копію будзе створаны пасля ўваходу.",
"The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "Рэзервовая копія утрымлівае спіс усталяваных пакетаў і іх параметры. Таксама ігнараваныя абнаўленні і прапушчаныя версіі.",
"The bundle was created successfully on {0}": "Набор паспяхова створаны ў {0}",
"The bundle you are trying to load appears to be invalid. Please check the file and try again.": "Набор, які вы адкрываеце, хібны. Праверце файл і паўторыце.",
"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.": "Хэш усталёўшчыка не супадае з чаканым, сапраўднасць не пацверджана. Калі давяраеце, {0} пакет з прапускам хэша.",
"The classical package manager for windows. You'll find everything there. <br>Contains: <b>General Software</b>": "Класічны мэнэджар пакетаў для Windows. Тут ёсць усё.<br>Змяшчае: <b>Праграмы агульнага прызначэння</b>",
"The cloud backup completed successfully.": "Воблачная копію паспяхова створана.",
"The cloud backup has been loaded successfully.": "Воблачная копію паспяхова загружана.",
"The current bundle has no packages. Add some packages to get started": "У наборы няма пакетаў. Дадайце некалькі для пачатку",
"The executable file for {0} was not found": "Выканальны файл {0} не знойдзены",
"The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "Наступныя параметры па змаўчанні для кожнага ўсталявання/абнаўлення/выдалення пакета {0}.",
"The following packages are going to be exported to a JSON file. No user data or binaries are going to be saved.": "Наступныя пакеты будуць экспартаваны ў JSON. Даныя і бінары не захоўваюцца.",
"The following packages are going to be installed on your system.": "Наступныя пакеты будуць усталяваны.",
"The following settings may pose a security risk, hence they are disabled by default.": "Наступныя налады рызыкоўныя - адключаны па змаўчанні.",
"The following settings will be applied each time this package is installed, updated or removed.": "Наступныя налады прымяняюцца для кожнага ўсталявання/абнаўлення/выдалення пакета.",
"The following settings will be applied each time this package is installed, updated or removed. They will be saved automatically.": "Наступныя налады будуць прымяняцца і аўтаматычна захоўвацца.",
"The icons and screenshots are maintained by users like you!": "Іконкі і скрыншоты падтрымліваюцца такімі ж карыстальнікамі як вы!",
"The installation script saved to {0}": "Скрыпт усталявання захаваны ў {0}",
"The installer authenticity could not be verified.": "Нельга пацвердзіць сапраўднасць усталёўшчыка.",
"The installer has an invalid checksum": "Усталёўшчык мае хібны хэш",
"The installer hash does not match the expected value.": "Хэш усталёўшчыка не супадае з чаканым.",
"The local icon cache currently takes {0} MB": "Лакальны кэш ікон займае {0} МБ",
"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.": "Мэта праекта - інтуітыўны UI для кіравання CLI-мэнэджарамі (Winget, Scoop і інш.)",
"The package \"{0}\" was not found on the package manager \"{1}\"": "Пакет \"{0}\" не знойдзены ў мэнэджары \"{1}\"",
"The package bundle could not be created due to an error.": "Немагчыма стварыць набор пакетаў з-за памылкі.",
"The package bundle is not valid": "Набор пакетаў несапраўдны",
"The package manager \"{0}\" is disabled": "Мэнэджар \"{0}\" адключаны",
"The package manager \"{0}\" was not found": "Мэнэджар \"{0}\" не знойдзены",
"The package {0} from {1} was not found.": "Пакет {0} з {1} не знойдзены.",
"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.": "Пакеты ў спісе ігнаруюцца пры праверцы абнаўленняў. Падвойны клік або кнопка справа - спыніць ігнараванне.",
"The selected packages have been blacklisted": "Абраныя пакеты занесены ў чорны спіс",
"The settings will list, in their descriptions, the potential security issues they may have.": "Апісанні налад паказваюць магчымыя рызыкі бяспекі.",
"The size of the backup is estimated to be less than 1MB.": "Памер рэзерву меркавана менш за 1 МБ.",
"The source {source} was added to {manager} successfully": "Крыніца {source} паспяхова дададзена ў {manager}",
"The source {source} was removed from {manager} successfully": "Крыніца {source} паспяхова выдалена з {manager}",
"The system tray icon must be enabled in order for notifications to work": "Для апавяшчэнняў трэба уключыць значок у трэі",
"The update process has been aborted.": "Працэс абнаўлення спынены.",
"The update process will start after closing UniGetUI": "Абнаўленне пачнецца пасля закрыцця UniGetUI",
"The update will be installed upon closing WingetUI": "Абнаўленне будзе ўсталявана пасля закрыцця UniGetUI",
"The update will not continue.": "Абнаўленне не працягнецца.",
"The user has canceled {0}, that was a requirement for {1} to be run": "Карыстальнік скасаваў {0}, што было патрэбна для запуску {1}",
"There are no new UniGetUI versions to be installed": "Новых версій UniGetUI няма",
"There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "Ёсць актыўныя аперацыі. Выхад можа выклікаць іх памылку. Працягнуць?",
"There are some great videos on YouTube that showcase WingetUI and its capabilities. You could learn useful tricks and tips!": "На YouTube ёсць відэа пра UniGetUI - можна даведацца карысныя парады!",
"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.": "Дзве прычыны не запускаць UniGetUI як адміністратар:\n1) Scoop можа працаваць некарэктна.\n2) Усе пакеты будуць запускацца з павышанымі правамі - небяспечна.\nКалі трэба - пстрыкніце правай кнопкай і абярыце патрэбную аперацыю як адміністратар.",
"There is an error with the configuration of the package manager \"{0}\"": "Памылка канфігурацыі мэнэджара \"{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?": "Ідзе ўсталяванне. Пры закрыцці яно можа зламацца. Выйсці?",
"They are the programs in charge of installing, updating and removing packages.": "Гэта праграмы для ўсталявання, абнаўлення і выдалення пакетаў.",
"Third-party licenses": "Ліцэнзіі трэціх бакоў",
"This could represent a <b>security risk</b>.": "Гэта можа быць <b>рызыкай бяспекі</b>.",
"This is not recommended.": "Не рэкамендуецца.",
"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}": "Магчыма пакет выдалены або ў мэнэджары, які адключаны. Атрыманны ID {0}",
"This is the <b>default choice</b>.": "Гэта <b>варыянт па змаўчанні</b>.",
"This may help if WinGet packages are not shown": "Можа дапамагчы, калі пакеты WinGet не паказваюцца",
"This may help if no packages are listed": "Можа дапамагчы, калі пакеты не адлюстроўваюцца",
"This may take a minute or two": "Гэта можа заняць хвіліну-другую",
"This operation is running interactively.": "Аперацыя працуе ў інтэрактыўным рэжыме.",
"This operation is running with administrator privileges.": "Аперацыя працуе з правамі адміністратара.",
"This option WILL cause issues. 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.": "Набор меў патэнцыйна небяспечныя налады - яны могуць ігнаравацца.",
"This package can be updated": "Пакет можна абнавіць",
"This package can be updated to version {0}": "Пакет можна абнавіць да версіі {0}",
"This package can be upgraded to version {0}": "Пакет можна абнавіць да версіі {0}",
"This package cannot be installed from an elevated context.": "Пакет нельга ўсталяваць з павышанага кантэксту.",
"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.": "Няма ікон або скрыншотаў? Дадайце іх у публічную базу UniGetUI.",
"This package is already installed": "Пакет ужо ўсталяваны",
"This package is being processed": "Пакет апрацоўваецца",
"This package is not available": "Пакет недаступны",
"This package is on the queue": "Пакет у чарзе",
"This process is running with administrator privileges": "Працэс працуе з правамі адміністратара",
"This project has no connection with the official {0} project — it's completely unofficial.": "Гэта цалкам неафіцыйны праект. Ён не мае сувязі з афіцыйным праектам {0}.",
"This setting is disabled": "Гэта налада адключана",
"This wizard will help you configure and customize WingetUI!": "Майстар дапаможа наладзіць UniGetUI!",
"Toggle search filters pane": "Паказаць/схаваць панэль фільтраў",
"Translators": "Перакладчыкі",
"Try to kill the processes that refuse to close when requested to": "Паспрабаваць забіць працэсы, якія не закрываюцца",
"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": "Уключэнне дазваляе змяняць выканальны файл для мэнэджараў - гнутка, але небяспечна",
"Type here the name and the URL of the source you want to add, separed by a space.": "Увядзіце назву і URL крыніцы праз прагал.",
"Unable to find package": "Не атрымалася знайсці пакет",
"Unable to load informarion": "Не атрымалася загрузіць інфармацыю",
"UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI збірае ананімныя даныя для паляпшэння UX.",
"UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI збірае ананімныя даныя толькі дзеля паляпшэння UX.",
"UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "Выяўлены новы ярлык - можна аўтаматычна выдаліць.",
"UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "Знойдзены ярлыкі, якія можна аўтаматычна выдаляць у будучыні",
"UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "Выяўлена {0} новых ярлыкоў для аўтавылучэння.",
"UniGetUI is being updated...": "UniGetUI абнаўляецца...",
"UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI не звязаны ні з адным з мэнэджараў - незалежны праект.",
"UniGetUI on the background and system tray": "UniGetUI у фоне і трэі",
"UniGetUI or some of its components are missing or corrupt.": "UniGetUI або яго кампаненты адсутнічаюць/пашкоджаны.",
"UniGetUI requires {0} to operate, but it was not found on your system.": "Для працы патрабуецца {0}, але яго не знойдзена.",
"UniGetUI startup page:": "Стартавая старонка UniGetUI:",
"UniGetUI updater": "Абнаўляльнік UniGetUI",
"UniGetUI version {0} is being downloaded.": "Спампоўваецца UniGetUI версіі {0}.",
"UniGetUI {0} is ready to be installed.": "UniGetUI {0} гатовы да ўсталявання.",
"Uninstall": "Выдаліць",
"Uninstall Scoop (and its packages)": "Выдаліць Scoop (і яго пакеты)",
"Uninstall and more": "Выдаліць і яшчэ",
"Uninstall and remove data": "Выдаліць і даныя",
"Uninstall as administrator": "Выдаліць як адміністратар",
"Uninstall canceled by the user!": "Выдаленне скасавана карыстальнікам!",
"Uninstall failed": "Выдаленне не ўдалося",
"Uninstall options": "Параметры выдалення",
"Uninstall package": "Выдаліць пакет",
"Uninstall package, then reinstall it": "Выдаліць і пераўсталяваць",
"Uninstall package, then update it": "Выдаліць і абнавіць",
"Uninstall previous versions when updated": "Выдаляць старыя версіі пры абнаўленні",
"Uninstall selected packages": "Выдаліць выбраныя пакеты",
"Uninstall selection": "Выдаліць выбранае",
"Uninstall succeeded": "Выдаленне завершана ўдала",
"Uninstall the selected packages with administrator privileges": "Выдаліць абраныя пакеты з правамі адміністратара",
"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.": "Пакеты з паходжаннем \"{0}\" не апублікаваны ў мэнэджарах - інфармацыі няма.",
"Unknown": "Невядома",
"Unknown size": "Невядомы памер",
"Unset or unknown": "Не зададзена / невядома",
"Up to date": "Актуальна",
"Update": "Абнавіць",
"Update WingetUI automatically": "Аўтаабнаўляць UniGetUI",
"Update all": "Абнавіць усё",
"Update and more": "Абнавіць і яшчэ",
"Update as administrator": "Абнавіць як адміністратар",
"Update check frequency, automatically install updates, etc.": "Частата праверкі, аўтаабнаўленні і інш.",
"Update checking": "Праверка абнаўленняў",
"Update date": "Дата абнаўлення",
"Update failed": "Абнаўленне не ўдалося",
"Update found!": "Знойдзена абнаўленне!",
"Update now": "Абнавіць зараз",
"Update options": "Параметры абнаўлення",
"Update package indexes on launch": "Абнаўляць індэксы пры запуску",
"Update packages automatically": "Аўтаабнаўляць пакеты",
"Update selected packages": "Абнавіць выбраныя пакеты",
"Update selected packages with administrator privileges": "Абнавіць выбраныя пакеты з правамі адміністратара",
"Update selection": "Абнавіць выбранае",
"Update succeeded": "Абнаўленне завершана ўдала",
"Update to version {0}": "Абнавіць да версіі {0}",
"Update to {0} available": "Даступна абнаўленне да {0}",
"Update vcpkg's Git portfiles automatically (requires Git installed)": "Аўтаабнаўляць portfiles vcpkg (патрабуе Git)",
"Updates": "Абнаўленні",
"Updates available!": "Ёсць абнаўленні!",
"Updates for this package are ignored": "Абнаўленні гэтага пакета ігнаруюцца",
"Updates found!": "Знойдзены абнаўленні!",
"Updates preferences": "Налады абнаўленняў",
"Updating WingetUI": "Абнаўленне UniGetUI",
"Url": "URL-адрас",
"Use Legacy bundled WinGet instead of PowerShell CMDLets": "Выкарыстаць старую ўбудаваную WinGet замест PowerShell Cmdlets",
"Use a custom icon and screenshot database URL": "Уласны URL базы ікон і скрыншотаў",
"Use bundled WinGet instead of PowerShell CMDlets": "Убудаваны WinGet замест PowerShell Cmdlets",
"Use bundled WinGet instead of system WinGet": "Убудаваны WinGet замест сістэмнага",
"Use installed GSudo instead of UniGetUI Elevator": "Выкарыстоўваць усталяваны GSudo замест Elevator",
"Use installed GSudo instead of the bundled one": "Выкарыстоўваць усталяваны GSudo замест убудаванага",
"Use legacy UniGetUI Elevator (disable AdminByRequest support)": "Стары Elevator UniGetUI (можа дапамагчы пры праблемах)",
"Use system Chocolatey": "Выкарыстоўваць сістэмны Chocolatey",
"Use system Chocolatey (Needs a restart)": "Сістэмны Chocolatey (патрабуе перазапуск)",
"Use system Winget (Needs a restart)": "Сістэмны WinGet (патрабуе перазапуск)",
"Use system Winget (System language must be set to english)": "Выкарыстаць WinGet (мовай сістэмы мусіць быць English)",
"Use the WinGet COM API to fetch packages": "Выкарыстаць WinGet COM API для атрымання пакетаў",
"Use the WinGet PowerShell Module instead of the WinGet COM API": "Выкарыстаць WinGet PowerShell Module замест COM API",
"Useful links": "Карысныя спасылкі",
"User": "Карыстальнік",
"User interface preferences": "Налады інтэрфейсу",
"User | Local": "Карыстальнік | Лакальна",
"Username": "Імя карыстальніка",
"Using WingetUI implies the acceptation of the GNU Lesser General Public License v2.1 License": "Выкарыстанне UniGetUI азначае прыняцце LGPL v2.1",
"Using WingetUI implies the acceptation of the MIT License": "Выкарыстанне UniGetUI азначае прыняцце ліцэнзіі MIT",
"Vcpkg root was not found. Please define the %VCPKG_ROOT% environment variable or define it from UniGetUI Settings": "Не знойдзены корань vcpkg. Вызначце %VCPKG_ROOT% або ў наладах UniGetUI",
"Vcpkg was not found on your system.": "Vcpkg не знойдзены ў сістэме.",
"Verbose": "Падрабязна",
"Version": "Версія",
"Version to install:": "Версія для ўсталявання:",
"Version:": "Версія:",
"View GitHub Profile": "Прагляд профілю GitHub",
"View WingetUI on GitHub": "Прагляд UniGetUI на GitHub",
"View WingetUI's source code. From there, you can report bugs or suggest features, or even contribute direcly to The WingetUI Project": "Прагледзьце зыходны код UniGetUI - там можна паведаміць пра памылкі, прапанаваць функцыі або ўнесці ўклад",
"View mode:": "Рэжым прагляду:",
"View on UniGetUI": "Прагляд у UniGetUI",
"View page on browser": "Адкрыць у браўзеры",
"View {0} logs": "Прагляд логаў {0}",
"Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Чакаць злучэння з інтэрнэтам перад сеткавымі задачамі",
"Waiting for other installations to finish...": "Чаканне завяршэння іншых усталяванняў...",
"Waiting for {0} to complete...": "Чаканне завяршэння {0}...",
"Warning": "Папярэджанне",
"Warning!": "Увага!",
"We are checking for updates.": "Ідзе праверка абнаўленняў.",
"We could not load detailed information about this package, because it was not found in any of your package sources": "Не атрымалася загрузіць падрабязнасці, пакет не быў знойдзены ў вашых крыніцах.",
"We could not load detailed information about this package, because it was not installed from an available package manager.": "Не атрымалася загрузіць падрабязнасці, пакет не быў усталяваны з даступнага мэнэджара пакетаў.",
"We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the installer.": "Не атрымалася {action} {package}. Паўтарыце пазней. Націсніце \"{showDetails}\" для логаў усталёўшчыка.",
"We could not {action} {package}. Please try again later. Click on \"{showDetails}\" to get the logs from the uninstaller.": "Не атрымалася {action} {package}. Паўтарыце пазней. Націсніце \"{showDetails}\" для логаў выдалення.",
"We couldn't find any package": "Не знойдзена ніводнага пакета",
"Welcome to WingetUI": "Вітаем у UniGetUI",
"When batch installing packages from a bundle, install also packages that are already installed": "Пры пакетным усталяванні таксама ўсталёўваць ужо ўсталяваныя пакеты",
"When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Пры выяўленні новых ярлыкоў - выдаляць без дыялогу",
"Which backup do you want to open?": "Якую рэзервовую копію загрузіць?",
"Which package managers do you want to use?": "Якія мэнэджары выкарыстоўваць?",
"Which source do you want to add?": "Якую крыніцу дадаць?",
"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.": "WinGet можна выкарыстоўваць у UniGetUI, але UniGetUI таксама працуе з іншымі - гэта можа бянтэжыць. Раней быў толькі WinGet, цяпер праект шырэйшы.",
"WinGet could not be repaired": "WinGet не ўдалося аднавіць",
"WinGet malfunction detected": "Выяўлена няспраўнасць WinGet",
"WinGet was repaired successfully": "WinGet паспяхова адноўлены",
"WingetUI": "UniGetUI",
"WingetUI - Everything is up to date": "UniGetUI - Усё актуальна",
"WingetUI - {0} updates are available": "UniGetUI - даступна {0} абнаўленняў",
"WingetUI - {0} {1}": "UniGetUI - {0} {1}",
"WingetUI Homepage": "Сайт UniGetUI",
"WingetUI Homepage - Share this link!": "Сайт UniGetUI - падзяліцеся спасылкай!",
"WingetUI License": "Ліцэнзія UniGetUI",
"WingetUI Log": "Лог UniGetUI",
"WingetUI Repository": "Рэпазітарый UniGetUI",
"WingetUI Settings": "Налады UniGetUI",
"WingetUI Settings File": "Файл налад UniGetUI",
"WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI выкарыстоўвае наступныя бібліятэкі - без іх праект немагчымы.",
"WingetUI Version {0}": "UniGetUI версія {0}",
"WingetUI autostart behaviour, application launch settings": "Аўтазапуск UniGetUI, налады запуску",
"WingetUI can check if your software has available updates, and install them automatically if you want to": "UniGetUI можа правяраць і аўтаматычна ўсталёўваць абнаўленні",
"WingetUI display language:": "Мова інтэрфейсу UniGetUI:",
"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.": "UniGetUI запушчаны як адміністратар - не рэкамендуецца. Усе аперацыі будуць з правамі. Лепш запускаць без іх.",
"WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you \uD83E\uDD1D": "UniGetUI перакладзены на больш чым 40 моў дзякуючы валанцёрам. Дзякуй \uD83E\uDD1D",
"WingetUI has not been machine translated. The following users have been in charge of the translations:": "UniGetUI не машынны пераклад. Перакладчыкі:",
"WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.": "UniGetUI дазваляе лягчэй кіраваць праграмным забеспячэннем праз адзіны графічны інтэрфейс для каманднага радка менеджараў пакетаў.",
"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)": "UniGetUI пераймяноўваецца, каб аддзяліць інтэрфейс ад WinGet (менеджар Microsoft)",
"WingetUI is being updated. When finished, WingetUI will restart itself": "UniGetUI абнаўляецца. Пасля завершання перазапусціцца",
"WingetUI is free, and it will be free forever. No ads, no credit card, no premium version. 100% free, forever.": "UniGetUI бясплатны назаўжды. Без рэкламы і платных версій.",
"WingetUI log": "Лог UniGetUI",
"WingetUI tray application preferences": "Налады трэй-іконкі UniGetUI",
"WingetUI uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI выкарыстоўвае наступныя бібліятэкі - без іх ён немагчымы.",
"WingetUI version {0} is being downloaded.": "Спампоўваецца UniGetUI версіі {0}.",
"WingetUI will become {newname} soon!": "WingetUI хутка стане {newname}!",
"WingetUI will not check for updates periodically. They will still be checked at launch, but you won't be warned about them.": "UniGetUI не будзе перыядычна правяраць абнаўленні. Толькі пры запуску без апавяшчэння.",
"WingetUI will show a UAC prompt every time a package requires elevation to be installed.": "UniGetUI будзе паказваць UAC пры кожным патрабаванні павышэння.",
"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 будзе называцца {newname}. Функцыянал не зменіцца.",
"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!": "UniGetUI немагчыма без нашых аўтараў. Наведайце іх GitHub!",
"WingetUI wouldn't have been possible without the help of the contributors. Thank you all \uD83E\uDD73": "UniGetUI быў бы немагчымы без дапамогі ўсіх удзельнікаў. Дзякуй вам \uD83E\uDD73",
"WingetUI {0} is ready to be installed.": "UniGetUI {0} гатовы да ўсталявання.",
"Write here the process names here, separated by commas (,)": "Упішыце назвы працэсаў праз коску",
"Yes": "Так",
"You are logged in as {0} (@{1})": "Вы ўвайшлі як {0} (@{1})",
"You can change this behavior on UniGetUI security settings.": "Паводзіны можна змяніць у наладах бяспекі UniGetUI.",
"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.": "Можна задаць каманды да і пасля ўсталявання/абнаўлення/выдалення. Запускаюцца ў CMD.",
"You have currently version {0} installed": "Зараз усталявана версія {0}",
"You have installed WingetUI Version {0}": "Вы ўсталявалі UniGetUI версіі {0}",
"You may lose unsaved data": "Можаце страціць незахаваныя даныя",
"You may need to install {pm} in order to use it with WingetUI.": "Магчыма трэба ўсталяваць {pm} для выкарыстання з UniGetUI.",
"You may restart your computer later if you wish": "Можаце перазапусціць камп'ютар пазней",
"You will be prompted only once, and administrator rights will be granted to packages that request them.": "UAC з'явіцца аднойчы; правы будуць выдадзены па запыце",
"You will be prompted only once, and every future installation will be elevated automatically.": "Запыт толькі раз; далей усталяванні з павышэннем",
"You will likely need to interact with the installer.": "Магчыма спатрэбіцца ўзаемадзеянне з усталёўшчыкам.",
"[RAN AS ADMINISTRATOR]": "[ЗАПУСК АДМІНІСТРАТАРА]",
"buy me a coffee": "падайце каву",
"extracted": "распакавана",
"feature": "функцыя",
"formerly WingetUI": "раней WingetUI",
"homepage": "сайт",
"install": "усталяваць",
"installation": "усталяванне",
"installed": "усталявана",
"installing": "усталёўваецца",
"library": "бібліятэка",
"mandatory": "абавязкова",
"option": "параметр",