fixed merge

pull/35/head
Artur Lorenz 2018-07-22 22:44:13 +02:00
commit 2f5c044efc
15 changed files with 140 additions and 34 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

14
i18n.js
View File

@ -22,6 +22,15 @@ function setPageLanguage(lang) {
else if (lang === "pl-PL")
langObj = plPL;
else if (lang === "zh-CN")
langObj = zhCN;
else if (lang === "zh-TW")
langObj = zhTW;
else if (lang === "ru-RU")
langObj = ruRU;
else
langObj = enUS;
@ -43,11 +52,12 @@ function setPageLanguage(lang) {
document.getElementById("liLaunch").innerHTML = langObj.liLaunch;
document.getElementById("h1SetupDelivery").innerHTML = langObj.h1SetupDelivery;
document.getElementById("h4SelectPayload").innerHTML = langObj.h4SelectPayload;
document.getElementById("optionHekate").innerHTML = langObj.optionHekate;
document.getElementById("optionCTCaerHekate").innerHTML = langObj.optionCTCaerHekate;
document.getElementById("optionFusee").innerHTML = langObj.optionFusee;
document.getElementById("optionBriccmii").innerHTML = langObj.optionBriccmii;
document.getElementById("optionSXOS").innerHTML = langObj.optionSXOS;
document.getElementById("optionUpload").innerHTML = langObj.optionUpload;
document.getElementById("h4GetByteArray").innerHTML = langObj.h4GetByteArray;
document.getElementById("h3Log").innerHTML = langObj.h3Log;
document.getElementById("goButton").innerHTML = langObj.goButton;
document.getElementById("clearlogsbutton").innerHTML = langObj.clearlogsbutton;
document.getElementById("disclaimer1").innerHTML = langObj.disclaimer1;

View File

@ -1,7 +1,6 @@
let deDE = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher portiert zu JavaScript mit der Hilfe von WebUSB.",
"dangerUpload" :"Aus irgendeinem Grund funktionieren hochgeladene Payloads nicht. Wir versuchen zurzeit dies zu reparieren.",
"dangerDanger" :"Es wurde einigermaßen getestet. Auch wenn bisher keine Fehler gefunden wurden, bin ich nicht schuldig, falls es zu Problemen kommt!",
"warningWindows" :"Dies funktioniert nicht auf Windows durch Probleme mit Chrome und WebUSB (und wahrscheinlich anderen Gründen!)",
"warningBrowser" :"Dies funktioniert bisher mit keinem Browser AUßER Chrome! Das liegt daran, dass die anderen Browser WebUSB nicht supporten!",
@ -15,14 +14,16 @@ let deDE = {
"liLaunch" :"Falls alles richtig läuft, sollte das Payload gesendet sein!",
"h1SetupDelivery" :"Konfiguration des Payloadversandes",
"h4SelectPayload" :"Wähle ein Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (Alle Firmwares)",
"optionFusee" :"(Re)Switched Test Payload (fusee)",
"optionSXOS" :"SX OS (Alle Firmwares)",
"optionUpload" :"Eigenes Payload hochladen",
"h3Log" :"Protokoll:",
"h4GetByteArray" :"Erhalte das Payload Byte-Array (nicht senden)",
"goButton" :"Sende das Payload!",
"clearlogsbutton" :"Protokoll leeren",
"disclaimer1" :'Der Quellcode kann hier gefunden werden: <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (oder indem man sich den Quellcode direkt ankuckt, da kein Backend existiert!).',
"disclaimer2" :'Portiert von <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Danke an ktemkin und ReSwitched, aber auch <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 und seine Webseite</a>, als einen Startpunkt für dieses Projekt.',
"disclaimer4" :'Zuletzt danke an <a href="https://github.com/falquinho">falquinho</a> für sein Bootstraplayout und Übersetzung in Portugiesisch, <a href="https://github.com/Filo97">Filo97</a> für die italienische Übersetzung, <a href="https://github.com/tumGER"> tumGER </a>für seine deutsche Übersetzung und <a href="https://github.com/lordfriky">Lord_Friky</a> für die spanisch Übersetzung!.'
"disclaimer4" :'Zuletzt danke an <a href="https://github.com/falquinho">falquinho</a> für sein Bootstraplayout und Übersetzung in Portugiesisch, <a href="https://github.com/thomleg50">thomleg50</a> für die französische Übersetzung, <a href="https://github.com/Filo97">Filo97</a> für die italienische Übersetzung, <a href="https://github.com/tumGER"> tumGER </a>für seine deutsche Übersetzung, <a href="https://github.com/lordfriky">Lord_Friky</a> für die spanisch Übersetzung und <a href="https://github.com/lorek123">Lorek</a> für die polnische Übersetzung!.'
}

View File

@ -1,7 +1,6 @@
let enUS = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher ported to JavaScript using WebUSB.",
"dangerUpload" :"For some reason, uploaded payloads are not working. I'm currently trying to fix this.",
"dangerDanger" :"This is moderately tested. Although no issues have been discovered, I'm not responsible if anything goes wrong!",
"warningWindows" :"This does NOT work on Windows due to a limitation in the Chrome implementation of WebUSB (and probably other reasons!)",
"warningBrowser" :"This does NOT currently work on any browser but Chrome, because they don't implement WebUSB.",
@ -16,9 +15,11 @@ let enUS = {
"labelAddPayload":"If you would like to add another payload to this project, use <a href='https://gist.github.com/lorek123/561e4f7b5f61618029cc70672e3d7308'>this converter</a> and do PR",
"h1SetupDelivery" :"Setup Payload Delivery",
"h4SelectPayload" :"Select Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"(Re)Switched test payload (fusee)",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Upload Payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Get payload byte array (don't sploit)",
"goButton" :"Deliver Payload!",
"clearlogsbutton" :"Clear Logs",

View File

@ -1,7 +1,6 @@
let esMX = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher portado a JavaScript usando WebUSB.",
"dangerUpload" :"Por alguna razón, los payloads subidos no funcionan. actualmente estoy intentando corregirlo.",
"dangerDanger" :"Esto ha sido probado moderadamente. aunque no se han descubierto problemas, no soy responsable si pasa algo malo!",
"warningWindows" :"Esto NO funciona en Windows debido a una limitación de la implementación de WebUSB en Chrome (y probablemente otras razones!)",
"warningBrowser" :"Actualmente esto NO funciona en cualquier navegador a excepción de Chrome, porque los otros no implementan WebUSB.",
@ -15,14 +14,16 @@ let esMX = {
"liLaunch" :"Si todo va bien, el payload arrancará!",
"h1SetupDelivery" :"Configurar Payload a Enviar",
"h4SelectPayload" :"Seleccionar Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"Mod de Hekate de CTCaer v3.2 (Todos los Firmwares)",
"optionFusee" :"Payload de prueba de (Re)Switched (fusee)",
"optionSXOS" :"SX OS (Todos los Firmwares)",
"optionUpload" :"Subir Payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Obtener matriz de bytes del payload (sin exploit)",
"goButton" :"Enviar Payload!",
"clearlogsbutton" :"Borrar registro",
"disclaimer1" :'El código fuente puede ser encontrado en <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (o presionando ver código fuente, no hay backend!).',
"disclaimer2" :'Portado de <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Gracias a ktemkin y ReSwitched, tanto como <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 y su sitio web</a> como punto de partida para este.',
"disclaimer4" :'Finalmente, gracias a <a href="https://github.com/falquinho">falquinho</a> por el nuevo diseño y la traducción en portugués, <a href="https://github.com/Filo97">Filo97</a> por la traducción en italiano, <a href="https://github.com/tumGER">tumGER</a> por la traducción en alemán, y <a href="https://github.com/lordfriky">Lord_Friky</a> por la traducción en español.'
"disclaimer4" :'Finalmente, gracias a <a href="https://github.com/falquinho">falquinho</a> por el nuevo diseño y la traducción en portugués, <a href="https://github.com/thomleg50">thomleg50</a> por la traducción en francés, <a href="https://github.com/Filo97">Filo97</a> por la traducción en italiano, <a href="https://github.com/tumGER">tumGER</a> por la traducción en alemán, <a href="https://github.com/lordfriky">Lord_Friky</a> por la traducción en español y <a href="https://github.com/lorek123">Lorek</a> por la traducción en polaco.'
}

View File

@ -1,7 +1,6 @@
let frFR = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher porté sur JavaScript avec WebUSB.",
"dangerUpload" :"Pour plusieurs raisons, l'upload des payloads ne fonctionne pas. je suis en train de réparer ça.",
"dangerDanger" :"Ceci est moderement testé. ainsi aucun bug non été découvert, je ne suis responsable d'aucun problème!",
"warningWindows" :"Ceci ne marche pas sur windows en raison de l'implantation de WebUSB sur chrome. (et d'autres raisons probablement!)",
"warningBrowser" :"Ceci ne marche sur aucun autre navigateur que chrome, Car il n'intêgre pas WebUSB.",
@ -15,14 +14,16 @@ let frFR = {
"liLaunch" :"Si tout est bon le Payload va démarrer!",
"h1SetupDelivery" :"Configuration envoi Payloads",
"h4SelectPayload" :"Selectionner Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"(Re)Switched test payload (fusee)",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Upload Payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Get payload byte array (don't sploit)",
"goButton" :"Chargez le Payload!",
"clearlogsbutton" :"supprimer Logs",
"disclaimer1" :'Les sources sont disponibles à <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (ou en cliquant sur la source, il n\'y a pas de backend!).',
"disclaimer2" :'Porter de <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Merci à ktemkin et ReSwitched, aussi à <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 et son site</a> un bon point de démarrage pur moi.',
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, and <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation.'
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/thomleg50">thomleg50</a> for the french translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation, and <a href="https://github.com/lorek123">Lorek</a> for the polish translation.'
}

View File

@ -1,7 +1,6 @@
let itIT = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher portato a JavaScript usando WebUSB.",
"dangerUpload" :"For some reason, uploaded payloads are not working. I'm currently trying to fix this.",
"dangerDanger" :"Questo è stato moderatamente testato. Anche se nessun problema è stato riportato, non sono responsabile in caso di brick!",
"warningWindows" :"Questo non funziona in Windows per la implementazione scorretta di WinUSB di Chrome(E probabilmente altre ragioni)!",
"warningBrowser" :"Questo non funziona attualmente su nessun browser ma Chrome perchè è l'unico con WinUSB.",
@ -15,14 +14,16 @@ let itIT = {
"liLaunch" :"Se tutto funziona il payload si avvierà!",
"h1SetupDelivery" :"Setup Payload Delivery",
"h4SelectPayload" :"Select Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"(Re)Switched payload di test (fusee)",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Carica payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Ottieni byte array del payload (no exploit)",
"goButton" :"Avvia Payload!",
"clearlogsbutton" :"Pulisci Logs",
"disclaimer1" :'Il source puo essere trovato a <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (o premendo guarda source, ma non c\'è backend!).',
"disclaimer2" :'Portato da <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Grazie tante a ktemkin e ReSwitched, e non dimentichiamoci <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 e il suo sito</a> come punto di inizio per questo.',
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, and <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation.'
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/thomleg50">thomleg50</a> for the french translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation, and <a href="https://github.com/lorek123">Lorek</a> for the polish translation.'
}

View File

@ -2,7 +2,6 @@ let plPL = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher przeportowany na JavaScript wykorzystujący WebUSB.",
"dangerUpload" :"Z jakiegoś powodu, payloady użytkownika nie działają. Pracuję nad poprawką.",
"dangerDanger" :"Aplikacja została w miarę przetestowana. Nikt nie zgłosił żadnych błędów, ale nie jestem odpowiedzialny za cokolwiek, jeżeli coś pójdzie nie tak!",
"warningWindows" :"Aplikacja nie działa na Windowsie, ze względu na ograniczenia w implementacji WebUSB w Chrome (pewnie z innych powodów też!)",
"warningBrowser" :"Aplikacja działa tylko w Chrome, ponieważ inne przeglądarki nie implementują WebUSB.",
@ -17,15 +16,16 @@ let plPL = {
"labelAddPayload" :'Jeżeli chciałbyś dodać swój payload do projektu to możesz skorzystać z <a href="https://gist.github.com/lorek123/561e4f7b5f61618029cc70672e3d7308">tego konwertera</a> i wysłać PR.',
"h1SetupDelivery" :"Wybierz konfigurację payloadu",
"h4SelectPayload" :"Wybierz Payload",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"(Re)Switched testowy payload (fusee)",
"optionBriccmii" :"briccmii",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Załaduj payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Uzyskaj ciąg bajtów payloadu (nie uruchamiaj)",
"goButton" :"Dostarcz payload",
"clearlogsbutton" :"Wyczyść logi",
"disclaimer1" :'Źródła możesz znaleźć na <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (Albo przeglądając źródła strony, Aplikacja nie wykorzystuje backendu!).',
"disclaimer2" :'Przeportowano <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Podziękowania należą się ktemkin i ReSwitched, oraz <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 i jego stronie</a> jako punkt startu dla tej aplikacji',
"disclaimer4" :'Na końcu, podziękowania należą się <a href="https://github.com/falquinho">falquinho</a> Dla nowego układu strony w bootstrapie i portugalskiego tłumaczenia, <a href="https://github.com/Filo97">Filo97</a> za włoskie tłumaczenie, <a href="https://github.com/tumGER">tumGER</a> za niemieckie tłumaczenie i dla <a href="https://github.com/lordfriky">Lord_Friky</a> za hiszpańskie tłumaczenie.'
"disclaimer4" :'Na końću, podziękowania należą się <a href="https://github.com/falquinho">falquinho</a> Dla nowego układu strony w bootstrapie i portugalskiego tłumaczenia, <a href="https://github.com/thomleg50">thomleg50</a> za francuski tłumaczenie, <a href="https://github.com/Filo97">Filo97</a> za włoskie tłumaczenie, <a href="https://github.com/tumGER">tumGER</a> za niemieckie tłumaczenie, <a href="https://github.com/lordfriky">Lord_Friky</a> za hiszpańskie tłumaczenie i dla <a href="https://github.com/lorek123">Lorek</a> za polskie tłumaczenie.'
}

View File

@ -1,7 +1,6 @@
let ptBR = {
"pageTitle" : "Nintendo Switch Payload Loader",
"pageSubtitle" : "Fusee Launcher portado para JavaScript usando WebUSB.",
"dangerUpload" :"Por algum motivo payloads carregados não funcionam. Estou tentando corrigir esse erro.",
"dangerDanger" :"Esta ferramenta não foi completamente testada. Apesar de não ter encontrado nenhuma falha, não me responsabilizo se algo der errado!",
"warningWindows" :"Isto NÃO funciona no Windows devido uma limitação do Chrome na implementação do WebUSB (e, possivelmente, outros motivos).",
"warningBrowser" :"Isto NÃO funciona, atualmente, em nenhum browser além do Chrome, que é o único a implementar WebUSB.",
@ -15,14 +14,16 @@ let ptBR = {
"liLaunch" :"Se tudo der certo, o payload executará!",
"h1SetupDelivery" :"Configurar Entrega de Payload",
"h4SelectPayload" :"Payload:",
"optionHekate" :"CTCaer's Hekate Mod v3.2",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"Payload de teste (Re)Switched (fusee)",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Carregar Payload",
"h3Log" :"Log:",
"h4GetByteArray" :"Recuperar array de bytes do payload (favor não exploitar)",
"goButton" :"Enviar Payload!",
"clearlogsbutton" :"Limpar Logs",
"disclaimer1" :'Código fonte disponível em <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (ou simplesmente clicando "ver código", não há backend).',
"disclaimer2" :'Um port do <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Muito obrigado a Ktemkin e time (Re)Switched, bem como <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 e seu website</a> que é a base deste.',
"disclaimer4" :'Por último, obrigado <a href="https://github.com/falquinho">falquinho</a> pelo novo layout Bootstrap e tradução para português, <a href="https://github.com/Filo97">Filo97</a> pela tradução para italiano, <a href="https://github.com/tumGER">tumGER</a> pela tradução para alemão, e <a href="https://github.com/lordfriky">Lord_Friky</a> pela tradução para espanhol.'
"disclaimer4" :'Por último, obrigado <a href="https://github.com/falquinho">falquinho</a> pelo novo layout Bootstrap e tradução para português, <a href="https://github.com/thomleg50">thomleg50</a> pela tradução para francês, <a href="https://github.com/Filo97">Filo97</a> pela tradução para italiano, <a href="https://github.com/tumGER">tumGER</a> pela tradução para alemão, <a href="https://github.com/lordfriky">Lord_Friky</a> pela tradução para espanhol, e <a href="https://github.com/lorek123">Lorek</a> pela tradução para polonês.'
}

29
i18n/ru-RU.js 100644
View File

@ -0,0 +1,29 @@
let ruRU = {
"pageTitle" : "Загрузчик пейлоадов для Nintendo Switch",
"pageSubtitle" : "Fusee Launcher портирован на JavaScript с использованием WebUSB.",
"dangerDanger" :"Всё, в общем-то, оттестировано. Никаких проблем не обнаружено. Но я не несу никакой ответственности, если что-то вдруг пойдёт не так!",
"warningWindows" :"На Windows ничего не будет работать! Всё из-за ограничений в реализации в виндовом хроме WebUSB (и, возможно, из-за чего-то ещё)",
"warningBrowser" :"Работает только в браузере Chrome! Другие браузеры не поддерживают WebUSB.",
"warningLinux" :"В Linux при попытке подключиться могут возникать ошибки типа 'Access Denied' или 'No Compatible Device'! Если у вас так, попробуйте создать файл в <code>/etc/udev/rules.d/50-switch.rules</code>Со следующим содержимым:<br><code>SUBSYSTEM==\"usb\", ATTR{idVendor}==\"0955\", MODE=\"0664\", GROUP=\"plugdev\"</code>",
"warningTested" :"Сайт оттестирован в Linux, OSX, Android (без рута) и на Chromebooks. Но у вас все может быть иначе.",
"labelInstructions" :"Инструкции:",
"liRCM" :"Переведите Switch в режим RCM и подключите к вашему устройству.",
"liSelect" :"Выберите один пейлоад из списка, либо загрузите свой.",
"liPress" :"Нажмите 'Отправить пейлоад!'",
"liAPX" :"В появившемся окне выберите 'APX' и нажмите 'Подключение'.",
"liLaunch" :"Если всё идёт по плану, пейлоад запустится на приставке!",
"h1SetupDelivery" :"Настройки отправки пейлоада",
"h4SelectPayload" :"Выберите пейлоад:",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (All Firmwares)",
"optionFusee" :"Тестовый пейлоад от (Re)Switched",
"optionSXOS" :"SX OS (All Firmwares)",
"optionUpload" :"Загрузить свой пейлоад",
"h3Log" :"Log:",
"h4GetByteArray" :"Получить побайтовый вывод листинга пейлоада в лог (без отправки на консоль)",
"goButton" :"Отправить пейлоад!",
"clearlogsbutton" :"Очистить лог",
"disclaimer1" :'Исходники можно найти на <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (либо просто нажмите "посмотреть код страницы", бекенда тут нет!).',
"disclaimer2" :'Портировано от <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Спасибо ktemkin и ReSwitched, а так же <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 и его вебсайту</a> за то, что положил проекту начало.',
"disclaimer4" :'Наконец, спасибо <a href="https://github.com/falquinho">falquinho</a> за макет начальной загрузки и перевод на португальский, <a href="https://github.com/Filo97">Filo97</a> за перевод на итальянский, <a href="https://github.com/tumGER">tumGER</a> за перевод на немецкий, и <a href="https://github.com/lordfriky">Lord_Friky</a> за перевод на испанский.'
}

28
i18n/zh-CN.js 100644
View File

@ -0,0 +1,28 @@
let zhCN = {
"pageTitle" : "任天堂 Switch Payload 网页加载器",
"pageSubtitle" : "Fusee Launcher利用WebUSB移植在JavaScript上",
"dangerDanger" :"这是实验性的测试项目,目前虽然没有发现任何问题,但如果有任何问题发生,我不负责!",
"warningWindows" :"由于WebUSB在Chrome上功能受到限制(可能还有其他原因)暂不支持Windows系统。",
"warningBrowser" :"除了Chrome浏览器外其余浏览器无法使用WebUSB",
"warningLinux" :"在Linux上你可能会在Connect对话框中看到“Access Denied”或“No Compatible Device”的错误如果条件允许你可以尝试在<code>/etc/udev/rules.d/50-switch.rules</code>创建一个文件,添加内容如下:<code>SUBSYSTEM==\"usb\", ATTR{idVendor}==\"0955\", MODE=\"0664\", GROUP=\"plugdev\"</code>",
"warningTested" :"已测试可以在Linux、OSX、Android(无Root权限)和chromebook上使用可能你的情况稍有不同",
"labelInstructions" :"说明:",
"liRCM" :"Switch进入RCM模式并且设备已经连接完毕",
"liSelect" :"选择一个适合自己的Payload或者你自己上传一个",
"liPress" :"点击 '传递 Payload!'",
"liAPX" :"在出现的对话框里选择“APX”并点击“Connect”(Android系统可能会自动加载)",
"liLaunch" :"如果一切顺利Payload将成功加载!",
"h1SetupDelivery" :"部署 Payload",
"h4SelectPayload" :"选择 Payload:",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (全版本)",
"optionFusee" :"(Re)Switched test payload (fusee)",
"optionSXOS" :"SX OS (全版本)",
"optionUpload" :"上传 Payload",
"h4GetByteArray" :"获取Payload byte array (无Sploit)",
"goButton" :"传递 Payload!",
"clearlogsbutton" :"清除日志",
"disclaimer1" :'Source can be found on <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (or by hitting view source, there is no backend!).',
"disclaimer2" :'Ported from <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Thanks to ktemkin and ReSwitched, as well as <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 and his website</a> as a beginning point for this one.',
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, and <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation.'
}

28
i18n/zh-TW.js 100644
View File

@ -0,0 +1,28 @@
let zhTW = {
"pageTitle" : "任天堂 Switch Payload 網頁加載器",
"pageSubtitle" : "Fusee Launcher利用WebUSB移植在JavaScript上",
"dangerDanger" :"這是實驗性的測試項目,目前雖然沒有發現任何問題,但如果有任何問題發生,我不負責!",
"warningWindows" :"由於WebUSB在Chrome上功能受到限制(可能還有其他原因)暫不支持Windows系統。",
"warningBrowser" :"除了Chrome瀏覽器外其余瀏覽器無法使用WebUSB",
"warningLinux" :"在Linux上你可能會在Connect對話框中看到“Access Denied”或“No Compatible Device”的錯誤如果條件允許你可以嘗試在<code>/etc/udev/rules.d/50-switch.rules</code>創建壹個文件,添加內容如下:<code>SUBSYSTEM==\"usb\", ATTR{idVendor}==\"0955\", MODE=\"0664\", GROUP=\"plugdev\"</code>",
"warningTested" :"已測試可以在Linux、OSX、Android(無Root權限)和chromebook上使用可能你的情況稍有不同",
"labelInstructions" :"說明:",
"liRCM" :"Switch進入RCM模式並且設備已經連接完畢",
"liSelect" :"選擇壹個適合自己的Payload或者你自己上傳壹個",
"liPress" :"點擊 '傳遞 Payload!'",
"liAPX" :"在出現的對話框裏選擇“APX”並點擊“Connect”(Android系統可能會自動加載)",
"liLaunch" :"如果壹切順利Payload將成功加載!",
"h1SetupDelivery" :"部署 Payload",
"h4SelectPayload" :"選擇 Payload:",
"optionCTCaerHekate" :"CTCaer's Hekate Mod v3.2 (全版本)",
"optionFusee" :"(Re)Switched test payload (fusee)",
"optionSXOS" :"SX OS (全版本)",
"optionUpload" :"上傳Payload",
"h4GetByteArray" :"獲取Payload byte array (無Sploit)",
"goButton" :"傳遞Payload!",
"clearlogsbutton" :"清除日誌",
"disclaimer1" :'Source can be found on <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (or by hitting view source, there is no backend!).',
"disclaimer2" :'Ported from <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.',
"disclaimer3" :'Thanks to ktemkin and ReSwitched, as well as <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 and his website</a> as a beginning point for this one.',
"disclaimer4" :'Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, and <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation.'
}

View File

@ -14,6 +14,9 @@
<script src="./i18n/es-MX.js"></script>
<script src="./i18n/fr-FR.js"></script>
<script src="./i18n/pl-PL.js"></script>
<script src="./i18n/zh-CN.js"></script>
<script src="./i18n/zh-TW.js"></script>
<script src="./i18n/ru-RU.js"></script>
<script src="./i18n.js"></script>
<!-- JQuery: needed for some Bootstrap Components -->
@ -45,6 +48,9 @@
<a class="btn btn-info" href="#" onclick="setPageLanguage('es-MX')">Español</a>
<a class="btn btn-info" href="#" onclick="setPageLanguage('fr-FR')">Français</a>
<a class="btn btn-info" href="#" onclick="setPageLanguage('pl-PL')">Polski</a>
<a class="btn btn-info" href="#" onclick="setPageLanguage('zh-CN')">简体中文</a>
<a class="btn btn-info" href="#" onclick="setPageLanguage('zh-TW')">繁体中文</a>
<a class="btn btn-info" href="#" onclick="setPageLanguage('ru-RU')">Русский</a>
</div>
</div>
</div>
@ -104,12 +110,12 @@
</div>
<div class="col-xs-6">
<select class="pull-right" id="payloadSelect" onchange="onSelectChange()">
<option value="CTCaer_Hekate" id="optionHekate" >CTCaer's Hekate Mod v3.2 (All Firmwares)</option>
<option value="fusee" id="optionFusee" >(Re)Switched test payload (fusee)</option>
<option value="sx os" id="optionSXOS" >SX OS (All Firmwares)</option>
<option value="briccmii" id="optionBriccmii" >briccmii</option>
<option value="uploaded" id="optionUpload" >Upload payload</option>
<select class="pull-right" id="payloadSelect" onchange="onSelectChange()">
<option value="CTCaer_Hekate" id="optionCTCaerHekate" >CTCaer's Hekate Mod v3.2 (All Firmwares)</option>
<option value="fusee" id="optionFusee" >(Re)Switched test payload (fusee)</option>
<option value="sx os" id="optionSXOS" >SX OS (All Firmwares)</option>
<option value="briicmii" id="briicmii" >briicmii</option>
<option value="uploaded" id="optionUpload" >Upload payload</option>
</select>
</div>
</div>
@ -161,7 +167,7 @@
<p id="disclaimer1">Source can be found on <a href="https://github.com/ElijahZAwesome/web-cfw-loader/">GitHub</a> (or by hitting view source, there is no backend!).</p>
<p id="disclaimer2">Ported from <a href="https://github.com/reswitched/fusee-launcher">fusee-launcher</a>.</p>
<p id="disclaimer3">Thanks to ktemkin and ReSwitched, as well as <br><a href="https://atlas44.s3-us-west-2.amazonaws.com/web-fusee-launcher/index.html">Atlas44 and his website</a> as a beginning point for this one. </p>
<p id="disclaimer4">Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/thomleg50">thomleg50</a> for the french translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, and <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation.</p>
<p id="disclaimer4">Lastly, thanks to <a href="https://github.com/falquinho">falquinho</a> for the new bootstrap layout and portuguese translation, <a href="https://github.com/thomleg50">thomleg50</a> for the french translation, <a href="https://github.com/Filo97">Filo97</a> for the italian translation, <a href="https://github.com/tumGER">tumGER</a> for his german translation, <a href="https://github.com/lordfriky">Lord_Friky</a> for the spanish translation, and <a href="https://github.com/lorek123">Lorek</a> for the polish translation.</p>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ body {
padding-bottom: 10vw;
background-size: cover;
background-color: black;
background-image: url("https://icdn1.digitaltrends.com/image/nintendo-switch-review-photos-pdx-580.jpg");
background-image: url("background-image.jpg");
color: white;
margin-top: 0px;
top: 0px;