mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
CW-1084: Solana Issues (#2305)
* fix(solana-issues): Fix missing solana transaction history entries * fix(solana-issues): Fixes issues relating to Solana Transaction History This change: - Modifies transaction parsing logic to handle more scenarios and better parse Solana transaction data. - Adds partial filter for spam transactions * fix(solana-issues): Enhance transaction parsing for Associated Token Account (ATA) programs This change: - Adds logic to differentiate between create account and token transfer transactions for the ATA program. - Introduces a check to skip transactions that only create accounts without associated token transfers. * fix(solana-issues): Improve transaction update logic and enhance error handling This change: - Updates the transaction update callback to only trigger when new valid transactions are present. - Enhances error handling for insufficient funds by distinguishing between errors for sender and receiver.
This commit is contained in:
parent
e5d0194f11
commit
fe0c9ecc0e
30 changed files with 263 additions and 157 deletions
|
@ -13,13 +13,17 @@ import 'package:cw_solana/solana_transaction_model.dart';
|
|||
import 'package:cw_solana/spl_token.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
import 'package:on_chain/solana/solana.dart';
|
||||
import 'package:on_chain/solana/src/instructions/associated_token_account/constant.dart';
|
||||
import 'package:on_chain/solana/src/models/pda/pda.dart';
|
||||
import 'package:blockchain_utils/blockchain_utils.dart';
|
||||
import 'package:on_chain/solana/src/rpc/models/models/confirmed_transaction_meta.dart';
|
||||
import '.secrets.g.dart' as secrets;
|
||||
|
||||
class SolanaWalletClient {
|
||||
final httpClient = http.Client();
|
||||
SolanaRPC? _provider;
|
||||
// Minimum amount in SOL to consider a transaction valid (to filter spam)
|
||||
static const double minValidAmount = 0.00000003;
|
||||
|
||||
bool connect(Node node) {
|
||||
try {
|
||||
|
@ -155,170 +159,88 @@ class SolanaWalletClient {
|
|||
if (meta == null || transaction == null) return null;
|
||||
|
||||
final int fee = meta.fee;
|
||||
final feeInSol = fee / SolanaUtils.lamportsPerSol;
|
||||
|
||||
final message = transaction.message;
|
||||
final instructions = message.compiledInstructions;
|
||||
|
||||
String sender = "";
|
||||
String receiver = "";
|
||||
|
||||
String signature = (txResponse.transaction?.signatures.isEmpty ?? true)
|
||||
? ""
|
||||
: Base58Encoder.encode(txResponse.transaction!.signatures.first);
|
||||
|
||||
|
||||
for (final instruction in instructions) {
|
||||
final programId = message.accountKeys[instruction.programIdIndex];
|
||||
|
||||
if (programId == SystemProgramConst.programId) {
|
||||
if (programId == SystemProgramConst.programId ||
|
||||
programId == ComputeBudgetConst.programId) {
|
||||
// For native solana transactions
|
||||
if (instruction.accounts.length < 2) continue;
|
||||
|
||||
if (txResponse.version == TransactionType.legacy) {
|
||||
// For legacy transfers, the fee payer (index 0) is the sender.
|
||||
sender = message.accountKeys[0].address;
|
||||
// Get the fee payer index based on transaction type
|
||||
// For legacy transfers, the first account is usually the fee payer
|
||||
// For versioned, the first account in instruction is usually the fee payer
|
||||
final feePayerIndex =
|
||||
txResponse.version == TransactionType.legacy ? 0 : instruction.accounts[0];
|
||||
|
||||
final senderPreBalance = meta.preBalances[0];
|
||||
final senderPostBalance = meta.postBalances[0];
|
||||
final feeForTx = fee / SolanaUtils.lamportsPerSol;
|
||||
final transactionModel = await _parseNativeTransaction(
|
||||
message: message,
|
||||
meta: meta,
|
||||
fee: fee,
|
||||
feeInSol: feeInSol,
|
||||
feePayerIndex: feePayerIndex,
|
||||
walletAddress: walletAddress,
|
||||
signature: signature,
|
||||
blockTime: blockTime,
|
||||
);
|
||||
|
||||
// The loss on the sender's account would include both the transfer amount and the fee.
|
||||
// So we would subtract the fee to calculate the actual amount that was transferred (in lamports).
|
||||
final transferLamports = (senderPreBalance - senderPostBalance) - BigInt.from(fee);
|
||||
|
||||
// Next, we attempt to find the receiver by comparing the balance changes.
|
||||
// (The index 0 is for the sender so we skip it.)
|
||||
bool foundReceiver = false;
|
||||
for (int i = 1; i < meta.preBalances.length; i++) {
|
||||
// The increase in balance on the receiver account should correspond to the transfer amount we calculated earlieer.
|
||||
final pre = meta.preBalances[i];
|
||||
final post = meta.postBalances[i];
|
||||
if ((post - pre) == transferLamports) {
|
||||
receiver = message.accountKeys[i].address;
|
||||
foundReceiver = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!foundReceiver) {
|
||||
// Optionally (and rarely), if no account shows the exact expected change,
|
||||
// we set the receiver address to unknown.
|
||||
receiver = "unknown";
|
||||
}
|
||||
|
||||
final amount = transferLamports / BigInt.from(1e9);
|
||||
|
||||
return SolanaTransactionModel(
|
||||
isOutgoingTx: sender == walletAddress,
|
||||
from: sender,
|
||||
to: receiver,
|
||||
id: signature,
|
||||
amount: amount.abs(),
|
||||
programId: SystemProgramConst.programId.address,
|
||||
tokenSymbol: 'SOL',
|
||||
blockTimeInInt: blockTime?.toInt() ?? 0,
|
||||
fee: feeForTx,
|
||||
);
|
||||
} else {
|
||||
if (instruction.accounts.length < 2) continue;
|
||||
final senderIndex = instruction.accounts[0];
|
||||
final receiverIndex = instruction.accounts[1];
|
||||
|
||||
sender = message.accountKeys[senderIndex].address;
|
||||
receiver = message.accountKeys[receiverIndex].address;
|
||||
|
||||
final feeForTx = fee / SolanaUtils.lamportsPerSol;
|
||||
|
||||
final preBalances = meta.preBalances;
|
||||
final postBalances = meta.postBalances;
|
||||
|
||||
final amountInString =
|
||||
(((preBalances[senderIndex] - postBalances[senderIndex]) / BigInt.from(1e9))
|
||||
.toDouble() -
|
||||
feeForTx)
|
||||
.toStringAsFixed(6);
|
||||
|
||||
final amount = double.parse(amountInString);
|
||||
|
||||
return SolanaTransactionModel(
|
||||
isOutgoingTx: sender == walletAddress,
|
||||
from: sender,
|
||||
to: receiver,
|
||||
id: signature,
|
||||
amount: amount.abs(),
|
||||
programId: SystemProgramConst.programId.address,
|
||||
tokenSymbol: 'SOL',
|
||||
blockTimeInInt: blockTime?.toInt() ?? 0,
|
||||
fee: feeForTx,
|
||||
);
|
||||
if (transactionModel != null) {
|
||||
return transactionModel;
|
||||
}
|
||||
} else if (programId == SPLTokenProgramConst.tokenProgramId) {
|
||||
// For SPL Token transactions
|
||||
if (instruction.accounts.length < 2) continue;
|
||||
|
||||
final preBalances = meta.preTokenBalances;
|
||||
final postBalances = meta.postTokenBalances;
|
||||
|
||||
double amount = 0.0;
|
||||
bool isOutgoing = false;
|
||||
String? mintAddress;
|
||||
|
||||
double userPreAmount = 0.0;
|
||||
if (preBalances != null && preBalances.isNotEmpty) {
|
||||
for (final preBal in preBalances) {
|
||||
if (preBal.owner?.address == walletAddress) {
|
||||
userPreAmount = preBal.uiTokenAmount.uiAmount ?? 0.0;
|
||||
|
||||
mintAddress = preBal.mint.address;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
double userPostAmount = 0.0;
|
||||
if (postBalances != null && postBalances.isNotEmpty) {
|
||||
for (final postBal in postBalances) {
|
||||
if (postBal.owner?.address == walletAddress) {
|
||||
userPostAmount = postBal.uiTokenAmount.uiAmount ?? 0.0;
|
||||
|
||||
mintAddress ??= postBal.mint.address;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
final diff = userPreAmount - userPostAmount;
|
||||
final rawAmount = diff.abs();
|
||||
|
||||
final amountInString = rawAmount.toStringAsFixed(6);
|
||||
amount = double.parse(amountInString);
|
||||
|
||||
isOutgoing = diff > 0;
|
||||
|
||||
if (mintAddress == null && instruction.accounts.length >= 4) {
|
||||
final mintIndex = instruction.accounts[3];
|
||||
mintAddress = message.accountKeys[mintIndex].address;
|
||||
}
|
||||
|
||||
final sender = message.accountKeys[instruction.accounts[0]].address;
|
||||
final receiver = message.accountKeys[instruction.accounts[1]].address;
|
||||
|
||||
String? tokenSymbol = splTokenSymbol;
|
||||
|
||||
if (tokenSymbol == null && mintAddress != null) {
|
||||
final token = await getTokenInfo(mintAddress);
|
||||
tokenSymbol = token?.symbol;
|
||||
}
|
||||
|
||||
return SolanaTransactionModel(
|
||||
isOutgoingTx: isOutgoing,
|
||||
from: sender,
|
||||
to: receiver,
|
||||
id: signature,
|
||||
amount: amount,
|
||||
programId: SPLTokenProgramConst.tokenProgramId.address,
|
||||
blockTimeInInt: blockTime?.toInt() ?? 0,
|
||||
tokenSymbol: tokenSymbol ?? '',
|
||||
fee: fee / SolanaUtils.lamportsPerSol,
|
||||
final transactionModel = await _parseSPLTokenTransaction(
|
||||
message: message,
|
||||
meta: meta,
|
||||
fee: fee,
|
||||
feeInSol: feeInSol,
|
||||
instruction: instruction,
|
||||
walletAddress: walletAddress,
|
||||
signature: signature,
|
||||
blockTime: blockTime,
|
||||
splTokenSymbol: splTokenSymbol,
|
||||
);
|
||||
|
||||
if (transactionModel != null) {
|
||||
return transactionModel;
|
||||
}
|
||||
} else if (programId == AssociatedTokenAccountProgramConst.associatedTokenProgramId) {
|
||||
// For ATA program, we need to check if this is a create account transaction
|
||||
// or if it's part of a normal token transfer
|
||||
|
||||
// We skip this transaction if this is the only instruction (this means that it's a create account transaction)
|
||||
if (instructions.length == 1) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// We look for a token transfer instruction in the same transaction
|
||||
bool hasTokenTransfer = false;
|
||||
for (final otherInstruction in instructions) {
|
||||
final otherProgramId = message.accountKeys[otherInstruction.programIdIndex];
|
||||
if (otherProgramId == SPLTokenProgramConst.tokenProgramId) {
|
||||
hasTokenTransfer = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// If there's no token transfer instruction, it means this is just an ATA creation transaction
|
||||
if (!hasTokenTransfer) {
|
||||
return null;
|
||||
}
|
||||
|
||||
continue;
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
@ -330,6 +252,144 @@ class SolanaWalletClient {
|
|||
return null;
|
||||
}
|
||||
|
||||
Future<SolanaTransactionModel?> _parseNativeTransaction({
|
||||
required VersionedMessage message,
|
||||
required ConfirmedTransactionMeta meta,
|
||||
required int fee,
|
||||
required double feeInSol,
|
||||
required int feePayerIndex,
|
||||
required String walletAddress,
|
||||
required String signature,
|
||||
required BigInt? blockTime,
|
||||
}) async {
|
||||
// Calculate total balance changes across all accounts
|
||||
BigInt totalBalanceChange = BigInt.zero;
|
||||
String? sender;
|
||||
String? receiver;
|
||||
|
||||
for (int i = 0; i < meta.preBalances.length; i++) {
|
||||
final preBalance = meta.preBalances[i];
|
||||
final postBalance = meta.postBalances[i];
|
||||
final balanceChange = preBalance - postBalance;
|
||||
|
||||
if (balanceChange > BigInt.zero) {
|
||||
// This account sent funds
|
||||
sender = message.accountKeys[i].address;
|
||||
totalBalanceChange += balanceChange;
|
||||
} else if (balanceChange < BigInt.zero) {
|
||||
// This account received funds
|
||||
receiver = message.accountKeys[i].address;
|
||||
}
|
||||
}
|
||||
|
||||
// We subtract the fee from total balance change if the fee payer is the sender
|
||||
if (sender == message.accountKeys[feePayerIndex].address) {
|
||||
totalBalanceChange -= BigInt.from(fee);
|
||||
}
|
||||
|
||||
if (sender == null || receiver == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
final amount = totalBalanceChange / BigInt.from(1e9);
|
||||
final amountInSol = amount.abs().toDouble();
|
||||
|
||||
// Skip transactions with very small amounts (likely spam)
|
||||
if (amountInSol < minValidAmount) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return SolanaTransactionModel(
|
||||
isOutgoingTx: sender == walletAddress,
|
||||
from: sender,
|
||||
to: receiver,
|
||||
id: signature,
|
||||
amount: amountInSol,
|
||||
programId: SystemProgramConst.programId.address,
|
||||
tokenSymbol: 'SOL',
|
||||
blockTimeInInt: blockTime?.toInt() ?? 0,
|
||||
fee: feeInSol,
|
||||
);
|
||||
}
|
||||
|
||||
Future<SolanaTransactionModel?> _parseSPLTokenTransaction({
|
||||
required VersionedMessage message,
|
||||
required ConfirmedTransactionMeta meta,
|
||||
required int fee,
|
||||
required double feeInSol,
|
||||
required CompiledInstruction instruction,
|
||||
required String walletAddress,
|
||||
required String signature,
|
||||
required BigInt? blockTime,
|
||||
String? splTokenSymbol,
|
||||
}) async {
|
||||
final preBalances = meta.preTokenBalances;
|
||||
final postBalances = meta.postTokenBalances;
|
||||
|
||||
double amount = 0.0;
|
||||
bool isOutgoing = false;
|
||||
String? mintAddress;
|
||||
|
||||
double userPreAmount = 0.0;
|
||||
if (preBalances != null && preBalances.isNotEmpty) {
|
||||
for (final preBal in preBalances) {
|
||||
if (preBal.owner?.address == walletAddress) {
|
||||
userPreAmount = preBal.uiTokenAmount.uiAmount ?? 0.0;
|
||||
|
||||
mintAddress = preBal.mint.address;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
double userPostAmount = 0.0;
|
||||
if (postBalances != null && postBalances.isNotEmpty) {
|
||||
for (final postBal in postBalances) {
|
||||
if (postBal.owner?.address == walletAddress) {
|
||||
userPostAmount = postBal.uiTokenAmount.uiAmount ?? 0.0;
|
||||
|
||||
mintAddress ??= postBal.mint.address;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
final diff = userPreAmount - userPostAmount;
|
||||
final rawAmount = diff.abs();
|
||||
|
||||
final amountInString = rawAmount.toStringAsFixed(6);
|
||||
amount = double.parse(amountInString);
|
||||
|
||||
isOutgoing = diff > 0;
|
||||
|
||||
if (mintAddress == null && instruction.accounts.length >= 4) {
|
||||
final mintIndex = instruction.accounts[3];
|
||||
mintAddress = message.accountKeys[mintIndex].address;
|
||||
}
|
||||
|
||||
final sender = message.accountKeys[instruction.accounts[0]].address;
|
||||
final receiver = message.accountKeys[instruction.accounts[1]].address;
|
||||
|
||||
String? tokenSymbol = splTokenSymbol;
|
||||
|
||||
if (tokenSymbol == null && mintAddress != null) {
|
||||
final token = await getTokenInfo(mintAddress);
|
||||
tokenSymbol = token?.symbol;
|
||||
}
|
||||
|
||||
return SolanaTransactionModel(
|
||||
isOutgoingTx: isOutgoing,
|
||||
from: sender,
|
||||
to: receiver,
|
||||
id: signature,
|
||||
amount: amount,
|
||||
programId: SPLTokenProgramConst.tokenProgramId.address,
|
||||
blockTimeInInt: blockTime?.toInt() ?? 0,
|
||||
tokenSymbol: tokenSymbol ?? '',
|
||||
fee: feeInSol,
|
||||
);
|
||||
}
|
||||
|
||||
/// Load the Address's transactions into the account
|
||||
Future<List<SolanaTransactionModel>> fetchTransactions(
|
||||
SolAddress address, {
|
||||
|
@ -381,11 +441,13 @@ class SolanaWalletClient {
|
|||
|
||||
transactions.addAll(parsedTransactions.whereType<SolanaTransactionModel>().toList());
|
||||
|
||||
// Calling the callback after each batch is processed, therefore passing the current list of transactions.
|
||||
onUpdate(List<SolanaTransactionModel>.from(transactions));
|
||||
// Only update UI if we have new valid transactions
|
||||
if (parsedTransactions.isNotEmpty) {
|
||||
onUpdate(List<SolanaTransactionModel>.from(transactions));
|
||||
}
|
||||
|
||||
if (i + batchSize < signatures.length) {
|
||||
await Future.delayed(const Duration(milliseconds: 500));
|
||||
await Future.delayed(const Duration(milliseconds: 300));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -732,19 +794,24 @@ class SolanaWalletClient {
|
|||
SolanaAccountInfo? accountInfo;
|
||||
try {
|
||||
accountInfo = await _provider!.request(
|
||||
SolanaRPCGetAccountInfo(account: associatedTokenAccount.address),
|
||||
SolanaRPCGetAccountInfo(
|
||||
account: associatedTokenAccount.address,
|
||||
commitment: Commitment.confirmed,
|
||||
),
|
||||
);
|
||||
} catch (e) {
|
||||
accountInfo = null;
|
||||
}
|
||||
|
||||
// If aacountInfo is null, signifies that the associatedTokenAccount has only been created locally and not been broadcasted to the blockchain.
|
||||
// If account exists, we return the associated token account
|
||||
if (accountInfo != null) return associatedTokenAccount;
|
||||
|
||||
if (!shouldCreateATA) return null;
|
||||
|
||||
final payerAddress = payerPrivateKey.publicKey().toAddress();
|
||||
|
||||
final createAssociatedTokenAccount = AssociatedTokenAccountProgram.associatedTokenAccount(
|
||||
payer: payerPrivateKey.publicKey().toAddress(),
|
||||
payer: payerAddress,
|
||||
associatedToken: associatedTokenAccount.address,
|
||||
owner: ownerAddress,
|
||||
mint: mintAddress,
|
||||
|
@ -753,19 +820,23 @@ class SolanaWalletClient {
|
|||
final blockhash = await _getLatestBlockhash(Commitment.confirmed);
|
||||
|
||||
final transaction = SolanaTransaction(
|
||||
payerKey: payerPrivateKey.publicKey().toAddress(),
|
||||
payerKey: payerAddress,
|
||||
instructions: [createAssociatedTokenAccount],
|
||||
recentBlockhash: blockhash,
|
||||
type: TransactionType.v0,
|
||||
);
|
||||
|
||||
transaction.sign([payerPrivateKey]);
|
||||
final serializedTransaction = await _signTransactionInternal(
|
||||
ownerPrivateKey: payerPrivateKey,
|
||||
transaction: transaction,
|
||||
);
|
||||
|
||||
await sendTransaction(
|
||||
serializedTransaction: transaction.serializeString(),
|
||||
serializedTransaction: serializedTransaction,
|
||||
commitment: Commitment.confirmed,
|
||||
);
|
||||
|
||||
// Delay for propagation on the blockchain for newly created associated token addresses
|
||||
// Wait for confirmation
|
||||
await Future.delayed(const Duration(seconds: 2));
|
||||
|
||||
return associatedTokenAccount;
|
||||
|
@ -890,7 +961,7 @@ class SolanaWalletClient {
|
|||
}) async {
|
||||
/// Sign the transaction with the owner's private key.
|
||||
final ownerSignature = ownerPrivateKey.sign(transaction.serializeMessage());
|
||||
|
||||
|
||||
transaction.addSignature(ownerPrivateKey.publicKey().toAddress(), ownerSignature);
|
||||
|
||||
/// Serialize the transaction.
|
||||
|
|
|
@ -767,8 +767,15 @@ abstract class SendViewModelBase extends WalletChangeListenerViewModel with Stor
|
|||
return S.current.solana_no_associated_token_account_exception;
|
||||
}
|
||||
|
||||
if (errorMessage.contains('insufficient funds for rent')) {
|
||||
return S.current.insufficientFundsForRentError;
|
||||
if (errorMessage.contains('insufficient funds for rent') &&
|
||||
errorMessage.contains('Transaction simulation failed') &&
|
||||
errorMessage.contains('account_index')) {
|
||||
final accountIndexMatch = RegExp(r'account_index: (\d+)').firstMatch(errorMessage);
|
||||
if (accountIndexMatch != null) {
|
||||
return int.parse(accountIndexMatch.group(1)!) == 0
|
||||
? S.current.insufficientFundsForRentError
|
||||
: S.current.insufficientFundsForRentErrorReceiver;
|
||||
}
|
||||
}
|
||||
|
||||
return errorMessage;
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "ليس لديك ما يكفي من SOL لتغطية المعاملة ورسوم المعاملات الخاصة بها. يرجى إضافة المزيد من SOL إلى محفظتك أو تقليل كمية SOL التي ترسلها.",
|
||||
"insufficient_lamports": "ليس لديك ما يكفي من SOL لتغطية المعاملة ورسوم المعاملات الخاصة بها. تحتاج على الأقل ${solValueNeeded} sol. يرجى إضافة المزيد من sol إلى محفظتك أو تقليل مبلغ sol الذي ترسله",
|
||||
"insufficientFundsForRentError": "ليس لديك ما يكفي من SOL لتغطية رسوم المعاملة والإيجار للحساب. يرجى إضافة المزيد من sol إلى محفظتك أو تقليل مبلغ sol الذي ترسله",
|
||||
"insufficientFundsForRentErrorReceiver": "لا يحتوي حساب المتلقي على ما يكفي من SOL لتغطية الإيجار. يرجى اطلب من المتلقي إضافة المزيد من SOL إلى حسابه.",
|
||||
"introducing_cake_pay": "نقدم لكم Cake Pay!",
|
||||
"invalid_input": "مدخل غير صالح",
|
||||
"invalid_password": "رمز مرور خاطئ",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Нямате достатъчно SOL, за да покриете транзакцията и таксата му за транзакция. Моля, добавете повече SOL към портфейла си или намалете сумата на SOL, която изпращате.",
|
||||
"insufficient_lamports": "Нямате достатъчно SOL, за да покриете транзакцията и таксата му за транзакция. Имате нужда от поне ${solValueNeeded} sol. Моля, добавете повече SOL към портфейла си или намалете сумата на SOL, която изпращате",
|
||||
"insufficientFundsForRentError": "Нямате достатъчно SOL, за да покриете таксата за транзакцията и наемането на сметката. Моля, добавете повече SOL към портфейла си или намалете сумата на SOL, която изпращате",
|
||||
"insufficientFundsForRentErrorReceiver": "Сметката на приемника няма достатъчно SOL, за да покрие наема. Моля, помолете приемника да добави още SOL към техния акаунт.",
|
||||
"introducing_cake_pay": "Запознайте се с Cake Pay!",
|
||||
"invalid_input": "Невалиден вход",
|
||||
"invalid_password": "Невалидна парола",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Nemáte dostatek SOL na pokrytí transakce a jejího transakčního poplatku. Laskavě přidejte do své peněženky více solu nebo snižte množství Sol, kterou odesíláte.",
|
||||
"insufficient_lamports": "Nemáte dostatek SOL na pokrytí transakce a jejího transakčního poplatku. Potřebujete alespoň ${solValueNeeded} sol. Laskavě přidejte do své peněženky více SOL nebo snižte množství Sol, kterou odesíláte",
|
||||
"insufficientFundsForRentError": "Nemáte dostatek SOL na pokrytí transakčního poplatku a nájemného za účet. Laskavě přidejte do své peněženky více SOL nebo snižte množství Sol, kterou odesíláte",
|
||||
"insufficientFundsForRentErrorReceiver": "Účet přijímače nemá dostatek SOL na pokrytí nájemného. Požádejte přijímač, aby na jejich účet přidal další SOL.",
|
||||
"introducing_cake_pay": "Představujeme Cake Pay!",
|
||||
"invalid_input": "Neplatný vstup",
|
||||
"invalid_password": "Neplatné heslo",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Sie haben nicht genug SOL, um die Transaktion und ihre Transaktionsgebühr abzudecken. Bitte fügen Sie Ihrer Wallet mehr Sol hinzu oder reduzieren Sie die SOL-Menge, die Sie senden.",
|
||||
"insufficient_lamports": "Sie haben nicht genug SOL, um die Transaktion und ihre Transaktionsgebühr abzudecken. Sie brauchen mindestens ${solValueNeeded} Sol. Bitte fügen Sie mehr Sol zu Ihrer Wallet hinzu oder reduzieren Sie den von Ihnen gesendeten Sol-Betrag",
|
||||
"insufficientFundsForRentError": "Sie haben nicht genug SOL, um die Transaktionsgebühr und die Miete für das Konto zu decken. Bitte fügen Sie mehr Sol zu Ihrer Wallet hinzu oder reduzieren Sie den von Ihnen gesendeten Sol-Betrag",
|
||||
"insufficientFundsForRentErrorReceiver": "Das Konto des Empfängers hat nicht genug SOL, um die Miete zu decken. Bitte bitten Sie den Empfänger, ihr Konto mehr Sol hinzuzufügen.",
|
||||
"introducing_cake_pay": "Einführung von Cake Pay!",
|
||||
"invalid_input": "Ungültige Eingabe",
|
||||
"invalid_password": "Ungültiges Passwort",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "You do not have enough SOL to cover the transaction and its transaction fee. Kindly add more SOL to your wallet or reduce the SOL amount you\\'re sending.",
|
||||
"insufficient_lamports": "You do not have enough SOL to cover the transaction and its transaction fee. You need at least ${solValueNeeded} SOL. Kindly add more SOL to your wallet or reduce the SOL amount you\\'re sending",
|
||||
"insufficientFundsForRentError": "You do not have enough SOL to cover the transaction fee and rent for the account. Kindly add more SOL to your wallet or reduce the SOL amount you\\'re sending",
|
||||
"insufficientFundsForRentErrorReceiver": "The receiver's account does not have enough SOL to cover the rent. Please ask the receiver to add more SOL to their account.",
|
||||
"introducing_cake_pay": "Introducing Cake Pay!",
|
||||
"invalid_input": "Invalid input",
|
||||
"invalid_password": "Invalid password",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "No tienes suficiente SOL para cubrir la transacción y su tarifa de transacción. Por favor, agrega más SOL a su billetera o reduce la cantidad de sol que está enviando.",
|
||||
"insufficient_lamports": "No tienes suficiente SOL para cubrir la transacción y su tarifa de transacción. Necesita al menos ${solValueNeeded} sol. Por favor, agrega más sol a su billetera o reduzca la cantidad de sol que está enviando",
|
||||
"insufficientFundsForRentError": "No tienes suficiente SOL para cubrir la tarifa de transacción y alquilar para la cuenta. Por favor, agrega más sol a su billetera o reduce la cantidad de sol que está enviando",
|
||||
"insufficientFundsForRentErrorReceiver": "La cuenta del receptor no tiene suficiente SOL para cubrir el alquiler. Pida al receptor que agregue más SOL a su cuenta.",
|
||||
"introducing_cake_pay": "¡Presentamos Cake Pay!",
|
||||
"invalid_input": "Entrada inválida",
|
||||
"invalid_password": "Contraseña invalida",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Vous n'avez pas assez de sol pour couvrir la transaction et ses frais de transaction. Veuillez ajouter plus de Sol à votre portefeuille ou réduire la quantité de Sol que vous envoyez.",
|
||||
"insufficient_lamports": "Vous n'avez pas assez de sol pour couvrir la transaction et ses frais de transaction. Vous avez besoin d'au moins ${solValueNeeded} sol. Veuillez ajouter plus de Sol à votre portefeuille ou réduire la quantité de sol que vous envoyez",
|
||||
"insufficientFundsForRentError": "Vous n'avez pas assez de SOL pour couvrir les frais de transaction et le loyer pour le compte. Veuillez ajouter plus de Sol à votre portefeuille ou réduire la quantité de sol que vous envoyez",
|
||||
"insufficientFundsForRentErrorReceiver": "Le compte du récepteur n'a pas assez de sol pour couvrir le loyer. Veuillez demander au récepteur d'ajouter plus de Sol à son compte.",
|
||||
"introducing_cake_pay": "Présentation de Cake Pay !",
|
||||
"invalid_input": "Entrée invalide",
|
||||
"invalid_password": "Mot de passe incorrect",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Ba ku da isasshen sool don rufe ma'amala da kuɗin ma'amala. Da unara ƙara ƙarin sool a cikin walat ɗinku ko rage adadin Sol ɗin da kuke aikawa.",
|
||||
"insufficient_lamports": "Ba ku da isasshen sool don rufe ma'amala da kuɗin ma'amala. Kuna buƙatar aƙalla ${solValueNeeded} Sol. Da kyau ƙara ƙarin sool zuwa walat ɗinku ko rage adadin Sol ɗin da kuke aikawa",
|
||||
"insufficientFundsForRentError": "Ba ku da isasshen Sol don rufe kuɗin ma'amala da haya don asusun. Da kyau ƙara ƙarin sool zuwa walat ɗinku ko rage adadin Sol ɗin da kuke aikawa",
|
||||
"insufficientFundsForRentErrorReceiver": "Asusun mai karba bashi da isasshen soya don rufe haya. Da fatan za a nemi mai karba don ƙara ƙarin sol zuwa asusun su.",
|
||||
"introducing_cake_pay": "Gabatar da Cake Pay!",
|
||||
"invalid_input": "Shigar da ba daidai ba",
|
||||
"invalid_password": "Kalmar sirri mara inganci",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "आपके पास लेनदेन और इसके लेनदेन शुल्क को कवर करने के लिए पर्याप्त सोल नहीं है। कृपया अपने बटुए में अधिक सोल जोड़ें या आपके द्वारा भेजे जा रहे सोल राशि को कम करें।",
|
||||
"insufficient_lamports": "आपके पास लेनदेन और इसके लेनदेन शुल्क को कवर करने के लिए पर्याप्त सोल नहीं है। आपको कम से कम ${solValueNeeded} सोल की आवश्यकता है। कृपया अपने बटुए में अधिक सोल जोड़ें या सोल राशि को कम करें जिसे आप भेज रहे हैं",
|
||||
"insufficientFundsForRentError": "आपके पास लेन -देन शुल्क और खाते के लिए किराए को कवर करने के लिए पर्याप्त सोल नहीं है। कृपया अपने बटुए में अधिक सोल जोड़ें या सोल राशि को कम करें जिसे आप भेज रहे हैं",
|
||||
"insufficientFundsForRentErrorReceiver": "रिसीवर के खाते में किराए को कवर करने के लिए पर्याप्त सोल नहीं है। कृपया रिसीवर को उनके खाते में अधिक सोल जोड़ने के लिए कहें।",
|
||||
"introducing_cake_pay": "परिचय Cake Pay!",
|
||||
"invalid_input": "अमान्य निवेश",
|
||||
"invalid_password": "अवैध पासवर्ड",
|
||||
|
@ -569,8 +570,8 @@
|
|||
"payjoin_unavailable_sheet_title": "Payjoin अनुपलब्ध क्यों है?",
|
||||
"payment_id": "भुगतान ID: ",
|
||||
"payment_made_easy": "भुगतान आसान किया गया",
|
||||
"payment_was_received": "आपका भुगतान प्राप्त हुआ था।",
|
||||
"Payment_was_received": "आपका भुगतान प्राप्त हो गया था।",
|
||||
"payment_was_received": "आपका भुगतान प्राप्त हुआ था।",
|
||||
"payments": "भुगतान",
|
||||
"pending": " (अपूर्ण)",
|
||||
"percentageOf": "${amount} का",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Nemate dovoljno SOL -a da pokriva transakciju i njegovu transakcijsku naknadu. Ljubazno dodajte više sol u svoj novčanik ili smanjite količinu SOL -a koju šaljete.",
|
||||
"insufficient_lamports": "Nemate dovoljno SOL -a da pokriva transakciju i njegovu transakcijsku naknadu. Trebate najmanje ${solValueNeeded} sol. Ljubazno dodajte više sol u svoj novčanik ili smanjite količinu SOL -a koju šaljete",
|
||||
"insufficientFundsForRentError": "Nemate dovoljno SOL -a za pokrivanje naknade za transakciju i najamninu za račun. Ljubazno dodajte više sol u svoj novčanik ili smanjite količinu SOL -a koju šaljete",
|
||||
"insufficientFundsForRentErrorReceiver": "Račun prijemnika nema dovoljno SOL -a da pokriva najamninu. Molimo zamolite prijemnika da doda više SOL -a na svoj račun.",
|
||||
"introducing_cake_pay": "Predstavljamo Cake Pay!",
|
||||
"invalid_input": "Pogrešan unos",
|
||||
"invalid_password": "Netočna zaporka",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Դուք չունեք բավարար SOL՝ գործարքն և գործարքի վարձը ծածկելու համար։ Խնդրում ենք ավելացնել ավելի շատ SOL ձեր դրամապանակում կամ նվազեցնել ուղարկվող SOL-ի քանակը։",
|
||||
"insufficient_lamports": "Դուք չունեք բավարար SOL՝ գործարքն և գործարքի վարձը ծածկելու համար։ Ձեզ անհրաժեշտ է առնվազն ${solValueNeeded} SOL։ Խնդրում ենք ավելացնել ավելի շատ SOL ձեր դրամապանակում կամ նվազեցնել ուղարկվող SOL-ի քանակը։",
|
||||
"insufficientFundsForRentError": "Ձեր մնացորդը բավարար չէ վարձակալության համար: Խնդրում ենք ավելացնել մնացորդը կամ նվազեցնել ուղարկվող գումարը",
|
||||
"insufficientFundsForRentErrorReceiver": "Ստացողի հաշիվը չունի բավարար SOL, վարձավճարը ծածկելու համար: Խնդրում ենք ստանալ ստացողին ավելի շատ սոլ ավելացնել իրենց հաշվին:",
|
||||
"introducing_cake_pay": "Ներկայացնում ենք Cake Pay!",
|
||||
"invalid_input": "Սխալ մուտք",
|
||||
"invalid_password": "Սխալ գաղտնաբառ",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Anda tidak memiliki cukup SOL untuk menutupi transaksi dan biaya transaksinya. Mohon tambahkan lebih banyak sol ke dompet Anda atau kurangi jumlah sol yang Anda kirim.",
|
||||
"insufficient_lamports": "Anda tidak memiliki cukup SOL untuk menutupi transaksi dan biaya transaksinya. Anda membutuhkan setidaknya ${solValueNeeded} sol. Mohon tambahkan lebih banyak sol ke dompet Anda atau kurangi jumlah sol yang Anda kirim",
|
||||
"insufficientFundsForRentError": "Anda tidak memiliki cukup SOL untuk menutupi biaya transaksi dan menyewa untuk akun tersebut. Mohon tambahkan lebih banyak sol ke dompet Anda atau kurangi jumlah sol yang Anda kirim",
|
||||
"insufficientFundsForRentErrorReceiver": "Akun penerima tidak memiliki cukup SOL untuk menutupi sewa. Silakan minta penerima untuk menambahkan lebih banyak SOL ke akun mereka.",
|
||||
"introducing_cake_pay": "Perkenalkan Cake Pay!",
|
||||
"invalid_input": "Masukan tidak valid",
|
||||
"invalid_password": "Kata sandi salah",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Non hai abbastanza SOL per coprire la transazione e la sua quota di transazione. Aggiungi più SOL al tuo portafoglio, o riduci l'importo di SOL che stai inviando.",
|
||||
"insufficient_lamports": "Non hai abbastanza SOL per coprire la transazione e la sua quota di transazione. Hai bisogno di almeno ${solValueNeeded} SOL. Aggiungi più SOL al tuo portafoglio, o riduci l'importo di SOL che stai inviando",
|
||||
"insufficientFundsForRentError": "Non hai abbastanza SOL per coprire la tassa di transazione e l'affitto per il conto. Aggiungi più SOL al tuo portafoglio, o riduci l'importo di SOL che stai inviando",
|
||||
"insufficientFundsForRentErrorReceiver": "L'account del destinatario non ha abbastanza SOL per coprire l'affitto. Si prega di chiedere al destinatario di aggiungere più SOL al loro account.",
|
||||
"introducing_cake_pay": "Vi presentiamo Cake Pay!",
|
||||
"invalid_input": "Inserimento non valido",
|
||||
"invalid_password": "Password non valida",
|
||||
|
|
|
@ -419,6 +419,7 @@
|
|||
"insufficient_lamport_for_tx": "トランザクションとその取引手数料をカバーするのに十分なSOLがありません。財布にソルを追加するか、送信するソル量を減らしてください。",
|
||||
"insufficient_lamports": "トランザクションとその取引手数料をカバーするのに十分なSOLがありません。少なくとも${solValueNeeded} solが必要です。財布にソルを追加するか、送信するソル量を減らしてください",
|
||||
"insufficientFundsForRentError": "アカウントの取引料金とレンタルをカバーするのに十分なソルがありません。財布にソルを追加するか、送信するソル量を減らしてください",
|
||||
"insufficientFundsForRentErrorReceiver": "受信者のアカウントには、家賃をカバーするのに十分なソルがありません。レシーバーにアカウントにソルを追加するように依頼してください。",
|
||||
"introducing_cake_pay": "序章Cake Pay!",
|
||||
"invalid_input": "無効入力",
|
||||
"invalid_password": "無効なパスワード",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "트랜잭션 및 트랜잭션 수수료를 충당하기에 SOL이 부족합니다. 지갑에 SOL을 더 추가하거나 보내는 SOL 금액을 줄이세요.",
|
||||
"insufficient_lamports": "트랜잭션 및 트랜잭션 수수료를 충당하기에 SOL이 부족합니다. 최소 ${solValueNeeded} SOL이 필요합니다. 지갑에 SOL을 더 추가하거나 보내는 SOL 금액을 줄이세요.",
|
||||
"insufficientFundsForRentError": "계정의 트랜잭션 수수료 및 렌트를 충당하기에 SOL이 부족합니다. 지갑에 SOL을 더 추가하거나 보내는 SOL 금액을 줄이세요.",
|
||||
"insufficientFundsForRentErrorReceiver": "수신기의 계정에는 임대료를 충당하기에 충분한 SOL이 없습니다. 수신기에게 계정에 더 많은 솔을 추가하도록 요청하십시오.",
|
||||
"introducing_cake_pay": "Cake Pay를 소개합니다!",
|
||||
"invalid_input": "잘못된 입력",
|
||||
"invalid_password": "잘못된 비밀번호",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "သငျသညျငွေပေးငွေယူနှင့်၎င်း၏ငွေပေးငွေယူကြေးကိုဖုံးလွှမ်းရန် sol ရှိသည်မဟုတ်ကြဘူး။ ကြင်နာစွာသင်၏ပိုက်ဆံအိတ်သို့ပိုမို sol ကိုထပ်ထည့်ပါသို့မဟုတ်သင်ပို့လွှတ်ခြင်း sol ပမာဏကိုလျှော့ချပါ။",
|
||||
"insufficient_lamports": "သငျသညျငွေပေးငွေယူနှင့်၎င်း၏ငွေပေးငွေယူကြေးကိုဖုံးလွှမ်းရန် sol ရှိသည်မဟုတ်ကြဘူး။ သင်အနည်းဆုံး ${solValueNeeded} s ကိုလိုအပ်ပါတယ်။ ကြင်နာစွာသင်၏ပိုက်ဆံအိတ်သို့ပိုမို sol ကိုထပ်ထည့်ပါသို့မဟုတ်သင်ပို့နေသော sol ပမာဏကိုလျှော့ချပါ",
|
||||
"insufficientFundsForRentError": "သင်ငွေပေးချေမှုအခကြေးငွေကိုဖုံးအုပ်ရန်နှင့်အကောင့်ငှားရန်လုံလောက်သော sol ရှိသည်မဟုတ်ကြဘူး။ ကြင်နာစွာသင်၏ပိုက်ဆံအိတ်သို့ပိုမို sol ကိုပိုမိုထည့်ပါသို့မဟုတ်သင်ပို့ခြင်း sol ပမာဏကိုလျှော့ချပါ",
|
||||
"insufficientFundsForRentErrorReceiver": "လက်ခံသူ၏အကောင့်တွင်အိမ်ငှားခကိုဖုံးအုပ်ရန်အစွမ်းမရှိနိုင်ပါ။ ကျေးဇူးပြု. လက်ခံသူအားသူတို့၏အကောင့်သို့ထပ်မံထည့်သွင်းရန်တောင်းဆိုပါ။",
|
||||
"introducing_cake_pay": "Cake Pay ကို မိတ်ဆက်ခြင်း။",
|
||||
"invalid_input": "ထည့်သွင်းမှု မမှန်ကန်ပါ။",
|
||||
"invalid_password": "မမှန်ကန်သောစကားဝှက်",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "U hebt niet genoeg SOL om de transactie en de transactiekosten te dekken. Voeg vriendelijk meer SOL toe aan uw portemonnee of verminder de SOL -hoeveelheid die u verzendt.",
|
||||
"insufficient_lamports": "U hebt niet genoeg SOL om de transactie en de transactiekosten te dekken. Je hebt minstens ${solValueNeeded} sol nodig. Voeg vriendelijk meer Sol toe aan uw portemonnee of verminder de SOL -hoeveelheid die u verzendt",
|
||||
"insufficientFundsForRentError": "U hebt niet genoeg SOL om de transactiekosten en huur voor de rekening te dekken. Voeg vriendelijk meer SOL toe aan uw portemonnee of verminder de SOL -hoeveelheid die u verzendt",
|
||||
"insufficientFundsForRentErrorReceiver": "De account van de ontvanger heeft niet genoeg SOL om de huur te dekken. Vraag de ontvanger om meer SOL aan hun account toe te voegen.",
|
||||
"introducing_cake_pay": "Introductie van Cake Pay!",
|
||||
"invalid_input": "Ongeldige invoer",
|
||||
"invalid_password": "Ongeldig wachtwoord",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Nie masz wystarczającej ilości SOL, aby pokryć transakcję i opłatę za transakcję. Dodaj więcej SOL do portfela lub zmniejsz wysyłaną kwotę SOL.",
|
||||
"insufficient_lamports": "Nie masz wystarczającej ilości SOL, aby pokryć transakcję i opłatę za transakcję. Potrzebujesz przynajmniej ${solValueNeeded} SOL. Uprzejmie dodaj więcej SOL do portfela lub zmniejsz wysyłaną kwotę SOL, którą wysyłasz",
|
||||
"insufficientFundsForRentError": "Nie masz wystarczającej ilości SOL, aby pokryć opłatę za transakcję i czynsz za konto. Dodaj więcej SOL do portfela lub zmniejsz kwotę, którą wysyłasz",
|
||||
"insufficientFundsForRentErrorReceiver": "Konto odbiorcy nie ma wystarczającej ilości SOL, aby pokryć czynsz. Poproś odbiorcę o dodanie więcej SOL do ich konta.",
|
||||
"introducing_cake_pay": "Przedstawiamy Cake Pay!",
|
||||
"invalid_input": "Nieprawidłowe dane wejściowe",
|
||||
"invalid_password": "Nieprawidłowe hasło",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Você não tem Sol suficiente para cobrir a transação e sua taxa de transação. Por favor, adicione mais sol à sua carteira ou reduza a quantidade de sol que você envia.",
|
||||
"insufficient_lamports": "Você não tem Sol suficiente para cobrir a transação e sua taxa de transação. Você precisa de pelo menos ${solValueNeeded} sol. Por favor, adicione mais sol à sua carteira ou reduza a quantidade de sol que você está enviando",
|
||||
"insufficientFundsForRentError": "Você não tem Sol suficiente para cobrir a taxa de transação e o aluguel da conta. Por favor, adicione mais sol à sua carteira ou reduza a quantidade de sol que você envia",
|
||||
"insufficientFundsForRentErrorReceiver": "A conta do receptor não possui SOL suficiente para cobrir o aluguel. Por favor, peça ao destinatário que adicione mais sol à sua conta.",
|
||||
"introducing_cake_pay": "Apresentando o Cake Pay!",
|
||||
"invalid_input": "Entrada inválida",
|
||||
"invalid_password": "Senha inválida",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "У вас недостаточно Sol, чтобы покрыть транзакцию и плату за транзакцию. Пожалуйста, добавьте больше Sol в свой кошелек или уменьшите сумму Sol, которую вы отправляете.",
|
||||
"insufficient_lamports": "У вас недостаточно Sol, чтобы покрыть транзакцию и плату за транзакцию. Вам нужен как минимум ${solValueNeeded} sol. Пожалуйста, добавьте больше Sol в свой кошелек или уменьшите сумму Sol, которую вы отправляете",
|
||||
"insufficientFundsForRentError": "У вас недостаточно Sol, чтобы покрыть плату за транзакцию и аренду для счета. Пожалуйста, добавьте больше Sol в свой кошелек или уменьшите сумму Sol, которую вы отправляете",
|
||||
"insufficientFundsForRentErrorReceiver": "У счета приемника не хватает Sol, чтобы покрыть арендную плату. Пожалуйста, попросите приемника добавить больше SOL в свою учетную запись.",
|
||||
"introducing_cake_pay": "Представляем Cake Pay!",
|
||||
"invalid_input": "Неверный Ввод",
|
||||
"invalid_password": "Неверный пароль",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "คุณไม่มีโซลเพียงพอที่จะครอบคลุมการทำธุรกรรมและค่าธรรมเนียมการทำธุรกรรม กรุณาเพิ่มโซลให้มากขึ้นลงในกระเป๋าเงินของคุณหรือลดจำนวนโซลที่คุณส่งมา",
|
||||
"insufficient_lamports": "คุณไม่มีโซลเพียงพอที่จะครอบคลุมการทำธุรกรรมและค่าธรรมเนียมการทำธุรกรรม คุณต้องการอย่างน้อย ${solValueNeeded} SOL กรุณาเพิ่มโซลให้มากขึ้นลงในกระเป๋าเงินของคุณหรือลดจำนวนโซลที่คุณกำลังส่ง",
|
||||
"insufficientFundsForRentError": "คุณไม่มีโซลเพียงพอที่จะครอบคลุมค่าธรรมเนียมการทำธุรกรรมและค่าเช่าสำหรับบัญชี กรุณาเพิ่มโซลให้มากขึ้นลงในกระเป๋าเงินของคุณหรือลดจำนวนโซลที่คุณส่งมา",
|
||||
"insufficientFundsForRentErrorReceiver": "บัญชีของผู้รับไม่เพียงพอที่จะครอบคลุมค่าเช่า โปรดขอให้ผู้รับเพิ่ม SOL เพิ่มเติมในบัญชีของพวกเขา",
|
||||
"introducing_cake_pay": "ยินดีต้อนรับสู่ Cake Pay!",
|
||||
"invalid_input": "อินพุตไม่ถูกต้อง",
|
||||
"invalid_password": "รหัสผ่านไม่ถูกต้อง",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "Wala kang sapat na SOL upang masakop ang transaksyon at ang bayad sa transaksyon nito. Mabuting magdagdag ng higit pa sa iyong pitaka o bawasan ang sol na halaga na iyong ipinapadala.",
|
||||
"insufficient_lamports": "Wala kang sapat na SOL upang masakop ang transaksyon at ang bayad sa transaksyon nito. Kailangan mo ng hindi bababa sa ${solValueNeeded} sol. Mabait na magdagdag ng higit pang sol sa iyong pitaka o bawasan ang dami ng iyong ipinapadala",
|
||||
"insufficientFundsForRentError": "Wala kang sapat na SOL upang masakop ang fee sa transaksyon at upa para sa account. Mabait na magdagdag ng higit pa sa iyong wallet o bawasan ang halaga ng SOL na iyong ipinapadala",
|
||||
"insufficientFundsForRentErrorReceiver": "Ang account ng tatanggap ay walang sapat na sol upang masakop ang upa. Mangyaring hilingin sa tatanggap na magdagdag ng higit pang SOL sa kanilang account.",
|
||||
"introducing_cake_pay": "Pagpapakilala ng Cake Pay!",
|
||||
"invalid_input": "Di-wastong input",
|
||||
"invalid_password": "Di-wastong password",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "İşlemi ve işlem ücretini karşılamak için yeterli SOL'unuz yok. Lütfen cüzdanınıza daha fazla SOL ekleyin veya gönderdiğiniz sol miktarını azaltın.",
|
||||
"insufficient_lamports": "İşlemi ve işlem ücretini karşılamak için yeterli SOL'unuz yok. En az ${solValueNeeded} Sol'a ihtiyacınız var. Lütfen cüzdanınıza daha fazla sol ekleyin veya gönderdiğiniz sol miktarını azaltın",
|
||||
"insufficientFundsForRentError": "İşlem ücretini karşılamak ve hesap için kiralamak için yeterli SOL'nuz yok. Lütfen cüzdanınıza daha fazla sol ekleyin veya gönderdiğiniz sol miktarını azaltın",
|
||||
"insufficientFundsForRentErrorReceiver": "Alıcının hesabının kirayı karşılamak için yeterli SOL yoktur. Lütfen alıcıdan hesaplarına daha fazla SOL eklemesini isteyin.",
|
||||
"introducing_cake_pay": "Cake Pay ile tanışın!",
|
||||
"invalid_input": "Geçersiz Giriş",
|
||||
"invalid_password": "Geçersiz şifre",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "У вас недостатньо SOL, щоб покрити транзакцію та її плату за трансакцію. Будь ласка, додайте до свого гаманця більше SOL або зменшіть суму, яку ви надсилаєте.",
|
||||
"insufficient_lamports": "У вас недостатньо SOL, щоб покрити транзакцію та її плату за трансакцію. Вам потрібно щонайменше ${solValueNeeded} sol. Будь ласка, додайте до свого гаманця більше SOL або зменшіть суму Sol, яку ви надсилаєте",
|
||||
"insufficientFundsForRentError": "У вас недостатньо SOL, щоб покрити плату за транзакцію та оренду на рахунок. Будь ласка, додайте до свого гаманця більше SOL або зменшіть суму, яку ви надсилаєте",
|
||||
"insufficientFundsForRentErrorReceiver": "На рахунку одержувача не вистачає SOL, щоб покрити оренду. Будь ласка, попросіть одержувача додати більше SOL до свого рахунку.",
|
||||
"introducing_cake_pay": "Представляємо Cake Pay!",
|
||||
"invalid_input": "Неправильні дані",
|
||||
"invalid_password": "Недійсний пароль",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "آپ کے پاس ٹرانزیکشن اور اس کے لین دین کی فیس کا احاطہ کرنے کے لئے کافی SOL نہیں ہے۔ برائے مہربانی اپنے بٹوے میں مزید سول شامل کریں یا آپ کو بھیجنے والی سول رقم کو کم کریں۔",
|
||||
"insufficient_lamports": "آپ کے پاس ٹرانزیکشن اور اس کے لین دین کی فیس کا احاطہ کرنے کے لئے کافی SOL نہیں ہے۔ آپ کو کم از کم ${solValueNeeded} sol کی ضرورت ہے۔ برائے مہربانی اپنے بٹوے میں مزید SOL شامل کریں یا آپ جس SOL رقم کو بھیج رہے ہو اسے کم کریں",
|
||||
"insufficientFundsForRentError": "آپ کے پاس ٹرانزیکشن فیس اور اکاؤنٹ کے لئے کرایہ لینے کے ل enough اتنا SOL نہیں ہے۔ برائے مہربانی اپنے بٹوے میں مزید سول شامل کریں یا آپ کو بھیجنے والی سول رقم کو کم کریں",
|
||||
"insufficientFundsForRentErrorReceiver": "وصول کنندہ کے اکاؤنٹ میں کرایہ کا احاطہ کرنے کے لئے کافی SOL نہیں ہے۔ براہ کرم وصول کنندہ سے ان کے اکاؤنٹ میں مزید SOL شامل کرنے کو کہیں۔",
|
||||
"introducing_cake_pay": "Cake پے کا تعارف!",
|
||||
"invalid_input": "غلط ان پٹ",
|
||||
"invalid_password": "غلط پاسورڈ",
|
||||
|
|
|
@ -417,6 +417,7 @@
|
|||
"insufficient_lamport_for_tx": "Bạn không có đủ SOL để thanh toán giao dịch và phí giao dịch. Vui lòng thêm SOL vào ví của bạn hoặc giảm số lượng SOL bạn đang gửi.",
|
||||
"insufficient_lamports": "Bạn không có đủ SOL để thanh toán giao dịch và phí giao dịch. Bạn cần ít nhất ${solValueNeeded} SOL. Vui lòng thêm SOL vào ví của bạn hoặc giảm số lượng SOL bạn đang gửi",
|
||||
"insufficientFundsForRentError": "Bạn không có đủ SOL để thanh toán phí giao dịch và phí thuê cho tài khoản. Vui lòng thêm SOL vào ví của bạn hoặc giảm số lượng SOL bạn đang gửi",
|
||||
"insufficientFundsForRentErrorReceiver": "Tài khoản của người nhận không có đủ SOL để trang trải tiền thuê nhà. Vui lòng yêu cầu người nhận thêm SOL vào tài khoản của họ.",
|
||||
"introducing_cake_pay": "Giới thiệu Cake Pay!",
|
||||
"invalid_input": "Nhập không hợp lệ",
|
||||
"invalid_password": "Mật khẩu không hợp lệ",
|
||||
|
|
|
@ -419,6 +419,7 @@
|
|||
"insufficient_lamport_for_tx": "O ko ni sosi to lati bo idunadura ati idiyele iṣowo rẹ. Fi agbara kun Sol diẹ sii si apamọwọ rẹ tabi dinku sodo naa ti o \\ 'tun n firanṣẹ.",
|
||||
"insufficient_lamports": "O ko ni sosi to lati bo idunadura ati idiyele iṣowo rẹ. O nilo o kere ju ${solValueNeeded}. Fi agbara kun Sol diẹ sii si apamọwọ rẹ tabi dinku soso ti o n firanṣẹ",
|
||||
"insufficientFundsForRentError": "O ko ni Sol kan lati bo owo isanwo naa ki o yalo fun iroyin naa. Fi agbara kun Sol diẹ sii si apamọwọ rẹ tabi dinku soso naa ti o \\ 'tun n firanṣẹ",
|
||||
"insufficientFundsForRentErrorReceiver": "Akọọlẹ olugba ko ni Sol lati bo iyalo naa. Jọwọ beere olugba lati ṣafikun Sol diẹ sii si akọọlẹ wọn.",
|
||||
"introducing_cake_pay": "Ẹ bá Cake Pay!",
|
||||
"invalid_input": "Iṣawọle ti ko tọ",
|
||||
"invalid_password": "Ọrọ igbaniwọle ti ko wulo",
|
||||
|
|
|
@ -418,6 +418,7 @@
|
|||
"insufficient_lamport_for_tx": "您没有足够的溶胶来支付交易及其交易费用。请在您的钱包中添加更多溶胶或减少您发送的溶胶量。",
|
||||
"insufficient_lamports": "您没有足够的溶胶来支付交易及其交易费用。您至少需要${solValueNeeded} sol。请在您的钱包中添加更多溶胶或减少您发送的溶胶量",
|
||||
"insufficientFundsForRentError": "您没有足够的溶胶来支付该帐户的交易费和租金。请在钱包中添加更多溶胶或减少您发送的溶胶量",
|
||||
"insufficientFundsForRentErrorReceiver": "接收器的帐户没有足够的溶胶来支付租金。请要求接收器向其帐户添加更多SOL。",
|
||||
"introducing_cake_pay": "介绍 Cake Pay!",
|
||||
"invalid_input": "输入无效",
|
||||
"invalid_password": "无效的密码",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue