-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathbasemodui_spanish.txt
2965 lines (2751 loc) · 201 KB
/
basemodui_spanish.txt
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
"lang"
{
"Language" "spanish"
"Tokens"
{
"[english]L4D360UI_AudioVideo" "Audio/Video"
"L4D360UI_AudioVideo" "Audio/Vídeo"
"[english]L4D360UI_ChangeClass" "Change Class"
"L4D360UI_ChangeClass" "Cambiar de clase"
"[english]L4D360UI_ChangeTeam" "Change Team"
"L4D360UI_ChangeTeam" "Cambiar de equipo"
"[english]L4D360UI_InYourParty" "In Your Party"
"L4D360UI_InYourParty" "En tu grupo"
"[english]L4D360UI_Controller" "Controller"
"L4D360UI_Controller" "Mando"
"[english]L4D360UI_Controller1" "Controller 1"
"L4D360UI_Controller1" "Mando 1"
"[english]L4D360UI_Controller2" "Controller 2"
"L4D360UI_Controller2" "Mando 2"
"[english]L4D360UI_KeyboardMouse" "Keyboard/Mouse"
"L4D360UI_KeyboardMouse" "Teclado/ratón"
"[english]L4D360UI_Downloads" "Downloads"
"L4D360UI_Downloads" "Descargas"
"[english]L4D360UI_Friends" "Friends"
"L4D360UI_Friends" "Amigos"
"[english]L4D360UI_CreateLobby" "Create Game"
"L4D360UI_CreateLobby" "Crear Partida"
"[english]L4D360UI_GameOptions" "Game Options"
"L4D360UI_GameOptions" "Opciones de partida"
"[english]L4D360UI_TitleSafeAdjustment" "Title Safe Adjustment"
"L4D360UI_TitleSafeAdjustment" "Ajuste seguro de título"
"[english]L4D360UI_SystemLink" "LAN"
"L4D360UI_SystemLink" "LAN"
"[english]L4D360UI_XboxLive" "Xbox LIVE"
"L4D360UI_XboxLive" "Xbox LIVE"
"[english]L4D360UI_Host" "Lobby Leader"
"L4D360UI_Host" "Líder de la partida"
"[english]L4D360UI_Join" "Join"
"L4D360UI_Join" "Unirse"
"[english]L4D360UI_JoinAGame" "Join a Game"
"L4D360UI_JoinAGame" "Unirse a una partida"
"[english]L4D360UI_Public" "Public"
"L4D360UI_Public" "Público"
"[english]L4D360UI_GameInfo" "View Gamer Card"
"L4D360UI_GameInfo" "Ver tarjeta de jugador"
"[english]L4D360UI_GamerMessage" "Message"
"L4D360UI_GamerMessage" "Mensaje"
"[english]L4D360UI_InvitationOnly" "Invitation Only"
"L4D360UI_InvitationOnly" "Sólo invitación"
"[english]L4D360UI_StartGame" "CREATE GAME"
"L4D360UI_StartGame" "INICIAR PARTIDA"
"[english]L4D360UI_GameSettings" "Game Settings"
"L4D360UI_GameSettings" "Configuración de partida"
"[english]L4D360UI_Survivors" "Survivors"
"L4D360UI_Survivors" "Sobrevivientes"
"[english]L4D360UI_Infected" "Infected"
"L4D360UI_Infected" "Infectados"
"[english]L4D360UI_Spectator" "Spectator"
"L4D360UI_Spectator" "Espectador"
"[english]L4D360UI_Player" "Player"
"L4D360UI_Player" "Jugador"
"[english]L4D360UI_Mute" "Mute"
"L4D360UI_Mute" "Silencio"
"[english]L4D360UI_MutePlayer" "Mute Player"
"L4D360UI_MutePlayer" "Silenciar jugador"
"[english]L4D360UI_UnMutePlayer" "Un-Mute Player"
"L4D360UI_UnMutePlayer" "Deshabilitar silencio jugador"
"[english]L4D360UI_PlayerMutedInGuide" "Muted in Guide"
"L4D360UI_PlayerMutedInGuide" "Silenciado en guía"
"[english]L4D360UI_LiveMatchChooser" "Find a Game"
"L4D360UI_LiveMatchChooser" "Encontrar una partida"
"[english]L4D360UI_LiveMatchCustomFilter" "Find a Custom Match"
"L4D360UI_LiveMatchCustomFilter" "Buscar una partida personalizada"
"[english]L4D360UI_Scenario" "Campaign"
"L4D360UI_Scenario" "Campaña"
"[english]L4D360UI_Difficulty" "Difficulty"
"L4D360UI_Difficulty" "Dificultad"
"[english]L4D360UI_Loading" "Loading"
"L4D360UI_Loading" "Cargando"
"[english]L4D360UI_VoteOptions" "Vote Options"
"L4D360UI_VoteOptions" "Opciones de voto"
"[english]L4D360UI_Game" "Game"
"L4D360UI_Game" "Juego"
"[english]L4D360UI_Storage" "Storage"
"L4D360UI_Storage" "Almacenamiento"
"[english]L4D360UI_InvertYAxis" "Invert Y-Axis"
"L4D360UI_InvertYAxis" "Invertir eje Y"
"[english]L4D360UI_Vibration" "Vibration"
"L4D360UI_Vibration" "Vibración"
"[english]L4D360UI_LookSensitivity" "Look Sensitivity"
"L4D360UI_LookSensitivity" "Sensibilidad de la vista"
"[english]L4D360UI_JoinSurvivor" "Join Survivor"
"L4D360UI_JoinSurvivor" "Unirse a los supervivientes"
"[english]L4D360UI_JoinInfected" "Join Infected"
"L4D360UI_JoinInfected" "Unirse a los infectados"
"[english]L4D360UI_Spectate" "Spectate"
"L4D360UI_Spectate" "Espectador"
"[english]L4D360UI_Random" "Random"
"L4D360UI_Random" "Aleatorio"
"[english]L4D360UI_Boomer" "Boomer"
"L4D360UI_Boomer" "Boomer"
"[english]L4D360UI_Hunter" "Hunter"
"L4D360UI_Hunter" "Hunter"
"[english]L4D360UI_Smoker" "Smoker"
"L4D360UI_Smoker" "Smoker"
"[english]L4D360UI_ForceTeamChange" "Force Team Change"
"L4D360UI_ForceTeamChange" "Forzar cambio de equipo"
"[english]L4D360UI_BootPlayer" "Kick Player"
"L4D360UI_BootPlayer" "Expulsar a jugador"
"[english]L4D360UI_ChangeScenario" "Start New Campaign"
"L4D360UI_ChangeScenario" "Iniciar nueva campaña"
"[english]L4D360UI_ReturnToLobby" "Return to Lobby"
"L4D360UI_ReturnToLobby" "Volver a sala de espera"
"[english]L4D360UI_ChangeDifficulty" "Change Difficulty"
"L4D360UI_ChangeDifficulty" "Cambiar dificultad"
"[english]L4D360UI_SearchingForLiveGames" "Searching"
"L4D360UI_SearchingForLiveGames" "Buscando"
"[english]L4D360UI_InGameDifficultySelect" "CHOOSE NEW DIFFICULTY LEVEL"
"L4D360UI_InGameDifficultySelect" "ELEGIR UN NUEVO NIVEL DE DIFICULTAD"
"[english]L4D360UI_PlayerInformation" "Player Information"
"L4D360UI_PlayerInformation" "Información del jugador"
"[english]L4D360UI_Achieved" "Achieved"
"L4D360UI_Achieved" "Logrado"
"[english]L4D360UI_Kick" "Kick Player"
"L4D360UI_Kick" "Expulsar a jugador"
"[english]L4D360UI_RestartScenario" "Restart Campaign"
"L4D360UI_RestartScenario" "Reiniciar campaña"
"[english]L4D360UI_StartNewCampaign" "START NEW CAMPAIGN"
"L4D360UI_StartNewCampaign" "INICIAR NUEVA CAMPAÑA"
"[english]L4D360UI_ViewGamerCard" "View Gamer Card"
"L4D360UI_ViewGamerCard" "Ver tarjeta de jugador"
"[english]L4D360UI_ViewSteamID" "View Steam Profile"
"L4D360UI_ViewSteamID" "Ver identificador de Steam"
"[english]L4D360UI_ViewSteamGroup" "View Steam Group"
"L4D360UI_ViewSteamGroup" "Ver grupo de Steam"
"[english]L4D360UI_ViewSteamStats" "View Stats"
"L4D360UI_ViewSteamStats" "Ver Estadísticas"
"[english]L4D360UI_BlockPlayer" "Block All Communications"
"L4D360UI_BlockPlayer" "Bloquear todas las comunicaciones"
"[english]L4D360UI_SendMessage" "Send Message"
"L4D360UI_SendMessage" "Enviar mensaje"
"[english]L4D360UI_PushToTalk" "Push to Talk"
"L4D360UI_PushToTalk" "Pulsar para hablar"
"[english]L4D360UI_OpenMic" "Open Microphone"
"L4D360UI_OpenMic" "Micrófono abierto"
"[english]L4D360UI_RestartChapter" "Restart Chapter"
"L4D360UI_RestartChapter" "Reiniciar Capitulo"
"[english]L4D360UI_RestartChapter_Tip" "Call a vote to restart the chapter."
"L4D360UI_RestartChapter_Tip" "Iniciar votacion para reiniciar el capitulo."
"[english]L4D360UI_ChangeScenario_Tip" "Call a vote to change the campaign."
"L4D360UI_ChangeScenario_Tip" "Iniciar votacion para cambiar la campaña."
"[english]L4D360UI_ChangeDifficulty_Tip" "Call a vote to change the difficulty level."
"L4D360UI_ChangeDifficulty_Tip" "Iniciar votacion para cambiar el nivel de dificultad."
"[english]L4D360UI_RestartScenario_Tip" "Call a vote to restart the campaign."
"L4D360UI_RestartScenario_Tip" "Iniciar votacion para reiniciar la campaña."
"[english]L4D360UI_BootPlayer_Tip" "Call a vote to remove a disruptive player from the game."
"L4D360UI_BootPlayer_Tip" "Iniciar votacion para eliminar de la partida a un jugador problemático."
"[english]L4D360UI_ReturnToLobby_Tip" "Call a vote to quit the campaign and return to the Lobby."
"L4D360UI_ReturnToLobby_Tip" "Iniciar votacion para abandonar la campaña y volver a la sala de espera."
"[english]L4D360UI_Lobby_NotInJoinableGame" "Not in Joinable Game"
"L4D360UI_Lobby_NotInJoinableGame" "No te puedes unir"
"[english]L4D360UI_Lobby_NotInJoinableGame_Tip" "Friend is playing in a full server, or in a game mode that you are unable to join."
"L4D360UI_Lobby_NotInJoinableGame_Tip" "Tu amigo está jugando en un servidor lleno o en un modo de juego al que no puedes unirte."
"[english]L4D360UI_Lobby_CampaignUnavailable" "Campaign Unavailable"
"L4D360UI_Lobby_CampaignUnavailable" "Campaña no disponible"
"[english]L4D360UI_Lobby_LocalMapNewer" "Local Map is Newer"
"L4D360UI_Lobby_LocalMapNewer" "Local Map is Newer"
"[english]L4D360UI_Lobby_LocalMapOlder" "Local Map is Older"
"L4D360UI_Lobby_LocalMapOlder" "Local Map is Older"
"[english]L4D360UI_FoundGames_Join_Success" "Join this selected game."
"L4D360UI_FoundGames_Join_Success" "Unirse a la partida seleccionada."
"[english]L4D360UI_FoundGames_Join_Fail_Not_In_Joinable" "Player is not in a joinable game."
"L4D360UI_FoundGames_Join_Fail_Not_In_Joinable" "El jugador no está en una partida a la que puedas unirte."
"[english]L4D360UI_FoundGames_Join_Fail_No_Slots" "Game has no empty player slots."
"L4D360UI_FoundGames_Join_Fail_No_Slots" "No hay plazas libres en la partida."
"[english]L4D360UI_FoundGames_Join_Fail_Private_Game" "Can not join a private game."
"L4D360UI_FoundGames_Join_Fail_Private_Game" "No puedes unirte a una partida privada."
"[english]L4D360UI_FoundGames_Join_Fail_In_Finale" "Can not join a game in the finale."
"L4D360UI_FoundGames_Join_Fail_In_Finale" "No puedes unirte a una partida en el final."
"[english]L4D360UI_FoundGames_Join_Download" "Download this campaign Addon."
"L4D360UI_FoundGames_Join_Download" "Descarga esta campaña de ampliación."
"[english]L4D360UI_L4D360UI_FoundGames_Join_Modded" "Player is running a different game version than you."
"L4D360UI_L4D360UI_FoundGames_Join_Modded" "Player is running a different game version than you."
"[english]L4D360UI_FoundGames_Author" "by %s1"
"L4D360UI_FoundGames_Author" "por %s1"
"[english]L4D360UI_FoundGames_WebSite" "Site: %s1"
"L4D360UI_FoundGames_WebSite" "Sitio: %s1"
"[english]L4D360UI_FoundGames_Join_Lobby_Campaign" "Join a lobby for this selected campaign."
"L4D360UI_FoundGames_Join_Lobby_Campaign" "Unirse a la sala de espera de esta campaña seleccionada."
"[english]L4D360UI_FoundGames_Join_Lobby_Chapter" "Join a lobby for this selected chapter."
"L4D360UI_FoundGames_Join_Lobby_Chapter" "Unirse a la sala de espera de este capítulo seleccionado."
"[english]L4D360UI_FoundGames_Join_Game_Campaign" "Join a game in progress for this selected campaign."
"L4D360UI_FoundGames_Join_Game_Campaign" "Unirse a una partida en curso de esta campaña seleccionada."
"[english]L4D360UI_FoundGames_Join_Game_Chapter" "Join a game in progress for this selected chapter."
"L4D360UI_FoundGames_Join_Game_Chapter" "Unirse a una partida en curso de este capítulo seleccionado."
"[english]L4D360UI_LeaveInviteConf" "Join another game?"
"L4D360UI_LeaveInviteConf" "¿Unirse a otra partida?"
"[english]L4D360UI_LeaveInviteConfTxt" "Press A to leave this game and join another."
"L4D360UI_LeaveInviteConfTxt" "Pulsa A para confirmar que quieres abandonar esta partida y unirte a otra."
"[english]L4D360UI_LeaveLobbyConf" "Leave this lobby?"
"L4D360UI_LeaveLobbyConf" "¿Seguro que deseas salir?"
"[english]L4D360UI_LeaveLobbyConfHostingSysLink" "You are currently the Lobby Leader of a LAN game."
"L4D360UI_LeaveLobbyConfHostingSysLink" "En este momento eres el líder de la sala de espera de una partida LAN."
"[english]L4D360UI_LeaveLobbyConfSysLink" "You are currently a member of a LAN game."
"L4D360UI_LeaveLobbyConfSysLink" "En este momento eres miembro de una partida LAN."
"[english]L4D360UI_LeaveLobbyConfHostingLive" "You are currently the Lobby Leader of an Xbox LIVE game."
"L4D360UI_LeaveLobbyConfHostingLive" "En este momento eres el líder de la sala de espera de una partida Xbox LIVE."
"[english]L4D360UI_LeaveLobbyConfLive" "You are currently part of an Xbox LIVE game."
"L4D360UI_LeaveLobbyConfLive" "En este momento estás participando en una partida Xbox LIVE."
"[english]L4D360UI_LeaveMultiplayerConf" "Leave the game?"
"L4D360UI_LeaveMultiplayerConf" "¿Seguro que deseas abandonar la partida?"
"[english]L4D360UI_LeaveMultiplayerConfMsg" ""
"L4D360UI_LeaveMultiplayerConfMsg" ""
"[english]L4D360UI_LeaveMultiplayerConf_ServerOwner" "End the game?"
"L4D360UI_LeaveMultiplayerConf_ServerOwner" "¿Seguro que deseas finalizar la partida?"
"[english]L4D360UI_LeaveMultiplayerConfMsg_ServerOwner" "You'll cause all other players to be disconnected!"
"L4D360UI_LeaveMultiplayerConfMsg_ServerOwner" "Se desconectará al resto de jugadores."
"[english]L4D360UI_ChangeTeamConf" "Change teams?"
"L4D360UI_ChangeTeamConf" "¿Seguro que deseas cambiar de equipo?"
"[english]L4D360UI_ChangeTeamConfMessage" "Your teammates might not be happy about that..."
"L4D360UI_ChangeTeamConfMessage" "Puede que a tus compañeros no les haga gracia..."
"[english]L4D360UI_RestartScenarioConf" "Restart?"
"L4D360UI_RestartScenarioConf" "¿Seguro que deseas reiniciar?"
"[english]L4D360UI_RestartScenarioConfMsg" "You'll have to go back to the first chapter of this campaign."
"L4D360UI_RestartScenarioConfMsg" "Deberás volver al primer capítulo de esta campaña."
"[english]L4D360UI_StartNewCampaignConf" "Start a new campaign?"
"L4D360UI_StartNewCampaignConf" "¿Seguro que quieres empezar una nueva campaña?"
"[english]L4D360UI_StartNewCampaignConfMsg" "You and your team will lose your progress."
"L4D360UI_StartNewCampaignConfMsg" "Tu equipo y tú perderan los avances."
"[english]L4D360UI_MainMenu_SplitscreenDisableConf" "Disable splitscreen?"
"L4D360UI_MainMenu_SplitscreenDisableConf" "¿Seguro de que deseas desactivar la pantalla partida?"
"[english]L4D360UI_MainMenu_SplitscreenDisableConfMsg" "Only one player will be able to play while splitscreen is disabled."
"L4D360UI_MainMenu_SplitscreenDisableConfMsg" "Mientras la pantalla partida esté desactivada, sólo podrá jugar un jugador."
"[english]L4D360UI_MainMenu_SplitscreenChangeConfMsg" "You must exit to the main menu to change this setting.\nAny unsaved progress will be lost.\nDo you want to leave the current game now?"
"L4D360UI_MainMenu_SplitscreenChangeConfMsg" "Debes salir al menú principal para cambiar esta configuración.\n¿Deseas abandonar la partida actual ahora?"
"[english]L4D360UI_VersusSoftLockConf" "Are you ready to play Versus?"
"L4D360UI_VersusSoftLockConf" "¿Estás listo para el modo Enfrentamiento?"
"[english]L4D360UI_VersusSoftLockConfMsg" "Versus assumes you've mastered Campaign Mode.\nIt is recommended that you beat at least one campaign before playing Versus Mode."
"L4D360UI_VersusSoftLockConfMsg" "El modo Enfrentamiento asume que ya dominas el modo Campaña.\nEs recomendable que acabes al menos una campaña antes de jugar un Enfrentamiento."
"[english]L4D360UI_Completed" "Completed"
"L4D360UI_Completed" "Completado"
"[english]L4D360UI_Disabled" "Disabled"
"L4D360UI_Disabled" "Desactivado"
"[english]L4D360UI_Reset" "Reset"
"L4D360UI_Reset" "Reiniciar"
"[english]L4D360UI_DisabledDefault" "Disabled (Default)"
"L4D360UI_DisabledDefault" "Desactivado (Predeterminado)"
"[english]L4D360UI_Enabled" "Enabled"
"L4D360UI_Enabled" "Activado"
"[english]L4D360UI_EnabledDefault" "Enabled (Default)"
"L4D360UI_EnabledDefault" "Activado (Predeterminado)"
"[english]L4D360UI_Gamerscore" "Gamerscore"
"L4D360UI_Gamerscore" "Puntuación de jugador"
"[english]L4D360UI_AutoCrouch" "Auto-Crouch"
"L4D360UI_AutoCrouch" "Auto-agacharse"
"[english]L4D360UI_CreateAGame" "Create Game"
"L4D360UI_CreateAGame" "Crear partida"
"[english]L4D360UI_FindAGame" "Find Game"
"L4D360UI_FindAGame" "Buscar partida"
"[english]L4D360UI_Side" "Side"
"L4D360UI_Side" "Bando"
"[english]L4D360UI_Campaign" "Campaign"
"L4D360UI_Campaign" "Campaña"
"[english]L4D360UI_GameInLobby" "Waiting in Lobby"
"L4D360UI_GameInLobby" "Esperando en sala de espera"
"[english]L4D360UI_UnableToConnect" "Unable to Connect"
"L4D360UI_UnableToConnect" "No ha sido posible conectarse"
"[english]L4D360UI_InLobby" "In Lobby"
"L4D360UI_InLobby" "En la sala de espera"
"[english]L4D360UI_Mine" "Mine"
"L4D360UI_Mine" "Mía"
"[english]L4D360UI_Any" "Any"
"L4D360UI_Any" "Cualquiera"
"[english]L4D360UI_SendFriendInvite" "Send Friend a Game Invite"
"L4D360UI_SendFriendInvite" "Enviar a un amigo una invitación"
"[english]L4D360UI_ReviewPlayer" "Review Player"
"L4D360UI_ReviewPlayer" "Informe de jugador"
"[english]L4D360UI_RequestInvite" "Request a Game Invite"
"L4D360UI_RequestInvite" "Solicitar una invitación de juego"
"[english]L4D360UI_FriendDetails" "View Friend Details"
"L4D360UI_FriendDetails" "Ver detalles de amigo"
"[english]L4D360UI_Access" "Access"
"L4D360UI_Access" "Acceso"
"[english]L4D360UI_Unknown" "Unknown"
"L4D360UI_Unknown" "Desconocido"
"[english]L4D360UI_StillSearching" "Still Searching..."
"L4D360UI_StillSearching" "Buscando todavía..."
"[english]L4D360UI_Count_Players" "( %s1 Players )"
"L4D360UI_Count_Players" "(%s1 jugadores)"
"[english]L4D360UI_Count_Joinable_Games" "%s1 Joinable Games"
"L4D360UI_Count_Joinable_Games" "%s1 partidas para unirse"
"[english]L4D360UI_Count_Joinable_Friends" "%s1 Friends Playing Joinable Games"
"L4D360UI_Count_Joinable_Friends" "%s1 amigos jugando a partidas para unirse"
"[english]L4D360UI_Count_Friends_Playing" "Join a Friend's Game—You Have %s1 friends playing."
"L4D360UI_Count_Friends_Playing" "Únete a la partida de un amigo: Tienes %s1 amigos jugando."
"[english]L4D360UI_Count_System_Link_games" "%s1 LAN Games"
"L4D360UI_Count_System_Link_games" "%s1 partidas LAN"
"[english]L4D360UI_Countdown_Time" "Game Starts in: %s1"
"L4D360UI_Countdown_Time" "La partida empieza en: %s1"
"[english]L4D360UI_UnderConstruction" "[Under Construction]"
"L4D360UI_UnderConstruction" "[En construcción]"
//generic wait screen text and messages
"[english]L4D360UI_WaitScreen_WorkingMsg" ""
"L4D360UI_WaitScreen_WorkingMsg" ""
"[english]L4D360UI_WaitScreen_CreatingLobby" "Creating a Lobby"
"L4D360UI_WaitScreen_CreatingLobby" "Creando sala de espera"
"[english]L4D360UI_WaitScreen_JoiningParty" "Joining Game..."
"L4D360UI_WaitScreen_JoiningParty" "Uniéndose a partida..."
"[english]L4D360UI_WaitScreen_SigningOn" "Loading Gamer Profile...\nSaving content.\nPlease don't turn off your console."
"L4D360UI_WaitScreen_SigningOn" "Cargando perfil de jugador..."
"[english]L4D360UI_WaitScreen_SignOnSucceded" "Loading Gamer Profile...\nSaving content.\nPlease don't turn off your console."
"L4D360UI_WaitScreen_SignOnSucceded" "Cargando perfil de jugador..."
"[english]L4D360UI_WaitScreen_StoppingLobby" "Shutting Down Lobby..."
"L4D360UI_WaitScreen_StoppingLobby" "Desactivando sala de espera..."
"[english]L4D360UI_WaitScreen_StoppingSearch" "Stopping Search..."
"L4D360UI_WaitScreen_StoppingSearch" "Deteniendo búsqueda..."
"[english]L4D360UI_WaitScreen_SearchingForGame" "Searching for Game..."
"L4D360UI_WaitScreen_SearchingForGame" "Buscando partida..."
"[english]L4D360UI_WaitScreen_JoiningSystemLink" "Joining a LAN Game..."
"L4D360UI_WaitScreen_JoiningSystemLink" "Uniéndose a partida LAN..."
"[english]L4D360UI_WaitScreen_SystemLinkFailed" "Failed to Join Game"
"L4D360UI_WaitScreen_SystemLinkFailed" "Error al unirse a partida"
"[english]L4D360UI_WaitScreen_GameFull" "Game is Full"
"L4D360UI_WaitScreen_GameFull" "La partida está llena"
"[english]L4D360UI_WaitScreen_GamePrivate" "Game is Private"
"L4D360UI_WaitScreen_GamePrivate" "La partida es privada"
"[english]L4D360UI_WaitScreen_GameInFinale" "Game in Finale"
"L4D360UI_WaitScreen_GameInFinale" "En el clímax"
//shared strings
"[english]L4D360UI_Ok" "OK"
"L4D360UI_Ok" "Aceptar"
"[english]L4D360UI_Select" "Select"
"L4D360UI_Select" "Seleccionar"
"[english]L4D360UI_Modify" "Modify"
"L4D360UI_Modify" "Modificar"
"[english]L4D360UI_Back" "Back"
"L4D360UI_Back" "Atrás"
"[english]L4D360UI_Back_Caps" "BACK"
"L4D360UI_Back_Caps" "ATRÁS"
"[english]L4D360UI_Start" "Start"
"L4D360UI_Start" "Iniciar"
"[english]L4D360UI_Cancel" "Cancel"
"L4D360UI_Cancel" "Cancelar"
"[english]L4D360UI_Cancel_Caps" "CANCEL"
"L4D360UI_Cancel_Caps" "CANCELAR"
"[english]L4D360UI_Done" "Done"
"L4D360UI_Done" "Hecho"
"[english]L4D360UI_Done_Caps" "DONE"
"L4D360UI_Done_Caps" "HECHO"
"[english]L4D360UI_Gamertag" "Gamertag"
"L4D360UI_Gamertag" "Gamertag"
"[english]L4D360UI_Tooltip_Back" "Go back."
"L4D360UI_Tooltip_Back" "Volver."
"[english]L4D360UI_Tooltip_Cancel" "Go back without keeping changes."
"L4D360UI_Tooltip_Cancel" "Volver sin conservar los cambios."
//Public search options
"[english]L4D360UI_Join_Anywhere" "FIND A GAME"
"L4D360UI_Join_Anywhere" "BUSCAR PARTIDA"
"[english]L4D360UI_Join_At_Start" "FIND A GAME LOBBY"
"L4D360UI_Join_At_Start" "BUSCAR SALA DE ESPERA DE PARTIDA"
"[english]L4D360UI_Join_Create" "CREATE A GAME"
"L4D360UI_Join_Create" "CREAR UNA PARTIDA"
//generic error messages
"[english]L4D360UI_MsgBx_NeedTwoProfilesC" "Play Splitscreen"
"L4D360UI_MsgBx_NeedTwoProfilesC" "Jugar a pantalla partida"
"[english]L4D360UI_MsgBx_NeedTwoProfilesTxt" "Two gamer profiles must be signed in to play splitscreen."
"L4D360UI_MsgBx_NeedTwoProfilesTxt" "Dos perfiles de jugador deben iniciar sesión para jugar a pantalla partida."
"[english]L4D360UI_MsgBx_NeedLiveSplitscreenC" "Xbox LIVE"
"L4D360UI_MsgBx_NeedLiveSplitscreenC" "Xbox LIVE"
"[english]L4D360UI_MsgBx_NeedLiveSplitscreenTxt" "Both gamers must be signed in to Xbox LIVE to play online.\nAre you sure you want to continue?"
"L4D360UI_MsgBx_NeedLiveSplitscreenTxt" "Ambos jugadores deben iniciar sesión en Xbox LIVE para jugar online.\n¿Seguro de que deseas continuar?"
"[english]L4D360UI_MsgBx_NeedLiveSinglescreenMsg" "You must be signed in to Xbox LIVE to play online."
"L4D360UI_MsgBx_NeedLiveSinglescreenMsg" "Debes iniciar sesión en Xbox LIVE para jugar online."
"[english]L4D360UI_MsgBx_NeedLiveSplitscreenMsg" "Both gamers must be signed in to Xbox LIVE to play online."
"L4D360UI_MsgBx_NeedLiveSplitscreenMsg" "Ambos jugadores deben iniciar sesión en Xbox LIVE para jugar online."
"[english]L4D360UI_MsgBx_NeedLiveNonGoldSplitscreenMsg" "Both gamers must be signed in to an account with multiplayer privileges to play online."
"L4D360UI_MsgBx_NeedLiveNonGoldSplitscreenMsg" "Ambos jugadores deben haber iniciado sesión en una cuenta con privilegios de multijugador para jugar online."
"[english]L4D360UI_MsgBx_NeedLiveNonGoldMsg" "You must be signed in to a gamer profile with multiplayer privileges to play online."
"L4D360UI_MsgBx_NeedLiveNonGoldMsg" "Debes haber iniciado sesión en un perfil de jugador con privilegios de multijugador para jugar online."
"[english]L4D360UI_MsgBx_ConfirmGuestC" "Play without gamer profile"
"L4D360UI_MsgBx_ConfirmGuestC" "Jugar sin perfil de jugador"
"[english]L4D360UI_MsgBx_ConfirmGuestTxt" "When playing without a gamer profile your preferences and game progress will not be saved.\nAre you sure you want to continue?"
"L4D360UI_MsgBx_ConfirmGuestTxt" "Al jugar sin perfil de jugador, no se guardarán tus preferencias y el progreso en la partida.\n¿Seguro que deseas continuar?"
"[english]L4D360UI_MsgBx_AttractDeviceFullC" "Storage Device is Full"
"L4D360UI_MsgBx_AttractDeviceFullC" "El dispositivo de almacenamiento está lleno"
"[english]L4D360UI_MsgBx_AttractDeviceFullTxt" "There is no room to save preferences and game progress.\nAre you sure you want to continue?"
"L4D360UI_MsgBx_AttractDeviceFullTxt" "No hay espacio para guardar las preferencias y el progreso en la partida.\n¿Seguro que deseas continuar?"
"[english]L4D360UI_MsgBx_AttractDeviceCorruptC" "Save file is Corrupted"
"L4D360UI_MsgBx_AttractDeviceCorruptC" "El archivo guardado está dañado"
"[english]L4D360UI_MsgBx_AttractDeviceCorruptTxt" "The selected storage device contains a file that is corrupted or not able to be opened.\nPlease choose another storage device or delete the corrupted file.\n\nPreferences and game progress will not be saved without a valid storage device.\nWould you like to continue without selecting a storage device?"
"L4D360UI_MsgBx_AttractDeviceCorruptTxt" "El dispositivo de almacenamiento contiene un archivo dañado o que no puede abrirse.\nSelecciona otro dispositivo de almacenamiento o elimina el archivo dañado.\n\nTus preferencias y el progreso en la partida no se guardarán sin un dispositivo de almacenamiento válido.\n¿Deseas continuar sin seleccionar un dispositivo de almacenamiento?"
"[english]L4D360UI_MsgBx_DlcCorruptTxt" "\nUnsupported or corrupt downloadable content."
"L4D360UI_MsgBx_DlcCorruptTxt" "\nContenido descargable no suportado o corrupto."
"[english]L4D360UI_MsgBx_DlcMountedTxt" "\nDownloadable content loaded."
"L4D360UI_MsgBx_DlcMountedTxt" "\nContenido descargable cargado."
"[english]L4D360UI_MsgBx_AttractDeviceNoneC" "Storage Device Not Selected"
"L4D360UI_MsgBx_AttractDeviceNoneC" "No se ha seleccionado ningún dispositivo de almacenamiento"
"[english]L4D360UI_MsgBx_AttractDeviceNoneTxt" "The storage device has not been selected.\nPreferences and game progress will not be saved without a valid storage device.\nAre you sure you want to continue?"
"L4D360UI_MsgBx_AttractDeviceNoneTxt" "No se ha seleccionado ningún dispositivo de almacenamiento.\nLas preferencias y el progreso en la partida no se guardarán si no existe un dispositivo de almacenamiento válido.\n¿Seguro que deseas continuar?"
"[english]L4D360UI_MsgBx_LostConnectionToLive" "The connection to Xbox LIVE was lost."
"L4D360UI_MsgBx_LostConnectionToLive" "Se ha perdido la conexión con Xbox LIVE."
"[english]L4D360UI_MsgBx_LostConnectionToSteam" "The connection to Steam was lost."
"L4D360UI_MsgBx_LostConnectionToSteam" "Se ha perdido la conexión a Steam."
"[english]L4D360UI_MsgBx_NoDeviceSelected" "No Storage Device Selected"
"L4D360UI_MsgBx_NoDeviceSelected" "No se ha seleccionado un dispositivo de almacenamiento"
"[english]L4D360UI_MsgBx_NoDeviceSelectedMsg" "No storage device was selected. Saving game progress will be disabled."
"L4D360UI_MsgBx_NoDeviceSelectedMsg" "No se ha seleccionado un dispositivo de almacenamiento. Se desactivará el guardado del progreso en la partida."
"[english]L4D360UI_MsgBx_DeviceToFull" "Storage Device Full"
"L4D360UI_MsgBx_DeviceToFull" "Dispositivo de almacenamiento lleno"
"[english]L4D360UI_MsgBx_DeviceToFullMsg" "The storage device is full. Saving game progress will be disabled."
"L4D360UI_MsgBx_DeviceToFullMsg" "El dispositivo de almacenamiento está lleno. Se desactivará el guardado del progreso en la partida."
"[english]L4D360UI_MsgBx_ConnectionFailed" "Connection Failed"
"L4D360UI_MsgBx_ConnectionFailed" "Error en la conexión"
"[english]L4D360UI_MsgBx_NoServersFound" "No dedicated servers found. Host game locally?"
"L4D360UI_MsgBx_NoServersFound" "No se han encontrado servidores dedicados. ¿Crear partida localmente?"
"[english]L4D360UI_MsgBx_CouldNotConnectToParty" "Could not connect to lobby."
"L4D360UI_MsgBx_CouldNotConnectToParty" "No te has podido conectar a la sala de espera."
"[english]L4D360UI_MsgBx_DisconnectedFromSession" "Disconnected"
"L4D360UI_MsgBx_DisconnectedFromSession" "Desconectado"
"[english]L4D360UI_MsgBx_DisconnectedFromServer" "Lost Connection to Server"
"L4D360UI_MsgBx_DisconnectedFromServer" "Desconectado del servidor"
"[english]L4D360UI_MsgBx_DisconnectedLeaderLeft" "Lobby leader has disconnected from game.\nA new lobby leader has been appointed.\n"
"L4D360UI_MsgBx_DisconnectedLeaderLeft" "El líder de la sala se ha desconectado del juego.\nUn nuevo líder ha sido asignado.\n"
"[english]L4D360UI_MsgBx_KickedFromSession" "You were kicked from the session."
"L4D360UI_MsgBx_KickedFromSession" "Te han expulsado de la sesión."
"[english]L4D360UI_MsgBx_HostLost" "Connection with session has been lost."
"L4D360UI_MsgBx_HostLost" "Se ha perdido la conexión con la sesión."
"[english]L4D360UI_MsgBx_SignInChange" "Sign-in change has occurred."
"L4D360UI_MsgBx_SignInChange" "Se ha producido un cambio en el inicio de sesión."
"[english]L4D360UI_MsgBx_SignInChangeC" "Signed Out"
"L4D360UI_MsgBx_SignInChangeC" "Sesión cerrada"
"[english]L4D360UI_MsgBx_MustBindButtonsTitle" "Command Not Set"
"L4D360UI_MsgBx_MustBindButtonsTitle" "Comando no establecido"
"[english]L4D360UI_MsgBx_MustBindButtons" "You must set a button for each command\nbefore exiting Controller Options."
"L4D360UI_MsgBx_MustBindButtons" "Debes establecer un botón para cada comando\nantes de salir de las Opciones del mando."
"[english]L4D360UI_MsgBx_LoginRequired" "Login Required"
"L4D360UI_MsgBx_LoginRequired" "Se requiere inicio de sesión"
"[english]L4D360UI_MsgBx_SteamRequired" "You must be signed in to Steam to do that."
"L4D360UI_MsgBx_SteamRequired" "Antes debes iniciar sesión en Steam."
"[english]L4D360UI_MsgBx_AchievementsDisabled" "Achievements Unavailable"
"L4D360UI_MsgBx_AchievementsDisabled" "Logros no disponibles"
"[english]L4D360UI_MsgBx_GuestsUnavailableToGuests" "Guests are not allowed to unlock or view achievement scores."
"L4D360UI_MsgBx_GuestsUnavailableToGuests" "Los invitados no pueden desbloquear ni ver las puntuaciones de logro."
//Game Settings
"[english]L4D360UI_GameSettings_LiveOpen" "Game Settings: PUBLIC GAME"
"L4D360UI_GameSettings_LiveOpen" "CONFIGURACIÓN DE LA PARTIDA: PARTIDA PÚBLICA"
"[english]L4D360UI_GameSettings_LiveFriends" "Game Settings: FRIENDS-ONLY GAME"
"L4D360UI_GameSettings_LiveFriends" "CONFIGURACIÓN DE LA PARTIDA: PARTIDA SÓLO PARA AMIGOS"
"[english]L4D360UI_GameSettings_SysLink" "Game Settings: LAN GAME"
"L4D360UI_GameSettings_SysLink" "CONFIGURACIÓN DE LA PARTIDA: PARTIDA LAN"
"[english]L4D360UI_GameSettings_Solo" "OFFLINE PRACTICE"
"L4D360UI_GameSettings_Solo" "PRACTICA SIN CONEXION"
"[english]L4D360UI_GameSettings_OfflineCoop" "OFFLINE CO-OP"
"L4D360UI_GameSettings_OfflineCoop" "COOPERATIVO SIN CONEXION"
"[english]L4D360UI_GameSettings_Commentary" "DEVELOPER COMMENTARY"
"L4D360UI_GameSettings_Commentary" "CONFIGURACIÓN DE LA PARTIDA: COMENTARIOS DE LOS DESARROLLADORES"
"[english]L4D360UI_GameSettings_Invite" "Game Settings: PRIVATE GAME"
"L4D360UI_GameSettings_Invite" "CONFIGURACIÓN DE LA PARTIDA: PARTIDA PRIVADA"
"[english]L4D360UI_GameSettings_MP_campaign" "Game Settings"
"L4D360UI_GameSettings_MP_campaign" "Ajustes del juego"
"[english]L4D360UI_GameSettings_MP_single_mission" "Game Settings"
"L4D360UI_GameSettings_MP_single_mission" "Ajustes del juego"
"[english]L4D360UI_GameSettings_Description" "Choose the settings that best suit your style of play."
"L4D360UI_GameSettings_Description" "Elige la configuración que mejor se adapte a tu estilo de juego."
"[english]L4D360UI_GameSettings_Difficulty" "DIFFICULTY"
"L4D360UI_GameSettings_Difficulty" "DIFICULTAD"
"[english]L4D360UI_GameSettings_Current_Difficulty" "Current Difficulty: %s1"
"L4D360UI_GameSettings_Current_Difficulty" "Dificultad actual: %s1"
"[english]L4D360UI_GameSettings_Current_Campaign" "Current Campaign: %s1"
"L4D360UI_GameSettings_Current_Campaign" "Campaña actual: %s1"
"[english]L4D360UI_GameSettings_Mission" "CAMPAIGN"
"L4D360UI_GameSettings_Mission" "CAMPAÑA"
"[english]L4D360UI_GameSettings_Chapter" "CHAPTER"
"L4D360UI_GameSettings_Chapter" "CAPÍTULO"
"[english]L4D360UI_GameSettings_Character" "CHARACTER"
"L4D360UI_GameSettings_Character" "PERSONAJE"
"[english]L4D360UI_GameSettings_Create_Lobby" "CREATE GAME"
"L4D360UI_GameSettings_Create_Lobby" "CREAR SALA DE ESPERA"
"[english]L4D360UI_GameSettings_Server_Type" "SERVER TYPE"
"L4D360UI_GameSettings_Server_Type" "TIPO DE SERVIDOR"
"[english]L4D360UI_GameSettings_Tooltip_Done" "Save your changes and continue."
"L4D360UI_GameSettings_Tooltip_Done" "Guardar cambios y continuar."
"[english]L4D360UI_GameSettings_Tooltip_StartGame" "Begin your campaign."
"L4D360UI_GameSettings_Tooltip_StartGame" "Empezar campaña."
"[english]L4D360UI_GameSettings_Tooltip_Challenge" "Play co-operatively in Challenge Mode."
"L4D360UI_GameSettings_Tooltip_Challenge" "Jugar de forma cooperativa en el modo Desafío."
"[english]L4D360UI_GameSettings_Tooltip_DifficultyEasy" "Play this game in Easy mode (for inexperienced players)."
"L4D360UI_GameSettings_Tooltip_DifficultyEasy" "Jugar esta partida en modo Fácil (para jugadores novatos)."
"[english]L4D360UI_GameSettings_Tooltip_DifficultyNormal" "Play this game in Normal mode."
"L4D360UI_GameSettings_Tooltip_DifficultyNormal" "Jugar esta partida en modo Normal."
"[english]L4D360UI_GameSettings_Tooltip_DifficultyHard" "Play this game in Hard mode (for experienced players)."
"L4D360UI_GameSettings_Tooltip_DifficultyHard" "Jugar esta partida en modo Avanzado (para jugadores con experiencia)."
"[english]L4D360UI_GameSettings_Tooltip_DifficultyExpert" "Play this game in Insane mode (for the most challenging experience)."
"L4D360UI_GameSettings_Tooltip_DifficultyExpert" "Jugar esta partida en modo Imposible (la experiencia más desafiante como superviviente)."
"[english]L4D360UI_GameSettings_Tooltip_DifficultyInsane" "Play this game in Insane mode (for the most challenging experience)."
"L4D360UI_GameSettings_Tooltip_DifficultyInsane" "Juega a este juego en dificultad Extrema (para una experiencia desafiante)."
"[english]L4D360UI_GameSettings_Tooltip_Join_Anywhere" "Connect to another player’s campaign in progress."
"L4D360UI_GameSettings_Tooltip_Join_Anywhere" "Conectarse a la campaña en curso de otro jugador."
"[english]L4D360UI_GameSettings_Tooltip_Join_At_Start" "Connect to another player’s Lobby before the game has started."
"L4D360UI_GameSettings_Tooltip_Join_At_Start" "Conectarse a la sala de espera de otro jugador antes de que comience la partida."
"[english]L4D360UI_GameSettings_Tooltip_Create_Lobby" "Create a lobby with these settings."
"L4D360UI_GameSettings_Tooltip_Create_Lobby" "Crear una sala de espera con esta configuración."
// Unlockable Awards
"[english]L4D360UI_ShowUnlockableAwards" "Display Avatar Awards"
"L4D360UI_ShowUnlockableAwards" "Mostrar premios de avatar"
"[english]L4D360UI_ShowAchievements" "Display Achievements"
"L4D360UI_ShowAchievements" "Mostrar logros"
//Attract Screen
"[english]L4D360UI_Attract_PressStart" "PRESS START"
"L4D360UI_Attract_PressStart" "PULSA START"
//Sign In Screen
"[english]L4D360UI_SignIn_Title" " Welcome, %s1"
"L4D360UI_SignIn_Title" " Bienvenido, %s1"
"[english]L4D360UI_SignIn_TitleNo" " Welcome"
"L4D360UI_SignIn_TitleNo" " Bienvenido"
"[english]L4D360UI_SignIn_Messege" "Sign in to your Xbox LIVE gamer profile."
"L4D360UI_SignIn_Messege" "Inicia sesión en tu perfil de jugador de Xbox LIVE."
"[english]L4D360UI_SignIn_Messege1" "Sign in to your gamer profile."
"L4D360UI_SignIn_Messege1" "Inicia sesión en tu perfil de jugador."
"[english]L4D360UI_SignIn_SignInNow1" "SIGN IN"
"L4D360UI_SignIn_SignInNow1" "INICIA SESIÓN"
"[english]L4D360UI_SignIn_SignInPlay" "Play"
"L4D360UI_SignIn_SignInPlay" "Reproducir"
"[english]L4D360UI_SignIn_SignInNow2" "Play Splitscreen"
"L4D360UI_SignIn_SignInNow2" "Jugar a pantalla partida"
"[english]L4D360UI_SignIn_PlayAsGuest" "PLAY WITHOUT GAMER PROFILE"
"L4D360UI_SignIn_PlayAsGuest" "JUGAR SIN PERFIL DE JUGADOR"
"[english]L4D360UI_SignIn_CancelSignIn" "Cancel"
"L4D360UI_SignIn_CancelSignIn" "Cancelar"
//Main Menu
"[english]L4D360UI_MainMenu_CoOp" "PLAY ONLINE"
"L4D360UI_MainMenu_CoOp" "JUGAR CAMPAÑA"
"[english]L4D360UI_MainMenu_Holdout" "PLAY HOLDOUT"
"L4D360UI_MainMenu_Holdout" "JUGAR A CONTENCIÓN"
"[english]L4D360UI_MainMenu_Solo" "OFFLINE PRACTICE"
"L4D360UI_MainMenu_Solo" "JUGAR SOLO"
"[english]L4D360UI_MainMenu_Versus" "PLAY VERSUS"
"L4D360UI_MainMenu_Versus" "JUGAR ENFRENTAMIENTO"
"[english]L4D360UI_MainMenu_Scavenge" "PLAY SCAVENGE"
"L4D360UI_MainMenu_Scavenge" "JUGAR A BÚSQUEDA"
"[english]L4D360UI_MainMenu_StatsAndAchievements" "ACHIEVEMENTS"
"L4D360UI_MainMenu_StatsAndAchievements" "LOGROS"
"[english]L4D360UI_MainMenu_Options" "OPTIONS"
"L4D360UI_MainMenu_Options" "OPCIONES"
"[english]L4D360UI_MainMenu_ChangeGamers" "SIGN IN"
"L4D360UI_MainMenu_ChangeGamers" "INICIA SESIÓN"
"[english]L4D360UI_MainMenu_SignIn" "SIGN IN"
"L4D360UI_MainMenu_SignIn" "INICIA SESIÓN"
"[english]L4D360UI_MainMenu_EnableSplitscreen" "Enable Splitscreen"
"L4D360UI_MainMenu_EnableSplitscreen" "Activar pantalla partida"
"[english]L4D360UI_MainMenu_DisableSplitscreen" "Disable Splitscreen"
"L4D360UI_MainMenu_DisableSplitscreen" "Desactivar pantalla partida"
"[english]L4D360UI_MainMenu_Quit" "QUIT"
"L4D360UI_MainMenu_Quit" "ABANDONAR PARTIDA"
"[english]L4D360UI_MainMenu_FriendsPlaying" "Friends Playing: %s1"
"L4D360UI_MainMenu_FriendsPlaying" "Amigos jugando: %s1"
"[english]L4D360UI_MainMenu_PublicLobbies" "Public Lobbies: %s1"
"L4D360UI_MainMenu_PublicLobbies" "Public Lobbies: %s1"
// %s1 is the number of public user-hosted lobbies with at least one empty slot. displays in the scrolling server list on the main menu.
"[english]L4D360UI_MainMenu_PublicLobbies_More" "...and %s1 more!"
"L4D360UI_MainMenu_PublicLobbies_More" "...and %s1 more!"
"[english]L4D360UI_MainMenu_SteamGroupServers" "Steam Group Servers: %s1"
"L4D360UI_MainMenu_SteamGroupServers" "Servidores de grupo de Steam: %s1"
"[english]L4D360UI_MainMenu_SeeAll" "Play Game With Friends"
"L4D360UI_MainMenu_SeeAll" "Jugar partida con amigos"
"[english]L4D360UI_MainMenu_Extras" "EXTRAS"
"L4D360UI_MainMenu_Extras" "EXTRAS"
"[english]L4D360UI_MainMenu_QuitDemo" "QUIT DEMO"
"L4D360UI_MainMenu_QuitDemo" "SALIR DE LA DEMO"
"[english]L4D360UI_QuickMatch" "Quick Match"
"L4D360UI_QuickMatch" "Partida rápida"
"[english]L4D360UI_QuickStart" "Quick Start"
"L4D360UI_QuickStart" "Inicio rápido"
"[english]L4D360UI_CustomMatch" "Xbox LIVE Custom Match"
"L4D360UI_CustomMatch" "Partida personalizada de Xbox LIVE"
"[english]L4D360UI_MainMenu_PlayCoopWithFriends" "Play With Friends"
"L4D360UI_MainMenu_PlayCoopWithFriends" "Jugar con amigos"
"[english]L4D360UI_MainMenu_PlayRealismWithFriends" "Play With Friends"
"L4D360UI_MainMenu_PlayRealismWithFriends" "Jugar con amigos"
"[english]L4D360UI_MainMenu_PlayOnGroupServer" "Play on Steam Group Server"
"L4D360UI_MainMenu_PlayOnGroupServer" "Jugar en el servidor de grupo de Steam"
"[english]L4D360UI_MainMenu_PlayCoopWithAnyone" "Play With Anyone"
"L4D360UI_MainMenu_PlayCoopWithAnyone" "Jugar con cualquiera"
"[english]L4D360UI_MainMenu_PlayCoopWithSystemLink" "LAN"
"L4D360UI_MainMenu_PlayCoopWithSystemLink" "LAN"
"[english]L4D360UI_MainMenu_PlayOnline" "Find Public Games"
"L4D360UI_MainMenu_PlayOnline" "Jugar online"
"[english]L4D360UI_MainMenu_PlayCoopLAN" "Play on LAN"
"L4D360UI_MainMenu_PlayCoopLAN" "Jugar en LAN"
"[english]L4D360UI_MainMenu_PlaySolo" "SINGLE PLAYER"
"L4D360UI_MainMenu_PlaySolo" "SINGLE PLAYER"
"[english]L4D360UI_MainMenu_PlaySplitscreen" "PLAY OFFLINE CO-OP"
"L4D360UI_MainMenu_PlaySplitscreen" "JUGAR COOPERATIVO DESCONECTADO"
"[english]L4D360UI_MainMenu_PlayTeamVersus" "Play Team Versus"
"L4D360UI_MainMenu_PlayTeamVersus" "Jugar enfrentamiento por equipos"
"[english]L4D360UI_MainMenu_PlayTeamScavenge" "Play Team Game"
"L4D360UI_MainMenu_PlayTeamScavenge" "Jugar partida por equipos"
"[english]L4D360UI_MainMenu_PlayTeam_Tip" "Make a team with your friends to play against another team."
"L4D360UI_MainMenu_PlayTeam_Tip" "Formar un equipo con tus amigos para jugar contra otro equipo."
"[english]L4D360UI_MainMenu_PlayTeam_Tip_Disabled" "You must be signed in to Xbox LIVE with multiplayer privileges to play online."
"L4D360UI_MainMenu_PlayTeam_Tip_Disabled" "Debes iniciar sesión en Xbox LIVE con privilegios multijugador para jugar online."
"[english]L4D360UI_MainMenu_Browse" "BROWSE ONLINE"
"L4D360UI_MainMenu_Browse" "BUSCAR ONLINE"
"[english]L4D360UI_MainMenu_LocalProfile" "Gamer Profile:"
"L4D360UI_MainMenu_LocalProfile" "Perfil de jugador:"
"[english]L4D360UI_MainMenu_LocalProfiles" "Gamer Profiles:"
"L4D360UI_MainMenu_LocalProfiles" "Perfiles de jugador:"
"[english]L4D360UI_MainMenu_LocalProfilePlayer1" "Player One: %s1"
"L4D360UI_MainMenu_LocalProfilePlayer1" "Jugador 1: %s1"
"[english]L4D360UI_MainMenu_LocalProfilePlayer2" "Player Two: %s1"
"L4D360UI_MainMenu_LocalProfilePlayer2" "Jugador 2: %s1"
"[english]L4D360UI_QuickMatch_Tip" "Join a game online that best matches your experience level."
"L4D360UI_QuickMatch_Tip" "Unirte a una partida online que se adapte a tu nivel de experiencia."
"[english]L4D360UI_QuickMatch_Offline_Tip" "Start an offline game where you left off. Jump to the latest incomplete chapter."
"L4D360UI_QuickMatch_Offline_Tip" "Iniciar una partida sin conexión en el punto en que la dejaste. Saltar al último capítulo incompleto."
"[english]L4D360UI_QuickMatch_Versus_Tip" "Join a Versus game online that best matches your experience level."
"L4D360UI_QuickMatch_Versus_Tip" "Unirte a una partida online en modo Enfrentamiento que se adapte a tu nivel de experiencia."
"[english]L4D360UI_MainMenu_Friends_Tip" "Look for friends to play with or start a lobby."
"L4D360UI_MainMenu_Friends_Tip" "Buscar amigos con los que jugar o iniciar una sala de espera."
"[english]L4D360UI_MainMenu_CoOp_Tip" "Play through a co-operative campaign online."
"L4D360UI_MainMenu_CoOp_Tip" "Jugar una campaña online en modo Cooperativo."
"[english]L4D360UI_MainMenu_Holdout_Tip" "Hold off the Swarm for as long as you can."
"L4D360UI_MainMenu_Holdout_Tip" "Aguanta contra la horda todo lo que puedas."
"[english]L4D360UI_MainMenu_Solo_Tip" "Play an offline campaign with computer-controlled teammates. (Your online friends cannot join you in this mode.)"
"L4D360UI_MainMenu_Solo_Tip" "Jugar una campaña sin conexión con compañeros controlados por el equipo. (Tus amigos online no pueden unirse a la partida en este modo.)"
"[english]L4D360UI_MainMenu_OfflineCoOp_Tip" "Play an offline splitscreen game with a friend."
"L4D360UI_MainMenu_OfflineCoOp_Tip" "Jugar una partida sin conexión a pantalla partida con un amigo."
"[english]L4D360UI_MainMenu_Versus_Tip" "Play as the Survivors or the Infected in an online Versus Mode game."
"L4D360UI_MainMenu_Versus_Tip" "Jugar como superviviente o infectado en una partida online en modo Enfrentamiento."
"[english]L4D360UI_MainMenu_Versus_Tip_Disabled" "You must play an entire campaign to unlock Versus Mode."
"L4D360UI_MainMenu_Versus_Tip_Disabled" "Debes jugar una campaña completa para desbloquear el modo Enfrentamiento."
"[english]L4D360UI_MainMenu_Scavenge_Tip" "Play as the Survivors or the Infected in a round-based competitive match."
"L4D360UI_MainMenu_Scavenge_Tip" "Jugar como supervivientes o infectados en una partida competitiva por rondas."
"[english]L4D360UI_MainMenu_StatsAndAchievements_Tip" "View your achievement score."
"L4D360UI_MainMenu_StatsAndAchievements_Tip" "Ver tu puntuación de logro."
"[english]L4D360UI_MainMenu_PCStatsAndAchievements_Tip" "View your progress and accomplishments."
"L4D360UI_MainMenu_PCStatsAndAchievements_Tip" "Ver tu progreso y tus logros."
"[english]L4D360UI_MainMenu_Options_Tip" "Change your preferences and game settings."
"L4D360UI_MainMenu_Options_Tip" "Cambiar las preferencias y la configuración de partida."
"[english]L4D360UI_MainMenu_ChangeGamers_Tip" "Select a gamer profile to save preferences, settings and progress."
"L4D360UI_MainMenu_ChangeGamers_Tip" "Seleccionar un perfil de jugador para guardar las preferencias, la configuración y el progreso."
"[english]L4D360UI_MainMenu_EnableSplitscreen_Tip" "Add another player to play a splitscreen game."
"L4D360UI_MainMenu_EnableSplitscreen_Tip" "Agregar a otro jugador para jugar una partida a pantalla partida."
"[english]L4D360UI_MainMenu_DisableSplitscreen_Tip" "Remove a splitscreen player."
"L4D360UI_MainMenu_DisableSplitscreen_Tip" "Eliminar a un jugador a pantalla partida."
"[english]L4D360UI_MainMenu_ToggleSplitscreen_Tip" "Add or remove a splitscreen player."
"L4D360UI_MainMenu_ToggleSplitscreen_Tip" "Agregar o eliminar a un jugador a pantalla partida."
"[english]L4D360UI_MainMenu_Extras_Tip" "Learn more about the game and how it was made."
"L4D360UI_MainMenu_Extras_Tip" "Más información sobre el juego y su creación."
"[english]L4D360UI_MainMenu_Quit_Tip" "Exit the game."
"L4D360UI_MainMenu_Quit_Tip" "Salir de la partida."
"[english]L4D360UI_MainMenu_DemoQuit_Tip" "Quit Demo."
"L4D360UI_MainMenu_DemoQuit_Tip" "Sale de la Demo."
"[english]L4D360UI_MainMenu_SeeAll_Tip" "Join an active game with a friend or on your local network."
"L4D360UI_MainMenu_SeeAll_Tip" "Unirse a una partida activa con un amigo o en la red local."
"[english]L4D360UI_MainMenu_DemoVersion" "Not Available in Demo Version."
"L4D360UI_MainMenu_DemoVersion" "No disponible en la versión de demostración."
"[english]L4D360UI_MainMenu_SeeAll_Tip_Disabled" "There are no active games with friends or LAN games available."
"L4D360UI_MainMenu_SeeAll_Tip_Disabled" "No hay disponibles partidas activas con amigos o partidas LAN."
"[english]L4D360UI_MainMenu_PlayCoopWithFriends_Tip" "Look for friends to play with or start a lobby."
"L4D360UI_MainMenu_PlayCoopWithFriends_Tip" "Buscar amigos con los que jugar o iniciar una sala de espera."
"[english]L4D360UI_MainMenu_PlayRealismWithFriends_Tip" "Look for friends to play with or start a lobby."
"L4D360UI_MainMenu_PlayRealismWithFriends_Tip" "Buscar amigos con los que jugar o iniciar una sala de espera."
"[english]L4D360UI_MainMenu_PlayOnGroupServer_Tip" "Join a server associated with one of the Steam community groups that you belong to."
"L4D360UI_MainMenu_PlayOnGroupServer_Tip" "Unirse a un servidor asociado con uno de los grupos de la comunidad Steam a los que perteneces."
"[english]L4D360UI_MainMenu_PlayCoopWithAnyone_Tip" "Find a co-op game online that matches your preferences."
"L4D360UI_MainMenu_PlayCoopWithAnyone_Tip" "Buscar una partida online en modo Cooperativo que se adapte a tus preferencias."
"[english]L4D360UI_MainMenu_PlayRealismWithAnyone_Tip" "Find a realism game online that matches your preferences."
"L4D360UI_MainMenu_PlayRealismWithAnyone_Tip" "Buscar una partida online en modo Supervivencia que se adapte a tus preferencias."
"[english]L4D360UI_MainMenu_PlaySurvivalWithAnyone_Tip" "Find a Survival game online that matches your preferences."
"L4D360UI_MainMenu_PlaySurvivalWithAnyone_Tip" "Buscar una partida online en modo Supervivencia que se adapte a tus preferencias."
"[english]L4D360UI_MainMenu_PlayCoopWithSystemLink_Tip" "Play a game over a local area network."
"L4D360UI_MainMenu_PlayCoopWithSystemLink_Tip" "Jugar una partida en una red de área local."
"[english]L4D360UI_MainMenu_PlayCoopLAN_Tip" "Start a game on the local network."
"L4D360UI_MainMenu_PlayCoopLAN_Tip" "Iniciar una partida en la red local."
"[english]L4D360UI_MainMenu_PlaySolo_Tip" "Play a single player offline game with computer-controlled teammates."
"L4D360UI_MainMenu_PlaySolo_Tip" "Jugar una partida sin conexión en modo Solo con compañeros controlados por el equipo."
"[english]L4D360UI_MainMenu_PlayWithGroups_Tip" "Find a game hosted by one of your Steam Groups."
"L4D360UI_MainMenu_PlayWithGroups_Tip" "Buscar una partida cuyo host sea uno de tus grupos de Steam."
"[english]L4D360UI_MainMenu_Browse_Tip" "Browse a list of public games."
"L4D360UI_MainMenu_Browse_Tip" "Buscar en una lista de partidas públicas."
"[english]L4D360UI_MainMenu_WelcomeMessageG" "Welcome!"
"L4D360UI_MainMenu_WelcomeMessageG" "Te damos la bienvenida."
"[english]L4D360UI_MainMenu_WelcomeMessage" "Welcome, %s1."
"L4D360UI_MainMenu_WelcomeMessage" "Bienvenido, %s1."
"[english]L4D360UI_MainMenu_WelcomeMessage2" "Welcome, %s1 and %s2."
"L4D360UI_MainMenu_WelcomeMessage2" "Bienvenidos, %s1 y %s2."
"[english]L4D360UI_MainMenu_SignInMessage" "Please Sign in"
"L4D360UI_MainMenu_SignInMessage" "Iniciad sesión."
"[english]L4D360UI_MainMenu_SignInMessageSplitscreen" "Player Two: Sign in to play."
"L4D360UI_MainMenu_SignInMessageSplitscreen" "Jugador 2: Inicia sesión para jugar."
"[english]L4D360UI_MainMenu_SignInMessageSsStart2" "Player Two: Press START to join."
"L4D360UI_MainMenu_SignInMessageSsStart2" "Jugador 2: Pulsa START para unirte."
"[english]L4D360UI_MainMenu_SignInMessageSsStart" "Player Two Join Game"
"L4D360UI_MainMenu_SignInMessageSsStart" "El jugador 2 se une a la partida"
"[english]L4D360UI_MainMenu_SignInMessageSsDisable" "Disable Splitscreen"
"L4D360UI_MainMenu_SignInMessageSsDisable" "Desactivar pantalla partida"
"[english]L4D360UI_Character_Guest" "Player"
"L4D360UI_Character_Guest" "Jugador"
//In Game Main Menu
"[english]L4D360UI_InGameMainMenu_ReturnToGame" "RETURN TO GAME"
"L4D360UI_InGameMainMenu_ReturnToGame" "VOLVER A LA PARTIDA"
"[english]L4D360UI_InGameMainMenu_ReturnToGame_Tip" "Leave this menu and continue playing."
"L4D360UI_InGameMainMenu_ReturnToGame_Tip" "Salir de este menú y seguir jugando."
"[english]L4D360UI_InGameMainMenu_GoIdle" "TAKE A BREAK"
"L4D360UI_InGameMainMenu_GoIdle" "DESCANSAR"
"[english]L4D360UI_InGameMainMenu_GoIdle_Tip" "Take a break while a computer-controlled player holds your place."
"L4D360UI_InGameMainMenu_GoIdle_Tip" "Descansa mientras un jugador controlado por la IA ocupa tu lugar."
"[english]L4D360UI_InGameMainMenu_GoIdle_Tip_New" "Take a break while a computer-controlled player holds your place. (This will disable some achievements for the remainder of the campaign.)"
"L4D360UI_InGameMainMenu_GoIdle_Tip_New" "Descansa mientras un jugador controlado por la IA ocupa tu lugar. (Se desactivarán algunos logros para el resto de la campaña)."
"[english]L4D360UI_InGameMainMenu_GoIdle_Disabled" "You can't currently go idle. There wouldn't be enough players."
"L4D360UI_InGameMainMenu_GoIdle_Disabled" "No puedes estar inactivo en este momento. No habría jugadores suficientes."
"[english]L4D360UI_InGameMainMenu_CallAVote" "CALL A VOTE"
"L4D360UI_InGameMainMenu_CallAVote" "INICIAR VOTACION"
"[english]L4D360UI_InGameMainMenu_CallAVote_Tip" "Get a consensus to change a setting or make a disruptive player leave."
"L4D360UI_InGameMainMenu_CallAVote_Tip" "Llegar a un consenso para cambiar la configuración o expulsar a un jugador problemático."
"[english]L4D360UI_InGameMainMenu_ReportProblem" "REPORT A PROBLEM"
"L4D360UI_InGameMainMenu_ReportProblem" "REPORT A PROBLEM"
"[english]L4D360UI_InGameMainMenu_ReportProblem_Tip" "Report a problem with the game, a server, or a player."
"L4D360UI_InGameMainMenu_ReportProblem_Tip" "Report a problem with the game, a server, or a player."
"[english]L4D360UI_InGameMainMenu_InviteAFriend" "INVITE A FRIEND"
"L4D360UI_InGameMainMenu_InviteAFriend" "INVITAR A UN AMIGO"
"[english]L4D360UI_InGameMainMenu_InviteAFriend_Tip" "Ask a friend to join the current game."
"L4D360UI_InGameMainMenu_InviteAFriend_Tip" "Pedir a un amigo que se una a la partida actual."
"[english]L4D360UI_InGameMainMenu_InviteAFriend_Disabled" "You cannot send game invites in a LAN or offline co-op game."
"L4D360UI_InGameMainMenu_InviteAFriend_Disabled" "No puedes enviar invitaciones de juego en partidas LAN o en modo cooperativo desconectado."
"[english]L4D360UI_InGameMainMenu_InviteAFriend_Disabled_Full" "You cannot send game invites in a full lobby."
"L4D360UI_InGameMainMenu_InviteAFriend_Disabled_Full" "No puedes enviar invitaciones de juego cuando la sala de espera está llena."
"[english]L4D360UI_InGameMainMenu_ExitToMainMenu" "EXIT TO MAIN MENU"
"L4D360UI_InGameMainMenu_ExitToMainMenu" "SALIR AL MENÚ"
"[english]L4D360UI_InGameMainMenu_ExitToMainMenu_Tip" "Leave this game."
"L4D360UI_InGameMainMenu_ExitToMainMenu_Tip" "Salir de esta partida."
// Vote menu
"[english]L4D360UI_VoteMenu_YesBinding" "Yes: START"
"L4D360UI_VoteMenu_YesBinding" "Sí: START"
"[english]L4D360UI_VoteMenu_NoBinding" "No: BACK"
"L4D360UI_VoteMenu_NoBinding" "No: BACK"
// Invite UI options
"[english]L4D360UI_InviteUIOptions" "ONLINE MULTIPLAYER"
"L4D360UI_InviteUIOptions" "INVITACIONES"
"[english]L4D360UI_InviteUIOptions_Tip" "Change voice chat channel or send game invites."
"L4D360UI_InviteUIOptions_Tip" "Invitar a Xbox LIVE Party, amigos y otros jugadores."
"[english]L4D360UI_InviteUIOptions_Tip_Disabled" ""
"L4D360UI_InviteUIOptions_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_players" "Invite Gamers"
"L4D360UI_InviteUI_players" "Invitar a jugadores"
"[english]L4D360UI_InviteUI_players_Tip" "Send an invitation to gamers of your choice."
"L4D360UI_InviteUI_players_Tip" "Enviar invitaciones a jugadores seleccionados."
"[english]L4D360UI_InviteUI_players_Tip_Disabled" ""
"L4D360UI_InviteUI_players_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_friends" "Invite Friends"
"L4D360UI_InviteUI_friends" "Invitar a amigos"
"[english]L4D360UI_InviteUI_friends_Tip" "Send an invitation to your Xbox LIVE friends."
"L4D360UI_InviteUI_friends_Tip" "Enviar una invitación a tus amigos de Xbox LIVE."
"[english]L4D360UI_InviteUI_friends_Tip_Disabled" ""
"L4D360UI_InviteUI_friends_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_inviteparty" "Invite Xbox LIVE Party"
"L4D360UI_InviteUI_inviteparty" "Invitar a Xbox LIVE Party"
"[english]L4D360UI_InviteUI_inviteparty_Tip" "Send an invitation to your Xbox LIVE party."
"L4D360UI_InviteUI_inviteparty_Tip" "Enviar una invitación a tu Xbox LIVE party."
"[english]L4D360UI_InviteUI_inviteparty_Tip_Disabled" ""
"L4D360UI_InviteUI_inviteparty_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_party" "Show Xbox LIVE Party"
"L4D360UI_InviteUI_party" "Mostrar Xbox LIVE Party"
"[english]L4D360UI_InviteUI_party_Tip" "Show your Xbox LIVE party."
"L4D360UI_InviteUI_party_Tip" "Mostrar tu Xbox LIVE Party."
"[english]L4D360UI_InviteUI_party_Tip_Disabled" ""
"L4D360UI_InviteUI_party_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_community" "Show Community Sessions"
"L4D360UI_InviteUI_community" "Mostrar sesiones de la comunidad"
"[english]L4D360UI_InviteUI_community_Tip" "Show your Xbox LIVE party community sessions."
"L4D360UI_InviteUI_community_Tip" "Mostrar las sesiones de la comunidad de tu Xbox LIVE Party."
"[english]L4D360UI_InviteUI_community_Tip_Disabled" ""
"L4D360UI_InviteUI_community_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_voiceui" "Select Voice Chat Channel"
"L4D360UI_InviteUI_voiceui" "Seleccionar Voz de Charla"
"[english]L4D360UI_InviteUI_voiceui_Tip" "Select Xbox LIVE Party channel or game channel."
"L4D360UI_InviteUI_voiceui_Tip" "Seleccionar Xbox LIVE Party channel o game channel."
"[english]L4D360UI_InviteUI_voiceui_Tip_Disabled" ""
"L4D360UI_InviteUI_voiceui_Tip_Disabled" ""
"[english]L4D360UI_InviteUI_gamevoiceui" "Switch Chat Channel to Game"
"L4D360UI_InviteUI_gamevoiceui" "Cambiar Canal de Charla al Juego"
"[english]L4D360UI_InviteUI_gamevoiceui_Tip" "Switch to game voice chat channel."
"L4D360UI_InviteUI_gamevoiceui_Tip" "Pasar al canal de charla de voz."
"[english]L4D360UI_InviteUI_gamevoiceui_Tip_Disabled" ""
"L4D360UI_InviteUI_gamevoiceui_Tip_Disabled" ""
//Game Lobby Screen
"[english]L4D360UI_Lobby_EmptySlotAd" "Player Slot Available"
"L4D360UI_Lobby_EmptySlotAd" "Plaza disponible"
"[english]L4D360UI_Lobby_SplitSlotAd" "Player Two, Sign in for Splitscreen"
"L4D360UI_Lobby_SplitSlotAd" "Jugador 2, inicia sesión para jugar a pantalla partida"
"[english]L4D360UI_Lobby_ScreenHelp_Leader" "Select START THE GAME to Begin"
"L4D360UI_Lobby_ScreenHelp_Leader" "Selecciona EMPEZAR LA PARTIDA para comenzar"
"[english]L4D360UI_Lobby_ScreenHelp_Leader_SysLink" "Select START THE GAME to Begin"
"L4D360UI_Lobby_ScreenHelp_Leader_SysLink" "Selecciona EMPEZAR LA PARTIDA para comenzar"
"[english]L4D360UI_Lobby_ScreenHelp_Leader_Friends" "Select START THE GAME to Begin"
"L4D360UI_Lobby_ScreenHelp_Leader_Friends" "Selecciona EMPEZAR LA PARTIDA para comenzar"
"[english]L4D360UI_Lobby_ScreenHelp_SearchingForGame" "Searching for a Game..."
"L4D360UI_Lobby_ScreenHelp_SearchingForGame" "Buscando una partida..."
"[english]L4D360UI_Lobby_ScreenHelp_WatingForLeader" "Waiting for Lobby Leader to Start Game"
"L4D360UI_Lobby_ScreenHelp_WatingForLeader" "Esperando a que el líder de la sala de espera empiece la partida"
"[english]L4D360UI_Lobby_ScreenHelp_WatingForPlayers" "Waiting for Players—Game Will Start in %s1 Seconds..."
"L4D360UI_Lobby_ScreenHelp_WatingForPlayers" "Esperando a los jugadores: La partida empezará en %s1 segundos..."
"[english]L4D360UI_Lobby_ScreenHelp_Game_Starting" "Starting Game in %s1 Seconds..."
"L4D360UI_Lobby_ScreenHelp_Game_Starting" "Iniciando en %s1 segundos..."
"[english]L4D360UI_Lobby_ScreenHelp_Game_Started_Wait" "Connecting to Game..."
"L4D360UI_Lobby_ScreenHelp_Game_Started_Wait" "Conectando a partida..."
"[english]L4D360UI_Lobby_ScreenHelp_LeaderSearchingForGame" "Leader is Searching for Game..."
"L4D360UI_Lobby_ScreenHelp_LeaderSearchingForGame" "El líder está buscando una partida..."
"[english]L4D360UI_Lobby_ScreenHelp_SettingUpLobby" "Setting up Lobby..."
"L4D360UI_Lobby_ScreenHelp_SettingUpLobby" "Configurando sala de espera..."
"[english]L4D360UI_Lobby_ScreenHelp_SearchingForServer" "Searching for Dedicated Server..."
"L4D360UI_Lobby_ScreenHelp_SearchingForServer" "Buscando Servidor Dedicado..."
"[english]L4D360UI_Lobby_ScreenHelp_LeaderSearchingForServer" "Leader is Searching for Dedicated Server..."
"L4D360UI_Lobby_ScreenHelp_LeaderSearchingForServer" "El líder está buscando un servidor dedicado..."
"[english]L4D360UI_Lobby_ScreenHelp_LeaderStartingLocalServer" "Leader is Starting a Local Server..."
"L4D360UI_Lobby_ScreenHelp_LeaderStartingLocalServer" "El líder está iniciando un servidor local..."
"[english]L4D360UI_Lobby_ScreenHelp_StopingSearch" "Stopping Search..."
"L4D360UI_Lobby_ScreenHelp_StopingSearch" "Deteniendo búsqueda..."
"[english]L4D360UI_Lobby_InviteFriends_Tip" "Ask a friend to join the current lobby."
"L4D360UI_Lobby_InviteFriends_Tip" "Pedir a un amigo que se una a la sala de espera actual."
"[english]L4D360UI_Lobby_Change_GameSettings_Tip" "Change game settings, pick campaigns to play and set the difficulty level."
"L4D360UI_Lobby_Change_GameSettings_Tip" "Cambiar configuración de partida, seleccionar campañas para jugar y establecer el nivel de dificultad."
"[english]L4D360UI_Lobby_Change_GameAccess_Tip" "Set player access to your game through matchmaking or by game invite."
"L4D360UI_Lobby_Change_GameAccess_Tip" "Establecer el acceso de los jugadores a la partida mediante Matchmaking o invitación de juego."
"[english]L4D360UI_Lobby_OpenToPublic_Tip" "Open this lobby to allow any player to join."
"L4D360UI_Lobby_OpenToPublic_Tip" "Abrir esta sala de espera para permitir que se una cualquier jugador."
"[english]L4D360UI_Lobby_MakeFriendOnly_Tip" "Close this lobby so only your friends can join."
"L4D360UI_Lobby_MakeFriendOnly_Tip" "Cerrar esta sala de espera para que sólo puedan unirse amigos."
"[english]L4D360UI_Lobby_MakePrivate_Tip" "Only allow players who have been invited to join."
"L4D360UI_Lobby_MakePrivate_Tip" "Permitir sólo a jugadores con invitación."
"[english]L4D360UI_Lobby_LeaveLobby_Tip" "Exit back to the Main Menu."
"L4D360UI_Lobby_LeaveLobby_Tip" "Salir al Menú principal."
"[english]L4D360UI_Lobby_CancelMatchmacking_Tip" "Stop searching for a dedicated server to play on."
"L4D360UI_Lobby_CancelMatchmacking_Tip" "Detener búsqueda de un servidor dedicado en el que jugar."
"[english]L4D360UI_Lobby_StartVoiceChat_Tip" "Begin talking to other players."
"L4D360UI_Lobby_StartVoiceChat_Tip" "Iniciar conversación con otros jugadores."
"[english]L4D360UI_Lobby_StopVoiceChat_Tip" "Stop talking to other players."
"L4D360UI_Lobby_StopVoiceChat_Tip" "Detener conversación con otros jugadores."
"[english]L4D360UI_Lobby_Change_ServerType_Tip" "Specify if the game should try to use dedicated servers or host a local server."
"L4D360UI_Lobby_Change_ServerType_Tip" "Especifica si el juego debería intentar utilizar servidores dedicados o hacer de host de un servidor local."
"[english]L4D360UI_Lobby_Change_ServerType_Official_Tip" "Search for an official dedicated server to play on."
"L4D360UI_Lobby_Change_ServerType_Official_Tip" "Buscar un servidor dedicado oficial en el que jugar."
"[english]L4D360UI_Lobby_Change_ServerType_Dedicated_Tip" "Search for the best dedicated server to play on."
"L4D360UI_Lobby_Change_ServerType_Dedicated_Tip" "Buscar el mejor servidor dedicado en el que jugar."
"[english]L4D360UI_Lobby_Change_ServerType_Listen_Tip" "Host a local (listen) server."
"L4D360UI_Lobby_Change_ServerType_Listen_Tip" "Hacer de host de un servidor local."
"[english]L4D360UI_Lobby_SwitchTo_coop" "SWITCH TO CAMPAIGN"
"L4D360UI_Lobby_SwitchTo_coop" "CAMBIAR A CAMPAÑA"
"[english]L4D360UI_Lobby_SwitchConf_coop" "Are you sure you would like to switch to Campaign mode?"
"L4D360UI_Lobby_SwitchConf_coop" "¿Seguro que quieres cambiar al modo Campaña?"
"[english]L4D360UI_Lobby_SwitchDone_coop" "Switching to Campaign..."
"L4D360UI_Lobby_SwitchDone_coop" "Cambiando a Campaña..."
"[english]L4D360UI_Lobby_SwitchTip_coop" "Convert the game to Campaign mode."
"L4D360UI_Lobby_SwitchTip_coop" "Cambiar la partida al modo Campaña."
"[english]L4D360UI_Lobby_SwitchTo_realism" "SWITCH TO REALISM"
"L4D360UI_Lobby_SwitchTo_realism" "CAMBIAR A REALISTA"
"[english]L4D360UI_Lobby_SwitchConf_realism" "Are you sure you would like to switch to Realism mode?"
"L4D360UI_Lobby_SwitchConf_realism" "¿Seguro que quieres cambiar al modo Realista?"
"[english]L4D360UI_Lobby_SwitchDone_realism" "Switching to Realism..."
"L4D360UI_Lobby_SwitchDone_realism" "Cambiando a Realista..."
"[english]L4D360UI_Lobby_SwitchTip_realism" "Convert the game to Realism mode."
"L4D360UI_Lobby_SwitchTip_realism" "Cambiar la partida al modo Realista."
"[english]L4D360UI_Lobby_SwitchTo_versus" "SWITCH TO VERSUS"
"L4D360UI_Lobby_SwitchTo_versus" "CAMBIAR A ENFRENTAMIENTO"
"[english]L4D360UI_Lobby_SwitchConf_versus" "Are you sure you would like to switch to Versus mode?"
"L4D360UI_Lobby_SwitchConf_versus" "¿Seguro que quieres cambiar al modo Enfrentamiento?"
"[english]L4D360UI_Lobby_SwitchDone_versus" "Switching to Versus..."
"L4D360UI_Lobby_SwitchDone_versus" "Cambiando a Enfrentamiento..."
"[english]L4D360UI_Lobby_SwitchTip_versus" "Convert the game to Versus mode."
"L4D360UI_Lobby_SwitchTip_versus" "Cambiar la partida al modo Enfrentamiento."
"[english]L4D360UI_Lobby_SwitchTo_scavenge" "SWITCH TO SCAVENGE"
"L4D360UI_Lobby_SwitchTo_scavenge" "CAMBIAR A BÚSQUEDA"
"[english]L4D360UI_Lobby_SwitchConf_scavenge" "Are you sure you would like to switch to Scavenge mode?"
"L4D360UI_Lobby_SwitchConf_scavenge" "¿Seguro que quieres cambiar al modo Búsqueda?"
"[english]L4D360UI_Lobby_SwitchDone_scavenge" "Switching to Scavenge..."
"L4D360UI_Lobby_SwitchDone_scavenge" "Cambiando a Búsqueda..."
"[english]L4D360UI_Lobby_SwitchTip_scavenge" "Convert the game to Scavenge mode."
"L4D360UI_Lobby_SwitchTip_scavenge" "Cambiar la partida al modo Búsqueda."
"[english]L4D360UI_Lobby_SwitchTo_teamversus" "SWITCH TO TEAM VERSUS"
"L4D360UI_Lobby_SwitchTo_teamversus" "CAMBIAR A ENFRENTAMIENTO POR EQUIPOS"
"[english]L4D360UI_Lobby_SwitchConf_teamversus" "Are you sure you would like to switch to Team Versus mode?"
"L4D360UI_Lobby_SwitchConf_teamversus" "¿Seguro que quieres cambiar al modo Enfrentamiento por equipos?"
"[english]L4D360UI_Lobby_SwitchDone_teamversus" "Switching to Team Versus..."
"L4D360UI_Lobby_SwitchDone_teamversus" "Cambiando a Enfrentamiento por equipos..."
"[english]L4D360UI_Lobby_SwitchTip_teamversus" "Convert the game to Team Versus mode."
"L4D360UI_Lobby_SwitchTip_teamversus" "Cambiar la partida al modo Enfrentamiento por equipos."
"[english]L4D360UI_Lobby_SwitchTo_teamscavenge" "SWITCH TO TEAM SCAVENGE"
"L4D360UI_Lobby_SwitchTo_teamscavenge" "CAMBIAR A BÚSQUEDA POR EQUIPOS"
"[english]L4D360UI_Lobby_SwitchConf_teamscavenge" "Are you sure you would like to switch to Team Scavenge mode?"
"L4D360UI_Lobby_SwitchConf_teamscavenge" "¿Seguro que quieres cambiar al modo Búsqueda por equipos?"
"[english]L4D360UI_Lobby_SwitchDone_teamscavenge" "Switching to Team Scavenge..."
"L4D360UI_Lobby_SwitchDone_teamscavenge" "Cambiando a Búsqueda por equipos..."
"[english]L4D360UI_Lobby_SwitchTip_teamscavenge" "Convert the game to Team Scavenge mode."
"L4D360UI_Lobby_SwitchTip_teamscavenge" "Cambiar la partida al modo Búsqueda por equipos."
"[english]L4D360UI_Lobby_Change_GameSettings_DisabledTip" "Only the Leader can change the game settings."
"L4D360UI_Lobby_Change_GameSettings_DisabledTip" "Sólo el líder puede cambiar la configuración de la partida."
"[english]L4D360UI_Lobby_OpenToPublic_Disabled_Tip" "Only the Leader can open the lobby."
"L4D360UI_Lobby_OpenToPublic_Disabled_Tip" "Sólo el líder puede abrir la sala de espera."
"[english]L4D360UI_Lobby_MakeFriendOnly_Disabled_Tip" "Only the Leader can close the lobby."
"L4D360UI_Lobby_MakeFriendOnly_Disabled_Tip" "Sólo el líder puede cerrar la sala de espera."
"[english]L4D360UI_Lobby_Change_GameAccess_Disabled_Tip" "Only the Leader can change game access."
"L4D360UI_Lobby_Change_GameAccess_Disabled_Tip" "Sólo el líder puede cambiar el acceso a la partida."
"[english]L4D360UI_Lobby_Change_GameAccess_Disabled_Syslink_Tip" "You can't change the access on a LAN game."
"L4D360UI_Lobby_Change_GameAccess_Disabled_Syslink_Tip" "No puedes modificar el acceso en una partida LAN."
"[english]L4D360UI_Lobby_StartVoiceChat_Disabled_Tip" "Voice chat is unavailable until connection to other players has been established."
"L4D360UI_Lobby_StartVoiceChat_Disabled_Tip" "La charla de voz no estará disponible hasta que se haya establecido una conexión con otros jugadores."
"[english]L4D360UI_Lobby_Change_ServerType_Dedicated_Disabled_Tip" "You must be connected to Steam in order to search for dedicated servers."
"L4D360UI_Lobby_Change_ServerType_Dedicated_Disabled_Tip" "Debes estar conectado a Steam para buscar servidores dedicados."
"[english]L4D360UI_Lobby_InviteFriends" "INVITE FRIENDS"
"L4D360UI_Lobby_InviteFriends" "INVITAR AMIGOS"
"[english]L4D360UI_Lobby_Change_GameSettings" "EDIT GAME SETTINGS"
"L4D360UI_Lobby_Change_GameSettings" "EDITAR CONFIGURACIÓN DE LA PARTIDA"
"[english]L4D360UI_Lobby_StartMatchmacking" "START THE GAME"
"L4D360UI_Lobby_StartMatchmacking" "EMPEZAR LA PARTIDA"
"[english]L4D360UI_Lobby_StartMatchmacking_Tip" "Start the game with the players currently in the lobby."
"L4D360UI_Lobby_StartMatchmacking_Tip" "Comenzar la partida con los jugadores actuales de la sala de espera."
"[english]L4D360UI_Lobby_StartMatchmacking_Disabled_Tip" "Only the Leader can start the game."
"L4D360UI_Lobby_StartMatchmacking_Disabled_Tip" "Sólo el líder puede empezar la partida."
"[english]L4D360UI_Lobby_StartMatchmacking_Versus_Disabled_Tip" "The Leader can't start the game until there is at least one available player on each team."
"L4D360UI_Lobby_StartMatchmacking_Versus_Disabled_Tip" "El líder no puede comenzar la partida hasta que haya al menos un jugador disponible en cada equipo."
"[english]L4D360UI_Lobby_FindOpponentTeam" "FIND OPPONENT TEAM"
"L4D360UI_Lobby_FindOpponentTeam" "BUSCAR EQUIPO RIVAL"
"[english]L4D360UI_Lobby_FindOpponentTeam_Tip" "Initiate a search for opponent team."
"L4D360UI_Lobby_FindOpponentTeam_Tip" "Iniciar la búsqueda de un equipo rival."
"[english]L4D360UI_Lobby_FindOpponentTeam_Tip_Disabled" "Team Leader can start the game only when the team is full."
"L4D360UI_Lobby_FindOpponentTeam_Tip_Disabled" "El Líder de equipo sólo puede iniciar la partida cuando el equipo esté completo."
"[english]L4D360UI_Lobby_CancelMatchmacking" "CANCEL SEARCH"
"L4D360UI_Lobby_CancelMatchmacking" "CANCELAR BÚSQUEDA"
"[english]L4D360UI_Lobby_OpenToPublic" "OPEN LOBBY TO PUBLIC"
"L4D360UI_Lobby_OpenToPublic" "ABRIR SALA DE ESPERA AL PÚBLICO"
"[english]L4D360UI_Lobby_MakeFriendOnly" "MAKE LOBBY FRIENDS-ONLY"
"L4D360UI_Lobby_MakeFriendOnly" "CREAR SALA DE ESPERA SÓLO PARA AMIGOS"
"[english]L4D360UI_Lobby_LeaveLobby" "LEAVE THIS LOBBY"
"L4D360UI_Lobby_LeaveLobby" "ABANDONAR ESTA SALA DE ESPERA"
"[english]L4D360UI_Lobby_Character" "CHOOSE CHARACTER"
"L4D360UI_Lobby_Character" "SELECCIONAR PERSONAJE"
"[english]L4D360UI_Lobby_Change_ServerType" "SERVER TYPE"
"L4D360UI_Lobby_Change_ServerType" "TIPO DE SERVIDOR"
"[english]L4D360UI_Lobby_Change_GameAccess" "PERMISSIONS"
"L4D360UI_Lobby_Change_GameAccess" "PERMISOS"
"[english]L4D360UI_Lobby_Change_GameAccessAlt1" "CHOOSE GAME TYPE"
"L4D360UI_Lobby_Change_GameAccessAlt1" "CHOOSE GAME TYPE"
"[english]L4D360UI_Lobby_Change_GameAccessAlt2" "CHOOSE ACCESS"
"L4D360UI_Lobby_Change_GameAccessAlt2" "SELECCIONAR ACCESO"
"[english]L4D360UI_Lobby_Change_GameAccessAlt3" "CHANGE INVITE LEVEL"
"L4D360UI_Lobby_Change_GameAccessAlt3" "CAMBIAR NIVEL DE INVITACIÓN"
"[english]L4D360UI_Lobby_Change_GameAccessAlt4" "CHOOSE CONNECTION"