-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen_US.xml
2332 lines (1831 loc) · 210 KB
/
en_US.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Languages>
<Type>
<Key>en_cao</Key>
<Name>English (US, UK, Canada, New Zealand)</Name>
<Author>233355607</Author>
</Type>
<Language Key="en_cao">
<Items>
<Item Key="BakaXLTitle">฿ǟκἆX£ - Míήéꞔяᾴfτ Ļἇũńƈĥэя</Item>
<Item Key="NoUserName">Ňò ₽ℓᾃγэг ÏĎ</Item>
<Item Key="Loading">Ļòἆďǐʼng</Item>
<Item Key="PleaseWait">Pľэǟśз Шẫíț...</Item>
<Item Key="LoadingPlugins">Pľцǧıň</Item>
<Item Key="Window_ReportIssue_Title">Řèƥőѓţ Âń Īšśΰę</Item>
<Item Key="Window_ReportIssue_Tips">Jǿıñ BakaXL Ǿƒƒįċẵł ₣σûя₥ ţø Гзφôґŧ Ïšșüėş</Item>
<Item Key="Window_GetHelp_Title">geŧ Ĥěℓφ</Item>
<Item Key="Window_GetHelp_Tips">Ĉĥêċƙ Θϋř Șúpƥǿяţ Ш℮ḃšıтē ŧö Ğëţ Hěļƥ!</Item>
<Item Key="Window_HomeMenu_Btn">ĤÕMЭ Mεήц</Item>
<Item Key="LaunchBar_Hello">Hęļĺó! {0}</Item>
<Item Key="LaunchBar_Launch">Launch!</Item>
<Item Key="LaunchBar_NoCore"><No Core Selected></Item>
<Item Key="LaunchBar_SelectCore_Animation_Title">Change Game Core</Item>
<Item Key="LaunchBar_SelectCore_Animation_Click">Press "Launch!" Button</Item>
<Item Key="LaunchBar_SelectCore_Animation_Drag">Drag to Right</Item>
<Item Key="LaunchBar_SelectCore_BtnTitle">Switch Minecraft Core</Item>
<Item Key="LaunchBar_SelectCore_Title">Select Core</Item>
<Item Key="LaunchBar_SelectCore_Management">Core Management</Item>
<Item Key="LaunchBar_SelectCore_Management_Tips">Manage All Your Game Cores</Item>
<Item Key="LaunchBar_SelectCore_DragEasterEgg">Noooooo!</Item>
<Item Key="LaunchBar_LaunchBtn_Error_Title">Launch Failed</Item>
<Item Key="LaunchBar_LaunchBtn_Error_NoProfile">No Profile</Item>
<Item Key="LaunchBar_LaunchBtn_Error_NoCore">No Core</Item>
<Item Key="LaunchBar_LaunchBtn_Error_NoCoreFolder">Core Folder Missing</Item>
<Item Key="LaunchBar_LaunchBtn_Error_AuthError">Auth Failed</Item>
<Item Key="LaunchBar_LaunchBtn_Error_UnknownError_Title">Oops!</Item>
<Item Key="LaunchBar_LaunchBtn_Error_UnknownError_Tips">Something Went Wrong!</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Title">Launching...</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Tips">Will be ready shortly</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CreateCore">Creating Launcher Core</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckLib">Checking Minecraft Libraries</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadLib">Downloading Minecraft Libraries {0}</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckAssets">Checking Minecraft Assets</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadAssets">Downloading Minecraft Assets</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_GenParameter">Generating Parameters</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckAuthlib">Checking Authlib-Injector</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckAuthlib_GetInfo">Getting Authlib-Injector Information</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckAuthlib_Download">Downloading Authlib-Injector</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckPlugin">Running BakaXL plugin-defined operation</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadJava">Downloading {0} Virtual Machine ({1} queue)</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadJava_Prepare">Getting a list of Java Virtual Machines</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadJava_Fetching">Creating a {0} Virtual Machine download task ({1} queue)</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_DownloadJava_Finalizing">Installing the required {0} Virtual Machine ({1} queue)</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Environment_JavaFullAuto">Autmatically selecting the correct JVM</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Environment_JavaNotExist">The Java path has changed and is being relocated</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Environment_NewJavaFound">BakaXL will launch Minecraft with the new Java path</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Environment_AwaitJavaDownloadRequest">Waiting for user decide to download JVM</Item>
<Item Key="LaunchBar_LaunchBtn_Launching_Steps_CheckEnvironment">Launch Mode: Checking and finishing the Minecraft environment</Item>
<Item Key="LaunchBar_LaunchBtn_Launched_Title">Launched</Item>
<Item Key="LaunchBar_LaunchBtn_Launched_Tips"><Running...></Item>
<Item Key="LaunchBar_ToolTip_DownloadLib">Downloading Minecraft support libraries
Filename: {0}
Path:{1}</Item>
<Item Key="LaunchBar_Title_Launched">Minecraft Launched With Profile: {0}</Item>
<Item Key="LaunchBar_Title_AuthError">Authentication Error: Incorrect Username/Password</Item>
<Item Key="LaunchBar_Title_AuthError_Unknown">Authentication Error: Unknown</Item>
<Item Key="LaunchBar_Title_AuthError_MojangTokenExpired">Authentication Error: Session authentication information has expired, please log in to this user profile again</Item>
<Item Key="LaunchBar_Title_AuthError_AuthlibTokenExpired">Authentication Error: User profile information invalid, please reset this profile</Item>
<Item Key="LaunchBar_Title_AuthError_MicrosoftLoginCanceled">Authentication Error: Microsoft account login cancelled by user</Item>
<Item Key="LaunchBar_Title_EnvironmentError_JavaNotFound">Environment Check Error: Unable to locate Java path</Item>
<Item Key="LaunchBar_Title_GameError_GetAssetsListFailed">Resource Completion Error: Unable to get Minecraft resource file list from download source</Item>
<Item Key="LaunchBar_Title_GameError_GetAuthlibFailed">Resource Completion Error: Unable to download Authlib-Injector files</Item>
<Item Key="LaunchBar_Title_LaunchModeError_CheckGameFailed">Launch Mode Error: Error checking Minecraft environment</Item>
<Item Key="UserSelector_Launch_Title">Select a Minecraft Profile</Item>
<Item Key="UserSelector_Authlib_SelectProfile">Multiple profiles owned by this account, please select a profile</Item>
<Item Key="UserSelector_Default_Title">Select a User</Item>
<Item Key="UserSelector_AddProfile_Title">Add Other Minecraft Profile</Item>
<Item Key="UserProfile_ToolTip_Offline">Username:{0} 
This user profile will use offline authentication</Item>
<Item Key="UserProfile_ToolTip_Online">Username:{0} 
This user profile will use official Mojang authentication</Item>
<Item Key="UserProfile_ToolTip_Online_Microsoft">Username:{0} 
This user profile will use official Microsoft authentication</Item>
<Item Key="UserProfile_ToolTip_ThirParty_WithoutName">Username:{0} 
This user profile will use a third-party authentication server
Authentication server address:{1}</Item>
<Item Key="UserProfile_ToolTip_ThirParty_WithName">Username:{0} 
This user profile will use the {1} authentication server
Authentication server address:{2}</Item>
<Item Key="HomeIdentifier_Screen_Home">Home</Item>
<Item Key="HomeIdentifier_Screen_Menu">Start Menu</Item>
<Item Key="TaskList_Title">Notifications</Item>
<Item Key="TaskList_NoTaskTips">No tasks or notifications are in progress. </Item>
<Item Key="TaskList_HasTasks"> {0} tasks in progress</Item>
<Item Key="CoreSelector_Title">Minecraft Cores</Item>
<Item Key="CoreSelector_SelectCore_Title">Select a Core</Item>
<Item Key="CoreSelector_DisplayMode">Display: </Item>
<Item Key="CoreSelector_Empty_Title">Empty!</Item>
<Item Key="CoreSelector_Empty_Tips">See? Nothing Here!</Item>
<Item Key="CoreSelector_Loading_Title">Hold On...</Item>
<Item Key="CoreSelector_Loading_Tips">Loading All The Cores.</Item>
<Item Key="CoreSelector_DisplayMode_All">All</Item>
<Item Key="CoreSelector_DisplayMode_Favorite">Favorite</Item>
<Item Key="CoreSelector_DisplayMode_Vanilla">Vanilla</Item>
<Item Key="CoreSelector_DisplayMode_Forge">Forge</Item>
<Item Key="CoreSelector_DisplayMode_Fabric">Fabric</Item>
<Item Key="CoreSelector_DisplayMode_Liteloader">Liteloader</Item>
<Item Key="CoreSelector_DisplayMode_Optifine">OptiFine</Item>
<Item Key="CoreSelector_DisplayMode_Other">Other</Item>
<Item Key="CoreSelector_Requirement_Java_NoVersionNeeded">No JVM Requirement</Item>
<Item Key="CoreSelector_Type_Major">Release</Item>
<Item Key="CoreSelector_Type_Snapshot">Snapshot</Item>
<Item Key="CoreSelector_CoreError_JsonError">Warning - JSON File Format Error</Item>
<Item Key="CoreSelector_CoreError_NoinheritsFrom">Warning - Inherits Missing</Item>
<Item Key="CoreSelector_CoreError_NoJarFile">Warning - Core Jar Missing</Item>
<Item Key="CoreSelector_CoreError_NoJsonFile">Warning - JSON File Does Not Exist</Item>
<Item Key="CoreSelector_CoreError_NotCompatible">Error - Format Not Compatible</Item>
<Item Key="CoreSelector_CoreProtocolMismatch_Title">This is NOT a standard Minecraft Core. </Item>
<Item Key="CoreSelector_CoreProtocolMismatch_Tooltip">This core is created by HMCL, which includes parameters cannot read by Minecraft Official Launcher. 
BakaXL can still try to launch the core, but some features / Mod loading / game experience may not run as expected. </Item>
<Item Key="CoreSelector_GetCore_Title">Add a new Minecraft Core or Mod Pack</Item>
<Item Key="CoreSelector_CancelSelection_Title">Cancel</Item>
<Item Key="CoreSelector_ConfirmSelection_Title">Confirm</Item>
<Item Key="CoreManagement_Title">Advanced Core Management</Item>
<Item Key="CoreManagement_Publisher">Publisher: {0}</Item>
<Item Key="CoreManagement_Publisher_None">Publisher not available</Item>
<Item Key="CoreManagement_LastPlayed">Last played on {0}</Item>
<Item Key="CoreManagement_LastPlayed_None">Never played</Item>
<Item Key="CoreManagement_Tips_Locked_MCVersion">Some options are unavailable because the Minecraft version is too old.</Item>
<Item Key="CoreManagement_Tips_Locked_ModPack">Some options are unavailable because they are managed by a mod pack provider.</Item>
<Item Key="CoreManagement_Tips_Locked_Server">Some options are unavailable because they are managed by the server corresponding to this mod pack.</Item>
<Item Key="CoreManagement_Tips_Error_Json">The JSON file used by this core is not a standard Minecraft core file.</Item>
<Item Key="CoreManagement_Tips_Error_Json_Broken">The JSON file for this core is corrupt and can't be read by BakaXL.</Item>
<Item Key="CoreManagement_Tips_Error_Unsupported">This core uses a launcher-specific logo format, which can't be read by BakaXL.</Item>
<Item Key="CoreManagement_Tips_Error_Jar_Missing">The required Jar file for this core does not exist.</Item>
<Item Key="CoreManagement_Tips_Error_Inherits_Missing">A Minecraft core that this core depends on does not exist.</Item>
<Item Key="CoreManagement_Tips_Suggest_Reset">This core needs to be reset to work properly, go to"Restore > Reset this core".</Item>
<Item Key="CoreManagement_Tips_Suggest_AutoRepare">BakaXL can attempt to repair this core by going to"Recovery > Auto repair".</Item>
<Item Key="CoreManagement_Tips_Suggest_Shader">To load Minecraft shader files, you may need to install"OptiFine".</Item>
<Item Key="CoreManagement_Tips_Warn_Mod_Unsupported">This core does not support the installation of mods.</Item>
<Item Key="CoreManagement_Page_Info">Information</Item>
<Item Key="CoreManagement_Page_Mod">Mods</Item>
<Item Key="CoreManagement_Page_ResourcePack">Resource Packs</Item>
<Item Key="CoreManagement_Page_ShaderPack">Shader Packs</Item>
<Item Key="CoreManagement_Page_Config">Game/Mod Settings</Item>
<Item Key="CoreManagement_Page_Advance">Advanced Setup</Item>
<Item Key="CoreManagement_Page_Update">Update</Item>
<Item Key="CoreManagement_Page_Restore">Restore/Delete</Item>
<Item Key="CoreManagement_Page_Export">Export</Item>
<Item Key="CoreManagement_Info_Description">Information</Item>
<Item Key="CoreManagement_Info_Description_None">No information available.</Item>
<Item Key="CoreManagement_Info_PlayTime">Play Time</Item>
<Item Key="CoreManagement_Info_PlayTime_Text">This core has been run {0} times since {1} was last run.</Item>
<Item Key="CoreManagement_Info_PlayTime_NeverPlayed_Text">Unfortunately, this core hasn't been run since its install date.</Item>
<Item Key="CoreManagement_Info_PlayTime_Reset">Reset</Item>
<Item Key="CoreManagement_Info_Version">Version</Item>
<Item Key="CoreManagement_Info_Version_Text">The basic game version of this core is Minecraft {0}</Item>
<Item Key="CoreManagement_Info_Links">Refer to</Item>
<Item Key="CoreManagement_Info_Links_Tips">If the core includes a link from core publisher, 
BakaXL will show them. </Item>
<Item Key="CoreManagement_Info_Links_HomePage">Visit Core Homepage</Item>
<Item Key="CoreManagement_Info_Links_HomePage_Tips">If you want to visit the homepage of the core publisher, please click here. 
This page is provided by core publisher but not BakaXL. </Item>
<Item Key="CoreManagement_Info_Links_PrivacyPolicy">Visit the Privacy Policy of This Core</Item>
<Item Key="CoreManagement_Info_Links_PrivacyPolicy_Tips">If you want to learn about the privacy policy of this core and how it protect your privacy, please click here. 
This page is provided by core publisher but not BakaXL. </Item>
<Item Key="CoreManagement_Java_Tip">If you want to configure this core manually without affecting other cores, please do it here
Don't change anything if you don't know what you're doing.</Item>
<Item Key="CoreManagement_Java_JavaDefaultTip">BakaXL is currently using the globally configured Java settings.</Item>
<Item Key="CoreManagement_Java_JavaOverrideTip">You have enabled a separate Java setting for this core. </Item>
<Item Key="CoreManagement_Java_JavaOverrideBtn">Enable a separate Java setting for this core</Item>
<Item Key="CoreManagement_Java_MemoryDefaultTip">BakaXL is currently using the globally configured memory settings.</Item>
<Item Key="CoreManagement_Java_MemoryOverrideTip">You have enabled a separate memory setting for this core. </Item>
<Item Key="CoreManagement_Java_MemoryOverrideBtn">Enable a separate memory setting for this core</Item>
<Item Key="CoreManagement_Mods_Title">Mods</Item>
<Item Key="CoreManagement_Mods_Supported">This core or package has a mod-supporting API installed.</Item>
<Item Key="CoreManagement_Mods_Unsupported">This core or package does not a have an API that supports installing mods.
If you want to use mods, you should install Forge, Fabric, or another mod API.

If you believe that BakaXL incorrectly thinks that a core or package does not have an API that supports installing mods, please contact us.</Item>
<Item Key="CoreManagement_Mods_ModLoader_Scanning">Scanning the core for a mod API</Item>
<Item Key="CoreManagement_Mods_ModLoader_Forge">This core has Minecraft Forge installed, version{0}</Item>
<Item Key="CoreManagement_Mods_ModLoader_Fabric">This core has Fabric Loader installed, version{0}</Item>
<Item Key="CoreManagement_Mods_ModLoader_Quilt">This core has Quilt Loader installed, version{0}</Item>
<Item Key="CoreManagement_Mods_ModLoader_Liteloader">This core has Liteloader installed, version{0}</Item>
<Item Key="CoreManagement_Mods_ModLoader_Optifine">This core has OptiFine HD installed.</Item>
<Item Key="CoreManagement_Mods_ModList_Title">Mods Folder</Item>
<Item Key="CoreManagement_Mods_ModList_DargTips">Drag mods into this area to quickly install them.</Item>
<Item Key="CoreManagement_Mods_ModList_Desc">BakaXL will scan this core's 'Mods' folder and display all supported mod files in this list.</Item>
<Item Key="CoreManagement_Mods_ModList_Scanning">Scanning...</Item>
<Item Key="CoreManagement_Mods_ModList_NoMods">BakaXL did not find any mod files in this core or package.</Item>
<Item Key="CoreManagement_Restore_Title">Restore</Item>
<Item Key="CoreManagement_Restore_Button">Reset this core</Item>
<Item Key="CoreManagement_Restore_Desc">If Minecraft is not working properly, resetting this core may solve the problem. If you do this, BakaXL will delete the Libraries and the JSON file for the core, and then attempt to get this version from BakaPlaza again.</Item>
<Item Key="CoreManagement_Restore_Delete_Title">Delete this core</Item>
<Item Key="CoreManagement_Restore_Delete_Button">Remove this core from the game directory</Item>
<Item Key="CoreManagement_Restore_Delete_Desc">If you do this, this Minecraft core will be permanently deleted from the current game directory, and its mods, maps, screenshots, and other data will be deleted as well.

This process is irreversible. Please proceed with caution.</Item>
<Item Key="CoreManagement_Restore_ClearCache_Title">Clear garbage files</Item>
<Item Key="CoreManagement_Restore_ClearCache_Button">Clear garbage files from this game core</Item>
<Item Key="CoreManagement_Restore_ClearCache_Desc">If you do this, useless junk files, log files, etc. will be deleted; usually, your game will not be affected after these files are deleted.</Item>
<Item Key="StartMenuTipper_Title">Swipe Up to Start Menu</Item>
<Item Key="Minute">Minute(s)</Item>
<Item Key="Hour">Hour(s)</Item>
<Item Key="Core_HaveRun">Played: </Item>
<Item Key="Core_InstallTime">Installed on: </Item>
<Item Key="Core_NeverRun">Never Launched.</Item>
<Item Key="Core_RecentRun">Last launch on: </Item>
<Item Key="Core_Default_Description">This core is too lazy to have a description.</Item>
<Item Key="HomeWelcome">Welcome</Item>
<Item Key="HomePreview">Insider Preview Build</Item>
<Item Key="Home_Title">Welcome to BakaXL Launcher</Item>
<Item Key="Home_SubTitle">BakaXL is now completely new!</Item>
<Item Key="Home_SubTitle_Insider">BakaXL Insider Preview Version</Item>
<Item Key="Home_Task_NoTask">BakaXL Task Queue >> No current tasks or notifications</Item>
<Item Key="Home_Task_HasTask">BakaXL Task Queue >> {0} Tasks, {1} Notifications</Item>
<Item Key="Home_StartMenu_Title">Start</Item>
<Item Key="Home_StartMenu_Tips">Click on The Tiles Below to Explore More BakaXL Features</Item>
<Item Key="Tips">BakaXL Tips</Item>
<Item Key="HomeHello">Hello</Item>
<Item Key="HomeNewFeature">New Feature</Item>
<Item Key="HomeTheme">Theme</Item>
<Item Key="HomePlugin">Plugins</Item>
<Item Key="HomeBakaPlaza">BakaPlaza</Item>
<Item Key="HomeLaunch">Launch!</Item>
<Item Key="HomeLoginMode">Online Mode</Item>
<Item Key="HomeOpenWebside">Website</Item>
<Item Key="HomeGameCore">Game Core</Item>
<Item Key="HomeSettings">Settings</Item>
<Item Key="HomeAchievements">Achievements</Item>
<Item Key="HomePackTool">BakaXL Mod Pack[\n]Tool</Item>
<Item Key="HomePackToolName">Mod Pack Tool</Item>
<Item Key="HomeBakaverse">Bakaverse / Multiplayer</Item>
<Item Key="BakaXL.Pages.PageHome">BakaXL Home Menu</Item>
<Item Key="BakaXL.Pages.PageDownload">Update System</Item>
<Item Key="BakaXL.Pages.PageSettings">Settings</Item>
<Item Key="BakaXL.Pages.PageGuide">Guide</Item>
<Item Key="BakaXL.Pages.PageTips">BakaXL Tips</Item>
<Item Key="BakaXL.Pages.PagePlaza">BakaPlaza</Item>
<Item Key="BakaXL.Pages.PageAddGameCore">Add A Core</Item>
<Item Key="BakaXL.Pages.PageCrashReport">Game Crash Report</Item>
<Item Key="Minecraft_AuthMode_Offline">Offline Mode</Item>
<Item Key="Minecraft_AuthMode_Online">Authentication Mode (Mojang)</Item>
<Item Key="Minecraft_AuthMode_Online_Microsoft">Authentication Mode (Microsoft)</Item>
<Item Key="Minecraft_AuthMode_ThirdParty">Third Party Mode</Item>
<Item Key="ProfileBtn_Offline">Offline</Item>
<Item Key="ProfileBtn_Online">Online (Mojang)</Item>
<Item Key="ProfileBtn_Microsoft">Online (Microsoft)</Item>
<Item Key="ProfileBtn_ThirdParty">Third Party</Item>
<Item Key="ProfileBtn_UnableToUse">Unable To Use</Item>
<Item Key="Hide">Hide</Item>
<Item Key="Show">Show</Item>
<Item Key="Cancel">Cancel</Item>
<Item Key="Off">OFF</Item>
<Item Key="On">ON</Item>
<Item Key="Back">Back</Item>
<Item Key="Continue">Continue</Item>
<Item Key="NextStep">Next</Item>
<Item Key="PreviousStep">Previous</Item>
<Item Key="Unavailable">Unavailable</Item>
<Item Key="Login">Login</Item>
<Item Key="LearnMore">Learn More</Item>
<Item Key="Edit">Edit</Item>
<Item Key="UnableEdit">Unable to edit</Item>
<Item Key="Clear">Clear</Item>
<Item Key="Favorite">Favorite</Item>
<Item Key="UnFavorite">Unfavorite</Item>
<Item Key="Standard">Standard</Item>
<Item Key="Traditional">Traditional</Item>
<Item Key="Preparing">Preparing</Item>
<Item Key="Refresh">Refresh</Item>
<Item Key="ReTry">Retry</Item>
<Item Key="Unknown">Unknown</Item>
<Item Key="Unset">Unset</Item>
<Item Key="NoVersion">No versions available</Item>
<Item Key="InCompatible">Incompatible</Item>
<Item Key="Unsupport">Unsupport</Item>
<Item Key="Standard">Standard</Item>
<Item Key="Traditional">Traditional</Item>
<Item Key="FullScreen">Fullscreen </Item>
<Item Key="Big">Large </Item>
<Item Key="Middle">Medium </Item>
<Item Key="Small">Small </Item>
<Item Key="Default">Default </Item>
<Item Key="Custom">Custom </Item>
<Item Key="Collapse">Collapse</Item>
<Item Key="Mod">Mod</Item>
<Item Key="Mods">Mods</Item>
<Item Key="Map">Map</Item>
<Item Key="Maps">Maps</Item>
<Item Key="Modpack">ModPack</Item>
<Item Key="ModPacks">ModPacks</Item>
<Item Key="ResourcePacks">ResourcePacks</Item>
<Item Key="ShadowPacks">ShadowPacks</Item>
<Item Key="BakaXLTema">BakaXL Themes</Item>
<Item Key="BakaXLPlugin">BakaXL Plugins</Item>
<Item Key="AllCategory">All</Item>
<Item Key="AllType">All</Item>
<Item Key="AllPlazaSource">All</Item>
<Item Key="AllVersion">All</Item>
<Item Key="AllModLoaderType">All</Item>
<Item Key="Error_CodeIs">Error Code is {0} if Needed.</Item>
<Item Key="BakaXL_Update_Title">There is a new version of BakaXL available {0}!</Item>
<Item Key="BakaXL_Update_Info">A new version of BakaXL has been released, an update is required before you can continue. It won't take too long. An internet connection is required during the update.</Item>
<Item Key="BakaXL_Update_Btn_Yes">Update Now</Item>
<Item Key="BakaXL_Update_Btn_OrYes">Or Update</Item>
<Item Key="BakaXL_Update_NeedLogin_Title">Login to BakaXL Network to update</Item>
<Item Key="BakaXL_Update_NeedLogin_Info">To get updates from the currently set BakaXL update channel, you will need to log in to BakaXL Network. 
Go "BakaXL Settings - Profiles" to log in to your BakaXL Account.</Item>
<Item Key="BakaXL_Update_NotInsider_Title">Need to be a member of Insider Program</Item>
<Item Key="BakaXL_Update_NotInsider_Info">Oops! It looks like you are not currently a registered BakaXL Insider. 
To get this Insider version, your account needs to be enrolled as a BakaXL Insider Program member.

Participate in discussions in BakaXL Discord, or using "Afdian" to support the development of BakaXL by enrolling your BakaXL account as an Insider!</Item>
<Item Key="BakaXL_Update_NotInsider_Tips">But there is actually other ways to update it,BakaXL won't force you to be a sponsor!</Item>
<Item Key="BakaXL_Update_NotInsider_Btn_Afdian">Go to "Afdian" and take a look</Item>
<Item Key="LiveBackground_Prepare_Title">Preparing The Background</Item>
<Item Key="LiveBackground_Prepare_Tips">It might take a little while</Item>
<Item Key="Guide_Type_Base">BakaXL Guide</Item>
<Item Key="Guide_Type_Language">Language</Item>
<Item Key="Guide_Type_System">System</Item>
<Item Key="Guide_Type_Profile">Profile</Item>
<Item Key="Guide_Type_Other">Others</Item>
<Item Key="Guide_Type_Personalize">Personalize</Item>
<Item Key="Guide_Type_Accessibility">Accessibility</Item>
<Item Key="Guide_Page_Welcome_Subtitle">Welcome to the New BakaXL!</Item>
<Item Key="Guide_Page_Welcome_Tips">We need some information before you can start.</Item>
<Item Key="Guide_Page_Welcome_Start">Click and Hold Here/or Press Space to Begin</Item>
<Item Key="Guide_Page_Welcome_DragHere">Drag to Here</Item>
<Item Key="Guide_Page_Welcome_Great">Awesome!</Item>
<Item Key="Guide_Page_Language_Tips">Please Select Your Language</Item>
<Item Key="Guide_Page_DisplayMode_Subtitle">Display Mode</Item>
<Item Key="Guide_Page_DisplayMode_Tips">You can change it at 'Settings - Accessibility' any time</Item>
<Item Key="Guide_Page_DisplayMode_Standard_Tips">Do not show tiles by default</Item>
<Item Key="Guide_Page_DisplayMode_Traditional_Tips">Always show tiles</Item>
<Item Key="Guide_Page_Audio_Subtitle">Music and Sound</Item>
<Item Key="Guide_Page_Audio_Tips">When you are using some features or themes, BakaXL can play musics or sounds. </Item>
<Item Key="Guide_Page_Audio_Off_Tips">BakaXL turns off all sound output</Item>
<Item Key="Guide_Page_Audio_On_Tips">BakaXL will play background musics and sounds</Item>
<Item Key="Guide_Page_QuickSet_Subtitle">Quick Setting</Item>
<Item Key="Guide_Page_QuickSet_Tips">You can always change these in 'Settings'</Item>
<Item Key="Guide_Page_QuickSet_Title">Let BakaXL Automatically Set Things Up</Item>
<Item Key="Guide_Page_QuickSet_Manual">Manual Settings</Item>
<Item Key="Guide_Page_QuickSet_QuickSet">Quick Settings</Item>
<Item Key="Guide_Page_QuickSet_AboutQuickSet">Learn More About Quick Settings</Item>
<Item Key="Guide_Page_QuickSet_AboutDataCollection">Learn More About Data Collection</Item>
<Item Key="Guide_Page_Java_Subtitle">Java Virtual Machine</Item>
<Item Key="Guide_Page_Java_Tips">BakaXL no longer supports Java 6</Item>
<Item Key="Guide_Page_Java_SelectJava">Select a JVM</Item>
<Item Key="Guide_Page_Java_NotFound">Looks like that we did not find a JVM on this PC</Item>
<Item Key="Guide_Page_Java_NeedTips">You must install JVM in order to run Minecraft</Item>
<Item Key="Guide_Page_Java_GetJava">Get JVM</Item>
<Item Key="Guide_Page_Java_GetLatestJava">Get The Latest JVM</Item>
<Item Key="Guide_Page_Java_Rescan">Re-Scan</Item>
<Item Key="Guide_Page_Java_ManualLocate">Locate Manually</Item>
<Item Key="Guide_Page_Memory_Subtitle">Memory(RAM)</Item>
<Item Key="Guide_Page_Memory_Tips">Using at least 1024MB of RAM is recommended</Item>
<Item Key="Guide_Page_Profile_Title">User Profile</Item>
<Item Key="Guide_Page_Profile_Tips">A User Profile will store your Minecraft username.
After you login to your BakaXL Account, your friends
will able to see your profile in their Launcher</Item>
<Item Key="Guide_Page_ProfileFull_Subtitle">Profiles are Full</Item>
<Item Key="Guide_Page_ProfileFull_Tips">You can manage all the profiles in the 'Settings'</Item>
<Item Key="Guide_Page_ProfileFull_UseCurrent">Use your current profile to continue</Item>
<Item Key="Guide_Page_ProfileFull_UseCurrent_Tips">The maximum number of profiles has been reached</Item>
<Item Key="Guide_Page_ProfileCreate_Subtitle">Create Profile</Item>
<Item Key="Guide_Page_ProfileCreate_Tips">BakaXL uses the industry standard for data encryption</Item>
<Item Key="Guide_Page_ProfileCreate_EnterUsername">Enter your Username</Item>
<Item Key="Guide_Page_ProfileCreate_FogotPassword">Forgot Password?</Item>
<Item Key="Guide_Page_ProfileCreate_BuyMinecraft">Buy Minecraft</Item>
<Item Key="Guide_Page_ProfileCreate_Hey">Hi There! {0}!</Item>
<Item Key="Guide_Page_ProfileCreate_Online">I Bought Minecraft</Item>
<Item Key="Guide_Page_ProfileCreate_Offline">I Don't Have The Game</Item>
<Item Key="Guide_Page_ProfileCreate_Error_NullAccountOrPassword">Please enter your Username/Password</Item>
<Item Key="Guide_Page_ProfileReady_Subtitle">All Done!</Item>
<Item Key="Guide_Page_ProfileReady_Tips">You can always modify your profile in 'Settings'</Item>
<Item Key="Guide_Page_ProfileReady_Updated">We have updated your Profile!</Item>
<Item Key="Guide_Page_ProfileReady_YourNewProfile">Here's your new Profile</Item>
<Item Key="Guide_Page_ProfileReady_SetupAvatar">Choose an Avatar</Item>
<Item Key="Guide_Page_ProfileAuthLib_Subtitle">Third-party credentials</Item>
<Item Key="Guide_Page_ProfileAuthLib_Tips">Your modpack provider requires you to authenticate with a specific third-party account</Item>
<Item Key="Guide_Page_ProfileAuthLib_GoRegister">Click here to register</Item>
<Item Key="Guide_Page_ProfileAuthLib_CreateTitle">Creat an account for "{0}"</Item>
<Item Key="Guide_Page_ProfileAuthLib_CreateSubTitle">The modpack you are currently using requires BakaXL to create a third-party account and Minecraft profile from "{0}"
</Item>
<Item Key="Guide_Page_ProfileAuthLib_CreateTips">BakaXL cannot guarantee the security of this authentication server. 
Please read the privacy policy of this verification service provider to learn how it protects your user data. 
Authentication server address: {0}</Item>
<Item Key="Guide_Page_ProfileAuthLib_Skip">Skip for now, do it later</Item>
<Item Key="Guide_Page_Finished_Title">Finished!</Item>
<Item Key="Guide_Page_Finished_Content">Press the HOME button in the top left corner,
or the HOME key on the keyboard to continue.</Item>
<Item Key="Guide_Page_Finished_AddGameCore_Title">Need to install a Minecraft Core?</Item>
<Item Key="Guide_Page_Finished_AddGameCore_Tips">Click here and install a Minecraft Core. </Item>
<Item Key="Bakaverse_Title">"{0}"'s Bakaverse</Item>
<Item Key="Bakaverse_Account_Title">Me</Item>
<Item Key="Bakaverse_FriendsList_Title">Friends</Item>
<Item Key="Bakaverse_AddFriends_Title">Add Friends</Item>
<Item Key="Bakaverse_NotLogin">Not Logged In</Item>
<Item Key="Bakaverse_CheckAfterLogin">Get your Network ID after Logging In</Item>
<Item Key="Bakaverse_UserInfo">User Info</Item>
<Item Key="Bakaverse_NeedLogin_BeforeUse">Before you can use this</Item>
<Item Key="Bakaverse_NeedLogin_LoginRequired">You need to login</Item>
<Item Key="Bakaverse_NeedLogin_Method">Go to "Settings - Profiles" and then Login To Your BakaXL Account</Item>
<Item Key="Bakaverse_CurrentUser_Tips">Your friends can search for your account by using your 
BakaXL Network ID. 
Please include the tag that follows your username when you are telling 
your friends your BakaXL Network ID. </Item>
<Item Key="Bakaverse_UserInfo_VerificationAndPlan">Certifications and Programs</Item>
<Item Key="Bakaverse_UserInfo_VerificationAndPlan_Tips">If you are enrolled in a BakaXL program or are BakaXL certified,
 they will appear here.</Item>
<Item Key="Bakaverse_UserInfo_Verification">BakaXL Certificate: {0}</Item>
<Item Key="Bakaverse_UserInfo_VerificationButNoInfo">This account is certified by BakaXL</Item>
<Item Key="Bakaverse_UserInfo_IsInsider">BakaXL Insider Program Member</Item>
<Item Key="Bakaverse_UserInfo_SupporterPlan">BakaXL Sponsor Program: {0}</Item>
<Item Key="Bakaverse_UserInfo_AlreadyOnline">This friend is online now. 
If they are running Minecraft or using some BakaXL features, they will show here. </Item>
<Item Key="Bakaverse_UserInfo_LastLogin">Last appeared on:{0}。</Item>
<Item Key="Bakaverse_UserInfo_TimeBecomeFriend">Became friends on:{0}。
You became friends by switching BakaXL Network ID. </Item>
<Item Key="Bakaverse_UserInfo_PlayHistory">Play History</Item>
<Item Key="Bakaverse_UserInfo_PlayHistory_Tips">Your friends' recently played mod packs and play time will show here.</Item>
<Item Key="Bakaverse_UserInfo_OnlineHistory">Play information</Item>
<Item Key="Bakaverse_UserInfo_Milestone">Milestone</Item>
<Item Key="Bakaverse_UserInfo_Milestone_Empty">The grass is empty. It seems that there is nothing. 
If you send a friend request to others, then we will build a milestone here. </Item>
<Item Key="Bakaverse_UserInfo_Milestone_Visitor">There is a footprint on the grass. Who will it be?
We will build a milestone here after you accept a friend request. </Item>
<Item Key="Bakaverse_UserInfo_Milestone_Wreckage">The milestone was removed. There are only wreckages of the milestone on the grass. 
If you want to clean the wreckages up, you need to remove the other side from your blacklist. </Item>
<Item Key="Bakaverse_UserInfo_Milestone_Self">You walked to this place, but there are all milestones around. 
You looked around and didn't see your own milestone, it fills you with determination. </Item>
<Item Key="Bakaverse_UserInfo_Manage">Manage</Item>
<Item Key="Bakaverse_UserInfo_Manage_RemoveFriend">Remove Friend</Item>
<Item Key="Bakaverse_UserInfo_Manage_RemoveFriend_Tips">When you remove a friend, you will also removed from the other side's friends list. 
If you want to add this friend again, you will need to resend the request. </Item>
<Item Key="Bakaverse_UserInfo_Manage_BlackList_Remove">Remove from blacklist</Item>
<Item Key="Bakaverse_UserInfo_Manage_BlackList_Remove_BtnTitle">I decide to forgive him/her</Item>
<Item Key="Bakaverse_UserInfo_Manage_BlackList_Remove_Tips">You will become strangers when you remove the other side from your blacklist. 
If you want to add this friend again, you will need to resend the request. </Item>
<Item Key="Bakaverse_UserInfo_FriendRequest">Friend requests</Item>
<Item Key="Bakaverse_UserInfo_AboutYourSelf">About yourself</Item>
<Item Key="Bakaverse_UserInfo_AboutYourSelf_Tips">This interface has your own information. 
You stand here, but don't know what to do. 





You looked behind to BakaXL, but we don't know what to do either. 






Oh, by the way:
In the new version of BakaXL, we have changed the behavior that BakaXL performs a friend search,
so keeping searching about yourself will have no impact on the server performance. </Item>
<Item Key="Bakaverse_FriendList_Tips">Your friends see your online status and name of the mod pack you
 are playing. You can go to the Privacy Settings to modify related 
options, or change your online status to "Stealth"。</Item>
<Item Key="Bakaverse_UserInfo_InviteToLobby">Invite friend to your lobby</Item>
<Item Key="Bakaverse_UserInfo_InviteToLobby_Tips">If you are the lobby's creator, then you can invite your friend to your lobby here.</Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest">Friend requests</Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_BtnTitle">Check received friend requests</Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_Agree">Accept</Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_Ignore">Decline</Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_Tips">The others will show in your friends list after you accept the request. 
They won't receive a notification after you ignore the request. </Item>
<Item Key="Bakaverse_AddFriends_SendRequest">Send friend request</Item>
<Item Key="Bakaverse_AddFriends_SendRequest_Tips">Your friend will receive your request once you send it. 
All the requests sent by your friends will be shown here. </Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_NoInvite_Tips">Oops, it seems that there are no requests now. 
When you receive friend requests, they will show here. </Item>
<Item Key="Bakaverse_AddFriends_RecivedRequest_Tips">Check all the requests you received and pending. </Item>
<Item Key="Bakaverse_AddFriends_SearchOnline_Title">Search friends on the Internet</Item>
<Item Key="Bakaverse_AddFriends_SearchTips">Enter the friend's BakaXL Network ID (Example: Username#1234)</Item>
<Item Key="Bakaverse_AddFriends_Btn_Title">Search friends by BakaXL Network ID</Item>
<Item Key="Bakaverse_AddFriends_Btn_Tips">Find your friends by using BakaXL online services. </Item>
<Item Key="Bakaverse_AddFriends_MinePass_Btn_Title">Add friends by using BakaXL Interlaced Communication</Item>
<Item Key="Bakaverse_AddFriends_Discovery_Title">Discovery</Item>
<Item Key="Bakaverse_AddFriends_Discovery_Tips">Play or explore as you continue to use BakaXL. 
BakaXL Network will recommend you some like-minded users here.</Item>
<Item Key="Bakaverse_AddFriends_Discovery_RecentPlayed">Since you recently played "{0}".</Item>
<Item Key="Bakaverse_AddFriends_Discovery_RecentChangedTema">Since you have recently used BakaSkin "{0}".</Item>
<Item Key="Bakaverse_AddFriends_Discovery_RecentDownload">Since you recently downloaded "{0}".</Item>
<Item Key="Bakaverse_AddFriends_Discovery_RecentJoinedServer">Since you recently played in the "{0}" server.</Item>
<Item Key="Bakaverse_Lobby_Title">Lobby</Item>
<Item Key="Bakaverse_Lobby_Introduction_Title">Introduction</Item>
<Item Key="Bakaverse_Lobby_Introduction_Content">Join friends' local network games, or share your clients.
Please let all your friends who will take part in be here.</Item>
<Item Key="Bakaverse_Lobby_LAN_Motd_Header">BakaXL Lobby</Item>
<Item Key="Bakaverse_Lobby_Error_Title">Lobby Service Error</Item>
<Item Key="Bakaverse_Lobby_Error_Detail_Relogin">Please login to this BakaXL Account again</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_Title">Create a new lobby</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_CustomLobbyID_TextBox_Watermark">Custom Code(in 25 letters)</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_CustomLobbyID_TextBox_Tips">Thanks for supporting BakaXL! As a member of the Insider Program, 
You can choose a custom BakaXL Lobby Code when creating a lobby! 
Please don't violate BakaXL ToS when using this feature.
Using this feature incorrectly will cancel your Insider status.</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_AllowStrangers_Btn_Title">Only open to my friends</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_Create_Btn_Title">Create a lobby</Item>
<Item Key="Bakaverse_Lobby_CreateLobby_Create_Btn_Tips">Start Minecraft and choose "Open to LAN" in a single game, 
then you can create a lobby. 
If detecting fails for a long time, try to start Minecraft after
 running BakaXL as administrator. </Item>
<Item Key="Bakaverse_Lobby_JoinLobby_Title">Join a friend or public lobby</Item>
<Item Key="Bakaverse_Lobby_JoinLobby_LobbyID_TextBox_Watermark">Enter the Lobby Code (e.g. 01509230)</Item>
<Item Key="Bakaverse_Lobby_JoinLobby_Join_Btn_Title">Join lobby</Item>
<Item Key="Bakaverse_Lobby_JoinLobby_Join_Btn_Tips">Enter the Lobby Code that told to you by a friend or someone 
else to join the lobby.
If the lobby is set to friend-only, you must be a friend of the creator
 to join lobby.</Item>
<Item Key="Bakaverse_Lobby_FriendInvites_Title">Invites from friends</Item>
<Item Key="Bakaverse_Lobby_FriendInvites_Tips">If your friends invite you to join their lobby, they will appear here.</Item>
<Item Key="Bakaverse_Lobby_CrossLauncherPlay_Title">Join a third-party launcher's connect platform</Item>
<Item Key="Bakaverse_Lobby_CrossLauncherPlay_Tips">To join an online service created by a third-party launchers 
(e.g. PCL2, HMCL), then you'll need to install the 
Multi-Launcher Online Service Plugin in
 BakaPlaza first.

This service is Coming Soon™</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_Title">Lobby Information</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyID_Title">Lobby </Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_Title">Lobby Creator</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_GameStatus_Title">Game Information</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_GameStatus_NotInGame">Not In Game</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_GameStatus_NotInGame_Tips">This lobby creator has not started Minecraft.
After the game is launched, the version information will be displayed here synchronously.</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_GameStatus_InGame_NoVersion_Tips">Lobby creator is playing Minecraft.
You must be on the same Minecraft version to join the game.
If the lobby creator is using a modpack, you should also use the exact same modpack.</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LobbyHost_GameStatus_InGame_WithVersion_Tips">Minecraft version: {0}.
You must be on the same Minecraft version to join the game.
If the lobby creator is using a modpack, you should also use the exact same modpack.</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_Network_Title">Local Network</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalNAT_Title">Local NAT Type</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalUPnP_Title">Local UPnP Compatibility</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_Title">IP Version</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_Checking">Checking</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_Checking_Tips">BakaXL will automatically choose connection
way according to your network environment. </Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_Support">IPv6 First</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_Support_Tips">Your network environment supports IPv6, BakaXL will#xD;
try to establish a faster connection by IPv6. </Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_UnSupport">IPv4 Only</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalIPv6_UnSupport_Tips">Your network environment only supports IPv4, but don't worry
BakaXL will connect by IPv4. </Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalDiscoveryServerStatus_Title">BakaXL Network Discovery Usability</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalDiscoveryServerStatus_Connected">Available</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalDiscoveryServerStatus_Failed">Unavailable</Item>
<Item Key="Bakaverse_Lobby_LobbyInfo_LocalDiscoveryServerStatus_Tips">The BakaXL Network detection service ensures that you can use the relevant functions of the lobby normally.
If the service is unavailable, you will not be able to using lobby service.</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_Title">Lobby Action</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_AutoAcceptJoin">Auto Accept Join Request</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_AutoAcceptJoin_Tips">Introducing auto accept join requests from other lobby joiners.
Well, this is probably useful when you're going to be too lazy to manually handle requests from online friends.
Caution. This will allow all users who know the Loby Code to join the lobby at will.</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_AllowRelay">Connect with Relay when cannot connect directly</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_AllowRelay_Tips">When BakaXL cannot establish a direct connection with the other players,
try connect via the BakaXL Network Relay service.
Your network traffic will be securely relayed through trusted BakaXL servers.</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_LeaveLobby">Leave Lobby</Item>
<Item Key="Bakaverse_Lobby_LobbyAction_LeaveLobby_Tips">If you are currently playing in Minecraft LAN World,
leaving the lobby will cause the connection to the creator host to be disconnected.</Item>
<Item Key="Bakaverse_Lobby_LobbyJoinRequest_Title">Lobby Joining Request</Item>
<Item Key="Bakaverse_Lobby_LobbyJoinRequest_Tips">If a user has requested to join the lobby, they will be displayed here.</Item>
<Item Key="Bakaverse_Lobby_OnlineUsers_Title">Online User List</Item>
<Item Key="Bakaverse_Lobby_OnlineUsers_Tips">Select a user to further view their account information, or add them as friends.</Item>
<Item Key="Bakaverse_Lobby_OnlineUsers_HostKick_Tips">You are the lobby creator, you can move the user out of this lobby by long-pressing the corresponding user.</Item>
<Item Key="Bakaverse_Lobby_UserAction_Waiting">Waiting</Item>
<Item Key="Bakaverse_Lobby_UserStatus_Host">Host</Item>
<Item Key="Bakaverse_Lobby_UserStatus_Joined">Joined</Item>
<Item Key="Bakaverse_Lobby_UserStatus_Punching">Joined / Connecting</Item>
<Item Key="Bakaverse_Lobby_UserStatus_WaitingRelay">Joined / Waiting for Relay</Item>
<Item Key="Bakaverse_Lobby_UserStatus_LeaveMinecraft">Joined / Game Disconnected</Item>
<Item Key="Bakaverse_Lobby_UserStatus_ConnectionEstablished">Joined / Connected</Item>
<Item Key="Bakaverse_Lobby_UserStatus_IPv6ConnectionEstablished">Joined / IPv6 Connected</Item>
<Item Key="Bakaverse_Lobby_UserStatus_RelayConnectionEstablished">Joined / Connected with Relay</Item>
<Item Key="Bakaverse_Lobby_UserStatus_NATRestrict">Failed / NAT Strict</Item>
<Item Key="Bakaverse_Lobby_UserStatus_FirewallReject">Failed / NAT Firewall Rejected</Item>
<Item Key="Bakaverse_Lobby_UserStatus_Unknown">Failed / Unknown</Item>
<Item Key="Bakaverse_Lobby_CopyLobbyID_Template">I'm now at BakaXL Online Game Lobby! Enter the lobby code: <{0}> in Bakaverse to join! </Item>
<Item Key="Bakaverse_Lobby_CopyLobbyID_WithHostGameInfo_Template">I'm now at BakaXL Online Game Lobby playing [{0}]! Enter the lobby code: <{0}> in Bakaverse to join!</Item>
<Item Key="Bakaverse_Lobby_CopyLobbyID_WithHostGameInfo_HasBaseVersion_Template">I'm now at BakaXL Online Game Lobby playing [{0}] (Minecraft {1})! Enter the lobby code: <{0}> in Bakaverse to join!</Item>
<Item Key="Bakaverse_UserSettings_Title">User Settings</Item>
<Item Key="Bakaverse_UserSettings_PersonalInfo">Personal Information Settings</Item>
<Item Key="Bakaverse_UserSettings_PersonalInfo_Status">Change my online status</Item>
<Item Key="Bakaverse_UserSettings_PersonalInfo_Avatar">Change avatar</Item>
<Item Key="Bakaverse_UserSettings_PersonalInfo_AccountSettings">Go to BakaXL Account to modify settings</Item>
<Item Key="Bakaverse_UserSettings_Privacy">Privacy Settings</Item>
<Item Key="Bakaverse_UserSettings_Privacy_SkinShare">BakaXL Network SkinShare</Item>
<Item Key="Bakaverse_UserSettings_Privacy_SkinShare_Tips">The SkinShare feature allows other BakaXL Network friends,
in-server players or online lobby participants who also have this 
feature enabled to see your offline skins.
When this feature is turned off, BakaXL will stop sharing
 your skin information to BakaXL Network, and you will not be able
 to see skins set by other players.

This feature only works when launching Minecraft in Offile Mode.</Item>
<Item Key="Bakaverse_UserSettings_Privacy_GameRecord">Let BakaXL Network record my game state</Item>
<Item Key="Bakaverse_UserSettings_Privacy_GameRecord_Tips">Whether to allow your game status (e.g. game name, version)
 to be recorded in BakaXL Network.
The BakaXL Network server periodically clears the game state cache.
Game state will not contain your sensitive information.

When this feature is turned off, BakaXL will stop reporting your
 game status to the BakaXL Network.</Item>
<Item Key="Bakaverse_UserSettings_Privacy_GameRecord_Remove">Delete my game state cache from BakaXL Network</Item>
<Item Key="Bakaverse_UserSettings_Privacy_FriendRecommend">Allow BakaXL to recommend friends to me</Item>
<Item Key="Bakaverse_UserSettings_Privacy_FriendRecommend_Tips">BakaXL will recommend some like-minded friends to you based on 
your most recent game status (e.g. modpack name launched,
 third-party Minecraft servers you've joined,BakaSkins you've used,
 or mods you've installed).

When this feature is turned off, BakaXL will stop recommending
 you and will not recommend you to others.
If you turn referrals on after a period of time, it may take a while for
BakaXL Network to completely stop recommending you to others.</Item>
<Item Key="Bakaverse_UserSettings_Tips">Here you can view and modify some of your account settings.</Item>
<Item Key="Bakaverse_Notification_NewFriend_Title">New friend request</Item>
<Item Key="Bakaverse_Notification_NewFriend_Desc">Received a friend request from {0} !</Item>
<Item Key="Bakaverse_OnlineStatus_Online">Online</Item>
<Item Key="Bakaverse_OnlineStatus_Offline">Offline</Item>
<Item Key="Bakaverse_OnlineStatus_Vanish">Vanish</Item>
<Item Key="Bakaverse_OnlineStatus_Busy">Busy</Item>
<Item Key="Bakaverse_OnlineStatus_Away">Away</Item>
<Item Key="Bakaverse_OnlineStatus_Using">Using</Item>
<Item Key="Bakaverse_OnlineStatus_Using_Full">Browsing: {0}</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming">Gaming</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_Full">Playing: {0}</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InServer">Playing in third-party Minecraft server</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InLANServer">LAN world opening</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InSinglePlayWorld">Playing Minecraft alone</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InSinglePlayWorld_Dimension">Dimension: {0}</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InSinglePlayWorld_Weather">Weather: {0}</Item>
<Item Key="Bakaverse_OnlineStatus_Gaming_InSinglePlayWorld_Health">Health: {0}</Item>
<Item Key="BakaPlaza_FullName">BakaXL BakaPlaza</Item>
<Item Key="BakaPlaza_Update">Update</Item>
<Item Key="BakaPlaza_SearchBar_Watermark">Search for something...</Item>
<Item Key="BakaPlaza_SearchBar_SourceTarget_Plaza">Search the keyword in BakaPlaza</Item>
<Item Key="BakaPlaza_SearchBar_SourceTarget_CurseForge">Search the keyword in CurseForge</Item>
<Item Key="BakaPlaza_SearchBar_SourceTarget_Modrinth">Search the keyword in Modrinth</Item>
<Item Key="BakaPlaza_SearchBar_Tips_EnterToSearch">Press Enter to Search in All Sources</Item>
<Item Key="BakaPlaza_Category_Subtitle">Category</Item>
<Item Key="BakaPlaza_AutoTile_Loading_Title">Wait a moment…</Item>
<Item Key="BakaPlaza_AutoTile_Loading_Tips">Collectng electric wave from Atmosphere! </Item>
<Item Key="BakaPlaza_MinecraftInstaller_Title">Download</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Subtitle">Minecraft Cores</Item>
<Item Key="BakaPlaza_MinecraftInstaller_SelectCore">Select a Core</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Search">Search...</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category">Category</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Vanilla_Release">Release</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Vanilla_Snapshot">Snapshot</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Vanilla_Other">Other</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Vanilla_Special">Special</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Vanilla_Desc">Minecraft</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Forge_Desc">Hotest API</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Liteloader_Desc">Light weight API</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Fabric_Desc">A new Open-source API</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Quilt_Desc">Modularization API</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Optifine_Desc">OptiFine</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Release">Release</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Snapshot">Snapshot</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Special">Special</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Stable">Stable</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Unstable">Unstable</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Beta">Beta</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Alpha">Alpha</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Status_Recommend">Recommend</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Optifine_InstallMethod_NewCore">Install as a new core</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Core_Optifine_InstallMethod_AsMod">Install as a Mod</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Version">Version</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Category_Select">Select...</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings">Settings</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_DisplayName">Display Name</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_DisplayName_Default">Select a Core first</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_DisplayIcon">Display Icon</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_DisplayIcon_Browse">Browse...</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_Install">Install</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Settings_InstallNow">Install Now</Item>
<Item Key="BakaPlaza_MinecraftInstaller_ListBox_Loading_Title">On my way!</Item>
<Item Key="BakaPlaza_MinecraftInstaller_ListBox_Loading_Subtitle">They a waiting the traffic light.</Item>
<Item Key="BakaPlaza_MinecraftInstaller_ListBox_None_Title">Ohh, they got lost...</Item>
<Item Key="BakaPlaza_MinecraftInstaller_ListBox_None_Subtitle">This is really frustrating</Item>
<Item Key="BakaPlaza_MinecraftInstaller_CoreDesc_Default">Downloaded from BakaPlaza - Vanilla Minecraft {0} </Item>
<Item Key="BakaPlaza_MinecraftInstaller_CoreDesc_Forge">Downloaded from BakaPlaza - Minecraft {1} with Forge {0} </Item>
<Item Key="BakaPlaza_MinecraftInstaller_CoreDesc_Optifine">Downloaded from BakaPlaza - Minecraft {1} with OptiFine {0}</Item>
<Item Key="BakaPlaza_MinecraftInstaller_CoreDesc_Fabric">Downloaded from BakaPlaza - Minecraft {1} with Fabric {0}</Item>
<Item Key="BakaPlaza_MinecraftInstaller_CoreDesc_Quilt">Downloaded from BakaPlaza - Minecraft {1} with Quilt {0}</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_Prepare">Preparing</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_Successful">Success</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_Downloading">Downloading</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_DownloadingSuccessful">Download completed</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CheckCoreEnv">Checking Environment</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_UnZip">Unzip files needed</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_ReadJson">Analyzing Json file</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CreateVersionFolder">Create directory for the version</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_PrepareJson">Pre-process Json information</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_WriteJson">Write Json information</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_GenBakaCoreConfig">Generate configuration files</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CopyForgeFile">Copy Forge files</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_PrepareProcessor">Preparing Forge File Processor</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_GenerateForgeFile">Generating Forge Files</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_GenerateOptifineFile">Generating OptiFine Files</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CopyOptifineFile">Copying Optifine Files</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_PrepareVanilla">Prepare Vanilla Minecraft</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CopyVanilla">Copy Vanilla Minecraft core</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_CleanUp">Preparing to finish</Item>
<Item Key="BakaPlaza_MinecraftInstaller_Steps_InstallSuccessful">Install completed</Item>
<Item Key="BakaPlaza_ItemDetail_Author">Created by {0}</Item>
<Item Key="BakaPlaza_ItemDetail_Author_Unknown">Unknown Author</Item>
<Item Key="BakaPlaza_ItemDetail_ReleaseDate">Release Date</Item>
<Item Key="BakaPlaza_ItemDetail_DownloadCount">Downloads</Item>
<Item Key="BakaPlaza_ItemDetail_DownloadCount_Unit">Times</Item>
<Item Key="BakaPlaza_ItemDetail_LastUpdate">Last Update</Item>
<Item Key="BakaPlaza_ItemDetail_ButtonText_Get">Get</Item>
<Item Key="BakaPlaza_ItemDetail_ButtonText_Download">Download</Item>
<Item Key="BakaPlaza_ItemDetail_ButtonText_View">View</Item>
<Item Key="BakaPlaza_ItemDetail_Favorite_Add">Add to Favorite List</Item>
<Item Key="BakaPlaza_ItemDetail_Favorite_Remove">Remove from Favorite List</Item>
<Item Key="BakaPlaza_ItemDetail_Sections_Preview">Preview</Item>
<Item Key="BakaPlaza_ItemDetail_Sections_Description">Description</Item>
<Item Key="BakaPlaza_ItemDetail_Sections_Compatibility">Compatibility</Item>
<Item Key="BakaPlaza_ItemDetail_Sections_Source">Source</Item>
<Item Key="BakaPlaza_ItemDetail_Sections_CopyrightAndPrivacy">Copyright and Privacy</Item>
<Item Key="BakaPlaza_ItemDetail_ReportItem">Report to BakaXL</Item>
<Item Key="BakaPlaza_ItemDetail_Compatible_VersionWithCounts">This resource is compatiable with {1} version(s) including {0}. </Item>
<Item Key="BakaPlaza_ItemDetail_Compatible_WithSomething">This resource is compatiable with {0}. </Item>
<Item Key="BakaPlaza_ItemDetail_Source_Plaza">This resource is from BakaXL BakaPlaza, delivered to BakaXL BakaPlaza Open Platform by users. </Item>
<Item Key="BakaPlaza_ItemDetail_Source_CurseForge">This resource is from CurseForge, BakaXL BakaPlaza visits it by API interface authorized by CurseForge. </Item>
<Item Key="BakaPlaza_ItemDetail_Source_Modrinth">This resource is from Modrinth, BakaXL BakaPlaza visits it by public API interface provided by Modrinth. </Item>
<Item Key="BakaPlaza_ItemDetail_Source_MCMod">Thanks to contributors at mcmod.cn for providing Chinese localization information for this resource, these information are shared with CC (BY-NC-SA 3.0). </Item>
<Item Key="BakaPlaza_ItemDetail_Privacy_AutoGenerateTips">{0} may not be applicable to BakaXL's Privacy Policy. 
Before using this resource, please visit the publisher's Privacy Policy to learn about how it protect your data. </Item>
<Item Key="BakaPlaza_ItemDetail_Copyright_AutoGenerateTips">The Copyright information is generated by BakaXL automatically, contents not from the author may be contained in the resource. 
This information may not be accurate, please visit the original publish website to learn about the Copyright. </Item>
<Item Key="BakaPlaza_ItemDetail_Copyright_AuthorIdentifyTips">Copyright information for this resource is claimed by the creator.
To learn more about the copyright of this resource, please contact the creator of the resource.</Item>
<Item Key="BakaPlaza_ItemDetail_Copyright_AutoGenerateEnd">All right reserved by the original author. </Item>
<Item Key="BakaPlaza_ItemDetail_Copyright_Tips">The resources displayed by BakaXL come from user submissions and automated data collection. Please contact us if you think this resource infringes your copyright.</Item>
<Item Key="BakaPlaza_ItemDetail_CurseForge_ReleaseType_Release">Release</Item>
<Item Key="BakaPlaza_ItemDetail_CurseForge_ReleaseType_Beta">Beta</Item>
<Item Key="BakaPlaza_ItemDetail_CurseForge_ReleaseType_Alpha">Alpha</Item>
<Item Key="BakaPlaza_ItemDetail_Link_websiteUrl">Visit Website</Item>
<Item Key="BakaPlaza_ItemDetail_Link_wikiUrl">Visit Wiki</Item>
<Item Key="BakaPlaza_ItemDetail_Link_issuesUrl">Report Issues to author</Item>
<Item Key="BakaPlaza_ItemDetail_Link_sourceUrl">Visit the Mainpage of the Open-source Project</Item>
<Item Key="BakaPlaza_ItemDetail_Link_mcmodUrl">Visit MCMod for this resource's information (Chinese)</Item>
<Item Key="BakaPlaza_ItemDetail_Link_mcbbsUrl">Visit MCBBS for this resource's information (Chinese)</Item>
<Item Key="BakaPlaza_ItemDetail_Loading_Title">Loading</Item>
<Item Key="BakaPlaza_ItemDetail_Loading_SubTitle">Please wait a moment, I promise it will be done in a minute</Item>
<Item Key="BakaPlaza_ItemDetail_LoadFailed_Title">Huh? This is a little tricky. </Item>
<Item Key="BakaPlaza_ItemDetail_LoadFailed_SubTitle">Please check your Internet connection, then try again. </Item>
<Item Key="BakaPlaza_ItemDetail_LoadFailed_Tips">Of course, current BakaXL may not support the resource. </Item>
<Item Key="BakaPlaza_ItemVersionList_Filter">Filter</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_Modloader">Mod Loader</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_Modloader_Tips">Some versions are not marked as compatible mod loaders by their creators, so some versions will not be listed when this filter is enabled.</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_Version">Version</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_Version_Tips">This filter controls the resource target versions displayed in the version list.</Item>
<Item Key="BakaPlaza_ItemVersionList_VersionList_Title">Version List</Item>
<Item Key="BakaPlaza_ItemVersionList_VersionList_Tips">Once the version is selected, BakaXL will start installing this resource automatically.
Click the "Save As..." button on the right to save it to another location.</Item>
<Item Key="BakaPlaza_ItemVersionList_DownloadCount">Downloaded {0} Times</Item>
<Item Key="BakaPlaza_ItemVersionList_ModloaderName">Compatible with {0}</Item>
<Item Key="BakaPlaza_ItemVersionList_Version">Version {0}</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_Watermark">Select One...</Item>
<Item Key="BakaPlaza_ItemVersionList_Filter_All">All</Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_CurrentVersion_NotSelected">Dependency information will be showed here after selecting a version. </Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_CurrentVersion">Version Selected: {0}. </Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_Btn_View">Visit the {0} dependencies needed for this version</Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_Btn_None">No dependencies needed</Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_Has">Depended with other {0} resources. </Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_Has_MoreInfoBtn">Learn More</Item>
<Item Key="BakaPlaza_ItemVersionList_Dependencies_None">Not depended with other resources. </Item>
<Item Key="BakaPlaza_ItemVersionList_UnableDownload">The author does not allow third-party Apps to download directly</Item>
<Item Key="BakaPlaza_ItemVersionList_Download">Download</Item>
<Item Key="BakaPlaza_ItemVersionList_SaveAs">Save As...</Item>
<Item Key="BakaPlaza_ItemVersionList_SaveAs_DiagTitle">Save the resource to...</Item>
<Item Key="BakaPlaza_ItemVersionList_SaveAs_DiagFilter">All Resource Type (*.*)|*.*</Item>
<Item Key="BakaPlaza_ItemVersionList_Download_Task_Title">Downloading {0} from BakaPlaza</Item>
<Item Key="BakaPlaza_ItemVersionList_Download_Task_Desc">BakaXL is downloading {0} to local</Item>
<Item Key="BakaPlaza_ItemVersionList_Loading_Title">Loading Versions</Item>
<Item Key="BakaPlaza_ItemVersionList_Loading_SubTitle">It's not we don't want to hurry up, but it gave too much. </Item>
<Item Key="BakaPlaza_ItemVersionList_LoadFailed_Title">Hey, what are you finding? </Item>
<Item Key="BakaPlaza_ItemVersionList_LoadFailed_SubTitle">It seems that no conforming results, we're sad too</Item>
<Item Key="BakaPlaza_ItemVersionList_LoadFailed_Tips">Check your filters, or maybe there is really no results. </Item>
<Item Key="BakaPlaza_ItemCollection_Dependencies_Summary">For resource "{0}" </Item>
<Item Key="BakaPlaza_ItemCollection_Dependencies_Title">List of Predependent Mods</Item>
<Item Key="BakaPlaza_ItemCollection_Dependencies_Explain">You are now visiting list of predependent Mods for "{0}". 
According to the author's definition, BakaXL has made a list of these dependency resources. 
Resources marked as "Must to Install" must be installed! Otherwise, some weird problems may appeared...
 
|[Color:Accent]Not all the dependencies support the main resource's Minecraft version|
|[Color:Accent]Make sure you have checked the compatiable Minecraft version before installing!! |
 
If Minecraft fail to start up because you didn't install all the dependencies, BakaXL will be very sad. You must not want BakaXL to be sad, right? </Item>
<Item Key="BakaPlaza_ItemCollection_NotInit_Summary">This page turned into a teapot and refused to load content</Item>
<Item Key="BakaPlaza_ItemCollection_NotInit_Title">HTTP/418 I'm a Teapot</Item>
<Item Key="BakaPlaza_ItemCollection_NotInit_Explain">There seems to be something wrong, self-awareness is prudoced when the page is loading. 
And it thinks it is a teapot. 
You can leave this damn place, find a true coffee pot, then let developers of BakaXL solve this problem. 
 
Hypertext Coffee Pot Control Protocol(HTCPCP/1.0): RFC 2324, section 2.3.2: 418 I'm a teapot</Item>
<Item Key="BakaPlaza_ItemCollection_Source_Plaza">This list is from BakaXL BakaPlaza</Item>
<Item Key="BakaPlaza_ItemCollection_Source_ThirdParty">This list is from a third-party provider</Item>
<Item Key="BakaPlaza_ItemCollection_Source_ThirdParty_WithName">This list is from a third-party provider called "{0}"</Item>
<Item Key="BakaPlaza_ItemList_Filter">Filters</Item>
<Item Key="BakaPlaza_ItemList_Filter_Source">Source</Item>
<Item Key="BakaPlaza_ItemList_Filter_Type">Type</Item>
<Item Key="BakaPlaza_ItemList_Filter_Category">Category</Item>
<Item Key="BakaPlaza_ItemList_Filter_Version">Version</Item>
<Item Key="BakaPlaza_ItemList_Filter_Modloader">Mod Loader</Item>
<Item Key="BakaPlaza_ItemList_SearchFrom_AllSource">Search in All Sources</Item>
<Item Key="BakaPlaza_ItemList_SearchFrom_PlazaOnly">Search in BakaXL BakaPlaza</Item>
<Item Key="BakaPlaza_ItemList_SearchFrom_CurseForgeOnly">Search in CurseForge</Item>
<Item Key="BakaPlaza_ItemList_SearchFrom_ModrinthOnly">Search in Modrinth</Item>
<Item Key="BakaPlaza_ItemList_PresetList_BakaTema_Title">Browse all BakaXL Themes</Item>
<Item Key="BakaPlaza_ItemList_PresetList_BakaTema_SubTitle">Personalize your BakaXL by using Themes! </Item>
<Item Key="BakaPlaza_ItemList_PresetList_CurseForge_Hottest_24hr_Title">Hotest Resources in Recent 24H</Item>
<Item Key="BakaPlaza_ItemList_PresetList_CurseForge_Hottest_24hr_SubTitle">CurseForge Ranking</Item>
<Item Key="BakaPlaza_ItemList_PresetList_CurseForge_Featured_ModPacks">ModPacks Popular now</Item>
<Item Key="BakaPlaza_ItemList_PresetList_CurseForge_Featured_ModPacks_SubTitle">Ranking from CurseForge</Item>
<Item Key="BakaPlaza_ItemList_SearchResult_WithKeyWord">Search results of "{0}" </Item>
<Item Key="BakaPlaza_ItemList_SearchResult">Search Results</Item>
<Item Key="BakaPlaza_ItemList_Searching_Title">Getting Results</Item>
<Item Key="BakaPlaza_ItemList_Searching_SubTitle">Wait a moment, Soon™</Item>
<Item Key="BakaPlaza_ItemList_SearchingFailed_Title">Failed</Item>
<Item Key="BakaPlaza_ItemList_SearchingFailed_SubTitle">Nothing finded, please try again! </Item>
<Item Key="BakaPlaza_ItemList_SearchingFailed_Tips">Maybe you made an error. </Item>
<Item Key="BakaPlaza_Item_Dependencie_MustInstall">Must be Installed</Item>
<Item Key="BakaPlaza_Item_Dependencie_OptionalInstall">Optional</Item>
<Item Key="BakaPlaza_Item_Dependencie_Libraries">Libraries</Item>
<Item Key="BakaPlaza_Item_Dependencie_Tools">Tools and Extensions</Item>
<Item Key="BakaPlaza_Item_Dependencie_Incompatible">Incompatible</Item>
<Item Key="BakaPlaza_Item_Dependencie_Included">Included</Item>
<Item Key="BakaPlaza_Item_PlazaType_Tema">BakaXL Themes</Item>
<Item Key="BakaPlaza_Item_Types_Addons">Bedrock Addons or Java Data Packs</Item>
<Item Key="BakaPlaza_Item_Types_Customization">ShaderPacks and Personalization</Item>
<Item Key="BakaPlaza_Item_Types_Modpacks">ModPacks</Item>
<Item Key="BakaPlaza_Item_Types_Mods">Mods</Item>
<Item Key="BakaPlaza_Item_Types_Resource_Packs">Resource Packs</Item>
<Item Key="BakaPlaza_Item_Types_Worlds">Maps</Item>
<Item Key="BakaPlaza_Item_Tags_World_Gen">World Generating</Item>
<Item Key="BakaPlaza_Item_Tags_Biomes">Biomes</Item>
<Item Key="BakaPlaza_Item_Tags_Ores_and_Resources">Ores and Resources</Item>
<Item Key="BakaPlaza_Item_Tags_Structures">Structures</Item>
<Item Key="BakaPlaza_Item_Tags_Dimensions">Dimensions</Item>
<Item Key="BakaPlaza_Item_Tags_Mobs">Mobs</Item>
<Item Key="BakaPlaza_Item_Tags_Technology">Technology</Item>
<Item Key="BakaPlaza_Item_Tags_Processing">Resource Processing</Item>
<Item Key="BakaPlaza_Item_Tags_Player_Transport">Player Transport</Item>
<Item Key="BakaPlaza_Item_Tags_Energy_Fluid_and_Item_Transport">Energy Fluid and Item Transport</Item>
<Item Key="BakaPlaza_Item_Tags_Farming">Farming</Item>
<Item Key="BakaPlaza_Item_Tags_Energy">Energy</Item>
<Item Key="BakaPlaza_Item_Tags_Genetics">Genetics</Item>
<Item Key="BakaPlaza_Item_Tags_Automation">Automation</Item>
<Item Key="BakaPlaza_Item_Tags_Magic">Magic</Item>
<Item Key="BakaPlaza_Item_Tags_Storage">Storage</Item>
<Item Key="BakaPlaza_Item_Tags_API_and_Library">API and Library</Item>
<Item Key="BakaPlaza_Item_Tags_Adventure_and_RPG">Adventure and RPG</Item>
<Item Key="BakaPlaza_Item_Tags_Map_and_Information">Map and Information</Item>
<Item Key="BakaPlaza_Item_Tags_Cosmetic">Cosmetic</Item>
<Item Key="BakaPlaza_Item_Tags_Miscellaneous">Miscellaneous</Item>
<Item Key="BakaPlaza_Item_Tags_Addons">Extensions</Item>
<Item Key="BakaPlaza_Item_Tags_Thermal_Expansion">Thermal Expansion</Item>
<Item Key="BakaPlaza_Item_Tags_Tinker's_Construct">Tinker's Construct</Item>
<Item Key="BakaPlaza_Item_Tags_Industrial_Craft">Industrial Craft</Item>
<Item Key="BakaPlaza_Item_Tags_Thaumcraft">Thaumcraft</Item>
<Item Key="BakaPlaza_Item_Tags_Buildcraft">Buildcraft</Item>
<Item Key="BakaPlaza_Item_Tags_Forestry">Forestry</Item>
<Item Key="BakaPlaza_Item_Tags_Blood_Magic">Blood Magic</Item>
<Item Key="BakaPlaza_Item_Tags_Applied_Energistics_2">Applied Energistics 2</Item>
<Item Key="BakaPlaza_Item_Tags_CraftTweaker">CraftTweaker</Item>
<Item Key="BakaPlaza_Item_Tags_Galacticraft">Galacticraft</Item>
<Item Key="BakaPlaza_Item_Tags_CubeJS">CubeJS</Item>
<Item Key="BakaPlaza_Item_Tags_Armor_Tools_and_Weapons">Armor, Tools and Weapons</Item>
<Item Key="BakaPlaza_Item_Tags_Server_Utility">Server Utility</Item>
<Item Key="BakaPlaza_Item_Tags_Food">Food</Item>
<Item Key="BakaPlaza_Item_Tags_Redstone">Redstone</Item>
<Item Key="BakaPlaza_Item_Tags_Twitch_Integration">Twitch Intergration</Item>
<Item Key="BakaPlaza_Item_Tags_MCreator">MCreator</Item>
<Item Key="BakaPlaza_Item_Tags_Utility_QoL">Utility QoL</Item>
<Item Key="BakaPlaza_Item_Tags_Education">Education</Item>
<Item Key="BakaPlaza_Item_Tags_QoL">QoL</Item>
<Item Key="BakaPlaza_Item_Tags_Lucky_Blocks">Lucky Blocks</Item>
<Item Key="BakaPlaza_Item_Tags_FancyMenu">Fancy Menu</Item>
<Item Key="BakaPlaza_Item_Tags_Tech">Tech</Item>
<Item Key="BakaPlaza_Item_Tags_Sci-Fi">Sci-Fi</Item>
<Item Key="BakaPlaza_Item_Tags_Exploration">Exploration</Item>
<Item Key="BakaPlaza_Item_Tags_Mini_Game">Mini Games</Item>
<Item Key="BakaPlaza_Item_Tags_Quests">Quests</Item>
<Item Key="BakaPlaza_Item_Tags_Hardcore">Hardcore</Item>
<Item Key="BakaPlaza_Item_Tags_Map_Based">Map Based</Item>
<Item Key="BakaPlaza_Item_Tags_Small_Light">Small Light</Item>
<Item Key="BakaPlaza_Item_Tags_Extra_Large">Extra Large</Item>
<Item Key="BakaPlaza_Item_Tags_Combat_PvP">Combat and PvP</Item>
<Item Key="BakaPlaza_Item_Tags_Multiplayer">MultiPlayer</Item>
<Item Key="BakaPlaza_Item_Tags_FTB_Official_Pack">FTB Official</Item>
<Item Key="BakaPlaza_Item_Tags_Skyblock">Skyblock</Item>
<Item Key="BakaPlaza_Item_Tags_Vanilla+">Vanilla Plus</Item>
<Item Key="BakaPlaza_Item_Tags_16x">16x</Item>
<Item Key="BakaPlaza_Item_Tags_32x">32x</Item>
<Item Key="BakaPlaza_Item_Tags_64x">64x</Item>
<Item Key="BakaPlaza_Item_Tags_128x">128x</Item>
<Item Key="BakaPlaza_Item_Tags_256x">256x</Item>
<Item Key="BakaPlaza_Item_Tags_512x_and_Higher">512x or higher</Item>
<Item Key="BakaPlaza_Item_Tags_Steampunk">Steampunk</Item>
<Item Key="BakaPlaza_Item_Tags_Photo_Realistic">Realistic</Item>
<Item Key="BakaPlaza_Item_Tags_Modern">Modern</Item>
<Item Key="BakaPlaza_Item_Tags_Medieval">Medieval</Item>
<Item Key="BakaPlaza_Item_Tags_Traditional">Traditional</Item>
<Item Key="BakaPlaza_Item_Tags_Animated">Animated</Item>
<Item Key="BakaPlaza_Item_Tags_Miscell">Miscell</Item>
<Item Key="BakaPlaza_Item_Tags_Mod_Support">Mod Supported</Item>
<Item Key="BakaPlaza_Item_Tags_Data_Packs">Data Packs</Item>
<Item Key="BakaPlaza_Item_Tags_Font_Packs">Font Packs</Item>
<Item Key="BakaPlaza_Item_Tags_Adventure">Adventure</Item>
<Item Key="BakaPlaza_Item_Tags_Creation">Creation</Item>
<Item Key="BakaPlaza_Item_Tags_Game_Map">Game Maps</Item>
<Item Key="BakaPlaza_Item_Tags_Parkour">Parkour</Item>
<Item Key="BakaPlaza_Item_Tags_Puzzle">Puzzle</Item>
<Item Key="BakaPlaza_Item_Tags_Survival">Survival</Item>
<Item Key="BakaPlaza_Item_Tags_Modded_World">Based on Modded World</Item>