forked from libretro/RetroArch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg_hash_ca.h
8638 lines (8365 loc) · 222 KB
/
msg_hash_ca.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,
"Menú principal"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS_TAB,
"Opcions"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES_TAB,
"Favorits"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HISTORY_TAB,
"Historial"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_IMAGES_TAB,
"Imatges"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MUSIC_TAB,
"Música"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_VIDEO_TAB,
"Vídeos"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY_TAB,
"Joc en línia"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_EXPLORE_TAB,
"Explora"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONTENTLESS_CORES_TAB,
"Nuclis sense continguts"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_TAB,
"Importa contingut"
)
/* Main Menu */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONTENT_SETTINGS,
"Menú ràpid"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONTENT_SETTINGS,
"Accedeix ràpidament a totes les opcions relacionades amb la partida."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LIST,
"Carregar Nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LIST,
"Selecciona quin nucli utilitzar."
)
MSG_HASH(
MENU_ENUM_LABEL_HELP_CORE_LIST,
"Cerca una implementació per a un nucli de libretro. El cercador començarà a buscar en la carpeta que hagis triat per al teu directori de nuclis. En cas de trobar-se en blanc, començarà al directori rael.\nSi el directori de nuclis és un directori, el menú usarà aquest com a carpeta inicial. Pel contrari, si és un directori complet, aquest s'iniciarà a la carpeta on es trobi l'arxiu."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST,
"Carregar Contingut"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_CONTENT_LIST,
"Selecciona quin contingut iniciar."
)
MSG_HASH(
MENU_ENUM_LABEL_HELP_LOAD_CONTENT_LIST,
"Cerca continguts. Per a carregar continguts necessites un 'nucli' i un arxiu de contingut.\nPer a configurar a on comença el menú a cercar-ne, configura el directori de l'explorador d'arxius. Si no està configurat, aquest començará a la rael.\nEl navegador filtrarà extensions per a l'últim nucli triat en 'Carregar nucli', i emprarà aquell nucli quan el contingut sigui carregat."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_DISC,
"Carregar Disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_LOAD_DISC,
"Carrega un disc físic multimèdia. Primer hauràs de seleccionar el nucli (Carregar Nucli) a utilitzar amb el disc."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DUMP_DISC,
"Abocar Disc"
)
MSG_HASH( /* FIXME Is a specific image format used? Is it determined automatically? User choice? */
MENU_ENUM_SUBLABEL_DUMP_DISC,
"Abocar el disc físic multimèdia a l'emmagatzematge intern. Es guardarà com un arxiu d'imatge."
)
#ifdef HAVE_LAKKA
MSG_HASH(
MENU_ENUM_LABEL_VALUE_EJECT_DISC,
"Expulsar disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_EJECT_DISC,
"Expulsa el disc de la unitat física de CD/DVD."
)
#endif
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PLAYLISTS_TAB,
"Llistes de reproducció"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PLAYLISTS_TAB,
"El contingut que coincideixi amb la base de dades apareixerà aquí."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST,
"Importa contingut"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ADD_CONTENT_LIST,
"Crea i actualitza les llistes de reproducció escanejant el contingut."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SHOW_WIMP,
"Mostra el menú d'escriptori"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SHOW_WIMP,
"Obre el menú tradicional d'escriptori."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MENU_DISABLE_KIOSK_MODE,
"Desactiva el mode quiosc (requereix reiniciar)"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_MENU_DISABLE_KIOSK_MODE,
"Mostra totes les opcions de configuració."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_ONLINE_UPDATER,
"Actualitzador en línia"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_ONLINE_UPDATER,
"Descarrega complements, components i contingut per RetroArch."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETPLAY,
"Joc en línia"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETPLAY,
"Uneix-te o organitza una sessió de joc en línia."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SETTINGS,
"Opcions"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SETTINGS,
"Configura el programa."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_INFORMATION_LIST,
"Informació"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_INFORMATION_LIST_LIST,
"Mostra la informació del sistema."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CONFIGURATIONS_LIST,
"Arxiu de configuració"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CONFIGURATIONS_LIST,
"Gestiona i crea fitxers de configuració."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_HELP_LIST,
"Ajuda"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_HELP_LIST,
"Assabenta't del funcionament del programa."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RESTART_RETROARCH,
"Reinicia"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_RESTART_RETROARCH,
"Reinicia RetroArch."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_QUIT_RETROARCH,
"Surt"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_QUIT_RETROARCH,
"Tanca RetroArch. La configuració serà desada en sortir."
)
MSG_HASH(
MENU_ENUM_SUBLABEL_QUIT_RETROARCH_NOSAVE,
"Tanca RetroArch. La configuració serà desada en sortir."
)
/* Main Menu > Load Core */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE,
"Descarrega un nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE,
"Descarrega i instal·la un nucli de l'actualitzador en línia."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SIDELOAD_CORE_LIST,
"Instal·la o Restaura un Nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SIDELOAD_CORE_LIST,
"Instal·la o restaura un nucli des de la carpeta 'Downloads'."
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_VIDEO_PROCESSOR,
"Iniciar Processador de Vídeo"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_START_NET_RETROPAD,
"Iniciar RetroPad Remot"
)
/* Main Menu > Load Content */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_FAVORITES,
"Directori Inicial"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOADED_FILE_DETECT_CORE_LIST,
"Descàrregues"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_OPEN_ARCHIVE,
"Explora un fitxer comprimit"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_LOAD_ARCHIVE,
"Carrega un fitxer comprimit"
)
/* Main Menu > Load Content > Playlists */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_FAVORITES,
"Favorits"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_FAVORITES,
"El contingut afegit a 'Favorits' apareixerà aquí."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_MUSIC,
"Música"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_MUSIC,
"La música reproduïda anteriorment apareixerà aquí."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_IMAGES,
"Imatges"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_IMAGES,
"Les imatges visualitzades anteriorment apareixeran aquí."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_VIDEO,
"Vídeos"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_VIDEO,
"Els vídeos reproduïts anteriorment apareixeran aquí."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_EXPLORE,
"Explora"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_EXPLORE,
"Explora tots els continguts que coincideixin amb la base de dades mitjançant una interfície de cerca categoritzada."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_GOTO_CONTENTLESS_CORES,
"Nuclis sense continguts"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_GOTO_CONTENTLESS_CORES,
"Els cors instal·lats que poden operar sense carregar contingut apareixeran aquí."
)
/* Main Menu > Online Updater */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_UPDATER_LIST,
"Descarregador de nuclis"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_INSTALLED_CORES,
"Actualitza els nuclis instal·lats"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_UPDATE_INSTALLED_CORES,
"Actualitza tots els nuclis instal·lats a la darrera versió disponible."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SWITCH_INSTALLED_CORES_PFD,
"Canviar els Nuclis a la versió de Play Store"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SWITCH_INSTALLED_CORES_PFD,
"Substitueix tots els nuclis heretats i instal·lats manualment per les darreres versions de Play Store, quan estiguin disponibles."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_THUMBNAILS_UPDATER_LIST,
"Actualitzador de Miniatures"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_THUMBNAILS_UPDATER_LIST,
"Descarrega el paquet complet de miniatures per al sistema seleccionat."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PL_THUMBNAILS_UPDATER_LIST,
"Actualitzador de Miniatures de Llistes de Reproducció"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_PL_THUMBNAILS_UPDATER_LIST,
"Descarrega les miniatures de les entrades de la llista de reproducció seleccionada."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_CONTENT,
"Descarregador de contingut"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_CONTENT,
"Descarrega contingut gratuït pel nucli seleccionat."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DOWNLOAD_CORE_SYSTEM_FILES,
"Descarregador d'arxius de sistema dels nuclis"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DOWNLOAD_CORE_SYSTEM_FILES,
"Descarrega fitxers del sistema auxiliars necessaris per a un òptim/correcte funcionament."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CORE_INFO_FILES,
"Actualitza els fitxers d'informació del nucli"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_ASSETS,
"Actualitza els recursos"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_AUTOCONFIG_PROFILES,
"Actualitza els perfils dels controladors"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CHEATS,
"Actualitza els trucs"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_DATABASES,
"Actualitza les bases de dades"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_OVERLAYS,
"Actualitza les superposicions"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_GLSL_SHADERS,
"Actualitza els shaders GLSL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_CG_SHADERS,
"Actualitza els shaders Cg"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_UPDATE_SLANG_SHADERS,
"Actualitza els shaders Slang"
)
/* Main Menu > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFORMATION,
"Informació del nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_INFORMATION,
"Mostra la informació relativa a l'aplicació/nucli."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DISC_INFORMATION,
"Informació del disc"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DISC_INFORMATION,
"Veure informació sobre els discs multimèdia inserits."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_NETWORK_INFORMATION,
"Informació de la xarxa"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_NETWORK_INFORMATION,
"Mostra l'interfície(s) de xarxa i les IP associades."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFORMATION,
"Informació del sistema"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_SYSTEM_INFORMATION,
"Mostra la informació específica del dispositiu."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_MANAGER,
"Gestor de base de dades"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_DATABASE_MANAGER,
"Veure bases de dades."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CURSOR_MANAGER,
"Gestor del cursor"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CURSOR_MANAGER,
"Mostra les cerques anteriors."
)
/* Main Menu > Information > Core Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_NAME,
"Nom del nucli"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_LABEL,
"Etiqueta del nucli"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_CORE_VERSION,
"Versió del nucli"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_NAME,
"Nom del sistema"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SYSTEM_MANUFACTURER,
"Fabricant del sistema"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_AUTHORS,
"Autor"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_PERMISSIONS,
"Permisos"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_LICENSES,
"Llicència"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SUPPORTED_EXTENSIONS,
"Extensions compatibles"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_REQUIRED_HW_API,
"APIs de gràfics requerides"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SUPPORT_LEVEL,
"Suport a estats desats"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_DISABLED,
"Cap"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_BASIC,
"Bàsic (Desar/Carregar)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_SERIALIZED,
"Amb sèrie (Desar/Carregar, Rebobinar)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_INFO_SAVESTATE_DETERMINISTIC,
"Determinista (Desa/Carrega, Rebobina, Avança, Netplay)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MISSING_REQUIRED,
"Falta, requerida:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_MISSING_OPTIONAL,
"Falta, opcional:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PRESENT_REQUIRED,
"Present, requerit:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_PRESENT_OPTIONAL,
"Present, opcional:"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_LOCK,
"Bloqueja el nucli instal·lat"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_LOCK,
"Evita la modificació del nucli instal·lat actualment. Es pot utilitzar per evitar actualitzacions no desitjades quan el contingut requereix una versió del nucli específica (per exemple, conjunts de ROM d'arcade)."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_SET_STANDALONE_EXEMPT,
"Exclou del menú 'Nuclis sense continguts'"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_SET_STANDALONE_EXEMPT,
"Prevín que el nucli sigui mostrat a la secció 'Nuclis sense continguts'. Només s'aplica quan el mode de vídeo estigui configurat com a 'Personalitzat'."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE,
"Eliminar nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE,
"Eliminar aquest nucli del disc."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_CREATE_BACKUP,
"Còpia de seguretat del nucli"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_CREATE_BACKUP,
"Crea una còpia de seguretat arxivada del nucli instal·lat actualment."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_RESTORE_BACKUP_LIST,
"Restaura la còpia de seguretat"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_RESTORE_BACKUP_LIST,
"Instal·la una versió anterior del nucli des d'una llista de còpies de seguretat arxivades."
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CORE_DELETE_BACKUP_LIST,
"Suprimeix la còpia de seguretat"
)
MSG_HASH(
MENU_ENUM_SUBLABEL_CORE_DELETE_BACKUP_LIST,
"Eliminar un fitxer de la llista de còpies de seguretat arxivades."
)
/* Main Menu > Information > System Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_BUILD_DATE,
"Data de compilació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETROARCH_VERSION,
"Versió de RetroArch"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GIT_VERSION,
"Versió del Git"
)
MSG_HASH( /* FIXME Should be MENU_LABEL_VALUE */
MSG_COMPILER,
"Compilador"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_MODEL,
"Model de CPU"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CPU_FEATURES,
"Característiques de la CPU"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CPU_ARCHITECTURE,
"Arquitectura de la CPU"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_CPU_CORES,
"Nuclis de la CPU"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_JIT_AVAILABLE,
"JIT disponible"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_IDENTIFIER,
"Identificador de la interfície"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FRONTEND_OS,
"Sistema operatiu de la interfície"
)
MSG_HASH( /* FIXME Maybe add a description? */
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RETRORATING_LEVEL,
"Nivell de RetroRating"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_POWER_SOURCE,
"Font d'alimentació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VIDEO_CONTEXT_DRIVER,
"Controlador de context de vídeo"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_WIDTH,
"Amplada de la pantalla (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_MM_HEIGHT,
"Alçada de la pantalla (mm)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DISPLAY_METRIC_DPI,
"Punts per polzada de la pantalla"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBRETRODB_SUPPORT,
"Suport de LibretroDB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OVERLAY_SUPPORT,
"Suport de recobriment"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COMMAND_IFACE_SUPPORT,
"Suport a la interfície de comandaments"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_COMMAND_IFACE_SUPPORT,
"Suport a la interfície de comandaments de xarxa"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETWORK_REMOTE_SUPPORT,
"Suport del controlador de xarxa"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COCOA_SUPPORT,
"Suport de Cocoa"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RPNG_SUPPORT,
"Suport de PNG (RPNG)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RJPEG_SUPPORT,
"Suport de JPEG (RJPEG)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RBMP_SUPPORT,
"Suport de BMP (RBMP)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RTGA_SUPPORT,
"Suport de TGA (RTGA)"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_SUPPORT,
"Suport de SDL 1.2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL2_SUPPORT,
"Suport de SDL 2"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_VULKAN_SUPPORT,
"Suport de Vulkan"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_METAL_SUPPORT,
"Suport de Metal"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGL_SUPPORT,
"Suport d'OpenGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENGLES_SUPPORT,
"Suport d'OpenGL ES"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_THREADING_SUPPORT,
"Suport multifil"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_KMS_SUPPORT,
"Suport de KMS/EGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_UDEV_SUPPORT,
"Suport d'udev"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENVG_SUPPORT,
"Suport d'OpenVG"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_EGL_SUPPORT,
"Suport d'EGL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_X11_SUPPORT,
"Suport d'X11"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WAYLAND_SUPPORT,
"Suport de Wayland"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XVIDEO_SUPPORT,
"Suport d'XVideo"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ALSA_SUPPORT,
"Suport d'ALSA"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OSS_SUPPORT,
"Suport d'OSS"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENAL_SUPPORT,
"Suport d'OpenAL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_OPENSL_SUPPORT,
"Suport d'OpenSL"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_RSOUND_SUPPORT,
"Suport de RSound"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ROARAUDIO_SUPPORT,
"Suport de RoarAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_JACK_SUPPORT,
"Suport de JACK"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_PULSEAUDIO_SUPPORT,
"Suport de PulseAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO_SUPPORT,
"Suport de CoreAudio"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_COREAUDIO3_SUPPORT,
"CoreAudio V3 implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DSOUND_SUPPORT,
"DirectSound implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_WASAPI_SUPPORT,
"WASAPI implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_XAUDIO2_SUPPORT,
"XAudio2 implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_ZLIB_SUPPORT,
"zlib implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_7ZIP_SUPPORT,
"7zip implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYLIB_SUPPORT,
"Biblioteques dinàmiques implementades"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_DYNAMIC_SUPPORT,
"Càrrega dinàmica en temps d'execució de biblioteques de libretro"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CG_SUPPORT,
"Cg implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_GLSL_SUPPORT,
"GLSL implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_HLSL_SUPPORT,
"GLSL implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_SDL_IMAGE_SUPPORT,
"Imatge SDL implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FFMPEG_SUPPORT,
"FFmpeg implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_MPV_SUPPORT,
"mpv implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_CORETEXT_SUPPORT,
"CoreText implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_FREETYPE_SUPPORT,
"FreeType implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_STB_TRUETYPE_SUPPORT,
"STB TrueType implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_NETPLAY_SUPPORT,
"Joc en xarxa (Peer-to-Peer) implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_V4L2_SUPPORT,
"Video4Linux2 implementat"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_SYSTEM_INFO_LIBUSB_SUPPORT,
"libusb implementat"
)
/* Main Menu > Information > Database Manager */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_DATABASE_SELECTION,
"Selecció de base de dades"
)
/* Main Menu > Information > Database Manager > Information */
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NAME,
"Nom"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DESCRIPTION,
"Descripció"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GENRE,
"Gènere"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ACHIEVEMENTS,
"Assoliments"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CATEGORY,
"Categoria"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_LANGUAGE,
"Llengua"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_REGION,
"Regió"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_CONSOLE_EXCLUSIVE,
"Exclusiu de consola"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PLATFORM_EXCLUSIVE,
"Exclusiu de plataforma"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SCORE,
"Puntuació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_MEDIA,
"Mitjà"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ARTSTYLE,
"Estil artístic"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_GAMEPLAY,
"Joc"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_NARRATIVE,
"Narrativa"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PACING,
"Ritme"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PERSPECTIVE,
"Perspectiva"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_SETTING,
"Ambientació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_VISUAL,
"Estil visual"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_VEHICULAR,
"Vehicle"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_PUBLISHER,
"Editora"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_DEVELOPER,
"Desenvolupadora"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ORIGIN,
"Origen"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_TGDB_RATING,
"Valoració TGDB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_FAMITSU_MAGAZINE_RATING,
"Valoració de la revista Famitsu"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_REVIEW,
"Valoració de la revista Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_RATING,
"Puntuació de la revista Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_EDGE_MAGAZINE_ISSUE,
"Número de la revista Edge"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_MONTH,
"Mes de publicació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_RELEASE_YEAR,
"Any de publicació"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_BBFC_RATING,
"Clasificació BBFC"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ESRB_RATING,
"Clasificació ESRB"
)
MSG_HASH(
MENU_ENUM_LABEL_VALUE_RDB_ENTRY_ELSPA_RATING,