-
-
Notifications
You must be signed in to change notification settings - Fork 610
Expand file tree
/
Copy pathtranslation.json
More file actions
1042 lines (1042 loc) · 50.5 KB
/
translation.json
File metadata and controls
1042 lines (1042 loc) · 50.5 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
{
"accessibility": {
"actions_font_family_default": "Actions Font Family (Default: {{fontFamily}})",
"all_tiles_in_color": "Show all game tiles in color",
"content_font_family_default": "Content Font Family (Default: {{fontFamily}})",
"disable_animations": "Disable UI animations",
"disable_dialog_backdrop_close": "Disable closing dialogs by clicking outside",
"disable_smooth_scrolling": "Disable smooth scrolling (requires restart)",
"fonts": "Fonts",
"title": "Accessibility",
"titles_always_visible": "Always show titles in library",
"zoom": "Zoom"
},
"add_game": "Add Game",
"adtraction-locked": {
"description": "It seems the track.adtraction.com domain was unable to load or is blocked. With adtraction, any purchase you make in the GOG store supports Heroic financially. Consider removing the block if you wish to contribute.",
"dont-show-again": "Don't show this warning again",
"title": "Adtraction is blocked"
},
"Amazon Games": "Amazon Games",
"amazon-luna": "Amazon Luna",
"analyticsModal": {
"disable": "Disable",
"enable": "Enable",
"info": {
"pt1": "In order to improve the app, Heroic collects 100% anonymous data.",
"pt2": "Heroic uses the open-source Plausible Analytics platform to gather basic data: App Version, OS, Stores Connected and Country.",
"pt3": "It will never collect any personal information, including your username, IP address or email.",
"pt4": "This data is used to give us insights on what to focus on next due to our limited resources and user feedback.",
"pt5": "Plausible Analytics is fully compliant with GDPR, CCPA and PECR.",
"pt6": "For transparency, you can view the data we collect on the Heroic logs.",
"pt7": "You can change this setting at any time in the App Settings."
},
"title": "Send Anonymous Analytics"
},
"anticheat": {
"anticheats": "Anticheats",
"multiplayer_may_not_work": "Multiplayer features may not work due to denied or broken anticheat support.",
"reference": "Reference",
"source": "Source",
"status": "Status",
"title": "This game includes anticheat software"
},
"box": {
"cache-cleared": {
"message": "Heroic cache cleared.",
"title": "Cache cleared"
},
"changelog": "Changelog",
"choose": "Choose",
"choose-egs-prefix": "Choose Prefix where EGS is installed",
"choose-gogdl-binary": "Select GOGDL Binary (needs restart)",
"choose-legendary-binary": "Select Legendary binary",
"choose-nile-binary": "Select Nile binary",
"customWine": "Select the Wine or Proton binary",
"default-install-path": "Choose Default Install Path",
"default-steam-path": "Steam path.",
"dontShowAgain": "Don't show again",
"downloadNow": "Download now",
"error": {
"add": {
"steam": {
"body": "Adding {{game}} to Steam failed with:{{newLine}} {{error}}",
"title": "Adding Error"
}
},
"credentials": {
"message": "Your credentials have expired, please log out and log in again."
},
"cx-bottle-not-found": {
"message": "The CrossOver bottle \"{{bottle_name}}\" does not exist, can't launch!",
"title": "CrossOver bottle not found"
},
"dxmt": {
"message": "Error downloading DXMT! Check your connection!",
"title": "DXMT Download Error"
},
"dxvk": {
"message": "Error installing DXVK/VKD3D! Please check your connection!",
"title": "DXVK/VKD3D error"
},
"executableNotFound": "Executable not found",
"executableNotFoundMessage": "Heroic could not find the executable for this game. Please set it manually in the game settings.",
"folder-not-found": {
"title": "Game folder appears to be deleted, do you want to remove the game from the installed list?"
},
"generic": {
"message": "generic error message",
"title": "Select EXE to Run"
},
"launchAborted": "Launch aborted",
"legendary": {
"generic": "An error has occurred! Try to Logout and Login on your Epic account. {{newline}} {{error}}"
},
"moving": "Error Moving Game {{error}}",
"title": "Error",
"uncaught-exception": {
"message": "A uncaught exception occured:{{newLine}}{{error}}{{newLine}}{{newLine}} Report the exception on our Github repository.",
"title": "Uncaught Exception occured!"
},
"update": {
"message": "Something went wrong with the update, please check the logs or try again later!",
"title": "Update Error"
},
"winetricks": {
"message": "Winetricks returned the following error during execution:{{newLine}}{{error}}",
"title": "Winetricks error"
}
},
"info": {
"update": {
"detail": "Do you want to download the update in the background?",
"detailNoAutoupdate": "Automatic updates are not supported for your packaging format. Please use your package manager to update.",
"message": "There is a new Version available!",
"message-finished": "Do you want to restart Heroic now?",
"title": "Heroic Games Launcher",
"title-finished": "Update Finished"
}
},
"no": "NO",
"ok": "OK",
"postpone": "Postpone",
"protocol": {
"install": {
"not_installed": "Currently not installed. Install it?"
}
},
"quit": {
"message": "There are pending operations, are you sure?",
"title": "Exit"
},
"reset-heroic": {
"question": {
"message": "Are you sure you want to reset Heroic? This will remove all Settings and Caching but won't remove your Installed games or your Epic credentials. Portable versions (AppImage, WinPortable, ...) of Heroic needs to be restarted manually afterwards.",
"title": "Reset Heroic"
}
},
"runexe": {
"title": "Select EXE to Run"
},
"select": {
"button": "Select",
"exe": "Select EXE",
"script": "Select script ..."
},
"shortcuts": {
"message": "Shortcuts were created on Desktop and Start Menu",
"message-mac": "Shortcuts were created on the Applications folder",
"message-remove": "Shortcuts were removed from Desktop and Start Menu",
"message-remove-mac": "Shortcuts were removed from the Applications folder",
"title": "Shortcuts"
},
"sync": {
"error": "Invalid Path",
"title": "Choose the saves directory"
},
"update": "Update",
"vcruntime": {
"install": {
"message": "The download links for the Visual C++ Runtimes have been opened. Please install both the x86 and x64 versions."
},
"notfound": {
"message": "The Microsoft Visual C++ Runtimes are not installed, which are required by some games",
"title": "VCRuntime not installed"
}
},
"warning": {
"epic": {
"import": "Epic Servers are having major outage right now, the game cannot be imported!",
"install": "Epic Servers are having major outage right now, the game cannot be installed!",
"update": "Epic Servers are having major outage right now, the game cannot be updated!"
},
"rosetta": {
"message": "Heroic requires Rosetta to run correctly on macOS with Apple Silicon chips. Please install it from the macOS terminal using the following command: \"softwareupdate --install-rosetta\" and restart Heroic. ",
"title": "Rosetta not found"
},
"sideload": {
"confirmExit": {
"message": "Any unsaved progress might be lost",
"title": "Are you sure you want to quit?"
}
},
"snap": {
"checkbox": "Do not show this message again",
"message": "Some features are not available in the Snap version of the app for now and we are trying to fix it.{{newLine}}Current limitations are: {{newLine}}Heroic will not be able to find Proton from Steam or Wine from Lutris.{{newLine}}{{newLine}}Gamescope, GameMode and MangoHud will also not work since Heroic cannot have access to them.{{newLine}}{{newLine}}To have access to this feature please install Heroic as a Flatpak, DEB or from the AppImage.",
"title": "Heroic is running as a Snap"
},
"title": "Warning",
"wine-change": {
"message": "We could not find the selected wine version to launch this title ({{selectedWine}}). {{newline}} We found another one, do you want to continue launching using {{foundWine}} ?",
"title": "Wine not found!"
}
},
"wineprefix": "Choose Wine Prefix Folder",
"yes": "YES"
},
"button": {
"cancel": "Cancel",
"continue": "Continue",
"go_to_library": "Go to Library",
"login": "Log in"
},
"categories-manager": {
"add": "Add",
"add-placeholder": "Add new category",
"cancel-remove": "Cancel removal of \"{{name}}\"",
"cancel-rename": "Cancel rename of \"{{name}}\"",
"confirm-remove": "Confirm removal of \"{{name}}\"",
"confirm-rename": "Confirm rename of \"{{oldName}}\" as \"{{newName}}\"",
"no-categories": "No categories yet.",
"remove": "Remove \"{{name}}\"",
"rename": "Rename \"{{name}}\"",
"title": "Manage Categories"
},
"category-settings": {
"add-new-category": "Add New Category",
"cancel": "Cancel",
"delete-question": "Proceeding will permanently remove this category and unassign it from all games. Continue?",
"new-category": "New Category",
"remove-category": "Remove Category",
"warning": "Warning"
},
"controller": {
"hints": {
"back": "Back",
"backspace": "Backspace",
"close_dialog": "Close dialog",
"close_keyboard": "Close keyboard",
"close_options": "Close Options",
"game_details": "Game details",
"game_settings": "Game settings",
"install_game": "Install game",
"move_cursor": "Move cursor",
"open_virtual_keyboard": "Open virtual keyboard",
"options": "Options",
"play_game": "Play game",
"scroll": "Scroll",
"select": "Select",
"space": "Space",
"update_game": "Update game"
}
},
"dlc": {
"actions": "Actions",
"installDlcs": "Install all DLCs",
"noDlcFound": "No DLCs found",
"size": "Size",
"title": "Title"
},
"docs": "Documentation",
"download-manager": {
"ETA": "Estimated time",
"install-type": {
"install": "Install",
"update": "Update"
},
"label": {
"disk": "Disk",
"speed": "Download"
},
"link": "Downloads",
"queue": {
"end-time": "Finished at",
"queue-time": "Added at",
"start-time": "Started at",
"type": "Type"
},
"title": "Downloads"
},
"emptyLibrary": {
"noGames": "Your library is empty.<br /><br />Click <4>here</4> to log in with your Epic, GOG.com, or Amazon accounts. Then, your games will show up here in the Library.<br /><br />To use games or apps from other sources, click <br /> to add them manually.",
"noResults": "The current filters produced no results."
},
"epic": {
"offline-notification-body": "Online services may not work fully as Epic Games servers are offline!",
"offline-notification-title": "offline"
},
"Epic Games": "Epic Games",
"error": "Error",
"externalLink": {
"dontAskAgain": "Don't ask again",
"warning": "You are about to open an external link."
},
"favourites": "Favourites",
"game": {
"modify": "Modify Installation",
"status": "Status",
"store": "Store",
"title": "Game Title"
},
"generic": {
"error": {
"component": "No games found - Try to logout and login again or one of the options below"
},
"library": {
"refresh": "Refresh Library"
}
},
"globalSettings": "Global Settings",
"GOG": "GOG",
"gog-store": "GOG Store",
"header": {
"categories": "Categories",
"filters": "Filters",
"no_categories": "No custom categories. Add categories using each game menu.",
"only": "only",
"reset": "Reset",
"select_all": "Select All",
"show_available_games": "Show non-Available games",
"show_favourites_only": "Show Favourites only",
"show_hidden": "Show Hidden",
"show_installed_only": "Show Installed only",
"show_support_offline_only": "Show offline-supported only",
"show_third_party_managed_only": "Show third-party managed only",
"show_updates_only": "Show games with updates only",
"uncategorized": "Uncategorized"
},
"help": {
"advertiseAvxForRosetta": "Enables AVX instruction set support when running Windows games through Rosetta on Apple Silicon Macs. This may be required for some games like Death Stranding that need AVX support.",
"amdfsr": "AMD's FSR helps boost framerate by upscaling lower resolutions in Fullscreen Mode. Image quality increases from 5 to 1 at the cost of a slight performance hit. Enabling may improve performance.",
"analytics": "Enables Heroic to collect 100% anonymous usage data to help improve the application. Needs restart to take effect.",
"button": {
"close": "Close Help",
"open": "Open Help"
},
"content": {
"accessibility": "Shows accessibility settings.",
"customThemesPath": "Check our wiki.",
"defaultInstallPath": "This is the default path preselected when installing games.",
"downloadManager": "Shows current and past downloads.",
"library": "Shows all owned games.",
"login": "Log in into the different stores.",
"settingsDefault": "Shows all settings of Heroic and defaults for games.",
"settingsGame": "Show all settings for a game.",
"wineManager": "Install different versions of Wine, Proton, Crossover, etc."
},
"custom_themes_path": "Do not use CSS files from untrusted sources. When in doubt, ask for a review in our Discord channel.",
"custom_themes_wiki": "Check the Wiki for more details on adding custom themes. Click here.",
"disable_logs": "Toggle this checkbox ON to disable most of the writes to log files (critical information is always logged). Make sure to turn OFF this setting before reporting any issue.",
"disablePlaytimeSync": "Disables playtime synchronization with given store's servers (currently only GOG is supported)",
"download_proton_steam": "When enabled, GE-Proton will be downloaded directly to the Steam compatibility tools directory instead of the default Heroic path. It will use the Steam path set in the 'Default Steam path' setting above.",
"dxfpslimit": "Sets a frame rate cap for DirectX Games (9-12)",
"dxvk": "DXVK is a Vulkan-based translational layer for DirectX 9, 10 and 11 games. Enabling may improve compatibility. Might cause issues especially for older DirectX games.",
"dxvknvapi": "DXVK-NVAPI is an implementation of NVAPI built on top of DXVK and the linux native NVAPI, it allows for the usage of DLSS on Nvidia GPUs.",
"esync": "Esync aims to reduce wineserver overhead in CPU-intensive games. Enabling may improve performance.",
"fsync": "Fsync aims to reduce wineserver overhead in CPU-intensive games. Enabling may improve performance on supported Linux kernels.",
"game_language": {
"fallback": "Leave blank to use Heroic's language.",
"in_game_config": "Not all games support this configuration, some have in-game language setting.",
"valid_codes": "Valid language codes are game-dependant."
},
"gamemode": "Feral GameMode applies automatic and temporary tweaks to the system when running games. Enabling may improve performance.",
"gamescope": {
"additionalOptions": "Additional commandline flags to pass into gamescope.",
"forceGrabCursor": "Always use relative mouse mode instead of flipping dependent on cursor visibility. (Useful for when applications keep losing focus)",
"fpsLimiter": "The amount of frames gamescope should limit to. E.g. 60",
"fpsLimiterNoFocus": "The frame rate limit gamescope should limit per second if the game is not focused.",
"gameHeight": "The height resolution used by the game. A 16:9 aspect ratio is assumed by gamescope.",
"gameWidth": "The width resolution used by the game. A 16:9 aspect ratio is assumed by gamescope.",
"upscaleHeight": "The height resolution used by gamescope. A 16:9 aspect ratio is assumed.",
"upscaleMethod": "The upscaling method gamescope should use.",
"upscaleWidth": "The width resolution used by gamescope. A 16:9 aspect ratio is assumed."
},
"general": "Sync with EGL if you have a working installation of the Epic Games Launcher elsewhere and want to import your games to avoid downloading them again.",
"mangohud": "MangoHUD is an overlay that displays and monitors FPS, temperatures, CPU/GPU load and other system resources.",
"msync": "Msync aims to reduce wineserver overhead in CPU-intensive games. Enabling may improve performance on supported Linux kernels.",
"other": {
"part4": "Use the ",
"part5": "Game Arguments",
"part6": " to be called after the launch command, for instance: ",
"part7": " to skip the launcher in some games, etc."
},
"preferSystemLibs": "Custom Wine versions (Wine-GE, Wine-Lutris) are shipped with their library dependencies. By enabling this option, these shipped libraries will be ignored and Wine will load system libraries instead. Warning! Issues may occur if dependencies are not met.",
"steam_path": {
"info": "This path lets Heroic determine what version of Proton Steam uses, for adding non-Steam games to Steam."
},
"steamruntime": "Custom libraries provided by Steam to help run Linux and Windows (Proton) games. Enabling might improve compatibility.",
"sync": {
"part1": "Heroic tries to guess the right save folder and this will work on the majority of cases. In case the folder is wrong, use the override box to change it.",
"part2": "In case you change the prefix folder for Wine or Proton, you will need to check the path again since Proton uses a different prefix (/pfx) and username (steamuser). So you can simple erase the current path get out of the sync settings page and get back again for Heroic to guess the folder one more time with the right prefix.",
"part3": "Manual Sync: Choose Download to download the games saves stored on the Cloud. Upload to upload the local ones to the cloud. Force Download and Force Upload will ignore the version that is locally or on the cloud.",
"part4": "Sync Saves Automatically will sync the saves every time you Start a Game and after finishing playing."
},
"title": {
"accessibility": "Accessibility",
"downloadManager": "Download Manager",
"library": "Library",
"login": "Login",
"settings": "Settings",
"wineManager": "Wine Manager"
},
"vkd3d": "VKD3D is a Vulkan-based translational layer for DirectX 12 games. Enabling may improve compatibility significantly. Has no effect on older DirectX games, it requires DXVK.",
"wine": {
"part1": "Heroic searches for versions of Wine, Proton, and CrossOver in the following folders:",
"part2": "For other places, use a symbolic link to one of these folders"
},
"wine-hdr": "HDR enhances colors by providing brighter highlights and deeper contrasts. For HDR to work, both the display and the game must support it.",
"wine-wayland": "The Wine-Wayland experimental driver allows games to run natively under the Wayland display protocol. Enabling might break some games.",
"WoW64": "The Wine WoW64 mode allows 32-bit Windows games to be run on 64-bit Wine. Enabling may improve performance, but could also break older 32-bit games."
},
"info": {
"heroic": {
"beta": "Beta",
"click-to-see-changelog": "Click to see changelog",
"newReleases": "Update Available!",
"stable": "Stable",
"version": "Heroic Version"
},
"save-sync": {
"searching": "Trying to detect the correct save folder (click to cancel)"
},
"settings": "Settings are saved automatically",
"version": "Wine Version"
},
"infobox": {
"help": "Help",
"requirements": "System Requirements",
"warning": "Warning",
"wine-path": "Wine Path",
"wine-path-invalid": "Wine Path is invalid, please select another one.",
"wine-path-none-found": "No Wine version was found, download one from the Wine Manager",
"wine-prefix": {
"title": "Wine Prefix"
},
"wine-repfix": {
"message": "Wine uses what is called a WINEPREFIX to encapsulate Windows applications. This prefix contains the Wine configuration files and a reproduction of the file hierarchy of C: (the main disk on a Windows OS). In this reproduction of the C: drive, your game save files and dependencies installed via winetricks are stored."
}
},
"label": {
"loading": "Loading",
"releaseDate": "Release Date"
},
"launch": {
"options": "Launch Options..."
},
"library": {
"hideAlphabetFilter": "Hide Alphabet Filter",
"showAlphabetFilter": "Show Alphabet Filter",
"sortAscending": "Sort Ascending",
"sortByStatus": "Sort by Status",
"sortDescending": "Sort Descending",
"sortRandom": "Sort Randomly",
"toggleLayout": {
"grid": "Toggle to a grid layout",
"list": "Toggle to a list layout"
}
},
"Library": "Library",
"loading": {
"default": "Loading",
"website": "Loading Website"
},
"login": {
"alternative_method": "Alternative Login Method",
"amazon": "Amazon Login",
"epic": "Epic Games Login",
"gog": "GOG Login",
"message": "Login with your platform. You can login to more than one platform at the same time.",
"old-mac": "Your macOS version is {{version}}. macOS 12 or newer is required to log in.",
"zoom": "Zoom Login"
},
"message": {
"sync": "Sync Complete",
"unsync": "Unsync Complete"
},
"notify": {
"error": {
"move": "Error Moving the Game",
"reparing": "Error Repairing"
},
"finished": {
"add": {
"steam": {
"corrupt": "{{game}} could not be added to all found Steam users. See logs for more info. A restart of Steam is required for changes to take effect.",
"success": "{{game}} was successfully added to Steam. A restart of Steam is required for changes to take effect.",
"title": "Added to Steam"
}
},
"remove": {
"steam": {
"corrupt": "{{game}} could not be removed from all found Steam users. See logs for more info. A restart of Steam is required for changes to take effect.",
"success": "{{game}} was successfully removed from Steam. A restart of Steam is required for changes to take effect.",
"title": "Removed from Steam"
}
},
"reparing": "Finished Repairing"
},
"import": {
"failed": "Importing Failed"
},
"install": {
"canceled": "Installation Canceled",
"error": "Installation Failed",
"failed": "Installation Failed",
"finished": "Installation Finished",
"imported": "Game Imported",
"paused": "Installation Paused",
"startInstall": "Installation Started"
},
"moved": "Finished Moving",
"moving": "Moving Game",
"new-heroic-version": "A new Heroic version was released!",
"refresh": {
"error": "Couldn't fetch releases from upstream, maybe because of Github API restrictions! Try again later."
},
"uninstalled": "Uninstalled",
"update": {
"canceled": "Update Canceled",
"failed": "Update Failed",
"finished": "Update Finished",
"paused": "Update Paused",
"started": "Update Started"
}
},
"offline-message": {
"hint": "We are checking the connectivity against:{{newline}}github.com,{{newline}}gog.com,{{newline}}store.epicgames.com and{{newline}}cloudflare-dns.com",
"ignore": "Ignore",
"offline": "Offline",
"offline-retry-in": "Offline. Retrying in {{seconds}} seconds.",
"retrying": "Retrying"
},
"options": {
"advanced": {
"key": "Variable Name",
"placeHolderKey": "NAME",
"placeHolderValue": "E.g.: Path/To/ExtraFiles",
"title": "Environment Variables",
"value": "Value"
},
"env_variables": {
"error": {
"empty_key": "Variable names can't be empty",
"equal_sign_in_key": "Variable names can't contain the \"=\" sign",
"space_in_key": "Variable names can't contain spaces"
},
"example": "Do NOT include the \"=\" sign, e.g: for a setting like \"MY_FLAG=123\", set MY_FLAG in NAME and 123 in VALUE.",
"info": "Set environment variables to append to the command."
},
"gameargs": {
"error": {
"command": "The %command% syntax from Steam is not valid as game arguments.",
"env": "Environment variables must be configured in the table below."
},
"placeholder": "Put here the Launcher Arguments",
"title": "Game Arguments (To run after the command):"
},
"gamescope": {
"additionalOptions": "Additional Options",
"borderless": "Borderless",
"fpsLimiter": "FPS Limiter",
"fpsLimiterNoFocus": "FPS Limiter (No Focus)",
"fullscreen": "Fullscreen",
"gameHeight": "Game Height",
"gameWidth": "Game Width",
"interger": "Integer Upscale",
"nis": "NVIDIA Image Scale (NIS)",
"stretch": "Stretch Image",
"upscaleHeight": "Upscale Height",
"upscaleWidth": "Upscale Width",
"windowed": "Windowed"
},
"quote-args-with-spaces": "Warning: Make sure to quote args with spaces! E.g.: \"path/with spaces/\"",
"wrapper": {
"args": "Arguments",
"arguments_example": "Arguments example: --arg; --extra-file=\"file-path/ with/spaces\"",
"exe": "Wrapper",
"placeHolderKey": "New Wrapper",
"placeHolderValue": "Wrapper Arguments",
"title": "Wrapper command:"
}
},
"other": {
"gogdl-version": "GOGDL Version: ",
"legendary-version": "Legendary Version: ",
"nile-version": "Nile Version: ",
"weblate": "Help translate Heroic."
},
"Other": "Other",
"placeholder": {
"alt-gogdl-bin": "Using built-in GOGDL binary...",
"alt-legendary-bin": "Using built-in Legendary binary...",
"alt-nile-bin": "Using built-in Nile binary...",
"custom_themes_path": "Select the path to look for custom CSS files",
"dxvkfpsvalue": "Positive integer value (e.g. 30, 60, ...)",
"egs-prefix": "Prefix where EGS is installed",
"prefered_language": "2-char or 4-char code (i.e.: \"fr\" or \"pt-BR\")"
},
"platforms": {
"browser": "Browser",
"linux": "Linux",
"mac": "Mac",
"win": "Windows"
},
"please-wait": "Please wait...",
"progress": "Progress",
"queue": {
"label": {
"clear": "Clear List",
"downloading": "Downloading",
"empty": "Nothing to download",
"finished": "Completed",
"queued": "Queued"
}
},
"Recent": "Played Recently",
"search": "Search for Games",
"setting": {
"adddesktopshortcuts": "Add desktop shortcuts automatically",
"addgamestoapplications": "Add games to Applications automatically",
"addgamestostartmenu": "Add games to start menu automatically",
"addgamestosteam": "Add games to Steam automatically",
"advertiseAvxForRosetta": "Advertise AVX for Rosetta",
"after-launch-script-path": "Select a script to run after the game exits",
"allow_installation_broken_anticheat": {
"confirmation": {
"message": "Games with broken or denied anticheat may run, but multiplayer features won't work. Do not ask for support if you install them knowing this.",
"title": "Are you sure?",
"understand": "I understand"
},
"label": "Allow installation of games with broken or denied anticheat"
},
"alt-gogdl-bin": "Choose an Alternative GOGDL Binary to use",
"alt-legendary-bin": "Choose an Alternative Legendary Binary",
"alt-nile-bin": "Choose an Alternative Nile Binary",
"analyticsOptIn": "Send anonymous data to help Heroic development",
"autodxvk": "Auto Install/Update DXVK on Prefix",
"autodxvknvapi": "Auto Install/Update DXVK-NVAPI on Prefix",
"autosync": "Autosync Saves",
"autoUpdateGames": "Automatically update games",
"autovkd3d": "Auto Install/Update VKD3D on Prefix",
"before-launch-script-path": "Select a script to run before the game is launched",
"change-target-exe": "Select an alternative EXE to run",
"checkForUpdatesOnStartup": "Check for Heroic Updates on Startup",
"crossover-version": "Crossover/Wine Version",
"custom_css": {
"warning": "Warning: this applies to the whole frontend. That means the wrong style can render Heroic unusable. If needed, the setting can be changed manually in `~/.config/heroic/config.json`. Do NOT copy styles from sources you don't trust."
},
"custom_themes_path": "Custom Themes Path",
"customWineProton": "Custom Wine/Proton Paths",
"darktray": "Use Dark Tray Icon",
"default-install-path": "Default Installation Path",
"default-steam-path": "Default Steam path",
"defaultWinePrefix": "Set Folder for new Wine Prefixes",
"disable_controller": "Disable Heroic navigation using controller",
"disable_gog_presence": "Disable GOG Presence updates",
"disable_logs": "Disable Logs",
"disablePlaytimeSync": "Disable playtime synchronization",
"disableUMU": "Disable umu",
"discordRPC": "Enable Discord Rich Presence",
"download-no-https": "Download games without HTTPS (useful for CDNs e.g. LanCache)",
"download-proton-steam": "Download GE-Proton to Steam directory",
"dxfpslimit": "Limit DirectX Games FPS",
"egs-sync": "Sync with Installed Epic Games",
"enable-quick-sync-menu": "Enable Quick Save-Sync Menu on game page",
"enableFSRHack": "Enable FSR Hack (Wine version needs to support it)",
"eosOverlay": {
"cancelInstall": "Cancel",
"checkForUpdates": "Check for updates",
"checkingForUpdates": "Checking for updates...",
"currentVersion": "Current Version: {{version}}",
"disable": "Disable",
"enable": "Enable",
"install": "Install",
"installed": "The EOS Overlay is installed",
"installing": "The EOS Overlay is being installed...",
"latestVersion": "Latest Version: {{version}}",
"notInstalled": "The EOS Overlay is not installed",
"notInstalledMsg": "The EOS Overlay is not installed. Do you want to install it now?",
"notInstalledTitle": "Overlay not installed",
"remove": "Uninstall",
"removeConfirm": "Are you sure you want to uninstall the EOS Overlay?",
"removeConfirmTitle": "Confirm overlay removal",
"updateNow": "Update",
"updating": "Updating..."
},
"esync": "Enable Esync",
"exit-to-tray": "Exit to System Tray",
"experimental_features": {
"cometSupport": "Comet support",
"enableHelp": "Help component",
"enableNewDesign": "New design",
"zoomPlatform": "Zoom Platform support (only Linux)"
},
"frameless-window": {
"confirmation": {
"message": "This feature is still experimental. Please report any issues you encounter with it on GitHub.",
"title": "Experimental feature ahead"
},
"description": "Use frameless window (requires restart)"
},
"FsrSharpnessStrenght": "FSR Sharpness Strength",
"fsync": "Enable Fsync",
"gamemode": "Use GameMode (Feral Game Mode needs to be installed)",
"gamescope": {
"enableForceGrabCursor": "Enable Force Grab Cursor",
"enableLimiter": "Enable FPS Limiter",
"enableUpscaling": "Enables Upscaling",
"missingMsg": "We could not find gamescope on the PATH. Install it or add it to the PATH.",
"warningFlatpak": "We could not find a compatible version of Gamescope. Install Gamescope's flatpak package with runtime {{runtimeVersion}} and restart Heroic."
},
"hdr": "Enable HDR",
"hideChangelogsOnStartup": "Don't show changelogs on Startup",
"ignoreGameUpdates": "Ignore game updates",
"language": "Choose App Language",
"library_top_option": {
"disabled": "Disabled",
"favourites": "Favourite Games",
"recently_played": "Recently Played Games",
"recently_played_installed": "Recently Played Games (Only Installed)"
},
"library_top_section": "Library Top Section",
"log": {
"descriptiveNames": {
"game-log": "Game log of {{gameTitle}}",
"gog": "GOG log",
"heroic": "General Heroic log",
"legendary": "Epic Games / Legendary log",
"nile": "Amazon / Nile log",
"zoom": "Zoom log"
},
"instructions": "Join our Discord and look for the \"#-support\" section. Read the pinned \"Read Me First | Frequently Asked Questions\" thread and follow the instructions to share these logs and any relevant information about your problem.",
"instructions_title": "How to report a problem?",
"join-heroic-discord": "Join our Discord",
"no-file": "No log file found",
"show-in-folder": "Show log file in folder",
"show-uploads": "Show uploaded log files",
"upload": {
"actions": "Actions",
"button": "Upload log file",
"confirm": {
"content": "Do you really want to upload \"{{name}}\"?",
"title": "Upload log file?"
},
"delete": "Request log file deletion",
"done": {
"content": "Uploaded to {{url}} (URL copied to your clipboard)",
"title": "Upload complete"
},
"error": {
"content": "Failed to upload log file. Check Heroic's general log for details",
"manual_upload": "Click the \"SHOW LOG FILE IN FOLDER\" button and upload the \"launch.log\" file manually to Discord or any online file sharing service.",
"title": "Upload failed"
},
"header": "Uploaded log files",
"hours-ago": "Uploaded {{hoursAgo, relativetime(hours)}}",
"minutes-ago": "Uploaded {{minutesAgo, relativetime(minutes)}}",
"no-files": "No log files were uploaded",
"open": "Open log file upload",
"title": "Log title",
"upload-date": "Upload date",
"uploading": {
"content": "Uploading log file...",
"title": "Uploading"
}
}
},
"mangohud": "Enable Mangohud (Mangohud needs to be installed)",
"manualsync": {
"download": "Download",
"forcedownload": "Force Download",
"forceupload": "Force Upload",
"sync": "Sync",
"syncing": "Syncing",
"title": "Manual Sync Saves",
"upload": "Upload"
},
"maxRecentGames": "Played Recently to Show",
"maxworkers": "Maximum Number of Workers when downloading",
"minimize-on-launch": "Minimize Heroic After Game Launch",
"msync": "Enable Msync",
"no-tray-icon": "Hide System Tray Icon (requires restart)",
"offlinemode": "Run Game Offline",
"prefered_language": "Prefered Language (Language Code)",
"preferSystemLibs": "Prefer system libraries",
"runexe": {
"title": "Run EXE on Prefix"
},
"savefolder": {
"not-found": "Save folder not found, please select it manually (click to retry)",
"placeholder": "Select the exact save games folder",
"warning": "Please check twice if the path is correct (click to retry)"
},
"scripts": "Scripts:",
"select_theme": "Select Theme",
"show_valve_proton": {
"confirmation": {
"dont_show": "Don't show them",
"message": "We recommend custom Proton forks (GE-Proton, Proton-CachyOS, etc.) to be used with Heroic because Valve's Proton builds lack winetricks and protofixes. You can still use then if you want.",
"show": "I understand, show them",
"title": "Are you sure?"
},
"info_label": "Valve Proton versions ignored",
"label": "Allow using Valve Proton builds to run games",
"wine_selector_warning": "Valve versions of Proton are ignored by default, enable them in the Advanced global settings"
},
"showfps": "Show FPS (DX9, 10 and 11)",
"showMetalOverlay": "Show Stats Overlay",
"start-in-tray": "Start Minimized",
"steamruntime": "Use Steam Runtime",
"verboseLogs": {
"description": "Enable verbose logs"
},
"winecrossoverbottle": "CrossOver Bottle",
"wineprefix": "WinePrefix folder",
"wineversion": "Wine Version",
"wineWayland": "Enable Wine-Wayland (Experimental) (Wine version needs to support it)",
"WoW64": "Enable WoW64 (Experimental)"
},
"settings": {
"advanced": {
"clearCache": {
"help1": "This action will clear the following caches:",
"help10": "Heroic configuration",
"help2": "Third-party game info (scores, steam compatibility, howlongtobeat, pcgamingwiki, applegamingwiki)",
"help3": "Legendary library info (list of games, install dialog info, game info)",
"help4": "GOG library info (list of games, install dialog info, api info -i.e: requirements-)",
"help5": "Amazon library info (list of games, install dialog info)",
"help6": "This will NOT delete:",
"help7": "Store login",
"help8": "Installed games",
"help9": "Games settings"
},
"details": "Details",
"resetHeroic": {
"help": "This will remove all Settings and Caching but won't remove your Installed games or your Epic credentials. Portable versions (AppImage, WinPortable, ...) of Heroic needs to be restarted manually afterwards."
},
"title": {
"clearCache": "Clear Cache",
"resetHeroic": "Reset Heroic"
}
},
"battlEyeRuntime": {
"installing": "Installing BattlEye Runtime...",
"name": "BattlEye AntiCheat Runtime"
},
"clear-cache": "Clear Heroic Cache",
"copiedToClipboard": "Copied to Clipboard!",
"copyToClipboard": "Copy All Settings to Clipboard",
"custom_css": {
"title": "Custom CSS Style"
},
"default_hint": "Changes in this section only apply as default values when installing games. If you want to change the settings of an already installed game, use the Settings button in the game page.",
"eacRuntime": {
"gameModeRequired": {
"message": "GameMode is required for the EAC runtime to work on Flatpak. Do you want to enable it now?",
"title": "GameMode required"
},
"installing": "Installing EAC Runtime...",
"name": "EasyAntiCheat Runtime"
},
"experimental_features": {
"title": "Experimental Features"
},
"gameMode": {
"eacRuntimeEnabled": {
"message": "The EAC runtime is enabled, which won't function correctly without GameMode. Do you want to disable the EAC Runtime and GameMode?",
"title": "EAC runtime enabled"
}
},
"gamescope": {
"searchMsg": "Searching for gamescope executable."
},
"launchOptions": "Launch Options",
"legacy_warning": "Warning: The settings on this tab are mostly deprecated and might not work at all.",
"log": {
"long-log-hint": "Log truncated, last 1000 lines are shown!"
},
"navbar": {
"advanced": "Advanced",
"games_settings_defaults": "Game Defaults",
"gamescope": "Gamescope",
"general": "General",
"legacy": "Legacy",
"log": "Log",
"other": "Other",
"sync": "Cloud Saves Sync",
"systemInformation": "System Information"
},
"offline": {
"warning": "This game does not explicitly allow offline mode, turn this on at your own risk. The game may not work."
},
"open-config-file": "Open Config File",
"reset-heroic": "Reset Heroic",
"saves": {
"gog_linux_native_warning": "Linux native games do not support GOG's Cloud Saves feature. Use the Windows version instead.",
"not_supported": "This game does not support Cloud Saves.",
"warning": "Cloud Saves feature is in Beta, please backup your saves before syncing (in case something goes wrong)"
},
"systemInformation": {
"cometVersion": "Comet: {{cometVersion}}",
"copyToClipboard": "Copy to clipboard",
"cpu": "CPU:",
"cpuDescription": "{{numOfCores}}x {{modelName}}",
"gogdlVersion": "Gogdl: {{gogdlVersion}}",
"gpu": "GPU:",
"gpuDriver": "Driver: {{driverVersion}}",
"gpuWithNumber": "GPU {{number}}:",
"heroicVersion": "Heroic: {{heroicVersion}}",
"legendaryVersion": "Legendary: {{legendaryVersion}}",
"memory": "Memory:",
"memoryStats": "{{percentUsed}}% used ({{usedGib}} / {{totalGib}}",
"nileVersion": "Nile: {{nileVersion}}",
"os": "Operating System:",
"osNameFlatpak": "{{osName}} (inside Flatpak)",
"osVersion": "Version {{versionNumber}}",
"showDetailed": "Show detailed system specifications",
"software": "Software:",
"steamDeck": "Steam Deck {{model}}",
"systemModel": "System Model:",
"systemSpecifications": "System Specifications:"
}
},
"Settings": "Settings",
"status": {
"installing": "Installing",
"logging": "Logging In...",
"preparing_login": "Preparing Login... ",
"processing": "Processing files, please wait"
},
"store": "Epic Store",
"stores": "Stores",
"title": {
"allGames": "All Games"
},
"toolbox": {
"settings": {
"wineprefix": "Select a Folder for new Wine Prefixes"
}
},
"tooltip": {
"addpath": "Add New Path",
"removepath": "Remove Path"
},
"tour": {
"back": "Back",
"done": "Done",
"library": {
"addGame": "Add your own games or apps to the library by clicking here. They can be basically anything, even Browser URLs.",
"categories": "Organize your games into categories to keep things tidy.",
"end": {
"intro": "That's it! Enjoy your games and have fun!",
"title": "Enjoy your games!"
},
"filters": "Filter your games by store, platform, favorites and more using these options.",
"gameCard": "Left-Click on the game card to navigate to the game page and to see details and adjust settings or Right-click to open the context menu.",
"refresh": "Refresh your library to check for new games or updates.",
"search": "Use the Search bar to search for your games.",
"sortInstalled": "Sort games by installed status.",
"sortOptions": "Click here to sort games alphabetically.",
"viewToggle": "Switch between grid and list view for your games.",
"welcome": {
"intro": "Welcome to the Heroic Library! This is where you can see all your games across different stores.",
"intro2": "If the library is empty, make sure to login with your accounts using the Manage accounts on the sidebar or add your own games using the Add Game button above.",
"title": "Welcome to Heroic!",
"title2": "Managing the library!"
}
},
"next": "Next",
"sidebar": {
"accessibility": "Access accessibility features to customize your experience.",
"accounts": "Manage your connected store accounts (Epic, GOG, Amazon), logout or login on them.",
"community": "Join our community on Discord and support Heroic's development.",
"docs": "Read documentation for help with using Heroic.",
"downloads": "Track and manage your game downloads and installations.",
"library": "Access your game library from different stores in one place.",
"login": "Log in to your game store accounts to access your library.",
"quit": "Exit the application safely.",
"settings": "Configure Heroic's settings, game defaults, check logs and more.",
"stores": "Browse and shop for games in different stores including Epic, GOG, and Amazon.",
"version": "Check your current Heroic version, click it to see latest changelog, and access this tour from the help icon.",
"welcome": {
"intro": "Welcome to Heroic! This sidebar contains all the navigation options to explore the app.",
"title": "Sidebar Navigation"
},
"wine": "Manage or download new version of Wine/Proton/GPTK for running Windows games on Linux or macOS."
},
"skip": "Skip",
"startTour": "Start Tour"
},
"tray": {
"about": "About",
"quit": "Quit",
"reload": "Reload",
"show": "Show"
},
"two_col_table": {
"save_hint": "Changes in this table are not saved automatically. Click the + button"
},
"Update Available!": "Update Available!",
"userselector": {
"cancel": "Cancel",
"discord": "Discord",
"logging_out": "Logging out",
"logout": "Log out",
"logout_confirmation": "Are you sure you want to log out?",
"manageaccounts": "Manage Accounts",
"quit": "Quit",
"quitMessage": "Are you sure you want to quit?"
},
"webview": {