forked from libretro/RetroArch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg_hash_cy.h
1693 lines (1458 loc) · 32.8 KB
/
msg_hash_cy.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,
"Prif Ddewislen"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
"Gosodiadau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
"Ffeffryn"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
"Hanes"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
"Delweddau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
"Cerddoriaeth"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
"Fideo"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
"Archwilio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_TAB,
"Mewnforio Cynnwys"
)
/* Main Menu */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
"Dewislen Gyflym"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
"Cyrchiad gyflym i'r holl gosodiadau mewn-gêm berthnasol."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LIST,
"Llwytho Craidd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LIST,
"Dewiswch pa graidd i'w ddefnyddio."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
"Llwytho Cynnwys"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
"Dewiswch pa gynnwys i ddechrau."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
"Llwytho’r disg"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_DISC,
"Yn lwytho disg corfforol cyfryngau. Yn gyntaf, dewiswch y ‘core’ (Llwytho’r Core) i ddefnydduo gyda’r disg."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
"Dympio’r Disg"
)
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
MENU_ENUM_SUBLABEL_DUMP_DISC,
"Dympio’r disg corfforol cyfryngau i’r storfa fewnol. Bydd yn cadw fel ffeil delwedd."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
"Rhestri Chwarae"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
"Bydd cnnywys wedi sganio yn cyfwerth/hafal i’r cronfa ddata yn ddigwydd yma."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
"Mewnforio Cynnwys"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
"Creu a diweddaru rhestri chwarae trwy sganio cynnwys."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
"Dangos Dewislen Bwrdd Gwaith"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SHOW_WIMP,
"Agor y dewislen bwrdd gwaith traddodiadol."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
"Analluogi mod Kiosk (Ailgychwyn yn angenrheidiol)"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
"Dangoswch yr holl gosodiadau sy'n gysylltiedig â chyfluniad."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
"Ddiweddarydd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
"Dadlwythwch ychwanegion, cydrannau, a chynnwys ar gyfer RetroArch."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY,
"Rhwychwarae"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETPLAY,
"Ymunwch neu gynnal sesiwn netplay."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS,
"Gosodiadau"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SETTINGS,
"Ffurfweddwch y rhaglen."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
"Gwybodaeth"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
"Dangos gwybodaeth system."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
"Ffeil Ffurfweddiad"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
"Rheoli a greu ffeilau ffurfweddiad."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HELP_LIST,
"Cymorth"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_HELP_LIST,
"Dysgu mwy am sut mae'r rhaglen yn gweithio."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
"Ailgychwyn RetroArch"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
"Ailgychwyn y rhaglen."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
"Gadael RetroArch"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
"Gadael’r rhaglen."
)
/* Main Menu > Load Core */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
"Llwytho ‘Core’ i Lawr"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
"Dadlwythwch a gosod craidd o'r diweddarwr ar-lein."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
"Gosod neu Adfer Craidd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
"Gosod neu adfer craidd o'r cyfeiriadur 'Downloads'."
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
"Cychwyn Prosesydd Fideo"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
"Dechrau RetroPad Pell"
)
/* Main Menu > Load Content */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES,
"Cyfeiriadur Cychwynnol"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
"Lawrlwythiadau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
"Archwilio Archif"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
"Llwytho Archif"
)
/* Main Menu > Load Content > Playlists */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
"Ffefrynnau"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
"Bydd cynnwys a ychwanegir at 'Favourites' yn ymddangos yma."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
"Cerddoriaeth"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
"Bydd cerddoriaeth a chwaraewyd o'r blaen yn ymddangos yma."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
"Delweddau"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
"Bydd delweddau wedi’i gweld/golwg yn digwydd yma."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
"Fideos"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
"Bydd fideos a chwaraewyd o'r blaen yn ymddangos yma."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
"Archwilio"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_EXPLORE,
"Porwch yr holl gynnwys sy'n cyfateb i'r gronfa ddata trwy ryngwyneb chwilio wedi'i gategoreiddio."
)
/* Main Menu > Online Updater */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
"Lawrlwythwr Creiddiau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
"Diweddaru Creiddiau Sydd Wedi ei Sefydlu"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
"Diweddaru pob craidd sydd wedi ei sefydlu i'r fersiwn ddiweddaraf sydd ar gael."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SWITCH_INSTALLED_CORES_PFD,
"Amnewid Craidd i'r fersiwn Play Store"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SWITCH_INSTALLED_CORES_PFD,
"Amnewid yr holl greiddiau legacy a'r greiddiau gosodwyd â llaw gyda'r fersiynau diweddaraf o'r Play Store, lle bosib."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
"Diweddarwr Mân-luniau"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
"Lawrlwythwch pecyn mân-luniau cyflawn ar gyfer system dethol."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
"Diweddarwr Mân-luniau y Rhestr Chwarae"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
"Lawrlwythwch mân-luniau am cofnodion yn y rhestr chwarae dethol."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
"Lawrlwythwr Cynnwys"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
"Diweddaru Ffeiliau Gwybodaeth Creiddiau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
"Diweddaru Asedau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
"Diweddaru Proffiliau Rheolwyr"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
"Diweddaru Twyllwyr"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
"Diweddaru Cronfa Ddata"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
"Diweddaru Troshaenau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
"Diweddaru GLSL Shaders"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
"Diweddaru Cg Shaders"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
"Diweddaru Slang Shaders"
)
/* Main Menu > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
"Gwybodaeth Craidd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
"Gweld gwybodaeth sy'n ymwneud â'r cais / craidd."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
"Gwybodaeth y Disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
"Gweld gwybodaeth am y disgiau media fewnosod."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
"Gwybodaeth Rhwydwaith"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
"Gweld rhyngwyneb (au) rhwydwaith a chyfeiriadau IP cysylltiedig."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
"Gwybodaeth System"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
"Gweld gwybodaeth yn benodol i'r ddyfais."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
"Rheolwr Cronfa Ddata"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
"Edrych dros y Cronfeydd Ddata."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
"Rheolwr Cyrchwr"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
"Gweld chwiliadau blaenorol."
)
/* Main Menu > Information > Core Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
"Enw Craidd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
"Label Craidd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
"Enw System"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
"Cynhyrchydd System"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CATEGORIES,
"Categorïau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
"Awdur"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
"Hawliau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
"Trwydded"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
"Estyniadau â Chefnogir"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
"API Graffeg Angenrheidiol"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_FIRMWARE,
"Cadarnwedd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
"Cloi Craidd wedi'i osod"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LOCK,
"Atal addasu'r craidd sydd wedi'i osod ar hyn o bryd. Gellir ei ddefnyddio i osgoi diweddariadau diangen pan fydd angen fersiwn graidd benodol ar y cynnwys (e.e. setiau Arcade ROM)."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
"Dileu Craidd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE,
"Dadosod y craidd o'r disg."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
"Craidd Wrth-gefn"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
"Creu copi wrth gefn wedi'i archifo o'r craidd sydd wedi'i osod ar hyn o bryd."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
"Adfer yr wrthgefn"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
"Gosod fersiwn flaenorol o'r craidd o restr o gopïau wrth gefn wedi'u harchifo."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
"Dileu yr Wrth-gefn"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
"Tynnwch ffeil o'r rhestr o gopïau wrth gefn sydd wedi'u harchifo."
)
/* Main Menu > Information > System Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
"Dyddiad Creu"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
"Fersiwn Git"
)
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
MSG_COMPILER,
"Crynhoydd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
"Model CPU"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
"Nodweddion CPU"
)
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
"Pensaernïaeth CPU:"
)
MSG_HASH( /* FIXME Colon should be handled in menu_display.c like the rest */
MENU_ENUM_LABEL_VALUE_CPU_CORES,
"Creiddiau CPU:"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CPU_CORES,
"Nifer o greiddiau sydd gan y CPU."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
"Dynodwr Frontend"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
"OS Frontend"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
"Lefel RetroRating"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
"Cyflenwad Pwer"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
"Gyrrwr Cyd-destun Fideo"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
"Lled Dangosydd (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
"Taldra Dangosydd (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
"DPI Dangosydd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
"Cymorth LibretroDB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
"Cymorth troshaenu"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
"Cymorth Rhyngwyneb Gorchymyn"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
"Cymorth Rhyngwyneb Gorchymyn Rhwydwaith"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
"Cefnogaeth Rheolwr Rhwydwaith"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
"Cymorth Cocoa"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
"Cymorth PNG (RPNG)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
"Cymorth JPEG (RJPEG)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
"Cymorth BMP (RBMP)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
"Cymorth TGA (RTGA)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
"Cymorth SDL 1.2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
"Cymorth SDL 2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
"Cymorth Vulkan"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
"Cymorth Metal"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
"Cymorth OpenGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
"Cymorth OpenGL ES"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
"Cymorth Threading"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT,
"Cymorth KMS/EGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT,
"Cymorth udev"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT,
"Cymorth OpenVG"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT,
"Cymorth EGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT,
"Cymorth X11"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT,
"Cymorth Wayland"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT,
"Cymorth XFideo"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT,
"Cymorth ALSA"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT,
"Cymorth OSS"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT,
"Cymorth OpenAL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT,
"Cymorth OpenSL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT,
"Cymorth Rsound"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT,
"Cymorth RoarAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT,
"Cymorth JACK"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT,
"Cymorth PulseAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO_SUPPORT,
"Cymorth CoreAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO3_SUPPORT,
"Cymorth CoreAudio V3"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT,
"Cymorth DirectSound"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WASAPI_SUPPORT,
"Cymorth WASAPI"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT,
"Cymorth XAudio2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT,
"Cymorth zlib"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT,
"Cymorth 7zip"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT,
"Cefnogaeth Llyfrgell Dynamig"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT,
"Runtime Dynamig Llwytho Llyfrgell libretro"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT,
"Cymorth Cg"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT,
"Cymorth GLSL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT,
"Cymorth HLSL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT,
"Cymorth Delwedd SDL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT,
"Cymorth FFmpeg"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_MPV_SUPPORT,
"Cymorth mpv"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT,
"Cymorth CoreText"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT,
"Cymorth FreeType"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_STB_TRUETYPE_SUPPORT,
"Cymorth STB TrueType"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT,
"Cymorth Netplay (Cymar wrth gymar)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PYTHON_SUPPORT,
"Cefnogaeth Python (Cymorth Sgript Shaders)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT,
"Cymorth Video4Linux2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT,
"Cymorth libusb"
)
/* Main Menu > Information > Database Manager */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_SELECTION,
"Dewis Cronfa Ddata"
)
/* Main Menu > Information > Database Manager > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME,
"Enw"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION,
"Disgrifiad"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER,
"Cyhoeddwr"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER,
"Datblygwr"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN,
"Tardd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FRANCHISE,
"Masnachfraint"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_TGDB_RATING,
"Asesiad TGDB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FAMITSU_MAGAZINE_RATING,
"Asesiad Cylchgrawn Famitsu"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_REVIEW,
"Asesiad Cylchgrawn Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_RATING,
"Asesiad Cylchgrawn Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_ISSUE,
"Rhifyn Cylchgrawn Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH,
"Mis rhyddhau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR,
"Blwyddyn rhyddhau"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_BBFC_RATING,
"Asesiad BBFC"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ESRB_RATING,
"Asesiad ESRB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ELSPA_RATING,
"Asesiad ELSPA"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PEGI_RATING,
"Asesiad PEGI"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ENHANCEMENT_HW,
"Caledwedd Mwyhad"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CERO_RATING,
"Asesiad CERO"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ANALOG,
"Analog wedi ei chynnal"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RUMBLE,
"Rumble wedi ei chynnal"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_COOP,
"Co-op wedi ei chynnal"
)
/* Main Menu > Configuration File */
/* Main Menu > Help */
/* Main Menu > Help > Basic Menu Controls */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_INFO,
"Gwybodaeth"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_BASIC_MENU_CONTROLS_QUIT,
"Cau"
)
/* Settings */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_INPUT_SETTINGS,
"Mewnbwn"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_SETTINGS,
"Craidd"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SAVING_SETTINGS,
"Arbed"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SAVING_SETTINGS,
"Newid gosodiadau arbed."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOGGING_SETTINGS,
"Logio"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOGGING_SETTINGS,
"Newid gosodiadau logio."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RECORDING_SETTINGS,
"Recordio"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_RECORDING_SETTINGS,
"Newid gosodiadau recordio."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_USER_INTERFACE_SETTINGS,
"Rhyngwyneb Defnyddiwr"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_USER_INTERFACE_SETTINGS,
"Newid gosodiadau rhyngwyneb defnyddiwr."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_AI_SERVICE_SETTINGS,
"Gwasanaeth AI"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_AI_SERVICE_SETTINGS,
"Newid gosodiadau am y Gwasanaeth AI (Cifieithiad/TTS/Misc)."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ACCESSIBILITY_SETTINGS,
"Hygyrchedd"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ACCESSIBILITY_SETTINGS,
"Newid gosodiadau am yr adroddwr hygyrchedd."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_POWER_MANAGEMENT_SETTINGS,
"Rheolaeth Pwer"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_POWER_MANAGEMENT_SETTINGS,
"Newid gosodiadau rheolaeth pwer."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RETRO_ACHIEVEMENTS_SETTINGS,
"Llwyddiannau"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_RETRO_ACHIEVEMENTS_SETTINGS,
"Newid gosodiadau llwyddiannau."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETWORK_SETTINGS,
"Rhwydwaith"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETWORK_SETTINGS,
"Newid gosodiadau gweinydd a rhwydwaith."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PLAYLIST_SETTINGS,
"Rhestri Chwarae"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PLAYLIST_SETTINGS,
"Newid gosodiadau rhestr chwarae."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_USER_SETTINGS,
"Defnyddiwr"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_USER_SETTINGS,
"Newid gosodiadau cyfrif, enw defnyddiwr a iaith."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DIRECTORY_SETTINGS,
"Cyfeiriadur"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DIRECTORY_SETTINGS,
"Newid cyfeirlyfrau diofyn lle mae ffeiliau wedi'u lleoli."
)
/* Settings > Drivers */
MSG_HASH(