From 3ae30bfad1cd3be67e60c2ae0c189c20b4fdcec9 Mon Sep 17 00:00:00 2001 From: Quantum Explorer Date: Mon, 19 Nov 2018 05:35:47 +0700 Subject: [PATCH] added size in tx information and cost per byte of the transaction --- DashWallet/DWTxDetailViewController.m | 87 +++++++++++-------- DashWallet/ar.lproj/Localizable.strings | 6 ++ DashWallet/bg.lproj/Localizable.strings | 6 ++ DashWallet/de.lproj/Localizable.strings | 6 ++ DashWallet/el.lproj/Localizable.strings | 6 ++ DashWallet/en.lproj/Localizable.strings | 6 ++ DashWallet/es.lproj/Localizable.strings | 6 ++ DashWallet/fr.lproj/Localizable.strings | 6 ++ DashWallet/it.lproj/Localizable.strings | 6 ++ DashWallet/ja.lproj/Localizable.strings | 6 ++ DashWallet/ko.lproj/Localizable.strings | 6 ++ DashWallet/nb.lproj/Localizable.strings | 6 ++ DashWallet/nl.lproj/Localizable.strings | 6 ++ DashWallet/pl.lproj/Localizable.strings | 6 ++ DashWallet/pt.lproj/Localizable.strings | 6 ++ DashWallet/ru.lproj/Localizable.strings | 6 ++ DashWallet/sk.lproj/Localizable.strings | 6 ++ DashWallet/sq.lproj/Localizable.strings | 6 ++ DashWallet/sv.lproj/Localizable.strings | 6 ++ DashWallet/th.lproj/Localizable.strings | 6 ++ DashWallet/tr.lproj/Localizable.strings | 6 ++ DashWallet/vi.lproj/Localizable.strings | 6 ++ DashWallet/zh-Hans.lproj/Localizable.strings | 6 ++ .../zh-Hant-TW.lproj/Localizable.strings | 6 ++ 24 files changed, 190 insertions(+), 35 deletions(-) diff --git a/DashWallet/DWTxDetailViewController.m b/DashWallet/DWTxDetailViewController.m index e4c0b0da1..002e2eca8 100644 --- a/DashWallet/DWTxDetailViewController.m +++ b/DashWallet/DWTxDetailViewController.m @@ -50,16 +50,16 @@ - (void)viewDidLoad - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; - + if (! self.txStatusObserver) { self.txStatusObserver = [[NSNotificationCenter defaultCenter] addObserverForName:DSChainPeerManagerTxStatusNotification object:nil - queue:nil usingBlock:^(NSNotification *note) { - DSTransaction *tx = [[DWEnvironment sharedInstance].currentAccount transactionForHash:self.transaction.txHash]; - - if (tx) self.transaction = tx; - [self.tableView reloadData]; - }]; + queue:nil usingBlock:^(NSNotification *note) { + DSTransaction *tx = [[DWEnvironment sharedInstance].currentAccount transactionForHash:self.transaction.txHash]; + + if (tx) self.transaction = tx; + [self.tableView reloadData]; + }]; } } @@ -94,7 +94,7 @@ - (void)setTransaction:(DSTransaction *)transaction [mutableInputAddresses addObject:inputAddress]; } } - + for (NSString *address in transaction.outputAddresses) { NSData * script = transaction.outputScripts[outputAmountIndex]; uint64_t amt = [transaction.outputAmounts[outputAmountIndex++] unsignedLongLongValue]; @@ -125,24 +125,24 @@ - (void)setTransaction:(DSTransaction *)transaction [detail addObject:NSLocalizedString(@"payment output", nil)]; [amount addObject:@(-amt)]; } - + } } else if ([account containsAddress:address]) { if (self.sent == 0 || self.received == self.sent) { [text addObject:address]; -if (![[DWEnvironment sharedInstance].currentChain isMainnet]) { - DSDerivationPath * derivationPath = [account derivationPathContainingAddress:address]; - if ([derivationPath isBIP43Based] && [derivationPath purpose] == 44) { - [detail addObject:@"wallet address (BIP44)"]; - } else if ([derivationPath isBIP32Only]) { - [detail addObject:@"wallet address (BIP32)"]; + if (![[DWEnvironment sharedInstance].currentChain isMainnet]) { + DSDerivationPath * derivationPath = [account derivationPathContainingAddress:address]; + if ([derivationPath isBIP43Based] && [derivationPath purpose] == 44) { + [detail addObject:@"wallet address (BIP44)"]; + } else if ([derivationPath isBIP32Only]) { + [detail addObject:@"wallet address (BIP32)"]; + } else { + [detail addObject:[NSString stringWithFormat:@"wallet address (%@)",[derivationPath stringRepresentation]]]; + } } else { - [detail addObject:[NSString stringWithFormat:@"wallet address (%@)",[derivationPath stringRepresentation]]]; + [detail addObject:NSLocalizedString(@"wallet address", nil)]; } -} else { - [detail addObject:NSLocalizedString(@"wallet address", nil)]; -} [amount addObject:@(amt)]; [currencyIsBitcoinInstead addObject:@FALSE]; } @@ -154,7 +154,7 @@ - (void)setTransaction:(DSTransaction *)transaction [currencyIsBitcoinInstead addObject:@FALSE]; } } - + if (self.sent > 0 && fee > 0 && fee != UINT64_MAX) { [text addObject:@""]; [detail addObject:NSLocalizedString(@"dash network fee", nil)]; @@ -187,11 +187,11 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger { // Return the number of rows in the section. switch (section) { - case 0: return self.transaction.associatedShapeshift?(([self.transaction.associatedShapeshift.shapeshiftStatus integerValue]| eShapeshiftAddressStatus_Finished)?5:4):3; + case 0: return self.transaction.associatedShapeshift?(([self.transaction.associatedShapeshift.shapeshiftStatus integerValue]| eShapeshiftAddressStatus_Finished)?6:5):4; case 1: return (self.sent > 0) ? self.outputText.count : self.inputAddresses.count; case 2: return (self.sent > 0) ? self.inputAddresses.count : self.outputText.count; } - + return 1; } @@ -219,7 +219,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N if (indexPathRow > 0) indexPathRow += 1; } switch (indexPathRow) { - + case 0: cell = [tableView dequeueReusableCellWithIdentifier:@"IdCell" forIndexPath:indexPath]; cell.selectionStyle = UITableViewCellSelectionStyleDefault; @@ -228,7 +228,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N [self setBackgroundForCell:cell indexPath:indexPath]; textLabel.text = NSLocalizedString(@"id:", nil); s = [NSString hexWithData:[NSData dataWithBytes:self.transaction.txHash.u8 - length:sizeof(UInt256)].reverse]; + length:sizeof(UInt256)].reverse]; detailLabel.text = [NSString stringWithFormat:@"%@\n%@", [s substringToIndex:s.length/2], [s substringFromIndex:s.length/2]]; detailLabel.copyableText = s; @@ -286,11 +286,28 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N break; case 4: + cell = [tableView dequeueReusableCellWithIdentifier:@"TitleCell" forIndexPath:indexPath]; + cell.selectionStyle = UITableViewCellSelectionStyleNone; + textLabel = (id)[cell viewWithTag:1]; + detailLabel = (id)[cell viewWithTag:2]; + subtitleLabel = (id)[cell viewWithTag:3]; + [self setBackgroundForCell:cell indexPath:indexPath]; + textLabel.text = NSLocalizedString(@"size:", nil); + uint64_t feeCostPerByte = self.transaction.feeCostPerByte; + if (feeCostPerByte != UINT64_MAX) { //otherwise it's being received and can't know. + subtitleLabel.text = [NSString stringWithFormat:NSLocalizedString(@"%d duffs/byte",nil), feeCostPerByte]; + } else { + subtitleLabel.text = nil; + } + detailLabel.text = [@(self.transaction.size) stringValue]; + break; + + case 5: cell = [tableView dequeueReusableCellWithIdentifier:@"TransactionCell"]; [self setBackgroundForCell:cell indexPath:indexPath]; textLabel = (id)[cell viewWithTag:1]; localCurrencyLabel = (id)[cell viewWithTag:5]; - + if (self.sent > 0 && self.sent == self.received) { textLabel.attributedText = [priceManager attributedStringForDashAmount:self.sent]; localCurrencyLabel.text = [NSString stringWithFormat:@"(%@)", @@ -318,7 +335,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N cell.selectionStyle = UITableViewCellSelectionStyleDefault; } else cell = [tableView dequeueReusableCellWithIdentifier:@"SubtitleCell" forIndexPath:indexPath]; - + detailLabel = (id)[cell viewWithTag:2]; subtitleLabel = (id)[cell viewWithTag:3]; amountLabel = (id)[cell viewWithTag:1]; @@ -326,7 +343,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N detailLabel.text = self.outputText[indexPath.row]; subtitleLabel.text = self.outputDetail[indexPath.row]; amountLabel.textColor = (self.sent > 0) ? [UIColor colorWithRed:1.0 green:0.33 blue:0.33 alpha:1.0] : - [UIColor colorWithRed:0.0 green:0.75 blue:0.0 alpha:1.0]; + [UIColor colorWithRed:0.0 green:0.75 blue:0.0 alpha:1.0]; long long outputAmount = [self.outputAmount[indexPath.row] longLongValue]; @@ -347,17 +364,17 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N amountLabel.textColor = [UIColor colorWithRed:0.0 green:0.75 blue:0.0 alpha:1.0]; localCurrencyLabel.text = [NSString stringWithFormat:@"(%@)", [priceManager localCurrencyStringForBitcoinAmount:[self.outputAmount[indexPath.row] - longLongValue]]]; + longLongValue]]]; } else { amountLabel.attributedText = [priceManager attributedStringForDashAmount:[self.outputAmount[indexPath.row] longLongValue] withTintColor:amountLabel.textColor dashSymbolSize:CGSizeMake(9, 9)]; localCurrencyLabel.text = [NSString stringWithFormat:@"(%@)", [priceManager localCurrencyStringForDashAmount:[self.outputAmount[indexPath.row] - longLongValue]]]; + longLongValue]]]; } localCurrencyLabel.textColor = amountLabel.textColor; } - + } else if (self.inputAddresses[indexPath.row] != (id)[NSNull null]) { cell = [tableView dequeueReusableCellWithIdentifier:@"DetailCell" forIndexPath:indexPath]; @@ -386,7 +403,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N amountLabel.text = nil; localCurrencyLabel.text = nil; } - + [self setBackgroundForCell:cell indexPath:indexPath]; break; } @@ -426,8 +443,8 @@ - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSIntege if (sectionTitle.length == 0) return 22.0; CGRect textRect = [sectionTitle boundingRectWithSize:CGSizeMake(self.view.frame.size.width - 30.0, CGFLOAT_MAX) - options:NSStringDrawingUsesLineFragmentOrigin - attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:18 weight:UIFontWeightLight]} context:nil]; + options:NSStringDrawingUsesLineFragmentOrigin + attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:18 weight:UIFontWeightLight]} context:nil]; return textRect.size.height + 12.0; } @@ -435,9 +452,9 @@ - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSIntege - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *headerview = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.frame.size.width, - [self tableView:tableView heightForHeaderInSection:section])]; + [self tableView:tableView heightForHeaderInSection:section])]; UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(15.0, 10.0, headerview.frame.size.width - 30.0, - headerview.frame.size.height - 12.0)]; + headerview.frame.size.height - 12.0)]; titleLabel.text = [self tableView:tableView titleForHeaderInSection:section]; titleLabel.backgroundColor = [UIColor clearColor]; diff --git a/DashWallet/ar.lproj/Localizable.strings b/DashWallet/ar.lproj/Localizable.strings index fb97f9bc6..fe70d9b2e 100644 --- a/DashWallet/ar.lproj/Localizable.strings +++ b/DashWallet/ar.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%dالتأكيدات"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 تأكيدات"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "إظهار الجملة"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "الرسائل القصيرة غير متوفرة حاليا"; diff --git a/DashWallet/bg.lproj/Localizable.strings b/DashWallet/bg.lproj/Localizable.strings index da55e1fcf..e66f1bfbe 100644 --- a/DashWallet/bg.lproj/Localizable.strings +++ b/DashWallet/bg.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d потвърждения"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 потвърждения"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "покажи фраза"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms не е наличен в момента"; diff --git a/DashWallet/de.lproj/Localizable.strings b/DashWallet/de.lproj/Localizable.strings index 6e28e30c0..51ed40e5b 100644 --- a/DashWallet/de.lproj/Localizable.strings +++ b/DashWallet/de.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d Bestätigungen"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 Bestätigungen"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "Wiederherstellungs-Wortfolge anzeigen"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "SMS aktuell nicht verfügbar"; diff --git a/DashWallet/el.lproj/Localizable.strings b/DashWallet/el.lproj/Localizable.strings index 7d351a51b..f459e7350 100644 --- a/DashWallet/el.lproj/Localizable.strings +++ b/DashWallet/el.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d επιβεβαιώσεις"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 επιβεβαιώσεις"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "εμφάνιση φράσης"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "το sms δεν είναι διαθέσιμο επί του παρόντος"; diff --git a/DashWallet/en.lproj/Localizable.strings b/DashWallet/en.lproj/Localizable.strings index ffeb01138..4312298e5 100644 --- a/DashWallet/en.lproj/Localizable.strings +++ b/DashWallet/en.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d confirmations"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 confirmations"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "show phrase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms not currently available"; diff --git a/DashWallet/es.lproj/Localizable.strings b/DashWallet/es.lproj/Localizable.strings index cdcec12ce..8674ef4f9 100644 --- a/DashWallet/es.lproj/Localizable.strings +++ b/DashWallet/es.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d confirmaciones"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 confirmaciones"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "mostrar frase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms actualmente no disponible"; diff --git a/DashWallet/fr.lproj/Localizable.strings b/DashWallet/fr.lproj/Localizable.strings index 7868bbbad..be9533704 100644 --- a/DashWallet/fr.lproj/Localizable.strings +++ b/DashWallet/fr.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d confirmations"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 confirmation"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "montrer la phrase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms actuellement indisponible"; diff --git a/DashWallet/it.lproj/Localizable.strings b/DashWallet/it.lproj/Localizable.strings index d0bb104d9..7381d3bd4 100644 --- a/DashWallet/it.lproj/Localizable.strings +++ b/DashWallet/it.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d conferme"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 conferme"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "mostra frase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms non disponibili al momento"; diff --git a/DashWallet/ja.lproj/Localizable.strings b/DashWallet/ja.lproj/Localizable.strings index 509d2cbc4..38a931bbb 100644 --- a/DashWallet/ja.lproj/Localizable.strings +++ b/DashWallet/ja.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d承認済み"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0承認済み"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "フレーズを表示"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "SMSは現在利用できません."; diff --git a/DashWallet/ko.lproj/Localizable.strings b/DashWallet/ko.lproj/Localizable.strings index dc9a8080e..529e4ad94 100644 --- a/DashWallet/ko.lproj/Localizable.strings +++ b/DashWallet/ko.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d 승인"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 컨펌"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "문구 보기"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "지금 SMS사용이 불가능 합니다"; diff --git a/DashWallet/nb.lproj/Localizable.strings b/DashWallet/nb.lproj/Localizable.strings index 788b0c702..afe5c3e97 100644 --- a/DashWallet/nb.lproj/Localizable.strings +++ b/DashWallet/nb.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d bekreftelser"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 bekreftelser"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "vis frase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "SMS utilgjengelig for øyeblikket"; diff --git a/DashWallet/nl.lproj/Localizable.strings b/DashWallet/nl.lproj/Localizable.strings index 11487213f..4f6d7097e 100644 --- a/DashWallet/nl.lproj/Localizable.strings +++ b/DashWallet/nl.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d bevestigingen"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 bevestigingen"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "toon zin"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms is momenteel niet beschikbaar"; diff --git a/DashWallet/pl.lproj/Localizable.strings b/DashWallet/pl.lproj/Localizable.strings index fd6347c51..1aa2a492b 100644 --- a/DashWallet/pl.lproj/Localizable.strings +++ b/DashWallet/pl.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d potwierdzeń"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 potwierdzeń"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "pokaż frazę"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms obecnie nie jest dostępny"; diff --git a/DashWallet/pt.lproj/Localizable.strings b/DashWallet/pt.lproj/Localizable.strings index 6f1490f0b..7992173d8 100644 --- a/DashWallet/pt.lproj/Localizable.strings +++ b/DashWallet/pt.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d confirmações"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 confirmações"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "mostrar a frase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms não está atualmente disponível"; diff --git a/DashWallet/ru.lproj/Localizable.strings b/DashWallet/ru.lproj/Localizable.strings index 93049c083..209038727 100644 --- a/DashWallet/ru.lproj/Localizable.strings +++ b/DashWallet/ru.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "Подтверждений: %d"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 подтверждений"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "Показать фразу"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "Сообщения сейчас недоступны"; diff --git a/DashWallet/sk.lproj/Localizable.strings b/DashWallet/sk.lproj/Localizable.strings index 60d5b98f6..46fdac946 100644 --- a/DashWallet/sk.lproj/Localizable.strings +++ b/DashWallet/sk.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d potvrdení"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 potvrdení"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "show phrase"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms nie je momentálne dostupná"; diff --git a/DashWallet/sq.lproj/Localizable.strings b/DashWallet/sq.lproj/Localizable.strings index 24ec63abb..eff247955 100644 --- a/DashWallet/sq.lproj/Localizable.strings +++ b/DashWallet/sq.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d konfirmime"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 konfirmime"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "shfaq frazën"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sns momentalisht nuk janë në dispozicion"; diff --git a/DashWallet/sv.lproj/Localizable.strings b/DashWallet/sv.lproj/Localizable.strings index 376bdb039..3dda769f7 100644 --- a/DashWallet/sv.lproj/Localizable.strings +++ b/DashWallet/sv.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d bekräftelser"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 bekräftelser"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "visa fras"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms är inte tillgängligt för tillfället"; diff --git a/DashWallet/th.lproj/Localizable.strings b/DashWallet/th.lproj/Localizable.strings index 0d3e02cdc..7127f7c09 100644 --- a/DashWallet/th.lproj/Localizable.strings +++ b/DashWallet/th.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d การยืนยัน"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 การยืนยัน"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "แสดงวลี"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms ไม่พร้อมใช้งาน"; diff --git a/DashWallet/tr.lproj/Localizable.strings b/DashWallet/tr.lproj/Localizable.strings index a27d0bc5e..59bb60d6a 100644 --- a/DashWallet/tr.lproj/Localizable.strings +++ b/DashWallet/tr.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d onaylama"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 onaylama"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "metni göster"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "kısa mesaj şu anda kullanılabilir değil"; diff --git a/DashWallet/vi.lproj/Localizable.strings b/DashWallet/vi.lproj/Localizable.strings index 37de6de4a..b0a7c9940 100644 --- a/DashWallet/vi.lproj/Localizable.strings +++ b/DashWallet/vi.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d xác thực"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 xác thực"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "hiển thị cụm từ"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "sms hiện không sẵn sàng"; diff --git a/DashWallet/zh-Hans.lproj/Localizable.strings b/DashWallet/zh-Hans.lproj/Localizable.strings index dc709a147..5170f2ca7 100644 --- a/DashWallet/zh-Hans.lproj/Localizable.strings +++ b/DashWallet/zh-Hans.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d个确认"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0个确认"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "显示密语"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "短信尚不可用"; diff --git a/DashWallet/zh-Hant-TW.lproj/Localizable.strings b/DashWallet/zh-Hant-TW.lproj/Localizable.strings index 6b03ab89f..45f6c2ba3 100644 --- a/DashWallet/zh-Hant-TW.lproj/Localizable.strings +++ b/DashWallet/zh-Hant-TW.lproj/Localizable.strings @@ -11,6 +11,9 @@ /* No comment provided by engineer. */ "%d confirmations" = "%d 次確認"; +/* No comment provided by engineer. */ +"%d duffs/byte" = "%d duffs/byte"; + /* No comment provided by engineer. */ "0 confirmations" = "0 次確認"; @@ -464,6 +467,9 @@ /* No comment provided by engineer. */ "show phrase" = "顯示詞組"; +/* No comment provided by engineer. */ +"size:" = "size:"; + /* No comment provided by engineer. */ "sms not currently available" = "短訊目前無法使用";