@@ -316,29 +316,29 @@ public string GetDescription()
316
316
case "com.mojang.minecraft.RubyDung" :
317
317
case "com.mojang.minecraft.Minecraft" :
318
318
case "net.minecraft.client.Minecraft" :
319
- return "Launch the game directly." ;
319
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.direct_launch" ) ;
320
320
case "com.mojang.minecraft.MinecraftApplet" :
321
321
case "net.minecraft.client.MinecraftApplet" :
322
- return "Launch the game as a Java applet." ;
322
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.applet_launch" ) ;
323
323
case "com.mojang.minecraft.server.MinecraftServer" :
324
324
case "net.minecraft.server.MinecraftServer" :
325
- return "Launch a server." ;
325
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.server_launch" ) ;
326
326
case "net.minecraft.isom.IsomPreviewApplet" :
327
- return "Open an applet that lets you view your worlds in an isometric view." ;
327
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.isom_applet_launch" ) ;
328
328
case "Start" :
329
- return "Launch using a default wrapper generated by RetroMCP." ;
329
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.mcp_launch" ) ;
330
330
case "net.minecraft.client.main.Main" :
331
331
case "net.minecraft.data.Main" :
332
- return "1.6+ launch class. Not supported by this launcher." ;
332
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.unsupported_onesix_launch" ) ;
333
333
case "decraft_internal.AppletWrapper" :
334
334
case "decraft_internal.MainFunctionWrapper" :
335
335
case "decraft_internal.LWJGLTestGPU" :
336
- return "How did this get here?" ;
336
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.ee_decraftinternal_launch" ) ;
337
337
case "com.megacrit.cardcrawl.desktop.DesktopLauncher" :
338
- return "You have great taste, I'll give you that." ;
338
+ return GlobalVars . L . Translate ( "ui.entrypoint.description.ee_slaythespire_launch" ) ;
339
339
default :
340
- return classpath . StartsWith ( "com.jdotsoft.jarloader" ) ? "Launch using a loader that will load its own dependencies."
341
- : "< unknown>" ;
340
+ return classpath . StartsWith ( "com.jdotsoft.jarloader" ) ? GlobalVars . L . Translate ( "ui.entrypoint.description.jdotsoft_loader_launch" )
341
+ : GlobalVars . L . Translate ( "ui.entrypoint.description. unknown" ) ;
342
342
}
343
343
}
344
344
0 commit comments