-
Notifications
You must be signed in to change notification settings - Fork 0
/
cstrike_spanish_fixed.txt
3534 lines (3376 loc) · 175 KB
/
cstrike_spanish_fixed.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"
{
"Cstrike_Reset_View" "Restablecer vista"
"[english]Cstrike_Reset_View" "Reset view"
"Cstrike_Mouse_Look" "Vista ratón"
"[english]Cstrike_Mouse_Look" "Mouse look"
"Cstrike_Keyboard_Look" "Vista teclado"
"[english]Cstrike_Keyboard_Look" "Keyboard look"
"Cstrike_Standard_Radio" "Mensajes radio estándar"
"[english]Cstrike_Standard_Radio" "Standard radio messages"
"Cstrike_Group_Radio" "Mensajes radio grupo"
"[english]Cstrike_Group_Radio" "Group radio messages"
"Cstrike_Report_Radio" "Mensajes radio informe"
"[english]Cstrike_Report_Radio" "Report radio messages"
"Cstrike_Nightvision" "Visión nocturna sí / no"
"[english]Cstrike_Nightvision" "Turn nightvision on/off"
"Cstrike_Menu_Title" "MENÚ"
"[english]Cstrike_Menu_Title" "MENU"
"Cstrike_Buy_Menu" "Menú de compra"
"[english]Cstrike_Buy_Menu" "Buy Menu"
"Cstrike_Buy_Primary_Ammo" "Comprar munición 1 (Opcional)"
"[english]Cstrike_Buy_Primary_Ammo" "Buy primary ammo (optional)"
"Cstrike_Buy_Secondary_Ammo" "Comprar munición 2 (Opcional)"
"[english]Cstrike_Buy_Secondary_Ammo" "Buy secondary ammo (optional)"
"Cstrike_Buy_Equip_Menu" "Menú Comprar equipo (Opcional)"
"[english]Cstrike_Buy_Equip_Menu" "Buy equipment menu (optional)"
"Cstrike_Menu_Item_0" "Objeto menú 0"
"[english]Cstrike_Menu_Item_0" "Menu item 0"
"Cstrike_Menu_Item_1" "Objeto menú 1"
"[english]Cstrike_Menu_Item_1" "Menu item 1"
"Cstrike_Menu_Item_2" "Objeto menú 2"
"[english]Cstrike_Menu_Item_2" "Menu item 2"
"Cstrike_Menu_Item_3" "Objeto menú 3"
"[english]Cstrike_Menu_Item_3" "Menu item 3"
"Cstrike_Menu_Item_4" "Objeto menú 4"
"[english]Cstrike_Menu_Item_4" "Menu item 4"
"Cstrike_Menu_Item_5" "Objeto menú 5"
"[english]Cstrike_Menu_Item_5" "Menu item 5"
"Cstrike_Menu_Item_6" "Objeto menú 6"
"[english]Cstrike_Menu_Item_6" "Menu item 6"
"Cstrike_Menu_Item_7" "Objeto menú 7"
"[english]Cstrike_Menu_Item_7" "Menu item 7"
"Cstrike_Menu_Item_8" "Objeto menú 8"
"[english]Cstrike_Menu_Item_8" "Menu item 8"
"Cstrike_Menu_Item_9" "Objeto menú 9"
"[english]Cstrike_Menu_Item_9" "Menu item 9"
"Cstrike_Mission_Briefing" "Ver instrucciones misión"
"[english]Cstrike_Mission_Briefing" "Recap mission briefing"
"Cstrike_Fire" "Disparar"
"[english]Cstrike_Fire" "Fire"
"Cstrike_Weapon_Special_Func" "Función especial arma"
"[english]Cstrike_Weapon_Special_Func" "Weapon special function"
"Cstrike_Drop_Weapon" "Soltar arma"
"[english]Cstrike_Drop_Weapon" "Drop current weapon"
"Cstrike_Combat_Title" "COMBATE"
"[english]Cstrike_Combat_Title" "COMBAT"
"Cstrike_Select_Team" "Seleccionar equipo"
"[english]Cstrike_Select_Team" "Select team"
"Cstrike_Corpse_Stay" "Tiempo desap. de cuerpos"
"[english]Cstrike_Corpse_Stay" "Time before dead bodies disappear"
"Cstrike_Max_Shells" "Munición máxima"
"[english]Cstrike_Max_Shells" "Max shells"
"Cstrike_Max_Smoke_Puffs" "Ráfagas de humo máximas"
"[english]Cstrike_Max_Smoke_Puffs" "Max smoke puffs"
"Cstrike_Smoke_Quality" "Complejidad de granada de gas"
"[english]Cstrike_Smoke_Quality" "Smoke Gas Grenade sprite quality"
"Cstrike_Smoke_Best" "Mejor imagen, más lento"
"[english]Cstrike_Smoke_Best" "Best looking, slowest"
"Cstrike_Smoke_Medium" "Calidad media"
"[english]Cstrike_Smoke_Medium" "Medium quality"
"Cstrike_Smoke_Worst" "Peor imagen, más rápido"
"[english]Cstrike_Smoke_Worst" "Worst looking, fastest"
"Cstrike_Weapon_Alignment" "Alineación de armas"
"[english]Cstrike_Weapon_Alignment" "Weapon alignment"
"Cstrike_Left_Handed" "Zurdo"
"[english]Cstrike_Left_Handed" "Left handed"
"Cstrike_Right_Handed" "Diestro"
"[english]Cstrike_Right_Handed" "Right handed"
"Cstrike_Buy_Menu_Type" "Tipo de menú de compra"
"[english]Cstrike_Buy_Menu_Type" "Buy menu type"
"Cstrike_Old_Style_Menus" "Menús al viejo estilo"
"[english]Cstrike_Old_Style_Menus" "Old style menus"
"Cstrike_VGUI_Menus" "Menús de interfaz de usuario"
"[english]Cstrike_VGUI_Menus" "VGUI menus"
"Cstrike_Automatic_Weapon_Switch" "Cambiar autom. a las armas recogidas (si son más poderosas)"
"[english]Cstrike_Automatic_Weapon_Switch" "Automatically switch to picked up weapons (if more powerful)"
"Cstrike_AutoHelp" "Ayuda automática"
"[english]Cstrike_AutoHelp" "Auto-help"
"Cstrike_Timelimit" "Duración del mapa (min.)"
"[english]Cstrike_Timelimit" "Time per map (minutes)"
"Cstrike_WinLimit" "Límite de victorias (rondas)"
"[english]Cstrike_WinLimit" "Win limit (rounds)"
"Cstrike_RoundLimit" "Límite de rondas (rondas)"
"[english]Cstrike_RoundLimit" "Round limit (rounds)"
"Cstrike_RoundTime" "Duración de la ronda (min.)"
"[english]Cstrike_RoundTime" "Time per round (minutes)"
"Cstrike_FreezeTime" "Periodo de congelación (seg.)"
"[english]Cstrike_FreezeTime" "Freeze time (seconds)"
"Cstrike_BuyTime" "Tiempo para comprar (min.)"
"[english]Cstrike_BuyTime" "Buy time (minutes)"
"Cstrike_StartMoney" "Dinero inicial"
"[english]Cstrike_StartMoney" "Starting money"
"Cstrike_Death_Camera_Type" "Tipo de cámara persecución / muerte"
"[english]Cstrike_Death_Camera_Type" "Death camera type"
"Cstrike_Spectate_Anyone" "Observar a cualquiera"
"[english]Cstrike_Spectate_Anyone" "Spectate anyone"
"Cstrike_Spectate_Team_Only" "Observar a mi equipo"
"[english]Cstrike_Spectate_Team_Only" "Spectate team only"
"Cstrike_Only_First_Person" "Solo primera persona"
"[english]Cstrike_Only_First_Person" "Only first-person"
"Cstrike_Fade_To_Black" "Deshabilitar cám. de persecución/muerte"
"[english]Cstrike_Fade_To_Black" "Disable chase/death cam"
"Cstrike_TK_Punish" "Matar TKers en proxima ronda"
"[english]Cstrike_TK_Punish" "Kill TKers on next round"
"Cstrike_AutoKick" "Expulsar ausentes y TKers"
"[english]Cstrike_AutoKick" "Kick idlers and TKers"
"Cstrike_Hostage_Penalty" "Expulsar luego de matar (x) rehenes"
"[english]Cstrike_Hostage_Penalty" "Kick after (x) hostage kills"
"Cstrike_Allow_Flashlight" "Permitir linterna"
"[english]Cstrike_Allow_Flashlight" "Allow flashlight"
"Cstrike_Spec_Ter_Score" "Terroristas :"
"[english]Cstrike_Spec_Ter_Score" "Terrorists :"
"Cstrike_Spec_CT_Score" "Antiterroristas :"
"[english]Cstrike_Spec_CT_Score" "Counter-Terrorists :"
"Cstrike_ScoreBoard_Ter" "Terroristas"
"[english]Cstrike_ScoreBoard_Ter" "Terrorists"
"Cstrike_ScoreBoard_CT" "Antiterroristas"
"[english]Cstrike_ScoreBoard_CT" "Counter-Terrorists"
"Cstrike_ScoreBoard_Player" "%s1 - %s2 jugador"
"[english]Cstrike_ScoreBoard_Player" "%s1 - %s2 player"
"Cstrike_ScoreBoard_Players" "%s1 - %s2 jugadores"
"[english]Cstrike_ScoreBoard_Players" "%s1 - %s2 players"
"Cstrike_DEAD" "Muerto"
"[english]Cstrike_DEAD" "Dead"
"Cstrike_VIP" "VIP"
"[english]Cstrike_VIP" "VIP"
"Cstrike_BOMB" "Bomba"
"[english]Cstrike_BOMB" "Bomb"
"Cstrike_Cancel" "&0 CANCELAR"
"[english]Cstrike_Cancel" "&0 CANCEL"
"Cstrike_CancelLabel" "CANCELAR"
"[english]Cstrike_CancelLabel" "CANCEL"
"Cstrike_OK" "&Aceptar"
"[english]Cstrike_OK" "&OK"
"Cstrike_Join_Team" "SELECCIONAR EQUIPO"
"[english]Cstrike_Join_Team" "SELECT TEAM"
"Cstrike_Terrorist_Forces" "&1 FUERZAS TERRORISTAS"
"[english]Cstrike_Terrorist_Forces" "&1 TERRORIST FORCES"
"Cstrike_CT_Forces" "&2 FUERZAS ANTITERRORISTAS"
"[english]Cstrike_CT_Forces" "&2 CT FORCES"
"Cstrike_VIP_Team" "&3 VIP"
"[english]Cstrike_VIP_Team" "&3 VIP"
"Cstrike_Team_AutoAssign" "&5 ASIGNACIÓN AUTOMÁTICA"
"[english]Cstrike_Team_AutoAssign" "&5 AUTO ASSIGN"
"Cstrike_Menu_Spectate" "&6 OBSERVAR"
"[english]Cstrike_Menu_Spectate" "&6 SPECTATE"
"Cstrike_Join_Class" "SELECCIONAR UNA CLASE"
"[english]Cstrike_Join_Class" "CHOOSE A CLASS"
"Cstrike_Auto_Select" "&5 SELECCIÓN AUTOMÁTICA"
"[english]Cstrike_Auto_Select" "&5 AUTO-SELECT"
"Cstrike_Terror" "&1 CONEXIÓN PHOENIX"
"[english]Cstrike_Terror" "&1 PHOENIX CONNEXION"
"Cstrike_L337_Krew" "&2 UNIDAD DE ÉLITE"
"[english]Cstrike_L337_Krew" "&2 ELITE CREW"
"Cstrike_Arctic" "&3 VENGADORES ÁRTICOS"
"[english]Cstrike_Arctic" "&3 ARCTIC AVENGERS"
"Cstrike_Guerilla" "&4 GUERRA DE GUERRILLAS"
"[english]Cstrike_Guerilla" "&4 GUERILLA WARFARE"
"Cstrike_Urban" "&1 EQUIPO SEAL 6"
"[english]Cstrike_Urban" "&1 SEAL TEAM 6"
"Cstrike_GSG9" "&2 GSG-9"
"[english]Cstrike_GSG9" "&2 GSG-9"
"Cstrike_SAS" "&3 SAS"
"[english]Cstrike_SAS" "&3 SAS"
"Cstrike_GIGN" "&4 GIGN"
"[english]Cstrike_GIGN" "&4 GIGN"
"Cstrike_Terror_Name" "LA FACCIÓN PHOENIX"
"[english]Cstrike_Terror_Name" "THE PHOENIX FACTION"
"Cstrike_Leet_Name" "UNIDAD_DE ÉLITE"
"[english]Cstrike_Leet_Name" "ELITE_CREW"
"Cstrike_Arctic_Name" "VENGADORES ÁRTICOS"
"[english]Cstrike_Arctic_Name" "ARCTIC AVENGERS"
"Cstrike_Guerilla_Name" "GUERRA DE GUERRILLAS"
"[english]Cstrike_Guerilla_Name" "GUERILLA WARFARE"
"Cstrike_Urban_Name" "EQUIPO SEAL 6"
"[english]Cstrike_Urban_Name" "SEAL TEAM 6"
"Cstrike_GSG9_Name" "GRENZSCHUTZGRUPPE-9"
"[english]Cstrike_GSG9_Name" "GRENZSCHUTZGRUPPE-9"
"Cstrike_SAS_Name" "BRITISH SPECIAL AIR SERVICE"
"[english]Cstrike_SAS_Name" "BRITISH SPECIAL AIR SERVICE"
"Cstrike_GIGN_Name" "GROUPE D'INTERVENTION DE LA GENDARMERIE NATIONALE"
"[english]Cstrike_GIGN_Name" "GROUPE D'INTERVENTION DE LA GENDARMERIE NATIONALE"
"Cstrike_Autoselect_Name" "SELECCIONAR UNA CLASE DE PERSONAJE AL AZAR"
"[english]Cstrike_Autoselect_Name" "RANDOMLY SELECT A CHARACTER CLASS"
"Cstrike_Terror_Label" "Conocida por eliminar a todo aquel que se
les opone, la Facción Phoenix es uno de los
grupos terroristas más temidos en Europa del Este.
Se formó poco después de la disolución de la URSS. "
"[english]Cstrike_Terror_Label" "Having established a reputation for killing anyone that
gets in their way, the Phoenix Faction is one of
the most feared terrorist groups in Eastern Europe.
Formed shortly after the breakup of the USSR. "
"Cstrike_Leet_Label" "Grupo fundamentalista de Oriente Medio concentrado en
dominar el mundo y otras malévolas acciones."
"[english]Cstrike_Leet_Label" "Middle Eastern fundamentalist group bent on world
domination and various other evil deeds."
"Cstrike_Arctic_Label" "Facción terrorista sueca fundada en 1977. Famosa por
la bomba colocada en la embajada de Canadá en 1990."
"[english]Cstrike_Arctic_Label" "Swedish terrorist faction founded in 1977. Famous for
their bombing of the Canadian embassy in 1990."
"Cstrike_Guerilla_Label" "Facción terrorista fundada en Oriente Medio, este
grupo tiene fama de ser implacable. Su
repulsa por el estilo de vida estadounidense quedó demostrada por
la bomba colocada en 1982 en un autobús escolar lleno de músicos de
rock."
"[english]Cstrike_Guerilla_Label" "A terrorist faction founded in the Middle East, this
group has a reputation for ruthlessness. Their
disgust for the American lifestyle was demonstrated in
their 1982 bombing of a school bus full of Rock and Roll
musicians."
"Cstrike_Urban_Label" "El ST-6 (más tarde conocido como DEVGRU) fue fundado
en 1980 bajo el mando del capitán de corbeta Richard
Marcincko. El ST-6 fue puesto en alerta permanente para
responder a ataques terroristas contra objetivos
estadounidenses en todo el mundo."
"[english]Cstrike_Urban_Label" "ST-6 (to be known later as DEVGRU) was founded in 1980
under the command of Lieutenant-Commander Richard
Marcincko. ST-6 was placed on permanent alert to respond
to terrorist attacks against American targets worldwide."
"Cstrike_GSG9_Label" "El GSG-9 fue creado a raíz de los trágicos incidentes que provocaron la
muerte de varios atletas israelíes durante los Juegos Olímpicos de
1972 en Munich, Alemania."
"[english]Cstrike_GSG9_Label" "GSG-9 was born out of the tragic events that led to the
death of several Israeli athletes during the
1972 Olympic games in Munich, Germany."
"Cstrike_SAS_Label" "El mundialmente conocido SAS del Reino Unido fue fundado durante la II
Guerra Mundial por David Stirling. Su
papel durante la II GM fue la obtención de información tras las
líneas enemigas y la ejecución de sabotajes y
asesinatos contra objetivos clave."
"[english]Cstrike_SAS_Label" "The world-renowned British SAS was founded in the Second
World War by a man named David Stirling. Their
role during WW2 involved gathering intelligence behind
enemy lines and executing sabotage strikes and
assassinations against key targets."
"Cstrike_GIGN_Label" "La unidad antiterrorista francesa de élite, el GIGN, fue
creada para ofrecer una fuerza de respuesta rápida con
capacidad total de reacción ante cualquier acto terrorista a gran escala.
Formado por no más de 100 hombres, el GIGN se ha ganado
su reputación con un historial de operaciones cumplidas con éxito."
"[english]Cstrike_GIGN_Label" "France's elite Counter-Terrorist unit, the GIGN, was
designed to be a fast response force that could
decisively react to any large-scale terrorist incident.
Consisting of no more than 100 men, the GIGN has earned
its reputation through a history of successful ops."
"Cstrike_AutoSelect_Label" "Selección automática selecciona aleatoriamente un modelo de personaje."
"[english]Cstrike_AutoSelect_Label" "Auto-Select randomly selects a character model."
"Cstrike_Select_Category" "COMPRAR POR CATEGORÍA"
"[english]Cstrike_Select_Category" "SHOP BY CATEGORY"
"Cstrike_Pistols" "&1 PISTOLAS"
"[english]Cstrike_Pistols" "&1 PISTOLS"
"Cstrike_Shotguns" "&2 ESCOPETAS"
"[english]Cstrike_Shotguns" "&2 SHOTGUNS"
"Cstrike_SubMachineGuns" "&3 METRALLETAS"
"[english]Cstrike_SubMachineGuns" "&3 SMG"
"Cstrike_Rifles" "&4 RIFLES"
"[english]Cstrike_Rifles" "&4 RIFLES"
"Cstrike_MachineGuns" "&5 AMETRALLADORAS"
"[english]Cstrike_MachineGuns" "&5 MACHINE GUNS"
"Cstrike_Prim_Ammo" "&6 MUNICIÓN PRIMARIA"
"[english]Cstrike_Prim_Ammo" "&6 PRIMARY AMMO"
"Cstrike_Sec_Ammo" "&7 MUNICIÓN SECUNDARIA"
"[english]Cstrike_Sec_Ammo" "&7 SECONDARY AMMO"
"Cstrike_Equipment" "&8 EQUIPAMIENTO"
"[english]Cstrike_Equipment" "&8 EQUIPMENT"
"Cstrike_PistolsLabel" "COMPRAR PISTOLAS (ARMA SECUNDARIA)"
"[english]Cstrike_PistolsLabel" "BUY PISTOLS (SECONDARY WEAPON)"
"Cstrike_ShotgunsLabel" "COMPRAR ESCOPETAS (ARMA PRIMARIA)"
"[english]Cstrike_ShotgunsLabel" "BUY SHOTGUNS (PRIMARY WEAPON)"
"Cstrike_SubmachinegunsLabel" "COMPRAR AMETRALLADORAS (ARMA PRIMARIA)"
"[english]Cstrike_SubmachinegunsLabel" "BUY SUBMACHINE GUNS (PRIMARY WEAPON)"
"Cstrike_RiflesLabel" "COMPRAR RIFLES (ARMA PRIMARIA)"
"[english]Cstrike_RiflesLabel" "BUY RIFLES (PRIMARY WEAPON)"
"Cstrike_MachinegunsLabel" "COMPRAR METRALLETAS (ARMA PRIMARIA)"
"[english]Cstrike_MachinegunsLabel" "BUY MACHINE GUNS (PRIMARY WEAPON)"
"Cstrike_PrimaryammoLabel" "COMPRAR MUNICIÓN PARA EL ARMA PRIMARIA"
"[english]Cstrike_PrimaryammoLabel" "BUY AMMO FOR PRIMARY WEAPON"
"Cstrike_SecammoLabel" "COMPRAR MUNICIÓN PARA EL ARMA SECUNDARIA"
"[english]Cstrike_SecammoLabel" "BUY AMMO FOR SECONDARY WEAPON"
"Cstrike_EquipmentLabel" "COMPRAR EQUIPAMIENTO"
"[english]Cstrike_EquipmentLabel" "BUY EQUIPMENT"
"Cstrike_Select_Pistol" "SELECCIONA UNA PISTOLA"
"[english]Cstrike_Select_Pistol" "SELECT A PISTOL"
"Cstrike_Glock18" "&1 9X19MM SIDEARM"
"[english]Cstrike_Glock18" "&1 9X19MM SIDEARM"
"Cstrike_USP45" "&2 K&M .45 TACTICAL"
"[english]Cstrike_USP45" "&2 K&M .45 TACTICAL"
"Cstrike_P228" "&3 228 COMPACT"
"[english]Cstrike_P228" "&3 228 COMPACT"
"Cstrike_DesertEagle" "&4 NIGHT HAWK .50C"
"[english]Cstrike_DesertEagle" "&4 NIGHT HAWK .50C"
"Cstrike_FiveSeven" "&5 ES FIVE-SEVEN"
"[english]Cstrike_FiveSeven" "&5 ES FIVE-SEVEN"
"Cstrike_Elites" "&5 .40 DUAL ELITES"
"[english]Cstrike_Elites" "&5 .40 DUAL ELITES"
"Cstrike_m3" "&1 LEONE 12 GAUGE SUPER"
"[english]Cstrike_m3" "&1 LEONE 12 GAUGE SUPER"
"Cstrike_xm1014" "&2 LEONE YG1265 AUTO SHOTGUN"
"[english]Cstrike_xm1014" "&2 LEONE YG1265 AUTO SHOTGUN"
"Cstrike_Tmp" "&1 SCHMIDT MACHINE PISTOL"
"[english]Cstrike_Tmp" "&1 SCHMIDT MACHINE PISTOL"
"Cstrike_MP5" "&2 K&M SUB-MACHINE GUN"
"[english]Cstrike_MP5" "&2 K&M SUB-MACHINE GUN"
"Cstrike_UMP45" "&3 K&M UMP45"
"[english]Cstrike_UMP45" "&3 K&M UMP45"
"Cstrike_P90" "&4 ES C90"
"[english]Cstrike_P90" "&4 ES C90"
"Cstrike_MAC10" "&1 INGRAM MAC-10"
"[english]Cstrike_MAC10" "&1 INGRAM MAC-10"
"Cstrike_Famas" "&1 CLARION 5.56"
"[english]Cstrike_Famas" "&1 CLARION 5.56"
"Cstrike_Scout_CT" "&2 SCHMIDT SCOUT"
"[english]Cstrike_Scout_CT" "&2 SCHMIDT SCOUT"
"Cstrike_Scout_TER" "&3 SCHMIDT SCOUT"
"[english]Cstrike_Scout_TER" "&3 SCHMIDT SCOUT"
"Cstrike_M4A1" "&3 MAVERICK M4A1 CARBINE"
"[english]Cstrike_M4A1" "&3 MAVERICK M4A1 CARBINE"
"Cstrike_Aug" "&4 BULLPUP"
"[english]Cstrike_Aug" "&4 BULLPUP"
"Cstrike_SG550" "&5 KRIEG 550 COMMANDO"
"[english]Cstrike_SG550" "&5 KRIEG 550 COMMANDO"
"Cstrike_SG552" "&4 KRIEG 552"
"[english]Cstrike_SG552" "&4 KRIEG 552"
"Cstrike_AWP_CT" "&6 MAGNUM SNIPER RIFLE"
"[english]Cstrike_AWP_CT" "&6 MAGNUM SNIPER RIFLE"
"Cstrike_AWP_TER" "&5 MAGNUM SNIPER RIFLE"
"[english]Cstrike_AWP_TER" "&5 MAGNUM SNIPER RIFLE"
"Cstrike_Galil" "&1 IDF DEFENDER"
"[english]Cstrike_Galil" "&1 IDF DEFENDER"
"Cstrike_AK47" "&2 CV-47"
"[english]Cstrike_AK47" "&2 CV-47"
"Cstrike_G3SG1" "&6 D3/AU-1"
"[english]Cstrike_G3SG1" "&6 D3/AU-1"
"Cstrike_M249" "&1 M249"
"[english]Cstrike_M249" "&1 M249"
"Cstrike_Kevlar" "&1 KEVLAR"
"[english]Cstrike_Kevlar" "&1 KEVLAR"
"Cstrike_Kevlar_Helmet" "&2 KEVLAR+CASCO"
"[english]Cstrike_Kevlar_Helmet" "&2 KEVLAR+HELMET"
"Cstrike_Flashbang" "&3 BENGALA"
"[english]Cstrike_Flashbang" "&3 FLASHBANG"
"Cstrike_HE_Grenade" "&4 GRANADA HE"
"[english]Cstrike_HE_Grenade" "&4 HE GRENADE"
"Cstrike_Smoke_Grenade" "&5 GRANADA DE HUMO"
"[english]Cstrike_Smoke_Grenade" "&5 SMOKE GRENADE"
"Cstrike_Defuser" "&6 EQUIPO DE DESACTIVACIÓN"
"[english]Cstrike_Defuser" "&6 DEFUSAL KIT"
"Cstrike_NightVision_Button_CT" "&7 VISIÓN NOCTURNA"
"[english]Cstrike_NightVision_Button_CT" "&7 NIGHTVISION"
"Cstrike_NightVision_Button_TER" "&6 VISIÓN NOCTURNA"
"[english]Cstrike_NightVision_Button_TER" "&6 NIGHTVISION"
"Cstrike_Shield" "&8 ESCUDO TÁCTICO"
"[english]Cstrike_Shield" "&8 TACTICAL SHIELD"
"CStrike_PriceLabel" "PRECIO"
"[english]CStrike_PriceLabel" "PRICE"
"CStrike_OriginLabel" "PAÍS DE ORIGEN"
"[english]CStrike_OriginLabel" "COUNTRY OF ORIGIN"
"CStrike_CalibreLabel" "CALIBRE"
"[english]CStrike_CalibreLabel" "CALIBER"
"CStrike_ClipCapacityLabel" "CAPACIDAD DEL CARGADOR"
"[english]CStrike_ClipCapacityLabel" "CLIP CAPACITY"
"CStrike_RateOfFireLabel" "CADENCIA DE FUEGO"
"[english]CStrike_RateOfFireLabel" "RATE OF FIRE"
"CStrike_WeightLoadedLabel" "PESO (CARGADO)"
"[english]CStrike_WeightLoadedLabel" "WEIGHT (LOADED)"
"CStrike_WeightEmptyLabel" "PESO (VACÍO)"
"[english]CStrike_WeightEmptyLabel" "WEIGHT (EMPTY)"
"CStrike_ProjectileWeightLabel" "PESO DEL PROYECTIL"
"[english]CStrike_ProjectileWeightLabel" "PROJECTILE WEIGHT"
"CStrike_MuzzleVelocityLabel" "VELOCIDAD DE SALIDA"
"[english]CStrike_MuzzleVelocityLabel" "MUZZLE VELOCITY"
"CStrike_MuzzleEnergyLabel" "ENERGÍA DE LA BOCA DE CAÑÓN"
"[english]CStrike_MuzzleEnergyLabel" "MUZZLE ENERGY"
"Cstrike_DescriptionLabel" "DESCRIPCIÓN"
"[english]Cstrike_DescriptionLabel" "DESCRIPTION"
"CStrike_GlockPrice" ": 400$"
"[english]CStrike_GlockPrice" ": $400"
"CStrike_GlockOrigin" ": AUSTRIA"
"[english]CStrike_GlockOrigin" ": AUSTRIA"
"CStrike_GlockCalibre" ": 9MM PARABELLUM"
"[english]CStrike_GlockCalibre" ": 9MM PARABELLUM"
"CStrike_GlockClipCapacity" ": 20 TIROS"
"[english]CStrike_GlockClipCapacity" ": 20 ROUNDS"
"CStrike_GlockRateOfFire" ": N/A"
"[english]CStrike_GlockRateOfFire" ": N/A"
"CStrike_GlockWeightLoaded" ": 0,9 KG"
"[english]CStrike_GlockWeightLoaded" ": 0.9KG"
"CStrike_GlockProjectileWeight" ": 8 GRS"
"[english]CStrike_GlockProjectileWeight" ": 8 GRAMS"
"CStrike_GlockMuzzleVelocity" ": 345 M/SEG"
"[english]CStrike_GlockMuzzleVelocity" ": 1132 FEET/SECOND"
"CStrike_GlockMuzzleEnergy" ": 475 JULIOS"
"[english]CStrike_GlockMuzzleEnergy" ": 475 JOULES"
"CStrike_USP45Price" ": 500$"
"[english]CStrike_USP45Price" ": $500"
"CStrike_USP45Origin" ": ALEMANIA"
"[english]CStrike_USP45Origin" ": GERMANY"
"CStrike_USP45Calibre" ": .45 ACP"
"[english]CStrike_USP45Calibre" ": .45 ACP"
"CStrike_USP45ClipCapacity" ": 12 TIROS"
"[english]CStrike_USP45ClipCapacity" ": 12 ROUNDS"
"CStrike_USP45RateOfFire" ": N/A"
"[english]CStrike_USP45RateOfFire" ": N/A"
"CStrike_USP45WeightEmpty" ": 1 KG"
"[english]CStrike_USP45WeightEmpty" ": 1KG"
"CStrike_USP45ProjectileWeight" ": 15,2 GRS"
"[english]CStrike_USP45ProjectileWeight" ": 15.2 GRAMS"
"CStrike_USP45MuzzleVelocity" ": 574 M/SEG"
"[english]CStrike_USP45MuzzleVelocity" ": 886 FEET/SECOND"
"CStrike_USP45MuzzleEnergy" ": 553 JULIOS"
"[english]CStrike_USP45MuzzleEnergy" ": 553 JOULES"
"CStrike_P228Price" ": 600$"
"[english]CStrike_P228Price" ": $600"
"CStrike_P228Origin" ": SUIZA/ALEMANIA"
"[english]CStrike_P228Origin" ": SWITZERLAND/GERMANY"
"CStrike_P228Calibre" ": .357 SIG"
"[english]CStrike_P228Calibre" ": .357 SIG"
"CStrike_P228ClipCapacity" ": 13 TIROS"
"[english]CStrike_P228ClipCapacity" ": 13 ROUNDS"
"CStrike_P228RateOfFire" ": N/A"
"[english]CStrike_P228RateOfFire" ": N/A"
"CStrike_P228WeightLoaded" ": 1,03 KG"
"[english]CStrike_P228WeightLoaded" ": 1.03KG"
"CStrike_P228ProjectileWeight" ": 8,1 GRS"
"[english]CStrike_P228ProjectileWeight" ": 8.1 GRAMS"
"CStrike_P228MuzzleVelocity" ": 426 M/SEG"
"[english]CStrike_P228MuzzleVelocity" ": 1400 FEET/SECOND"
"CStrike_P228MuzzleEnergy" ": 600 JULIOS"
"[english]CStrike_P228MuzzleEnergy" ": 600 JOULES"
"CStrike_DesertEaglePrice" ": 650$"
"[english]CStrike_DesertEaglePrice" ": $650"
"CStrike_DesertEagleOrigin" ": ISRAEL"
"[english]CStrike_DesertEagleOrigin" ": ISRAEL"
"CStrike_DesertEagleCalibre" ": .50 ACTION EXPRESS"
"[english]CStrike_DesertEagleCalibre" ": .50 ACTION EXPRESS"
"CStrike_DesertEagleClipCapacity" ": 7 TIROS"
"[english]CStrike_DesertEagleClipCapacity" ": 7 ROUNDS"
"CStrike_DesertEagleRateOfFire" ": N/A"
"[english]CStrike_DesertEagleRateOfFire" ": N/A"
"CStrike_DesertEagleWeightLoaded" ": 1,8 KG"
"[english]CStrike_DesertEagleWeightLoaded" ": 1.8KG"
"CStrike_DesertEagleProjectileWeight" ": 19,4 GRS"
"[english]CStrike_DesertEagleProjectileWeight" ": 19.4 GRAMS"
"CStrike_DesertEagleMuzzleVelocity" ": 420 M/SEG"
"[english]CStrike_DesertEagleMuzzleVelocity" ": 1380 FEET/SECOND"
"CStrike_DesertEagleMuzzleEnergy" ": 1.650 JULIOS"
"[english]CStrike_DesertEagleMuzzleEnergy" ": 1650 JOULES"
"CStrike_FiveSevenPrice" ": 750$"
"[english]CStrike_FiveSevenPrice" ": $750"
"CStrike_FiveSevenOrigin" ": BÉLGICA"
"[english]CStrike_FiveSevenOrigin" ": BELGIUM"
"CStrike_FiveSevenCalibre" ": 5.7 X 28MM"
"[english]CStrike_FiveSevenCalibre" ": 5.7 X 28MM"
"CStrike_FiveSevenClipCapacity" ": 20 TIROS"
"[english]CStrike_FiveSevenClipCapacity" ": 20 ROUNDS"
"CStrike_FiveSevenRateOfFire" ": N/A"
"[english]CStrike_FiveSevenRateOfFire" ": N/A"
"CStrike_FiveSevenWeightLoaded" ": 0,618 KG"
"[english]CStrike_FiveSevenWeightLoaded" ": 0.618KG"
"CStrike_FiveSevenProjectileWeight" ": 2 GRS"
"[english]CStrike_FiveSevenProjectileWeight" ": 2 GRAMS"
"CStrike_FiveSevenMuzzleVelocity" ": 714 M/SEG"
"[english]CStrike_FiveSevenMuzzleVelocity" ": 2345 FEET/SECOND"
"CStrike_FiveSevenMuzzleEnergy" ": 465 JULIOS"
"[english]CStrike_FiveSevenMuzzleEnergy" ": 465 JOULES"
"CStrike_ElitesPrice" ": 800$"
"[english]CStrike_ElitesPrice" ": $800"
"CStrike_ElitesOrigin" ": ITALIA"
"[english]CStrike_ElitesOrigin" ": ITALY"
"CStrike_ElitesCalibre" ": 9MM PARABELLUM"
"[english]CStrike_ElitesCalibre" ": 9MM PARABELLUM"
"CStrike_ElitesClipCapacity" ": 15 TIROS"
"[english]CStrike_ElitesClipCapacity" ": 15 ROUNDS"
"CStrike_ElitesRateOfFire" ": N/A"
"[english]CStrike_ElitesRateOfFire" ": N/A"
"CStrike_ElitesWeightLoaded" ": 1,15 KG"
"[english]CStrike_ElitesWeightLoaded" ": 1.15KG"
"CStrike_ElitesProjectileWeight" ": 8 GRS"
"[english]CStrike_ElitesProjectileWeight" ": 8 GRAMS"
"CStrike_ElitesMuzzleVelocity" ": 390 M/SEG"
"[english]CStrike_ElitesMuzzleVelocity" ": 1280 FEET/SECOND"
"CStrike_ElitesMuzzleEnergy" ": 606 JULIOS"
"[english]CStrike_ElitesMuzzleEnergy" ": 606 JOULES"
"CStrike_M3Price" ": 1.700$"
"[english]CStrike_M3Price" ": $1700"
"CStrike_M3Origin" ": ITALIA"
"[english]CStrike_M3Origin" ": ITALY"
"CStrike_M3Calibre" ": 12 GAUGE"
"[english]CStrike_M3Calibre" ": 12 GAUGE"
"CStrike_M3ClipCapacity" ": 8 TIROS"
"[english]CStrike_M3ClipCapacity" ": 8 ROUNDS"
"CStrike_M3RateOfFire" ": N/A"
"[english]CStrike_M3RateOfFire" ": N/A"
"CStrike_M3WeightEmpty" ": 3,5 KG"
"[english]CStrike_M3WeightEmpty" ": 3.5KG"
"CStrike_M3ProjectileWeight" ": 3,8 GRS"
"[english]CStrike_M3ProjectileWeight" ": 3.8 GRAMS"
"CStrike_M3MuzzleVelocity" ": 381 M/SEG"
"[english]CStrike_M3MuzzleVelocity" ": 1250 FEET/SECOND"
"CStrike_M3MuzzleEnergy" ": 2.429 JULIOS"
"[english]CStrike_M3MuzzleEnergy" ": 2429 JOULES"
"CStrike_XM1014Price" ": 3.000$"
"[english]CStrike_XM1014Price" ": $3000"
"CStrike_XM1014Origin" ": ITALIA"
"[english]CStrike_XM1014Origin" ": ITALY"
"CStrike_XM1014Calibre" ": 12 GAUGE"
"[english]CStrike_XM1014Calibre" ": 12 GAUGE"
"CStrike_XM1014ClipCapacity" ": 7 TIROS"
"[english]CStrike_XM1014ClipCapacity" ": 7 ROUNDS"
"CStrike_XM1014RateOfFire" ": 400 RPM"
"[english]CStrike_XM1014RateOfFire" ": 400 RPM"
"CStrike_XM1014WeightEmpty" ": 4 KG"
"[english]CStrike_XM1014WeightEmpty" ": 4KG"
"CStrike_XM1014ProjectileWeight" ": 3,8 GRS/BALA"
"[english]CStrike_XM1014ProjectileWeight" ": 3.8 GRAMS/PELLET"
"CStrike_XM1014MuzzleVelocity" ": 381 M/SEG"
"[english]CStrike_XM1014MuzzleVelocity" ": 1250 FEET/SECOND"
"CStrike_XM1014MuzzleEnergy" ": 2.429 JULIOS"
"[english]CStrike_XM1014MuzzleEnergy" ": 2429 JOULES"
"CStrike_TMPPrice" ": 1.250$"
"[english]CStrike_TMPPrice" ": $1250"
"CStrike_TMPOrigin" ": AUSTRIA"
"[english]CStrike_TMPOrigin" ": AUSTRIA"
"CStrike_TMPCalibre" ": 9MM PARABELLUM"
"[english]CStrike_TMPCalibre" ": 9MM PARABELLUM"
"CStrike_TMPClipCapacity" ": 30 TIROS"
"[english]CStrike_TMPClipCapacity" ": 30 ROUNDS"
"CStrike_TMPRateOfFire" ": 857 RPM"
"[english]CStrike_TMPRateOfFire" ": 857 RPM"
"CStrike_TMPWeightEmpty" ": 1,3 KG"
"[english]CStrike_TMPWeightEmpty" ": 1.3KG"
"CStrike_TMPProjectileWeight" ": 8 GRS"
"[english]CStrike_TMPProjectileWeight" ": 8 GRAMS"
"CStrike_TMPMuzzleVelocity" ": 390 M/SEG"
"[english]CStrike_TMPMuzzleVelocity" ": 1280 FEET/SECOND"
"CStrike_TMPMuzzleEnergy" ": 606 JULIOS"
"[english]CStrike_TMPMuzzleEnergy" ": 606 JOULES"
"CStrike_MP5Price" ": 1.500$"
"[english]CStrike_MP5Price" ": $1500"
"CStrike_MP5Origin" ": ALEMANIA"
"[english]CStrike_MP5Origin" ": GERMANY"
"CStrike_MP5Calibre" ": 9MM PARABELLUM"
"[english]CStrike_MP5Calibre" ": 9MM PARABELLUM"
"CStrike_MP5ClipCapacity" ": 30 TIROS"
"[english]CStrike_MP5ClipCapacity" ": 30 ROUNDS"
"CStrike_MP5RateOfFire" ": 800 RPM"
"[english]CStrike_MP5RateOfFire" ": 800 RPM"
"CStrike_MP5WeightEmpty" ": 3,42 KG"
"[english]CStrike_MP5WeightEmpty" ": 3.42KG"
"CStrike_MP5ProjectileWeight" ": 8 GRS"
"[english]CStrike_MP5ProjectileWeight" ": 8 GRAMS"
"CStrike_MP5MuzzleVelocity" ": 435 M/SEG"
"[english]CStrike_MP5MuzzleVelocity" ": 1132 FEET/SECOND"
"CStrike_MP5MuzzleEnergy" ": 637 JULIOS"
"[english]CStrike_MP5MuzzleEnergy" ": 637 JOULES"
"CStrike_Mac10Price" ": 1.400$"
"[english]CStrike_Mac10Price" ": $1400"
"CStrike_Mac10Origin" ": ESTADOS UNIDOS"
"[english]CStrike_Mac10Origin" ": UNITED STATES OF AMERICA"
"CStrike_Mac10Calibre" ": .45 ACP"
"[english]CStrike_Mac10Calibre" ": .45 ACP"
"CStrike_Mac10ClipCapacity" ": 30 TIROS"
"[english]CStrike_Mac10ClipCapacity" ": 30 ROUNDS"
"CStrike_Mac10RateOfFire" ": 857 RPM"
"[english]CStrike_Mac10RateOfFire" ": 857 RPM"
"CStrike_Mac10WeightLoaded" ": 3,82 KG"
"[english]CStrike_Mac10WeightLoaded" ": 3.82 KG"
"CStrike_Mac10ProjectileWeight" ": 15,2 GRS"
"[english]CStrike_Mac10ProjectileWeight" ": 15.2 GRAMS"
"CStrike_Mac10MuzzleVelocity" ": 280 M/SEG"
"[english]CStrike_Mac10MuzzleVelocity" ": 919 FEET/SECOND"
"CStrike_Mac10MuzzleEnergy" ": 584 JULIOS"
"[english]CStrike_Mac10MuzzleEnergy" ": 584 JOULES"
"CStrike_UMP45Price" ": 1.700$"
"[english]CStrike_UMP45Price" ": $1700"
"CStrike_UMP45Origin" ": ALEMANIA"
"[english]CStrike_UMP45Origin" ": GERMANY"
"CStrike_UMP45Calibre" ": .45 ACP"
"[english]CStrike_UMP45Calibre" ": .45 ACP"
"CStrike_UMP45ClipCapacity" ": 25 TIROS"
"[english]CStrike_UMP45ClipCapacity" ": 25 ROUNDS"
"CStrike_UMP45RateOfFire" ": 600 RPM"
"[english]CStrike_UMP45RateOfFire" ": 600 RPM"
"CStrike_UMP45WeightLoaded" ": 2,27 KG"
"[english]CStrike_UMP45WeightLoaded" ": 2.27KG"
"CStrike_UMP45ProjectileWeight" ": 15,2 GRS"
"[english]CStrike_UMP45ProjectileWeight" ": 15.2 GRAMS"
"CStrike_UMP45MuzzleVelocity" ": 306 M/SEG"
"[english]CStrike_UMP45MuzzleVelocity" ": 1005 FEET/SECOND"
"CStrike_UMP45MuzzleEnergy" ": 625 JULIOS"
"[english]CStrike_UMP45MuzzleEnergy" ": 625 JOULES"
"CStrike_P90Price" ": 2.350$"
"[english]CStrike_P90Price" ": $2350"
"CStrike_P90Origin" ": BÉLGICA"
"[english]CStrike_P90Origin" ": BELGIUM"
"CStrike_P90Calibre" ": .338 LAPUA MAGNUM"
"[english]CStrike_P90Calibre" ": .338 LAPUA MAGNUM"
"CStrike_P90ClipCapacity" ": 50 TIROS"
"[english]CStrike_P90ClipCapacity" ": 50 ROUNDS"
"CStrike_P90RateOfFire" ": 900 RPM"
"[english]CStrike_P90RateOfFire" ": 900 RPM"
"CStrike_P90WeightLoaded" ": 3 KG"
"[english]CStrike_P90WeightLoaded" ": 3KG"
"CStrike_P90ProjectileWeight" ": 2 GRS"
"[english]CStrike_P90ProjectileWeight" ": 2 GRAMS"
"CStrike_P90MuzzleVelocity" ": 714 M/SEG"
"[english]CStrike_P90MuzzleVelocity" ": 2345 FEET/SECOND"
"CStrike_P90MuzzleEnergy" ": 465 JULIOS"
"[english]CStrike_P90MuzzleEnergy" ": 465 JOULES"
"CStrike_FamasPrice" ": 2.250$"
"[english]CStrike_FamasPrice" ": $2250"
"CStrike_FamasOrigin" ": FRANCIA"
"[english]CStrike_FamasOrigin" ": FRANCE"
"CStrike_FamasCalibre" ": 5.56 NATO"
"[english]CStrike_FamasCalibre" ": 5.56 NATO"
"CStrike_FamasClipCapacity" ": 25 TIROS"
"[english]CStrike_FamasClipCapacity" ": 25 ROUNDS"
"CStrike_FamasRateOfFire" ": 1.100 RPM"
"[english]CStrike_FamasRateOfFire" ": 1100 RPM"
"CStrike_FamasWeightLoaded" ": 3,40 KG"
"[english]CStrike_FamasWeightLoaded" ": 3.40KG"
"CStrike_FamasProjectileWeight" ": 4 GRS"
"[english]CStrike_FamasProjectileWeight" ": 4 GRAMS"
"CStrike_FamasMuzzleVelocity" ": 674 M/SEG"
"[english]CStrike_FamasMuzzleVelocity" ": 2212 FEET/SECOND"
"CStrike_FamasMuzzleEnergy" ": 1.712 JULIOS"
"[english]CStrike_FamasMuzzleEnergy" ": 1712 JOULES"
"CStrike_ScoutPrice" ": 2.750$"
"[english]CStrike_ScoutPrice" ": $2750"
"CStrike_ScoutOrigin" ": AUSTRIA"
"[english]CStrike_ScoutOrigin" ": AUSTRIA"
"CStrike_ScoutCalibre" ": 7.62 NATO"
"[english]CStrike_ScoutCalibre" ": 7.62 NATO"
"CStrike_ScoutClipCapacity" ": 10 TIROS"
"[english]CStrike_ScoutClipCapacity" ": 10 ROUNDS"
"CStrike_ScoutRateOfFire" ": N/A"
"[english]CStrike_ScoutRateOfFire" ": N/A"
"CStrike_ScoutWeightEmpty" ": 3,3 KG"
"[english]CStrike_ScoutWeightEmpty" ": 3.3KG"
"CStrike_ScoutProjectileWeight" ": 8 GRS"
"[english]CStrike_ScoutProjectileWeight" ": 8 GRAMS"
"CStrike_ScoutMuzzleVelocity" ": 853 M/SEG"
"[english]CStrike_ScoutMuzzleVelocity" ": 2800 FEET/SECOND"
"CStrike_ScoutMuzzleEnergy" ": 2.200 JULIOS"
"[english]CStrike_ScoutMuzzleEnergy" ": 2200 JOULES"
"CStrike_AK47Price" ": 2.500$"
"[english]CStrike_AK47Price" ": $2500"
"CStrike_AK47Origin" ": RUSIA"
"[english]CStrike_AK47Origin" ": RUSSIA"
"CStrike_AK47Calibre" ": 7.62 NATO"
"[english]CStrike_AK47Calibre" ": 7.62 NATO"
"CStrike_AK47ClipCapacity" ": 30 TIROS"
"[english]CStrike_AK47ClipCapacity" ": 30 ROUNDS"
"CStrike_AK47RateOfFire" ": 600 RPM"
"[english]CStrike_AK47RateOfFire" ": 600 RPM"
"CStrike_AK47WeightLoaded" ": 4,79 KG"
"[english]CStrike_AK47WeightLoaded" ": 4.79KG"
"CStrike_AK47ProjectileWeight" ": 7,9 GRS"
"[english]CStrike_AK47ProjectileWeight" ": 7.9 GRAMS"
"CStrike_AK47MuzzleVelocity" ": 709 M/SEG"
"[english]CStrike_AK47MuzzleVelocity" ": 2329 FEET/SECOND"
"CStrike_AK47MuzzleEnergy" ": 1.992 JULIOS"
"[english]CStrike_AK47MuzzleEnergy" ": 1992 JOULES"
"CStrike_GalilPrice" ": 2.000$"
"[english]CStrike_GalilPrice" ": $2000"
"CStrike_GalilOrigin" ": ISRAEL"
"[english]CStrike_GalilOrigin" ": ISRAEL"
"CStrike_GalilCalibre" ": .308"
"[english]CStrike_GalilCalibre" ": .308"
"CStrike_GalilClipCapacity" ": 35 TIROS"
"[english]CStrike_GalilClipCapacity" ": 35 ROUNDS"
"CStrike_GalilRateOfFire" ": 675 RPM"
"[english]CStrike_GalilRateOfFire" ": 675 RPM"
"CStrike_GalilWeightLoaded" ": 4,35 KG"
"[english]CStrike_GalilWeightLoaded" ": 4.35KG"
"CStrike_GalilProjectileWeight" ": 4 GRS"
"[english]CStrike_GalilProjectileWeight" ": 4 GRAMS"
"CStrike_GalilMuzzleVelocity" ": 613 M/SEG"
"[english]CStrike_GalilMuzzleVelocity" ": 2013 FEET/SECOND"
"CStrike_GalilMuzzleEnergy" ": 1.712 JULIOS"
"[english]CStrike_GalilMuzzleEnergy" ": 1712 JOULES"
"CStrike_M4A1Price" ": 3.100$"
"[english]CStrike_M4A1Price" ": $3100"
"CStrike_M4A1Origin" ": ESTADOS UNIDOS"
"[english]CStrike_M4A1Origin" ": UNITED STATES OF AMERICA"
"CStrike_M4A1Calibre" ": 5.56 NATO"
"[english]CStrike_M4A1Calibre" ": 5.56 NATO"
"CStrike_M4A1ClipCapacity" ": 30 TIROS"
"[english]CStrike_M4A1ClipCapacity" ": 30 ROUNDS"
"CStrike_M4A1RateOfFire" ": 685 RPM"
"[english]CStrike_M4A1RateOfFire" ": 685 RPM"
"CStrike_M4A1WeightEmpty" ": 3,22 KG"
"[english]CStrike_M4A1WeightEmpty" ": 3.22KG"
"CStrike_M4A1ProjectileWeight" ": 4 GRS"
"[english]CStrike_M4A1ProjectileWeight" ": 4 GRAMS"
"CStrike_M4A1MuzzleVelocity" ": 2.900 M/SEG"
"[english]CStrike_M4A1MuzzleVelocity" ": 2900 FEET/SECOND"
"CStrike_M4A1MuzzleEnergy" ": 1.570 JULIOS"
"[english]CStrike_M4A1MuzzleEnergy" ": 1570 JOULES"
"CStrike_AugPrice" ": 3.500$"
"[english]CStrike_AugPrice" ": $3500"
"CStrike_AugOrigin" ": AUSTRIA"
"[english]CStrike_AugOrigin" ": AUSTRIA"
"CStrike_AugCalibre" ": 5.56 NATO"
"[english]CStrike_AugCalibre" ": 5.56 NATO"
"CStrike_AugClipCapacity" ": 30 TIROS"
"[english]CStrike_AugClipCapacity" ": 30 ROUNDS"
"CStrike_AugRateOfFire" ": 727 RPM"
"[english]CStrike_AugRateOfFire" ": 727 RPM"
"CStrike_AugWeightLoaded" ": 4,09 KG"
"[english]CStrike_AugWeightLoaded" ": 4.09KG"
"CStrike_AugProjectileWeight" ": 4 GRS"
"[english]CStrike_AugProjectileWeight" ": 4 GRAMS"
"CStrike_AugMuzzleVelocity" ": 883 M/SEG"
"[english]CStrike_AugMuzzleVelocity" ": 2900 FEET/SECOND"
"CStrike_AugMuzzleEnergy" ": 1.570 JULIOS"
"[english]CStrike_AugMuzzleEnergy" ": 1570 JOULES"
"CStrike_SG550Price" ": 4.200$"
"[english]CStrike_SG550Price" ": $4200"
"CStrike_SG550Origin" ": SUIZA"
"[english]CStrike_SG550Origin" ": SWITZERLAND"
"CStrike_SG550Calibre" ": 5.56 NATO"
"[english]CStrike_SG550Calibre" ": 5.56 NATO"
"CStrike_SG550ClipCapacity" ": 30 TIROS"
"[english]CStrike_SG550ClipCapacity" ": 30 ROUNDS"
"CStrike_SG550RateOfFire" ": N/A"
"[english]CStrike_SG550RateOfFire" ": N/A"
"CStrike_SG550WeightEmpty" ": 7,02 KG"
"[english]CStrike_SG550WeightEmpty" ": 7.02KG"
"CStrike_SG550ProjectileWeight" ": 4 GRS"
"[english]CStrike_SG550ProjectileWeight" ": 4 GRAMS"
"CStrike_SG550MuzzleVelocity" ": 944 M/SEG"
"[english]CStrike_SG550MuzzleVelocity" ": 3100 FEET/SECOND"
"CStrike_SG550MuzzleEnergy" ": 1.650 JULIOS"
"[english]CStrike_SG550MuzzleEnergy" ": 1650 JOULES"
"CStrike_SG552Price" ": 3.500$"
"[english]CStrike_SG552Price" ": $3500"
"CStrike_SG552Origin" ": SUIZA"
"[english]CStrike_SG552Origin" ": SWITZERLAND"
"CStrike_SG552Calibre" ": 5.56 NATO"
"[english]CStrike_SG552Calibre" ": 5.56 NATO"
"CStrike_SG552ClipCapacity" ": 30 TIROS"
"[english]CStrike_SG552ClipCapacity" ": 30 ROUNDS"
"CStrike_SG552RateOfFire" ": 727 RPM"
"[english]CStrike_SG552RateOfFire" ": 727 RPM"
"CStrike_SG552WeightEmpty" ": 3,1 KG"
"[english]CStrike_SG552WeightEmpty" ": 3.1KG"
"CStrike_SG552ProjectileWeight" ": 4 GRS"
"[english]CStrike_SG552ProjectileWeight" ": 4 GRAMS"
"CStrike_SG552MuzzleVelocity" ": 883 M/SEG"
"[english]CStrike_SG552MuzzleVelocity" ": 2900 FEET/SECOND"
"CStrike_SG552MuzzleEnergy" ": 1.570 JULIOS"
"[english]CStrike_SG552MuzzleEnergy" ": 1570 JOULES"
"CStrike_AWPPrice" ": 4.750$"
"[english]CStrike_AWPPrice" ": $4750"
"CStrike_AWPOrigin" ": REINO UNIDO"
"[english]CStrike_AWPOrigin" ": UNITED KINGDOM"
"CStrike_AWPCalibre" ": .338 LAPUA MAGNUM"
"[english]CStrike_AWPCalibre" ": .338 LAPUA MAGNUM"
"CStrike_AWPClipCapacity" ": 10 TIROS"
"[english]CStrike_AWPClipCapacity" ": 10 ROUNDS"
"CStrike_AWPRateOfFire" ": N/A"
"[english]CStrike_AWPRateOfFire" ": N/A"
"CStrike_AWPWeightLoaded" ": 6 KG"
"[english]CStrike_AWPWeightLoaded" ": 6KG"
"CStrike_AWPProjectileWeight" ": 16,2 GRS"
"[english]CStrike_AWPProjectileWeight" ": 16.2 GRAMS"
"CStrike_AWPMuzzleVelocity" ": 914 M/SEG"
"[english]CStrike_AWPMuzzleVelocity" ": 3000 FEET/SECOND"
"CStrike_AWPMuzzleEnergy" ": 7.000 JULIOS"
"[english]CStrike_AWPMuzzleEnergy" ": 7000 JOULES"
"CStrike_G3SG1Price" ": 5.000$"
"[english]CStrike_G3SG1Price" ": $5000"
"CStrike_G3SG1Origin" ": ALEMANIA"
"[english]CStrike_G3SG1Origin" ": GERMANY"
"CStrike_G3SG1Calibre" ": 7.62 NATO"
"[english]CStrike_G3SG1Calibre" ": 7.62 NATO"
"CStrike_G3SG1ClipCapacity" ": 20 TIROS"
"[english]CStrike_G3SG1ClipCapacity" ": 20 ROUNDS"
"CStrike_G3SG1RateOfFire" ": N/A"
"[english]CStrike_G3SG1RateOfFire" ": N/A"
"CStrike_G3SG1WeightLoaded" ": 4,41 KG"
"[english]CStrike_G3SG1WeightLoaded" ": 4.41KG"
"CStrike_G3SG1ProjectileWeight" ": 8 GRS"
"[english]CStrike_G3SG1ProjectileWeight" ": 8 GRAMS"
"CStrike_G3SG1MuzzleVelocity" ": 853 M/SEG"
"[english]CStrike_G3SG1MuzzleVelocity" ": 2800 FEET/SECOND"
"CStrike_G3SG1MuzzleEnergy" ": 2.200 JULIOS"
"[english]CStrike_G3SG1MuzzleEnergy" ": 2200 JOULES"
"CStrike_M249Price" ": 5.750$"
"[english]CStrike_M249Price" ": $5750"
"CStrike_M249Origin" ": BÉLGICA"
"[english]CStrike_M249Origin" ": BELGIUM"
"CStrike_M249Calibre" ": 5.56 PARABELLUM"
"[english]CStrike_M249Calibre" ": 5.56 PARABELLUM"
"CStrike_M249ClipCapacity" ": 100 TIROS"
"[english]CStrike_M249ClipCapacity" ": 100 ROUNDS"
"CStrike_M249RateOfFire" ": 600 RPM"
"[english]CStrike_M249RateOfFire" ": 600 RPM"
"CStrike_M249WeightLoaded" ": 6 KG"
"[english]CStrike_M249WeightLoaded" ": 6KG"
"CStrike_M249ProjectileWeight" ": 4 GRS"
"[english]CStrike_M249ProjectileWeight" ": 4 GRAMS"
"CStrike_M249MuzzleVelocity" ": 914 M/SEG"
"[english]CStrike_M249MuzzleVelocity" ": 3000 FEET/SECOND"
"CStrike_M249MuzzleEnergy" ": 1.600 JULIOS"
"[english]CStrike_M249MuzzleEnergy" ": 1600 JOULES"
"Cstrike_KevlarPrice" ": 650$"
"[english]Cstrike_KevlarPrice" ": $650"
"Cstrike_KevlarDescription" ": Un chaleco kevlar que protege
contra proyectiles."
"[english]Cstrike_KevlarDescription" ": A Kevlar vest that protects
against projectiles."
"Cstrike_KevlarHelmetPrice" ": 1.000$"
"[english]Cstrike_KevlarHelmetPrice" ": $1000"
"Cstrike_KevlarHelmetDescription" ": Un chaleco kevlar y un casco
balístico que protegen
contra proyectiles."
"[english]Cstrike_KevlarHelmetDescription" ": A kevlar vest and a ballistic
helmet which both protect
against projectiles."
"Cstrike_NightvisionPrice" ": 1.250$"
"[english]Cstrike_NightvisionPrice" ": $1250"
"Cstrike_NightvisionDescription" ": Lentes de visión nocturna
que permiten al usuario ver
mejor en zonas oscuras."
"[english]Cstrike_NightvisionDescription" ": Nightvision goggles which
allow the user to see more
effectively in dark areas."
"Cstrike_ShieldPrice" ": 2.200$"
"[english]Cstrike_ShieldPrice" ": $2200"
"Cstrike_ShieldDescription" ": Escudo tipo barrera
para tacticas callejeras
e intervención"
"[english]Cstrike_ShieldDescription" ": Barrier-type shield for
street tactics and
intervention."
"Cstrike_SmokeGrenadePrice" ": 300$"
"[english]Cstrike_SmokeGrenadePrice" ": $300"
"Cstrike_SmokeGrenadeDescription" ": Dispositivo de distracción
que puede proporcionar
cobertura temporal para
desplazamientos."
"[english]Cstrike_SmokeGrenadeDescription" ": A diversionary device that
can be used to provide
temporary cover for moving
from place to place."
"Cstrike_DefuserPrice" ": 200$"
"[english]Cstrike_DefuserPrice" ": $200"
"Cstrike_DefuserDescription" ": Equipo de desactivación de
bombas utilizado para
acelerar la desactivación"
"[english]Cstrike_DefuserDescription" ": A bomb defusal kit used to
speed up the bomb defusal
process."
"Cstrike_FlashbangPrice" ": 200$"
"[english]Cstrike_FlashbangPrice" ": $200"
"Cstrike_FlashbangDescription" ": Produce un fuerte ruido y
un destello cegador al ser
lanzado contra el enemigo
(tira primero de la lengüeta).
Muy útil para crear confusión
antes de acceder a una zona."
"[english]Cstrike_FlashbangDescription" ": Makes a loud noise and
blinding flash when thrown
at enemy (pull pin first).
Useful for causing distractions
before entering an area."
"Cstrike_HEGrenadePrice" ": 300$"
"[english]Cstrike_HEGrenadePrice" ": $300"
"Cstrike_HEGrenadeDescription" ": Dispositivo de alta capacidad
explosiva. Tira de la lengüeta,
suelta la cucharilla y lánzalo."
"[english]Cstrike_HEGrenadeDescription" ": A high-explosive device. Pull
the pin, release the spoon
and throw."
"Cstrike_Listen_MapName" "Mapa"
"[english]Cstrike_Listen_MapName" "Map"
"Cstrike_Bot_IncludeBots" "Incluir jugadores CPU (Bots) en la partida"
"[english]Cstrike_Bot_IncludeBots" "Include CPU players (Bots) in this game"
"Cstrike_Bot_NumberOfBots" "Número de Bots"
"[english]Cstrike_Bot_NumberOfBots" "Number of CPU players"
"Cstrike_Bot_Difficulty" "Dificultad"
"[english]Cstrike_Bot_Difficulty" "Difficulty"
"Cstrike_Bot_Difficulty0" "Fácil"
"[english]Cstrike_Bot_Difficulty0" "Easy"
"Cstrike_Bot_Difficulty1" "Normal"
"[english]Cstrike_Bot_Difficulty1" "Normal"
"Cstrike_Bot_Difficulty2" "Difícil"
"[english]Cstrike_Bot_Difficulty2" "Hard"
"Cstrike_Bot_Difficulty3" "Experto"
"[english]Cstrike_Bot_Difficulty3" "Expert"
"CStrike_Bot_JoinAfterPlayer" "Bots se unen tras jugador"
"[english]CStrike_Bot_JoinAfterPlayer" "Bots join after a player joins"
"CStrike_Bot_GoRogue" "Pueden volverse violentos"
"[english]CStrike_Bot_GoRogue" "Bots can go rogue"
"CStrike_Bot_AllowWeapon" "Pueden utilizar"
"[english]CStrike_Bot_AllowWeapon" "Bots can use"
"CStrike_Bot_UsePistols" "Pistolas"
"[english]CStrike_Bot_UsePistols" "Pistols"
"CStrike_Bot_UseShotguns" "Escopetas"
"[english]CStrike_Bot_UseShotguns" "Shotguns"
"CStrike_Bot_UseSub" "Ametralladoras"
"[english]CStrike_Bot_UseSub" "Submachine guns"
"CStrike_Bot_UseRifles" "Rifles"
"[english]CStrike_Bot_UseRifles" "Rifles"
"CStrike_Bot_UseMachineGuns" "Metralletas"
"[english]CStrike_Bot_UseMachineGuns" "Machine guns"
"CStrike_Bot_UseGrenades" "Granadas"
"[english]CStrike_Bot_UseGrenades" "Grenades"
"CStrike_Bot_UseSniper" "Rifles de francotirador"
"[english]CStrike_Bot_UseSniper" "Sniper Rifles"
"CStrike_Bot_UseShield" "Escudos"
"[english]CStrike_Bot_UseShield" "Shields"
"CStrike_Bot_Quota" "Núm. mínimo de Bots"
"[english]CStrike_Bot_Quota" "Minimum # of Bots"
"CStrike_Bot_NamePrefix" "Prefijo nombre"
"[english]CStrike_Bot_NamePrefix" "Bot Name Prefix"
"CStrike_Bot_JoinTeam" "Bots se unen"
"[english]CStrike_Bot_JoinTeam" "Bots Join Team"
"Cstrike_Spetsnaz_Name" "SPETSNAZ"
"[english]Cstrike_Spetsnaz_Name" "SPETSNAZ"
"Cstrike_Bot_chatter_Radio" "Radio estándar"
"[english]Cstrike_Bot_chatter_Radio" "Standard Radio"
"Cstrike_Bot_chatter_Normal" "Normal"
"[english]Cstrike_Bot_chatter_Normal" "Normal"
"Cstrike_Use_Left_Hand" "Usa la mano izquierda"
"[english]Cstrike_Use_Left_Hand" "Use Left Hand"
"Cstrike_vertigo" "mapa de_vertigo"
"[english]Cstrike_vertigo" "map de_vertigo"
"Cstrike_rush_upper_level" "'¡Corre hacia el piso de arriba!'"
"[english]Cstrike_rush_upper_level" "'Rush the upper level!'"
"Cstrike_prodigy" "mapa de_prodigy"
"[english]Cstrike_prodigy" "map de_prodigy"
"Cstrike_rush_to_pipes" "'Corred a las tuberías'"
"[english]Cstrike_rush_to_pipes" "'Rush to pipes'"
"Cstrike_take_the hallway" "'¡Ve por el vestíbulo!'"
"[english]Cstrike_take_the hallway" "'Take the hallway!'"
"Cstrike_take_the_apc" "'¡Toma la ruta APC!'"
"[english]Cstrike_take_the_apc" "'Take the APC route!'"
"Cstrike_enemy_at_bomb_site" "'Enemigo en el enclave de la bomba'"
"[english]Cstrike_enemy_at_bomb_site" "'Enemy at bomb site'"
"Cstrike_rush_to_bomb_site" "'¡Corre al enclave de la bomba!'"
"[english]Cstrike_rush_to_bomb_site" "'Rush to bomb site'"
"Cstrike_take_water_route" "'¡Toma la ruta por agua!'"
"[english]Cstrike_take_water_route" "'Take the water route!'"
"Cstrike_inferno" "mapa de_inferno"
"[english]Cstrike_inferno" "map de_inferno"
"Cstrike_office" "mapa cs_oficina"
"[english]Cstrike_office" "map cs_office"
"Cstrike_take_back_route" "'¡Toma la ruta de vuelta!'"
"[english]Cstrike_take_back_route" "'Take the back route!'"
"Cstrike_rush_to_hostages" "'¡Corred hacia los rehenes!'"
"[english]Cstrike_rush_to_hostages" "'Rush to the hostages!'"
"Cstrike_do_it_for_manilov" "'¡Hazlo por Manilov!'"
"[english]Cstrike_do_it_for_manilov" "'Do it for Manilov!'"
"Cstrike_take_front_route" "'¡Tomad la ruta de frente!'"
"[english]Cstrike_take_front_route" "'Take the front route!'"
"Cstrike_enemy_overhead" "'¡Enemigo por arriba!'"
"[english]Cstrike_enemy_overhead" "'Enemy overhead!'"
"Cstrike_vip_spotted" "'¡VIP avistado!'"
"[english]Cstrike_vip_spotted" "'VIP spotted!'"
"Cstrike_sniper_spotted" "'Francotirador avistado'"
"[english]Cstrike_sniper_spotted" "'Sniper spotted'"
"Cstrike_protect_the_vip" "'Protege a los VIP'"
"[english]Cstrike_protect_the_vip" "'Protect the VIP'"
"Cstrike_assault" "mapa cs_asalto"
"[english]Cstrike_assault" "map cs_assault"
"Cstrike_rush_the_building" "'¡Asalta el edificio!'"
"[english]Cstrike_rush_the_building" "'Rush the building!'"
"Cstrike_take_the_vents" "'¡A los conductos de ventilación!'"
"[english]Cstrike_take_the_vents" "'Take the vents!'"
"Cstrike_enemy_in_vents" "'¡Enemigo en los conductos!'"
"[english]Cstrike_enemy_in_vents" "'Enemy in vents!'"
"Career_AwardedMedal" "Te han concedido una medalla por tu valentía en servicio."
"[english]Career_AwardedMedal" "You have been awarded a medal for your valiant service."
"Cstrike_Tutor_You_Killed_Player_One_left" "Has matado a un enemigo.
Queda un enemigo."
"[english]Cstrike_Tutor_You_Killed_Player_One_left" "You have killed an enemy.
There is one enemy left.
Recent enemies killed:
%s1"
"Cstrike_Tutor_You_Killed_Player_Headshot" "Has matado a un enemigo
con un tiro en la cabeza.