diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 3f49a7401e..b7c140acb0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -3,75 +3,75 @@ description: Create a report to help us improve (use this to report bugs only). title: "[BUG] " labels: [🐞 bug] body: -- type: checkboxes - attributes: - label: Is there an existing issue for this? - description: Please search to see if an issue already exists for the bug you encountered. - options: - - label: I have searched the existing issues + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. Include images if relevant. + placeholder: A bug happened! + validations: required: true -- type: textarea - attributes: - label: Describe the bug - description: A clear and concise description of what the bug is. Include images if relevant. - placeholder: A bug happened! - validations: - required: true -- type: textarea - attributes: - label: Screenshots [optional] - description: | - Add screenshots to help explain your problem. You can also add a video here. + - type: textarea + attributes: + label: Screenshots [optional] + description: | + Add screenshots to help explain your problem. You can also add a video here. - Tip: You can attach images or video files by clicking this area to highlight it and then dragging files in. - validations: - required: false -- type: textarea - attributes: - label: Steps To Reproduce - description: Steps to reproduce the bug. - placeholder: | - 1. Visit '...' - 2. Click on '...' - 3. Scroll to '...' - 4. See error - validations: - required: true -- type: textarea - attributes: - label: Expected behavior - description: A clear and concise description of what you expected to happen - validations: - required: true -- type: textarea - attributes: - label: Alby information - placeholder: | - - Alby Version: [e.g. 1.5.0] - - Alby installed through: [e.g. installed through the browser stores, installed manually] - - Wallet connected with Alby: [e.g. LND, BlueWallet LNDhub] - validations: - required: true -- type: textarea - attributes: - label: Device information - placeholder: | - - OS: [e.g. Windows] - - Browser: [e.g. chrome, safari, firefox] - - Browser Version: [e.g. 22] - validations: - required: false -- type: textarea - attributes: - label: Additional context - description: | - Links? References? Anything that will give us more context about the issue you are encountering! - validations: - required: false -- type: dropdown - id: assign - attributes: - label: Are you working on this? - options: - - "Yes" - - "No" \ No newline at end of file + Tip: You can attach images or video files by clicking this area to highlight it and then dragging files in. + validations: + required: false + - type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the bug. + placeholder: | + 1. Visit '...' + 2. Click on '...' + 3. Scroll to '...' + 4. See error + validations: + required: true + - type: textarea + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen + validations: + required: true + - type: textarea + attributes: + label: Alby information + placeholder: | + - Alby Version: [e.g. 1.5.0] + - Alby installed through: [e.g. installed through the browser stores, installed manually] + - Wallet connected with Alby: [e.g. LND, LNDhub, etc] + validations: + required: true + - type: textarea + attributes: + label: Device information + placeholder: | + - OS: [e.g. Windows] + - Browser: [e.g. chrome, safari, firefox] + - Browser Version: [e.g. 22] + validations: + required: false + - type: textarea + attributes: + label: Additional context + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + validations: + required: false + - type: dropdown + id: assign + attributes: + label: Are you working on this? + options: + - "Yes" + - "No" diff --git a/src/app/router/connectorRoutes.tsx b/src/app/router/connectorRoutes.tsx index 09149b1b82..39d52da453 100644 --- a/src/app/router/connectorRoutes.tsx +++ b/src/app/router/connectorRoutes.tsx @@ -27,7 +27,6 @@ import lightning_node from "/static/assets/icons/lightning_node.png"; import lightning_terminal from "/static/assets/icons/lightning_terminal.png"; import lnbits from "/static/assets/icons/lnbits.png"; import lnd from "/static/assets/icons/lnd.png"; -import lndhubBlueWallet from "/static/assets/icons/lndhub_bluewallet.png"; import lndhubGo from "/static/assets/icons/lndhub_go.png"; import mynode from "/static/assets/icons/mynode.png"; import raspiblitz from "/static/assets/icons/raspiblitz.png"; @@ -139,16 +138,10 @@ const connectorMap: { [key: string]: ConnectorRoute } = { }, "lnd-hub-go": { path: "lnd-hub-go", - element: <ConnectLndHub lndHubType="lndhub_go" />, + element: <ConnectLndHub />, title: i18n.t("translation:choose_connector.lndhub_go.title"), logo: lndhubGo, }, - "lnd-hub-bluewallet": { - path: "lnd-hub-bluewallet", - element: <ConnectLndHub />, - title: i18n.t("translation:choose_connector.lndhub_bluewallet.title"), - logo: lndhubBlueWallet, - }, eclair: { path: "eclair", element: <ConnectEclair />, @@ -259,7 +252,6 @@ function getConnectorRoutes(): ConnectorRoute[] { connectorMap["lnbits"], connectorMap["lnd-hub-go"], connectorMap["kollider"], - connectorMap["lnd-hub-bluewallet"], connectorMap["eclair"], connectorMap["btcpay"], connectorMap[galoyPaths.blink], diff --git a/src/app/screens/connectors/ConnectLndHub/index.tsx b/src/app/screens/connectors/ConnectLndHub/index.tsx index 9bfb8a6f06..2d38160363 100644 --- a/src/app/screens/connectors/ConnectLndHub/index.tsx +++ b/src/app/screens/connectors/ConnectLndHub/index.tsx @@ -9,21 +9,13 @@ import { useNavigate } from "react-router-dom"; import toast from "~/app/components/Toast"; import msg from "~/common/lib/msg"; -import lndhubBlueWallet from "/static/assets/icons/lndhub_bluewallet.png"; -import lndhubGo from "/static/assets/icons/lndhub_go.png"; +import logo from "/static/assets/icons/lndhub_go.png"; -export type Props = { - lndHubType?: "lndhub_bluewallet" | "lndhub_go"; -}; - -export default function ConnectLndHub({ - lndHubType = "lndhub_bluewallet", -}: Props) { +export default function ConnectLndHub() { const navigate = useNavigate(); - const logo = lndHubType === "lndhub_bluewallet" ? lndhubBlueWallet : lndhubGo; const { t } = useTranslation("translation", { - keyPrefix: `choose_connector.${lndHubType}`, + keyPrefix: "choose_connector.lndhub_go", }); const [formData, setFormData] = useState({ uri: "", @@ -59,7 +51,7 @@ export default function ConnectLndHub({ const password = match[2]; const url = match[3].replace(/\/$/, ""); const account = { - name: lndHubType === "lndhub_bluewallet" ? "Bluewallet" : "LNDHub", + name: "LNDHub", config: { login, password, diff --git a/src/i18n/locales/cs/translation.json b/src/i18n/locales/cs/translation.json index c8084216af..2891cd76ac 100644 --- a/src/i18n/locales/cs/translation.json +++ b/src/i18n/locales/cs/translation.json @@ -54,20 +54,6 @@ "connection_failed": "Připojení se nezdařilo. Jsou vaše údaje pro LND zadány správně?" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Připojit k BlueWallet", - "description": "V BlueWallet vyberte peněženku, kterou chcete připojit, otevřete ji, klikněte na ¨...¨, klikněte na Exportovat/Záloha pro zobrazení QR kódu a tento kód naskenujte svou webkamerou." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "Nevalidní BlueWallet URI", - "connection_failed": "Připojení se nezdařilo. Je vaše BlueWallet URI správné?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/da/translation.json b/src/i18n/locales/da/translation.json index 4c0e45737c..60339e16cd 100644 --- a/src/i18n/locales/da/translation.json +++ b/src/i18n/locales/da/translation.json @@ -90,20 +90,6 @@ "placeholder": "hemmelig kode til sats-samlingen" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Opet forbindelse til Bluewallet", - "description": "Vælg den wallet du vil oprette forbindelse til i Bluewallet, åbn den, klik på \"...\", klik på Export/Backup for at se QR-koden og aflæs den med dit webkamera." - }, - "uri": { - "label": "BlueWallet export URI" - }, - "errors": { - "invalid_uri": "Ugyldig BlueWallet URI", - "connection_failed": "Forbindelse kunne ikke oprettes. Er din BlueWallet URI korrekt?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/de/translation.json b/src/i18n/locales/de/translation.json index 3cedcb3ee5..c14b4a1ac0 100644 --- a/src/i18n/locales/de/translation.json +++ b/src/i18n/locales/de/translation.json @@ -54,20 +54,6 @@ }, "title": "LND" }, - "lndhub_bluewallet": { - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "Ungültige BlueWallet-URI", - "connection_failed": "Verbindung nicht erfolgreich. Ist deine BlueWallet URI richtig?" - }, - "title": "BlueWallet", - "page": { - "title": "Verbinden mit BlueWallet", - "description": "Wähle in der BlueWallet die Wallet, die du verbinden willst, öffne sie, klicke auf \"...\", klicke auf Export/Backup, um den QR Code anzuzeigen. Scanne ihn dann mit deiner Webcam." - } - }, "lndhub_go": { "title": "LNDHub", "uri": { diff --git a/src/i18n/locales/el/translation.json b/src/i18n/locales/el/translation.json index e409546aaf..93b5bcc07c 100644 --- a/src/i18n/locales/el/translation.json +++ b/src/i18n/locales/el/translation.json @@ -60,12 +60,6 @@ } }, "choose_connector": { - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Σύνδεση σε BlueWallet" - } - }, "lnbits": { "title": "LNbits" }, diff --git a/src/i18n/locales/en/translation.json b/src/i18n/locales/en/translation.json index 93da1faa5c..f9e8c63b54 100644 --- a/src/i18n/locales/en/translation.json +++ b/src/i18n/locales/en/translation.json @@ -100,20 +100,6 @@ "placeholder": "secret stack sats phrase" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Connect to BlueWallet", - "description": "In BlueWallet, choose the wallet you want to connect, open it, click on \"...\", click on Export/Backup to display the QR code and scan it with your webcam." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "Invalid BlueWallet URI", - "connection_failed": "Connection failed. Is your BlueWallet URI correct?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/eo/translation.json b/src/i18n/locales/eo/translation.json index 82d35951d2..075eaabcb0 100644 --- a/src/i18n/locales/eo/translation.json +++ b/src/i18n/locales/eo/translation.json @@ -48,20 +48,6 @@ "connection_failed": "" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Konekti al BlueWallet", - "description": "" - }, - "uri": { - "label": "" - }, - "errors": { - "invalid_uri": "", - "connection_failed": "" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/es/translation.json b/src/i18n/locales/es/translation.json index 49494a6f36..050aef0de9 100644 --- a/src/i18n/locales/es/translation.json +++ b/src/i18n/locales/es/translation.json @@ -171,20 +171,6 @@ "connection_failed": "La conexión falló. ¿Es la URL de conexión de BTCPay correcta y accesible?" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Conecta a BlueWallet", - "description": "En BlueWallet, elija el monedero que desea conectar, ábralo, haga clic en \"...\", haga clic en Exportar/Copia de seguridad para mostrar el código QR y escanéelo con su cámara web." - }, - "uri": { - "label": "URI de Exportación BlueWallet" - }, - "errors": { - "invalid_uri": "URI de BlueWallet inválido", - "connection_failed": "Error de conexión. ¿Es correcto el URI de BlueWallet?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/fa/translation.json b/src/i18n/locales/fa/translation.json index b604f6faac..f901096ed6 100644 --- a/src/i18n/locales/fa/translation.json +++ b/src/i18n/locales/fa/translation.json @@ -100,20 +100,6 @@ "placeholder": "عبارت مخفی انباشتن ساتوشی" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "اتصال به BlueWallet", - "description": "درBlueWallet کیف پولی که می خواهید به آن متصل شوید را انتخاب کرده، روی\"...\" کلیک کنید، روی Export/Backup کلیک کنید تا کدQR نمایش داده شود و با دوربین وب آن را اسکن کنید." - }, - "uri": { - "label": "استخراج آدرس BlueWallet" - }, - "errors": { - "invalid_uri": "آدرس بلووالت نامعتبر", - "connection_failed": "اتصال ناموفق. آدرس بلووالت شما درست است؟" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/fr/translation.json b/src/i18n/locales/fr/translation.json index c42ad8e385..386630db9e 100644 --- a/src/i18n/locales/fr/translation.json +++ b/src/i18n/locales/fr/translation.json @@ -90,20 +90,6 @@ "placeholder": "phrase de sats de pile secrète" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Connectez-vous à BlueWallet", - "description": "Dans BlueWallet, choisissez le wallet que vous souhaitez connecter, ouvrez-le, cliquez sur \"...\", cliquez sur Export/Backup pour afficher le QR code et scannez-le avec votre webcam." - }, - "uri": { - "label": "URI d'exportation BlueWallet" - }, - "errors": { - "invalid_uri": "URI BlueWallet non valide", - "connection_failed": "La connexion a échoué. Votre URI BlueWallet est-il correct ?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/hi/translation.json b/src/i18n/locales/hi/translation.json index 2356a6d5f5..a028247ce3 100644 --- a/src/i18n/locales/hi/translation.json +++ b/src/i18n/locales/hi/translation.json @@ -97,20 +97,6 @@ "placeholder": "गुप्त stack sats वाक्यांश" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "BlueWallet से कनेक्ट करें", - "description": "ब्लू वॉलेट में, वह वॉलेट चुनें जिसे आप कनेक्ट करना चाहते हैं, इसे खोलें, \"...\" पर क्लिक करें, क्यूआर कोड प्रदर्शित करने के लिए निर्यात/बैकअप पर क्लिक करें और इसे अपने वेबकैम से स्कैन करें।" - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "अवैध BlueWallet URI", - "connection_failed": "कनेक्शन विफल रहा। क्या आपका BlueWallet URI सही है?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/id/translation.json b/src/i18n/locales/id/translation.json index e53772cb23..78f96ab395 100644 --- a/src/i18n/locales/id/translation.json +++ b/src/i18n/locales/id/translation.json @@ -96,20 +96,6 @@ "placeholder": "secret stack sats phrase" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Sambungkan dengan Bluewallet", - "description": "Pada Bluewallet, pilih wallet yang kamu ingin sambungkan, buka, lalu klik pada \"...\", klik pada Export/Backup untuk menampilkan kode QR dan pindai dengan webcam kamu." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "BlueWallet URI Salah", - "connection_failed": "Koneksi gagal. Apakah BlueWallet URI kamu benar?" - } - }, "lndhub_go": { "page": { "title": "Sambungkan dengan LNDHub", diff --git a/src/i18n/locales/it/translation.json b/src/i18n/locales/it/translation.json index 6f7ce59532..6ff2896bce 100644 --- a/src/i18n/locales/it/translation.json +++ b/src/i18n/locales/it/translation.json @@ -49,20 +49,6 @@ "connection_failed": "Connessione non riuscita. Le tue credenziali LND sono corrette?" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Connettiti a BlueWallet", - "description": "Nell'app BlueWallet, scegli il portafoglio che vuoi connettere, aprilo, clicca su \"...\", clicca su Export/Backup per mostrare il codice QR e scansionalo con la tua webcam." - }, - "uri": { - "label": "URI di esportazione BlueWallet" - }, - "errors": { - "invalid_uri": "URI di BlueWallet non valido", - "connection_failed": "Connessione non riuscita. L'URI BlueWallet è corretto?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/ja/translation.json b/src/i18n/locales/ja/translation.json index 6f19c00278..567d038b5c 100644 --- a/src/i18n/locales/ja/translation.json +++ b/src/i18n/locales/ja/translation.json @@ -98,20 +98,6 @@ "placeholder": "シークレット・stack sats・フレーズ" } }, - "lndhub_bluewallet": { - "page": { - "title": "BlueWalletに接続", - "description": "BlueWalletで、接続したいウォレットを開き、\"... \"をクリックします。エクスポート/バックアップをクリックしてQRコードを表示し、ウェブカメラでスキャンします。" - }, - "errors": { - "invalid_uri": "無効なBlueWalletのURI", - "connection_failed": "接続に失敗しました。BlueWalletのURIは正しいですか?" - }, - "uri": { - "label": "BlueWalletのエクスポートURI" - }, - "title": "BlueWallet" - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/mr/translation.json b/src/i18n/locales/mr/translation.json index 3e7664f0dd..a949986d0a 100644 --- a/src/i18n/locales/mr/translation.json +++ b/src/i18n/locales/mr/translation.json @@ -90,20 +90,6 @@ "placeholder": "गुप्त स्टॅक सॅट्स वाक्यांश" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Connect to BlueWallet", - "description": "ब्लूवॉलेटमध्ये, आपण कनेक्ट करू इच्छित वॉलेट निवडा, ते उघडा, \"...\"वर क्लिक करा, QR कोड प्रदर्शित करण्यासाठी एक्सपोर्ट / बॅकअपवर क्लिक करा आणि आपल्या वेबकॅमसह ते स्कॅन करा." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "अवैध BlueWallet URI", - "connection_failed": "कनेक्शन निकामी झाले. तुमची ब्लूवॉलेट URI योग्य आहे का?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/nl/translation.json b/src/i18n/locales/nl/translation.json index 0cc1f97a06..70e3f242c9 100644 --- a/src/i18n/locales/nl/translation.json +++ b/src/i18n/locales/nl/translation.json @@ -49,20 +49,6 @@ "connection_failed": "Connectie gefaald. Zijn je LND credentials correct?" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Verbind met BlueWallet", - "description": "Kies in BlueWallet de Lightning wallet waarmee je wilt verbinden, open deze, klik op \"...\", klik op Exporteren/Back-up om de QR-code weer te geven en scan deze." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "BlueWallet URI invalide", - "connection_failed": "Connectie gefaald. Is je BlueWallet URI correct?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/pl/translation.json b/src/i18n/locales/pl/translation.json index 0a10719080..fc621c71c9 100644 --- a/src/i18n/locales/pl/translation.json +++ b/src/i18n/locales/pl/translation.json @@ -96,20 +96,6 @@ "placeholder": "tajna fraza stosu satsów" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Podłącz do BlueWallet", - "description": "W BlueWallet wybierz portfel do którego chcesz się podłączyć, otwócz go, kliknij na \"...\", kliknij na Eksport/Kopia zapasowa, aby wyświetlić kod QR i zeskanuj go kamerką." - }, - "uri": { - "label": "Adres URI eksportu z BlueWallet" - }, - "errors": { - "invalid_uri": "Niepoprawny adres URI BlueWallet", - "connection_failed": "Połączenie się nie powiodło. Czy Twój adres URI BlueWallet jest poprawny?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/pt_BR/translation.json b/src/i18n/locales/pt_BR/translation.json index e7b1752309..a468a927b7 100644 --- a/src/i18n/locales/pt_BR/translation.json +++ b/src/i18n/locales/pt_BR/translation.json @@ -189,20 +189,6 @@ "missing_token": "JWT ausente, não foi possível fazer login." } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Conecte-se na BlueWallet", - "description": "Na BlueWallet, escolha a carteira que você deseja conectar, abra ela, clique em \"...\", clique em Exportar/Backup para exibir o código QR e leia o código com sua webcam." - }, - "uri": { - "label": "Exportar URI BlueWallet" - }, - "errors": { - "invalid_uri": "URI BlueWallet inválida", - "connection_failed": "Falha na conexão. A URI BlueWallet está correta?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/ro/translation.json b/src/i18n/locales/ro/translation.json index 7270d75373..5767f8ce14 100644 --- a/src/i18n/locales/ro/translation.json +++ b/src/i18n/locales/ro/translation.json @@ -90,20 +90,6 @@ "placeholder": "fraza ta secreta pentru acumulare de sats" } }, - "lndhub_bluewallet": { - "title": "BlueWallet", - "page": { - "title": "Conecteaza-te la BlueWallet", - "description": "In BlueWallet, alegere portofelul pe care vrei sa il conectezi, deschide-l, apasa pe \"...\", apoi pe Export/Backup pentru a afisa codul QR si scaneaza-l cu camera ta." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "BlueWallet URI invalid", - "connection_failed": "Conexiune esuata. BlueWallet URI este corect?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/sl/translation.json b/src/i18n/locales/sl/translation.json index 040d2fc200..9ca478b133 100644 --- a/src/i18n/locales/sl/translation.json +++ b/src/i18n/locales/sl/translation.json @@ -181,20 +181,6 @@ "placeholder": "skrivna fraza za stack sats" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Poveži z BlueWallet", - "description": "V BlueWallet izberi denarnico, ki jo želiš povezati, jo odpri, klikni na \"...\", klikni na Izvozi/Varnostno kopiraj za prikaz QR kode, ki jo skeniraš s svojo kamero." - }, - "errors": { - "invalid_uri": "Nepravilen BlueWallet URI", - "connection_failed": "Povezava ni bila uspešna. Je tvoj BlueWallet URI pravilen?" - }, - "uri": { - "label": "BlueWallet izvozni URI" - } - }, "lnbits": { "page": { "title": "Poveži z <0>LNbits</0>", diff --git a/src/i18n/locales/sv/translation.json b/src/i18n/locales/sv/translation.json index 47e7b5ef2f..492877d787 100644 --- a/src/i18n/locales/sv/translation.json +++ b/src/i18n/locales/sv/translation.json @@ -55,20 +55,6 @@ "connection_failed": "Koppling misslyckades. Är dina LND-uppgifter korrekta?" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "Anslut Bluewallet", - "description": "I Bluwallet, välj den plånbok du vill koppla till, öppna den och klicka på \"...\", därefter Export/Backup för att visa QR-koden och scanna den med webb-kameran." - }, - "uri": { - "label": "BlueWallet Export URI" - }, - "errors": { - "invalid_uri": "Ogiltig BlueWallet URI", - "connection_failed": "Anslutningen misslyckades. Är din BlueWallet URI korrekt?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/th/translation.json b/src/i18n/locales/th/translation.json index ca58d2b2df..f624543192 100644 --- a/src/i18n/locales/th/translation.json +++ b/src/i18n/locales/th/translation.json @@ -483,20 +483,6 @@ "description": "1. เปิด Lightning Terminal และเลือก <0> เชื่อมต่อ Lightning Node </0> จากแถบด้านข้าง </1> 2. คลิก <0> สร้างเซสชันใหม่ </0><1/> 3. ตั้งชื่อเซสชัน เลือกสิทธิ์ที่ต้องการและกดยืนยัน <1/>4. <0> คัดลอก pairing phrase </0> และวางมันข้างล่าง" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "เชื่อมต่อกับ BlueWallet", - "description": "ใน BlueWallet เลือกกระเป๋าที่คุณต้องการเชื่อมต่อ, เปิดมันขึ้น , คลิกที่ “…” , คลิกที่ ส่งออก/สำรองข้แมูล จากนั้นแสกน QR code ด้วย webcam ของคุณ" - }, - "errors": { - "invalid_uri": "BlueWallet URI ไม่ถูกต้อง", - "connection_failed": "เกิดข้อผิดพลาดในการเชื่อมต่อ โปรดตรวจสอบ BlueWallet URI ของคุณถูกต้องหรือไม่ ?" - }, - "uri": { - "label": "ส่งออก URI จาก BlueWallet" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/tl/translation.json b/src/i18n/locales/tl/translation.json index 68a345d9a4..e48f6e37cc 100644 --- a/src/i18n/locales/tl/translation.json +++ b/src/i18n/locales/tl/translation.json @@ -48,20 +48,6 @@ "connection_failed": "" } }, - "lndhub_bluewallet": { - "title": "", - "page": { - "title": "", - "description": "" - }, - "uri": { - "label": "" - }, - "errors": { - "invalid_uri": "", - "connection_failed": "" - } - }, "lndhub_go": { "title": "", "page": { diff --git a/src/i18n/locales/uk/translation.json b/src/i18n/locales/uk/translation.json index 8e6f35b8d6..19090e9100 100644 --- a/src/i18n/locales/uk/translation.json +++ b/src/i18n/locales/uk/translation.json @@ -90,20 +90,6 @@ "placeholder": "" } }, - "lndhub_bluewallet": { - "title": "", - "page": { - "title": "", - "description": "" - }, - "uri": { - "label": "" - }, - "errors": { - "invalid_uri": "", - "connection_failed": "" - } - }, "lndhub_go": { "title": "", "page": { diff --git a/src/i18n/locales/zh_Hans/translation.json b/src/i18n/locales/zh_Hans/translation.json index 5b6592ff19..cfffe283c5 100644 --- a/src/i18n/locales/zh_Hans/translation.json +++ b/src/i18n/locales/zh_Hans/translation.json @@ -183,20 +183,6 @@ }, "title": "RaspiBlitz" }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "连接BlueWallet", - "description": "在BlueWallet中,选择你要连接的钱包,打开它,点击\"...\",点击导出/备份,显示二维码并使用摄像头扫描。" - }, - "uri": { - "label": "BlueWallet导出URI" - }, - "errors": { - "invalid_uri": "BlueWallet URI无效", - "connection_failed": "连接失败。你的BlueWallet URI是否正确?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/src/i18n/locales/zh_Hant/translation.json b/src/i18n/locales/zh_Hant/translation.json index 295eff9cbc..cf8ccaa306 100644 --- a/src/i18n/locales/zh_Hant/translation.json +++ b/src/i18n/locales/zh_Hant/translation.json @@ -97,20 +97,6 @@ "placeholder": "secret stack sats phrase" } }, - "lndhub_bluewallet": { - "title": "Bluewallet", - "page": { - "title": "連接 BlueWallet", - "description": "在BlueWallet中,選擇要連接的錢包,打開它,點擊“...”,點擊導出/備份以顯示二維碼並使用攝像頭掃描。" - }, - "uri": { - "label": "BlueWallet 導出 URI" - }, - "errors": { - "invalid_uri": "BlueWallet URI無效", - "connection_failed": "連接失敗。你的 BlueWallet URI 是否正確?" - } - }, "lndhub_go": { "title": "LNDHub", "page": { diff --git a/static/assets/icons/lndhub_bluewallet.png b/static/assets/icons/lndhub_bluewallet.png deleted file mode 100644 index 3599f06b3b..0000000000 Binary files a/static/assets/icons/lndhub_bluewallet.png and /dev/null differ