From 3c3f17fff65b55e8e44fe74f754564e22c39f892 Mon Sep 17 00:00:00 2001 From: BloxerHD018 Date: Sun, 28 Jun 2026 23:08:43 +0100 Subject: [PATCH] Move current guides to begin different language support --- static/js/guides.js | 4 ++-- static/md/{ => en}/common-errors.md | 0 static/md/{ => en}/install-cemu.md | 0 static/md/{ => en}/install-wiiu.md | 2 ++ static/md/{ => en}/troubleshoot-cemu.md | 0 static/md/{ => en}/troubleshoot-wiiu.md | 0 6 files changed, 4 insertions(+), 2 deletions(-) rename static/md/{ => en}/common-errors.md (100%) rename static/md/{ => en}/install-cemu.md (100%) rename static/md/{ => en}/install-wiiu.md (94%) rename static/md/{ => en}/troubleshoot-cemu.md (100%) rename static/md/{ => en}/troubleshoot-wiiu.md (100%) diff --git a/static/js/guides.js b/static/js/guides.js index cf50d72..19557a7 100644 --- a/static/js/guides.js +++ b/static/js/guides.js @@ -5,10 +5,10 @@ const params = new URLSearchParams(window.location.search); const guideParam = params.get("guide"); let guide = "install-wiiu"; -let guidePath = '/md/install-wiiu.md'; +let guidePath = '/md/en/install-wiiu.md'; if (guideParam) { guide = guideParam; - guidePath = `/md/${guide}.md`; + guidePath = `/md/en/${guide}.md`; } fetch(guidePath) diff --git a/static/md/common-errors.md b/static/md/en/common-errors.md similarity index 100% rename from static/md/common-errors.md rename to static/md/en/common-errors.md diff --git a/static/md/install-cemu.md b/static/md/en/install-cemu.md similarity index 100% rename from static/md/install-cemu.md rename to static/md/en/install-cemu.md diff --git a/static/md/install-wiiu.md b/static/md/en/install-wiiu.md similarity index 94% rename from static/md/install-wiiu.md rename to static/md/en/install-wiiu.md index 2cc98e5..2477eba 100644 --- a/static/md/install-wiiu.md +++ b/static/md/en/install-wiiu.md @@ -79,6 +79,8 @@ Requirements: - Wii U - An internet connection +If you have a modded console, it is recommended that you use the Aroma method instead, but if you wish to continue with SSSL anyways, ensure you either disable Pretendo's Inkay if present or make a duplicate environment without the Pretendo Inkay plugin and module. Guides to making a duplicate environment can be found in Step 1 of the Aroma guide above. Note that when switching between servers, you will have to disable or reenable SSSL by following this guide again. + ### Step 1: Console Configuration SSSL uses the DNS settings of the console to redirect you to our servers. In order to connect, you must configure your active WiFi connection to use this DNS server. diff --git a/static/md/troubleshoot-cemu.md b/static/md/en/troubleshoot-cemu.md similarity index 100% rename from static/md/troubleshoot-cemu.md rename to static/md/en/troubleshoot-cemu.md diff --git a/static/md/troubleshoot-wiiu.md b/static/md/en/troubleshoot-wiiu.md similarity index 100% rename from static/md/troubleshoot-wiiu.md rename to static/md/en/troubleshoot-wiiu.md