-
Notifications
You must be signed in to change notification settings - Fork 35
/
Translations.lua
2359 lines (2359 loc) · 146 KB
/
Translations.lua
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
Config.Languages = {
['sq'] = { -- Albanian
['emotes'] = "~h~~p~ Emotet 🎬",
['danceemotes'] = "~h~~p~ 🕺 Emotet e Kërcimit",
['animalemotes'] = "~h~~p~ 🐩 Emotet e Kafshëve",
['propemotes'] = "~h~~p~ 📦 Emotet e Përparave",
['favoriteemotes'] = "~h~~y~ 🌟 Të preferuar",
['favoriteinfo'] = "Zgjidh një emote këtu për ta caktuar si të preferuarin tënd.",
['rfavorite'] = "Rivendos të preferuarin",
['prop2info'] = "❓ Emotet e Përparave mund të gjenden në fund",
['set'] = "Vendos (",
['setboundemote'] = ") të jetë emote e lidhur?",
['newsetemote'] = "~w~ është tani emota e lidhur, shtyp ~g~CapsLock~w~ për ta përdorur.",
['cancelemote'] = "~h~~r~ Anulo Emoten 🚷",
['cancelemoteinfo'] = "~r~X~w~ Anulon emoten që është duke u luajtur momentalisht",
['walkingstyles'] = "~h~~p~ Stilet e ecjes 🚶🏻♂️",
['resetdef'] = "Rivendos në parazgjedhje",
['normalreset'] = "~h~~r~ Normale (Rivendos)",
['moods'] = "~h~~p~ Gjendjet 😒",
['infoupdate'] = "~h~~g~ Kredite 🤝🏻",
['infoupdateav'] = "Informacion (Përditësim i disponueshëm)",
['infoupdateavtext'] = "Ka një përditësim të disponueshëm, merrni versionin e fundit nga ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Sugjerime?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ në forumet e FiveM për çdo sugjerim për karakteristika/emote! ✉️",
['notvaliddance'] = "nuk është një kërcim i vlefshëm.",
['notvalidemote'] = "nuk është një emote i vlefshëm.",
['nocancel'] = "Nuk ka emote për të anuluar.",
['maleonly'] = "Ky emote është vetëm për meshkuj, na fal!",
['emotemenucmd'] = "Përdor komandën /emotemenu për të hapur menunë e animacioneve.",
['shareemotes'] = "~h~~p~ 👫 Emotet e Ndara",
['shareemotesinfo'] = "Ftoj një person të afërt për të emotuar",
['sharedanceemotes'] = "~h~~p~ 🕺 Kërcime të Ndara",
['notvalidsharedemote'] = "nuk është një emote i ndarë i vlefshëm.",
['sentrequestto'] = "U dërgua kërkesa te ~y~",
['nobodyclose'] = "Askush ~r~afër~w~ mjaftueshëm.",
['doyouwanna'] = "~y~Y~w~ për të pranuar, ~r~L~w~ për të refuzuar (~g~",
['refuseemote'] = "Emota u refuzua.",
['makenearby'] = "bën që lojtari i afërt të luajë",
['useleafblower'] = "Shtyp ~y~G~w~ për të përdorur erërrënë.",
['camera'] = "Shtyp ~y~G~w~ për të përdorur flakën e kamerës.",
['makeitrain'] = "Shtyp ~y~G~w~ për të bërë që të bjerë shi.",
['pee'] = "Mbaj ~y~G~w~ për të ujitur.",
['spraychamp'] = "Mbaj ~y~G~w~ për të stërshpërndarë shampanjë",
['stun'] = "Shtyp ~y~G~w~ për të 'përdorur' armën qetësuese.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Shtyp ~y~G~w~ për të vape.",
['bound'] = "I lidhur ",
['to'] = "me",
['currentlyboundemotes'] = " Emotet momentalisht të lidhura:",
['notvalidkey'] = "nuk është një çelës i vlefshëm.",
['keybinds'] = "🔢 Çelësat",
['keybindsinfo'] = "Përdor",
['searchemotes'] = "~h~~y~ 🔍 Kërko Emote",
['searchinputtitle'] = "Kërko:",
['searchmenudesc'] = "%s rezultat(e) për '~r~%s~w~':",
['searchnoresult'] = "Asnjë rezultat për kërkimin '~r~%s~w~'.",
['searchshifttofav'] = "Mbaj Shift të majtë dhe shtyp enter për ta caktuar si të preferuar.",
['searchcantsetfav'] = "Emotet e ndara nuk mund të caktohen si të preferuara.",
['invalidvariation'] = "Variacioni i teksturës i pavlefshëm. Zgjedhjet e vlefshme janë: %s",
['firework'] = "Shtyp ~y~G~w~ për të përdorur fenerin",
['poop'] = "Shtyp ~y~G~w~ për të bërë që të defekosh",
['puke'] = "Shtyp ~y~G~w~ për të vjellë",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Zgjidh",
['btn_back'] = "Prapa",
['btn_switch'] = "Lëvizje",
['btn_increment'] = "Rrit",
['dead'] = "Nuk mund të përdorësh emotet kur je i vdekur!",
['swimming'] = "Nuk mund të përdorësh emotet gjatë notit",
['notvalidpet'] = "RUH ROH! U zbulua një model ped i gabuar 🐕!",
['animaldisabled'] = "Na vjen keq! Emotet e kafshëve janë të çaktivizuara në këtë server",
['adultemotedisabled'] = "Bonk! Emotet e rritura janë të çaktivizuara 🔞",
['toggle_instructions'] = "Aktivizo/inaktivizo udhëzimet",
['exit_binoculars'] = "Dalje nga binokularët",
['toggle_binoculars_vision'] = "Ndërro mes mënyrave të shikimit",
['exit_news'] = "Dalje nga kamera e lajmeve",
['toggle_news_vision'] = "Ndërro mes mënyrave të shikimit",
['edit_values_newscam'] = "Ndrysho tekstin e lajmeve",
['not_in_a_vehicle'] = "Nuk mund të luash këtë animacion në këndin e një mjete",
['in_a_vehicle'] = "Mund të luash këtë animacion vetëm në këndin e një mjete 🚷",
['no_anim_crawling'] = "Nuk mund të luash animacione ndërsa shtrihesh",
['no_anim_right_now'] = "You can't play an animation right now",
},
['ar'] = { -- Arabic
['emotes'] = " ~h~~p~حركات 🎬",
['danceemotes'] = "~h~~p~ 🕺 حركات الرقص",
['animalemotes'] = "~h~~p~ 🐩 حركات الحيوانات",
['propemotes'] = "~h~~p~ 📦 حركات الاوبجكتات",
['favoriteemotes'] = "~h~~y~ 🌟 المفضلة",
['favoriteinfo'] = "اختر حركة من هنا لوضعها على خانة المفضلة",
['rfavorite'] = "اعادة ضبط المفضلة",
['prop2info'] = "❓ حركات الاوبجكتات تكون محددة في النهاية",
['set'] = "وضع (",
['setboundemote'] = ") لتكون حركة مربوطة ؟",
['newsetemote'] = "~w~ هي حركتك المربوطة , اضغط على ~g~CapsLock~w~ لإستخدامها",
['cancelemote'] = "~h~~r~ الغاء الحركة 🚷",
['cancelemoteinfo'] = "لالغاء لعب الحركة الحالية ~r~X~w~",
['walkingstyles'] = "~h~~p~ اساليب المشي 🚶🏻",
['resetdef'] = "اعادتها للوضع الطبيعي",
['normalreset'] = "~h~~r~ العادي (اعادة تعيين)",
['moods'] = "~h~~p~ المزاج 😒",
['infoupdate'] = "حقوق & للاقتراحات 🤝🏻",
['infoupdateav'] = "المعلومات (التحديث متاح)",
['infoupdateavtext'] = "يوجد تحديث جديد متاح , قم بالحصول عليه من هنا : ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "لديك اقتراحات؟",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ على منتدى فايف ام لأي اقتراحات او حركات! ✉️",
['notvaliddance'] = "هذه الرقصة غير متاحة",
['notvalidemote'] = "هذه الحركة غير متاحة.",
['nocancel'] = "لا يوجد حركة لالغائها.",
['maleonly'] = "هذه الحركة مخصصة فقط للذكور، المعذرة!",
['emotemenucmd'] = "استخدم امر emotemenu\' قائمة الحركات لفتح قائة الحركات",
['shareemotes'] = "~h~~p~ 👫 الحركات المشتركة",
['shareemotesinfo'] = "دعوة شخص قريب لعمل حركات معه",
['sharedanceemotes'] = "~h~~p~ 🕺 الرقصات المشتركة",
['notvalidsharedemote'] = "هذه ليست حركة مشتركة متاحة.",
['sentrequestto'] = "تم ارسال الطلب الى ~y~",
['nobodyclose'] = "لا يوجد شخص ~r~قريب عليك~w~ كفاية.",
['doyouwanna'] = "~y~Y~w~ للقبول, ~r~L~w~ للرفض (~g~",
['refuseemote'] = "تم رفض الحركة",
['makenearby'] = "قم بجعل اقرب لاعب يلعب",
['useleafblower'] = "اضغط ~y~G~w~ لإستخدام ورقة منفاخ.",
['camera'] = "اضغط ~y~G~w~ لاستخدام فلاش الكاميرا.",
['makeitrain'] = "اضغط ~y~G~w~ لجعلها تمطر.",
['pee'] = "اضغط ضغطة مطولة على ~y~G~w~ لقضاء الحاجة.",
['spraychamp'] = "اضغط ضغطة مطولة على ~y~G~w~ لرش الشمبانيا",
['stun'] = "اضغط ~y~G~w~ لاستخدام بندقية حصرية",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "اضغط ~y~G~w~ لتدخين الفيب.",
['bound'] = "مرتبط بـ ",
['to'] = "لـ",
['currentlyboundemotes'] = " الحركات المشغلة حاليا:",
['notvalidkey'] = "كبسة غير صالحة",
['keybinds'] = "🔢 كبسات الفاتيح",
['keybindsinfo'] = "استخدام",
['searchemotes'] = "~h~~y~ 🔍 بحث عن حركة",
['searchinputtitle'] = "بحث:",
['searchmenudesc'] = "%s نتيجة لـ '~r~%s~w~':",
['searchnoresult'] = "لا يوجد نتيجة للبحث '~r~%s~w~'.",
['searchshifttofav'] = "اضغط ضغطة مطولة على L-Shift لوضعها في المفضلة",
['searchcantsetfav'] = "الحركات المشتركة لا تستطيع وضعها في المفضلة",
['invalidvariation'] = "تكستشر غير صالح, الاختيارات الصحيحة هي : %s",
['firework'] = "اضغط ~y~G~w~ لاستخدام الالعاب النارية",
['poop'] = "اضغط ~y~G~w~ لقضاء الحاجة 2",
['puke'] = "اضغط ~y~G~w~ للتقيؤ",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "اختيار",
['btn_back'] = "العودة",
['btn_switch'] = "حركة",
['btn_increment'] = "زيادة"
},
['pt'] = { -- Brazilian Portuguese 🇧🇷
['emotes'] = "~h~~p~ Emotes 🎬",
['danceemotes'] = "~h~~p~ 🕺 Emotes de Danças",
['animalemotes'] = "~h~~p~ 🐩 Emotes de Animais",
['propemotes'] = "~h~~p~ 📦 Emotes com Props",
['favoriteemotes'] = "~h~~y~ 🌟 Favoritos",
['favoriteinfo'] = "Selecione um emote para colocá-lo nos seus favoritos",
['rfavorite'] = "Limpar favoritos",
['prop2info'] = "❓ Emotes de props podem ser localizados no fim",
['set'] = "Set (",
['setboundemote'] = ") para ser seu emote vinculado?",
['newsetemote'] = "~w~ é o seu emote vinculado, pressione ~g~CapsLock~w~ para usá-lo",
['cancelemote'] = "~h~~r~ Cancelar emote 🚷",
['cancelemoteinfo'] = "~r~X~w~ Cancela os emotes rodando atualmente",
['walkingstyles'] = "~h~~p~ Estilos de Caminhada 🚶🏻♂️",
['resetdef'] = "Resetar para o padrão",
['normalreset'] = "~h~~r~ Normal (Resetar)",
['moods'] = "~h~~p~ Humores 😒",
['infoupdate'] = "~h~~y~ Crédito 🤝🏻",
['infoupdateav'] = "Informação (Atualização disponível)",
['infoupdateavtext'] = "Uma atualização disponível, veja ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~ para pegar",
['suggestions'] = "Sugestões?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ no fórum do FiveM para qualquer sugestão de recurso/emotes! ✉️",
['notvaliddance'] = "não é uma dança válida.",
['notvalidemote'] = "não é um emote válido.",
['nocancel'] = "Nenhum emote para cancelar",
['maleonly'] = "Este emote é para homens, desculpe!",
['emotemenucmd'] = "Use /emotemenu para abrir o menu.",
['shareemotes'] = "~h~~p~ 👫 Emotes compartilhados",
['shareemotesinfo'] = "Convide uma pessoa próxima para realizar a animação",
['sharedanceemotes'] = "~h~~p~ 🕺 Danças compartilhadas",
['notvalidsharedemote'] = "não é um emote compartilhado válido.",
['sentrequestto'] = "Enviar solicitação para ~y~",
['nobodyclose'] = "Ninguém próximo o ~r~suficiente~w~.",
['doyouwanna'] = "~y~Y~w~ para aceitar, ~r~L~w~ para recusar (~g~",
['refuseemote'] = "Emote recusado",
['makenearby'] = "Faz o jogador próximo participar",
['useleafblower'] = "Pressione ~y~G~w~ para usar o soprador de folhas",
['camera'] = "Pressione ~y~G~w~ para usar o flash da câmera",
['makeitrain'] = "Pressione ~y~G~w~ para fazer chover.",
['pee'] = "Mantenha pressionado ~y~G~w~ para fazer xixi.",
['spraychamp'] = "Mantenha pressionado ~y~G~w~ jogar champagne",
['stun'] = "Pressione ~y~G~w~ para 'usar' stun gun.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Pressione ~y~G~w~ para vape.",
['bound'] = "Vinculado ",
['to'] = "para",
['currentlyboundemotes'] = "Emotes atualmente vinculados: ",
['notvalidkey'] = "isto não é uma chave válida",
['keybinds'] = "🔢 Keybinds",
['keybindsinfo'] = "Usar",
['searchemotes'] = "~h~~y~ 🔍 Procure por Emotes",
['searchinputtitle'] = "Procurar:",
['searchmenudesc'] = "%s resultado(s) para '~r~%s~w~':",
['searchnoresult'] = "Nenhum resultado para a pesquisa '~r~%s~w~'.",
['searchshifttofav'] = "Segure Shift Esquerdo e pressione enter para setar como favorito.",
['searchcantsetfav'] = "Emotes compartilhados não podem ser setados como favorito.",
['invalidvariation'] = "Variação de textura inválida. As opções válidas são: %s",
['firework'] = "Pressione ~y~G~w~ para usar o fogo de artifício",
['poop'] = "Pressione ~y~G~w~ para fazer cocô", -- Translated using smodin.io
['puke'] = "Pressione ~y~G~w~ para vomitar",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Selecionar",
['btn_back'] = "Voltar",
['btn_switch'] = "Movimento",
['btn_increment'] = "Incremento",
['dead'] = "You can't use emotes while dead!",
['swimming'] = "You can't use emotes while swimming",
['notvalidpet'] = "RUH ROH! Incorrect ped model detected 🐕!",
['animaldisabled'] = "Sorry! Animal emotes are disabled on this server",
['adultemotedisabled'] = "Bonk! Adult emotes disabled 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Exit binoculars",
['toggle_binoculars_vision'] = "Toggle between vision modes",
['exit_news'] = "Exit News Camera",
['toggle_news_vision'] = "Toggle between vision modes",
['edit_values_newscam'] = "Edit the news text",
['not_in_a_vehicle'] = "You can't play this animation while in a vehicle",
['in_a_vehicle'] = "You can only play this animation while in a vehicle 🚷",
['no_anim_crawling'] = "You can't play animations while crawling",
['no_anim_right_now'] = "You can't play an animation right now",
},
['zhcn'] = { -- Chinese simplified
['emotes'] = "~h~~p~ 动作 🎬",
['danceemotes'] = "~h~~p~ 🕺 舞蹈动作",
['animalemotes'] = "~h~~p~ 🐩 动物动作",
['propemotes'] = "~h~~p~ 📦 物品动作",
['favoriteemotes'] = "~h~~y~ 🌟 收藏",
['favoriteinfo'] = "在此处选择一个动作并将其设为收藏。",
['rfavorite'] = "重置收藏",
['prop2info'] = "❓ 物品动作在最后面",
['set'] = "设置 (",
['setboundemote'] = ") 为绑定动作?",
['newsetemote'] = "~w~ 已设置为你的绑定动作,按 ~g~CapsLock~w~ 使用。",
['cancelemote'] = "~h~~r~ 取消动作 🚷",
['cancelemoteinfo'] = "~r~X~w~ 取消当前动作",
['walkingstyles'] = "~h~~p~ 行走风格 🚶🏻♂️",
['resetdef'] = "重置为默认",
['normalreset'] = "~h~~r~ 正常 (重置)",
['moods'] = "~h~~p~ 情绪 😒",
['infoupdate'] = "致谢 🤝🏻",
['infoupdateav'] = "信息 (有更新)",
['infoupdateavtext'] = "已有新版本可用,请前往 ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~ 获取最新版。",
['suggestions'] = "想提出建议?",
['suggestionsinfo'] = "请在 FiveM 论坛上联系 ~r~TayMcKenzieNZ~s~ 提出功能 / 动作建议! ✉️",
['notvaliddance'] = "不是有效的舞蹈动作。",
['notvalidemote'] = "不是有效的动作。",
['nocancel'] = "没有要取消的动作。",
['maleonly'] = "抱歉,此动作仅适用于男性!",
['emotemenucmd'] = "使用命令 /emotemenu 打开动作菜单。",
['shareemotes'] = "~h~~p~ 👫 共享动作",
['shareemotesinfo'] = "邀请附近的人动作",
['sharedanceemotes'] = "~h~~p~ 🕺 共享舞蹈动作",
['notvalidsharedemote'] = "不是有效的共享动作。",
['sentrequestto'] = "已向此人发送请求 ~y~",
['nobodyclose'] = "没有人 ~r~靠近~w~。",
['doyouwanna'] = "按 ~y~Y~w~ 接受,按 ~r~L~w~ 拒绝 (~g~",
['refuseemote'] = "已拒绝动作。",
['makenearby'] = "让附近的玩家播放",
['useleafblower'] = "按 ~y~G~w~ 使用吹叶机。",
['camera'] = "按 ~y~G~w~ 使用闪光灯。",
['makeitrain'] = "按 ~y~G~w~ 撒出。",
['pee'] = "按住 ~y~G~w~ 尿尿。",
['spraychamp'] = "按住 ~y~G~w~ 喷洒香槟",
['stun'] = "按 ~y~G~w~ '使用' 麻醉枪。",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "按 ~y~G~w~ 使用电子烟。",
['bound'] = "绑定 ",
['to'] = "到",
['currentlyboundemotes'] = " 当前绑定的动作:",
['notvalidkey'] = "不是有效的按键。",
['keybinds'] = "🔢 按键设置",
['keybindsinfo'] = "使用",
['searchemotes'] = "~h~~y~ 🔍 搜索动作",
['searchinputtitle'] = "搜索:",
['searchmenudesc'] = "'~r~%s~w~' 有 %s 个结果:",
['searchnoresult'] = "'~r~%s~w~' 没有搜索结果。",
['searchshifttofav'] = "按住 L-Shift 并按回车键设置为收藏。",
['searchcantsetfav'] = "共享动作无法设置为收藏。",
['invalidvariation'] = "纹理颜色无效。有效选择为: %s",
['firework'] = "按 ~y~G~w~ 放烟花",
['poop'] = "按 ~y~G~w~ 排便",
['puke'] = "按 ~y~G~w~ 呕吐",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "选择",
['btn_back'] = "返回",
['btn_switch'] = "移动",
['btn_increment'] = "移动量",
['dead'] = "您无法在死亡状态下使用此动作!",
['swimming'] = "您无法在游泳状态下使用此动作!",
['notvalidpet'] = "哦豁!检测到非有效的动物皮肤 🐕!",
['animaldisabled'] = "抱歉!动物动作在本服务器上已禁用",
['adultemotedisabled'] = "不许色色!成人动作已禁用 🔞",
['toggle_instructions'] = "切换操作说明显示",
['exit_binoculars'] = "退出望远镜",
['toggle_binoculars_vision'] = "切换视角模式",
['exit_news'] = "退出新闻镜头",
['toggle_news_vision'] = "切换画面叠加层",
['edit_values_newscam'] = "更改新闻说明文字",
['not_in_a_vehicle'] = "您无法在载具中使用此动作",
['in_a_vehicle'] = "您只能在载具中使用此动作 🚷",
['no_anim_crawling'] = "您无法在爬行时使用此动作",
['no_anim_right_now'] = "You can't play an animation right now",
},
['zhtw'] = { -- Chinese Traditional
['emotes'] = "~h~~p~ 動作 🎬",
['danceemotes'] = "~h~~p~ 🕺 舞蹈動作",
['animalemotes'] = "~h~~p~ 🐩 動物動作",
['propemotes'] = "~h~~p~ 📦 物品動作",
['favoriteemotes'] = "~h~~y~ 🌟 收藏",
['favoriteinfo'] = "在此處選擇壹個動作並將其設為收藏。",
['rfavorite'] = "重置收藏",
['prop2info'] = "❓ 物品動作在最後面",
['set'] = "設置 (",
['setboundemote'] = ") 為綁定動作?",
['newsetemote'] = "~w~ 已設置為妳的綁定動作,按 ~g~CapsLock~w~ 使用。",
['cancelemote'] = "~h~~r~ 取消動作 🚷",
['cancelemoteinfo'] = "~r~X~w~ 取消當前動作",
['walkingstyles'] = "~h~~p~ 行走風格 🚶🏻♂️",
['resetdef'] = "重置為默認",
['normalreset'] = "~h~~r~ 正常 (重置)",
['moods'] = "~h~~p~ 情緒 😒",
['infoupdate'] = "致謝 🤝🏻",
['infoupdateav'] = "信息 (有更新)",
['infoupdateavtext'] = "已有新版本可用,請前往 ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~ 獲取最新版。",
['suggestions'] = "想提出建議?",
['suggestionsinfo'] = "請在 FiveM 論壇上聯系 ~r~TayMcKenzieNZ~s~ 提出功能 / 動作建議! ✉️",
['notvaliddance'] = "不是有效的舞蹈動作。",
['notvalidemote'] = "不是有效的動作。",
['nocancel'] = "沒有要取消的動作。",
['maleonly'] = "抱歉,此動作僅適用於男性!",
['emotemenucmd'] = "使用命令 /emotemenu 打開動作菜單。",
['shareemotes'] = "~h~~p~ 👫 共享動作",
['shareemotesinfo'] = "邀請附近的人動作",
['sharedanceemotes'] = "🕺 共享舞蹈動作",
['notvalidsharedemote'] = "不是有效的共享動作。",
['sentrequestto'] = "已向此人發送請求 ~y~",
['nobodyclose'] = "沒有人 ~r~靠近~w~。",
['doyouwanna'] = "按 ~y~Y~w~ 接受,按 ~r~L~w~ 拒絕 (~g~",
['refuseemote'] = "已拒絕動作。",
['makenearby'] = "讓附近的玩家播放",
['useleafblower'] = "按 ~y~G~w~ 使用吹葉機。",
['camera'] = "按 ~y~G~w~ 使用閃光燈。",
['makeitrain'] = "按 ~y~G~w~ 撒出。",
['pee'] = "按住 ~y~G~w~ 尿尿。",
['spraychamp'] = "按住 ~y~G~w~ 噴灑香檳",
['stun'] = "按 ~y~G~w~ '使用' 麻醉槍。",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "按 ~y~G~w~ 使用電子煙。",
['bound'] = "綁定 ",
['to'] = "到",
['currentlyboundemotes'] = " 當前綁定的動作:",
['notvalidkey'] = "不是有效的按鍵。",
['keybinds'] = "🔢 按鍵設置",
['keybindsinfo'] = "使用",
['searchemotes'] = "~h~~y~ 🔍 搜索動作",
['searchinputtitle'] = "搜索:",
['searchmenudesc'] = "'~r~%s~w~' 有 %s 個結果:",
['searchnoresult'] = "'~r~%s~w~' 沒有搜索結果。",
['searchshifttofav'] = "按住 L-Shift 並按回車鍵設置為收藏。",
['searchcantsetfav'] = "共享動作無法設置為收藏。",
['invalidvariation'] = "紋理顏色無效。有效選擇為: %s",
['firework'] = "按 ~y~G~w~ 放煙花",
['poop'] = "按 ~y~G~w~ 排便",
['puke'] = "按 ~y~G~w~ 嘔吐",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "選擇",
['btn_back'] = "返回",
['btn_switch'] = "移動",
['btn_increment'] = "移動量",
['dead'] = "您無法在死亡狀態下使用此動作!",
['swimming'] = "您無法在游泳時使用此動作!",
['notvalidpet'] = "哎呀! 檢測到非動物角色 🐕!",
['animaldisabled'] = "不好意思! 動物動作在此伺服器上已禁用",
['adultemotedisabled'] = "Bonk! 成人動作已禁用 🔞",
['toggle_instructions'] = "切換操作説明",
['exit_binoculars'] = "退出望遠鏡",
['toggle_binoculars_vision'] = "切換視覺模式",
['exit_news'] = "退出新聞攝像機",
['toggle_news_vision'] = "切換視覺模式",
['edit_values_newscam'] = "編輯新聞文本",
['not_in_a_vehicle'] = "您無法在車輛中使用此動作",
['in_a_vehicle'] = "您只能在車輛中使用此動作 🚷",
['no_anim_crawling'] = "您無法在爬行時使用此動作",
['no_anim_right_now'] = "You can't play an animation right now",
},
['cs'] = { -- Czech 🇨🇿
['emotes'] = "~h~~p~ Animace 🎬",
['danceemotes'] = "~h~~p~ 🕺 Taneční Animace",
['animalemotes'] = "~h~~p~ 🐩 Zvířecí Animace",
['propemotes'] = "~h~~p~ 📦 Animace s předměty",
['favoriteemotes'] = "~h~~y~ 🌟 Oblíbené",
['favoriteinfo'] = "Vyberte si animaci a nastavte ji jako svou oblíbenou.",
['rfavorite'] = "Obnovit oblíbené",
['prop2info'] = "❓ Pomůcky se mohou nacházet na konci",
['set'] = "Nastavit",
['setboundemote'] = "Nastavit jako vaši animaci?",
['newsetemote'] = "~w~ je nyní vaší novou nastavenou animací. Chcete-li jej použít, stiskněte ~g~CapsLock~w~.",
['cancelemote'] = "~h~~r~ Zrušit animaci 🚷",
['cancelemoteinfo'] = "~r~X~w~ Zruší aktuálně přehrávanou animaci",
['walkingstyles'] = "Styly chůze 🚶🏻♂️",
['resetdef'] = "Obnovit do základního nastavení",
['normalreset'] = "~h~~r~ Neutrální výraz",
['moods'] = "~h~~p~ Výrazy 😒",
['infoupdate'] = "~h~~g~ Kredity 🤝🏻",
['infoupdateav'] = "Informace (aktualizace dostupná)",
['infoupdateavtext'] = "Je k dispozici aktualizace, stáhněte si nejnovější verzi z ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Nápady?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ na FiveM forums je pro jakýkoliv návrh! ✉️",
['notvaliddance'] = "Není platný tanec.",
['notvalidemote'] = "Není platná animace.",
['nocancel'] = "Žádné animace ke zrušení.",
['maleonly'] = "Tato emoce je pouze pro muže, omlouvám se!",
['emotemenucmd'] = "Použij /emotemenu pro otevření menu.",
['shareemotes'] = "~h~~p~ 👫 Sdílené animace",
['shareemotesinfo'] = "Pozvěte osobu v okolí, k tanci",
['sharedanceemotes'] = "~h~~p~ 🕺 Sdílené tance",
['notvalidsharedemote'] = "Není platný Sdílený tanec.",
['sentrequestto'] = "Odeslal jsi ~y~ žádost o tanec ",
['nobodyclose'] = "Nikdo ~r~není~w~ v dostatečné blízkosti.",
['doyouwanna'] = "~y~Y~w~ pro příjmutí, ~r~L~w~ pro odmítnutí (~g~",
['refuseemote'] = "Emote odmítnut.",
['makenearby'] = "Požádat nejbližšího hráče",
['useleafblower'] = "Stiskněte ~yG~w~ pro použití foukače listí", -- GOOGLE TRANSLATED
['camera'] = "Stiskni ~y~G~w~ pro použítí blesku u fotoaparátu.",
['makeitrain'] = "Stiskni ~y~G~w~ pro spuštení deště.",
['pee'] = "Podrž ~y~G~w~ pro čůrání.",
['spraychamp'] = "Podrž ~y~G~w~ pro stříkaní šampaňského",
['stun'] = "Stiskni ~y~G~w~ pro použití paralyzéru.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Stiskni ~y~G~w~ pro použití vapky.",
['bound'] = "Bound ",
['to'] = "na",
['currentlyboundemotes'] = "Momentálně nastavené animace:",
['notvalidkey'] = "Není platná klávesa.",
['keybinds'] = "🔢 Klávesové Zkratky",
['keybindsinfo'] = "Use",
['searchemotes'] = "~h~~y~ 🔍 Vyhledat animace",
['searchinputtitle'] = "Vyhledáno:",
['searchmenudesc'] = "%s výsledek pro '~r~%s~w~':",
['searchnoresult'] = "Žádna animace nebyla nalezena '~r~%s~w~'.",
['searchshifttofav'] = "Podrž L-Shift a stiskni enter pro nastavení animace do oblíbeních.",
['searchcantsetfav'] = "Sdílené animace nelze nastavit jako oblíbené.",
['invalidvariation'] = "Neplatná variace textury. Platné výběry jsou: %s",
['firework'] = "Stiskni ~y~G~w~ pro použití ohňostroje",
['poop'] = "Stisknutím ~y~G~w~ se vykakáte",
['puke'] = "Stiskni ~y~G~w~ pro zvracení",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Vybrat",
['btn_back'] = "Zpět",
['btn_switch'] = "Pohyb",
['btn_increment'] = "Increment",
['dead'] = "Nemůžeš používat emoce, když jsi mrtvý!",
['swimming'] = "Nemůžeš používat emoce, když plaveš!",
['notvalidpet'] = "OOOh! Zjištěn nesprávný model peda! 🐕",
['animaldisabled'] = "Omlouváme se! Zvířecí emotikony jsou na tomto serveru zakázány",
['adultemotedisabled'] = "Bonk! Dospělé emotikony vypnuty 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Výstup z dalekohledu",
['toggle_binoculars_vision'] = "Přepínání mezi režimy vidění",
['exit_news'] = "Výstup ze zpravodajské kamery",
['toggle_news_vision'] = "Přepínání mezi režimy vidění",
['edit_values_newscam'] = "Úprava textu zprávy",
['not_in_a_vehicle'] = "Tuto animaci nelze přehrávat ve vozidle.",
['in_a_vehicle'] = "Tuto animaci lze přehrát pouze ve vozidle.",
['no_anim_crawling'] = "Při plazení nelze přehrávat animace",
['no_anim_right_now'] = "You can't play an animation right now",
},
['da'] = { -- Danish 🇩🇰
['emotes'] = "~h~~p~ Animationer",
['danceemotes'] = "~h~~p~ 🕺 Danse Animationer",
['animalemotes'] = "~h~~p~ 🐩 Dyr Animationer",
['propemotes'] = "~h~~p~ 📦 Rekvisit Animationer",
['favoriteemotes'] = "~h~~y~ 🌟 Favorit",
['favoriteinfo'] = "Vælg en animation her for at sætte den som din favorit.",
['rfavorite'] = "Nulstil Favorit",
['prop2info'] = "❓ Rekvisit animationer findes i slutningen",
['set'] = "Sæt (",
['setboundemote'] = ") til din favorit animation?",
['newsetemote'] = "~w~ er nu din favorit animation, tryk ~g~CapsLock~w~ for at bruge den.",
['cancelemote'] = "~h~~r~ Afbryd animation",
['cancelemoteinfo'] = "~r~X~w~ annullerer din igangværende animation.",
['walkingstyles'] = "~h~~p~ Gågange 🚶",
['resetdef'] = "Nulstil til standard",
['normalreset'] = "Normal (Nulstil)",
['moods'] = "~h~~p~ Humør 😒",
['infoupdate'] = "~h~~g~ Credits 🤝",
['infoupdateav'] = "Information (Opdatering tilgængelig)",
['infoupdateavtext'] = "En opdatering er tilgænglig, hent den nyeste version fra ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Forslag?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ på FiveM-forum for alle funktioner/emote-forslag! ✉️",
['notvaliddance'] = "er ikke en gyldig dans",
['notvalidemote'] = "er ikke en gyldig animation",
['nocancel'] = "Ingen animationer bruges lige nu",
['maleonly'] = "Denne animation virker kun til mænd!",
['emotemenucmd'] = "Skriv /emotemenu for animationsmenuen",
['shareemotes'] = "👫 Delte animationer",
['shareemotesinfo'] = "Inviter en person i nærheden til at dele en animationer",
['sharedanceemotes'] = "~h~~p~ 🕺 Delete Danse",
['notvalidsharedemote'] = "er ikke en gyldig delt animation.",
['sentrequestto'] = "Anmodning sendt til ~y~",
['nobodyclose'] = "Ingen ~r~personer~w~ i nærheden.",
['doyouwanna'] = "~y~Y~w~ for at acceptere, ~r~L~w~ for at afvist (~g~",
['refuseemote'] = "Animation afvist.",
['makenearby'] = "får den nærliggende person til at bruge",
['useleafblower'] = "Tryk på ~yG~w~ for at bruge løvblæseren",
['camera'] = "Tryk ~y~G~w~ for at bruge kameraets blitz.",
['makeitrain'] = "Tryk ~y~G~w~ for at regne med penge.",
['pee'] = "Hold ~y~G~w~ for at tisse.",
['spraychamp'] = "Hold ~y~G~w~ for at sprøjte med champagnen",
['stun'] = "Tryk på ~y~G~w~ for at bruge elektrisk pistol.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Press ~y~G~w~ to vape.",
['bound'] = "Bundet ",
['to'] = "til",
['currentlyboundemotes'] = " Keybind animationer:",
['notvalidkey'] = "er ikke en gyldigt nøgle.",
['keybinds'] = "🔢 Keybinds",
['keybindsinfo'] = "Brug",
['searchemotes'] = "~h~~y~ 🔍 Søg efter animation",
['searchinputtitle'] = "Søg:",
['searchmenudesc'] = "%s resultat(er) for '~r~%s~w~':",
['searchnoresult'] = "Ingen resultater fundet med '~r~%s~w~'.",
['searchshifttofav'] = "Hold L-Shift og tryk enter for at sætte som favorit.",
['searchcantsetfav'] = "Delte animationer kan ikke være favoritter.",
['invalidvariation'] = "Ugyldig teksturvariation. Gyldige valg er: %s",
['firework'] = "Tryk på ~y~G~w~ for at bruge fyrværkeri",
['poop'] = "Tryk på ~y~G~w~ for at skide",
['puke'] = "Tryk ~y~G~w~ for at kaste op", ---- Translated via smodin.io
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Vælg",
['btn_back'] = "Tilbage",
['btn_switch'] = "Bevægelse",
['btn_increment'] = "Increment",
['dead'] = "You can't use emotes while dead!",
['swimming'] = "You can't use emotes while swimming",
['notvalidpet'] = "RUH ROH! Incorrect ped model detected 🐕!",
['animaldisabled'] = "Sorry! Animal emotes are disabled on this server",
['adultemotedisabled'] = "Bonk! Adult emotes disabled 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Exit binoculars",
['toggle_binoculars_vision'] = "Toggle between vision modes",
['exit_news'] = "Exit News Camera",
['toggle_news_vision'] = "Toggle between vision modes",
['edit_values_newscam'] = "Edit the news text",
['not_in_a_vehicle'] = "You can't play this animation while in a vehicle",
['in_a_vehicle'] = "You can only play this animation while in a vehicle 🚷",
['no_anim_crawling'] = "You can't play animations while crawling",
['no_anim_right_now'] = "You can't play an animation right now",
},
['nl'] = { -- Dutch 🇳🇱
['emotes'] = "~h~~p~ Animaties 🎬",
['danceemotes'] = "~h~~p~ 🕺 Dans Animaties",
['animalemotes'] = "~h~~p~ 🐩 Dier Animaties",
['propemotes'] = "~h~~p~ 📦 Prop Animaties",
['favoriteemotes'] = "~h~~y~ 🌟 Favorieten",
['favoriteinfo'] = "Selecteer hier een animatie om deze als favoriete in te stellen.",
['rfavorite'] = "Reset Favorieten",
['prop2info'] = "❓ Prop animaties staan aan het einde.",
['set'] = "Maak (",
['setboundemote'] = ") je toegewezen animatie?",
['newsetemote'] = "~w~ is nu je toegewezen animatie, druk op ~g~CapsLock~w~ om hem te gebruiken.",
['cancelemote'] = "~h~~r~ Stop Animatie 🚷",
['cancelemoteinfo'] = "~r~X~w~ Stopt je huidige animatie",
['walkingstyles'] = "~h~~p~ Loopjes 🚶🏻♂️",
['resetdef'] = "Reset naar standaard",
['normalreset'] = "~h~~r~ Normaal (Reset)",
['moods'] = "~h~~p~ Stemmingen 😒",
['infoupdate'] = "~h~~g~ Credits🤝🏻",
['infoupdateav'] = "Informatie (Update beschikbaar)",
['infoupdateavtext'] = "Een update is beschikbaar, download de laatste versie via ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Suggesties?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ op de FiveM forums om suggesties in te dienen! ✉️",
['notvaliddance'] = "Is geen geldige dans.",
['notvalidemote'] = "Is geen geldige animatie.",
['nocancel'] = "Er is geen animatie om te annuleren.",
['maleonly'] = "Deze animatie is alleen voor mannen, sorry!",
['emotemenucmd'] = "Doe /emotemenu voor het animatiemenu.",
['shareemotes'] = "👫 Gedeelde Animaties",
['shareemotesinfo'] = "Nodig een persoon in de buurt uit om een animatie te doen.",
['sharedanceemotes'] = "~h~~p~ 🕺 Gedeelde Dansjes",
['notvalidsharedemote'] = "Is geen geldige gedeelde animatie.",
['sentrequestto'] = "Verzoek gestuurd naar ~y~",
['nobodyclose'] = "Er is niemand ~r~dichtbij~w~ genoeg.",
['doyouwanna'] = "~y~Y~w~ om te accepteren, ~r~L~w~ om te weigeren (~g~",
['refuseemote'] = "Animatie geweigerd.",
['makenearby'] = "laat de dichtstbijzijnde persoon de animatie doen",
['useleafblower'] = "Druk op ~y~G~w~ om de bladblazer te gebruiken.",
['camera'] = "Druk op ~y~G~w~ om de flitser te gebruiken..",
['makeitrain'] = "Druk op ~y~G~w~ om geld te gooien.",
['pee'] = "Druk op ~y~G~w~ om te plassen.",
['spraychamp'] = "Druk op ~y~G~w~ om Champagne te spuiten.",
['stun'] = "Druk op ~y~G~w~ om de taser te 'gebruiken'.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Druk op ~y~Gw~ om te vapen.",
['bound'] = "Gebonden ",
['to'] = "aan",
['currentlyboundemotes'] = " Huidig gebonden animaties:",
['notvalidkey'] = "Is geen geldige knop.",
['keybinds'] = "🔢 Keybinds",
['keybindsinfo'] = "Gebruik",
['searchemotes'] = "~h~~y~ 🔍 Zoeken naar emotes",
['searchinputtitle'] = "Zoeken:",
['searchmenudesc'] = "%s Resultaat(s) voor'~r~%s~w~':",
['searchnoresult'] = "Geen resultaat voor zoekopdracht '~r~%s~w~'.",
['searchshifttofav'] = "Houd L-Shift ingedrukt en druk enter om als favoriet op te slaan.",
['searchcantsetfav'] = "Gedeelde emotes kunnen niet als favoriet worden ingesteld.",
['invalidvariation'] = "Ongeldige textuur variatie. Geldige selecties zijn: %s",
['firework'] = "Druk op ~y~G~w~ om vuurwerk te gebruiken",
['poop'] = "Druk op ~y~G~w~ om te poepen",
['puke'] = "Druk op ~y~G~w~ om te kotsen",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Selecteren",
['btn_back'] = "Terug",
['btn_switch'] = "Bewegen",
['btn_increment'] = "Increment",
['dead'] = "Je kunt geen emotes gebruiken wanneer je dood bent!",
['swimming'] = "You can't use emotes while swimming",
['notvalidpet'] = "RUH ROH! Incorrect ped model detected 🐕!",
['animaldisabled'] = "Sorry! Animal emotes are disabled on this server",
['adultemotedisabled'] = "Bonk! Adult emotes disabled 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Exit binoculars",
['toggle_binoculars_vision'] = "Toggle between vision modes",
['exit_news'] = "Exit News Camera",
['toggle_news_vision'] = "Toggle between vision modes",
['edit_values_newscam'] = "Edit the news text",
['not_in_a_vehicle'] = "You can't play this animation while in a vehicle",
['in_a_vehicle'] = "You can only play this animation while in a vehicle 🚷",
['no_anim_crawling'] = "You can't play animations while crawling",
['no_anim_right_now'] = "You can't play an animation right now",
},
['en'] = { -- English 🇬🇧
['emotes'] = '~h~~p~ Emotes 🎬',
['danceemotes'] = "~h~~p~ 🕺 Dance Emotes",
['animalemotes'] = "~h~~p~ 🐩 Animal Emotes",
['propemotes'] = "~h~~p~ 📦 Prop Emotes",
['favoriteemotes'] = "~h~~y~ 🌟 Favorite",
['favoriteinfo'] = "Select an emote here to set it as your favorite.",
['rfavorite'] = "Reset favorite",
['prop2info'] = "❓ Prop Emotes can be located at the end",
['set'] = "Set (",
['setboundemote'] = ") to be your bound emote?",
['newsetemote'] = "~w~ is now your bound emote, press ~g~CapsLock~w~ to use it.",
['cancelemote'] = "~h~~r~ Cancel Emote 🚷",
['cancelemoteinfo'] = "~r~X~w~ Cancels the currently playing emote",
['walkingstyles'] = "~h~~p~ Walking Styles 🚶🏻♂️",
['resetdef'] = "~h~~y~ Reset to default",
['normalreset'] = "~h~~r~ Normal (Reset)",
['moods'] = "~h~~p~ Moods 😒",
['infoupdate'] = "~h~~g~ Credits 🤝🏻",
['infoupdateav'] = "Information (Update available)",
['infoupdateavtext'] = "An update is available, get the latest version from ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Suggestions?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ on FiveM forums for any feature/emote suggestions! ✉️",
['notvaliddance'] = "is not a valid dance.",
['notvalidemote'] = "is not a valid emote.",
['nocancel'] = "No emote to cancel.",
['maleonly'] = "This emote is male only, sorry!",
['emotemenucmd'] = "Use command /emotemenu to open animations menu.",
['shareemotes'] = "~h~~p~ 👫 Shared Emotes",
['shareemotesinfo'] = "Invite a nearby person to emote",
['sharedanceemotes'] = "~h~~p~ 🕺 Shared Dances",
['notvalidsharedemote'] = "is not a valid shared emote.",
['sentrequestto'] = "Sent request to ~y~",
['nobodyclose'] = "Nobody ~r~close~w~ enough.",
['doyouwanna'] = "~y~Y~w~ to accept, ~r~L~w~ to refuse (~g~",
['refuseemote'] = "Emote refused.",
['makenearby'] = "makes the nearby player play",
['useleafblower'] = "Press ~y~G~w~ to use the leaf blower.",
['camera'] = "Press ~y~G~w~ to use camera flash.",
['makeitrain'] = "Press ~y~G~w~ to make it rain.",
['pee'] = "Hold ~y~G~w~ to pee.",
['spraychamp'] = "Hold ~y~G~w~ to spray champagne",
['stun'] = "Press ~y~G~w~ to 'use' stun gun.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Press ~y~G~w~ to vape.",
['bound'] = "Bound ",
['to'] = "to",
['currentlyboundemotes'] = " Currently bound emotes:",
['notvalidkey'] = "is not a valid key.",
['keybinds'] = "🔢 Keybinds",
['keybindsinfo'] = "Use",
['searchemotes'] = "~h~~y~ 🔍 Search for Emotes",
['searchinputtitle'] = "Search:",
['searchmenudesc'] = "%s result(s) for '~r~%s~w~':",
['searchnoresult'] = "No results for search '~r~%s~w~'.",
['searchshifttofav'] = "Hold L-Shift and press enter to set as favorite.",
['searchcantsetfav'] = "Shared emotes cannot be set as favorites.",
['invalidvariation'] = "Invalid texture variation. Valid selections are: %s",
['firework'] = "Press ~y~G~w~ to use the firework",
['poop'] = "Press ~y~G~w~ to poop",
['puke'] = "Press ~y~G~w~ to puke",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Select",
['btn_back'] = "Back",
['btn_switch'] = "Movement",
['btn_increment'] = "Increment",
['dead'] = "You can't use emotes while dead!",
['swimming'] = "You can't use emotes while swimming",
['notvalidpet'] = "RUH ROH! Incorrect ped model detected 🐕!",
['animaldisabled'] = "Sorry! Animal emotes are disabled on this server",
['adultemotedisabled'] = "Bonk! Adult emotes disabled 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Exit binoculars",
['toggle_binoculars_vision'] = "Toggle between vision modes",
['exit_news'] = "Exit News Camera",
['toggle_news_vision'] = "Toggle between vision modes",
['edit_values_newscam'] = "Edit the news text",
['not_in_a_vehicle'] = "You can't play this animation while in a vehicle",
['in_a_vehicle'] = "You can only play this animation while in a vehicle 🚷",
['no_anim_crawling'] = "You can't play animations while crawling",
['no_anim_right_now'] = "You can't play an animation right now",
},
['fi'] = { -- Finnish 🇫🇮
['emotes'] = "~h~~p~ Animaatiot 🎬",
['danceemotes'] = "~h~~p~ 🕺 Tanssi Animaatiot",
['animalemotes'] = "~h~~p~ 🐩 Eläin Animaatiot",
['propemotes'] = "~h~~p~ 📦 Esine Animaatiot",
['favoriteemotes'] = "~h~~p~ 🌟 Suosikit",
['favoriteinfo'] = "Valitse animaatio asettaaksesi sen suosikiksi.",
['rfavorite'] = "Resetoi suosikit.",
['prop2info'] = "❓ Esine animaatiot voivat sijaita lopussa",
['set'] = "Aseta (",
['setboundemote'] = ") bindatuksi animaatioksi?",
['newsetemote'] = "~w~ on nyt bindattu animaatio, paina ~g~CapsLock~w~ käyttääksesi",
['cancelemote'] = "~h~~r~ Peru animaatio 🚷",
['cancelemoteinfo'] = "~r~X~w~ Peruu tämän hetkisen animaation",
['walkingstyles'] = "~h~~p~ Kävelytyylit 🚶🏻♂️",
['resetdef'] = "Resetoi oletuksen",
['normalreset'] = "~h~~r~ Normaali (Reset)",
['moods'] = "~h~~p~ Mielialat 😒",
['infoupdate'] = "~h~~g~ Krediitit 🤝🏻",
['infoupdateav'] = "Informaatio (Päivitys saatavilla)",
['infoupdateavtext'] = "Uusin versio saatavilla täältä ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Ehdotukset?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ FiveM foorumeilla liittyen mihin tahansa ominaisuus/animaatio ehdotukseen! ✉️",
['notvaliddance'] = "Ei ole tanssi.",
['notvalidemote'] = "Ei ole animaatio.",
['nocancel'] = "Ei ole animaatiota peruutettavaksi.",
['maleonly'] = "Tämä animaatio on ainostaan miehille, pahoittelut!",
['emotemenucmd'] = "Käytä /emotemenu avataksesi animaatio valikon",
['shareemotes'] = "~h~~p~ 👫 Yhteiset Animaatiot",
['shareemotesinfo'] = "Kutsu lähin pelaaja animaatioon ",
['sharedanceemotes'] = "~h~~p~ 🕺 Yhteiset Tanssit",
['notvalidsharedemote'] = "Ei ole yhteinen tanssi animaatio.",
['sentrequestto'] = "Kutsu lähetetty pelaajalle ~y~",
['nobodyclose'] = "Kukaan ei ole ~r~lähelläsi~w~.",
['doyouwanna'] = "~y~Y~w~ hyväksyäksesi, ~r~L~w~ kieltäytyäksesi (~g~",
['refuseemote'] = "Kieltäytyi animaatiosta.",
['makenearby'] = "lähellä oleva pelaaja tekee",
['useleafblower'] = "Paina ~y~G~w~ käyttääksesi lehtipuhallinta.",
['camera'] = "Paina ~y~G~w~ käyttääksesi kameran salamaa.",
['makeitrain'] = "Paina ~y~G~w~ heittääksesi rahaa.",
['pee'] = "Pidä ~y~G~w~ pissataksesi.",
['spraychamp'] = "Pidä ~y~G~w~ suihkuttaaksesi shamppanjaa",
['stun'] = "Paina ~y~G~w~ 'käyttääksesi' etälamautinta.",
['smoke'] = "Press ~y~G~w~ to smoke.",
['vape'] = "Paina ~y~G~w~ käyttääksesi vapea.",
['bound'] = "Bindata",
['to'] = ' Näppäimeen',
['currentlyboundemotes'] = "Bindatut animaatiot:",
['notvalidkey'] = "ei ole käytettävä näppäin.",
['keybinds'] = "🔢 Pikanäppäimet",
['keybindsinfo'] = "Käytä",
['searchemotes'] = "~h~~y~ 🔍 Etsiäksesi emoten",
['searchinputtitle'] = "Etsi:",
['searchmenudesc'] = "%s tulokset '~r~%s~w~':",
['searchnoresult'] = "Ei tuloksia haulle '~r~%s~w~'.",
['searchshifttofav'] = "Pidä L-Shift painettuna ja aseta suosikiksi painamalla Enter.",
['searchcantsetfav'] = "Jaettuja emoteja ei voi asettaa suosikeiksi.",
['invalidvariation'] = "Virheellinen tekstuurimuunnelma. Kelvollisia valintoja ovat: %s",
['firework'] = "Käytä ilotulitteita painamalla ~y~G~w~",
['poop'] = "Paina ~y~G~w~ kakataksesi.",
['puke'] = "Paina ~y~G~w~ oksentaaksesi.",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Valitse",
['btn_back'] = "Takaisin",
['btn_switch'] = "Liike",
['btn_increment'] = "Lisäys",
['dead'] = "You can't use emotes while dead!",
['swimming'] = "You can't use emotes while swimming",
['notvalidpet'] = "RUH ROH! Vääränlainen ped modeli havaittu! 🐕",
['animaldisabled'] = "Anteeksi! Eläin animaatiot on poistettu käytöstä tällä palvelimella",
['adultemotedisabled'] = "Bonk! Aikuisten animaatio pois käytöstä :underage:",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Poistuaksesi kiikareista",
['toggle_binoculars_vision'] = "Vaihtele kiikariden näköetäisyyttä",
['exit_news'] = "Poistuaksesi uutiskamerasta",
['toggle_news_vision'] = "Vaihtele uutiskameran näkymää",
['edit_values_newscam'] = "Muokkaa uutistekstiä",
['not_in_a_vehicle'] = "Et voi toistaa tätä animaatiota ajoneuvossa",
['in_a_vehicle'] = "Voit toistaa tämän animaation vain ajoneuvossa",
['no_anim_crawling'] = "Animaatiota ei voi toistaa ryömiessä",
['no_anim_right_now'] = "You can't play an animation right now",
},
['fr'] = { -- French 🇫🇷
['emotes'] = "~h~~p~ Emotes 🎬",
['danceemotes'] = "~h~~p~ 🕺 Danses",
['animalemotes'] = "~h~~p~ 🐩 Emotes d'animaux",
['propemotes'] = "~h~~p~ 📦 Emotes objet",
['favoriteemotes'] = "~h~~y~ 🌟 Favori",
['favoriteinfo'] = "Définir une emote comme favori.",
['rfavorite'] = "Réinitialiser le favori.",
['prop2info'] = "❓ Les emotes d'objet peuvent être à la fin",
['set'] = "Mettre (",
['setboundemote'] = ") en emote favorite?",
['newsetemote'] = "~w~ est maintenant votre emote favorite, appuyez sur ~g~CapsLock~w~ pour l'utiliser.",
['cancelemote'] = "~h~~r~ Annuler Emote 🚷",
['cancelemoteinfo'] = "~r~X~w~ Annule l'emote en cours",
['walkingstyles'] = "~h~~p~ Styles de marche 🚶🏻♂️",
['resetdef'] = "Réinitialiser aux valeurs par défaut",
['normalreset'] = "~h~~r~ Normal (réinitialiser)",
['moods'] = "~h~~p~ Humeurs 😒",
['infoupdate'] = "Crédits 🤝🏻",
['infoupdateav'] = "Information (Mise à jour disponible)",
['infoupdateavtext'] = "Une mise à jour est disponible ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Suggestions?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ sur les forums FiveM pour toutes les suggestions! ✉️",
['notvaliddance'] = "n'est pas une danse valide",
['notvalidemote'] = "n'est pas une emote valide",
['nocancel'] = "Pas d'emote à annuler",
['maleonly'] = "Cet emote est réservé aux hommes, désolé!",
['emotemenucmd'] = "Fait /emotemenu pour ouvrir le menu",
['shareemotes'] = "👫 Emotes partagées",
['shareemotesinfo'] = "Invite une personne proche à faire une emote avec toi",
['sharedanceemotes'] = "🕺 Dances partagées",
['notvalidsharedemote'] = "n'est pas un emote partagée valide.",
['sentrequestto'] = "Demande envoyée à ~g~",
['nobodyclose'] = "Personne n'est assez proche.",
['doyouwanna'] = "~y~Y~w~ accepter, ~r~L~w~ refuser (~g~",
['refuseemote'] = "Emote refusée.",
['makenearby'] = "fait jouer le joueur à proximité",
['useleafblower'] = "Appuyez sur ~y~G~w~ pour utiliser le souffleur à feuilles.",
['camera'] = "Appuyez sur ~y~G~w~ pour utiliser le flash de l'appareil.",
['makeitrain'] = "Appuyez sur ~y~G~w~ pour jeter de l'argent.",
['pee'] = "Appuyez sur ~y~G~w~ pour faire pipi.",
['spraychamp'] = "Appuyez sur ~y~G~w~ pour vaporiser du champagne.",
['smoke'] = "Appuyez sur ~y~G~w~ pour fumer.",
['vape'] = "Appuyez sur ~y~G~w~ pour vapoter.",
['bound'] = "Liée ",
['to'] = "à",
['currentlyboundemotes'] = " Emotes actuellement liées:",
['notvalidkey'] = "n'est pas une clé valide.",
['keybinds'] = "🔢 Raccourcis clavier",
['keybindsinfo'] = "Utilise",
['searchemotes'] = "~h~~y~ 🔍 Rechercher des emotes",
['searchinputtitle'] = "Recherche:",
['searchmenudesc'] = "%s resultat(s) pour '~r~%s~w~':",
['searchnoresult'] = "Aucun résultat pour la recherche : '~r~%s~w~'.",
['searchshifttofav'] = "Maintenir L-Shift et appuyer sur entrer pour marquer comme favorie.",
['searchcantsetfav'] = "Les emotes partagées ne peuvent pas être mise en favorie.",
['invalidvariation'] = "Variation de texture invalide. Les sélections valides sont : %s",
['firework'] = "Appuyez sur ~y~G~w~ pour utiliser les feux d'artifice",
['poop'] = "Appuyez sur ~y~G~w~ pour faire caca.",
['puke'] = "Appuyez sur ~y~G~w~ pour vomir.",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Sélectionner",
['btn_back'] = "Retour",
['btn_switch'] = "Mouvement",
['btn_increment'] = "Vitesse déplacement",
['dead'] = "Vous ne pouvez pas faire d'animation en étant mort !",
['swimming'] = "Vous ne pouvez pas faire d'emotes en nageant",
['notvalidpet'] = "RUH ROH! Vous n'avez pas un ped adapté 🐕!",
['animaldisabled'] = "Désolé! Les emotes d'animaux sont désactivées sur ce serveur",
['adultemotedisabled'] = "Bonk ! Les Emotes adultes sont désactivées🔞",
['toggle_instructions'] = "Afficher / Masquer les instructions",
['exit_binoculars'] = "Quitter les jumelles",
['toggle_binoculars_vision'] = "Basculer entre les modes de vision",
['exit_news'] = "Quitter la caméra des news",
['toggle_news_vision'] = "Basculer entre les modes de vision",
['edit_values_newscam'] = "Editer les textes",
['not_in_a_vehicle'] = "Vous ne pouvez pas jouer cette animation dans un véhicule",
['in_a_vehicle'] = "Vous ne pouvez jouer cette animation que dans un véhicule 🚷",
['no_anim_crawling'] = "Vous ne pouvez pas jouer d'animations pendant que vous rampez",
['no_anim_right_now'] = "You can't play an animation right now",
},
['de'] = { -- German 🇩🇪
['emotes'] = "~h~~p~ Emotes 🎬",
['danceemotes'] = "~h~~p~ 🕺 Tanz-Emotes",
['animalemotes'] = "~h~~p~ 🐩 Tier Emotes",
['propemotes'] = "~h~~p~ 📦 Prop-Emotes",
['favoriteemotes'] = "~h~~y~ 🌟 Favorit",
['favoriteinfo'] = "Wählen Sie hier ein Emote aus, um es als gebundenes Emote festzulegen.",
['rfavorite'] = "Keybind zurücksetzen",
['prop2info'] = "❓ Prop-Emotes können am Ende platziert werden",
['set'] = "Set (",
['setboundemote'] = ") soll dein gebundenes Emote sein?",
['newsetemote'] = "~w~ ist jetzt ein gebundenes Emote, drücke ~g~CapsLock~w~, um es zu verwenden.",
['cancelemote'] = "~h~~r~ Emote abbrechen 🚷",
['cancelemoteinfo'] = "~r~ X ~w~ Bricht das aktuell wiedergegebene Emote ab",
['walkingstyles'] = "~h~~p~ Gehstile 🚶🏻♂️",
['resetdef'] = "Auf Standard zurücksetzen",
['normalreset'] = "~h~~r~ Normal (Zurücksetzen)",
['moods'] = "~h~~p~ Stimmungen 😒",
['infoupdate'] = "~h~~g~ Credits 🤝🏻",
['infoupdateav'] = "Information (Update verfügbar)",
['infoupdateavtext'] = "Eine Aktualisierung ist verfügbar ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Vorschläge?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ in FiveM-Foren für alle Feature- / Emote-Vorschläge! ✉️",
['notvaliddance'] = "ist kein gültiger Tanz",
['notvalidemote'] = "ist kein gültiges Emote",
['nocancel'] = "Kein Emote zum Abbrechen",
['maleonly'] = "Dieses Emote ist nur für Männer, sorry!",
['emotemenucmd'] = "Gebe den Befehl /emotemenu ein, um das Menü zu öffnen",
['shareemotes'] = "~h~~p~ 👫 Geteilte Emotes",
['shareemotesinfo'] = "Laden Sie eine Person in Ihrer Nähe zum Emoten ein",
['sharedanceemotes'] = "~h~~p~ 🕺 Geteilte Tänze",
['notvalidsharedemote'] = "ist kein gültiges geteiltes Emote.",
['sentrequestto'] = "Anfrage an ~g~ gesendet",
['nobodyclose'] = "Niemand ist nah genug dran.",
['doyouwanna'] = "~y~Z~w~ zu akzeptieren, ~r~L~w~ zu verweigern (~g~",
['refuseemote'] = "Emote abgelehnt.",
['makenearby'] = "Starte einen Emote mit einer Person in deiner Nähe",
['useleafblower'] = "Drücke ~y~G~w~ um den Laubbläser zu benutzen.",
['camera'] = "Drücke ~y~G~w~ um den Kamerablitz zu verwenden.",
['makeitrain'] = "Drücke ~y~G~w~ zum Geld werfen.",
['pee'] = "Halte ~y~G~w~ zum urinieren.",
['spraychamp'] = "Halte ~y~G~w~ um Champagner zu sprühen",
['smoke'] = "Halte ~y~G~w~ um zu rauchen.",
['vape'] = "Halte ~y~G~w~ um zu vapen.",
['bound'] = "Gebunden ",
['to'] = "zu",
['currentlyboundemotes'] = " Derzeit gebundene Emotes:",
['notvalidkey'] = "ist kein gültiger Schlüssel.",
['keybinds'] = "🔢 Tastenkombinationen",
['keybindsinfo'] = "verwenden",
['searchemotes'] = "~h~~y~ 🔍 Suche nach Bestimmten Emotes",
['searchinputtitle'] = "Suche:",
['searchmenudesc'] = "%s Ergebnis(se) für '~r~%s~w~':",
['searchnoresult'] = "Es wurden keine Ergebnisse gefunden für '~r~%s~w~'.",
['searchshifttofav'] = "Halte L-Shift und drücke Enter um das Emote als Favorit zu setzen.",
['searchcantsetfav'] = "Geteilte Emotes können nicht als Favorit gesetzt werden.",
['invalidvariation'] = "Ungültige Texturvariante. Korrekte auswahlen sind: %s",
['firework'] = "Drücke ~y~G~w~, um das Feuerwerk zu benutzen",
['poop'] = "Drücke ~y~G~w~, um zu kacken", --Translated using smodin.io
['puke'] = "Drücke ~y~G~w~ um dich zu übergeben",
['cut'] = "Press ~y~G~w~ to cut",
['btn_select'] = "Auswählen",
['btn_back'] = "Zurück",
['btn_switch'] = "Bewegung",
['btn_increment'] = "Increment",
['dead'] = "Du kannst keine Emotes nutzen während du tot bist!",
['swimming'] = "Du kannst keine Emotes verwenden, während du schwimmst",
['notvalidpet'] = "RUH ROH! Falsches Tiermodell erkannt 🐕!",
['animaldisabled'] = "Entschuldigung! Tier-Emotes sind auf diesem Server deaktiviert",
['adultemotedisabled'] = "Bonk! Erwachsenen-Emotes deaktiviert 🔞",
['toggle_instructions'] = "Toggle the instructions",
['exit_binoculars'] = "Fernglas verlassen",
['toggle_binoculars_vision'] = "Zwischen Sichtmodi wechseln",
['exit_news'] = "Nachrichtenkamera verlassen",
['toggle_news_vision'] = "Zwischen Sichtmodi wechseln",
['edit_values_newscam'] = "Text der Nachricht bearbeiten",
['not_in_a_vehicle'] = "Du kannst diese Animation nicht abspielen, während du dich in einem Fahrzeug befindest",
['in_a_vehicle'] = "Du kannst diese Animation nur abspielen, wenn du dich in einem Fahrzeug befindest 🚷",
['no_anim_crawling'] = "Du kannst keine Animationen abspielen, während du kriechst",
['no_anim_right_now'] = "You can't play an animation right now",
},
['el'] = { -- Greek 🇬🇷
['emotes'] = '~h~~p~ Κινήσεις 🎬',
['danceemotes'] = "~h~~p~ 🕺 Χοροί",
['animalemotes'] = "~h~~p~ 🐩 Ζώα",
['propemotes'] = "~h~~p~ 📦 Αντικείμενα",
['favoriteemotes'] = "~h~~y~ 🌟 Αγαπημένα",
['favoriteinfo'] = "Διάλεξε κίνηση για να τη βάλεις στα αγαπημένα.",
['rfavorite'] = "Διαγραφή αγαπημένων",
['prop2info'] = "❓ Τα αντικείμενα βρίσκοντε στο τέλος",
['set'] = "Set (",
['setboundemote'] = ") να προστεθεί στα αγαπημένα?",
['newsetemote'] = "~w~ είναι τώρα στα αγαπημένα σου, πάτησε ~g~CapsLock~w~ για να την χρησιμοποιήσεις.",
['cancelemote'] = "~h~~r~ Ακύρωση Κίνησης 🚷",
['cancelemoteinfo'] = "~r~X~w~ Ακυρώνει την κίνηση που κάνεις τώρα",
['walkingstyles'] = "~h~~p~ Είδη Περπατήματος 🚶🏻♂️",
['resetdef'] = "~h~~y~ Επαναφορα αρχικών ρυθμίσεων",
['normalreset'] = "~h~~r~ Κανονική (Αρχική)",
['moods'] = "~h~~p~ Διαθέσεις 😒",
['infoupdate'] = "~h~~g~ Ευχαριστήρια 🤝🏻",
['infoupdateav'] = "Πληροφορίες (Νέα έκδοση διαθέσιμη!)",
['infoupdateavtext'] = "Υπάρχει νέα έκδοση διαθέσιμη, κατέβασέτην από εδώ ~y~https://github.com/TayMcKenzieNZ/rpemotes~w~",
['suggestions'] = "Προτάσεις?",
['suggestionsinfo'] = "~r~TayMcKenzieNZ~s~ στο φόρουμ του FiveM για οποιαδήποτε πρόταση! ✉️",
['notvaliddance'] = "δεν είναι διαθέσιμος χορός.",
['notvalidemote'] = "δεν είναι διαθέσιμη κίνηση.",
['nocancel'] = "Δεν κάνεις κάποια κίνηση για να ακυρωθεί.",
['maleonly'] = "Αυτή η κίνηση είναι μόνο για άνδρες,συγνώμη!",
['emotemenucmd'] = "Χρησιμοποίησε την εντολή /emotemenu για να ανοίξεις το μενού κινήσεων.",
['shareemotes'] = "~h~~p~ 👫 Κινήσεις Με Άλλους Παίκτες",
['shareemotesinfo'] = "Προσκάλεσε τον κοντινότερο παίκτη για να κάνετε μια κίνηση",
['sharedanceemotes'] = "~h~~p~ 🕺 Χοροί Με Άλλους Παίκτες",
['notvalidsharedemote'] = "δεν είναι διαθέσιμη κίνηση για να κάνεις με άλλον παίκτη.",