This repository has been archived by the owner on Jul 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
/
gl_ES.ini
1072 lines (1047 loc) · 41.3 KB
/
gl_ES.ini
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
[Audio]
Alternate speed volume = Alternate speed volume
Audio backend = Motor de audio (require reiniciar)
AudioBufferingForBluetooth = Bluetooth-friendly buffer (slower)
Auto = Automático
Device = Device
DSound (compatible) = DSound (compatible)
Enable Sound = Activar son
Global volume = Global volume
Microphone = Microphone
Microphone Device = Microphone device
Mute = Mute
Switch on new audio device = Switch on new audio device
Use global volume = Use global volume
WASAPI (fast) = WASAPI (rápido)
[Controls]
Analog auto-rotation speed = Analog auto-rotation speed
Analog Axis Sensitivity = Analog axis sensitivity
Analog Limiter = Limitador analóxico
Analog Mapper High End = Analog mapper high-end (axis sensitivity)
Analog Mapper Low End = Analog mapper low-end (inverse deadzone)
Analog Mapper Mode = Analog mapper mode
Analog Stick = Stick analóxico
AnalogLimiter Tip = When the analog limiter button is pressed
Auto = Automática
Auto-centering analog stick = Auto-centering analog stick
Auto-hide buttons after seconds = Auto-hide buttons after seconds
Binds = Binds
Button Opacity = Transparencia de botóns
Button style = Estilo de botóns
Calibrate D-Pad = Calibrar
Calibration = Calibración
Classic = Clásico
Combo Key Setting = Combo key setting
Combo Key Setup = Combo key setup
Confine Mouse = Trap mouse within window/display area
Control Mapping = Asignar botóns
Custom layout... = Deseño personalizado...
Customize tilt = Personalizar acelerómetro
D-PAD = D-Pad
Deadzone Radius = Radio de zona inactiva
DInput Analog Settings = DInput analog settings
Disable D-Pad diagonals (4-way touch) = Desactivar diagonais do D-Pad
Glowing borders = Glowing borders
HapticFeedback = Vibración háptica
Ignore gamepads when not focused = Ignore gamepads when not focused
Ignore Windows Key = Ignorar tecla de Windows
Invert Axes = Invertir eixes
Invert Tilt along X axis = Invertir inclinación do eixe X
Invert Tilt along Y axis = Invertir inclinación do eixe Y
Keep this button pressed when right analog is pressed = Keep this button pressed when right analog is pressed
Keyboard = Axustes de teclado
L/R Trigger Buttons = L/R trigger buttons
Landscape = Horizontal
Landscape Auto = Landscape auto
Landscape Reversed = Horizontal invertido
Mouse = Mouse settings
Mouse sensitivity = Mouse sensitivity
Mouse smoothing = Mouse smoothing
MouseControl Tip = You can now map mouse in control mapping screen by pressing the 'M' icon.
None (Disabled) = Desactivado
Off = Off
OnScreen = Controis táctiles en pantalla
Portrait = Vertical
Portrait Reversed = Vertical invertido
PSP Action Buttons = Botóns de acción
Screen Rotation = Rotación de pantalla
seconds, 0 : off = seconds, 0 = off
Sensitivity = Sensibilidade
Show right analog = Show right analog
Show Touch Pause Menu Button = Mostrar botón de menú
Thin borders = Bordes finos
Tilt Base Radius = Tilt base radius
Tilt Input Type = Tipo de control do acelerómetro
Tilt Sensitivity along X axis = Sensibilidade de inclinación do eixe X
Tilt Sensitivity along Y axis = Sensibilidade de inclinación do eixe Y
To Calibrate = Para calibrar, pon o aparello nunha superficie plana e presiona "Calibrar".
Touch Control Visibility = Touch control visibility
Use custom right analog = Use custom right analog
Use Mouse Control = Use mouse control
Visibility = Mostrar...
X = X
X + Y = X + Y
XInput Analog Settings = XInput analog settings
Y = Y
[CwCheats]
Cheats = Trucos
Edit Cheat File = Editar arquivo de trucos
Enable/Disable All = Activar/desactivar tódolos trucos
Import Cheats = Importar cheat.db
Options = Opcións
Refresh Rate = Frecuencia de actualización
[DesktopUI]
# If your language does not show well with the default font, you can use Font to specify a different one.
# Just add it to your language's ini file and uncomment it (remove the # by Font).
#Font = Trebuchet MS
About PPSSPP... = &Acerca de PPSSPP...
Auto = &Automático
Backend = Motor &gráfico (require reiniciar)
Bicubic = &Bicúbico
Break = Break
Break on Load = Break on load
Buffered Rendering = &Renderizado por búfer
Buy Gold = Comprar versión &Gold
Control Mapping... = Asignar &botóns...
Debugging = &Depuración
Deposterize = &Deposterizar
Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Desensamblador...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Rotation = Display rotation
Dump Next Frame to Log = &Volcar seguinte cadro a rexistro
Emulation = &Emulación
Enable Chat = Enable chat
Enable Cheats = Activar &trucos (require reiniciar)
Enable Sound = Activar s&on
Exit = &Saír
Extract File... = E&xtraer arquivo...
File = &Arquivo
Frame Skipping = &Saltar cadros
Frame Skipping Type = Frame skipping type
Fullscreen = &Pantalla completa
Game Settings = A&xustes de xogo
GE Debugger... = Dep&urador GE...
GitHub = Git&Hub
Hardware Transform = Transformación por &hardware
Help = A&xuda
Hybrid = &Híbrido
Hybrid + Bicubic = Híb&rido + Bicúbico
Ignore Illegal Reads/Writes = &Ignorar lecturas/escrituras erróneas
Ignore Windows Key = Ignorar tecla de &Windows
Keep PPSSPP On Top = &Manteer PPSSPP en primeiro plano
Landscape = Landscape
Landscape reversed = Landscape reversed
Language... = &Idioma...
Linear = &Lineal
Load = &Cargar...
Load .sym File... = Cargar arquivo .&sym...
Load Map File... = &Cargar arquivo Map...
Load State = &Cargar estado
Load State File... = Cargar a&rquivo de estado...
Log Console = Consola de re&xistros...
Memory View... = Visor de &memoria...
More Settings... = Máis &opcións...
Nearest = &Cercano
Non-Buffered Rendering = &Skip buffer effects (non-buffered, faster)
Off = &Non
Open Directory... = &Abrir carpeta...
Open from MS:/PSP/GAME... = A&brir dende ms0:/PSP/GAME...
Open Memory Stick = Abrir &Memory Stick
Open New Instance = Open new instance
OpenGL = &OpenGL
Pause = &Pausar
Pause When Not Focused = &Pausar ó cambiar de ventá
Portrait = Portrait
Portrait reversed = Portrait reversed
Postprocessing Shader = &Shader de postprocesado
PPSSPP Forums = &Foro de PPSSPP
Record = &Record
Record Audio = Record &audio
Record Display = Record &display
Rendering Mode = M&odo de renderizado
Rendering Resolution = &Resolución de renderizado
Reset = Re&iniciar
Reset Symbol Table = &Reiniciar tabla de símbolos
Run = &Reanudar
Save .sym File... = Gardar arquivo .&sym...
Save Map File... = &Gardar arquivo Map...
Save State = &Gardar estado
Save State File... = G&ardar arquivo de estado...
Savestate Slot = Ranura de gardar &estados
Screen Scaling Filter = Filtro de escalado de &pantalla
Show Debug Statistics = Mostrar &estadísticas de depuración
Show FPS Counter = &Mostrar contador de FPS
Skip Number of Frames = Skip number of frames
Skip Percent of FPS = Skip percent of FPS
Stop = P&arar
Switch UMD = Cambiar &UMD
Take Screenshot = Capturar &pantalla
Texture Filtering = &Filtrado de texturas
Texture Scaling = &Escalado de texturas
Use Lossless Video Codec (FFV1) = &Use lossless video codec (FFV1)
Use output buffer for video = Use output buffer for video
Vertex Cache = &Caché de vértices
VSync = Sincronización &vertical
Vulkan = Vulkan
Window Size = &Tamaño de ventá
www.ppsspp.org = &Sitio oficial
xBRZ = &xBRZ
[Developer]
Allocator Viewer = Allocator viewer (Vulkan)
Allow remote debugger = Allow remote debugger
Backspace = Borrar
Block address = Bloquear dirección
By Address = Por dirección
Copy savestates to memstick root = Copy save states to Memory Stick root
Create/Open textures.ini file for current game = Create/Open textures.ini file for current game
Current = Actual
Dev Tools = Development tools
DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Volcar EBOOT.BIN descifrado ó iniciar o xogo
Dump Frame GPU Commands = Volcar comandos GPU do cadro
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activar rexistro
Enter address = Insertar dirección
FPU = FPU
Framedump tests = Framedump tests
Frame Profiler = Frame profiler
GPU Driver Test = GPU driver test
GPU Profile = GPU profile
Jit Compare = Comparación JIT
JIT debug tools = JIT debug tools
Language = Idioma
Load language ini = Cargar INI de idioma
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Nivel de rexistro
Log View = Ver o rexistro
Logging Channels = Canles de rexistro
Next = Seguinte
No block = Non bloquear
Prev = Anterior
Random = Aleatorio
Replace textures = Replace textures
Reset limited logging = Reset limited logging
RestoreDefaultSettings = Seguro que queres volver ós axustes de fábrica?\nOs cambios nos controis non se borrarán.\n\nNon podes desfacer isto.\nReinicia PPSSPP para que os cambios teñan efecto.
RestoreGameDefaultSettings = Seguro que queres reestablecer os axustes do xogo\nós axustes por defecto de PPSSPP?
Resume = Resume
Run CPU Tests = Probas de CPU
Save language ini = Gardar INI de idioma
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Mostrar menú de desenrolo
Show on-screen messages = Show on-screen messages
Stats = Stats
System Information = Información do sistema
Texture Replacement = Texture replacement
Toggle Audio Debug = Parar/Reanudar depuración de audio
Toggle Freeze = Parar/Reanudar imaxe
Touchscreen Test = Touchscreen test
VFPU = VFPU
[Dialog]
* PSP res = * PSP res
Active = Active
Back = Atrás
Cancel = Cancelar
Center = Center
ChangingGPUBackends = Cambiar o motor gráfico require reiniciar PPSSPP.\nReiniciar agora?
ChangingInflightFrames = Changing graphics command buffering requires PPSSPP to restart. Restart now?
Channel: = Channel:
Choose PPSSPP save folder = Elixe a carpeta de gardado de PPSSPP.
Confirm Overwrite = Desexas sobreescribir os datos?
Confirm Save = Desexas gardar estes datos?
ConfirmLoad = Desexas cargar estes datos gardados?
ConnectingAP = Connecting to the access point.\nPlease wait...
ConnectingPleaseWait = Connecting.\nPlease wait...
ConnectionName = Connection name
Corrupted Data = Corrupted data
Delete = Borrar
Delete all = Borrar todo
Delete completed = Borrado completado.
DeleteConfirm = Este arquivo de datos borrarase.\nSeguro que queres borralo?
DeleteConfirmAll = Seguro que queres borrar todos\nos datos de gardado de este xogo?
DeleteConfirmGame = Seguro que queres borrar este xogo?\nEsta operación non se pode desfacer.
DeleteConfirmGameConfig = Seguro que queres borrar a configuración deste xogo?
DeleteFailed = Os datos non se puideron borrar.
Deleting = Borrando\nEspera un momento...
Disable All = Disable all
Edit = Edit
Enable All = Enable all
Enter = Intro
Finish = Terminar
Grid = Grid
Inactive = Inactive
InternalError = An internal error has occurred.
Load = Cargar
Load completed = Carga completada.
Loading = Cargando\nAgarda un momento...
LoadingFailed = Os datos nom se puideron cargar.
Move = Posición
Network Connection = Conexión de rede
NEW DATA = NOVOS DATOS
No = Non
ObtainingIP = Obtaining IP address.\nPlease wait...
OK = Aceptar
Old savedata detected = Detectados datos de gardado antigos.
Options = Options
Reset = Reiniciar
Resize = Tamaño
Retry = Reintentar
Save = Gardar
Save completed = Gardado completado.
Saving = Gardando\nAgarda un momento...
SavingFailed = Os datos non se puideron gardar.
Select = Seleccionar
Shift = Alternar
Snap = Snap
Space = Espacio
SSID = SSID
Submit = Enviar
Supported = Supported
There is no data = A tarxeta de memoria está baleira.
Toggle All = Cambiar todo
Toggle List = Toggle list
Unsupported = Unsupported
When you save, it will load on a PSP, but not an older PPSSPP = Cando gardes, a partida cargará nunha PSP, pero non en versións antigas de PPSSPP.
When you save, it will not work on outdated PSP Firmware anymore = When you save, it will not work on outdated PSP firmware anymore
Yes = Sí
Zoom = Zoom
[Error]
7z file detected (Require 7-Zip) = file is compressed (7z).\nPlease decompress first (try 7-Zip or WinRAR).
A PSP game couldn't be found on the disc. = A PSP game couldn't be found on the disc.
Cannot boot ELF located outside mountRoot. = Cannot boot ELF located outside mountRoot.
Could not save screenshot file = Could not save screenshot file.
D3D9or11 = Direct3D 9? (or "no" for Direct3D 11)
D3D11CompilerMissing = D3DCompiler_47.dll not found. Please install. Or press Yes to try again using Direct3D 9 instead.
D3D11InitializationError = Direct3D 11 initialization error
D3D11Missing = Your operating system version does not include D3D11. Please run Windows Update.\n\nPress Yes to try again using Direct3D 9 instead.
D3D11NotSupported = Your GPU does not appear to support Direct3D 11.\n\nWould you like to try again using Direct3D 9 instead?
Disk full while writing data = O disco encheuse durante a escritura de datos.
ELF file truncated - can't load = ELF file truncated - can't load
Error loading file = Erro ó cargar o arquivo
Error reading file = Erro o ler o arquivo
Failed initializing CPU/Memory = Failed initializing CPU or memory
Failed to identify file = Non se pudo identificar o arquivo
Failed to load executable: = Failed to load executable:
File corrupt = File corrupt
Game disc read error - ISO corrupt = Game disc read error: ISO corrupt.
GenericAllStartupError = PPSSPP failed to start up with any graphics backend. Try upgrading your graphics and other drivers.
GenericBackendSwitchCrash = PPSSPP crashed while starting.\n\nThis usually means a graphics driver problem. Try upgrading your graphics drivers.\n\nGraphics backend has been switched:
GenericDirect3D9Error = Failed initializing graphics. Try upgrading your graphics drivers and DirectX 9 runtime.\n\nWould you like to try switching to OpenGL?\n\nError message:
GenericGraphicsError = Graphics Error
GenericOpenGLError = Failed initializing graphics. Try upgrading your graphics drivers.\n\nWould you like to try switching to DirectX 9?\n\nError message:
GenericVulkanError = Failed initializing graphics. Try upgrading your graphics drivers.\n\nWould you like to try switching to OpenGL?\n\nError message:
InsufficientOpenGLDriver = Soporte insuficiente do driver OpenGL detectado.\n\nA túa tarxeta gráfica indica que non soporta OpenGL 2.0. Queres probar a usar DirectX no seu lugar?\n\nPor agora DirectX é compatible con menos xogos, pero coa túa tarxeta gráfica pode que sexa a única opción dispoñible.\n\nVisita os foros en https://forums.ppsspp.org para máis información.
Just a directory. = Só é unha carpeta.
Missing key = Missing key
MsgErrorCode = Error code:
MsgErrorSavedataDataBroken = Save data was corrupt.
MsgErrorSavedataMSFull = Memory Stick full. Check your storage space.
MsgErrorSavedataNoData = Warning: no save data was found.
MsgErrorSavedataNoMS = Memory Stick not inserted.
No EBOOT.PBP, misidentified game = Falta o EBOOT.PBP, xogo mal identificado
Not a valid disc image. = Not a valid disc image.
OpenGLDriverError = Erro do driver OpenGL
PPSSPP doesn't support UMD Music. = PPSSPP doesn't support UMD Music.
PPSSPP doesn't support UMD Video. = PPSSPP doesn't support UMD Video.
PPSSPP plays PSP games, not PlayStation 1 or 2 games. = PPSSPP plays PSP games, not PlayStation 1 or 2 games.
PPSSPPDoesNotSupportInternet = De momento PPSSPP non soporta as funcións de rede para actualizacións de xogos, DLCs ou PSN.
PS1 EBOOTs are not supported by PPSSPP. = PPSSPP non puede executar os EBOOTs de PS1.
PSX game image detected. = O arquivo é unha imaxe MODE2, e PPSSPP non soporta xogos de PSX.
RAR file detected (Require UnRAR) = Arquivo comprimido (RAR).\nNecesita ser descomprimido (usa UnRAR).
RAR file detected (Require WINRAR) = Arquivo comprimido (RAR).\nNecesita ser descomprimido (usa WinRAR).
Running slow: try frameskip, sound is choppy when slow = Running slow: try frameskip, sound is choppy when slow
Running slow: Try turning off Software Rendering = Running slow: try turning off "software rendering"
Save encryption failed. This save won't work on real PSP = Erro ó cifrar os datos gardados. Non funcionarán nunha PSP real.
textures.ini filenames may not be cross-platform = "textures.ini" filenames may not be cross-platform.
This is a saved state, not a game. = This is a saved state, not a game.
This is save data, not a game. = This is save data, not a game.
Unable to create cheat file, disk may be full = Non se puido crear o arquivo de trucos, o disco podería estar cheo.
Unable to initialize rendering engine. = Unable to initialize rendering engine.
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
ZIP file detected (Require UnRAR) = Arquivo comprimido (ZIP).\nNecesita ser descomprimido (usa UnRAR).
ZIP file detected (Require WINRAR) = Arquivo comprimido (ZIP).\nNecesita ser descomprimido (usa WinRAR).
[Game]
Asia = Asia
ConfirmDelete = Confirmar
Create Game Config = Crear config. do xogo
Create Shortcut = Crear acceso directo
Delete Game = Borrar xogo
Delete Game Config = Borrar config. do xogo
Delete Save Data = Borrar datos
Europe = Europe
Game = Xogo
Game Settings = Axustes de xogo
Homebrew = Homebrew
Hong Kong = Hong Kong
InstallData = Instalación de datos
Japan = Japan
Korea = Korea
MB = MB
One moment please... = One moment please...
Play = Xogar
Remove From Recent = Borrar de recentes
SaveData = Datos
Setting Background = Setting background
Show In Folder = Mostrar en carpeta
USA = USA
Use UI background = Use UI background
[Graphics]
% of the void = % of the void
% of viewport = % of viewport
%, 0:unlimited = %, 0 = unlimited
(supersampling) = (supersampling)
(upscaling) = (upscaling)
1x PSP = PSP ×1
2x = ×2
2x PSP = PSP ×2
3x = ×3
3x PSP = PSP ×3
4x = ×4
4x PSP = PSP ×4
5x = ×5
5x PSP = PSP ×5
6x PSP = PSP ×6
7x PSP = PSP ×7
8x = ×8
8x PSP = PSP ×8
9x PSP = PSP ×9
10x PSP = PSP ×10
16x = ×16
Aggressive = Agresivo
Alternative Speed = Velocidade alternativa (%, 0 = ilimitada)
Alternative Speed 2 = Alternative speed 2 (in %, 0 = unlimited)
Anisotropic Filtering = Filtrado anisotrópico
Auto = Automático
Auto (1:1) = Automático (1:1)
Auto (same as Rendering) = Automático (igual á de renderizado)
Auto FrameSkip = Salto de cadros automático
Auto Scaling = Auto scaling
Backend = Motor gráfico
Balanced = Balanceado
Bicubic = Bicúbico
BlockTransfer Tip = Some games require this to be On for correct graphics
BlockTransferRequired = Warning: This game requires "simulate block transfer effects" to be set to On.
Both = Ambos
Buffer graphics commands (faster, input lag) = Buffer graphics commands (faster, input lag)
Buffered Rendering = Renderizado por búfer
BufferedRenderingRequired = Warning: This game requires "rendering mode" to be set to "buffered".
Camera = Camera
Camera Device = Camera device
Cardboard Screen Size = Tamaño de pantalla (en % da área visual)
Cardboard Screen X Shift = Desprazamento horizontal (en % do espazo en branco)
Cardboard Screen Y Shift = Desprazamento vertical (en % do espazo en branco)
Cardboard VR Settings = Axustes de Google Cardboard VR
Cheats = Cheats
Clear Speedhack = Clear framebuffers on first use (speed hack)
ClearSpeedhack Tip = Sometimes faster (mostly on mobile devices), may cause glitches
CPU Core = CPU core
Debugging = Depuración
DefaultCPUClockRequired = Warning: This game requires the CPU clock to be set to default.
Deposterize = Deposterizar
Deposterize Tip = Fixes visual banding glitches in upscaled textures
Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disable slower effects (speedup) = Desactivar efectos máis lentos (rápido)
Disabled = Disabled
Display layout editor = Display layout editor
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Dump next frame to log = Volcar seguinte cadro ó rexistro
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Control de tasa de cadros (FPS)
Frame Skipping = Saltar cadros
Frame Skipping Type = Frame skipping type
FullScreen = Pantalla completa
Hack Settings = Axustes de hacks (causarán erros gráficos)
Hardware Tessellation = Hardware tessellation
Hardware Transform = Transformación por hardware
hardware transform error - falling back to software = Hardware transform error, falling back to software
HardwareTessellation Tip = Uses hardware to make curves
High = Alta
Hybrid = Híbrido
Hybrid + Bicubic = Híbrido + Bicúbico
Ignore camera notch when centering = Ignore camera notch when centering
Internal Resolution = Resolución interna
Lazy texture caching = Caché de texturas diferido (rápido)
Linear = Lineal
Low = Baixa
LowCurves = Calidade de curvas bézier
LowCurves Tip = Only used by some games, controls smoothness of curves
Lower resolution for effects (reduces artifacts) = Lower resolution for effects (reduces artifacts)
Manual Scaling = Manual scaling
Medium = Media
Mode = Modo
Must Restart = Debes reiniciar PPSSPP para aplicar este cambio.
Native device resolution = Resolución nativa do dispositivo
Nearest = Pixelado
No buffer = No buffer
Non-Buffered Rendering = Skip buffer effects (non-buffered, faster)
None = Non
Number of Frames = Number of frames
Off = Non
OpenGL = OpenGL
Overlay Information = Información en pantalla
Partial Stretch = Partial stretch
Percent of FPS = Percent of FPS
Performance = Rendemento
Postprocessing effect = Postprocessing effects
Postprocessing Shader = Shader de postprocesado
Recreate Activity = Recreate activity
Render duplicate frames to 60hz = Render duplicate frames to 60 Hz
RenderDuplicateFrames Tip = Can make framerate smoother in games that run at lower framerates
Rendering Mode = Modo de renderizado
Rendering Resolution = Resolución de renderizado
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Retain changed textures = Retain changed textures (sometimes slower)
RetainChangedTextures Tip = Makes many games slower, but some games a lot faster
Rotation = Rotation
Safe = Seguro
Screen layout = Screen layout
Screen Scaling Filter = Filtro de escalado de pantalla
Show Debug Statistics = Mostrar estadísticas de depuración
Show FPS Counter = Mostrar contador de FPS
Simulate Block Transfer = Simulate block transfer effects
SoftGPU Tip = Currently VERY slow
Software Rendering = Renderizado por software (beta)
Software Skinning = «Skinning» por software
SoftwareSkinning Tip = Combine skinned model draws on the CPU, faster in most games
Speed = Velocidade
Stretching = Stretching
Texture Filter = Filtro de texturas
Texture Filtering = Filtrado de texturas
Texture Scaling = Escalado de texturas
Texture Shader = Texture shader
Turn off Hardware Tessellation - unsupported = Turn off "hardware tessellation": unsupported
Unlimited = Unlimited
Up to 1 = Up to 1
Up to 2 = Up to 2
Upscale Level = Nivel de escalado
Upscale Type = Tipo de escalado
UpscaleLevel Tip = CPU heavy - some scaling may be delayed to avoid stutter
Use all displays = Use all displays
Vertex Cache = Caché de vértices
VertexCache Tip = Faster, but may cause temporary flicker
VSync = Sincronización vertical
Vulkan = Vulkan
Window Size = Tamaño de ventana
xBRZ = xBRZ
[InstallZip]
Delete ZIP file = Borrar arquivo ZIP
Install = Instalar
Install game from ZIP file? = Instalar xogo dende un arquivo ZIP?
Install textures from ZIP file? = Install textures from ZIP file?
Installed! = ¡Instalado!
Texture pack doesn't support install = Texture pack doesn't support install
Zip archive corrupt = ZIP archive corrupt
Zip file does not contain PSP software = ZIP file does not contain PSP software
[KeyMapping]
Autoconfigure = Autoconfigurar
Autoconfigure for device = Autoconfigurar para dispositivo
Clear All = Borrar todo
Default All = Restaurar
Map a new key for = Pulsa unha tecla para
Map Key = Map key
Map Mouse = Map mouse
Test Analogs = Probar analóx.
You can press ESC to cancel. = You can press Esc to cancel.
[MainMenu]
Browse = Buscar...
Buy PPSSPP Gold = Buy PPSSPP Gold
Choose folder = Choose folder
Credits = Créditos
PPSSPP Homebrew Store = Tenda de Homebrew de PPSSPP
Exit = Saír
Game Settings = Axustes
Games = Xogos
Give PPSSPP permission to access storage = Give PPSSPP permission to access storage
Homebrew & Demos = Homebrew e demos
How to get games = Como consigo xogos?
How to get homebrew & demos = Como consigo homebrew e demos?
Load = Cargar...
Loading... = Loading...
PinPath = Pin
PPSSPP can't load games or save right now = PPSSPP can't load games or save right now
Recent = Recentes
SavesAreTemporary = PPSSPP is saving in temporary storage
SavesAreTemporaryGuidance = Extract PPSSPP somewhere to save permanently
SavesAreTemporaryIgnore = Ignore warning
UnpinPath = Unpin
www.ppsspp.org = Sitio oficial
[MainSettings]
Audio = Son
Controls = Controis
Graphics = Gráficos
Networking = Xogo en rede
System = Sistema
Tools = Tools
[MappableControls]
Alt speed 1 = Alt speed 1
Alt speed 2 = Alt speed 2
An.Down = An.Abaixo
An.Left = An.Esquerda
An.Right = An.Dereita
An.Up = An.Arriba
Analog limiter = Limitador analóx.
Analog Stick = Stick analóxico
Audio/Video Recording = Audio/Video recording
Auto Analog Rotation (CCW) = Auto analog rotation (CCW)
Auto Analog Rotation (CW) = Auto analog rotation (CW)
AxisSwap = Invertir eixes
Circle = Circle
Cross = Cross
D-pad down = D-pad down
D-pad left = D-pad left
D-pad right = D-pad right
D-pad up = D-pad up
DevMenu = DevMenu
Down = D-Pad Abaixo
Dpad = D-Pad
Frame Advance = Frame advance
Hold = Hold
Home = Home
L = L
Left = D-Pad Esquerda
Load State = Cargar estado
Mute toggle = Mute toggle
Next Slot = Seguinte ranura
None = None
Note = Note
OpenChat = Open chat
Pause = Pausa
R = R
RapidFire = Fogo rápido
Remote hold = Remote hold
Rewind = Rebobinar
Right = D-Pad Dereita
Right Analog Stick (tap to customize) = Right analog stick (tap to customize)
RightAn.Down = AnDer.Abaixo
RightAn.Left = AnDer.Esquerda
RightAn.Right = AnDer.Dereita
RightAn.Up = AnDer.Arriba
Rotate Analog (CCW) = Rotate analog (CCW)
Rotate Analog (CW) = Rotate analog (CW)
Save State = Gardar estado
Screen = Screen
Screenshot = Screenshot
Select = Select
SpeedToggle = Alternar veloc.
Square = Square
Start = Start
Texture Dumping = Texture dumping
Texture Replacement = Texture replacement
Toggle Fullscreen = Toggle fullscreen
Toggle mode = Toggle mode
Triangle = Triangle
Unthrottle = Modo turbo
Up = D-Pad Arriba
Vol + = Vol +
Vol - = Vol -
Wlan = WLAN
[Networking]
Adhoc Multiplayer forum = Visitar foro de xogo en rede
AdHoc Server = Ad hoc server
AdhocServer Failed to Bind Port = Ad hoc server failed to bind port
Auto = Auto
Bottom Center = Bottom center
Bottom Left = Bottom left
Bottom Right = Bottom right
Center Left = Center left
Center Right = Center right
Change Mac Address = Cambiar dirección MAC
Change proAdhocServer Address = Cambiar IP de proAdhocServer (localhost = multiple instances)
Chat = Chat
Chat Button Position = Chat button position
Chat Here = Chat here
Chat Screen Position = Chat screen position
Disconnected from AdhocServer = Disconnected from ad hoc server
DNS Error Resolving = DNS error resolving
Enable built-in PRO Adhoc Server = Activar servidor Adhoc PRO integrado
Enable network chat = Enable network chat
Enable networking = Activar xogo en rede/WLAN (beta)
Enable UPnP = Enable UPnP (need a few seconds to detect)
EnableQuickChat = Enable quick chat
Enter a new PSP nickname = Enter a new PSP nickname
Enter Quick Chat 1 = Enter quick chat 1
Enter Quick Chat 2 = Enter quick chat 2
Enter Quick Chat 3 = Enter quick chat 3
Enter Quick Chat 4 = Enter quick chat 4
Enter Quick Chat 5 = Enter quick chat 5
Error = Error
Failed to Bind Localhost IP = Failed to bind localhost IP
Failed to Bind Port = Failed to bind port
Failed to connect to Adhoc Server = Failed to connect to ad hoc server
Forced First Connect = Forced first connect (faster connect)
Invalid IP or hostname = Invalid IP or hostname
Minimum Timeout = Minimum timeout (override in ms, 0 = default)
Misc = Miscellaneous (default = PSP compatibility)
Network Initialized = Rede inicializada
Please change your Port Offset = Please change your port offset
Port offset = Port offset(0 = PSP compatibility)
proAdhocServer Address: = Ad hoc server address:
Quick Chat 1 = Quick chat 1
Quick Chat 2 = Quick chat 2
Quick Chat 3 = Quick chat 3
Quick Chat 4 = Quick chat 4
Quick Chat 5 = Quick chat 5
QuickChat = Quick chat
Send = Send
Send Discord Presence information = Send Discord "Rich Presence" information
TCP No Delay = TCP No Delay (faster TCP)
Top Center = Top center
Top Left = Top left
Top Right = Top right
Unable to find UPnP device = Unable to find UPnP device
UPnP (port-forwarding) = UPnP (port forwarding)
UPnP need to be reinitialized = UPnP need to be reinitialized
UPnP use original port = UPnP use original port (enabled = PSP compatibility)
Validating address... = Validating address...
WLAN Channel = WLAN channel
You're in Offline Mode, go to lobby or online hall = You're in offline mode, go to lobby or online hall
[Pause]
Cheats = Trucos
Continue = Continuar
Create Game Config = Crear config. do xogo
Delete Game Config = Borrar config. do xogo
Exit to menu = Saír ó menú
Game Settings = Axustes do xogo
Load State = Cargar estado
Rewind = Rebobinar
Save State = Gardar estado
Settings = Axustes xerais
Switch UMD = Cambiar UMD
[PostShaders]
(duplicated setting, previous slider will be used) = (duplicated setting, previous slider will be used)
4xHqGLSL = 4×HQ GLSL
5xBR = 5xBR
5xBR-lv2 = 5xBR-lv2
AAColor = AA + cor
Amount = Amount
Black border = Black border
Bloom = Brillo
Brightness = Brightness
Cartoon = Debuxos animados
ColorCorrection = Color correction
Contrast = Contrast
CRT = Monitor con «scanlines» (CRT)
FXAA = Antialiasing FXAA
Gamma = Gamma
Grayscale = Escala de grises
Intensity = Intensity
InverseColors = Invertir cores
Natural = Cores naturais
NaturalA = Natural Colors (no blur)
Off = Non
Power = Power
PSPColor = PSP color
Saturation = Saturation
Scanlines = Scanlines (CRT)
Sharpen = Afiado
SSAA(Gauss) = Supersampling AA (Gauss)
Tex4xBRZ = 4xBRZ
UpscaleSpline36 = Spline36 «upscaler»
VideoSmoothingAA = VideoSmoothingAA
Vignette = Viñeta
[PSPCredits]
all the forum mods = all the forum mods
build server = build server
Buy Gold = Comprar PPSSPP
check = También recomendamoste o emulador de GC/Wii Dolphin:
CheckOutPPSSPP = Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/
contributors = Colaboradores:
created = Creado por:
Discord = Discord
info1 = Só para propósitos educativos
info2 = Asegúrate de ter os dereitos de cualquer xogo
info3 = que uses, xa sexa do UMD orixinal ou dunha copia dixital
info4 = de PSN coa túa PSP orixinal.
info5 = PSP é unha marca rexistrada de Sony Corporation.
iOS builds = iOS builds
license = Software libre baixo licencia GPL 2.0+
list = foro oficial, fíos de discusión e lista de compatibilidade
PPSSPP Forums = Foro PPSSPP
Privacy Policy = Privacy policy
Share PPSSPP = Compartir...
specialthanks = Agradecementos especiais a:
specialthanksKeithGalocy = at NVIDIA (hardware, advice)
specialthanksMaxim = for his amazing Atrac3+ decoder work
testing = testing
this translation by = Traducido por:
title = Emulador de PSP rápido e portable
tools = Software libre utilizado:
# Add translators or contributors who translated PPSSPP into your language here.
# Add translators1-6 for up to 6 lines of translator credits.
# Leave extra lines blank. 4 contributors per line seems to look best.
translators1 = PpmeiS, Puniasterus e Swyter.
translators2 =
translators3 =
translators4 =
translators5 =
translators6 =
Twitter @PPSSPP_emu = Twitter @PPSSPP_emu
website = Sitio web oficial:
written = Escrito en linguaxe C++ para unha mellor portabilidade e velocidade
[RemoteISO]
Browse Games = Browse games
Local Server Port = Local server port
Manual Mode Client = Manual mode client
Remote disc streaming = Remote disc streaming
Remote Port = Remote port
Remote Server = Remote server
Remote Subdirectory = Remote subdirectory
RemoteISODesc = Games in your recent list will be shared
RemoteISOLoading = Connected, loading game list...
RemoteISOScanning = Scanning... Click "share games" on your server device
RemoteISOScanningTimeout = Scanning... check your desktop's firewall settings
RemoteISOWifi = Note: Connect both devices to the same Wi-Fi network
RemoteISOWinFirewall = WARNING: Windows Firewall is blocking sharing
Settings = Settings
Share Games (Server) = Share games (server)
Share on PPSSPP startup = Share on PPSSPP startup
Stop Sharing = Stop sharing
Stopping.. = Stopping...
[Reporting]
Bad = Malos
FeedbackDelayInfo = Your data is being submitted in the background.
FeedbackDesc = Como vai o xogo? Que o saiba a comunidade!
FeedbackDisabled = Compatibility server reports must be enabled.
FeedbackIncludeCRC = Note: Battery will be used to send a disc CRC
FeedbackIncludeScreen = Include a screenshot
FeedbackSubmitDone = Your data has been submitted.
FeedbackSubmitFail = Could not submit data to server. Try updating PPSSPP.
FeedbackThanks = Thanks for your feedback!
Gameplay = Xogabilidade
Graphics = Gráficos
Great = Xeniais
In-game = Funciona
In-game Description = Gets into gameplay, but too buggy to complete
Menu/Intro = Menú/Intro
Menu/Intro Description = Can't get into the game itself
Nothing = Nada
Nothing Description = Completely broken
OK = Bos
Open Browser = Abrir navegador
Overall = Xeral
Perfect = Perfecto
Perfect Description = Flawless emulation for the entire game - great!
Plays = Xogable
Plays Description = Fully playable but might be with glitches
ReportButton = Informar de erro
Speed = Velocidade
Submit Feedback = Enviar informe
SuggestionConfig = See reports on website for good settings.
SuggestionCPUSpeed0 = Disable locked CPU speed setting.
SuggestionDowngrade = Downgrade to an older PPSSPP version (please report this bug).
SuggestionsFound = Other users have reported better results. Tap "View Feedback" for more detail.
SuggestionsNone = This game isn't working for other users too.
SuggestionsWaiting = Submitting and checking other users feedback...
SuggestionUpgrade = Upgrade to a newer PPSSPP build.
SuggestionVerifyDisc = Check your ISO is a good copy of your disc.
Unselected Overall Description = How well does this game emulate?
View Feedback = View all feedbacks
[Savedata]
Date = Date
Filename = Filename
No screenshot = No screenshot
None yet. Things will appear here after you save. = None yet. Things will appear here after you save.
Save Data = Save data
Save States = Save states
Savedata Manager = Savedata manager
Size = Size
[Screen]
Cardboard VR OFF = Cardboard VR off
Chainfire3DWarning = AVISO: Chainfire3D detectado, pode causar problemas.
Failed to load state = Erro ó cargar o estado
Failed to save state = Error ó gardar o estado
fixed = Velocidad: alternativa
GLToolsWarning = AVISO: GLTools detectado, pode causar problemas.
In menu = In menu
Load savestate failed = Erro ó cargar o estado gardado
Loaded State = Estado cargado
Loaded. Save in game, restart, and load for less bugs. = Loaded. Save in game, restart, and load for less bugs.
LoadStateDoesntExist = Erro ó cargar o estado: non existe o arquivo.
LoadStateWrongVersion = Erro ó cargar o estado: o arquivo é dunha versión anterior de PPSSPP.
norewind = Non hai estados gardados de rebobinado dispoñibles.
Playing = Playing
PressESC = Presiona Esc para abrir o menú de pausa.
replaceTextures_false = Textures no longer are being replaced.
replaceTextures_true = Texture replacement is enabled.
Save State Failed = Erro ó gardar o estado.
Saved State = Estado gardado
saveNewTextures_false = Texture saving was disabled.
saveNewTextures_true = Textures will now be saved to your storage.
SpeedCustom2 = Speed: alternate 2
standard = Velocidad: estándar
Untitled PSP game = Untitled PSP game
[Store]
Already Installed = Xa instalado
Connection Error = Erro de conexión
Install = Instalar
Launch Game = Launch game
Loading... = Cargando...
MB = MB
Size = Tamaño
Uninstall = Desinstalar
[SysInfo]
%d (%d per core, %d cores) = %d (%d per core, %d cores)
%d bytes = %d bytes
(none detected) = (none detected)
3D API = 3D API
ABI = ABI
API Version = API version
Audio Information = Audio information
Board = Board
Build Config = Build config
Build Configuration = Build Configuration
Built by = Built by
Core Context = Core context
Cores = Cores
CPU Extensions = CPU extensions
CPU Information = CPU information
CPU Name = Name
D3DCompiler Version = D3DCompiler version
Debug = Debug
Debugger Present = Debugger present
Device Info = Device info
Display Information = Display information
Driver Version = Driver version
EGL Extensions = EGL extensions
Frames per buffer = Frames per buffer
GPU Information = GPU information
High precision float range = High precision float range
High precision int range = High precision int range
Lang/Region = Lang/Region
Memory Page Size = Memory page size
Native Resolution = Native resolution
OGL Extensions = OGL extensions
OpenGL ES 2.0 Extensions = OpenGL ES 2.0 extensions
OpenGL ES 3.0 Extensions = OpenGL ES 3.0 extensions
OpenGL Extensions = OpenGL extensions
Optimal frames per buffer = Optimal frames per buffer
Optimal sample rate = Optimal sample rate
OS Information = OS information
PPSSPP build = PPSSPP build
Refresh rate = Refresh rate
Release = Release
RW/RX exclusive = RW/RX exclusive
Sample rate = Sample rate
Shading Language = Shading language
Sustained perf mode = Sustained perf mode
System Information = System information
System Name = Name
System Version = System version
Threads = Threads
Vendor = Vendor
Vendor (detected) = Vendor (detected)
Version Information = Version information
Vulkan Extensions = Vulkan extensions
Vulkan Features = Vulkan features
[System]
(broken) = (broken)
12HR = 12 hrs
24HR = 24 hrs
Auto = Auto
Auto Load Savestate = Auto load savestate
AVI Dump started. = AVI dump started
AVI Dump stopped. = AVI dump stopped
Cache ISO in RAM = Cargar ISO completa en RAM
Change CPU Clock = Velocidade CPU PSP (unstable)
Change Memory Stick folder = Change Memory Stick folder
Change Memory Stick Size = Change Memory Stick size (GB)
Change Nickname = Cambiar alcume PSP
ChangingMemstickPath = Save games, save states, and other data will not be copied to this folder.\n\nChange the Memory Stick folder?
ChangingMemstickPathInvalid = That path couldn't be used to save Memory Stick files.
ChangingMemstickPathNotExists = That folder doesn't exist yet.\n\nSave games, save states, and other data will not be copied to this folder.\n\nCreate a new Memory Stick folder?
Cheats = Trucos (beta, ver foros)
Clear Recent = Clear "Recent"
Clear Recent Games List = Borrar lista de xogos recentes
Clear UI background = Clear UI background
Confirmation Button = Botón de confirmación
Date Format = Formato de data
Day Light Saving = Horario de verán
DDMMYYYY = DD/MM/AAAA
Decrease size = Decrease size
Developer Tools = Ferramentas de desenrolo
Display Extra Info = Display extra info
Display Games on a grid = Display "Games" on a grid
Display Homebrew on a grid = Display "Homebrew && Demos" on a grid
Display Recent on a grid = Display "Recent" on a grid
Dynarec (JIT) = Dynarec (JIT)