From 1761fa8ad23e917c985c734ff1bd8b58ce99f9d0 Mon Sep 17 00:00:00 2001 From: Michael Czechowski Date: Wed, 24 Dec 2025 01:43:26 +0100 Subject: [PATCH] feat: rename success message to "CRISPY!" with Japanese smiley MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update overlay text: "Perfect Match!" → "CRISPY! ٩(◕‿◕)۶" - Update success hint in English and German versions - Fun branding touch matching the app name --- src/app.de.js | 2 +- src/app.js | 2 +- src/main.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app.de.js b/src/app.de.js index 54e260a..340c87d 100644 --- a/src/app.de.js +++ b/src/app.de.js @@ -407,7 +407,7 @@ function runCode() { if (validationResult.isValid) { // Show success hint - showSuccessHint(validationResult.message || "Super! Dein Code funktioniert korrekt."); + showSuccessHint(validationResult.message || "CRISPY! ٩(◕‿◕)۶ Dein Code funktioniert."); // Update Run button elements.runBtn.innerHTML = 'Erneut'; diff --git a/src/app.js b/src/app.js index d82b528..56275c9 100644 --- a/src/app.js +++ b/src/app.js @@ -407,7 +407,7 @@ function runCode() { if (validationResult.isValid) { // Show success hint - showSuccessHint(validationResult.message || "Great job! Your code works correctly."); + showSuccessHint(validationResult.message || "CRISPY! ٩(◕‿◕)۶ Your code works correctly."); // Update Run button elements.runBtn.innerHTML = 'Re-run'; diff --git a/src/main.css b/src/main.css index 5ab204b..1fd5b6b 100644 --- a/src/main.css +++ b/src/main.css @@ -469,7 +469,7 @@ code, kbd { } .preview-wrapper.matched::after { - content: "Perfect Match!"; + content: "CRISPY! ٩(◕‿◕)۶"; position: absolute; top: 50%; left: 50%;