mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 09:29:48 +00:00
CAKE-192 | merged main branch into current; fixed call unstoppable domains api for different sdk versions; fixed italian and croatian locales
This commit is contained in:
parent
251d6ad502
commit
4d6cc87529
12 changed files with 85 additions and 90 deletions
|
@ -10,29 +10,29 @@ import io.flutter.plugin.common.MethodCall;
|
||||||
import io.flutter.plugin.common.MethodChannel;
|
import io.flutter.plugin.common.MethodChannel;
|
||||||
|
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
|
import android.os.Build;
|
||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
|
|
||||||
import java.security.SecureRandom;
|
|
||||||
import com.unstoppabledomains.resolution.DomainResolution;
|
import com.unstoppabledomains.resolution.DomainResolution;
|
||||||
import com.unstoppabledomains.resolution.Resolution;
|
import com.unstoppabledomains.resolution.Resolution;
|
||||||
|
|
||||||
import android.os.AsyncTask;
|
import java.security.SecureRandom;
|
||||||
import android.os.Handler;
|
|
||||||
import android.os.Looper;
|
|
||||||
|
|
||||||
import io.flutter.plugin.common.MethodCall;
|
|
||||||
import io.flutter.plugin.common.MethodChannel;
|
|
||||||
|
|
||||||
public class MainActivity extends FlutterFragmentActivity {
|
public class MainActivity extends FlutterFragmentActivity {
|
||||||
final String UTILS_CHANNEL = "com.cake_wallet/native_utils";
|
final String UTILS_CHANNEL = "com.cake_wallet/native_utils";
|
||||||
|
|
||||||
final String UNSTOPPABLE_DOMAIN_CHANNEL = "com.cakewallet.cake_wallet/unstoppable-domain";
|
final String UNSTOPPABLE_DOMAIN_CHANNEL = "com.cakewallet.cake_wallet/unstoppable-domain";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
|
public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
|
||||||
GeneratedPluginRegistrant.registerWith(flutterEngine);
|
GeneratedPluginRegistrant.registerWith(flutterEngine);
|
||||||
|
|
||||||
|
MethodChannel utilsChannel =
|
||||||
|
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(),
|
||||||
|
UTILS_CHANNEL);
|
||||||
|
|
||||||
|
utilsChannel.setMethodCallHandler(this::handle);
|
||||||
|
|
||||||
MethodChannel unstoppableDomainChannel =
|
MethodChannel unstoppableDomainChannel =
|
||||||
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(),
|
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(),
|
||||||
UNSTOPPABLE_DOMAIN_CHANNEL);
|
UNSTOPPABLE_DOMAIN_CHANNEL);
|
||||||
|
@ -41,14 +41,30 @@ public class MainActivity extends FlutterFragmentActivity {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void handle(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
private void handle(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
||||||
|
Handler handler = new Handler(Looper.getMainLooper());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (call.method.equals("getUnstoppableDomainAddress")) {
|
switch (call.method) {
|
||||||
getUnstoppableDomainAddress(call, result);
|
case "sec_random":
|
||||||
} else {
|
int count = call.argument("count");
|
||||||
result.notImplemented();
|
SecureRandom random = new SecureRandom();
|
||||||
|
byte bytes[] = new byte[count];
|
||||||
|
random.nextBytes(bytes);
|
||||||
|
handler.post(() -> result.success(bytes));
|
||||||
|
break;
|
||||||
|
case "getUnstoppableDomainAddress":
|
||||||
|
int version = Build.VERSION.SDK_INT;
|
||||||
|
if (version >= 24) {
|
||||||
|
getUnstoppableDomainAddress(call, result);
|
||||||
|
} else {
|
||||||
|
handler.post(() -> result.success(""));
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
handler.post(() -> result.notImplemented());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
result.error("UNCAUGHT_ERROR", e.getMessage(), null);
|
handler.post(() -> result.error("UNCAUGHT_ERROR", e.getMessage(), null));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,29 +82,5 @@ public class MainActivity extends FlutterFragmentActivity {
|
||||||
handler.post(() -> result.error("INVALID DOMAIN", e.getMessage(), null));
|
handler.post(() -> result.error("INVALID DOMAIN", e.getMessage(), null));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
MethodChannel utilsChannel =
|
|
||||||
new MethodChannel(flutterEngine.getDartExecutor().getBinaryMessenger(),
|
|
||||||
UTILS_CHANNEL);
|
|
||||||
|
|
||||||
utilsChannel.setMethodCallHandler(this::handle);
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
private void handle(@NonNull MethodCall call, @NonNull MethodChannel.Result result) {
|
|
||||||
Handler handler = new Handler(Looper.getMainLooper());
|
|
||||||
|
|
||||||
try {
|
|
||||||
if (call.method.equals("sec_random")) {
|
|
||||||
int count = call.argument("count");
|
|
||||||
SecureRandom random = new SecureRandom();
|
|
||||||
byte bytes[] = new byte[count];
|
|
||||||
random.nextBytes(bytes);
|
|
||||||
handler.post(() -> result.success(bytes));
|
|
||||||
} else {
|
|
||||||
handler.post(() -> result.notImplemented());
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
handler.post(() -> result.error("UNCAUGHT_ERROR", e.getMessage(), null));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -5,9 +5,9 @@ import UnstoppableDomainsResolution
|
||||||
@UIApplicationMain
|
@UIApplicationMain
|
||||||
@objc class AppDelegate: FlutterAppDelegate {
|
@objc class AppDelegate: FlutterAppDelegate {
|
||||||
lazy var resolution : Resolution? = {
|
lazy var resolution : Resolution? = {
|
||||||
return try? Resolution()
|
return try? Resolution()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
override func application(
|
override func application(
|
||||||
_ application: UIApplication,
|
_ application: UIApplication,
|
||||||
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
|
||||||
|
@ -17,11 +17,6 @@ import UnstoppableDomainsResolution
|
||||||
name: "com.cakewallet.cakewallet/legacy_wallet_migration",
|
name: "com.cakewallet.cakewallet/legacy_wallet_migration",
|
||||||
binaryMessenger: controller.binaryMessenger)
|
binaryMessenger: controller.binaryMessenger)
|
||||||
legacyMigrationChannel.setMethodCallHandler({
|
legacyMigrationChannel.setMethodCallHandler({
|
||||||
let batteryChannel = FlutterMethodChannel(name: "com.cakewallet.cakewallet/legacy_wallet_migration",
|
|
||||||
binaryMessenger: controller.binaryMessenger)
|
|
||||||
let unstoppableDomainChannel = FlutterMethodChannel(name: "com.cakewallet.cake_wallet/unstoppable-domain", binaryMessenger: controller.binaryMessenger)
|
|
||||||
|
|
||||||
batteryChannel.setMethodCallHandler({
|
|
||||||
(call: FlutterMethodCall, result: @escaping FlutterResult) -> Void in
|
(call: FlutterMethodCall, result: @escaping FlutterResult) -> Void in
|
||||||
|
|
||||||
switch call.method {
|
switch call.method {
|
||||||
|
@ -62,7 +57,7 @@ import UnstoppableDomainsResolution
|
||||||
result(FlutterMethodNotImplemented)
|
result(FlutterMethodNotImplemented)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
let utilsChannel = FlutterMethodChannel(
|
let utilsChannel = FlutterMethodChannel(
|
||||||
name: "com.cake_wallet/native_utils",
|
name: "com.cake_wallet/native_utils",
|
||||||
binaryMessenger: controller.binaryMessenger)
|
binaryMessenger: controller.binaryMessenger)
|
||||||
|
@ -80,40 +75,41 @@ import UnstoppableDomainsResolution
|
||||||
result(FlutterMethodNotImplemented)
|
result(FlutterMethodNotImplemented)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
let unstoppableDomainChannel = FlutterMethodChannel(name: "com.cakewallet.cake_wallet/unstoppable-domain", binaryMessenger: controller.binaryMessenger)
|
||||||
unstoppableDomainChannel.setMethodCallHandler({ [weak self]
|
unstoppableDomainChannel.setMethodCallHandler({ [weak self]
|
||||||
(call: FlutterMethodCall, result: @escaping FlutterResult) -> Void in
|
(call: FlutterMethodCall, result: @escaping FlutterResult) -> Void in
|
||||||
switch call.method {
|
switch call.method {
|
||||||
case "getUnstoppableDomainAddress":
|
case "getUnstoppableDomainAddress":
|
||||||
guard let args = call.arguments as? Dictionary<String, String>,
|
guard let args = call.arguments as? Dictionary<String, String>,
|
||||||
let domain = args["domain"],
|
let domain = args["domain"],
|
||||||
let ticker = args["ticker"] else {
|
let ticker = args["ticker"] else {
|
||||||
result(nil)
|
result(nil)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
guard let resolution = self?.resolution else {
|
guard let resolution = self?.resolution else {
|
||||||
result(nil)
|
result(nil)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
resolution.addr(domain: domain, ticker: ticker) { addrResult in
|
resolution.addr(domain: domain, ticker: ticker) { addrResult in
|
||||||
var address : String = ""
|
var address : String = ""
|
||||||
|
|
||||||
switch addrResult {
|
switch addrResult {
|
||||||
case .success(let returnValue):
|
case .success(let returnValue):
|
||||||
address = returnValue
|
address = returnValue
|
||||||
case .failure(let error):
|
case .failure(let error):
|
||||||
print("Expected Address, but got \(error)")
|
print("Expected Address, but got \(error)")
|
||||||
|
}
|
||||||
|
|
||||||
|
result(address)
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
result(FlutterMethodNotImplemented)
|
||||||
}
|
}
|
||||||
|
})
|
||||||
result(address)
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
result(FlutterMethodNotImplemented)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
GeneratedPluginRegistrant.register(with: self)
|
GeneratedPluginRegistrant.register(with: self)
|
||||||
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@ packages:
|
||||||
path: "."
|
path: "."
|
||||||
ref: cake
|
ref: cake
|
||||||
resolved-ref: "02fef082f20af13de00b4e64efb93a2c1e5e1cf2"
|
resolved-ref: "02fef082f20af13de00b4e64efb93a2c1e5e1cf2"
|
||||||
url: "git@github.com:cake-tech/bech32.git"
|
url: "https://github.com/cake-tech/bech32.git"
|
||||||
source: git
|
source: git
|
||||||
version: "0.2.0"
|
version: "0.2.0"
|
||||||
bip32:
|
bip32:
|
||||||
|
@ -92,8 +92,8 @@ packages:
|
||||||
description:
|
description:
|
||||||
path: "."
|
path: "."
|
||||||
ref: cake
|
ref: cake
|
||||||
resolved-ref: b3ab2926c665f0e68b74a4a5f31059f7fcd817b7
|
resolved-ref: cbabfd87b6ce3cae6051a3e86ddb56e7a934e188
|
||||||
url: "git@github.com:cake-tech/bitcoin_flutter.git"
|
url: "https://github.com/cake-tech/bitcoin_flutter.git"
|
||||||
source: git
|
source: git
|
||||||
version: "2.0.2"
|
version: "2.0.2"
|
||||||
boolean_selector:
|
boolean_selector:
|
||||||
|
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "Derzeit unterstützen wir nur den Kauf von Bitcoin. Um Bitcoin zu kaufen, erstellen Sie bitte Ihre Bitcoin-Brieftasche oder wechseln Sie zu dieser",
|
"buy_alert_content" : "Derzeit unterstützen wir nur den Kauf von Bitcoin. Um Bitcoin zu kaufen, erstellen Sie bitte Ihre Bitcoin-Brieftasche oder wechseln Sie zu dieser",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "Adresse erkannt",
|
"address_detected" : "Adresse erkannt",
|
||||||
"address_from_domain" : "Sie haben die Adresse von der unaufhaltsamen Domain ${domain} erhalten"
|
"address_from_domain" : "Sie haben die Adresse von der unaufhaltsamen Domain ${domain} erhalten"
|
||||||
|
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "Address detected",
|
"address_detected" : "Address detected",
|
||||||
"address_from_domain" : "You got address from unstoppable domain ${domain}"
|
"address_from_domain" : "You got address from unstoppable domain ${domain}"
|
||||||
|
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "Actualmente solo apoyamos la compra de Bitcoin. Para comprar Bitcoin, cree o cambie a su billetera Bitcoin",
|
"buy_alert_content" : "Actualmente solo apoyamos la compra de Bitcoin. Para comprar Bitcoin, cree o cambie a su billetera Bitcoin",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "Dirección detectada",
|
"address_detected" : "Dirección detectada",
|
||||||
"address_from_domain" : "Tienes la dirección de unstoppable domain ${domain}"
|
"address_from_domain" : "Tienes la dirección de unstoppable domain ${domain}"
|
||||||
|
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "वर्तमान में हम केवल बिटकॉइन की खरीद का समर्थन करते हैं। बिटकॉइन खरीदने के लिए, कृपया अपना बिटकॉइन वॉलेट बनाएं या स्विच करें",
|
"buy_alert_content" : "वर्तमान में हम केवल बिटकॉइन की खरीद का समर्थन करते हैं। बिटकॉइन खरीदने के लिए, कृपया अपना बिटकॉइन वॉलेट बनाएं या स्विच करें",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "पता लग गया",
|
"address_detected" : "पता लग गया",
|
||||||
"address_from_domain" : "आपको अजेय डोमेन ${domain} से पता मिला है"
|
"address_from_domain" : "आपको अजेय डोमेन ${domain} से पता मिला है"
|
||||||
|
|
|
@ -474,5 +474,8 @@
|
||||||
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
|
"address_detected" : "Adresa je otkrivena",
|
||||||
|
"address_from_domain" : "Dobili ste adresu od unstoppable domain ${domain}"
|
||||||
}
|
}
|
|
@ -474,5 +474,8 @@
|
||||||
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
"buy_alert_content" : "Currently we only support the purchase of Bitcoin. To buy Bitcoin, please create or switch to your Bitcoin wallet",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
|
"address_detected" : "Indirizzo rilevato",
|
||||||
|
"address_from_domain" : "Hai l'indirizzo da unstoppable domain ${domain}"
|
||||||
}
|
}
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "現在、ビットコインの購入のみをサポートしています。 ビットコインを購入するには、ビットコインウォレットを作成するか切り替えてください",
|
"buy_alert_content" : "現在、ビットコインの購入のみをサポートしています。 ビットコインを購入するには、ビットコインウォレットを作成するか切り替えてください",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "アドレスが検出されました",
|
"address_detected" : "アドレスが検出されました",
|
||||||
"address_from_domain" : "あなたはからアドレスを得ました unstoppable domain ${domain}"
|
"address_from_domain" : "あなたはからアドレスを得ました unstoppable domain ${domain}"
|
||||||
|
|
|
@ -474,7 +474,7 @@
|
||||||
"buy_alert_content" : "현재 우리는 비트 코인 구매 만 지원합니다. 비트 코인을 구매하려면 비트 코인 지갑을 생성하거나 전환하십시오",
|
"buy_alert_content" : "현재 우리는 비트 코인 구매 만 지원합니다. 비트 코인을 구매하려면 비트 코인 지갑을 생성하거나 전환하십시오",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
"understand" : "I understand"
|
"understand" : "I understand",
|
||||||
|
|
||||||
"address_detected" : "주소 감지",
|
"address_detected" : "주소 감지",
|
||||||
"address_from_domain" : "주소는 unstoppable domain ${domain}"
|
"address_from_domain" : "주소는 unstoppable domain ${domain}"
|
||||||
|
|
|
@ -469,6 +469,7 @@
|
||||||
"displayable" : "可显示",
|
"displayable" : "可显示",
|
||||||
|
|
||||||
"submit_request" : "提交请求",
|
"submit_request" : "提交请求",
|
||||||
|
|
||||||
"buy_alert_content" : "目前,我們僅支持購買比特幣。 要購買比特幣,請創建或切換到您的比特幣錢包",
|
"buy_alert_content" : "目前,我們僅支持購買比特幣。 要購買比特幣,請創建或切換到您的比特幣錢包",
|
||||||
|
|
||||||
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
"outdated_electrum_wallet_desceription" : "New Bitcoin wallets created in Cake now have a 24-word seed. It is mandatory that you create a new Bitcoin wallet and transfer all of your funds to the new 24-word wallet, and stop using wallets with a 12-word seed. Please do this immediately to secure your funds.",
|
||||||
|
|
Loading…
Reference in a new issue