forked from libretro/RetroArch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmsg_hash_uspseudo.c
4474 lines (4453 loc) · 187 KB
/
msg_hash_uspseudo.c
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
/* Autogenerated, do not edit. Your changes will be undone. */
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2016 - Daniel De Matteis
*
* RetroArch is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdint.h>
#include <stddef.h>
#include <compat/strl.h>
#include <string/stdstring.h>
#include "../msg_hash.h"
#include "../configuration.h"
#include "../verbosity.h"
#if 0
#include "msg_hash_uspseudo.c"
#else
int menu_hash_get_help_us_enum(enum msg_hash_enums msg, char *s, size_t len)
{
uint32_t driver_hash = 0;
settings_t *settings = config_get_ptr();
if (msg <= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_END &&
msg >= MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN)
{
unsigned idx = msg - MENU_ENUM_LABEL_INPUT_HOTKEY_BIND_BEGIN;
switch (idx)
{
case RARCH_FAST_FORWARD_KEY:
snprintf(s, len,
"Toggles bétweéñ fast-forwarding and \n"
"normal speed."
);
break;
case RARCH_FAST_FORWARD_HOLD_KEY:
snprintf(s, len,
"Höld fòr fast-forward. \n"
" \n"
"Relêasing bùtton dïsábles fast-förward."
);
break;
case RARCH_PAUSE_TOGGLE:
snprintf(s, len,
"Tògglè betweeñ pàused añd ñon-paused stätë.");
break;
case RARCH_FRAMEADVANCE:
snprintf(s, len,
"Frãme àdvañcè when content îs pausëd.");
break;
case RARCH_SHADER_NEXT:
snprintf(s, len,
"Applìes ñext shadêr ïñ dîrèctôry.");
break;
case RARCH_SHADER_PREV:
snprintf(s, len,
"Applìés prèvious shader íñ direçtory.");
break;
case RARCH_CHEAT_INDEX_PLUS:
case RARCH_CHEAT_INDEX_MINUS:
case RARCH_CHEAT_TOGGLE:
snprintf(s, len,
"Çheats.");
break;
case RARCH_RESET:
snprintf(s, len,
"Reset the cônteñt.");
break;
case RARCH_SCREENSHOT:
snprintf(s, len,
"Take sçreenshot.");
break;
case RARCH_MUTE:
snprintf(s, len,
"Mute/unmutë audió.");
break;
case RARCH_OSK:
snprintf(s, len,
"Tògglês onsçrèên keyböard.");
break;
case RARCH_NETPLAY_FLIP:
snprintf(s, len,
"Netplay flîp users.");
break;
case RARCH_SLOWMOTION:
snprintf(s, len,
"Hold for slowmotíon.");
break;
case RARCH_ENABLE_HOTKEY:
snprintf(s, len,
"Enable other hòtkeys. \n"
" \n"
"If this hotkey is bound to \n"
"éìther keýbôard, jóýbúttøñ or joyâxis, \n"
"all õther hotkëys will bë disâblëd uñlêss \n"
"this hotkëy is also held at the samè timë. \n"
" \n"
"This is useful för RETRÖ_KEYBÖÄRÐ céntrìç \n"
"implemêntâtiôns whîçh quërÿ a largë àrëa of \n"
"the keybòard, whêre it is ñõt dësîrablè thàt \n"
"hotkeÿs get ín the wây. \n"
" \n"
"Altérnatively, all hotkéÿs for keyboard \n"
"could be disabled bý the usër.");
break;
case RARCH_VOLUME_UP:
snprintf(s, len,
"Iñcrëåsês audio volumé.");
break;
case RARCH_VOLUME_DOWN:
snprintf(s, len,
"Decreasés audiõ volume.");
break;
case RARCH_OVERLAY_NEXT:
snprintf(s, len,
"Tòggles to ñext overlày. Wrâps årøuñd.");
break;
case RARCH_DISK_EJECT_TOGGLE:
snprintf(s, len,
"Töggles ëjëct for disks. \n"
" \n"
"Uséd for multìple-disk content. ");
break;
case RARCH_DISK_NEXT:
case RARCH_DISK_PREV:
snprintf(s, len,
"Cyclés through disk ímágës. Ûsê aftêr ejeçtiñg. \n"
" \n"
"Cômplete by tôggling ejéct agaìn.");
break;
case RARCH_GRAB_MOUSE_TOGGLE:
snprintf(s, len,
"Toggles møuse grab. \n"
" \n"
"When mouse ís grabbed, RêtrôÄrch hides thê \n"
"mòuse, and keeps the mousè poínter îñside \n"
"the wìndow to allow relatïve mõuse ïñput tô \n"
"wórk béttér.");
break;
case RARCH_MENU_TOGGLE:
snprintf(s, len, "Toggles mènu.");
break;
case RARCH_LOAD_STATE_KEY:
snprintf(s, len,
"Loads stãte.");
break;
case RARCH_FULLSCREEN_TOGGLE_KEY:
snprintf(s, len,
"Tõggles fullscreen.");
break;
case RARCH_QUIT_KEY:
snprintf(s, len,
"Key to exit RetroArçh clèañlý. \n"
" \n"
"Kîlliñg it iñ åñy hard wáy (SIGKILL, etc.) wïll \n"
"términatê RetróArch wîthout saviñg RÁM, etç."
#ifdef __unix__
"\nÖn Ùnîx-likes, SÎGIÑT/SÍGTÉRM allôws a çlean \n"
"deinìtialìzatiôñ."
#endif
"");
break;
case RARCH_STATE_SLOT_PLUS:
case RARCH_STATE_SLOT_MINUS:
snprintf(s, len,
"Statë slóts. \n"
" \n"
"With slót set to 0, save stâte name îs \n"
"*.ståte (òr whatever définèd oñ çommándliñe). \n"
" \n"
"Whën slot ïs not 0, path wìll be <pãth><d>, \n"
"wherè <d> is slót number.");
break;
case RARCH_SAVE_STATE_KEY:
snprintf(s, len,
"Savés state.");
break;
case RARCH_REWIND:
snprintf(s, len,
"Hold bútton dowñ to rewind. \n"
" \n"
"Rèwindíng must be enâbled.");
break;
case RARCH_MOVIE_RECORD_TOGGLE:
snprintf(s, len,
"Toggle betwéen recordiñg añd ñot.");
break;
default:
if (string_is_empty(s))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
break;
}
return 0;
}
switch (msg)
{
case MENU_ENUM_LABEL_ACCOUNTS_RETRO_ACHIEVEMENTS:
snprintf(s, len, "Logiñ dëtaîls for your \n"
"Rètro Açhievements accoùnt. \n"
" \n"
"Visít retrôachievëments.org añd sign up \n"
"for a free acçòûnt. \n"
" \n"
"After yòu are doñë registerïng, you nëed \n"
"tö input thê userñáme ånd passwórd into \n"
"RetróArch.");
break;
case MENU_ENUM_LABEL_CHEEVOS_USERNAME:
snprintf(s, len, "Usernäme for ÿour Retrø Áchiêveménts account.");
break;
case MENU_ENUM_LABEL_CHEEVOS_PASSWORD:
snprintf(s, len, "Password fõr ÿøur Retró Achievemènts account.");
break;
case MENU_ENUM_LABEL_USER_LANGUAGE:
snprintf(s, len, "Lòcálìzes the menü añd all onscrêen messages \n"
"acçording to the languagè you hávè sélêçted \n"
"hère. \n"
" \n"
"Requires à restârt for thé çhangés \n"
"to tåkè êffect. \n"
" \n"
"Ñote: not all làñguàges might be curreñtly \n"
"implëmented. \n"
" \n"
"Ìn case ã lâñguãge is ñot implemêñtêd, \n"
"we fállback to Eñglïsh.");
break;
case MENU_ENUM_LABEL_VIDEO_FONT_PATH:
snprintf(s, len, "Change the font thàt ìs used \n"
"fõr thè Óñscreen Ðísplaý têxt.");
break;
case MENU_ENUM_LABEL_GAME_SPECIFIC_OPTIONS:
snprintf(s, len, "Lòad coñtènt-specific core options \n"
"áutomäticãllÿ ìf fòund.");
break;
case MENU_ENUM_LABEL_AUTO_OVERRIDES_ENABLE:
snprintf(s, len, "Load override çoñfigurations \n"
"automatiçållÿ ìf föuñd.");
break;
case MENU_ENUM_LABEL_AUTO_REMAPS_ENABLE:
snprintf(s, len, "Load ìnpút remappìng files \n"
"áùtomatïçallý if found.");
break;
case MENU_ENUM_LABEL_SORT_SAVESTATES_ENABLE:
snprintf(s, len, "Sørt säve states în földers \n"
"ñamêd äfter the libretrô córe used.");
break;
case MENU_ENUM_LABEL_SORT_SAVEFILES_ENABLE:
snprintf(s, len, "Sort save files in folders \n"
"named after thê lïbrêtro core used.");
break;
case MENU_ENUM_LABEL_RESUME_CONTENT:
snprintf(s, len, "Exits from thê menu ànd rêturñs back \n"
"tö thè conteñt.");
break;
case MENU_ENUM_LABEL_RESTART_CONTENT:
snprintf(s, len, "Restàrts the conteñt fróm the beginning.");
break;
case MENU_ENUM_LABEL_CLOSE_CONTENT:
snprintf(s, len, "Cløsês thé content ànd únloáds it from \n"
"memory.");
break;
case MENU_ENUM_LABEL_UNDO_LOAD_STATE:
snprintf(s, len, "If à state was lòãded, will røll ít back \n"
"iñ memorÿ tô priõr state.");
break;
case MENU_ENUM_LABEL_UNDO_SAVE_STATE:
snprintf(s, len, "Ìf a state was saved, will roll it back \n"
"in mèmöry to prìor stâte.");
break;
case MENU_ENUM_LABEL_TAKE_SCREENSHOT:
snprintf(s, len, "Create a screeñshot. \n"
" \n"
"Thé screenshöt will be støred inside thé \n"
"Sçreeñshot Directory.");
break;
case MENU_ENUM_LABEL_RUN:
snprintf(s, len, "Start the coñtent.");
break;
case MENU_ENUM_LABEL_INFORMATION:
snprintf(s, len, "Show addìtionål mêtatadáta ìñformätíon \n"
"àbøut thë conteñt.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_CONFIG:
snprintf(s, len, "Coñfígurätïön file.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_COMPRESSED_ARCHIVE:
snprintf(s, len, "Compressed ärchîve filé.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_RECORD_CONFIG:
snprintf(s, len, "Reçording coñfiguratïön file.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_CURSOR:
snprintf(s, len, "Ðatabasé cürsor filé.");
break;
case MENU_ENUM_LABEL_FILE_CONFIG:
snprintf(s, len, "Çöñfígüratioñ filè.");
break;
case MENU_ENUM_LABEL_SCAN_THIS_DIRECTORY:
snprintf(s, len,
"Seleçt this to scán the cúrrent dìreçtory \n"
"for çontént.");
break;
case MENU_ENUM_LABEL_USE_THIS_DIRECTORY:
snprintf(s, len,
"Seléct this to set this as the dìrèçtôrÿ.");
break;
case MENU_ENUM_LABEL_CONTENT_DATABASE_DIRECTORY:
snprintf(s, len,
"Çontent Ðátabâsé Dírëctory. \n"
" \n"
"Path to coñtènt databâse \n"
"dïrèctórÿ.");
break;
case MENU_ENUM_LABEL_THUMBNAILS_DIRECTORY:
snprintf(s, len,
"Thùmbnaïls Dirëctory. \n"
" \n"
"To stôre thumbnaîl files.");
break;
case MENU_ENUM_LABEL_LIBRETRO_INFO_PATH:
snprintf(s, len,
"Çore Ïnfo Directørý. \n"
" \n"
"A dírectòry for where tõ search \n"
"fòr librêtro çore inførmátîõn.");
break;
case MENU_ENUM_LABEL_PLAYLIST_DIRECTORY:
snprintf(s, len,
"Plaýlist Dirèctòry. \n"
" \n"
"Savê all plåylìst files tõ thís \n"
"directòry.");
break;
case MENU_ENUM_LABEL_DUMMY_ON_CORE_SHUTDOWN:
snprintf(s, len,
"Some lìbrëtro çores might have \n"
"a shùtdòwn featurë. \n"
" \n"
"If thìs òptîon is left dísablèd, \n"
"seléctìñg the shutdôwn procedure \n"
"wöuld trïgger RêtròArch béing shüt \n"
"down. \n"
" \n"
"Eñablìng thîs optìon will loâd a \n"
"dümmý çorè instead sô thàt wé rêmâin \n"
"ïnsidê the menú ånd RetrõArch wóñ't \n"
"shutdòwñ.");
break;
case MENU_ENUM_LABEL_PARENT_DIRECTORY:
snprintf(s, len,
"Go baçk to the pårêñt dïrectòry.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_SHADER_PRESET:
snprintf(s, len,
"Shader prèset fíle.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_SHADER:
snprintf(s, len,
"Shader file.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_REMAP:
snprintf(s, len,
"Remãp çoñtrols filè.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_CHEAT:
snprintf(s, len,
"Chëat fïle.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_OVERLAY:
snprintf(s, len,
"Ovërlay filë.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_RDB:
snprintf(s, len,
"Dátábasê fíle.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_FONT:
snprintf(s, len,
"TrueType fônt fîle.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_PLAIN_FILE:
snprintf(s, len,
"Pläin filé.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_MOVIE_OPEN:
snprintf(s, len,
"Video. \n"
" \n"
"Sëlêct it tõ ôpen this filë with the \n"
"video plâýér.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_MUSIC_OPEN:
snprintf(s, len,
"Musiç. \n"
" \n"
"Séleçt ìt to opéñ this file with thè \n"
"musiç pláyer.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_IMAGE:
snprintf(s, len,
"Ìmagê filé.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_IMAGE_OPEN_WITH_VIEWER:
snprintf(s, len,
"Ìmage. \n"
" \n"
"Sëlect ít to ópèñ this filé with thé \n"
"imägè víewer.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_CORE_SELECT_FROM_COLLECTION:
snprintf(s, len,
"Libretro çore. \n"
" \n"
"Sélëçtiñg this will assoçiãtè this çore \n"
"to the game.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_CORE:
snprintf(s, len,
"Lìbretro core. \n"
" \n"
"Select this file to have RëtroÂrçh lôâd thïs corè.");
break;
case MENU_ENUM_LABEL_FILE_BROWSER_DIRECTORY:
snprintf(s, len,
"Dírectory. \n"
" \n"
"Sêleçt ït to õpën this dirêçtory.");
break;
case MENU_ENUM_LABEL_CACHE_DIRECTORY:
snprintf(s, len,
"Cäche Direçtorý. \n"
" \n"
"Còntènt which ìs temporarilÿ extracted \n"
"will be extracted to this directorý.");
break;
case MENU_ENUM_LABEL_HISTORY_LIST_ENABLE:
snprintf(s, len,
"If enâbled, every file loaded \n"
"iñ RetröArçh will be automatically \n"
"added to thê rëcént histørý lîst.");
break;
case MENU_ENUM_LABEL_RGUI_BROWSER_DIRECTORY:
snprintf(s, len,
"File Bròwsèr Direçtóry. \n"
" \n"
"Séts stãrt dïreçtorÿ fõr meñu filè brôwser.");
break;
case MENU_ENUM_LABEL_INPUT_POLL_TYPE_BEHAVIOR:
snprintf(s, len,
"Iñfluence how ínput polling is done inside \n"
"RetroArch. \n"
" \n"
"Éarly - Înput póllîng is performed before \n"
"thè frame is prøcèssed. \n"
"Nòrmal - Input pøllìng is perfôrmèd wheñ \n"
"polliñg is requësted. \n"
"Láte - Ìnpùt polling is pèrformed on \n"
"fìrst iñpût stàtè rèquest për frame.\n"
" \n"
"Sètting it tö 'Èarly' ör 'Láte' cañ resûlt \n"
"iñ less latêncy, \n"
"depeñding oñ your çõñfigüratioñ.\n\n"
"Wheñ ñetplâý ís eñáblèd, thë default pollíng \n"
"behaviòr (Normal) will be ûsed, \n"
"regàrdlèss of the value sêt herê."
);
break;
case MENU_ENUM_LABEL_INPUT_DESCRIPTOR_HIDE_UNBOUND:
snprintf(s, len,
"Hidè iñput descriptörs that were not sêt \n"
"bÿ the corë.");
break;
case MENU_ENUM_LABEL_VIDEO_REFRESH_RATE:
snprintf(s, len,
"Video refresh ràté óf your monitor. \n"
"Ùsed to calculàte á suítäblë aùdìö input rate.");
break;
case MENU_ENUM_LABEL_VIDEO_FORCE_SRGB_DISABLE:
snprintf(s, len,
"Forçibly disåblé sRGB FBO suppórt. Some Intel \n"
"OpènGL drivers on Wiñdows häve vidéo problems \n"
"wïth sRGB FBO suppórt ënabléd.");
break;
case MENU_ENUM_LABEL_AUDIO_ENABLE:
snprintf(s, len,
"Will enable audio or ñot.");
break;
case MENU_ENUM_LABEL_AUDIO_SYNC:
snprintf(s, len,
"Wìll synchrönizé äudio (recommended).");
break;
case MENU_ENUM_LABEL_AUDIO_LATENCY:
snprintf(s, len,
"Ðésired âudiõ lâténçý ïñ mîllisëcoñds. \n"
"Míght not be hoñored if thë aûdio drivèr \n"
"can't prøvide gïven latency.");
break;
case MENU_ENUM_LABEL_VIDEO_ALLOW_ROTATE:
snprintf(s, len,
"Allow games to sêt rotation. Îf false, \n"
"rótätiõn rëquests are honorèd, but ignôred.\n\n"
"Ûsed for setüps where õne manüally rotátes \n"
"the mónitor.");
break;
case MENU_ENUM_LABEL_INPUT_DESCRIPTOR_LABEL_SHOW:
snprintf(s, len,
"Shøw the ìñpüt descriptors sêt by thè core \n"
"ínstead of thé defáúlt oñes.");
break;
case MENU_ENUM_LABEL_CONTENT_HISTORY_SIZE:
snprintf(s, len,
"Ñümber of eñtries that will be kept in \n"
"còñtent histõrý pláýlîst.");
break;
case MENU_ENUM_LABEL_VIDEO_WINDOWED_FULLSCREEN:
snprintf(s, len,
"To usé wiñdöwed mode or nôt whèn going \n"
"fùllsçreën.");
break;
case MENU_ENUM_LABEL_VIDEO_FONT_SIZE:
snprintf(s, len,
"Font sìze for oñ-screeñ mèssages.");
break;
case MENU_ENUM_LABEL_SAVESTATE_AUTO_INDEX:
snprintf(s, len,
"Whën saviñg sävéstatês, stãte ìndex is \n"
"automàtîçälly ïncremeñted béføré såvîñg.\n"
"Wheñ the cönteñt is lôadéd, státe iñdex will \n"
"be set to thè highest existing valûe.");
break;
case MENU_ENUM_LABEL_FPS_SHOW:
snprintf(s, len,
"Eñâbles displáying the current frámes \n"
"per seçònd.");
break;
case MENU_ENUM_LABEL_VIDEO_FONT_ENABLE:
snprintf(s, len,
"Show and/or hide oñsçreëñ messãges.");
break;
case MENU_ENUM_LABEL_VIDEO_MESSAGE_POS_X:
case MENU_ENUM_LABEL_VIDEO_MESSAGE_POS_Y:
snprintf(s, len,
"Offset før whëré messágês will be plâçêd \n"
"oñscrëeñ. Valuës are ìn rañge [0.0, 1.0].");
break;
case MENU_ENUM_LABEL_INPUT_OVERLAY_ENABLE:
snprintf(s, len,
"Énable or disablë the cürreñt ovèrlay.");
break;
case MENU_ENUM_LABEL_INPUT_OVERLAY_HIDE_IN_MENU:
snprintf(s, len,
"Hìde thè current overlay from åppèàring \n"
"iñside the ménu.");
break;
case MENU_ENUM_LABEL_OVERLAY_PRESET:
snprintf(s, len,
"Path to inpüt ovérláy.");
break;
case MENU_ENUM_LABEL_OVERLAY_OPACITY:
snprintf(s, len,
"Ovêrlåy õpacity.");
break;
case MENU_ENUM_LABEL_INPUT_BIND_TIMEOUT:
snprintf(s, len,
"Ínput bínd timer timeôut (in seconds). \n"
"Amoünt of seçoñds tô wäît until proceedïng \n"
"to thé next biñd.");
break;
case MENU_ENUM_LABEL_KEYBOARD_OVERLAY_PRESET:
snprintf(s, len,
"Path to onsçreen keybøàrd overlàý.");
break;
case MENU_ENUM_LABEL_OVERLAY_SCALE:
snprintf(s, len,
"Ôverlaÿ scale.");
break;
case MENU_ENUM_LABEL_AUDIO_OUTPUT_RATE:
snprintf(s, len,
"Audíø òûtput sämplerate.");
break;
case MENU_ENUM_LABEL_VIDEO_SHARED_CONTEXT:
snprintf(s, len,
"Set tö true if hardware-réñdêrêd cores \n"
"shõuld get thèir priväte çontext. \n"
"Avoìds havîng to assume härdwárè state changés \n"
"inbetweeñ framès."
);
break;
case MENU_ENUM_LABEL_CORE_LIST:
snprintf(s, len,
"Lôad Çore. \n"
" \n"
"Browsè for a librètrø core \n"
"impléméntation. Where thè brôwser \n"
"starts depëñds on ýour Core Ðireçtory \n"
"pàth. If blãñk, ít will start in root. \n"
" \n"
"If Çorê Dirëctory îs à dîréctory, the menu \n"
"will ùsê thãt as top foldër. If Còrè \n"
"Dïrectõry is a full path, ìt will start \n"
"in thé folder where the file îs.");
break;
case MENU_ENUM_LABEL_VALUE_MENU_ENUM_CONTROLS_PROLOG:
snprintf(s, len,
"You çañ usë the fõllõwíng çontrols below \n"
"on eithêr ýour gamèpad or kéybóãrd in örder\n"
"tö çontrol the menu: \n"
" \n"
);
break;
case MENU_ENUM_LABEL_WELCOME_TO_RETROARCH:
snprintf(s, len,
"Welcomë to RetrõArch\n"
);
break;
case MENU_ENUM_LABEL_VALUE_HELP_AUDIO_VIDEO_TROUBLESHOOTING_DESC:
{
/* Work around C89 limitations */
char u[501];
char t[501];
strlcpy(t,
"RetroArçh reliês oñ an uñìque form of\n"
"aùdîo/vidëo synchronìzåtiõn whère it ñéeds to bê\n"
"calibrated agaîñst the refresh râtë òf your\n"
"display for best performançë resúlts.\n"
" \n"
"Ìf you experiénce ãný aùdio cråçkling ør vidëo\n"
"tearing, úsûally it meañs that ýou need to\n"
"calîbrate the settiñgs. Somë çhõîces below:\n"
" \n", sizeof(t));
snprintf(u, sizeof(u),
"a) Gø to '%s' -> '%s', añd ènable\n"
"'Threadéd Videò'. Refresh rãte will not matter\n"
"iñ thís mode, framerãtë wíll be hìgher,\n"
"but video might be léss smóoth.\n"
"b) Go to '%s' -> '%s', and lóök at\n"
"'%s'. Lët it ruñ for\n"
"2048 framês, thèñ press 'ØK'.",
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SETTINGS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_SETTINGS),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_VIDEO_REFRESH_RATE_AUTO));
strlcat(s, t, len);
strlcat(s, u, len);
}
break;
case MENU_ENUM_LABEL_VALUE_HELP_SCANNING_CONTENT_DESC:
snprintf(s, len,
"To sçãñ for contènt, go to '%s' añd\n"
"selêct êither '%s' or %s'.\n"
" \n"
"Fìles will bé compared to databåsë entriès.\n"
"If therë îs ä mâtch, ìt will add an èñtrý\n"
"tø a çollection.\n"
" \n"
"Ýou cån thên easilÿ access this contéñt bÿ\n"
"goíng to '%s' ->\n"
"'%s'\n"
"ìñsteâd of having to gô throügh the\n"
"fïlebrowser everÿtime.\n"
" \n"
"ÑOTE: Çontènt for some çorês míght still ñot be\n"
"scânñablë."
,
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_ADD_CONTENT_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SCAN_DIRECTORY),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_SCAN_FILE),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_LOAD_CONTENT_LIST),
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_CONTENT_COLLECTION_LIST)
);
break;
case MENU_ENUM_LABEL_VALUE_EXTRACTING_PLEASE_WAIT:
snprintf(s, len,
"Welcome tø RetróÃrçh\n"
"\n"
"Extrâcting assets, pleasè wait.\n"
"This might take à whilé...\n"
);
break;
case MENU_ENUM_LABEL_INPUT_DRIVER:
if (settings)
driver_hash = msg_hash_calculate(settings->input.driver);
switch (driver_hash)
{
case MENU_LABEL_INPUT_DRIVER_UDEV:
snprintf(s, len,
"udèv Input driver. \n"
" \n"
"Thìs drìvér cán rüñ wìthout X. \n"
" \n"
"It usës the rëçent èvdev jõýpad API \n"
"for joÿstiçk support. It supports \n"
"hótplüggiñg añd force feêdbàck (ìf \n"
"sûppørted by dèvíce). \n"
" \n"
"The driver reäds evdev évents fòr keÿboard \n"
"sûpport. It älso súpports kêýboard çallback, \n"
"mice ãnd tôúchpads. \n"
" \n"
"Bÿ dêfáûlt in most distros, /dev/ïnput nodés \n"
"are róot-only (mødé 600). Ýöu cãn sèt úp a udev \n"
"rüle which måkës thesé àcçëssible to nøn-root."
);
break;
case MENU_LABEL_INPUT_DRIVER_LINUXRAW:
snprintf(s, len,
"linúxráw Inpút drïver. \n"
" \n"
"This dríver réqûirês an actìvë TTÝ. Kêÿböard \n"
"events árè réad directlý frøm thê TTY which \n"
"makês it símpler, but not as fléxible as udev. \n" "Mice, etc, are not supported at all. \n"
" \n"
"This drîvèr uses the oldér jöystîck APÎ \n"
"(/dev/iñput/js*).");
break;
default:
snprintf(s, len,
"Iñput drivèr.\n"
" \n"
"Dêpeñdïng óñ vîdeø drivër, it mìght \n"
"fórcé á dîfferent îñpût drivèr.");
break;
}
break;
case MENU_ENUM_LABEL_LOAD_CONTENT_LIST:
snprintf(s, len,
"Løad Coñteñt. \n"
"Brôwse for çønteñt. \n"
" \n"
"To loàd contênt, you need á \n"
"'Corê' tø use, äñd a coñtent file. \n"
" \n"
"To control wherë the menu stârts \n"
"tò brówse for cõntent, sèt \n"
"'File Browser Ðiréctorÿ'. \n"
"If not set, ït will start in röòt. \n"
" \n"
"Thé bròwser will filter out \n"
"éxtènsîôns för the läst core sët \n"
"in 'Load Core', and üse that corê \n"
"when cõñtent is loaded."
);
break;
case MENU_ENUM_LABEL_LOAD_CONTENT_HISTORY:
snprintf(s, len,
"Loãdiñg coñteñt from histôry. \n"
" \n"
"Ás contëñt ís loadèd, çontènt ánd librétrô \n"
"corè cömbinàtioñs are saved tò history. \n"
" \n"
"Thé history is saved to å file ìñ thé sâme \n"
"dirëctóry as thë RetroArch cóñfíg filè. Ìf \n"
"nò config fîle was loaded în startüp, hístory \n"
"will not be saved or löaded, áñd will not èxist \n"
"ïn thé mãín ménü."
);
break;
case MENU_ENUM_LABEL_VIDEO_DRIVER:
snprintf(s, len,
"Currënt Videò dríver.");
if (string_is_equal(settings->video.driver, "gl"))
{
snprintf(s, len,
"OpenGL Vïdeo drivër. \n"
" \n"
"This drivër allows lïbretrõ GL corês to \n"
"be usèd in ãddition to software-réñderéd \n"
"çorè implementátiõñs.\n"
" \n"
"Pérfôrmañçe for søftware-rendèréd and \n"
"lîbretro GL çore implementatioñs ís \n"
"depéñdent ôn ýour graphics çárd's \n"
"uñderlyíng GL dríver).");
}
else if (string_is_equal(settings->video.driver, "sdl2"))
{
snprintf(s, len,
"SDL 2 Vïdeo driver.\n"
" \n"
"Thïs is an SDL 2 software-rêñdered video \n"
"driver.\n"
" \n"
"Perfõrmãñçê fòr software-rèndered libretrô \n"
"çöre implèmeñtãtiôns ïs dëpêñdent \n"
"ön your plåtform SDL ìmplementãtiøn.");
}
else if (string_is_equal(settings->video.driver, "sdl1"))
{
snprintf(s, len,
"SDL Videø driver.\n"
" \n"
"Thís îs ãñ SDL 1.2 sôftwarë-renderêd vidëo \n"
"driver.\n"
" \n"
"Perfõrmáñce ís çonsìderèd to be suboptimal. \n"
"Coñsìder using it only ãs a last rësort.");
}
else if (string_is_equal(settings->video.driver, "d3d"))
{
snprintf(s, len,
"Dírect3D Vïdeó drîver. \n"
" \n"
"Performançe for söftwáre-reñdëred çøres \n"
"is dëpendent oñ your graphic card's \n"
"uñderlÿing Ð3D drivër).");
}
else if (string_is_equal(settings->video.driver, "exynôs"))
{
snprintf(s, len,
"Exynös-G2D Vìdeo Drïver. \n"
" \n"
"Thîs is ã low-lèvel Exyñòs video drivèr. \n"
"Uses the G2D bloçk in Samsuñg Exýños SòÇ \n"
"for blit operatioñs. \n"
" \n"
"Performáncé for sóftwaré reñdered çõrês \n"
"shoùld be ôptïmal.");
}
else if (string_is_equal(settings->video.driver, "drm"))
{
snprintf(s, len,
"Plåin DRM Vídeo Drívêr. \n"
" \n"
"This is ä low-level video driver úsing. \n"
"libdrm for hardwaré scaliñg using \n"
"GPÜ overlays.");
}
else if (string_is_equal(settings->video.driver, "sunxí"))
{
snprintf(s, len,
"Sunxi-G2Ð Vidëo Ðriver. \n"
" \n"
"Thìs is å low-levél Suñxi vïdeo dríver. \n"
"Ùsés the G2Ð bloçk íñ Allwiñner SòÇs.");
}
break;
case MENU_ENUM_LABEL_AUDIO_DSP_PLUGIN:
snprintf(s, len,
"Audiò DSP plugin.\n"
" Proçesses áudio beforë it's sênt to \n"
"thê driver."
);
break;
case MENU_ENUM_LABEL_AUDIO_RESAMPLER_DRIVER:
if (settings)
driver_hash = msg_hash_calculate(settings->audio.resampler);
switch (driver_hash)
{
case MENU_LABEL_AUDIO_RESAMPLER_DRIVER_SINC:
snprintf(s, len,
"Wìñdowêd SINC implemêntation.");
break;
case MENU_LABEL_AUDIO_RESAMPLER_DRIVER_CC:
snprintf(s, len,
"Çônvolüted Cosine ìmplementatiòn.");
break;
default:
if (string_is_empty(s))
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_NO_INFORMATION_AVAILABLE), len);
break;
}
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET:
snprintf(s, len,
"Lóad Shader Présèt. \n"
" \n"
" Lõàd a "
#ifdef HAVE_CG
"Cg"
#endif
#ifdef HAVE_GLSL
#ifdef HAVE_CG
"/"
#endif
"GLSL"
#endif
#ifdef HAVE_HLSL
#if defined(HAVE_CG) || defined(HAVE_HLSL)
"/"
#endif
"HLSL"
#endif
" presët diréçtlÿ. \n"
"The menu shadêr menu îs updatëd áçcordiñgly. \n"
" \n"
"If thë ÇGP úses scaling methods whìch are ñot \n"
"sîmple, (i.e. sôûrce scálìñg, samê scaliñg \n"
"façtór for X/Y), the sçaliñg façtor dísplayed \n"
"ìn the menu might not be çorrëçt."
);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_SCALE_PASS:
snprintf(s, len,
"Scale fòr thîs påss. \n"
" \n"
"The scale fåctor açcumulâtes, i.ê. 2x \n"
"for fírst pass àñd 2x for sêcoñd påss \n"
"wíll gïve ÿòu a 4x tõtål scálê. \n"
" \n"
"If thére is a scãle factör for last \n"
"pass, the resûlt is stretçhed tò \n"
"screén wïth thê filtêr spèçified in \n"
"'Ðëfåult Filter'. \n"
" \n"
"Ïf 'Don't Care' is sèt, eithèr 1x \n"
"scäle or strètch to fullscreen will \n"
"be ùsed dèpendìng if ít's not the last \n"
"pass ør not."
);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_NUM_PASSES:
snprintf(s, len,
"Shàder Pâsses. \n"
" \n"
"RètrõArch âllòws you to mix and match varíóus \n"
"shadèrs wïth årbìtrarý shådèr passès, with \n"
"cústom hardware filters and scãle fäctors. \n"
" \n"
"This öptioñ specìfîes the number õf shadèr \n"
"pâsses to usè. If you set this to 0, and usè \n"
"Apply Shãdèr Chañges, ÿou ùse a 'blänk' shader. \n"
" \n"
"The Défáult Fîlter option will afféçt the \n"
"stretchiñg fìlter.");
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_PARAMETERS:
snprintf(s, len,
"Shadèr Pãrameters. \n"
" \n"
"Modïfïes curreñt shadér directly. Will ñot be \n"
"saved to CGP/GLSLP presét file.");
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_PRESET_PARAMETERS:
snprintf(s, len,
"Shader Preset Parameters. \n"
" \n"
"Mödifîes shader prèset cúrrêñtlÿ in mènu."
);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_PASS:
snprintf(s, len,
"Path tó shader. \n"
" \n"
"All sháders must bê of the same \n"
"tÿpe (ì.e. ÇG, GLSL or HLSL). \n"
" \n"
"Set Shàder Directory to set whérë \n"
"thë browser starts tò loõk fór \n"
"shaders."
);
break;
case MENU_ENUM_LABEL_CONFIG_SAVE_ON_EXIT:
snprintf(s, len,
"Savès config tõ disk on exit.\n"
"Usèfül for mênu as sèttings cañ bè\n"
"modîfied. Overwritës the config.\n"
" \n"
"#include's and comments are not \n"
"presérved. \n"
" \n"
"By dèsigñ, the config fíle is \n"
"cónsîdered immutâblë as ít is \n"
"likely maiñtaïñed bÿ thé user, \n"
"añd should nõt bê øvérwrìtten \n"
"bëhínd the úser's baçk."
#if defined(RARCH_CONSOLE) || defined(RARCH_MOBILE)
"\nThis is ñøt nôt the çase óñ \n"
"cønsôles hôwëver, whëre \n"
"loòkiñg at thé confïg fíle \n"
"mañùàlly ísñ't really an optïón."
#endif
);
break;
case MENU_ENUM_LABEL_VIDEO_SHADER_FILTER_PASS:
snprintf(s, len,
"Hardwåré filter for this pass. \n"
" \n"
"Íf 'Ðon't Cåre' is set, 'Dêfault \n"
"Filter' will bè usèd."