-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathmsg_hash_us.h
16642 lines (16369 loc) · 426 KB
/
msg_hash_us.h
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
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
#if (_MSC_VER >= 1700)
/* https://support.microsoft.com/en-us/kb/980263 */
#pragma execution_character_set("utf-8")
#endif
#pragma warning(disable:4566)
#endif
/* Top-Level Menu */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MAIN_MENU,
"Main Menu"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
"Settings"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
"Favorites"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
"History"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
"Images"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
"Music"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
"Videos"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_TAB,
"Netplay"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
"Explore"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONTENTLESS_CORES_TAB,
"Contentless Cores"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_TAB,
"Import Content"
)
/* Main Menu */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
"Quick Menu"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
"Quickly access all relevant in-game settings."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LIST,
"Load Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LIST,
"Select which core to use."
)
MSG_HASH(
MENU_ENUM_LABEL_HELP_CORE_LIST,
"Browse for a libretro core implementation. Where the browser starts depends on your Core Directory path. If blank, it will start in root.\nIf Core Directory is a directory, the menu will use that as top folder. If Core Directory is a full path, it will start in the folder where the file is."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
"Load Content"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
"Select which content to start."
)
MSG_HASH(
MENU_ENUM_LABEL_HELP_LOAD_CONTENT_LIST,
"Browse for content. To load content, you need a 'Core' to use, and a content file.\nTo control where the menu starts to browse for content, set 'File Browser Directory'. If not set, it will start in root.\nThe browser will filter out extensions for the last core set in 'Load Core', and use that core when content is loaded."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
"Load Disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_DISC,
"Load a physical media disc. First select the core (Load Core) to use with the disc."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
"Dump Disc"
)
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
MENU_ENUM_SUBLABEL_DUMP_DISC,
"Dump the physical media disc to internal storage. It will be saved as an image file."
)
#ifdef HAVE_LAKKA
MSG_HASH(
MENU_ENUM_LABEL_VALUE_EJECT_DISC,
"Eject Disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_EJECT_DISC,
"Ejects the disc from physical CD/DVD drive."
)
#endif
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
"Playlists"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
"Scanned content matching the database will appear here."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
"Import Content"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
"Create and update playlists by scanning content."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
"Show Desktop Menu"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SHOW_WIMP,
"Open the traditional desktop menu."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
"Disable Kiosk Mode (Restart required)"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
"Show all configuration related settings."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
"Online Updater"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
"Download add-ons, components, and content for RetroArch."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY,
"Netplay"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETPLAY,
"Join or host a netplay session."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS,
"Settings"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SETTINGS,
"Configure the program."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
"Information"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
"Display system information."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
"Configuration File"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
"Manage and create configuration files."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HELP_LIST,
"Help"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_HELP_LIST,
"Learn more about how the program works."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
"Restart"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
"Restart RetroArch application."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
"Quit"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
"Quit RetroArch application. Configuration save on exit is enabled."
)
MSG_HASH(
MENU_ENUM_SUBLABEL_QUIT_RETROARCH_NOSAVE,
"Quit RetroArch application. Configuration save on exit is disabled."
)
MSG_HASH(
MENU_ENUM_LABEL_HELP_QUIT_RETROARCH,
"Quit RetroArch. Killing the program in any hard way (SIGKILL, etc.) will terminate RetroArch without saving the configuration in any case. On Unix-likes, SIGINT/SIGTERM allows a clean deinitialization which includes configuration save if enabled."
)
/* Main Menu > Load Core */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
"Download a Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
"Download and install a core from the online updater."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
"Install or Restore a Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
"Install or restore a core from the 'Downloads' directory."
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
"Start Video Processor"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
"Start Remote RetroPad"
)
/* Main Menu > Load Content */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES,
"Start Directory"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
"Downloads"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
"Browse Archive"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
"Load Archive"
)
/* Main Menu > Load Content > Playlists */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
"Favorites"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
"Content added to 'Favorites' will appear here."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
"Music"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
"Music which has been previously played will appear here."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
"Images"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
"Images which have been previously viewed will appear here."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
"Videos"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
"Videos which have been previously played will appear here."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
"Explore"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_EXPLORE,
"Browse all content matching the database via a categorized search interface."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_CONTENTLESS_CORES,
"Contentless Cores"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_CONTENTLESS_CORES,
"Installed cores which can operate without loading content will appear here."
)
/* Main Menu > Online Updater */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
"Core Downloader"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
"Update Installed Cores"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
"Update all installed cores to the latest version available."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SWITCH_INSTALLED_CORES_PFD,
"Switch Cores to Play Store Versions"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SWITCH_INSTALLED_CORES_PFD,
"Replace all legacy and manually installed cores with the latest versions from the Play Store, where available."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
"Thumbnails Updater"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
"Download complete thumbnail package for selected system."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
"Playlist Thumbnails Updater"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
"Download thumbnails for entries in the selected playlist."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
"Content Downloader"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_CONTENT,
"Download free content for the selected core."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_SYSTEM_FILES,
"Core System Files Downloader"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_SYSTEM_FILES,
"Download auxiliary system files required for correct/optimal core operation."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
"Update Core Info Files"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
"Update Assets"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
"Update Controller Profiles"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
"Update Cheats"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
"Update Databases"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
"Update Overlays"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
"Update GLSL Shaders"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
"Update Cg Shaders"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
"Update Slang Shaders"
)
/* Main Menu > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
"Core Information"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
"View information pertaining to the application/core."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
"Disc Information"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
"View information about inserted media discs."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
"Network Information"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
"View network interface(s) and associated IP addresses."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
"System Information"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
"View information specific to the device."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
"Database Manager"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
"View databases."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
"Cursor Manager"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
"View previous searches."
)
/* Main Menu > Information > Core Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
"Core Name"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
"Core Label"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_VERSION,
"Core Version"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
"System Name"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
"System Manufacturer"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES,
"Categories"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
"Author"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
"Permissions"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
"License"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
"Supported Extensions"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
"Required Graphics API"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_PATH,
"Full Path"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SUPPORT_LEVEL,
"Save State Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_DISABLED,
"None"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_BASIC,
"Basic (Save/Load)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SERIALIZED,
"Serialized (Save/Load, Rewind)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_DETERMINISTIC,
"Deterministic (Save/Load, Rewind, Run-Ahead, Netplay)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE,
"Firmware"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE_IN_CONTENT_DIRECTORY,
"- Note: 'System Files are in Content Directory' is currently enabled."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE_PATH,
"- Looking in: %s"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MISSING_REQUIRED,
"Missing, Required:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MISSING_OPTIONAL,
"Missing, Optional:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PRESENT_REQUIRED,
"Present, Required:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PRESENT_OPTIONAL,
"Present, Optional:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
"Lock Installed Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LOCK,
"Prevent modification of the currently installed core. May be used to avoid unwanted updates when content requires a specific core version (e.g. Arcade ROM sets)."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_SET_STANDALONE_EXEMPT,
"Exclude From 'Contentless Cores' Menu"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_SET_STANDALONE_EXEMPT,
"Prevent this core from being displayed in the 'Contentless Cores' tab/menu. Only applies when display mode is set to 'Custom'."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
"Delete Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE,
"Remove this core from disk."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
"Backup Core"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
"Create an archived backup of the currently installed core."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
"Restore Backup"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
"Install a previous version of the core from a list of archived backups."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
"Delete Backup"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
"Remove a file from the list of archived backups."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_BACKUP_MODE_AUTO,
"[Auto]"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_BACKUP_CRC,
"CRC32: "
)
/* Main Menu > Information > System Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
"Build Date"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETROARCH_VERSION,
"RetroArch Version"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
"Git Version"
)
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
MSG_COMPILER,
"Compiler"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
"CPU Model"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
"CPU Features"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
"CPU Architecture"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CPU_CORES,
"CPU Cores"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_JIT_AVAILABLE,
"JIT Available"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
"Frontend Identifier"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
"Frontend OS"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
"RetroRating Level"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
"Power Source"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
"Video Context Driver"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
"Display Width (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
"Display Height (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
"Display DPI"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
"LibretroDB Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
"Overlay Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
"Command Interface Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
"Network Command Interface Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
"Network Controller Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
"Cocoa Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
"PNG (RPNG) Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
"JPEG (RJPEG) Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
"BMP (RBMP) Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
"TGA (RTGA) Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
"SDL 1.2 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
"SDL 2 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_D3D8_SUPPORT,
"Direct3D 8 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_D3D9_SUPPORT,
"Direct3D 9 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_D3D10_SUPPORT,
"Direct3D 10 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_D3D11_SUPPORT,
"Direct3D 11 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_D3D12_SUPPORT,
"Direct3D 12 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GDI_SUPPORT,
"GDI Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
"Vulkan Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
"Metal Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
"OpenGL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
"OpenGL ES Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
"Threading Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT,
"KMS/EGL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT,
"udev Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT,
"OpenVG Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT,
"EGL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT,
"X11 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT,
"Wayland Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT,
"XVideo Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT,
"ALSA Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT,
"OSS Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT,
"OpenAL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT,
"OpenSL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT,
"RSound Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT,
"RoarAudio Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT,
"JACK Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT,
"PulseAudio Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PIPEWIRE_SUPPORT,
"PipeWire Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO_SUPPORT,
"CoreAudio Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO3_SUPPORT,
"CoreAudio V3 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT,
"DirectSound Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WASAPI_SUPPORT,
"WASAPI Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT,
"XAudio2 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT,
"zlib Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT,
"7zip Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT,
"Dynamic Library Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT,
"Dynamic Runtime Loading of libretro Library"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT,
"Cg Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT,
"GLSL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT,
"HLSL Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT,
"SDL Image Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT,
"FFmpeg Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_MPV_SUPPORT,
"mpv Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT,
"CoreText Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT,
"FreeType Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_STB_TRUETYPE_SUPPORT,
"STB TrueType Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT,
"Netplay (Peer-to-Peer) Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT,
"Video4Linux2 Support"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT,
"libusb Support"
)
/* Main Menu > Information > Database Manager */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_SELECTION,
"Database Selection"
)
/* Main Menu > Information > Database Manager > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME,
"Name"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION,
"Description"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GENRE,
"Genre"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ACHIEVEMENTS,
"Achievements"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CATEGORY,
"Category"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_LANGUAGE,
"Language"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_REGION,
"Region"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CONSOLE_EXCLUSIVE,
"Console exclusive"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PLATFORM_EXCLUSIVE,
"Platform exclusive"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SCORE,
"Score"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MEDIA,
"Media"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CONTROLS,
"Controls"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ARTSTYLE,
"Artstyle"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GAMEPLAY,
"Gameplay"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NARRATIVE,
"Narrative"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PACING,
"Pacing"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PERSPECTIVE,