-
Notifications
You must be signed in to change notification settings - Fork 770
Expand file tree
/
Copy pathlang_gl.json
More file actions
1155 lines (1155 loc) · 104 KB
/
lang_gl.json
File metadata and controls
1155 lines (1155 loc) · 104 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": "Operación en progreso",
"Please wait...": "Agarde...",
"Success!": "Éxito!",
"Failed": "Fallou",
"An error occurred while processing this package": "Produciuse un erro ao procesar este paquete",
"Log in to enable cloud backup": "Inicie sesión para activar a copia de seguranza na nube",
"Backup Failed": "A copia de seguranza fallou",
"Downloading backup...": "Descargando a copia de seguranza...",
"An update was found!": "Atopouse unha actualización!",
"{0} can be updated to version {1}": "{0} pódese actualizar á versión {1}",
"Updates found!": "Atopáronse actualizacións!",
"{0} packages can be updated": "{0} paquetes pódense actualizar",
"You have currently version {0} installed": "Ten instalada actualmente a versión {0}",
"Desktop shortcut created": "Creouse o atallo do escritorio",
"UniGetUI has detected a new desktop shortcut that can be deleted automatically.": "UniGetUI detectou un novo atallo do escritorio que se pode eliminar automaticamente.",
"{0} desktop shortcuts created": "Creáronse {0} atallos do escritorio",
"UniGetUI has detected {0} new desktop shortcuts that can be deleted automatically.": "UniGetUI detectou {0} novos atallos do escritorio que se poden eliminar automaticamente.",
"Are you sure?": "Está seguro?",
"Do you really want to uninstall {0}?": "Realmente quere desinstalar {0}?",
"Do you really want to uninstall the following {0} packages?": "Realmente quere desinstalar os seguintes {0} paquetes?",
"No": "Non",
"Yes": "Si",
"View on UniGetUI": "Ver en UniGetUI",
"Update": "Actualizar",
"Open UniGetUI": "Abrir UniGetUI",
"Update all": "Actualizar todo",
"Update now": "Actualizar agora",
"This package is on the queue": "Este paquete está na cola",
"installing": "instalando",
"updating": "actualizando",
"uninstalling": "desinstalando",
"installed": "instalado",
"Retry": "Reintentar",
"Install": "Instalar",
"Uninstall": "Desinstalar",
"Open": "Abrir",
"Operation profile:": "Perfil da operación:",
"Follow the default options when installing, upgrading or uninstalling this package": "Siga as opcións predeterminadas ao instalar, actualizar ou desinstalar este paquete",
"The following settings will be applied each time this package is installed, updated or removed.": "A seguinte configuración aplicarase cada vez que este paquete se instale, actualice ou elimine.",
"Version to install:": "Versión para instalar:",
"Architecture to install:": "Arquitectura para instalar:",
"Installation scope:": "Ámbito da instalación:",
"Install location:": "Localización da instalación:",
"Select": "Seleccionar",
"Reset": "Restablecer",
"Custom install arguments:": "Argumentos personalizados de instalación:",
"Custom update arguments:": "Argumentos personalizados de actualización:",
"Custom uninstall arguments:": "Argumentos personalizados de desinstalación:",
"Pre-install command:": "Comando previo á instalación:",
"Post-install command:": "Comando posterior á instalación:",
"Abort install if pre-install command fails": "Abortar a instalación se falla o comando previo á instalación",
"Pre-update command:": "Comando previo á actualización:",
"Post-update command:": "Comando posterior á actualización:",
"Abort update if pre-update command fails": "Abortar a actualización se falla o comando previo á actualización",
"Pre-uninstall command:": "Comando previo á desinstalación:",
"Post-uninstall command:": "Comando posterior á desinstalación:",
"Abort uninstall if pre-uninstall command fails": "Abortar a desinstalación se falla o comando previo á desinstalación",
"Command-line to run:": "Liña de ordes para executar:",
"Save and close": "Gardar e pechar",
"General": "Xeral",
"Architecture & Location": "Arquitectura e localización",
"Command-line": "Liña de ordes",
"Pre/Post install": "Pre/Post instalación",
"Run as admin": "Executar como administrador",
"Interactive installation": "Instalación interactiva",
"Skip hash check": "Omitir a comprobación do hash",
"Uninstall previous versions when updated": "Desinstalar as versións anteriores ao actualizar",
"Skip minor updates for this package": "Omitir as actualizacións menores deste paquete",
"Automatically update this package": "Actualizar este paquete automaticamente",
"{0} installation options": "Opcións de instalación de {0}",
"Latest": "Última",
"PreRelease": "Prelanzamento",
"Default": "Predeterminado",
"Manage ignored updates": "Xestionar as actualizacións ignoradas",
"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.": "Os paquetes listados aquí non se terán en conta ao comprobar actualizacións. Faga dobre clic neles ou prema no botón da dereita para deixar de ignorar as súas actualizacións.",
"Reset list": "Restablecer lista",
"Do you really want to reset the ignored updates list? This action cannot be reverted": "Realmente quere restablecer a lista de actualizacións ignoradas? Esta acción non se pode desfacer",
"No ignored updates": "Non hai actualizacións ignoradas",
"Package Name": "Nome do paquete",
"Package ID": "ID do paquete",
"Ignored version": "Versión ignorada",
"New version": "Nova versión",
"Source": "Orixe",
"All versions": "Todas as versións",
"Unknown": "Descoñecido",
"Up to date": "Actualizado",
"Cancel": "Cancelar",
"Administrator privileges": "Privilexios de administrador",
"This operation is running with administrator privileges.": "Esta operación estase executando con privilexios de administrador.",
"Interactive operation": "Operación interactiva",
"This operation is running interactively.": "Esta operación estase executando de forma interactiva.",
"You will likely need to interact with the installer.": "Probablemente terá que interactuar co instalador.",
"Integrity checks skipped": "Omitíronse as comprobacións de integridade",
"Integrity checks will not be performed during this operation.": "Non se realizarán comprobacións de integridade durante esta operación.",
"Proceed at your own risk.": "Continúe baixo a súa responsabilidade.",
"Close": "Pechar",
"Loading...": "Cargando...",
"Installer SHA256": "SHA256 do instalador",
"Homepage": "Páxina principal",
"Author": "Autor",
"Publisher": "Publicador",
"License": "Licenza",
"Manifest": "Manifesto",
"Installer Type": "Tipo de instalador",
"Size": "Tamaño",
"Installer URL": "URL do instalador",
"Last updated:": "Última actualización:",
"Release notes URL": "URL das notas da versión",
"Package details": "Detalles do paquete",
"Dependencies:": "Dependencias:",
"Release notes": "Notas da versión",
"Version": "Versión",
"Install as administrator": "Instalar como administrador",
"Update to version {0}": "Actualizar á versión {0}",
"Installed Version": "Versión instalada",
"Update as administrator": "Actualizar como administrador",
"Interactive update": "Actualización interactiva",
"Uninstall as administrator": "Desinstalar como administrador",
"Interactive uninstall": "Desinstalación interactiva",
"Uninstall and remove data": "Desinstalar e eliminar os datos",
"Not available": "Non dispoñible",
"Installer SHA512": "SHA512 do instalador",
"Unknown size": "Tamaño descoñecido",
"No dependencies specified": "Non se especificaron dependencias",
"mandatory": "obrigatorio",
"optional": "opcional",
"UniGetUI {0} is ready to be installed.": "UniGetUI {0} está listo para instalarse.",
"The update process will start after closing UniGetUI": "O proceso de actualización iniciarase despois de pechar UniGetUI",
"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 executouse como administrador, o que non se recomenda. Ao executar UniGetUI como administrador, TODAS as operacións iniciadas desde UniGetUI terán privilexios de administrador. Aínda pode usar o programa, pero recomendámoslle encarecidamente non executar UniGetUI con privilexios de administrador.",
"Share anonymous usage data": "Compartir datos de uso anónimos",
"UniGetUI collects anonymous usage data in order to improve the user experience.": "UniGetUI recolle datos de uso anónimos para mellorar a experiencia de usuario.",
"Accept": "Aceptar",
"You have installed UniGetUI Version {0}": "Instalou UniGetUI versión {0}",
"Disclaimer": "Exención de responsabilidade",
"UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.": "UniGetUI non está relacionado con ningún dos xestores de paquetes compatibles. UniGetUI é un proxecto independente.",
"UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳",
"UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.": "UniGetUI usa as seguintes bibliotecas. Sen elas, UniGetUI non sería posible.",
"{0} homepage": "Páxina principal de {0}",
"UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝",
"Verbose": "Detallado",
"1 - Errors": "1 - Erros",
"2 - Warnings": "2 - Avisos",
"3 - Information (less)": "3 - Información (menos)",
"4 - Information (more)": "4 - Información (máis)",
"5 - information (debug)": "5 - Información (depuración)",
"Warning": "Aviso",
"The following settings may pose a security risk, hence they are disabled by default.": "Os seguintes axustes poden supoñer un risco de seguranza, polo que están desactivados por defecto.",
"Enable the settings below if and only if you fully understand what they do, and the implications they may have.": "Active os axustes seguintes se e só se entende completamente o que fan e as implicacións que poden ter.",
"The settings will list, in their descriptions, the potential security issues they may have.": "Os axustes indicarán, nas súas descricións, os posibles problemas de seguranza que poden ter.",
"The backup will include the complete list of the installed packages and their installation options. Ignored updates and skipped versions will also be saved.": "A copia de seguranza incluirá a lista completa dos paquetes instalados e as súas opcións de instalación. Tamén se gardarán as actualizacións ignoradas e as versións omitidas.",
"The backup will NOT include any binary file nor any program's saved data.": "A copia de seguranza NON incluirá ningún ficheiro binario nin os datos gardados de ningún programa.",
"The size of the backup is estimated to be less than 1MB.": "Estímase que o tamaño da copia de seguranza será inferior a 1 MB.",
"The backup will be performed after login.": "A copia de seguranza realizarase despois de iniciar sesión.",
"{pcName} installed packages": "Paquetes instalados en {pcName}",
"Current status: Not logged in": "Estado actual: sesión non iniciada",
"You are logged in as {0} (@{1})": "Iniciou sesión como {0} (@{1})",
"Nice! Backups will be uploaded to a private gist on your account": "Xenial! As copias de seguranza cargaranse nun gist privado da súa conta",
"Select backup": "Seleccionar copia de seguranza",
"UniGetUI Settings": "Axustes de UniGetUI",
"Allow pre-release versions": "Permitir versións preliminares",
"Apply": "Aplicar",
"For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this.": "Por motivos de seguranza, os argumentos personalizados da liña de comandos están desactivados por defecto. Vaia aos axustes de seguranza de UniGetUI para cambialo.",
"Go to UniGetUI security settings": "Ir aos axustes de seguranza de UniGetUI",
"The following options will be applied by default each time a {0} package is installed, upgraded or uninstalled.": "As seguintes opcións aplicaranse por defecto cada vez que se instale, actualice ou desinstale un paquete de {0}.",
"Package's default": "Predeterminado do paquete",
"Install location can't be changed for {0} packages": "A localización de instalación non se pode cambiar para os paquetes de {0}",
"The local icon cache currently takes {0} MB": "A caché local de iconas ocupa actualmente {0} MB",
"Username": "Nome de usuario",
"Password": "Contrasinal",
"Credentials": "Credenciais",
"It is not guaranteed that the provided credentials will be stored safely": "Non se garante que as credenciais proporcionadas se almacenen de forma segura",
"Partially": "Parcialmente",
"Package manager": "Xestor de paquetes",
"Compatible with proxy": "Compatible con proxy",
"Compatible with authentication": "Compatible con autenticación",
"Proxy compatibility table": "Táboa de compatibilidade con proxy",
"{0} settings": "Axustes de {0}",
"{0} status": "Estado de {0}",
"Default installation options for {0} packages": "Opcións de instalación predeterminadas para os paquetes de {0}",
"Expand version": "Expandir versión",
"The executable file for {0} was not found": "Non se atopou o ficheiro executable de {0}",
"{pm} is disabled": "{pm} está desactivado",
"Enable it to install packages from {pm}.": "Actíveo para instalar paquetes de {pm}.",
"{pm} is enabled and ready to go": "{pm} está activado e listo para usar",
"{pm} version:": "Versión de {pm}:",
"{pm} was not found!": "Non se atopou {pm}!",
"You may need to install {pm} in order to use it with UniGetUI.": "Pode que necesite instalar {pm} para usalo con UniGetUI.",
"Scoop Installer - UniGetUI": "Instalador de Scoop - UniGetUI",
"Scoop Uninstaller - UniGetUI": "Desinstalador de Scoop - UniGetUI",
"Clearing Scoop cache - UniGetUI": "Limpando a caché de Scoop - UniGetUI",
"Restart UniGetUI to fully apply changes": "Reinicie UniGetUI para aplicar completamente os cambios",
"Restart UniGetUI": "Reiniciar UniGetUI",
"Manage {0} sources": "Xestionar fontes de {0}",
"Add source": "Engadir fonte",
"Add": "Engadir",
"Source name": "Nome da fonte",
"Source URL": "URL da fonte",
"Other": "Outro",
"No minimum age": "Sen antigüidade mínima",
"1 day": "1 día",
"{0} days": "{0} días",
"Custom...": "Personalizado...",
"{0} minutes": "{0} minutos",
"1 hour": "unha hora",
"{0} hours": "{0} horas",
"1 week": "1 semana",
"Supports release dates": "Admite datas de lanzamento",
"Release date support per package manager": "Compatibilidade con datas de lanzamento por xestor de paquetes",
"UniGetUI Version {0}": "Versión de UniGetUI {0}",
"Search for packages": "Buscar paquetes",
"Local": "Local",
"OK": "OK",
"{0} packages were found, {1} of which match the specified filters.": "Atopáronse {0} paquetes, dos que {1} coinciden cos filtros especificados.",
"{0} selected": "{0} seleccionados",
"(Last checked: {0})": "(Última comprobación: {0})",
"Enabled": "Activado",
"Disabled": "Desactivado",
"More info": "Máis información",
"GitHub account": "Conta de GitHub",
"Log in with GitHub to enable cloud package backup.": "Inicia sesión con GitHub para activar a copia de seguridade na nube dos paquetes.",
"More details": "Máis detalles",
"Log in": "Iniciar sesión",
"If you have cloud backup enabled, it will be saved as a GitHub Gist on this account": "Se a copia de seguridade na nube está activada, gardarase como un GitHub Gist nesta conta",
"Log out": "Pechar sesión",
"About UniGetUI": "Acerca de UniGetUI",
"About": "Acerca de",
"Third-party licenses": "Licenzas de terceiros",
"Contributors": "Colaboradores",
"Translators": "Tradutores",
"Manage shortcuts": "Xestionar accesos directos",
"UniGetUI has detected the following desktop shortcuts which can be removed automatically on future upgrades": "UniGetUI detectou os seguintes accesos directos do escritorio que se poden eliminar automaticamente en futuras actualizacións",
"Do you really want to reset this list? This action cannot be reverted.": "Queres realmente restablecer esta lista? Esta acción non se pode desfacer.",
"Open in explorer": "Abrir no explorador",
"Remove from list": "Eliminar da lista",
"When new shortcuts are detected, delete them automatically instead of showing this dialog.": "Cando se detecten novos accesos directos, elimínaos automaticamente en vez de mostrar este diálogo.",
"UniGetUI collects anonymous usage data with the sole purpose of understanding and improving the user experience.": "UniGetUI recolle datos de uso anónimos co único propósito de comprender e mellorar a experiencia de usuario.",
"More details about the shared data and how it will be processed": "Máis detalles sobre os datos compartidos e como se procesarán",
"Do you accept that UniGetUI collects and sends anonymous usage statistics, with the sole purpose of understanding and improving the user experience?": "Aceptas que UniGetUI recolla e envíe estatísticas de uso anónimas, co único propósito de comprender e mellorar a experiencia de usuario?",
"Decline": "Rexeitar",
"No personal information is collected nor sent, and the collected data is anonimized, so it can't be back-tracked to you.": "Non se recolle nin se envía información persoal, e os datos recollidos están anonimizados, polo que non se poden rastrexar ata ti.",
"Toggle navigation panel": "Mostrar ou ocultar o panel de navegación",
"Minimize": "Minimizar",
"Maximize": "Maximizar",
"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 é unha aplicación que facilita a xestión do software, ofrecendo unha interface gráfica todo en un para os xestores de paquetes de liña de comandos.",
"Useful links": "Ligazóns útiles",
"UniGetUI Homepage": "Páxina principal de UniGetUI",
"Report an issue or submit a feature request": "Informar dun problema ou enviar unha solicitude de nova funcionalidade",
"UniGetUI Repository": "Repositorio de UniGetUI",
"View GitHub Profile": "Ver o perfil de GitHub",
"UniGetUI License": "Licenza de UniGetUI",
"Using UniGetUI implies the acceptation of the MIT License": "Usar UniGetUI implica a aceptación da licenza MIT",
"Become a translator": "Convértete en tradutor",
"View page on browser": "Ver a páxina no navegador",
"Copy to clipboard": "Copiar ao portapapeis",
"Export to a file": "Exportar a un ficheiro",
"Log level:": "Nivel de rexistro:",
"Reload log": "Recargar rexistro",
"Export log": "Exportar rexistro",
"UniGetUI Log": "Rexistro de UniGetUI",
"Text": "Texto",
"Change how operations request administrator rights": "Cambiar como as operacións solicitan permisos de administrador",
"Restrictions on package operations": "Restricións nas operacións de paquetes",
"Restrictions on package managers": "Restricións nos xestores de paquetes",
"Restrictions when importing package bundles": "Restricións ao importar lotes de paquetes",
"Ask for administrator privileges once for each batch of operations": "Solicitar privilexios de administrador unha vez por cada lote de operacións",
"Ask only once for administrator privileges": "Solicitar privilexios de administrador só unha vez",
"Prohibit any kind of Elevation via UniGetUI Elevator or GSudo": "Prohibir calquera tipo de elevación mediante UniGetUI Elevator ou GSudo",
"This option WILL cause issues. Any operation incapable of elevating itself WILL FAIL. Install/update/uninstall as administrator will NOT WORK.": "Esta opción CAUSARÁ problemas. Calquera operación que non poida elevarse por si mesma FALLARÁ. Instalar/actualizar/desinstalar como administrador NON FUNCIONARÁ.",
"Allow custom command-line arguments": "Permitir argumentos personalizados da liña de comandos",
"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.": "Os argumentos personalizados da liña de comandos poden cambiar a forma en que se instalan, actualizan ou desinstalan os programas, dun xeito que UniGetUI non pode controlar. O uso de liñas de comandos personalizadas pode causar fallos nos paquetes. Procede con cautela.",
"Ignore custom pre-install and post-install commands when importing packages from a bundle": "Ignorar os comandos personalizados previos e posteriores á instalación ao importar paquetes desde un lote",
"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": "Os comandos previos e posteriores á instalación executaranse antes e despois de que un paquete se instale, actualice ou desinstale. Ten en conta que poden causar problemas se non se usan con coidado",
"Allow changing the paths for package manager executables": "Permitir cambiar as rutas dos executables dos xestores de paquetes",
"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": "Ao activar isto, permítese cambiar o ficheiro executable usado para interactuar cos xestores de paquetes. Aínda que isto permite unha personalización máis detallada dos procesos de instalación, tamén pode ser perigoso",
"Allow importing custom command-line arguments when importing packages from a bundle": "Permitir importar argumentos personalizados da liña de comandos ao importar paquetes desde un lote",
"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": "Os argumentos da liña de comandos malformados poden causar fallos nos paquetes, ou incluso permitir que un actor malicioso obteña execución privilexiada. Por iso, a importación de argumentos personalizados da liña de comandos está desactivada por defecto",
"Allow importing custom pre-install and post-install commands when importing packages from a bundle": "Permitir importar comandos personalizados previos e posteriores á instalación ao importar paquetes desde un lote",
"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": "Os comandos previos e posteriores á instalación poden facer cousas moi prexudiciais no dispositivo, se están deseñados para iso. Pode ser moi perigoso importar os comandos desde un lote, a menos que se confíe na orixe dese lote de paquetes",
"Administrator rights and other dangerous settings": "Permisos de administrador e outras configuracións perigosas",
"Package backup": "Copia de seguridade de paquetes",
"Cloud package backup": "Copia de seguridade na nube dos paquetes",
"Local package backup": "Copia de seguridade local dos paquetes",
"Local backup advanced options": "Opcións avanzadas da copia de seguridade local",
"Log in with GitHub": "Iniciar sesión con GitHub",
"Log out from GitHub": "Pechar sesión en GitHub",
"Periodically perform a cloud backup of the installed packages": "Realizar periodicamente unha copia de seguridade na nube dos paquetes instalados",
"Cloud backup uses a private GitHub Gist to store a list of installed packages": "A copia de seguridade na nube usa un GitHub Gist privado para gardar unha lista dos paquetes instalados",
"Perform a cloud backup now": "Realizar agora unha copia de seguridade na nube",
"Backup": "Copia de seguridade",
"Restore a backup from the cloud": "Restaurar unha copia de seguridade desde a nube",
"Begin the process to select a cloud backup and review which packages to restore": "Iniciar o proceso para seleccionar unha copia de seguridade na nube e revisar que paquetes restaurar",
"Periodically perform a local backup of the installed packages": "Realizar periodicamente unha copia de seguridade local dos paquetes instalados",
"Perform a local backup now": "Realizar agora unha copia de seguridade local",
"Change backup output directory": "Cambiar o directorio de destino da copia de seguridade",
"Set a custom backup file name": "Establecer un nome personalizado para o ficheiro de copia de seguridade",
"Leave empty for default": "Deixar baleiro para usar o predeterminado",
"Add a timestamp to the backup file names": "Engadir unha marca temporal aos nomes dos ficheiros de copia de seguridade",
"Backup and Restore": "Copia de seguridade e restauración",
"Enable background api (UniGetUI Widgets and Sharing, port 7058)": "Activar a API en segundo plano (Widgets de UniGetUI e Sharing, porto 7058)",
"Wait for the device to be connected to the internet before attempting to do tasks that require internet connectivity.": "Agardar a que o dispositivo estea conectado a internet antes de tentar realizar tarefas que requiran conexión a internet.",
"Disable the 1-minute timeout for package-related operations": "Desactivar o tempo límite de 1 minuto para as operacións relacionadas con paquetes",
"Use installed GSudo instead of UniGetUI Elevator": "Usar o GSudo instalado en vez de UniGetUI Elevator",
"Use a custom icon and screenshot database URL": "Usar un URL personalizado para a base de datos de iconas e capturas de pantalla",
"Enable background CPU Usage optimizations (see Pull Request #3278)": "Activar as optimizacións de uso da CPU en segundo plano (consulta a Pull Request #3278)",
"Perform integrity checks at startup": "Realizar comprobacións de integridade ao iniciar",
"When batch installing packages from a bundle, install also packages that are already installed": "Ao instalar paquetes en lote desde un conxunto, instalar tamén os paquetes que xa están instalados",
"Experimental settings and developer options": "Configuración experimental e opcións de desenvolvedor",
"Show UniGetUI's version and build number on the titlebar.": "Mostrar a versión de UniGetUI na barra de título.",
"Language": "Idioma",
"UniGetUI updater": "Actualizador de UniGetUI",
"Telemetry": "Telemetría",
"Manage UniGetUI settings": "Xestionar a configuración de UniGetUI",
"Related settings": "Configuración relacionada",
"Update UniGetUI automatically": "Actualizar UniGetUI automaticamente",
"Check for updates": "Comprobar actualizacións",
"Install prerelease versions of UniGetUI": "Instalar versións preliminares de UniGetUI",
"Manage telemetry settings": "Xestionar a configuración da telemetría",
"Manage": "Xestionar",
"Import settings from a local file": "Importar a configuración desde un ficheiro local",
"Import": "Importar",
"Export settings to a local file": "Exportar a configuración a un ficheiro local",
"Export": "Exportar",
"Reset UniGetUI": "Restablecer UniGetUI",
"User interface preferences": "Preferencias da interface de usuario",
"Application theme, startup page, package icons, clear successful installs automatically": "Tema da aplicación, páxina de inicio, iconas dos paquetes, limpar automaticamente as instalacións completadas correctamente",
"General preferences": "Preferencias xerais",
"UniGetUI display language:": "Idioma da interface de UniGetUI:",
"Is your language missing or incomplete?": "Falta o teu idioma ou está incompleto?",
"Appearance": "Aparencia",
"UniGetUI on the background and system tray": "UniGetUI en segundo plano e na bandexa do sistema",
"Package lists": "Listas de paquetes",
"Close UniGetUI to the system tray": "Pechar UniGetUI na bandexa do sistema",
"Manage UniGetUI autostart behaviour": "Xestionar o comportamento de inicio automático de UniGetUI",
"Show package icons on package lists": "Mostrar iconas dos paquetes nas listas de paquetes",
"Clear cache": "Limpar a caché",
"Select upgradable packages by default": "Seleccionar por defecto os paquetes actualizables",
"Light": "Claro",
"Dark": "Escuro",
"Follow system color scheme": "Seguir o esquema de cores do sistema",
"Application theme:": "Tema da aplicación:",
"Discover Packages": "Descubrir paquetes",
"Software Updates": "Actualizacións de software",
"Installed Packages": "Paquetes instalados",
"Package Bundles": "Conxuntos de paquetes",
"Settings": "Configuración",
"UniGetUI startup page:": "Páxina de inicio de UniGetUI:",
"Proxy settings": "Configuración do proxy",
"Other settings": "Outras opcións",
"Connect the internet using a custom proxy": "Conectarse a internet usando un proxy personalizado",
"Please note that not all package managers may fully support this feature": "Ten en conta que non todos os xestores de paquetes poden admitir completamente esta función",
"Proxy URL": "URL do proxy",
"Enter proxy URL here": "Introduce aquí a URL do proxy",
"Authenticate to the proxy with a user and a password": "Autenticarse no proxy cun usuario e un contrasinal",
"Internet and proxy settings": "Configuración de internet e do proxy",
"Package manager preferences": "Preferencias dos xestores de paquetes",
"Ready": "Listo",
"Not found": "Non atopado",
"Notification preferences": "Preferencias de notificacións",
"Notification types": "Tipos de notificación",
"The system tray icon must be enabled in order for notifications to work": "A icona da bandexa do sistema debe estar activada para que as notificacións funcionen",
"Enable UniGetUI notifications": "Activar as notificacións de UniGetUI",
"Show a notification when there are available updates": "Mostrar unha notificación cando haxa actualizacións dispoñibles",
"Show a silent notification when an operation is running": "Mostrar unha notificación silenciosa cando unha operación estea en execución",
"Show a notification when an operation fails": "Mostrar unha notificación cando falle unha operación",
"Show a notification when an operation finishes successfully": "Mostrar unha notificación cando unha operación remate correctamente",
"Concurrency and execution": "Concorrencia e execución",
"Automatic desktop shortcut remover": "Eliminador automático de accesos directos do escritorio",
"Choose how many operations should be performed in parallel": "Escolle cantas operacións se deben realizar en paralelo",
"Clear successful operations from the operation list after a 5 second delay": "Eliminar da lista de operacións as operacións completadas correctamente tras un atraso de 5 segundos",
"Download operations are not affected by this setting": "As operacións de descarga non se ven afectadas por esta configuración",
"Try to kill the processes that refuse to close when requested to": "Tentar finalizar os procesos que se negan a pecharse cando se lles solicita",
"You may lose unsaved data": "Podes perder datos sen gardar",
"Ask to delete desktop shortcuts created during an install or upgrade.": "Preguntar se se deben eliminar os accesos directos do escritorio creados durante unha instalación ou actualización.",
"Package update preferences": "Preferencias de actualización de paquetes",
"Update check frequency, automatically install updates, etc.": "Frecuencia de comprobación de actualizacións, instalación automática de actualizacións, etc.",
"Reduce UAC prompts, elevate installations by default, unlock certain dangerous features, etc.": "Reducir os avisos do UAC, elevar as instalacións por defecto, desbloquear determinadas funcións perigosas, etc.",
"Package operation preferences": "Preferencias das operacións de paquetes",
"Enable {pm}": "Activar {pm}",
"Not finding the file you are looking for? Make sure it has been added to path.": "Non atopas o ficheiro que procuras? Asegúrate de que se engadiu ao PATH.",
"For security reasons, changing the executable file is disabled by default": "Por razóns de seguridade, cambiar o ficheiro executábel está desactivado por defecto",
"Change this": "Cambiar isto",
"Select the executable to be used. The following list shows the executables found by UniGetUI": "Selecciona o executábel que se vai usar. A seguinte lista mostra os executábeis atopados por UniGetUI",
"Current executable file:": "Ficheiro executábel actual:",
"Ignore packages from {pm} when showing a notification about updates": "Ignorar os paquetes de {pm} ao mostrar unha notificación sobre actualizacións",
"Update security": "Seguridade das actualizacións",
"Use global setting": "Usar a configuración global",
"e.g. 10": "p. ex. 10",
"{pm} does not provide release dates for its packages, so this setting will have no effect": "{pm} non fornece datas de lanzamento para os seus paquetes, polo que esta configuración non terá efecto",
"Override the global minimum update age for this package manager": "Substituír a antigüidade mínima global das actualizacións para este xestor de paquetes",
"Minimum age for updates": "Antigüidade mínima das actualizacións",
"Custom minimum age (days)": "Antigüidade mínima personalizada (días)",
"View {0} logs": "Ver os rexistros de {0}",
"If Python cannot be found or is not listing packages but is installed on the system, ": "Se non se atopa Python ou non está a listar paquetes pero está instalado no sistema, ",
"Advanced options": "Opcións avanzadas",
"Reset WinGet": "Restablecer WinGet",
"This may help if no packages are listed": "Isto pode axudar se non se listan paquetes",
"Force install location parameter when updating packages with custom locations": "Forzar o parámetro de localización de instalación ao actualizar paquetes con localizacións personalizadas",
"Use bundled WinGet instead of system WinGet": "Usar o WinGet incluído en vez do WinGet do sistema",
"This may help if WinGet packages are not shown": "Isto pode axudar se non se mostran os paquetes de WinGet",
"Install Scoop": "Instalar Scoop",
"Uninstall Scoop (and its packages)": "Desinstalar Scoop (e os seus paquetes)",
"Run cleanup and clear cache": "Executar a limpeza e limpar a caché",
"Run": "Executar",
"Enable Scoop cleanup on launch": "Activar a limpeza de Scoop ao iniciar",
"Use system Chocolatey": "Usar o Chocolatey do sistema",
"Default vcpkg triplet": "Triplete predeterminado de vcpkg",
"Change vcpkg root location": "Cambiar a localización raíz de vcpkg",
"Language, theme and other miscellaneous preferences": "Idioma, tema e outras preferencias diversas",
"Show notifications on different events": "Mostrar notificacións en distintos eventos",
"Change how UniGetUI checks and installs available updates for your packages": "Cambiar como UniGetUI comproba e instala as actualizacións dispoñibles para os teus paquetes",
"Automatically save a list of all your installed packages to easily restore them.": "Gardar automaticamente unha lista de todos os paquetes instalados para poder restauralos facilmente.",
"Enable and disable package managers, change default install options, etc.": "Activar e desactivar xestores de paquetes, cambiar as opcións predeterminadas de instalación, etc.",
"Internet connection settings": "Configuración da conexión a Internet",
"Proxy settings, etc.": "Configuración do proxy, etc.",
"Beta features and other options that shouldn't be touched": "Funcións beta e outras opcións que non se deberían tocar",
"Update checking": "Comprobación de actualizacións",
"Automatic updates": "Actualizacións automáticas",
"Check for package updates periodically": "Comprobar periodicamente as actualizacións dos paquetes",
"Check for updates every:": "Comprobar actualizacións cada:",
"Install available updates automatically": "Instalar automaticamente as actualizacións dispoñibles",
"Do not automatically install updates when the network connection is metered": "Non instalar automaticamente as actualizacións cando a conexión de rede sexa de uso medido",
"Do not automatically install updates when the device runs on battery": "Non instalar automaticamente as actualizacións cando o dispositivo estea funcionando con batería",
"Do not automatically install updates when the battery saver is on": "Non instalar automaticamente as actualizacións cando o aforro de batería estea activado",
"Only show updates that are at least the specified number of days old": "Mostrar só as actualizacións que teñan polo menos o número especificado de días de antigüidade",
"Change how UniGetUI handles install, update and uninstall operations.": "Cambiar como UniGetUI xestiona as operacións de instalación, actualización e desinstalación.",
"Package Managers": "Xestores de paquetes",
"More": "Máis",
"Package Manager logs": "Rexistros dos xestores de paquetes",
"Operation history": "Historial de operacións",
"Help": "Axuda",
"Quit UniGetUI": "Saír de UniGetUI",
"Order by:": "Ordenar por:",
"Name": "Nome",
"Id": "ID",
"Ascendant": "Ascendente",
"Descendant": "Descendente",
"View mode:": "Modo de vista:",
"Filters": "Filtros",
"Sources": "Fontes",
"Search for packages to start": "Busca paquetes para comezar",
"Select all": "Seleccionar todo",
"Clear selection": "Limpar a selección",
"Instant search": "Busca instantánea",
"Distinguish between uppercase and lowercase": "Distinguir entre maiúsculas e minúsculas",
"Ignore special characters": "Ignorar os caracteres especiais",
"Search mode": "Modo de busca",
"Both": "Ambos",
"Exact match": "Coincidencia exacta",
"Show similar packages": "Mostrar paquetes semellantes",
"Nothing to share": "Nada para compartir",
"Please select a package first.": "Selecciona primeiro un paquete.",
"Share link copied": "Ligazón para compartir copiada",
"The share link for {0} has been copied to the clipboard.": "A ligazón para compartir de {0} copiouse no portapapeis.",
"No results were found matching the input criteria": "Non se atoparon resultados que coincidan cos criterios introducidos",
"No packages were found": "Non se atoparon paquetes",
"Loading packages": "Cargando paquetes",
"Skip integrity checks": "Omitir as comprobacións de integridade",
"Download selected installers": "Descargar os instaladores seleccionados",
"Install selection": "Instalar a selección",
"Install options": "Opcións de instalación",
"Share": "Compartir",
"Add selection to bundle": "Engadir a selección ao lote",
"Download installer": "Descargar o instalador",
"Share this package": "Compartir este paquete",
"Uninstall selection": "Desinstalar a selección",
"Uninstall options": "Opcións de desinstalación",
"Ignore selected packages": "Ignorar os paquetes seleccionados",
"Open install location": "Abrir a localización da instalación",
"Reinstall package": "Reinstalar o paquete",
"Uninstall package, then reinstall it": "Desinstalar o paquete e despois reinstalalo",
"Ignore updates for this package": "Ignorar as actualizacións deste paquete",
"Do not ignore updates for this package anymore": "Deixar de ignorar as actualizacións deste paquete",
"Add packages or open an existing package bundle": "Engadir paquetes ou abrir un lote de paquetes existente",
"Add packages to start": "Engadir paquetes para comezar",
"The current bundle has no packages. Add some packages to get started": "O lote actual non ten paquetes. Engade algúns paquetes para comezar",
"New": "Novo",
"Save as": "Gardar como",
"Remove selection from bundle": "Eliminar a selección do lote",
"Skip hash checks": "Omitir as comprobacións de hash",
"The package bundle is not valid": "O lote de paquetes non é válido",
"The bundle you are trying to load appears to be invalid. Please check the file and try again.": "O lote que intentas cargar parece non ser válido. Comproba o ficheiro e téntao de novo.",
"Package bundle": "Lote de paquetes",
"Could not create bundle": "Non se puido crear o lote",
"The package bundle could not be created due to an error.": "Non se puido crear o lote de paquetes debido a un erro.",
"Unsaved changes": "Cambios sen gardar",
"Discard changes": "Descartar os cambios",
"You have unsaved changes in the current bundle. Do you want to discard them?": "Tes cambios sen gardar no lote actual. Queres descartalos?",
"Bundle security report": "Informe de seguridade do lote",
"The bundle contained restricted content": "O lote contiña contido restrinxido",
"Hooray! No updates were found.": "Hurra! Non se atoparon actualizacións.",
"Everything is up to date": "Todo está ao día",
"Uninstall selected packages": "Desinstalar os paquetes seleccionados",
"Update selection": "Actualizar a selección",
"Update options": "Opcións de actualización",
"Uninstall package, then update it": "Desinstalar o paquete e despois actualizalo",
"Uninstall package": "Desinstalar o paquete",
"Skip this version": "Omitir esta versión",
"Pause updates for": "Pausar as actualizacións durante",
"The Rust package manager.<br>Contains: <b>Rust libraries and programs written in Rust</b>": "O xestor de paquetes de Rust.<br>Contén: <b>Bibliotecas de Rust e programas escritos en Rust</b>",
"The classical package manager for windows. You'll find everything there. <br>Contains: <b>General Software</b>": "O xestor de paquetes clásico para Windows. Atoparás de todo alí. <br>Contén: <b>Software xeral</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>": "Un repositorio cheo de ferramentas e executables deseñados pensando no ecosistema .NET de Microsoft.<br>Contén: <b>Ferramentas e scripts relacionados con .NET</b>",
"NuPkg (zipped manifest)": "NuPkg (manifesto comprimido)",
"The Missing Package Manager for macOS (or Linux).<br>Contains: <b>Formulae, Casks</b>": "O xestor de paquetes que lle faltaba a macOS (ou a Linux).<br>Contén: <b>Fórmulas, 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>": "O xestor de paquetes de Node JS. Cheo de bibliotecas e outras utilidades que orbitan o mundo de JavaScript<br>Contén: <b>Bibliotecas JavaScript de Node e outras utilidades relacionadas</b>",
"Python's library manager. Full of python libraries and other python-related utilities<br>Contains: <b>Python libraries and related utilities</b>": "O xestor de bibliotecas de Python. Cheo de bibliotecas de Python e doutras utilidades relacionadas con Python<br>Contén: <b>Bibliotecas de Python e utilidades relacionadas</b>",
"PowerShell's package manager. Find libraries and scripts to expand PowerShell capabilities<br>Contains: <b>Modules, Scripts, Cmdlets</b>": "O xestor de paquetes de PowerShell. Atopa bibliotecas e scripts para ampliar as capacidades de PowerShell<br>Contén: <b>Módulos, scripts, cmdlets</b>",
"extracted": "extraído",
"Scoop package": "paquete de Scoop",
"Great repository of unknown but useful utilities and other interesting packages.<br>Contains: <b>Utilities, Command-line programs, General Software (extras bucket required)</b>": "Gran repositorio de utilidades descoñecidas pero útiles e doutros paquetes interesantes.<br>Contén: <b>Utilidades, programas de liña de comandos, software xeral (requírese o bucket extras)</b>",
"library": "biblioteca",
"feature": "característica",
"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>": "Un popular xestor de bibliotecas de C/C++. Cheo de bibliotecas de C/C++ e doutras utilidades relacionadas con C/C++<br>Contén: <b>Bibliotecas de C/C++ e utilidades relacionadas</b>",
"option": "opción",
"This package cannot be installed from an elevated context.": "Este paquete non pode instalarse desde un contexto elevado.",
"Please run UniGetUI as a regular user and try again.": "Executa UniGetUI como usuario normal e téntao de novo.",
"Please check the installation options for this package and try again": "Comproba as opcións de instalación deste paquete e téntao de novo",
"Microsoft's official package manager. Full of well-known and verified packages<br>Contains: <b>General Software, Microsoft Store apps</b>": "O xestor de paquetes oficial de Microsoft. Cheo de paquetes coñecidos e verificados<br>Contén: <b>Software xeral, aplicacións de Microsoft Store</b>",
"Local PC": "PC local",
"Android Subsystem": "Subsistema Android",
"Operation on queue (position {0})...": "Operación na cola (posición {0})...",
"Click here for more details": "Fai clic aquí para máis detalles",
"Operation canceled by user": "Operación cancelada polo usuario",
"Running PreOperation ({0}/{1})...": "Executando PreOperation ({0}/{1})...",
"PreOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PreOperation {0} de {1} fallou e estaba marcada como necesaria. Abortando...",
"PreOperation {0} out of {1} finished with result {2}": "PreOperation {0} de {1} rematou co resultado {2}",
"Starting operation...": "Iniciando operación...",
"Running PostOperation ({0}/{1})...": "Executando PostOperation ({0}/{1})...",
"PostOperation {0} out of {1} failed, and was tagged as necessary. Aborting...": "PostOperation {0} de {1} fallou e estaba marcada como necesaria. Abortando...",
"PostOperation {0} out of {1} finished with result {2}": "PostOperation {0} de {1} rematou co resultado {2}",
"{package} installer download": "Descarga do instalador de {package}",
"{0} installer is being downloaded": "Estase descargando o instalador de {0}",
"Download succeeded": "Descarga completada correctamente",
"{package} installer was downloaded successfully": "O instalador de {package} descargouse correctamente",
"Download failed": "Fallou a descarga",
"{package} installer could not be downloaded": "Non foi posible descargar o instalador de {package}",
"{package} Installation": "Instalación de {package}",
"{0} is being installed": "Estase instalando {0}",
"Installation succeeded": "Instalación completada correctamente",
"{package} was installed successfully": "{package} instalouse correctamente",
"Installation failed": "Fallou a instalación",
"{package} could not be installed": "Non foi posible instalar {package}",
"{package} Update": "Actualización de {package}",
"{0} is being updated to version {1}": "Estase actualizando {0} á versión {1}",
"Update succeeded": "Actualización completada correctamente",
"{package} was updated successfully": "{package} actualizouse correctamente",
"Update failed": "Fallou a actualización",
"{package} could not be updated": "Non foi posible actualizar {package}",
"{package} Uninstall": "Desinstalación de {package}",
"{0} is being uninstalled": "Estase desinstalando {0}",
"Uninstall succeeded": "Desinstalación completada correctamente",
"{package} was uninstalled successfully": "{package} desinstalouse correctamente",
"Uninstall failed": "Fallou a desinstalación",
"{package} could not be uninstalled": "Non foi posible desinstalar {package}",
"Adding source {source}": "Engadindo a fonte {source}",
"Adding source {source} to {manager}": "Engadindo a fonte {source} a {manager}",
"Source added successfully": "Fonte engadida correctamente",
"The source {source} was added to {manager} successfully": "A fonte {source} engadiuse a {manager} correctamente",
"Could not add source": "Non foi posible engadir a fonte",
"Could not add source {source} to {manager}": "Non foi posible engadir a fonte {source} a {manager}",
"Removing source {source}": "Eliminando a fonte {source}",
"Removing source {source} from {manager}": "Eliminando a fonte {source} de {manager}",
"Source removed successfully": "Fonte eliminada correctamente",
"The source {source} was removed from {manager} successfully": "A fonte {source} eliminouse de {manager} correctamente",
"Could not remove source": "Non foi posible eliminar a fonte",
"Could not remove source {source} from {manager}": "Non foi posible eliminar a fonte {source} de {manager}",
"The package manager \"{0}\" was not found": "Non se atopou o xestor de paquetes \"{0}\"",
"The package manager \"{0}\" is disabled": "O xestor de paquetes \"{0}\" está desactivado",
"There is an error with the configuration of the package manager \"{0}\"": "Hai un erro na configuración do xestor de paquetes \"{0}\"",
"The package \"{0}\" was not found on the package manager \"{1}\"": "O paquete \"{0}\" non se atopou no xestor de paquetes \"{1}\"",
"{0} is disabled": "{0} está desactivado",
"Something went wrong": "Algo saíu mal",
"An interal error occurred. Please view the log for further details.": "Produciuse un erro interno. Consulta o rexistro para máis detalles.",
"No applicable installer was found for the package {0}": "Non se atopou ningún instalador aplicable para o paquete {0}",
"We are checking for updates.": "Estamos comprobando se hai actualizacións.",
"Please wait": "Agarda, por favor",
"UniGetUI version {0} is being downloaded.": "Estase descargando UniGetUI versión {0}.",
"This may take a minute or two": "Isto pode levar un ou dous minutos",
"The installer authenticity could not be verified.": "Non foi posible verificar a autenticidade do instalador.",
"The update process has been aborted.": "O proceso de actualización foi abortado.",
"Great! You are on the latest version.": "Xenial! Tes a versión máis recente.",
"There are no new UniGetUI versions to be installed": "Non hai novas versións de UniGetUI para instalar",
"An error occurred when checking for updates: ": "Produciuse un erro ao comprobar as actualizacións: ",
"UniGetUI is being updated...": "UniGetUI estase actualizando...",
"Something went wrong while launching the updater.": "Algo saíu mal ao iniciar o actualizador.",
"Please try again later": "Téntao de novo máis tarde",
"Integrity checks will not be performed during this operation": "Non se realizarán comprobacións de integridade durante esta operación",
"This is not recommended.": "Isto non se recomenda.",
"Run now": "Executar agora",
"Run next": "Executar a continuación",
"Run last": "Executar ao final",
"Retry as administrator": "Tentar de novo como administrador",
"Retry interactively": "Tentar de novo de forma interactiva",
"Retry skipping integrity checks": "Tentar de novo omitindo as comprobacións de integridade",
"Installation options": "Opcións de instalación",
"Show in explorer": "Mostrar no explorador",
"This package is already installed": "Este paquete xa está instalado",
"This package can be upgraded to version {0}": "Este paquete pode actualizarse á versión {0}",
"Updates for this package are ignored": "As actualizacións deste paquete están ignoradas",
"This package is being processed": "Este paquete estase procesando",
"This package is not available": "Este paquete non está dispoñible",
"Select the source you want to add:": "Selecciona a fonte que queres engadir:",
"Source name:": "Nome da fonte:",
"Source URL:": "URL da fonte:",
"An error occurred": "Produciuse un erro",
"An error occurred when adding the source: ": "Produciuse un erro ao engadir a fonte: ",
"Package management made easy": "Xestión de paquetes sinxela",
"version {0}": "versión {0}",
"[RAN AS ADMINISTRATOR]": "[EXECUTADO COMO ADMINISTRADOR]",
"Portable mode": "Modo portátil\n",
"DEBUG BUILD": "COMPILACIÓN DE DEPURACIÓN",
"Available Updates": "Actualizacións dispoñibles",
"Show UniGetUI": "Mostrar UniGetUI",
"Quit": "Saír",
"Attention required": "Requírese atención",
"Restart required": "Requírese reinicio",
"1 update is available": "Hai 1 actualización dispoñible",
"{0} updates are available": "Hai {0} actualizacións dispoñibles",
"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": "Aquí podes cambiar o comportamento de UniGetUI con respecto aos seguintes atallos. Se marcas un atallo, UniGetUI eliminararao se se crea nunha futura actualización. Se o desmarcas, o atallo conservarase",
"Manual scan": "Análise manual",
"Existing shortcuts on your desktop will be scanned, and you will need to pick which ones to keep and which ones to remove.": "Analizaranse os atallos existentes no teu escritorio e terás que escoller cales queres conservar e cales queres eliminar.",
"Continue": "Continuar",
"Delete?": "Eliminar?",
"Missing dependency": "Dependencia que falta",
"Not right now": "Agora non",
"Install {0}": "Instalar {0}",
"UniGetUI requires {0} to operate, but it was not found on your system.": "UniGetUI require {0} para funcionar, pero non se atopou no teu sistema.",
"Click on Install to begin the installation process. If you skip the installation, UniGetUI may not work as expected.": "Fai clic en Instalar para comezar o proceso de instalación. Se omites a instalación, é posible que UniGetUI non funcione como se espera.",
"Alternatively, you can also install {0} by running the following command in a Windows PowerShell prompt:": "Como alternativa, tamén podes instalar {0} executando o seguinte comando nunha ventá de Windows PowerShell:",
"Do not show this dialog again for {0}": "Non volver mostrar este diálogo para {0}",
"Please wait while {0} is being installed. A black window may show up. Please wait until it closes.": "Agarda mentres se instala {0}. Pode aparecer unha xanela negra (ou azul). Agarda ata que se peche.",
"{0} has been installed successfully.": "{0} instalouse correctamente.",
"Please click on \"Continue\" to continue": "Fai clic en \"Continuar\" para continuar",
"{0} has been installed successfully. It is recommended to restart UniGetUI to finish the installation": "{0} instalouse correctamente. Recoméndase reiniciar UniGetUI para completar a instalación",
"Restart later": "Reiniciar máis tarde",
"An error occurred:": "Produciuse un erro:",
"I understand": "Entendo",
"WinGet was repaired successfully": "WinGet reparouse correctamente",
"It is recommended to restart UniGetUI after WinGet has been repaired": "Recoméndase reiniciar UniGetUI despois de reparar WinGet",
"NOTE: This troubleshooter can be disabled from UniGetUI Settings, on the WinGet section": "NOTA: Este solucionador de problemas pódese desactivar na Configuración de UniGetUI, na sección de WinGet",
"Restart": "Reiniciar",
"WinGet could not be repaired": "Non se puido reparar WinGet",
"An unexpected issue occurred while attempting to repair WinGet. Please try again later": "Produciuse un problema inesperado ao tentar reparar WinGet. Téntao de novo máis tarde",
"Are you sure you want to delete all shortcuts?": "Seguro que queres eliminar todos os atallos?",
"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.": "Calquera atallo novo creado durante unha instalación ou unha actualización eliminarase automaticamente, en vez de mostrar unha mensaxe de confirmación a primeira vez que se detecte.",
"Any shorcuts created or modified outside of UniGetUI will be ignored. You will be able to add them via the {0} button.": "Ignoraranse os atallos creados ou modificados fóra de UniGetUI. Poderás engadilos mediante o botón {0}.",
"Are you really sure you want to enable this feature?": "Seguro de verdade que queres activar esta función?",
"No new shortcuts were found during the scan.": "Non se atopou ningún atallo novo durante a análise.",
"How to add packages to a bundle": "Como engadir paquetes a un lote",
"In order to add packages to a bundle, you will need to: ": "Para engadir paquetes a un lote, terás que: ",
"1. Navigate to the \"{0}\" or \"{1}\" page.": "1. Vai á páxina \"{0}\" ou \"{1}\".",
"2. Locate the package(s) you want to add to the bundle, and select their leftmost checkbox.": "2. Localiza o(s) paquete(s) que queres engadir ao lote e selecciona a súa caixa da esquerda.",
"3. When the packages you want to add to the bundle are selected, find and click the option \"{0}\" on the toolbar.": "3. Cando estean seleccionados os paquetes que queres engadir ao lote, busca e fai clic na opción \"{0}\" da barra de ferramentas.",
"4. Your packages will have been added to the bundle. You can continue adding packages, or export the bundle.": "4. Os teus paquetes xa estarán engadidos ao lote. Podes seguir engadindo paquetes ou exportar o lote.",
"Which backup do you want to open?": "Que copia de seguranza queres abrir?",
"Select the backup you want to open. Later, you will be able to review which packages you want to install.": "Selecciona a copia de seguranza que queres abrir. Máis tarde poderás revisar que paquetes queres restaurar.",
"There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?": "Hai operacións en curso. Saír de UniGetUI pode facer que fallen. Queres continuar?",
"UniGetUI or some of its components are missing or corrupt.": "UniGetUI ou algún dos seus compoñentes non está ou está danado.",
"It is strongly recommended to reinstall UniGetUI to adress the situation.": "Recoméndase encarecidamente reinstalar UniGetUI para resolver a situación.",
"Refer to the UniGetUI Logs to get more details regarding the affected file(s)": "Consulta os rexistros de UniGetUI para obter máis detalles sobre o(s) ficheiro(s) afectado(s)",
"Integrity checks can be disabled from the Experimental Settings": "As comprobacións de integridade pódense desactivar na Configuración experimental",
"Repair UniGetUI": "Reparar UniGetUI",
"Live output": "Saída en directo",
"Package not found": "Paquete non atopado",
"An error occurred when attempting to show the package with Id {0}": "Produciuse un erro ao tentar mostrar o paquete co Id {0}",
"Package": "Paquete",
"This package bundle had some settings that are potentially dangerous, and may be ignored by default.": "Este lote de paquetes tiña algunhas opcións potencialmente perigosas e poden ignorarse de maneira predeterminada.",
"Entries that show in YELLOW will be IGNORED.": "As entradas que aparezan en AMARELO serán IGNORADAS.",
"Entries that show in RED will be IMPORTED.": "As entradas que aparezan en VERMELLO serán IMPORTADAS.",
"You can change this behavior on UniGetUI security settings.": "Podes cambiar este comportamento na configuración de seguranza de UniGetUI.",
"Open UniGetUI security settings": "Abrir a configuración de seguranza de UniGetUI",
"Should you modify the security settings, you will need to open the bundle again for the changes to take effect.": "Se modificas a configuración de seguranza, terás que volver abrir o lote para que os cambios teñan efecto.",
"Details of the report:": "Detalles do informe:",
"\"{0}\" is a local package and can't be shared": "\"{0}\" é un paquete local e non se pode compartir",
"Are you sure you want to create a new package bundle? ": "Seguro que queres crear un novo lote de paquetes? ",
"Any unsaved changes will be lost": "Perderanse os cambios non gardados",
"Warning!": "Aviso!",
"For security reasons, custom command-line arguments are disabled by default. Go to UniGetUI security settings to change this. ": "Por motivos de seguranza, os argumentos personalizados da liña de comandos están desactivados de maneira predeterminada. Vai á configuración de seguranza de UniGetUI para cambialo. ",
"Change default options": "Cambiar as opcións predeterminadas",
"Ignore future updates for this package": "Ignorar futuras actualizacións deste paquete",
"For security reasons, pre-operation and post-operation scripts are disabled by default. Go to UniGetUI security settings to change this. ": "Por motivos de seguranza, os scripts previos e posteriores á operación están desactivados de maneira predeterminada. Vai á configuración de seguranza de UniGetUI para cambialo. ",
"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.": "Podes definir os comandos que se executarán antes ou despois de instalar, actualizar ou desinstalar este paquete. Executaranse nun símbolo do sistema, polo que os scripts de CMD funcionarán aquí.",
"Change this and unlock": "Cambia isto e desbloquea",
"{0} Install options are currently locked because {0} follows the default install options.": "As opcións de instalación de {0} están bloqueadas neste momento porque {0} segue as opcións de instalación predeterminadas.",
"Select the processes that should be closed before this package is installed, updated or uninstalled.": "Selecciona os procesos que deberían pecharse antes de instalar, actualizar ou desinstalar este paquete.",
"Write here the process names here, separated by commas (,)": "Escribe aquí os nomes dos procesos, separados por comas (,)",
"Unset or unknown": "Sen definir ou descoñecido",
"Please see the Command-line Output or refer to the Operation History for further information about the issue.": "Consulta a Saída da liña de comandos ou o Historial de operacións para obter máis información sobre o problema.",
"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.": "Este paquete non ten capturas de pantalla ou falta a icona? Contribúe a UniGetUI engadindo as iconas e capturas de pantalla que faltan á nosa base de datos aberta e pública.",
"Become a contributor": "Faite colaborador",
"Save": "Gardar",
"Update to {0} available": "Actualización a {0} dispoñible",
"Reinstall": "Reinstalar",
"Installer not available": "Instalador non dispoñible",
"Version:": "Versión:",
"Performing backup, please wait...": "Realizando a copia de seguranza, agarda...",
"An error occurred while logging in: ": "Produciuse un erro ao iniciar sesión: ",
"Fetching available backups...": "Obtendo as copias de seguranza dispoñibles...",
"Done!": "Feito!",
"The cloud backup has been loaded successfully.": "A copia de seguranza na nube cargouse correctamente.",
"An error occurred while loading a backup: ": "Produciuse un erro ao cargar unha copia de seguranza: ",
"Backing up packages to GitHub Gist...": "Facendo unha copia de seguranza dos paquetes en GitHub Gist...",
"Backup Successful": "Copia de seguranza realizada correctamente",
"The cloud backup completed successfully.": "A copia de seguranza na nube completouse correctamente.",
"Could not back up packages to GitHub Gist: ": "Non se puido crear a copia de seguranza dos paquetes en 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": "Non se garante que as credenciais proporcionadas se vaian almacenar de forma segura, así que mellor non uses as credenciais da túa conta bancaria",
"Enable the automatic WinGet troubleshooter": "Activar o solucionador automático de problemas de WinGet",
"Enable an [experimental] improved WinGet troubleshooter": "Activar un solucionador de problemas [experimental] mellorado de WinGet",
"Add updates that fail with a 'no applicable update found' to the ignored updates list": "Engadir á lista de actualizacións ignoradas as actualizacións que fallan con 'no applicable update found'.",
"Invalid selection": "Selección non válida",
"No package was selected": "Non se seleccionou ningún paquete",
"More than 1 package was selected": "Seleccionouse máis de 1 paquete",
"List": "Lista",
"Grid": "Grella",
"Icons": "Iconas",
"\"{0}\" is a local package and does not have available details": "\"{0}\" é un paquete local e non ten detalles dispoñibles",
"\"{0}\" is a local package and is not compatible with this feature": "\"{0}\" é un paquete local e non é compatible con esta función",
"WinGet malfunction detected": "Detectouse un fallo de WinGet",
"It looks like WinGet is not working properly. Do you want to attempt to repair WinGet?": "Parece que WinGet non está a funcionar correctamente. Queres intentar reparar WinGet?",
"Repair WinGet": "Reparar WinGet",
"Create .ps1 script": "Crear un script .ps1",
"Add packages to bundle": "Engadir paquetes ao lote",
"Preparing packages, please wait...": "Preparando os paquetes, agarde...",
"Loading packages, please wait...": "Cargando os paquetes, agarde...",
"Saving packages, please wait...": "Gardando os paquetes, agarde...",
"The bundle was created successfully on {0}": "O lote creouse correctamente en {0}",
"Install script": "Script de instalación",
"The installation script saved to {0}": "O script de instalación gardouse en {0}",
"An error occurred while attempting to create an installation script:": "Produciuse un erro ao tentar crear un script de instalación:",
"{0} packages are being updated": "Estanse actualizando {0} paquetes",
"Error": "Erro",
"Log in failed: ": "Fallou o inicio de sesión: ",
"Log out failed: ": "Fallou o peche de sesión: ",
"Package backup settings": "Configuración da copia de seguranza de paquetes",
"__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": "About 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 is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers.",
"You have installed WingetUI Version {0}": "You have installed UniGetUI Version {0}",
"WingetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳": "UniGetUI wouldn't have been possible without the help of the contributors. Thank you all 🥳",
"WingetUI Uses the following libraries. Without them, WingetUI wouldn't have been possible.": "UniGetUI uses the following libraries. Without them, UniGetUI wouldn't have been possible.",
"WingetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝": "UniGetUI has been translated to more than 40 languages thanks to the volunteer translators. Thank you 🤝",
"WingetUI Settings": "UniGetUI Settings",
"You may need to install {pm} in order to use it with WingetUI.": "You may need to install {pm} in order to use it with UniGetUI.",
"Scoop Installer - WingetUI": "Scoop Installer - UniGetUI",
"Scoop Uninstaller - WingetUI": "Scoop Uninstaller - UniGetUI",
"Clearing Scoop cache - WingetUI": "Clearing Scoop cache - UniGetUI",
"WingetUI Version {0}": "UniGetUI Version {0}",
"WingetUI License": "UniGetUI License",
"Using WingetUI implies the acceptation of the MIT License": "Using UniGetUI implies the acceptance of the MIT License",
"Enable background api (WingetUI Widgets and Sharing, port 7058)": "Enable background API (Widgets for UniGetUI and Sharing, port 7058)",
"Update WingetUI automatically": "Update UniGetUI automatically",
"Reset WingetUI": "Reset UniGetUI",
"WingetUI display language:": "UniGetUI display language:",
"Manage WingetUI autostart behaviour": "Manage WingetUI autostart behaviour",
"Enable WingetUI notifications": "Enable UniGetUI notifications",
"WingetUI Log": "UniGetUI Log",
"Show WingetUI": "Show UniGetUI",
"WingetUI Homepage": "UniGetUI Homepage",
"WingetUI Repository": "UniGetUI 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.": "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.",
"There are ongoing operations. Quitting WingetUI may cause them to fail. Do you want to continue?": "There are ongoing operations. Quitting UniGetUI may cause them to fail. Do you want to continue?",
"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.": "This package has no screenshots or is missing the icon? Contribute to UniGetUI by adding the missing icons and screenshots to our open, public database.",
"Restart WingetUI to fully apply changes": "Restart UniGetUI to fully apply changes",
"Restart WingetUI": "Restart UniGetUI",
"UniGetUI": "UniGetUI",
"Manage UniGetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app",
"(Number {0} in the queue)": "(Number {0} in the queue)",
"0 0 0 Contributors, please add your names/usernames separated by comas (for credit purposes). DO NOT Translate this entry": "@marticliment, @ppvnf, @lucadsign",
"0 packages found": "0 packages found",
"0 updates found": "0 updates found",
"1 month": "a month",
"1 package was found": "1 package was found",
"1 year": "1 year",
"A repository full of tools designed with Microsoft's .NET ecosystem in mind.<br>Contains: <b>.NET related Tools</b>": "A repository full of tools designed with Microsoft's .NET ecosystem in mind.<br>Contains: <b>.NET related Tools</b>",
"A restart is required": "A restart is required",
"About Qt6": "About Qt6",
"About WingetUI version {0}": "About UniGetUI version {0}",
"About the dev": "About the dev",
"Action when double-clicking packages, hide successful installations": "Action when double-clicking packages, hide successful installations",
"Add a source to {0}": "Add a source to {0}",
"Add a timestamp to the backup files": "Add a timestamp to the backup files",
"Add packages or open an existing bundle": "Add packages or open an existing bundle",
"Addition succeeded": "Addition succeeded",
"Administrator privileges preferences": "Administrator privileges preferences",
"Administrator rights": "Administrator rights",
"All files": "All files",
"Allow package operations to be performed in parallel": "Allow package operations to be performed in parallel",
"Allow parallel installs (NOT RECOMMENDED)": "Allow parallel installs (NOT RECOMMENDED)",
"Allow {pm} operations to be performed in parallel": "Allow {pm} operations to be performed in parallel",
"Always elevate {pm} installations by default": "Always elevate {pm} installations by default",
"Always run {pm} operations with administrator rights": "Always run {pm} operations with administrator rights",
"An unexpected error occurred:": "An unexpected error occurred:",
"Another source": "Another source",
"App Name": "App Name",
"Are these screenshots wron or blurry?": "Are these screenshots wrong or blurry?",
"Ask for administrator rights when required": "Ask for administrator rights when required",
"Ask once or always for administrator rights, elevate installations by default": "Ask once or always for administrator rights, elevate installations by default",
"Ask only once for administrator privileges (not recommended)": "Ask only once for administrator privileges (not recommended)",
"Authenticate to the proxy with an user and a password": "Authenticate to the proxy with an user and a password",
"Automatically save a list of your installed packages on your computer.": "Automatically save a list of your installed packages on your computer.",
"Autostart WingetUI in the notifications area": "Autostart UniGetUI in the notifications area",
"Available updates: {0}": "Available updates: {0}",
"Available updates: {0}, not finished yet...": "Available updates: {0}, not finished yet...",
"Backup installed packages": "Backup installed packages",
"Backup location": "Backup location",
"But here are other things you can do to learn about WingetUI even more:": "But here are other things you can do to learn about UniGetUI even more:",
"By toggling a package manager off, you will no longer be able to see or update its packages.": "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 and elevate installers by default",
"Cache administrator rights, but elevate installers only when required": "Cache administrator rights, but elevate installers only when required",
"Cache was reset successfully!": "Cache was reset successfully!",
"Can't {0} {1}": "Can't {0} {1}",
"Cancel all operations": "Cancel all operations",
"Change how UniGetUI installs packages, and checks and installs available updates": "Change how UniGetUI installs packages, and checks and installs available updates",
"Change install location": "Change install location",
"Check for updates periodically": "Check for updates periodically.",
"Check for updates regularly, and ask me what to do when updates are found.": "Check for updates regularly, and ask me what to do when updates are found.",
"Check for updates regularly, and automatically install available ones.": "Check for updates regularly, and automatically install available ones.",
"Check out my {0} and my {1}!": "Check out my {0} and my {1}!",
"Check out some WingetUI overviews": "Check out some UniGetUI reviews",
"Checking for other running instances...": "Checking for other running instances...",
"Checking for updates...": "Checking for updates...",
"Checking found instace(s)...": "Checking found instance(s)...",
"Choose how many operations shouls be performed in parallel": "Choose how many operations should be performed in parallel",
"Clear finished operations": "Clear finished operations",
"Clear successful operations": "Clear successful operations",
"Clear the local icon cache": "Clear the local icon cache",
"Clearing Scoop cache...": "Clearing Scoop cache...",
"Close WingetUI to the notification area": "Close UniGetUI to the notification area",
"Command-line Output": "Command-line Output",
"Compare query against": "Compare query against",
"Component Information": "Component Information",
"Contribute to the icon and screenshot repository": "Contribute to the icon and screenshot repository",
"Copy": "Copy",
"Could not load announcements - ": "Could not load announcements - ",
"Could not load announcements - HTTP status code is $CODE": "Could not load announcements - HTTP status code is $CODE",
"Could not remove {source} from {manager}": "Could not remove {source} from {manager}",
"Current Version": "Current Version",
"Current user": "Current user",
"Custom arguments:": "Custom arguments:",
"Custom command-line arguments:": "Custom command-line arguments:",
"Customize WingetUI - for hackers and advanced users only": "Customize UniGetUI - for hackers and advanced users only",
"DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.": "DISCLAIMER: WE ARE NOT RESPONSIBLE FOR THE DOWNLOADED PACKAGES. PLEASE MAKE SURE TO INSTALL ONLY TRUSTED SOFTWARE.",
"Default preferences - suitable for regular users": "Default preferences - suitable for regular users",
"Description:": "Description:",
"Developing is hard, and this application is free. But if you liked the application, you can always <b>buy me a coffee</b> :)": "Developing is hard, and this application is free. However, if you found the application helpful, you can always <b>buy me a coffee</b> :)",
"Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)": "Directly install when double-clicking an item on the \"{discoveryTab}\" tab (instead of showing the package info)",
"Disable new share API (port 7058)": "Disable new share API (port 7058)",
"Discover packages": "Discover Packages",
"Distinguish between\nuppercase and lowercase": "Distinguish between uppercase and lowercase",
"Do NOT check for updates": "Do NOT check for updates",
"Do an interactive install for the selected packages": "Do an interactive install for the selected packages",
"Do an interactive uninstall for the selected packages": "Do an interactive uninstall for the selected packages",
"Do an interactive update for the selected packages": "Do an interactive update for the selected packages",
"Do not download new app translations from GitHub automatically": "Do not download new app translations from GitHub automatically",
"Do not remove successful operations from the list automatically": "Do not remove successful operations from the list automatically",
"Do not update package indexes on launch": "Do not update package indexes on launch",
"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.": "Do you find UniGetUI useful? If you can, you may want to support my work, so I can continue making UniGetUI the ultimate package managing interface.",
"Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!": "Do you find UniGetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!",
"Do you really want to uninstall {0} packages?": "Do you really want to uninstall {0} packages?",
"Do you want to restart your computer now?": "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>": "Do you want to translate UniGetUI to your language? See how to contribute <a style=\"color:{0}\" href=\"{1}\">HERE!</a>",
"Don't feel like donating? Don't worry, you can always share WingetUI with your friends. Spread the word about WingetUI.": "Don't feel like donating? Don't worry, you can always share UniGetUI with your friends. Spread the word about UniGetUI.",
"Donate": "Donate",
"Download updated language files from GitHub automatically": "Download updated language files from GitHub automatically",
"Downloading": "Downloading",
"Downloading installer for {package}": "Downloading installer for {package}",
"Downloading package metadata...": "Downloading package metadata...",
"Enable the new UniGetUI-Branded UAC Elevator": "Enable the new UniGetUI-Branded UAC Elevator",
"Enable the new process input handler (StdIn automated closer)": "Enable the new process input handler (StdIn automated closer)",
"Export log as a file": "Export log as a file",
"Export packages": "Export packages",
"Export selected packages to a file": "Export selected packages to a file",
"Fetching latest announcements, please wait...": "Fetching latest announcements, please wait...",
"Finish": "Finish",
"Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)": "Force ARM compiled winget version (ONLY FOR ARM64 SYSTEMS)",
"Formerly known as WingetUI": "Formerly known as WingetUI",
"Found": "Found",
"Found packages: ": "Found packages: ",
"Found packages: {0}": "Found packages: {0}",
"Found packages: {0}, not finished yet...": "Found packages: {0}, not finished yet...",
"GitHub profile": "GitHub profile",
"Global": "Global",
"Help and documentation": "Help and documentation",
"Hi, my name is Mart├¡, and i am the <i>developer</i> of WingetUI. WingetUI has been entirely made on my free time!": "Hi, my name is Martí, and i am the <i>developer</i> of UniGetUI. UniGetUI has been entirely made on my free time!",
"Hide details": "Hide details",
"How should installations that require administrator privileges be treated?": "How should installations that require administrator privileges be treated?",
"Ignore updates for the selected packages": "Ignore updates for the selected packages",
"Ignored updates": "Ignored updates",
"Import packages": "Import packages",
"Import packages from a file": "Import packages from a file",
"Initializing WingetUI...": "Initializing UniGetUI...",
"Install and more": "Install and more",
"Install and update preferences": "Install and update preferences",
"Install packages from a file": "Install packages from a file",
"Install selected packages": "Install selected packages",
"Install selected packages with administrator privileges": "Install selected packages with administrator privileges",
"Install the latest prerelease version": "Install the latest prerelease version",
"Install updates automatically": "Install updates automatically",
"Installation canceled by the user!": "Installation canceled by the user!",
"Installed packages": "Installed Packages",
"Instance {0} responded, quitting...": "Instance {0} responded, quitting...",
"Is this package missing the icon?": "Is this package missing the icon?",
"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.": "It looks like you ran UniGetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running UniGetUI with administrator privileges. Click on \"{showDetails}\" to see why.",
"Latest Version": "Latest Version",
"Latest Version:": "Latest Version:",
"Latest details...": "Latest details...",
"Launching subprocess...": "Launching subprocess...",
"Licenses": "Licenses",
"Live command-line output": "Live command-line output",
"Loading UI components...": "Loading UI components...",
"Loading WingetUI...": "Loading UniGetUI...",
"Local machine": "Local machine",
"Locating {pm}...": "Locating {pm}...",
"Looking for packages...": "Looking for packages...",
"Machine | Global": "Machine | Global",
"Manage WingetUI autostart behaviour from the Settings app": "Manage UniGetUI autostart behaviour from the Settings app",
"Manage ignored packages": "Manage ignored packages",
"Manifests": "Manifests",
"New Version": "New Version",
"New bundle": "New bundle",
"No packages found": "No packages found",
"No packages found matching the input criteria": "No packages found matching the input criteria",
"No packages have been added yet": "No packages have been added yet",
"No packages selected": "No packages selected",
"No sources found": "No sources found",
"No sources were found": "No sources were found",
"No updates are available": "No updates are available",
"Notes:": "Notes:",
"Notification tray options": "Notification tray options",
"Ok": "OK",
"Open GitHub": "Open GitHub",
"Open WingetUI": "Open UniGetUI",
"Open backup location": "Open backup location",
"Open existing bundle": "Open existing bundle",
"Open the welcome wizard": "Open the welcome wizard",
"Operation cancelled": "Operation cancelled",
"Options saved": "Options saved",
"Package Manager": "Package Manager",
"Package managers": "Package Managers",
"Package {name} from {manager}": "Package {name} from {manager}",
"Packages": "Packages",
"Packages found: {0}": "Packages found: {0}",
"Paste a valid URL to the database": "Paste a valid URL to the database",
"Perform a backup now": "Perform a backup now",
"Periodically perform a backup of the installed packages": "Periodically perform a backup of the installed packages",
"Please enter at least 3 characters": "Please enter at least 3 characters",
"Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.": "Please note that certain packages might not be installable, due to the package managers that are enabled on this machine.",
"Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.": "Please note that packages from certain sources may be not exportable. They have been greyed out and won't be exported.",
"Please select how you want to configure WingetUI": "Please select how you want to configure UniGetUI",
"Please type at least two characters": "Please type at least two characters",
"Portable": "Portable",
"Publication date:": "Publication date:",
"Quit WingetUI": "Quit UniGetUI",
"Release notes URL:": "Release notes URL:",
"Release notes:": "Release notes:",
"Reload": "Reload",
"Removal failed": "Removal failed",
"Removal succeeded": "Removal succeeded",
"Remove permanent data": "Remove permanent data",
"Remove successful installs/uninstalls/updates from the installation list": "Remove successful installs/uninstalls/updates from the installation list",
"Repository": "Repository",
"Reset Scoop's global app cache": "Reset Scoop's global app cache",
"Reset Winget sources (might help if no packages are listed)": "Reset WinGet sources (might help if no packages are listed)",
"Reset WingetUI and its preferences": "Reset UniGetUI and its preferences",
"Reset WingetUI icon and screenshot cache": "Reset UniGetUI icon and screenshot cache",
"Resetting Winget sources - WingetUI": "Resetting WinGet sources - UniGetUI",
"Restart now": "Restart now",
"Restart your PC to finish installation": "Restart your PC to finish installation",
"Restart your computer to finish the installation": "Restart your computer to finish the installation",
"Retry failed operations": "Retry failed operations",
"Retrying, please wait...": "Retrying, please wait...",
"Return to top": "Return to top",
"Running the installer...": "Running the installer...",
"Running the uninstaller...": "Running the uninstaller...",
"Running the updater...": "Running the updater...",
"Save File": "Save File",
"Save bundle as": "Save bundle as",
"Save now": "Save now",
"Search": "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>": "Search for desktop software, warn me when updates are available and do not do nerdy things. I don't want UniGetUI to overcomplicate, I just want a simple <b>software store</b>",
"Search on available updates": "Search on available updates",
"Search on your software": "Search on your software",
"Searching for installed packages...": "Searching for installed packages...",
"Searching for packages...": "Searching for packages...",
"Searching for updates...": "Searching for updates...",
"Select \"{item}\" to add your custom bucket": "Select \"{item}\" to add your custom bucket",
"Select a folder": "Select a folder",
"Select all packages": "Select all packages",
"Select only <b>if you know what you are doing</b>.": "Select only <b>if you know what you are doing</b>.",
"Select package file": "Select package file",
"Select which <b>package managers</b> to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.": "Select which <b>package managers</b> to use ({0}), configure how packages are installed, manage how administrator rights are handled, etc.",
"Sent handshake. Waiting for instance listener's answer... ({0}%)": "Sent handshake. Waiting for instance listener's answer... ({0}%)",
"Set custom backup file name": "Set custom backup file name",
"Share WingetUI": "Share UniGetUI",
"Show UniGetUI on the system tray": "Show UniGetUI on the system tray",
"Show a notification when an installation fails": "Show a notification when an installation fails",
"Show a notification when an installation finishes successfully": "Show a notification when an installation finishes successfully",
"Show details": "Show details",
"Show info about the package on the Updates tab": "Show info about the package on the Updates tab",
"Show missing translation strings": "Show missing translation strings",