Browse Source

Fix: Display proper link to block explorer

zigzag
Pavel Ševčík 6 years ago
committed by Igor Korsakov
parent
commit
7d798e0de7
  1. 1
      loc/en.js
  2. 1
      loc/es.js
  3. 1
      loc/pt_BR.js
  4. 1
      loc/pt_PT.js
  5. 1
      loc/ru.js
  6. 1
      loc/ua.js
  7. 3
      screen/transactions/details.js

1
loc/en.js

@ -103,6 +103,7 @@ module.exports = {
to: 'Output',
copy: 'Copy',
transaction_details: 'Transaction details',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

1
loc/es.js

@ -103,6 +103,7 @@ module.exports = {
to: 'A',
copy: 'Copiar',
transaction_details: 'Detalles de la transacción',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

1
loc/pt_BR.js

@ -104,6 +104,7 @@ module.exports = {
to: 'Para',
copy: 'Copiar',
transaction_details: 'Transaction details',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

1
loc/pt_PT.js

@ -103,6 +103,7 @@ module.exports = {
to: 'Para',
copy: 'Copiar',
transaction_details: 'Transaction details',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

1
loc/ru.js

@ -102,6 +102,7 @@ module.exports = {
to: 'Кому',
copy: 'копировать',
transaction_details: 'Transaction details',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

1
loc/ua.js

@ -102,6 +102,7 @@ module.exports = {
to: 'Кому',
copy: 'копія',
transaction_details: 'Transaction details',
show_in_block_explorer: 'Show in block explorer',
},
},
send: {

3
screen/transactions/details.js

@ -152,6 +152,7 @@ export default class TransactionsDetails extends Component {
<BlueText style={{ fontSize: 16, fontWeight: '500' }}>Txid</BlueText>
<BlueCopyToClipboardButton stringToCopy={this.state.tx.hash} />
</View>
<BlueText style={{ marginBottom: 8, color: 'grey' }}>{this.state.tx.hash}</BlueText>
<TouchableOpacity
onPress={() => {
const url = `https://live.blockcypher.com/btc/tx/${this.state.tx.hash}`;
@ -162,7 +163,7 @@ export default class TransactionsDetails extends Component {
});
}}
>
<BlueText style={{ marginBottom: 26, color: 'grey' }}>{this.state.tx.hash}</BlueText>
<BlueText style={{ marginBottom: 26, color: '#2f5fb3' }}>{loc.transactions.details.show_in_block_explorer}</BlueText>
</TouchableOpacity>
</React.Fragment>
)}

Loading…
Cancel
Save