forked from NiiV3AU/YMU
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslations.json
More file actions
2277 lines (2277 loc) · 117 KB
/
translations.json
File metadata and controls
2277 lines (2277 loc) · 117 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"en_US": {
"meta": { "name": "English (US)" },
"Sidebar": {
"Risks": "Risks",
"Download": "Download",
"Inject": "Inject",
"Settings": "Settings",
"Tooltip": {
"Risks": "Show important warnings and information",
"ProjectPage": "Open the YMU project page in your browser"
}
},
"Common": {
"Error": "Error",
"Info": "Information",
"UnexpectedError": "An unexpected error occurred",
"Restart": "Restart Now",
"Yes": "Yes",
"No": "No",
"RestartAdmin": "Restart as Admin"
},
"Risk": {
"Title": "ATTENTION",
"Info": "Always use YMU and YimMenu with BattlEye DISABLED.\nUsing mods online carries a risk of being banned.",
"Btn": {
"YimOfficial": "Official YimMenu GitHub Repo",
"YimLegacy": "YimMenu (legacy) GitHub Repo",
"YimV2": "YimMenuV2 (enhanced) GitHub Repo",
"FSL": "FSL's UC-Thread"
},
"Tooltip": {
"YimOfficial": "Open the official YimMenu GitHub repository",
"YimLegacy": "Open the YimMenu (legacy) GitHub repository",
"YimV2": "Open the YimMenuV2 (enhanced) GitHub repository",
"FSL": "Open the FSL thread on UnknownCheats for download & support"
}
},
"Download": {
"Status": {
"Initial": "Select a channel to check for updates.",
"Checking": "Checking for updates...",
"UpToDate": "YimMenu is up-to-date.",
"NewVersion": "A new version is available!",
"Error": "An error occurred. Please try again.",
"Downloading": "Downloading",
"Success": "Download successful and verified!",
"Failed": "Download failed. Check logs."
},
"Btn": {
"Check": "Check for Updates",
"Checking": "Checking...",
"UpToDate": "Up-to-date",
"Update": "Update",
"Download": "Download",
"Retry": "Retry Check",
"Downloading": "Downloading..."
},
"Notify": {
"NewVersion": "A new version is ready to be downloaded.",
"CheckFailed": "Failed to check for updates",
"SuccessTitle": "Download Complete",
"SuccessMsg": "DLL successfully downloaded and verified!",
"FailedTitle": "Download Failed",
"FailedMsg": "Verification failed. Please check the logs.",
"UpdateTitle": "{0} Update"
},
"Help": {
"Title": "DLL & FSL Info",
"DllSteps": "1. Click on (Download)\n2. Wait for the download to finish\n3. The file is in the 'YMU/dll' folder\n\nIf the file gets deleted, add an exception\nin your antivirus or disable it temporarily.",
"FslSteps": "1. Download FSL (Link provided in the Risks Page)\n2. Open your GTAV Directory\n3. Drop the WINMM.dll in the folder\n (filename MUST be exactly 'WINMM.dll')\n4. Disable BattlEye in Rockstar's Game Launcher\n5. Done! ✅"
},
"Tooltip": {
"Help": "Show help for DLL and FSL installation",
"Channel": "Select the YimMenu version to download"
}
},
"Inject": {
"Launcher": { "Select": "Select Launcher" },
"Btn": {
"StartGta": "Start GTA 5",
"InjectBase": "Inject YimMenu",
"NoDll": "No DLL found",
"InjectFile": "Inject {0}"
},
"Notify": {
"AlreadyRunning": "GTA 5 is already running!",
"SelectLauncher": "Please select a launcher first.",
"SuccessTitle": "Injection Successful",
"SuccessMsg": "Successfully injected DLL!"
},
"Help": {
"Title": "Injection Info",
"StartGtaSteps": "1. Select your launcher\n2. Press 'Start GTA 5'\n3. Read the next step ↗",
"TabInject": "Inject DLL",
"InjectSteps": "1. Start GTA 5 (↖ Previous Step)\n2. Wait for the game's start screen/menu\n3. Click on 'Inject YimMenu'\n4. Wait for YimMenu to finish loading\n5. Done! ✅"
},
"Tooltip": {
"Help": "Show help for the injection process",
"Launcher": "Select the launcher you use to start GTA V",
"Dll": "Select the DLL to inject"
},
"Error": {
"NoDllSelected": "Error: No DLL selected or found for injection.",
"ProcessLost": "GTA 5 process disappeared before injection.",
"InjectionFailed": "Injection failed. See logs for details.",
"NoRockstarPath": "Could not find Rockstar Games installation path.",
"NoExeFound": "Executable not found at '{0}'",
"LaunchFailed": "Error launching game. See logs for details.",
"AccessDenied": "Missing permissions to inject into GTA V.\nTry restarting YMU as Administrator."
}
},
"Settings": {
"Header": {
"Appearance": "Appearance",
"Lua": "Lua Settings",
"Other": "Other"
},
"Label": { "Language": "Language" },
"Theme": { "Dark": "Dark", "Light": "Light" },
"Lua": {
"AutoReload": "Auto-reload changed scripts",
"ListDisabled": "Disabled",
"ListEnabled": "Enabled",
"Tooltip": {
"AutoReload": "Automatically re-apply changes when Lua script files are saved",
"Enable": "Enable selected script(s)",
"Disable": "Disable selected script(s)",
"Refresh": "Refresh script lists"
}
},
"Other": {
"DebugConsole": "Enable External Debug Console",
"Tooltip": {
"Debug": "Show YimMenu's external console window for detailed logs and debugging"
}
},
"Btn": {
"OpenScripts": "Open Scripts Folder",
"DiscoverLua": "Discover Luas",
"OpenYimFolder": "Open YimMenu Folder",
"OpenYmuFolder": "Open YMU Folder",
"ReportBug": "Report a Bug",
"RequestFeature": "Request a Feature",
"CheckUpdates": "Check for YMU Updates",
"UpToDate": "YMU is up-to-date",
"Downloading": "Downloading Updater..."
},
"Tooltip": {
"OpenScripts": "Open the folder where your Lua scripts are located",
"DiscoverLua": "Open the official YimMenu-Lua GitHub organization to find new scripts",
"OpenYimFolder": "Open YimMenu folder (%APPDATA%/YimMenu)",
"OpenYmuFolder": "Open YMU folder (%APPDATA%/YMU)",
"ReportBug": "Open the bug report page on GitHub in your browser",
"RequestFeature": "Open the feature request page on GitHub in your browser",
"Language": "Select application language (requires restart)",
"UpdateLang": "Check for translation updates"
},
"Update": {
"Title": "YMU Updater",
"UpToDate": "Your YMU is already up-to-date.",
"AvailableTitle": "Update Available",
"AvailableMsg": "Update {0} is available!",
"Prompt": "Do you want to download and install it now?",
"CheckTitle": "YMU Update Check",
"ErrorTitle": "Update Error",
"Ahead": "You are running a newer version than the latest release."
},
"Notify": {
"RestartRequired": "Please restart YMU to apply the new language.",
"LangUpdated": "Translations were successfully downloaded.\nRestart YMU to see the updated Language List in Settings.",
"LangTitle": "Language Changed",
"LangUpToDate": "Translations are already up-to-date."
}
}
},
"de_DE": {
"meta": { "name": "Deutsch" },
"Sidebar": {
"Risks": "Risiken",
"Download": "Download",
"Inject": "Injecten",
"Settings": "Einstellungen",
"Tooltip": {
"Risks": "Wichtige Warnungen und Informationen anzeigen",
"ProjectPage": "YMU-Projektseite im Browser öffnen"
}
},
"Common": {
"Error": "Fehler",
"Info": "Info",
"UnexpectedError": "Ein unerwarteter Fehler ist aufgetreten",
"Restart": "Jetzt neustarten",
"Yes": "Ja",
"No": "Nein",
"RestartAdmin": "Als Admin neustarten"
},
"Risk": {
"Title": "ACHTUNG",
"Info": "Nutze YMU und YimMenu immer mit DEAKTIVIERTEM BattlEye.\nOnline-Modding birgt immer ein Ban-Risiko.",
"Btn": {
"YimOfficial": "Offizielles YimMenu GitHub Repo",
"YimLegacy": "YimMenu (legacy) GitHub Repo",
"YimV2": "YimMenuV2 (enhanced) GitHub Repo",
"FSL": "FSLs UC-Thread"
},
"Tooltip": {
"YimOfficial": "Öffnet das offizielle YimMenu GitHub Repository",
"YimLegacy": "Öffnet das YimMenu (legacy) GitHub Repository",
"YimV2": "Öffnet das YimMenuV2 (enhanced) GitHub Repository",
"FSL": "Öffnet den FSL-Thread auf UnknownCheats für Download & Support"
}
},
"Download": {
"Status": {
"Initial": "Wähle einen Channel, um nach Updates zu suchen.",
"Checking": "Suche nach Updates...",
"UpToDate": "YimMenu ist aktuell.",
"NewVersion": "Eine neue Version ist verfügbar!",
"Error": "Fehler aufgetreten. Versuch's nochmal.",
"Downloading": "Downloade",
"Success": "Download erfolgreich und verifiziert!",
"Failed": "Download fehlgeschlagen. Check die Logs."
},
"Btn": {
"Check": "Auf Updates prüfen",
"Checking": "Prüfe...",
"UpToDate": "Aktuell",
"Update": "Update",
"Download": "Download",
"Retry": "Nochmal prüfen",
"Downloading": "Lade herunter..."
},
"Notify": {
"NewVersion": "Eine neue Version steht zum Download bereit.",
"CheckFailed": "Update-Check fehlgeschlagen",
"SuccessTitle": "Download abgeschlossen",
"SuccessMsg": "DLL erfolgreich heruntergeladen und verifiziert!",
"FailedTitle": "Download fehlgeschlagen",
"FailedMsg": "Verifizierung fehlgeschlagen. Bitte Logs prüfen.",
"UpdateTitle": "{0} Update"
},
"Help": {
"Title": "DLL & FSL Info",
"DllSteps": "1. Klicke auf (Download)\n2. Warte bis der Download fertig ist\n3. Die Datei liegt im 'YMU/dll' Ordner\n\nFalls die Datei gelöscht wird: Füge eine Ausnahme\nzu deinem Antivirus hinzu oder deaktiviere es kurz.",
"FslSteps": "1. Lade FSL herunter (Link auf der Risiko-Seite)\n2. Öffne dein GTAV Verzeichnis\n3. Zieh die WINMM.dll in den Ordner\n (Dateiname MUSS exakt 'WINMM.dll' sein)\n4. Deaktiviere BattlEye im Rockstar Game Launcher\n5. Fertig! ✅"
},
"Tooltip": {
"Help": "Hilfe zur DLL- und FSL-Installation anzeigen",
"Channel": "Wähle die YimMenu-Version zum Downloaden"
}
},
"Inject": {
"Launcher": { "Select": "Launcher wählen" },
"Btn": {
"StartGta": "GTA 5 starten",
"InjectBase": "YimMenu injecten",
"NoDll": "Keine DLL gefunden",
"InjectFile": "{0} injecten"
},
"Notify": {
"AlreadyRunning": "GTA 5 läuft bereits!",
"SelectLauncher": "Bitte wähle zuerst einen Launcher.",
"SuccessTitle": "Injection erfolgreich",
"SuccessMsg": "DLL erfolgreich injected!"
},
"Help": {
"Title": "Injection Info",
"StartGtaSteps": "1. Wähle deinen Launcher\n2. Drücke 'GTA 5 starten'\n3. Lies den nächsten Schritt ↗",
"TabInject": "DLL injecten",
"InjectSteps": "1. Starte GTA 5 (↖ Vorheriger Schritt)\n2. Warte auf den Startbildschirm/Menü\n3. Klicke auf 'YimMenu injecten'\n4. Warte bis YimMenu geladen hat\n5. Fertig! ✅"
},
"Tooltip": {
"Help": "Hilfe zum Inject-Vorgang anzeigen",
"Launcher": "Wähle den Launcher, mit dem du GTA V startest",
"Dll": "Wähle die DLL zum Injecten"
},
"Error": {
"NoDllSelected": "Fehler: Keine DLL zum Injecten ausgewählt oder gefunden.",
"ProcessLost": "GTA 5 Prozess vor der Injection verschwunden.",
"InjectionFailed": "Injection fehlgeschlagen. Siehe Logs.",
"NoRockstarPath": "Konnte Rockstar Games Installationspfad nicht finden.",
"NoExeFound": "Executable nicht gefunden in '{0}'",
"LaunchFailed": "Fehler beim Spielstart. Siehe Logs.",
"AccessDenied": "Fehlende Rechte zum Injecten in GTA V.\nVersuche, YMU als Administrator neu zu starten."
}
},
"Settings": {
"Header": {
"Appearance": "Design",
"Lua": "Lua Einstellungen",
"Other": "Sonstiges"
},
"Label": { "Language": "Sprache" },
"Theme": { "Dark": "Dunkel", "Light": "Hell" },
"Lua": {
"AutoReload": "Geänderte Skripte auto-reloaden",
"ListDisabled": "Deaktiviert",
"ListEnabled": "Aktiviert",
"Tooltip": {
"AutoReload": "Änderungen automatisch übernehmen, wenn Lua-Skriptdateien gespeichert werden",
"Enable": "Ausgewählte Skripte aktivieren",
"Disable": "Ausgewählte Skripte deaktivieren",
"Refresh": "Skript-Liste aktualisieren"
}
},
"Other": {
"DebugConsole": "Externe Debug-Konsole aktivieren",
"Tooltip": {
"Debug": "Zeigt das externe Konsolenfenster von YimMenu für detaillierte Logs und Debugging"
}
},
"Btn": {
"OpenScripts": "Skript-Ordner öffnen",
"DiscoverLua": "Luas entdecken",
"OpenYimFolder": "YimMenu Ordner öffnen",
"OpenYmuFolder": "YMU Ordner öffnen",
"ReportBug": "Bug melden",
"RequestFeature": "Feature vorschlagen",
"CheckUpdates": "Auf YMU Updates prüfen",
"UpToDate": "YMU ist aktuell",
"Downloading": "Downloade Updater..."
},
"Tooltip": {
"OpenScripts": "Öffnet den Ordner, in dem deine Lua-Skripte liegen",
"DiscoverLua": "Öffnet die offizielle YimMenu-Lua GitHub Org, um neue Skripte zu finden",
"OpenYimFolder": "Öffnet YimMenu Ordner (%APPDATA%/YimMenu)",
"OpenYmuFolder": "Öffnet YMU Ordner (%APPDATA%/YMU)",
"ReportBug": "Öffnet die Bug-Report Seite auf GitHub im Browser",
"RequestFeature": "Öffnet die Feature-Request Seite auf GitHub im Browser",
"Language": "App-Sprache wählen (erfordert Neustart)",
"UpdateLang": "Auf Übersetzungs-Updates prüfen"
},
"Update": {
"Title": "YMU Updater",
"UpToDate": "Dein YMU ist bereits auf dem neuesten Stand.",
"AvailableTitle": "Update verfügbar",
"AvailableMsg": "Update {0} ist verfügbar!",
"Prompt": "Möchtest du es jetzt downloaden und installieren?",
"CheckTitle": "YMU Update Check",
"ErrorTitle": "Update Fehler",
"Ahead": "Du nutzt eine neuere Version als den letzten Release."
},
"Notify": {
"RestartRequired": "Bitte starte YMU neu, um die Sprache zu ändern.",
"LangUpdated": "Übersetzungen wurden erfolgreich heruntergeladen.\nStarte YMU neu, um die Liste in den Einstellungen zu aktualisieren.",
"LangTitle": "Sprache geändert",
"LangUpToDate": "Übersetzungen sind bereits aktuell."
}
}
},
"nl_NL": {
"meta": { "name": "Nederlands" },
"Sidebar": {
"Risks": "Risico's",
"Download": "Download",
"Inject": "Injecteren",
"Settings": "Instellingen",
"Tooltip": {
"Risks": "Belangrijke waarschuwingen en informatie tonen",
"ProjectPage": "Open de YMU-projectpagina in je browser"
}
},
"Common": {
"Error": "Fout",
"Info": "Info",
"UnexpectedError": "Er is een onverwachte fout opgetreden",
"Restart": "Nu herstarten",
"Yes": "Ja",
"No": "Nee",
"RestartAdmin": "Herstarten als Admin"
},
"Risk": {
"Title": "LET OP",
"Info": "Gebruik YMU en YimMenu altijd met BattlEye UITGESCHAKELD.\nOnline modden brengt altijd een risico op een ban met zich mee.",
"Btn": {
"YimOfficial": "Officiële YimMenu GitHub Repo",
"YimLegacy": "YimMenu (legacy) GitHub Repo",
"YimV2": "YimMenuV2 (enhanced) GitHub Repo",
"FSL": "FSL's UC-Thread"
},
"Tooltip": {
"YimOfficial": "Open de officiële YimMenu GitHub repository",
"YimLegacy": "Open de YimMenu (legacy) GitHub repository",
"YimV2": "Open de YimMenuV2 (enhanced) GitHub repository",
"FSL": "Open de FSL thread op UnknownCheats voor download & support"
}
},
"Download": {
"Status": {
"Initial": "Kies een channel om updates te checken.",
"Checking": "Checken op updates...",
"UpToDate": "YimMenu is up-to-date.",
"NewVersion": "Er is een nieuwe versie beschikbaar!",
"Error": "Er is een fout opgetreden. Probeer opnieuw.",
"Downloading": "Downloaden",
"Success": "Download geslaagd en geverifieerd!",
"Failed": "Download mislukt. Check de logs."
},
"Btn": {
"Check": "Check op Updates",
"Checking": "Checken...",
"UpToDate": "Up-to-date",
"Update": "Updaten",
"Download": "Download",
"Retry": "Opnieuw checken",
"Downloading": "Downloaden..."
},
"Notify": {
"NewVersion": "Een nieuwe versie staat klaar om te downloaden.",
"CheckFailed": "Kon niet checken op updates",
"SuccessTitle": "Download Voltooid",
"SuccessMsg": "DLL succesvol gedownload en geverifieerd!",
"FailedTitle": "Download Mislukt",
"FailedMsg": "Verificatie mislukt. Check alsjeblieft de logs.",
"UpdateTitle": "{0} Update"
},
"Help": {
"Title": "DLL & FSL Info",
"DllSteps": "1. Klik op (Download)\n2. Wacht tot de download klaar is\n3. Het bestand staat in de 'YMU/dll' map\n\nAls het bestand wordt verwijderd, voeg een uitzondering\ntoe in je antivirus of schakel deze tijdelijk uit.",
"FslSteps": "1. Download FSL (Link op de Risico Pagina)\n2. Open je GTAV map\n3. Drop de WINMM.dll in de map\n (bestandsnaam MOET exact 'WINMM.dll' zijn)\n4. Schakel BattlEye uit in Rockstar's Game Launcher\n5. Klaar! ✅"
},
"Tooltip": {
"Help": "Toon hulp voor DLL en FSL installatie",
"Channel": "Selecteer de YimMenu versie om te downloaden"
}
},
"Inject": {
"Launcher": { "Select": "Selecteer Launcher" },
"Btn": {
"StartGta": "Start GTA 5",
"InjectBase": "Injecteer YimMenu",
"NoDll": "Geen DLL gevonden",
"InjectFile": "Injecteer {0}"
},
"Notify": {
"AlreadyRunning": "GTA 5 draait al!",
"SelectLauncher": "Selecteer eerst een launcher.",
"SuccessTitle": "Injectie Geslaagd",
"SuccessMsg": "DLL succesvol geïnjecteerd!"
},
"Help": {
"Title": "Injectie Info",
"StartGtaSteps": "1. Selecteer je launcher\n2. Druk op 'Start GTA 5'\n3. Lees de volgende stap ↗",
"TabInject": "Injecteer DLL",
"InjectSteps": "1. Start GTA 5 (↖ Vorige Stap)\n2. Wacht op het startscherm/menu van de game\n3. Klik op 'Injecteer YimMenu'\n4. Wacht tot YimMenu klaar is met laden\n5. Klaar! ✅"
},
"Tooltip": {
"Help": "Toon hulp voor het injectie proces",
"Launcher": "Selecteer de launcher die je gebruikt om GTA V te starten",
"Dll": "Selecteer de DLL om te injecteren"
},
"Error": {
"NoDllSelected": "Fout: Geen DLL geselecteerd of gevonden voor injectie.",
"ProcessLost": "GTA 5 proces verdween voor injectie.",
"InjectionFailed": "Injectie mislukt. Zie logs voor details.",
"NoRockstarPath": "Kon Rockstar Games installatiepad niet vinden.",
"NoExeFound": "Executable niet gevonden in '{0}'",
"LaunchFailed": "Fout bij starten game. Zie logs voor details.",
"AccessDenied": "Geen rechten om te injecten in GTA V.\nProbeer YMU als administrator te herstarten."
}
},
"Settings": {
"Header": {
"Appearance": "Uiterlijk",
"Lua": "Lua Instellingen",
"Other": "Overig"
},
"Label": { "Language": "Taal" },
"Theme": { "Dark": "Donker", "Light": "Licht" },
"Lua": {
"AutoReload": "Gewijzigde scripts auto-reloaden",
"ListDisabled": "Uitgeschakeld",
"ListEnabled": "Ingeschakeld",
"Tooltip": {
"AutoReload": "Automatisch wijzigingen toepassen als Lua script bestanden worden opgeslagen",
"Enable": "Geselecteerde script(s) inschakelen",
"Disable": "Geselecteerde script(s) uitschakelen",
"Refresh": "Script lijst verversen"
}
},
"Other": {
"DebugConsole": "Externe Debug Console inschakelen",
"Tooltip": {
"Debug": "Toon YimMenu's externe console venster voor gedetailleerde logs en debugging"
}
},
"Btn": {
"OpenScripts": "Open Scripts Map",
"DiscoverLua": "Ontdek Luas",
"OpenYimFolder": "Open YimMenu Map",
"OpenYmuFolder": "Open YMU Map",
"ReportBug": "Meld een Bug",
"RequestFeature": "Vraag een Feature aan",
"CheckUpdates": "Check voor YMU Updates",
"UpToDate": "YMU is up-to-date",
"Downloading": "Updater downloaden..."
},
"Tooltip": {
"OpenScripts": "Open de map waar je Lua scripts staan",
"DiscoverLua": "Open de officiële YimMenu-Lua GitHub organisatie om nieuwe scripts te vinden",
"OpenYimFolder": "Open YimMenu map (%APPDATA%/YimMenu)",
"OpenYmuFolder": "Open YMU map (%APPDATA%/YMU)",
"ReportBug": "Open de bug report pagina op GitHub in je browser",
"RequestFeature": "Open de feature request pagina op GitHub in je browser",
"Language": "Selecteer applicatie taal (vereist herstart)",
"UpdateLang": "Check voor vertaling updates"
},
"Update": {
"Title": "YMU Updater",
"UpToDate": "Je YMU is al up-to-date.",
"AvailableTitle": "Update Beschikbaar",
"AvailableMsg": "Update {0} is beschikbaar!",
"Prompt": "Wil je het nu downloaden en installeren?",
"CheckTitle": "YMU Update Check",
"ErrorTitle": "Update Fout",
"Ahead": "Je draait een nieuwere versie dan de laatste release."
},
"Notify": {
"RestartRequired": "Herstart YMU om de nieuwe taal toe te passen.",
"LangUpdated": "Vertalingen succesvol gedownload.\nHerstart YMU om de geüpdatete Taal Lijst in Instellingen te zien.",
"LangTitle": "Taal Gewijzigd",
"LangUpToDate": "Vertalingen zijn al up-to-date."
}
}
},
"fr_FR": {
"meta": { "name": "Français" },
"Sidebar": {
"Risks": "Risques",
"Download": "Télécharger",
"Inject": "Injecter",
"Settings": "Paramètres",
"Tooltip": {
"Risks": "Afficher les avertissements et informations importants",
"ProjectPage": "Ouvrir la page du projet YMU dans le navigateur"
}
},
"Common": {
"Error": "Erreur",
"Info": "Info",
"UnexpectedError": "Une erreur inattendue est survenue",
"Restart": "Redémarrer maintenant",
"Yes": "Oui",
"No": "Non",
"RestartAdmin": "Redémarrer en Admin"
},
"Risk": {
"Title": "ATTENTION",
"Info": "Utilise toujours YMU et YimMenu avec BattlEye DÉSACTIVÉ.\nUtiliser des mods en ligne comporte toujours un risque de ban.",
"Btn": {
"YimOfficial": "Repo GitHub Officiel YimMenu",
"YimLegacy": "Repo GitHub YimMenu (legacy)",
"YimV2": "Repo GitHub YimMenuV2 (enhanced)",
"FSL": "Thread UC de FSL"
},
"Tooltip": {
"YimOfficial": "Ouvrir le dépôt GitHub officiel de YimMenu",
"YimLegacy": "Ouvrir le dépôt GitHub de YimMenu (legacy)",
"YimV2": "Ouvrir le dépôt GitHub de YimMenuV2 (enhanced)",
"FSL": "Ouvrir le thread FSL sur UnknownCheats pour le téléchargement & support"
}
},
"Download": {
"Status": {
"Initial": "Sélectionne un canal pour chercher des mises à jour.",
"Checking": "Recherche de mises à jour...",
"UpToDate": "YimMenu est à jour.",
"NewVersion": "Une nouvelle version est dispo !",
"Error": "Une erreur est survenue. Réessaye.",
"Downloading": "Téléchargement en cours",
"Success": "Téléchargement réussi et vérifié !",
"Failed": "Échec du téléchargement. Vérifie les logs."
},
"Btn": {
"Check": "Chercher des updates",
"Checking": "Vérification...",
"UpToDate": "À jour",
"Update": "Mettre à jour",
"Download": "Télécharger",
"Retry": "Réessayer",
"Downloading": "Téléchargement..."
},
"Notify": {
"NewVersion": "Une nouvelle version est prête à être téléchargée.",
"CheckFailed": "Échec de la recherche de mises à jour",
"SuccessTitle": "Téléchargement Terminé",
"SuccessMsg": "DLL téléchargée et vérifiée avec succès !",
"FailedTitle": "Échec du Téléchargement",
"FailedMsg": "Vérification échouée. Check les logs stp.",
"UpdateTitle": "Update {0}"
},
"Help": {
"Title": "Infos DLL & FSL",
"DllSteps": "1. Clique sur (Télécharger)\n2. Attends la fin du téléchargement\n3. Le fichier est dans le dossier 'YMU/dll'\n\nSi le fichier est supprimé, ajoute une exception\ndans ton antivirus ou désactive-le temporairement.",
"FslSteps": "1. Télécharge FSL (Lien sur la page Risques)\n2. Ouvre ton répertoire GTAV\n3. Dépose le fichier WINMM.dll dans le dossier\n (le nom DOIT être exactement 'WINMM.dll')\n4. Désactive BattlEye dans le Launcher Rockstar\n5. C'est fait ! ✅"
},
"Tooltip": {
"Help": "Afficher l'aide pour l'installation DLL et FSL",
"Channel": "Sélectionner la version YimMenu à télécharger"
}
},
"Inject": {
"Launcher": { "Select": "Choisir Launcher" },
"Btn": {
"StartGta": "Lancer GTA 5",
"InjectBase": "Injecter YimMenu",
"NoDll": "Aucune DLL trouvée",
"InjectFile": "Injecter {0}"
},
"Notify": {
"AlreadyRunning": "GTA 5 est déjà lancé !",
"SelectLauncher": "Sélectionne d'abord un launcher.",
"SuccessTitle": "Injection Réussie",
"SuccessMsg": "DLL injectée avec succès !"
},
"Help": {
"Title": "Infos Injection",
"StartGtaSteps": "1. Sélectionne ton launcher\n2. Appuie sur 'Lancer GTA 5'\n3. Lis l'étape suivante ↗",
"TabInject": "Injecter DLL",
"InjectSteps": "1. Lance GTA 5 (↖ Étape Précédente)\n2. Attends l'écran d'accueil/menu du jeu\n3. Clique sur 'Injecter YimMenu'\n4. Attends le chargement de YimMenu\n5. C'est fait ! ✅"
},
"Tooltip": {
"Help": "Afficher l'aide pour le processus d'injection",
"Launcher": "Sélectionne le launcher que tu utilises pour lancer GTA V",
"Dll": "Sélectionne la DLL à injecter"
},
"Error": {
"NoDllSelected": "Erreur : Aucune DLL sélectionnée ou trouvée pour l'injection.",
"ProcessLost": "Le processus GTA 5 a disparu avant l'injection.",
"InjectionFailed": "Injection échouée. Voir logs pour détails.",
"NoRockstarPath": "Impossible de trouver le chemin d'installation Rockstar Games.",
"NoExeFound": "Exécutable non trouvé à '{0}'",
"LaunchFailed": "Erreur au lancement du jeu. Voir logs.",
"AccessDenied": "Permissions manquantes pour injecter dans GTA V.\nEssaie de redémarrer YMU en tant qu'administrateur."
}
},
"Settings": {
"Header": {
"Appearance": "Apparence",
"Lua": "Paramètres Lua",
"Other": "Autre"
},
"Label": { "Language": "Langue" },
"Theme": { "Dark": "Sombre", "Light": "Clair" },
"Lua": {
"AutoReload": "Recharger auto. les scripts modifiés",
"ListDisabled": "Désactivé",
"ListEnabled": "Activé",
"Tooltip": {
"AutoReload": "Appliquer automatiquement les changements quand les fichiers scripts Lua sont sauvegardés",
"Enable": "Activer le(s) script(s) sélectionné(s)",
"Disable": "Désactiver le(s) script(s) sélectionné(s)",
"Refresh": "Rafraîchir la liste des scripts"
}
},
"Other": {
"DebugConsole": "Activer la Console de Debug Externe",
"Tooltip": {
"Debug": "Affiche la fenêtre console externe de YimMenu pour les logs détaillés et le debug"
}
},
"Btn": {
"OpenScripts": "Ouvrir dossier Scripts",
"DiscoverLua": "Découvrir des Luas",
"OpenYimFolder": "Ouvrir dossier YimMenu",
"OpenYmuFolder": "Ouvrir dossier YMU",
"ReportBug": "Signaler un Bug",
"RequestFeature": "Suggérer une Fonctionnalité",
"CheckUpdates": "Chercher MAJ YMU",
"UpToDate": "YMU est à jour",
"Downloading": "Téléchargement Updater..."
},
"Tooltip": {
"OpenScripts": "Ouvrir le dossier où se trouvent tes scripts Lua",
"DiscoverLua": "Ouvrir l'organisation GitHub YimMenu-Lua pour trouver de nouveaux scripts",
"OpenYimFolder": "Ouvrir le dossier YimMenu (%APPDATA%/YimMenu)",
"OpenYmuFolder": "Ouvrir le dossier YMU (%APPDATA%/YMU)",
"ReportBug": "Ouvrir la page de signalement de bug sur GitHub",
"RequestFeature": "Ouvrir la page de demande de fonctionnalité sur GitHub",
"Language": "Choisir la langue de l'app (nécessite redémarrage)",
"UpdateLang": "Vérifier les mises à jour de traduction"
},
"Update": {
"Title": "YMU Updater",
"UpToDate": "Ton YMU est déjà à jour.",
"AvailableTitle": "Mise à jour disponible",
"AvailableMsg": "La mise à jour {0} est dispo !",
"Prompt": "Veux-tu la télécharger et l'installer maintenant ?",
"CheckTitle": "Vérif MAJ YMU",
"ErrorTitle": "Erreur Mise à jour",
"Ahead": "Tu utilises une version plus récente que la dernière release."
},
"Notify": {
"RestartRequired": "Redémarre YMU pour appliquer la nouvelle langue.",
"LangUpdated": "Traductions téléchargées avec succès.\nRedémarre YMU pour voir la liste des langues mise à jour dans les Paramètres.",
"LangTitle": "Langue Changée",
"LangUpToDate": "Les traductions sont déjà à jour."
}
}
},
"es_ES": {
"meta": { "name": "Español" },
"Sidebar": {
"Risks": "Riesgos",
"Download": "Descargar",
"Inject": "Inyectar",
"Settings": "Ajustes",
"Tooltip": {
"Risks": "Mostrar advertencias e información importante",
"ProjectPage": "Abrir la página del proyecto YMU en el navegador"
}
},
"Common": {
"Error": "Error",
"Info": "Info",
"UnexpectedError": "Ocurrió un error inesperado",
"Restart": "Reiniciar ahora",
"Yes": "Sí",
"No": "No",
"RestartAdmin": "Reiniciar como Admin"
},
"Risk": {
"Title": "ATENCIÓN",
"Info": "Usa siempre YMU y YimMenu con BattlEye DESACTIVADO.\nUsar mods online conlleva riesgo de baneo.",
"Btn": {
"YimOfficial": "Repo GitHub Oficial YimMenu",
"YimLegacy": "Repo GitHub YimMenu (legacy)",
"YimV2": "Repo GitHub YimMenuV2 (enhanced)",
"FSL": "Hilo de FSL en UC"
},
"Tooltip": {
"YimOfficial": "Abrir el repositorio oficial de GitHub de YimMenu",
"YimLegacy": "Abrir el repositorio de GitHub de YimMenu (legacy)",
"YimV2": "Abrir el repositorio de GitHub de YimMenuV2 (enhanced)",
"FSL": "Abrir el hilo de FSL en UnknownCheats para descarga y soporte"
}
},
"Download": {
"Status": {
"Initial": "Selecciona un canal para buscar actualizaciones.",
"Checking": "Buscando actualizaciones...",
"UpToDate": "YimMenu está actualizado.",
"NewVersion": "¡Hay una nueva versión disponible!",
"Error": "Ocurrió un error. Inténtalo de nuevo.",
"Downloading": "Descargando",
"Success": "¡Descarga exitosa y verificada!",
"Failed": "Descarga fallida. Revisa los logs."
},
"Btn": {
"Check": "Buscar actualizaciones",
"Checking": "Comprobando...",
"UpToDate": "Actualizado",
"Update": "Actualizar",
"Download": "Descargar",
"Retry": "Reintentar",
"Downloading": "Descargando..."
},
"Notify": {
"NewVersion": "Una nueva versión está lista para descargar.",
"CheckFailed": "Fallo al buscar actualizaciones",
"SuccessTitle": "Descarga Completa",
"SuccessMsg": "¡DLL descargada y verificada correctamente!",
"FailedTitle": "Descarga Fallida",
"FailedMsg": "Verificación fallida. Por favor revisa los logs.",
"UpdateTitle": "Actualización {0}"
},
"Help": {
"Title": "Info DLL y FSL",
"DllSteps": "1. Haz clic en (Descargar)\n2. Espera a que termine la descarga\n3. El archivo está en la carpeta 'YMU/dll'\n\nSi el archivo se borra, añade una excepción\nen tu antivirus o desactívalo temporalmente.",
"FslSteps": "1. Descarga FSL (Link en la página de Riesgos)\n2. Abre tu directorio de GTAV\n3. Arrastra la WINMM.dll a la carpeta\n (el nombre DEBE ser exactamente 'WINMM.dll')\n4. Desactiva BattlEye en el Launcher de Rockstar\n5. ¡Listo! ✅"
},
"Tooltip": {
"Help": "Mostrar ayuda para la instalación de DLL y FSL",
"Channel": "Selecciona la versión de YimMenu a descargar"
}
},
"Inject": {
"Launcher": { "Select": "Elegir Launcher" },
"Btn": {
"StartGta": "Iniciar GTA 5",
"InjectBase": "Inyectar YimMenu",
"NoDll": "No se encontró DLL",
"InjectFile": "Inyectar {0}"
},
"Notify": {
"AlreadyRunning": "¡GTA 5 ya se está ejecutando!",
"SelectLauncher": "Por favor selecciona un launcher primero.",
"SuccessTitle": "Inyección Exitosa",
"SuccessMsg": "¡DLL inyectada correctamente!"
},
"Help": {
"Title": "Info Inyección",
"StartGtaSteps": "1. Selecciona tu launcher\n2. Pulsa 'Iniciar GTA 5'\n3. Lee el siguiente paso ↗",
"TabInject": "Inyectar DLL",
"InjectSteps": "1. Inicia GTA 5 (↖ Paso Anterior)\n2. Espera a la pantalla de inicio/menú del juego\n3. Haz clic en 'Inyectar YimMenu'\n4. Espera a que YimMenu termine de cargar\n5. ¡Listo! ✅"
},
"Tooltip": {
"Help": "Mostrar ayuda para el proceso de inyección",
"Launcher": "Selecciona el launcher que usas para iniciar GTA V",
"Dll": "Selecciona la DLL para inyectar"
},
"Error": {
"NoDllSelected": "Error: Ninguna DLL seleccionada o encontrada para inyección.",
"ProcessLost": "El proceso de GTA 5 desapareció antes de la inyección.",
"InjectionFailed": "Inyección fallida. Mira los logs para detalles.",
"NoRockstarPath": "No se pudo encontrar la ruta de instalación de Rockstar Games.",
"NoExeFound": "Ejecutable no encontrado en '{0}'",
"LaunchFailed": "Error al iniciar el juego. Mira los logs.",
"AccessDenied": "Faltan permisos para inyectar en GTA V.\nPrueba a reiniciar YMU como administrador."
}
},
"Settings": {
"Header": {
"Appearance": "Apariencia",
"Lua": "Ajustes Lua",
"Other": "Otros"
},
"Label": { "Language": "Idioma" },
"Theme": { "Dark": "Oscuro", "Light": "Claro" },
"Lua": {
"AutoReload": "Recargar auto. scripts modificados",
"ListDisabled": "Desactivado",
"ListEnabled": "Activado",
"Tooltip": {
"AutoReload": "Aplicar cambios automáticamente al guardar archivos de script Lua",
"Enable": "Activar script(s) seleccionado(s)",
"Disable": "Desactivar script(s) seleccionado(s)",
"Refresh": "Refrescar lista de scripts"
}
},
"Other": {
"DebugConsole": "Activar Consola de Depuración Externa",
"Tooltip": {
"Debug": "Muestra la ventana de consola externa de YimMenu para logs detallados y debugging"
}
},
"Btn": {
"OpenScripts": "Abrir Carpeta Scripts",
"DiscoverLua": "Descubrir Luas",
"OpenYimFolder": "Abrir Carpeta YimMenu",
"OpenYmuFolder": "Abrir Carpeta YMU",
"ReportBug": "Reportar un Bug",
"RequestFeature": "Pedir una Función",
"CheckUpdates": "Buscar Updates de YMU",
"UpToDate": "YMU está actualizado",
"Downloading": "Descargando Updater..."
},
"Tooltip": {
"OpenScripts": "Abre la carpeta donde están tus scripts Lua",
"DiscoverLua": "Abre la organización de GitHub YimMenu-Lua para encontrar nuevos scripts",
"OpenYimFolder": "Abre la carpeta YimMenu (%APPDATA%/YimMenu)",
"OpenYmuFolder": "Abre la carpeta YMU (%APPDATA%/YMU)",
"ReportBug": "Abre la página de reporte de bugs en GitHub en tu navegador",
"RequestFeature": "Abre la página de solicitud de funciones en GitHub en tu navegador",
"Language": "Seleccionar idioma de la app (requiere reinicio)",
"UpdateLang": "Buscar actualizaciones de traducción"
},
"Update": {
"Title": "YMU Updater",
"UpToDate": "Tu YMU ya está actualizado.",
"AvailableTitle": "Actualización Disponible",
"AvailableMsg": "¡La actualización {0} está disponible!",
"Prompt": "¿Quieres descargarla e instalarla ahora?",
"CheckTitle": "Comprobación YMU",
"ErrorTitle": "Error de Actualización",
"Ahead": "Estás ejecutando una versión más nueva que el último lanzamiento."
},
"Notify": {
"RestartRequired": "Por favor reinicia YMU para aplicar el nuevo idioma.",
"LangUpdated": "Traducciones descargadas correctamente.\nReinicia YMU para ver la lista de idiomas actualizada en Ajustes.",
"LangTitle": "Idioma Cambiado",
"LangUpToDate": "Las traducciones ya están actualizadas."
}
}
},
"pt_BR": {
"meta": { "name": "Português (BR)" },
"Sidebar": {
"Risks": "Riscos",
"Download": "Download",
"Inject": "Injetar",
"Settings": "Configurações",
"Tooltip": {
"Risks": "Exibir avisos e informações importantes",
"ProjectPage": "Abrir a página do projeto YMU no navegador"
}
},
"Common": {
"Error": "Erro",
"Info": "Informação",
"UnexpectedError": "Ocorreu um erro inesperado",
"Restart": "Reiniciar Agora",
"Yes": "Sim",
"No": "Não",
"RestartAdmin": "Reiniciar como Admin"
},
"Risk": {
"Title": "ATENÇÃO",
"Info": "Sempre use o YMU e YimMenu com o BattlEye DESATIVADO.\nUsar mods online traz risco de banimento.",
"Btn": {
"YimOfficial": "Repo Oficial YimMenu GitHub",
"YimLegacy": "Repo YimMenu (Legacy) GitHub",
"YimV2": "Repo YimMenuV2 (Enhanced) GitHub",
"FSL": "Thread do FSL na UC"
},
"Tooltip": {
"YimOfficial": "Abrir o repositório oficial do YimMenu no GitHub",
"YimLegacy": "Abrir o repositório YimMenu (Legacy) no GitHub",
"YimV2": "Abrir o repositório YimMenuV2 (Enhanced) no GitHub",
"FSL": "Abrir o tópico do FSL na UnknownCheats para download e suporte"
}
},
"Download": {
"Status": {
"Initial": "Selecione um canal para buscar updates.",
"Checking": "Verificando updates...",
"UpToDate": "O YimMenu está atualizado.",
"NewVersion": "Nova versão disponível!",
"Error": "Ocorreu um erro. Tente novamente.",
"Downloading": "Baixando",
"Success": "Download concluído e verificado!",
"Failed": "Falha no download. Veja os logs."
},
"Btn": {
"Check": "Verificar Updates",
"Checking": "Verificando...",
"UpToDate": "Atualizado",
"Update": "Atualizar",
"Download": "Baixar",
"Retry": "Tentar de novo",
"Downloading": "Baixando..."
},
"Notify": {
"NewVersion": "Uma nova versão está pronta para download.",
"CheckFailed": "Falha ao verificar atualizações",
"SuccessTitle": "Download Concluído",
"SuccessMsg": "DLL baixada e verificada com sucesso!",
"FailedTitle": "Falha no Download",
"FailedMsg": "Falha na verificação. Por favor, verifique os logs.",
"UpdateTitle": "Update do {0}"
},
"Help": {
"Title": "Info sobre DLL e FSL",
"DllSteps": "1. Clique em (Baixar)\n2. Aguarde o download terminar\n3. O arquivo está na pasta 'YMU/dll'\n\nSe o arquivo for deletado, adicione uma exceção\nno seu antivírus ou desative-o temporariamente.",
"FslSteps": "1. Baixe o FSL (Link na página de Riscos)\n2. Abra o diretório do seu GTAV\n3. Solte o arquivo WINMM.dll na pasta\n (o nome DEVE ser exatamente 'WINMM.dll')\n4. Desative o BattlEye no Launcher da Rockstar\n5. Pronto! ✅"
},
"Tooltip": {
"Help": "Mostrar ajuda para instalação da DLL e FSL",
"Channel": "Selecione a versão do YimMenu para baixar"
}
},
"Inject": {
"Launcher": { "Select": "Selecionar Launcher" },
"Btn": {
"StartGta": "Iniciar GTA 5",
"InjectBase": "Injetar YimMenu",
"NoDll": "Nenhuma DLL encontrada",
"InjectFile": "Injetar {0}"
},
"Notify": {
"AlreadyRunning": "GTA 5 já está rodando!",
"SelectLauncher": "Por favor, selecione um launcher primeiro.",
"SuccessTitle": "Injection com Sucesso",
"SuccessMsg": "DLL injetada com sucesso!"
},
"Help": {
"Title": "Info de Injection",
"StartGtaSteps": "1. Selecione seu launcher\n2. Clique em 'Iniciar GTA 5'\n3. Leia o próximo passo ↗",
"TabInject": "Injetar DLL",
"InjectSteps": "1. Inicie o GTA 5 (↖ Passo Anterior)\n2. Aguarde a tela inicial/menu do jogo\n3. Clique em 'Injetar YimMenu'\n4. Aguarde o YimMenu carregar\n5. Pronto! ✅"
},
"Tooltip": {
"Help": "Mostrar ajuda sobre o processo de injection",
"Launcher": "Selecione o launcher que você usa para abrir o GTA V",
"Dll": "Selecione a DLL para injetar"
},
"Error": {
"NoDllSelected": "Erro: Nenhuma DLL selecionada ou encontrada para injection.",
"ProcessLost": "O processo do GTA 5 desapareceu antes da injection.",
"InjectionFailed": "Falha na injection. Veja os logs para detalhes.",
"NoRockstarPath": "Não foi possível encontrar o caminho de instalação da Rockstar Games.",
"NoExeFound": "Executável não encontrado em '{0}'",
"LaunchFailed": "Erro ao iniciar o jogo. Veja os logs.",
"AccessDenied": "Permissões insuficientes para injetar no GTA V.\nTente reiniciar o YMU como administrador."
}
},
"Settings": {
"Header": {
"Appearance": "Aparência",
"Lua": "Configurações Lua",
"Other": "Outros"
},
"Label": { "Language": "Idioma" },
"Theme": { "Dark": "Escuro", "Light": "Claro" },
"Lua": {
"AutoReload": "Auto-reload em scripts alterados",
"ListDisabled": "Desativado",
"ListEnabled": "Ativado",
"Tooltip": {