From 5be4b0e76056b65da31b64f284f2c0a0d2f3729c Mon Sep 17 00:00:00 2001 From: BloxerHD018 Date: Mon, 29 Jun 2026 12:51:13 +0100 Subject: [PATCH] Add Language Support and Copy English Translation as Placeholder --- static/account/index.html | 2 + static/account/login/index.html | 2 + static/css/style.css | 40 ++++++++++- static/downloads/index.html | 2 + static/guides/index.html | 39 ++++++++--- static/index.html | 2 + static/js/guides.js | 88 +++++++++++++++++------ static/md/de/buttons.html | 5 ++ static/md/de/common-errors.md | 19 +++++ static/md/de/install-cemu.md | 35 ++++++++++ static/md/de/install-wiiu.md | 111 ++++++++++++++++++++++++++++++ static/md/de/troubleshoot-cemu.md | 11 +++ static/md/de/troubleshoot-wiiu.md | 10 +++ static/md/en/buttons.html | 5 ++ static/md/es/buttons.html | 5 ++ static/md/es/common-errors.md | 19 +++++ static/md/es/install-cemu.md | 35 ++++++++++ static/md/es/install-wiiu.md | 111 ++++++++++++++++++++++++++++++ static/md/es/troubleshoot-cemu.md | 11 +++ static/md/es/troubleshoot-wiiu.md | 10 +++ static/md/fr/buttons.html | 5 ++ static/md/fr/common-errors.md | 19 +++++ static/md/fr/install-cemu.md | 35 ++++++++++ static/md/fr/install-wiiu.md | 111 ++++++++++++++++++++++++++++++ static/md/fr/troubleshoot-cemu.md | 11 +++ static/md/fr/troubleshoot-wiiu.md | 10 +++ static/md/it/buttons.html | 5 ++ static/md/it/common-errors.md | 19 +++++ static/md/it/install-cemu.md | 35 ++++++++++ static/md/it/install-wiiu.md | 111 ++++++++++++++++++++++++++++++ static/md/it/troubleshoot-cemu.md | 11 +++ static/md/it/troubleshoot-wiiu.md | 10 +++ static/md/ja/buttons.html | 5 ++ static/md/ja/common-errors.md | 19 +++++ static/md/ja/install-cemu.md | 35 ++++++++++ static/md/ja/install-wiiu.md | 111 ++++++++++++++++++++++++++++++ static/md/ja/troubleshoot-cemu.md | 11 +++ static/md/ja/troubleshoot-wiiu.md | 10 +++ 38 files changed, 1102 insertions(+), 33 deletions(-) create mode 100644 static/md/de/buttons.html create mode 100644 static/md/de/common-errors.md create mode 100644 static/md/de/install-cemu.md create mode 100644 static/md/de/install-wiiu.md create mode 100644 static/md/de/troubleshoot-cemu.md create mode 100644 static/md/de/troubleshoot-wiiu.md create mode 100644 static/md/en/buttons.html create mode 100644 static/md/es/buttons.html create mode 100644 static/md/es/common-errors.md create mode 100644 static/md/es/install-cemu.md create mode 100644 static/md/es/install-wiiu.md create mode 100644 static/md/es/troubleshoot-cemu.md create mode 100644 static/md/es/troubleshoot-wiiu.md create mode 100644 static/md/fr/buttons.html create mode 100644 static/md/fr/common-errors.md create mode 100644 static/md/fr/install-cemu.md create mode 100644 static/md/fr/install-wiiu.md create mode 100644 static/md/fr/troubleshoot-cemu.md create mode 100644 static/md/fr/troubleshoot-wiiu.md create mode 100644 static/md/it/buttons.html create mode 100644 static/md/it/common-errors.md create mode 100644 static/md/it/install-cemu.md create mode 100644 static/md/it/install-wiiu.md create mode 100644 static/md/it/troubleshoot-cemu.md create mode 100644 static/md/it/troubleshoot-wiiu.md create mode 100644 static/md/ja/buttons.html create mode 100644 static/md/ja/common-errors.md create mode 100644 static/md/ja/install-cemu.md create mode 100644 static/md/ja/install-wiiu.md create mode 100644 static/md/ja/troubleshoot-cemu.md create mode 100644 static/md/ja/troubleshoot-wiiu.md diff --git a/static/account/index.html b/static/account/index.html index 2a8f9e8..060e1e7 100644 --- a/static/account/index.html +++ b/static/account/index.html @@ -4,6 +4,8 @@ Account | SPFN + + diff --git a/static/account/login/index.html b/static/account/login/index.html index 62ca5f3..f278707 100644 --- a/static/account/login/index.html +++ b/static/account/login/index.html @@ -4,6 +4,8 @@ Log In | SPFN + + diff --git a/static/css/style.css b/static/css/style.css index 189dcbd..7767abb 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -193,8 +193,9 @@ form { } .guide-container { - display: flex; + display: block; margin: 0 auto; + margin-bottom: 8px; width: 70%; background-color: #770505; border-radius: 15px; @@ -202,6 +203,29 @@ form { font-size: 16px; } +.guide-list { + display: flex; +} + +.guide-langs { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); +} + +.guide-langs a { + font-size: 20px; + height: 48px; + cursor: pointer; + border: 2px solid #a00b0b; + border-radius: 10px; + background-color: #6d0606; + color: white; + margin: 4px 0; + text-align: center; + line-height: 48px; + text-decoration: none; +} + @media (orientation: portrait) { .guide-container { display: block; @@ -218,6 +242,20 @@ form { height: 128px; line-height: 128px; } + + .guide-list { + display: block; + } + + .guide-langs { + grid-template-columns: 1fr; + } + + .guide-langs a { + font-size: 60px; + height: 128px; + line-height: 128px; + } } code { diff --git a/static/downloads/index.html b/static/downloads/index.html index 209fa71..68a10ce 100644 --- a/static/downloads/index.html +++ b/static/downloads/index.html @@ -4,6 +4,8 @@ Downloads | SPFN + + diff --git a/static/guides/index.html b/static/guides/index.html index 41434ce..f8145e6 100644 --- a/static/guides/index.html +++ b/static/guides/index.html @@ -4,6 +4,8 @@ Guides | SPFN + + @@ -29,21 +31,36 @@
-