From d9ec949f954d56afd4893fe8cfb69537cf08b691 Mon Sep 17 00:00:00 2001 From: SpigotRCE <128710385+SpigotRCE@users.noreply.github.com> Date: Sun, 26 Jan 2025 12:19:40 +0530 Subject: [PATCH] translating comments from french to english --- .../github/spigotrce/paradiseclientfabric/WallPaper.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/io/github/spigotrce/paradiseclientfabric/WallPaper.java b/src/main/java/io/github/spigotrce/paradiseclientfabric/WallPaper.java index 0260ddc..dc260ba 100644 --- a/src/main/java/io/github/spigotrce/paradiseclientfabric/WallPaper.java +++ b/src/main/java/io/github/spigotrce/paradiseclientfabric/WallPaper.java @@ -25,10 +25,10 @@ public static void setTheme(String theme) { } /** - * Rend l'arrière-plan selon le thème actuel. + * Renders the background according to the current theme. */ public static void render(DrawContext context, int width, int height) { - String theme = getTheme(); // Récupérer le thème à partir de la configuration + String theme = getTheme(); // Retrieve theme from configuration switch (theme) { case "ParadiseHack" -> renderMatrix(context, width, height); case "ParadiseParticle" -> renderElegantBackground(context, width, height); @@ -37,7 +37,7 @@ public static void render(DrawContext context, int width, int height) { } - // Thème Hack (style Matrix) + // Theme Hack (style matrix) public static void renderMatrix(DrawContext context, int width, int height) { context.fillGradient(0, 0, width, height, 0xCC000000, 0xCC000000); for (int i = 0; i < drops.length; i++) { @@ -50,7 +50,7 @@ public static void renderMatrix(DrawContext context, int width, int height) { } } - // Thème Particle (particules dynamiques) + // Theme Particle (dynamic particles) public static void renderElegantBackground(DrawContext context, int width, int height) { context.fillGradient(0, 0, width, height, 0xFF1A237E, 0xFF882dbd); // Bleu -> Violet for (Particle particle : particles) {