-
Notifications
You must be signed in to change notification settings - Fork 348
Expand file tree
/
Copy pathen-US.json
More file actions
2358 lines (2349 loc) · 103 KB
/
Copy pathen-US.json
File metadata and controls
2358 lines (2349 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Language": {
"Name": "English",
"Region": "United States",
"ListDelimiter": {
"Default": ", ",
"TwoItem": " and ",
"Last": ", and "
}
},
"Enum": {
"Difficulty": {
"Beginner": "Beginner",
"Easy": "Easy",
"Hard": "Hard",
"Expert": "Expert",
"ExpertPlus": "Expert+",
"Medium": "Medium"
},
"GameMode": {
"FiveFretGuitar": "Guitar (5-Fret)",
"SixFretGuitar": "Guitar (6-Fret)",
"EliteDrums": "MIDI Drumkit",
"FourLaneDrums": "Drumkit (4-Lane, Pro)",
"FiveLaneDrums": "Drumkit (5-Lane)",
"ProGuitar": "Pro Guitar (17-Fret, 22-Fret)",
"ProKeys": "Keys (5-Lane, Pro)",
"Menu": "Menu",
"Vocals": "Vocals"
},
"Instrument": {
"FiveFretGuitar": "Guitar",
"FiveFretBass": "Bass",
"FiveFretRhythm": "Rhythm",
"FiveFretCoopGuitar": "Co-op",
"Keys": "Keys",
"SixFretGuitar": "Guitar",
"SixFretBass": "Bass",
"SixFretRhythm": "Rhythm",
"SixFretCoopGuitar": "Co-op",
"FourLaneDrums": "4-Lane Drums",
"ProDrums": "Pro Drums",
"FiveLaneDrums": "5-Lane Drums",
"EliteDrums": "Elite Drums",
"ProGuitar_17Fret": "Pro Guitar (17-Fret)",
"ProGuitar_22Fret": "Pro Guitar (22-Fret)",
"ProBass_17Fret": "Pro Bass (17-Fret)",
"ProBass_22Fret": "Pro Bass (22-Fret)",
"ProKeys": "Pro Keys",
"Vocals": "Vocals",
"Harmony": "Harmony",
"Dj": "DJ",
"Band": "Band"
},
"Modifier": {
"None": "None",
"AllStrums": "All Strums",
"AllHopos": "All HOPOs",
"AllTaps": "All Taps",
"HoposToTaps": "HOPOs To Taps",
"NoteShuffle": "Note Shuffle",
"NoKicks": "No Kicks",
"TapsToHopos": "Taps to HOPOs",
"UnpitchedOnly": "Unpitched Only",
"NoDynamics": "No Dynamics",
"NoVocalPercussion" : "No Percussion",
"RangeCompress": "No Range Shifts",
"OpensToGreens": "Opens To Greens"
},
"SortAttribute": {
"Album": "Album",
"Artist": "Artist",
"Artist_Album": "Artist - Album",
"Charter": "Charter",
"Genre": "Genre",
"Name": "Song",
"Folder": "Folder",
"SongLength": "Duration",
"Source": "Source",
"Subgenre": "Subgenre",
"Stars": "Stars",
"Unspecified": "None",
"Year": "Year",
"DateAdded": "Date Added",
"Playable": "Playable Songs",
"FiveFretGuitar": "Guitar (5-Fret)",
"FiveFretBass": "Bass (5-Fret)",
"FiveFretRhythm": "Rhythm (5-Fret)",
"FiveFretCoop": "Co-op (5-Fret)",
"Keys": "Keys",
"SixFretGuitar": "Guitar (6-Fret)",
"SixFretBass": "Bass (6-Fret)",
"SixFretRhythm": "Rhythm (6-Fret)",
"SixFretCoop": "Co-op (6-Fret)",
"FourLaneDrums": "Drums (4-Lane)",
"ProDrums": "Pro Drums",
"FiveLaneDrums": "Drums (5-Lane)",
"EliteDrums": "Elite Drums",
"ProGuitar_17": "Pro Guitar (17-Fret)",
"ProGuitar_22": "Pro Guitar (22-Fret)",
"ProBass_17": "Pro Bass (17-Fret)",
"ProBass_22": "Pro Bass (22-Fret)",
"ProKeys": "Pro Keys",
"Vocals": "Vocals",
"Harmony": "Harmony",
"Band": "Band",
"Playcount": "Play Count",
"Random": "Random"
},
"StarPowerActivationType" : {
"Freestyle": "Freestyle",
"RightmostLane": "Rightmost Lane",
"RightmostNote": "Rightmost Note",
"AllNotes": "All Notes"
},
"OpenLaneDisplayType" : {
"Never": "Never",
"Always": "Always",
"IfChartContainsOpens": "If chart contains open notes"
}
},
"Menu": {
"Calibrator": {
"Detected": "Detected",
"NotEnoughData": "There isn't enough data to get an accurate result.\nPress back to exit."
},
"Common": {
"Apply": "Apply",
"Back": "Back",
"Cancel": "Cancel",
"Close": "Close",
"Confirm": "Confirm",
"Continue": "Continue",
"Toggle": "Toggle",
"On": "On",
"Off": "Off",
"Start": "Start",
"Up": "Up",
"Down": "Down",
"Left": "Left",
"Right": "Right",
"Next": "Next",
"Previous": "Previous",
"NextTab": "Next Tab",
"PreviousTab": "Previous Tab",
"Increase": "Increase",
"Decrease": "Decrease",
"Max": "Max",
"Min": "Min",
"Save": "Save",
"Saved": "Saved!",
"Delete": "Delete",
"Reset": "Reset",
"ResetAll": "Reset All",
"Scroll" : "Scroll",
"Enabled": "Enabled",
"Disabled": "Disabled"
},
"Credits": {
"Description": "Contributed To: {0}\n\n{1}",
"Repos": {
"Community": "Community",
"OpenSource": "OpenSource",
"YALCY": "YALCY",
"YARC-Charters": "The Official YARG Setlist",
"YARC-Launcher": "The YARC Launcher",
"YARG": "YARG"
},
"Roles": {
"Artist": "Artist",
"Charter": "Charter",
"Developer": "Developer",
"DocContributor": "Doc Contributor",
"Moderator": "Moderator",
"QATester": "QA Tester",
"SFXArtist": "SFX Artist",
"Translator": "Translator"
},
"Header": {
"Contributors": "Contributors",
"Founder": "Founder",
"LeadArtist": "Lead Artist",
"Maintainers": "Maintainers",
"ProjectManager": "Project Managers",
"SpecialThanks": "Special Thanks",
"SetlistManager": "Setlist Manager",
"Songs": "Songs",
"Supporters": "Supporters"
},
"Song": {
"Name": "\"{0}\" by {1}",
"PublishedBy": "Published By: {0}",
"CourtesyOf": "Courtesy Of: {0}",
"AlbumCover": "Album Cover By: {0}",
"ChartedBy": "Charted By: {0}",
"License": "Song License: {0}",
"Background": "Background Visual Media By: {0}",
"Written": "Written",
"Composed": "Composed",
"Arranged": "Arranged",
"Performed": "Performed",
"Produced": "Produced",
"Engineered": "Engineered",
"Mixed": "Mixed",
"Mastered": "Mastered",
"By": "By: {0}"
},
"Text": {
"ExtraSpecialThanks": "An extra special thanks goes to <b>EliteAsian</b>, <b>Kadu</b>, <b>RileyTheFox</b>, <b>TheNathannator</b>, and <b>Sonicfind</b><br><br>We stand on the shoulders of giants."
}
},
"Toast": {
"AutoCalibrationScore": "Score saving disabled: Automatic calibration active.",
"NoFailScore": "Score saving disabled: No fail toggle had to reset fail meter.",
"ResumeAfterFailInvalidate": "Score saving disabled: Resuming after failure invalidated score.",
"ProfileCreated": "Profile created for new device: {0}\nTime to do some YARGin!",
"TooManyPauses": "Score saving disabled: Too many pauses.",
"UnsupportedDevice": "Automatic profile creation is not supported for {0}!"
},
"Dialog": {
"DontShowAgain": "Don't Show Again",
"AntiPiracy": {
"Title": "YARG Anti-Piracy Statement",
"Description": "<b>YARG stands firmly against all forms of piracy.</b> We neither support nor endorse piracy, as it is a violation of copyright law with serious legal consequences. Our platform's importable content—designed for creators to share their work and for educational purposes—does not justify or excuse piracy.\n\nYARG itself <b>does not</b> use any ripped/pirated assets or music and never will. By using YARG, users agree not to promote or endorse piracy in any way through our platform. Upholding these principles ensures a community that respects copyright, creativity, and legal standards.\n\nYARG stands for \"Yet Another Rhythm Game\" and NOT for pirates.",
"Confirm": "I Understand"
},
"BadSongs": {
"Title": "Some Songs Could Not Be Scanned",
"Description": "One or more of the songs you scanned were corrupted, formatted incorrectly, or encrypted, and <b>could not be loaded into the game.</b>\n\nFor more info, please check the file located at \"{0}\"."
},
"ColorPicker": {
"Title": "Color Picker"
},
"ConfirmDelete": {
"Title": "Delete \"{0}\"?",
"Message": "Are you sure you want to delete <b>{0}</b>?\n\n{1}",
"Confirm": "Type <b>{0}</b> here to confirm"
},
"EngineInconsistency": {
"Title": "Replays Are In Beta",
"Description": "Currently, the replay system is in beta, <b>and <i>may</i> provide inconsistent scores/stats</b>, especially for guitar.\n\nThe end goal is for replays to be reliable and accurate, and we're working on fixing these problems!",
"Confirm": "I Understand"
},
"Experimental": {
"Title": "Experimental Features Notice",
"Description": "The options about to be displayed represent a work in progress. These features are subject to change, may contain bugs, and <b>could even cause major problems if enabled</b>.",
"Confirm": "I Understand"
},
"ShowDialog": {
"Title": "Choose Your Fate",
"Select": "That's Plenty"
},
"FriendlyBindingDialog": {
"Skip": "Skip"
}
},
"DifficultySelect": {
"Instrument": "Instrument",
"Difficulty": "Difficulty",
"Harmony": "Harmony",
"Modifiers": "Modifiers",
"Ready": "Ready",
"SitOut": "Sit Out",
"Disconnect" : "Disconnect",
"Done": "Done",
"WarningPlayerNoInputDevice" : "This player has no input device assigned! Assign one from the Profiles menu.",
"WarningVocalistNoMicrophone" : "This vocalist has no microphone assigned! Assign one from the Profiles menu."
},
"History": {
"Name": "History",
"Time": {
"Today": "Today",
"Yesterday": "Yesterday",
"ThisWeek": "This Week",
"ThisMonth": "This Month",
"LastThreeMonths": "Last 3 Months",
"ThisYear": "This Year",
"MoreThanYear": "More Than A Year"
},
"Analyze": "Analyze",
"PlayWithReplay": "Play With Replay"
},
"Main": {
"MessageOfTheDay": "<align=center><size=32><b>Welcome to v0.15!</b></size></align>\n\nv0.15 is a major update that adds many highly requested and necessary gameplay features such as roll/trill lanes and Big \"YARG\" endings, as well as revamped user interface in the song selection and results screen, drum lane customization, automatic genre categorization, experimental custom vocalist characters in venues, and more.\n\n<b>If you have any feedback or find any bugs, please let us know on Discord or GitHub.</b>\n\nHappy YARGin'!",
"Options": {
"Quickplay": "Quickplay",
"Practice": "Practice",
"Profiles": "Profiles",
"History": "History",
"Settings": "Settings",
"Credits": "Credits",
"Exit": "Exit"
},
"GoToCurrentlyPlaying": "Go To Currently Playing"
},
"MusicLibrary": {
"Name": "Music Library",
"NoSongsMatchCriteria": "NO SONGS MATCH CRITERIA",
"SearchResults": "SEARCH RESULTS",
"AllSongs": "ALL SONGS",
"RecommendedSongs": {
"Singular": "RECOMMENDED SONG",
"Plural": "RECOMMENDED SONGS"
},
"RecommendedSongsHelp": "Refresh List of Recommended Songs",
"PlayableSongs": "PLAYABLE SONGS",
"RandomSong": "RANDOM SONG",
"Playlists": "PLAYLIST MANAGER",
"PlaylistsHelp": "Create, View, and Edit Custom Playlists",
"Favorites": "Favorites",
"YourPlaylists": "YOUR PLAYLISTS",
"Popup": {
"Header": {
"SortBy": "Sort By...",
"GoToSection": "Go To Section...",
"AddToPlaylist": "Add To Playlist..."
},
"Item": {
"RandomSong": "Random Song",
"BackToTop": "Back to Top",
"ScanSongs": "Scan Songs",
"SortBy": "Sort By...",
"GoToSection": "Go To Section...",
"AddToFavorites": "Add To Favorites",
"RemoveFromFavorites": "Remove From Favorites",
"AddToPlaylist": "Add To Playlist...",
"RemoveFromPlaylist": "Remove From Playlist",
"RemoveFromSetlist": "Remove From Setlist",
"CreateNewPlaylist": "Create New...",
"RenamePlaylist": "Rename Playlist",
"DeletePlaylist": "Delete Playlist",
"DeleteSetlist": "Delete Setlist",
"ViewSongFolder": "View Song Folder",
"CopySongChecksum": "Copy Song Checksum",
"CollapseAll": "Collapse All",
"ExpandAll": "Expand All"
}
},
"Back": "BACK",
"NoPlayersConnected": "No players connected! Go to the profiles menu to connect a player.",
"Play": "Play Song",
"PlayHoldAddToSet": "<align=left>Play Song<br><size=67%>(Hold) Add To Setlist</size></align>",
"AddHoldStartSet": "<align=left>Add to Setlist<br><size=67%>(Hold) Start The Set</size></align>",
"ExpandHeaderHoldAddToSet": "<align=left>Expand Header</align>",
"CollapseHeaderHoldAddToSet": "<align=left>Collapse Header</align>",
"ExpandHeaderHoldStartSet": "<align=left>Expand Header<br><size=67%>(Hold) Start The Set</size></align>",
"CollapseHeaderHoldStartSet": "<align=left>Collapse Header<br><size=67%>(Hold) Start The Set</size></align>",
"Search": "Search",
"SkipSection": "<align=left>Navigate Sections</align>",
"MoveInPlaylist": "Move Song",
"CurrentSetlist": "Current Setlist",
"AddToSet": "Add To Setlist",
"AddedToSet": "Added To Setlist",
"PlaylistAddedToSet": "Added {0:N0} Songs From Playlist To Setlist",
"StartSet": "Start The Set",
"PlayShow": "Play A Show",
"HoldPlayShow": "(Hold) Play A Show",
"Filters": "Filters",
"NoSongsInPlaylist": "No Songs In Playlist",
"CannotAddToSelf": "No, I will not create an ouroboros for you. Nice try, Jaden.",
"AddToShow": "Add To Show",
"AddedToShow": "Added To Show",
"StartShow": "Start The Show",
"MoreOptions": "<align=left><size=80%>More Options<br>(Hold) Navigate Sections</size></align>",
"PlayAShow": {
"LongSong": "A Long Song",
"RandomSong": "A Random Song",
"ShortSong": "A Short Song",
"SongFromArtist": "A Song By {0}",
"SongFromDecade": "A Song From The {0}",
"SongFromFavorites": "One Of Your Favorite Songs",
"SongFromAnGenre": "An {0} Song",
"SongFromGenre": "A {0} Song",
"SongFromPlaylist": "A Song From Your Playlist {0}",
"SongFromSource": "A Song From {0}",
"StartsWithLetter": "A Song Starting With The Letter \"{0}\"",
"StartsWithNumber": "A Song Starting With A Number",
"StartsWithOther": "A Song Starting With Something Non-Alphanumeric"
},
"Genre": {
"Alternative": "Alternative",
"AmbientDrone": "Ambient/Drone",
"Ballad": "Ballad",
"Blues": "Blues",
"ChildrensMusic": "Children's Music",
"Chiptune": "Chiptune",
"ClassicRock": "Classic Rock",
"Classical": "Classical",
"Country": "Country",
"Dance": "Dance",
"DeathBlackMetal": "Death/Black Metal",
"Disco": "Disco",
"Djent": "Djent",
"DnbBreakbeatJungle": "DnB/Breakbeat/Jungle",
"DoomMetal": "Doom Metal",
"Dubstep": "Dubstep",
"Electronic": "Electronic",
"ElectronicRock": "Electronic Rock",
"Emo": "Emo",
"Folk": "Folk",
"Fusion": "Fusion",
"Glam": "Glam",
"Glitch": "Glitch",
"Grindcore": "Grindcore",
"GrooveMetal": "Groove Metal",
"Grunge": "Grunge",
"HardcoreEDM": "Hardcore EDM",
"HardRock": "Hard Rock",
"HeavyMetal": "Heavy Metal",
"HipHopRap": "Hip-Hop/Rap",
"Holiday": "Holiday",
"House": "House",
"IDM": "IDM",
"IndieRock": "Indie Rock",
"Industrial": "Industrial",
"Inspirational": "Inspirational",
"JPop": "J-Pop",
"JRock": "J-Rock",
"Jazz": "Jazz",
"KPop": "K-Pop",
"Latin": "Latin",
"Mashup": "Mashup",
"MathRock": "Math Rock",
"MelodicPowerMetal": "Melodic/Power Metal",
"Metalcore": "Metalcore",
"Noise": "Noise",
"NewWave": "New Wave",
"Novelty": "Novelty",
"NuMetal": "Nu-Metal",
"Orchestral": "Orchestral",
"Pop": "Pop",
"PopPunk": "Pop-Punk",
"PopRock": "Pop-Rock",
"PostHardcore": "Post-Hardcore",
"Progressive": "Progressive",
"Psychedelic": "Psychedelic",
"Punk": "Punk",
"RnbSoulFunk": "R&B/Soul/Funk",
"Reggae": "Reggae",
"Rock": "Rock",
"RockAndRoll": "Rock & Roll",
"Ska": "Ska",
"Soundtrack": "Soundtrack",
"SouthernRock": "Southern Rock",
"SurfRock": "Surf Rock",
"SynthpopElectropop": "Synthpop/Electropop",
"Techno": "Techno",
"ThrashSpeedMetal": "Thrash/Speed Metal",
"Traditional": "Traditional",
"Trance": "Trance",
"Trap": "Trap",
"World": "World",
"Other": "Other",
"UnknownGenre": "Unknown Genre",
"Broad": {
"Alternative": "Alternative",
"CountryFolk": "Country/Folk",
"ClassicalTraditional": "Classical/Traditional",
"DanceElectronic": "Dance/Electronic",
"HipHop": "Hip-Hop",
"JazzBlues": "Jazz/Blues",
"Metal": "Metal",
"Pop": "Pop",
"PunkSceneCore": "Punk/Scene/Core",
"RnbSoulFunk": "R&B/Soul/Funk",
"Rock": "Rock",
"World": "World",
"Other": "Other"
}
}
},
"ProfileInfo": {
"Name": "Edit Profile",
"Stats": {
"SongPlays": "{0:N0} Song Plays",
"TotalScore": "Total Score",
"TotalStarsEarned": "Total Stars Earned",
"FullCombos": "Full Combos"
}
},
"ProfileList": {
"Name": "Profiles",
"ActiveProfiles" : "Active Profiles",
"AddBot": "Add Bot",
"AddProfile": "Add Profile",
"Bots" : "Bots",
"Players" : "Players"
},
"ScoreScreen" : {
"BandScoreNotSaved" : "Score not saved",
"RestartSong" : "Restart Song",
"ShowAdvanced": "Show Advanced",
"HideAdvanced": "Hide Advanced",
"EndSetlistEarly" : "End Setlist"
},
"Settings": {
"ShowAdvanced": "Show Advanced",
"HideAdvanced": "Hide Advanced",
"NoFolder": "<i>No Folder</i>",
"SearchHeader": {
"AllCategories": "All Categories",
"Results": "Results"
},
"SongCount": "{0:N0} <alpha=#60>Songs",
"ScanNeeded": "<alpha=#60>Scan Needed",
"DMXInfo": "DMX cue change and post-processing channel values:\n\n<b>Cue Change:</b>\n\n0 - No cue\n10 - Menu\n20 - Score\n30 - Intro\n40 - Verse\n50 - Chorus\n60 - Cool (loop)\n70 - Warm (loop)\n80 - Cool (manual)\n90 - Warm (manual)\n100 - Dischord\n110 - Stomp\n120 - Default\n130 - Harmony\n140 - Frenzy\n150 - Silhouettes\n160 - Silhouettes Spotlight\n170 - Searchlights\n180 - Sweep\n190 - Blackout (fast)\n200 - Blackout (slow)\n210 - Blackout (spotlight)\n220 - Flare (slow)\n230 - Flare (fast)\n240 - Big Rock Ending\n\nFor Strobe and Fog status listen to their respective channels.\n\n<b>Post-Processing:</b>\n\n0 - Default\r\n\nBasic effects\r\n4 - Bloom\n14 - Bright\n24 - Contrast\n34 - Mirror\n44 - PhotoNegative\n54 - Posterize\n\n\rColor filters/effects\r\n64 - Black And White\n74 - Sepia Tone\n84 - Silver Tone\n94 - Choppy Black And White\n104 - Photo Negative Red And Black\n114 - Polarized Black And White\n124 - Polarized Red And Blue\n134 - Desaturated Red\n144 - Desaturated Blue\n154 - Contrast Red\n164 - Contrast Green\n174 - Contrast Blue\n\r\nGrainy\r\n184 - Grainy Film\n194 - Grainy Chromatic Abberation\n\nScanlines\r\n204 - Scanlines\n214 - Scanlines Black And White\n224 - Scanlines Blue\n234 - Scanlines Security\n\r\nTrails\r\n244 - Trails\n252 - Trails Long\n253 - Trails Desaturated\n254 - Trails Flickery\n255 - Trails Spacey\n\nSee YARG docs for more information: https://docs.yarg.in/en/DMX"
},
"Filters": {
"OptionsHeader": "Options",
"FiltersHeader": "Filters",
"ShowAnyOfHeader": "Show Any Of",
"SortedBy": "Sorted By",
"ShowRecommendations": "Show Recommendations",
"ResetAllFilters": "(Hold) Reset All Filters",
"SelectAll": "Select All",
"DeselectAll": "Deselect All",
"None": "None",
"Selected": "{0} Selected",
"AnyOf": "Any of {0}",
"All": "All",
"SongCount": "{0} SONGS",
"Genres": "Genres",
"Subgenres": "Subgenres",
"Decades": "Decades",
"VocalParts": {
"Name": "Number of Vocal Parts",
"Solo": "Solo",
"Duet": "Duet / 2-Part Harmony",
"Trio": "Trio / 3-Part Harmony",
"Instrumental": "Instrumental"
},
"Sources": "Song Sources",
"Charters": "Charters",
"Intensities": {
"Name": "Intensities",
"WarmUp": "Warm Up",
"Apprentice": "Apprentice",
"Solid": "Solid",
"Moderate": "Moderate",
"Challenging": "Challenging",
"Nightmare": "Nightmare",
"Impossible": "Impossible",
"Unknown": "Unknown",
"NoPart": "No Part"
},
"Length": {
"Name": "Song Lengths",
"Short": "Short (Under 3 Min)",
"Medium": "Medium (3-5 Min)",
"Long": "Long (5-7 Min)",
"Epic": "Epic (Over 7 Min)"
},
"Playlists": "Playlists"
},
"HighwayOrdering": {
"Red": "Red",
"RedCymbal": "Red Cymbal",
"RedDrum": "Red Drum",
"Yellow": "Yellow",
"YellowCymbal": "Yellow Cymbal",
"YellowDrum": "Yellow Drum",
"Blue": "Blue",
"BlueCymbal": "Blue Cymbal",
"BlueDrum": "Blue Drum",
"Green": "Green",
"GreenCymbal": "Green Cymbal",
"GreenDrum": "Green Drum",
"Orange": "Orange",
"CreateDedicatedLane": "Create Dedicated Lane",
"RemoveDedicatedLane": "Remove Dedicated Lane",
"RemoveDedicatedLanes": "Remove Dedicated Lanes",
"Kick": "Kick",
"RightKick": "Right Kick*",
"LeftKick": "Left Kick*",
"SplitKicksWarning": "* Split kicks can still be hit with either pedal and may not correspond to the most comfortable footing for double-kick patterns.",
"ExpertPlusOnly": "Expert+ Only",
"4LaneHeader": "4-Lane Drums Highway Configuration",
"ProHeader": "Pro Drums Highway Configuration",
"5LaneHeader": "5-Lane Drums Highway Configuration"
},
"Pause": {
"Generic": {
"Resume": "Resume",
"Restart": "Restart",
"SkipToScoreScreen": "Skip to Score Screen",
"BackToLibrary": "Back To Library",
"Settings": "Settings",
"Practice": "Practice"
},
"Fail": {
"EnableNoFailandResume": "Enable No Fail and Resume",
"EnableNoFailandRestart": "Enable No Fail and Restart"
},
"Practice": {
"SetAPosition": "Set A Position",
"SetBPosition": "Set B Position",
"ClearAB": "Clear A/B",
"SelectNewSections": "Select New Sections",
"Quickplay": "Quickplay"
},
"Quickplay": {
"SaveReplay": "Save Replay"
},
"Replay": {
"SaveColorProfile": "Save Color Profile"
},
"Setlist": {
"Skip": "Skip"
},
"QuickSettings": {
"AudioSettings": "Audio Settings",
"EditHud": "Edit HUD",
"NoFail": {
"Enable": "Enable No Fail",
"Disable": "Disable No Fail"
},
"VenuePP": {
"Enable": "Enable Venue Post Processing",
"Disable": "Disable Venue Post Processing"
},
"Calibration": "Calibration Settings"
}
}
},
"Gameplay": {
"Notifications": {
"BassGroove": "BASS GROOVE",
"CountdownGetReady": "Get Ready!",
"FullCombo": "FULL COMBO",
"HotStart": "HOT START",
"NewHighScore": "NEW HIGH SCORE",
"NoteStreak": "{0:N0}-NOTE STREAK",
"PhraseStreak": "{0:N0}-PHRASE STREAK",
"StarPowerReady": "STAR POWER READY",
"StrongFinish": "STRONG FINISH"
},
"Solo": {
"Performance": {
"Awesome": "AWESOME\nSOLO!",
"Good": "GOOD\nSOLO!",
"Great": "GREAT\nSOLO!",
"How": "HOW!?",
"Messy": "MESSY\nSOLO",
"Nice": "<i>NICE</i>\nSOLO",
"Okay": "OKAY\nSOLO",
"Perfect": "PERFECT\nSOLO!",
"Solid": "SOLID\nSOLO"
},
"PointsResult": "{0:N0}\nPOINTS"
},
"Vocals": {
"Performance": {
"Awesome": "AWESOME!",
"Awful": "AWFUL",
"Good": "GOOD",
"Messy": "MESSY",
"Okay": "OKAY",
"Strong": "STRONG"
}
},
"Practice": {
"Sections": {
"intro": "Intro",
"intro_slow": "Intro slow",
"intro_fast": "Intro fast",
"intro_heavy": "Intro heavy",
"quiet_intro": "Quiet intro",
"noise_intro": "Noise intro",
"drum_intro": "Drum intro",
"bass_intro": "Bass intro",
"vocal_intro": "Vocal intro",
"gtr_intro": "Gtr intro",
"aco_gtr_intro": "Aco gtr intro",
"violin_intro": "Violin intro",
"strings_intro": "Strings intro",
"orch_intro": "Orch intro",
"horn_intro": "Horn intro",
"harmonica_intro": "Harmonica intro",
"organ_intro": "Organ intro",
"piano_intro": "Piano intro",
"keyboard_intro": "Keyboard intro",
"dj_intro": "DJ intro",
"intro_hook": "Intro hook",
"intro_riff": "Intro riff",
"fade_in": "Fade in",
"drums_enter": "Drums enter",
"bass_enters": "Bass enters",
"gtr_enters": "Gtr enters",
"rhy_enters": "Gtr2 enters",
"band_enters": "Band enters",
"synth_enters": "Synth enters",
"keyboard_enters": "Keyboard enters",
"organ_enters": "Organ enters",
"piano_enters": "Piano enters",
"kick_it": "Kick It!",
"intro_verse": "Intro verse",
"intro_chorus": "Intro chorus",
"verse": "Verse",
"alt_verse": "Alt verse",
"quiet_verse": "Quiet verse",
"preverse": "Pre-verse",
"postverse": "Post-verse",
"chorus": "Chorus",
"chorus_break": "Chorus break",
"breakdown_chorus": "Breakdown chorus",
"alt_chorus": "Alt chorus",
"prechorus": "Pre-chorus",
"postchorus": "Post-chorus",
"bridge": "Bridge",
"gtr_solo": "Gtr solo",
"slide_solo": "Slide solo",
"violin_solo": "Violin solo",
"drum_solo": "Drum solo",
"percussion_solo": "Percussion solo",
"bass_solo": "Bass solo",
"organ_solo": "Organ solo",
"piano_solo": "Piano solo",
"keyboard_solo": "Keyboard solo",
"synth_solo": "Synth solo",
"harmonica_solo": "Harmonica solo",
"sax_solo": "Sax solo",
"horn_solo": "Horn solo",
"flute_solo": "Flute solo",
"noise_solo": "Noise solo",
"noise_build": "Noise build",
"dj_solo": "DJ solo",
"slow_part": "Slow part",
"very_slow": "Very slow",
"fast_part": "Fast part",
"very_fast": "Very fast",
"quiet_part": "Quiet part",
"very_quiet": "Very quiet",
"loud_part": "Loud part",
"very_loud": "Very loud",
"heavy_part": "Heavy part",
"very_heavy": "Very heavy",
"spacey_part": "Spacey part",
"very_spacey": "Very spacey",
"trippy_part": "Trippy part",
"very_trippy": "Very trippy",
"break": "Break",
"breakdown": "Breakdown",
"gtr_break": "Gtr break",
"bass_break": "Bass break",
"drum_break": "Drum break",
"organ_break": "Organ break",
"synth_break": "Synth break",
"piano_break": "Piano break",
"keyboard_break": "Keyboard break",
"horn_break": "Horn break",
"scratch_break": "Scratch break",
"percussion_break": "Percussion break",
"dj_break": "DJ break",
"drop": "Drop",
"interlude": "Interlude",
"soundscape": "Soundscape",
"jam": "Jam",
"space_jam": "Space jam",
"vamp": "Vamp",
"build_up": "Build up",
"speed_up": "Speed up",
"tension": "Tension",
"release": "Release",
"crescendo": "Crescendo",
"melody": "Melody",
"lo_melody": "Low melody",
"hi_melody": "High melody",
"main_riff": "Main riff",
"verse_riff": "Verse riff",
"chorus_riff": "Chorus riff",
"gtr_riff": "Gtr riff",
"bass_riff": "Bass riff",
"big_riff": "Big riff",
"bigger_riff": "Bigger riff",
"heavy_riff": "Heavy riff",
"fast_riff": "Fast riff",
"slow_riff": "Slow riff",
"swing_riff": "Swing riff",
"chunky_riff": "Chunky riff",
"odd_riff": "Odd riff",
"hook": "Hook",
"drum_roll": "Drum roll",
"gtr_lead": "Gtr lead",
"gtr_fill": "Gtr fill",
"gtr_hook": "Gtr hook",
"gtr_melody": "Gtr melody",
"gtr_line": "Gtr line",
"gtr_lick": "Gtr lick",
"gtr_ostinato": "Gtr ostinato",
"vocal_break": "Vocal break",
"ah": "Ah!",
"yeah": "Yeah!",
"oohs": "Oohs and Ahs",
"prayer": "Prayer",
"chant": "Chant",
"spoken_word": "Spoken word",
"outro": "Outro",
"outro_solo": "Outro solo",
"outro_chorus": "Outro chorus",
"ending": "Ending",
"bre": "Big Rock Ending!",
"fade_out": "Fade out",
"fast_picking": "Fast picking",
"foreplay_intro": "Foreplay intro",
"longtome_intro": "Long Time intro"
},
"SectionFormats": {
"LetterSection": "{0} section",
"WithNumber": "{0} {1}",
"PercentageBased": "{0}% - {1}%"
}
},
"UnisonDisplay": {
"Header": "Unison Bonus"
}
},
"Preview": {
"Experimental": {
"Notice": "IMPORTANT\n\nThese settings represent a work in progress. They are subject to change, may contain bugs, and could even cause major problems if enabled."
}
},
"Discord": {
"Default": {
"Details": "Hello there ladies and gentlemen!",
"LargeText": {
"Dev": "Yet Another Rhythm Game (Dev Build)",
"Nightly": "Yet Another Rhythm Game (Nightly)",
"Stable": "Yet Another Rhythm Game"
},
"State": "Are you ready to rock?"
},
"Song": {
"Name": "{0} by {1}",
"Album": "on {0}",
"Paused": "Song paused..."
}
},
"Bindings": {
"Menu": {
"Green": "Green (Confirm)",
"Red": "Red (Back)",
"Yellow": "Yellow (Shortcut 1)",
"Blue": "Blue (Shortcut 2)",
"Orange": "Orange (Shortcut 3)",
"Up": "Up",
"Down": "Down",
"Left": "Left",
"Right": "Right",
"Start": "Start (Pause)",
"Select": "Select"
},
"FiveFret": {
"Green": "Green Fret (First)",
"Red": "Red Fret (Second)",
"Yellow": "Yellow Fret (Third)",
"Blue": "Blue Fret (Fourth)",
"Orange": "Orange Fret (Fifth)",
"SoloGreen": "Solo Green Fret",
"SoloRed": "Solo Red Fret",
"SoloYellow": "Solo Yellow Fret",
"SoloBlue": "Solo Blue Fret",
"SoloOrange": "Solo Orange Fret"
},
"Guitar": {
"StrumUp": "Strum Up",
"StrumDown": "Strum Down",
"StarPower": "Star Power",
"Whammy": "Whammy"
},
"FourDrums": {
"BlueCymbal": "Blue Cymbal (Third)",
"BluePad": "Blue Pad (Third)",
"GreenCymbal": "Green Cymbal (Fourth)",
"GreenPad": "Green Pad (Fourth)",
"RedPad": "Red Pad (First)",
"YellowCymbal": "Yellow Cymbal (Second)",
"YellowPad": "Yellow Pad (Second)",
"RedCymbal": "Red Cymbal (First)"
},
"Drums": {
"Kick": "Kick Pedal"
},
"EliteDrums": {
"Stomp": "Hi-Hat Pedal Stomp",
"Splash": "Hi-Hat Pedal Splash",
"Snare": "Snare",
"ClosedHiHat": "Closed Hi-Hat",
"SizzleHiHat": "Sizzle Hi-Hat",
"OpenHiHat": "Open Hi-Hat",
"LeftCrash": "Left Crash",
"Tom1": "Tom 1",
"Tom2": "Tom 2",
"Tom3": "Tom 3",
"Ride": "Ride",
"RightCrash": "Right Crash",
"FourLaneRedDrum": "4-Lane Red Drum",
"FourLaneYellowDrum": "4-Lane Yellow Drum",
"FourLaneBlueDrum": "4-Lane Blue Drum",
"FourLaneGreenDrum": "4-Lane Green Drum",
"FourLaneYellowCymbal": "4-Lane Yellow Cymbal",
"FourLaneBlueCymbal": "4-Lane Blue Cymbal",
"FourLaneGreenCymbal": "4-Lane Green Cymbal",
"FiveLaneRedDrum": "5-Lane Red Drum",
"FiveLaneBlueDrum": "5-Lane Blue Drum",
"FiveLaneGreenDrum": "5-Lane Green Drum",
"FiveLaneYellowCymbal": "5-Lane Yellow Cymbal",
"FiveLaneOrangeCymbal": "5-Lane Orange Cymbal"
},
"Vocals": {
"StarPower": "Star Power Activate",
"Hit": "Percussion Hit"
},
"FiveDrums": {
"RedPad": "Red Pad (First)",
"YellowCymbal": "Yellow Cymbal (Second)",
"BluePad": "Blue Pad (Third)",
"OrangeCymbal": "Orange Cymbal (Fourth)",
"GreenPad": "Green Pad (Fifth)"
},
"ProKeys": {
"Key1": "Key 1 (C2)",
"Key2": "Key 2 (C#2)",
"Key3": "Key 3 (D2)",
"Key4": "Key 4 (D#2)",
"Key5": "Key 5 (E2)",
"Key6": "Key 6 (F2)",
"Key7": "Key 7 (F#2)",
"Key8": "Key 8 (G2)",
"Key9": "Key 9 (G#2)",
"Key10": "Key 10 (A2)",
"Key11": "Key 11 (A#2)",
"Key12": "Key 12 (B2)",
"Key13": "Key 13 (C3)",
"Key14": "Key 14 (C#3)",
"Key15": "Key 15 (D3)",
"Key16": "Key 16 (D#3)",
"Key17": "Key 17 (E3)",
"Key18": "Key 18 (F3)",
"Key19": "Key 19 (F#3)",
"Key20": "Key 20 (G3)",
"Key21": "Key 21 (G#3)",
"Key22": "Key 22 (A3)",
"Key23": "Key 23 (A#3)",
"Key24": "Key 24 (B3)",
"Key25": "Key 25 (C4)",
"OpenNote": "Five-Lane Open Note",
"GreenKey": "Five-Lane Green Key (First)",
"RedKey": "Five-Lane Red Key (Second)",
"YellowKey": "Five-Lane Yellow Key (Third)",
"BlueKey": "Five-Lane Blue Key (Fourth)",
"OrangeKey": "Five-Lane Orange Key (Fifth)",
"StarPower": "Star Power Activate",
"TouchEffects": "Touch Effects"
}
},
"Settings": {
"Tab": {
"General": "General",
"Graphics": "Graphics",
"Engine": "Engine",
"Sound": "Sound",
"SongManager": "Songs",
"Presets": "Presets",
"Advanced": "Advanced",
"AllSettings": "All Settings",
"LightingPeripherals": "Lighting Peripherals",
"Debug": "Debug and Developer",
"FileManagement": "File Management",
"Experimental": "Experimental"
},
"Header": {
"Other": "Other",
"Display": "Display",
"Volume": "Volume",
"Graphics": "Graphics",
"Camera": "Camera",
"SongFolders": "Song Folders",
"SongUpgrades": "Song Upgrades",
"Cache": "Cache",
"Venues": "Venues/Backgrounds",
"Calibration": "Calibration",
"Input": "Input",
"PresetSettings": "Preset Settings",
"Debug": "Debug",
"Advanced": "Advanced",
"DMXChannels": "DMX Channels",
"LightingGeneral": "Lighting General",
"ExportSongs": "Export Songs List",
"PathsAndFolders": "Paths and Folders",
"MusicLibrary": "Music Library",
"PlayAShow": "Play A Show",