fixed merge conflict and fixed number formatting

pull/594/head
mulili 6 years ago
parent 276d80d48f
commit 931ff46fbc
  1. 19
      apps/block_scout_web/assets/js/lib/smart_contract/wei_ether_converter.js
  2. 2
      apps/block_scout_web/lib/block_scout_web/templates/smart_contract/_functions.html.eex
  3. 505
      apps/block_scout_web/priv/gettext/default.pot
  4. 505
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -8,18 +8,19 @@ const weiToEtherConverter = (element, event) => {
const $conversionTextWei = $element.find('[data-conversion-text-wei]')
const $conversionTextEth = $element.find('[data-conversion-text-eth]')
const $conversionUnit = $element.find('[data-conversion-unit]')
let unitVal = new BigNumber($conversionUnit.html())
let unitVal = new BigNumber(numeral($conversionUnit.html()).value())
if (event.target.checked) {
$conversionTextWei.hide()
$conversionTextEth.show()
unitVal = unitVal.dividedBy(weiUnit).toNumber()
$conversionUnit.html(String(unitVal > 0 ? numeral(unitVal).format('0,0') : numeral(unitVal).format('0.0[00000]')))
$conversionTextWei.removeClass('d-inline-block').hide()
$conversionTextEth.removeClass('d-none').show()
unitVal = unitVal.dividedBy(weiUnit)
$conversionUnit.html(unitVal.toFixed() > 0 ? unitVal.toFixed() : numeral(unitVal).format('0[.000000000000000000]'))
} else {
$conversionTextWei.show()
$conversionTextEth.hide()
unitVal = unitVal.multipliedBy(weiUnit).toNumber()
$conversionUnit.html(String(numeral(unitVal).format('0,0')))
$conversionTextWei.addClass('d-inline-block')
$conversionTextEth.addClass('d-none')
unitVal = unitVal.multipliedBy(weiUnit)
$conversionUnit.html(unitVal.toFixed())
}
}
}

@ -49,7 +49,7 @@
<span class="py-2 px-2">
<input class="wei-ether" type="checkbox" autocomplete="off">
<span class="d-inline-block" data-conversion-text-wei><%= gettext("WEI")%></span>
<span class="d-none" data-conversion-text-eth><%= gettext("ETH")%></span>
<span class="d-inline-block" data-conversion-text-eth><%= gettext("ETH")%></span>
<span>
</div>
<% else %>

@ -6,8 +6,9 @@ msgstr ""
msgid "Block"
msgstr ""
#: lib/block_scout_web/templates/block/index.html.eex:10
#: lib/block_scout_web/templates/chain/show.html.eex:56
#: lib/block_scout_web/templates/layout/_topnav.html.eex:13
#: lib/block_scout_web/templates/layout/_topnav.html.eex:16
msgid "Blocks"
msgstr ""
@ -32,25 +33,34 @@ msgstr ""
msgid "BlockScout"
msgstr ""
#: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address_contract/index.html.eex:10
#: lib/block_scout_web/templates/address/index.html.eex:28
#: lib/block_scout_web/templates/address/overview.html.eex:28
#: lib/block_scout_web/templates/address_contract/index.html.eex:12
#: lib/block_scout_web/templates/address_contract/index.html.eex:65
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:13
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:55
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:10
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:64
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:12
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:59
#: lib/block_scout_web/templates/address_token/index.html.eex:11
#: lib/block_scout_web/templates/address_token/index.html.eex:73
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:11
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:74
#: lib/block_scout_web/templates/address_transaction/index.html.eex:13
#: lib/block_scout_web/templates/address_transaction/index.html.eex:55
#: lib/block_scout_web/templates/address_transaction/index.html.eex:129
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_transaction/index.html.eex:63
#: lib/block_scout_web/templates/address_transaction/index.html.eex:148
#: lib/block_scout_web/templates/block_transaction/index.html.eex:13
#: lib/block_scout_web/templates/block_transaction/index.html.eex:23
#: lib/block_scout_web/templates/block_transaction/index.html.eex:26
#: lib/block_scout_web/templates/block_transaction/index.html.eex:36
#: lib/block_scout_web/templates/chain/show.html.eex:73
#: lib/block_scout_web/templates/layout/_topnav.html.eex:18
#: lib/block_scout_web/templates/layout/_topnav.html.eex:24
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:46
#: lib/block_scout_web/templates/transaction/index.html.eex:56
msgid "Transactions"
msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:84
#: lib/block_scout_web/templates/transaction/overview.html.eex:87
msgid "Value"
msgstr ""
@ -74,7 +84,7 @@ msgid "Miner"
msgstr ""
#: lib/block_scout_web/templates/block/overview.html.eex:59
#: lib/block_scout_web/templates/transaction/overview.html.eex:52
#: lib/block_scout_web/templates/transaction/overview.html.eex:55
msgid "Nonce"
msgstr ""
@ -98,11 +108,11 @@ msgstr ""
msgid "Total Difficulty"
msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:31
#: lib/block_scout_web/templates/transaction/overview.html.eex:34
msgid "Block Number"
msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:8
#: lib/block_scout_web/templates/transaction/overview.html.eex:15
msgid "Transaction Details"
msgstr ""
@ -110,7 +120,7 @@ msgstr ""
msgid "Cumulative Gas Used"
msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:95
#: lib/block_scout_web/templates/transaction/overview.html.eex:98
msgid "Gas"
msgstr ""
@ -118,7 +128,7 @@ msgstr ""
msgid "Gas Price"
msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:65
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Input"
msgstr ""
@ -130,12 +140,13 @@ msgstr ""
msgid "%{count} transactions in this block"
msgstr ""
#: lib/block_scout_web/views/address_view.ex:12
#: lib/block_scout_web/templates/transaction_log/index.html.eex:70
#: lib/block_scout_web/views/address_view.ex:79
msgid "Address"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:115
#: lib/block_scout_web/templates/address_transaction/index.html.eex:116
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:131
#: lib/block_scout_web/templates/address_transaction/index.html.eex:135
#: lib/block_scout_web/views/address_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From"
@ -146,12 +157,12 @@ msgstr ""
msgid "Overview"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:81
#: lib/block_scout_web/views/transaction_view.ex:55
msgid "Success"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104
#: lib/block_scout_web/templates/address_transaction/index.html.eex:105
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:120
#: lib/block_scout_web/templates/address_transaction/index.html.eex:124
#: lib/block_scout_web/views/address_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To"
@ -197,9 +208,9 @@ msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/index.html.eex:16
#: lib/block_scout_web/templates/transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/overview.html.eex:40
#: lib/block_scout_web/views/transaction_view.ex:46
#: lib/block_scout_web/views/transaction_view.ex:80
#: lib/block_scout_web/templates/transaction/overview.html.eex:43
#: lib/block_scout_web/views/transaction_view.ex:53
#: lib/block_scout_web/views/transaction_view.ex:79
msgid "Pending"
msgstr ""
@ -263,15 +274,15 @@ msgstr ""
msgid "TPM"
msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:87
msgid "Next Page"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:78
#: lib/block_scout_web/views/transaction_view.ex:53
msgid "Failed"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:79
#: lib/block_scout_web/views/transaction_view.ex:54
msgid "Out of Gas"
msgstr ""
@ -287,12 +298,10 @@ msgstr ""
msgid "Showing #%{number}"
msgstr ""
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:22
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:15
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:68
#: lib/block_scout_web/templates/transaction/_tile.html.eex:24
#: lib/block_scout_web/templates/transaction/overview.html.eex:84
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:16
#: lib/block_scout_web/templates/transaction/_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/overview.html.eex:87
#: lib/block_scout_web/views/wei_helpers.ex:72
msgid "Ether"
msgstr ""
@ -302,13 +311,20 @@ msgstr ""
msgid "Gwei"
msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:17
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_contract/index.html.eex:75
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:27
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:127
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:17
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:74
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:143
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:69
#: lib/block_scout_web/templates/address_token/index.html.eex:26
#: lib/block_scout_web/templates/address_token/index.html.eex:83
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:27
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:84
#: lib/block_scout_web/templates/address_transaction/index.html.eex:28
#: lib/block_scout_web/templates/address_transaction/index.html.eex:73
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49
@ -320,7 +336,7 @@ msgstr ""
msgid "Internal Transactions"
msgstr ""
#: lib/block_scout_web/templates/layout/_topnav.html.eex:32
#: lib/block_scout_web/templates/layout/_topnav.html.eex:46
msgid "Search by address, transaction hash, or block number"
msgstr ""
@ -354,8 +370,8 @@ msgstr ""
msgid "Wei"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:98
#: lib/block_scout_web/templates/address_transaction/index.html.eex:99
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:114
#: lib/block_scout_web/templates/address_transaction/index.html.eex:118
#: lib/block_scout_web/views/address_internal_transaction_view.ex:11
#: lib/block_scout_web/views/address_transaction_view.ex:11
msgid "All"
@ -393,6 +409,7 @@ msgstr ""
#: lib/block_scout_web/templates/chain/show.html.eex:17
#: lib/block_scout_web/templates/layout/app.html.eex:24
#: lib/block_scout_web/views/address_view.ex:99
msgid "Market Cap"
msgstr ""
@ -433,7 +450,22 @@ msgstr ""
msgid "TXNs"
msgstr ""
#: lib/block_scout_web/templates/layout/_topnav.html.eex:29
#: lib/block_scout_web/templates/address_contract/index.html.eex:19
#: lib/block_scout_web/templates/address_contract/index.html.eex:70
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:19
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:64
#: lib/block_scout_web/templates/address_token/index.html.eex:19
#: lib/block_scout_web/templates/address_token/index.html.eex:69
#: lib/block_scout_web/templates/address_token/index.html.eex:78
#: lib/block_scout_web/templates/address_token/index.html.eex:109
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:19
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:70
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:79
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:112
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_transaction/index.html.eex:68
msgid "Tokens"
msgstr ""
@ -441,7 +473,7 @@ msgstr ""
msgid "Total Gas Used"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:120
#: lib/block_scout_web/views/transaction_view.ex:124
msgid "Transaction"
msgstr ""
@ -455,8 +487,8 @@ msgid "View All"
msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69
#: lib/block_scout_web/templates/transaction/_tile.html.eex:27
#: lib/block_scout_web/templates/transaction/overview.html.eex:57
#: lib/block_scout_web/templates/transaction/_tile.html.eex:23
#: lib/block_scout_web/templates/transaction/overview.html.eex:60
msgid "TX Fee"
msgstr ""
@ -464,7 +496,8 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lib/block_scout_web/views/address_view.ex:10
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:12
#: lib/block_scout_web/views/address_view.ex:77
msgid "Contract Address"
msgstr ""
@ -476,12 +509,12 @@ msgstr ""
msgid "There are no Transactions"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:142
#: lib/block_scout_web/templates/address_transaction/index.html.eex:143
#: lib/block_scout_web/templates/block/index.html.eex:15
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:158
#: lib/block_scout_web/templates/address_transaction/index.html.eex:162
#: lib/block_scout_web/templates/block/index.html.eex:20
#: lib/block_scout_web/templates/block_transaction/index.html.eex:50
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:78
#: lib/block_scout_web/templates/tokens/token/show.html.eex:71
#: lib/block_scout_web/templates/tokens/token/show.html.eex:86
#: lib/block_scout_web/templates/transaction/index.html.eex:66
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72
msgid "Older"
@ -491,16 +524,23 @@ msgstr ""
msgid "Contract Source Code"
msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:48
#: lib/block_scout_web/templates/address_contract/index.html.eex:55
msgid "Verify and Publish"
msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:27
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:31
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:27
#: lib/block_scout_web/templates/address_transaction/index.html.eex:31
#: lib/block_scout_web/templates/address_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_contract/index.html.eex:57
#: lib/block_scout_web/templates/address_contract/index.html.eex:83
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:82
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:77
#: lib/block_scout_web/templates/address_token/index.html.eex:38
#: lib/block_scout_web/templates/address_token/index.html.eex:91
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:39
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:92
#: lib/block_scout_web/templates/address_transaction/index.html.eex:39
#: lib/block_scout_web/templates/address_transaction/index.html.eex:82
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:122
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141
msgid "Code"
@ -526,22 +566,18 @@ msgid "Newer"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:118
#: lib/block_scout_web/views/transaction_view.ex:122
msgid "Contract Creation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:39
msgid "Mainnet"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:43
#: lib/block_scout_web/templates/layout/_topnav.html.eex:66
#: lib/block_scout_web/templates/layout/_topnav.html.eex:70
msgid "POA Core"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:42
#: lib/block_scout_web/templates/layout/_topnav.html.eex:69
msgid "POA Sokol"
msgstr ""
@ -581,81 +617,82 @@ msgid "Wallet addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:89
#: lib/block_scout_web/templates/address_transaction/index.html.eex:108
#: lib/block_scout_web/templates/transaction/index.html.eex:53
msgid "Connection Lost, click to load newer transactions"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:8
#: lib/block_scout_web/templates/address/overview.html.eex:8
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
msgid "Copy Address"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:4
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:4
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:4
msgid "Internal Transaction"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13
#: lib/block_scout_web/templates/address/overview.html.eex:64
#: lib/block_scout_web/templates/address/overview.html.eex:68
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:13
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:13
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:73
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:81
msgid "QR Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:136
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:152
msgid "There are no internal transactions for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:137
#: lib/block_scout_web/templates/address_transaction/index.html.eex:156
#: lib/block_scout_web/templates/block_transaction/index.html.eex:44
msgid "There are no transactions for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:64
#: lib/block_scout_web/templates/transaction/overview.html.eex:16
#: lib/block_scout_web/views/address_view.ex:21
#: lib/block_scout_web/views/address_view.ex:55
msgid "Contract Address Pending"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:119
#: lib/block_scout_web/views/transaction_view.ex:123
msgid "Contract Call"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:25
#: lib/block_scout_web/templates/address/overview.html.eex:37
msgid "Contract created by"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:35
#: lib/block_scout_web/templates/address/overview.html.eex:43
msgid "at"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:36
#: lib/block_scout_web/templates/transaction/_tile.html.eex:34
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:21
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:44
#: lib/block_scout_web/templates/transaction/_tile.html.eex:30
msgid "Block #%{number}"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:29
#: lib/block_scout_web/templates/transaction/_tile.html.eex:47
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:31
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
msgid "IN"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:27
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/_tile.html.eex:39
msgid "OUT"
msgstr ""
@ -665,24 +702,28 @@ msgid "Query"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:51
msgid "WEI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:52
msgid "ETH"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:37
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_transaction/index.html.eex:42
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:25
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:42
#: lib/block_scout_web/templates/tokens/token/show.html.eex:26
#: lib/block_scout_web/templates/tokens/token/show.html.eex:45
#: lib/block_scout_web/templates/address_contract/index.html.eex:46
#: lib/block_scout_web/templates/address_contract/index.html.eex:91
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:49
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:89
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:55
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:84
#: lib/block_scout_web/templates/address_token/index.html.eex:50
#: lib/block_scout_web/templates/address_token/index.html.eex:58
#: lib/block_scout_web/templates/address_token/index.html.eex:99
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:51
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:59
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:100
#: lib/block_scout_web/templates/address_transaction/index.html.eex:50
#: lib/block_scout_web/templates/address_transaction/index.html.eex:91
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:27
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:55
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:26
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:44
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52
#: lib/block_scout_web/templates/tokens/token/show.html.eex:27
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55
msgid "Read Contract"
msgstr ""
@ -697,8 +738,10 @@ msgid "Block Height #%{height}"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:73
#: lib/block_scout_web/templates/address/overview.html.eex:69
#: lib/block_scout_web/templates/address/overview.html.eex:77
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:82
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:90
msgid "Close"
msgstr ""
@ -708,12 +751,12 @@ msgid "Github"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:45
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Block Confirmations"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:107
#: lib/block_scout_web/templates/transaction/overview.html.eex:110
msgid "Limit"
msgstr ""
@ -729,19 +772,19 @@ msgid "There are no logs for this transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:100
#: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Used"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:4
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:4
#: lib/block_scout_web/views/transaction_view.ex:117
#: lib/block_scout_web/views/transaction_view.ex:121
msgid "Token Transfer"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:33
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:40
msgid "Transfers"
msgstr ""
@ -753,7 +796,7 @@ msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:84
#: lib/block_scout_web/templates/address_transaction/index.html.eex:103
#: lib/block_scout_web/templates/chain/show.html.eex:69
#: lib/block_scout_web/templates/transaction/index.html.eex:48
msgid "More transactions have come in"
@ -769,7 +812,7 @@ msgstr ""
msgid "Validated Transactions"
msgstr ""
#: lib/block_scout_web/templates/tokens/token/show.html.eex:64
#: lib/block_scout_web/templates/tokens/token/show.html.eex:79
msgid "There are no transfers for this Token."
msgstr ""
@ -779,13 +822,14 @@ msgid "Token Details"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:17
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:34
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:37
#: lib/block_scout_web/templates/tokens/token/show.html.eex:17
#: lib/block_scout_web/templates/tokens/token/show.html.eex:36
#: lib/block_scout_web/templates/tokens/token/show.html.eex:39
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:18
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:49
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:18
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:47
#: lib/block_scout_web/templates/tokens/token/show.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:46
#: lib/block_scout_web/templates/tokens/token/show.html.eex:49
#: lib/block_scout_web/templates/tokens/token/show.html.eex:70
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:12
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/transaction_log/index.html.eex:13
@ -798,22 +842,22 @@ msgid "Token Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:39
msgid "addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:35
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:42
msgid "decimals"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:54
msgid "Total Supply"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:23
#: lib/block_scout_web/templates/layout/_topnav.html.eex:40
msgid "API"
msgstr ""
@ -823,8 +867,8 @@ msgid "There are no token transfers for this transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:94
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:67
msgid "loading..."
msgstr ""
@ -874,6 +918,7 @@ msgid "Base URL:"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:62
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:22
msgid "Cancel"
msgstr ""
@ -895,6 +940,7 @@ msgid "Description"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:18
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123
msgid "Details"
msgstr ""
@ -995,12 +1041,12 @@ msgid "loading....."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/_tile.html.eex:67
#: lib/block_scout_web/templates/transaction/_tile.html.eex:63
msgid "View More Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/_tile.html.eex:68
#: lib/block_scout_web/templates/transaction/_tile.html.eex:64
msgid "View Less Transfers"
msgstr ""
@ -1010,16 +1056,219 @@ msgid "Less than"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:42
#: lib/block_scout_web/views/transaction_view.ex:45
msgid "Max of"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:88
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104
msgid "Connection Lost, click to load newer internal transactions"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:83
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:99
msgid "More internal transactions have come in"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:10
msgid "Copy Transaction Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:10
msgid "Copy Txn Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/address_token_view.ex:7
msgid "%{count} transfer"
msgid_plural "%{count} transfers"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/block_scout_web/templates/address_token/index.html.eex:123
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:134
msgid "Next"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_token/index.html.eex:116
msgid "There are no tokens for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:80
msgid "There are no holders for this Token."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:35
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:46
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:60
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:71
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:33
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:56
#: lib/block_scout_web/templates/tokens/token/show.html.eex:35
#: lib/block_scout_web/templates/tokens/token/show.html.eex:60
msgid "Token Holders"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:24
msgid "Compiler"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:121
msgid "Compiler version"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:144
msgid "Contract ABI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:18
msgid "Contract Name"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:162
msgid "Contract creation code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:113
msgid "Contract name:"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:128
msgid "Contract source code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction_log/index.html.eex:103
msgid "Data"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:46
msgid "Enter the Solidity Contract Code below"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:5
msgid "New Smart Contract"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:34
msgid "No"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:117
msgid "Optimization enabled"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:60
msgid "Reset"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:46
#: lib/block_scout_web/templates/layout/_topnav.html.eex:53
msgid "Search"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13
msgid "Show QR Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:6
msgid "Toggle navigation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction_log/index.html.eex:81
msgid "Topics"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:39
msgid "Yes"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:34
msgid "View Contract"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/block/index.html.eex:6
msgid "Connection Lost, click to load newer blocks"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:54
msgid "(Awaiting internal transactions for status)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:58
msgid "Error: %{reason}"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:56
msgid "Error: (Awaiting internal transactions for reason)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:130
#: lib/block_scout_web/templates/address_contract/index.html.eex:146
#: lib/block_scout_web/templates/address_contract/index.html.eex:164
msgid "Copy Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:103
msgid "Verify & Publish"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:59
msgid "Verify & publish"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:32
msgid "Accounts"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:4
msgid "Addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:6
msgid "Showing 250 addresses of"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:8
msgid "total addresses with a balance"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:128
msgid "There are no token transfers for this address."
msgstr ""

@ -18,8 +18,9 @@ msgstr "Age"
msgid "Block"
msgstr "Block"
#: lib/block_scout_web/templates/block/index.html.eex:10
#: lib/block_scout_web/templates/chain/show.html.eex:56
#: lib/block_scout_web/templates/layout/_topnav.html.eex:13
#: lib/block_scout_web/templates/layout/_topnav.html.eex:16
msgid "Blocks"
msgstr "Blocks"
@ -44,25 +45,34 @@ msgstr "Height"
msgid "BlockScout"
msgstr "BlockScout"
#: lib/block_scout_web/templates/address/overview.html.eex:21
#: lib/block_scout_web/templates/address_contract/index.html.eex:10
#: lib/block_scout_web/templates/address/index.html.eex:28
#: lib/block_scout_web/templates/address/overview.html.eex:28
#: lib/block_scout_web/templates/address_contract/index.html.eex:12
#: lib/block_scout_web/templates/address_contract/index.html.eex:65
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:13
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:55
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:10
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:64
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:12
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:59
#: lib/block_scout_web/templates/address_token/index.html.eex:11
#: lib/block_scout_web/templates/address_token/index.html.eex:73
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:11
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:74
#: lib/block_scout_web/templates/address_transaction/index.html.eex:13
#: lib/block_scout_web/templates/address_transaction/index.html.eex:55
#: lib/block_scout_web/templates/address_transaction/index.html.eex:129
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_transaction/index.html.eex:63
#: lib/block_scout_web/templates/address_transaction/index.html.eex:148
#: lib/block_scout_web/templates/block_transaction/index.html.eex:13
#: lib/block_scout_web/templates/block_transaction/index.html.eex:23
#: lib/block_scout_web/templates/block_transaction/index.html.eex:26
#: lib/block_scout_web/templates/block_transaction/index.html.eex:36
#: lib/block_scout_web/templates/chain/show.html.eex:73
#: lib/block_scout_web/templates/layout/_topnav.html.eex:18
#: lib/block_scout_web/templates/layout/_topnav.html.eex:24
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:46
#: lib/block_scout_web/templates/transaction/index.html.eex:56
msgid "Transactions"
msgstr "Transactions"
#: lib/block_scout_web/templates/transaction/overview.html.eex:84
#: lib/block_scout_web/templates/transaction/overview.html.eex:87
msgid "Value"
msgstr "Value"
@ -86,7 +96,7 @@ msgid "Miner"
msgstr "Validator"
#: lib/block_scout_web/templates/block/overview.html.eex:59
#: lib/block_scout_web/templates/transaction/overview.html.eex:52
#: lib/block_scout_web/templates/transaction/overview.html.eex:55
msgid "Nonce"
msgstr "Nonce"
@ -110,11 +120,11 @@ msgstr "Timestamp"
msgid "Total Difficulty"
msgstr "Total Difficulty"
#: lib/block_scout_web/templates/transaction/overview.html.eex:31
#: lib/block_scout_web/templates/transaction/overview.html.eex:34
msgid "Block Number"
msgstr "Block Height"
#: lib/block_scout_web/templates/transaction/overview.html.eex:8
#: lib/block_scout_web/templates/transaction/overview.html.eex:15
msgid "Transaction Details"
msgstr "Transaction Details"
@ -122,7 +132,7 @@ msgstr "Transaction Details"
msgid "Cumulative Gas Used"
msgstr "Cumulative Gas Used"
#: lib/block_scout_web/templates/transaction/overview.html.eex:95
#: lib/block_scout_web/templates/transaction/overview.html.eex:98
msgid "Gas"
msgstr "Gas"
@ -130,7 +140,7 @@ msgstr "Gas"
msgid "Gas Price"
msgstr "Gas Price"
#: lib/block_scout_web/templates/transaction/overview.html.eex:65
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Input"
msgstr "Input"
@ -142,12 +152,13 @@ msgstr "%{confirmations} block confirmations"
msgid "%{count} transactions in this block"
msgstr "%{count} transactions in this block"
#: lib/block_scout_web/views/address_view.ex:12
#: lib/block_scout_web/templates/transaction_log/index.html.eex:70
#: lib/block_scout_web/views/address_view.ex:79
msgid "Address"
msgstr "Address"
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:115
#: lib/block_scout_web/templates/address_transaction/index.html.eex:116
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:131
#: lib/block_scout_web/templates/address_transaction/index.html.eex:135
#: lib/block_scout_web/views/address_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From"
@ -158,12 +169,12 @@ msgstr "From"
msgid "Overview"
msgstr "Overview"
#: lib/block_scout_web/views/transaction_view.ex:81
#: lib/block_scout_web/views/transaction_view.ex:55
msgid "Success"
msgstr "Success"
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104
#: lib/block_scout_web/templates/address_transaction/index.html.eex:105
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:120
#: lib/block_scout_web/templates/address_transaction/index.html.eex:124
#: lib/block_scout_web/views/address_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To"
@ -209,9 +220,9 @@ msgstr "Showing %{count} Transactions"
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/index.html.eex:16
#: lib/block_scout_web/templates/transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/overview.html.eex:40
#: lib/block_scout_web/views/transaction_view.ex:46
#: lib/block_scout_web/views/transaction_view.ex:80
#: lib/block_scout_web/templates/transaction/overview.html.eex:43
#: lib/block_scout_web/views/transaction_view.ex:53
#: lib/block_scout_web/views/transaction_view.ex:79
msgid "Pending"
msgstr "Pending"
@ -275,15 +286,15 @@ msgstr ""
msgid "TPM"
msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:87
msgid "Next Page"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:78
#: lib/block_scout_web/views/transaction_view.ex:53
msgid "Failed"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:79
#: lib/block_scout_web/views/transaction_view.ex:54
msgid "Out of Gas"
msgstr ""
@ -299,12 +310,10 @@ msgstr ""
msgid "Showing #%{number}"
msgstr ""
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:22
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:15
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:68
#: lib/block_scout_web/templates/transaction/_tile.html.eex:24
#: lib/block_scout_web/templates/transaction/overview.html.eex:84
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:16
#: lib/block_scout_web/templates/transaction/_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/overview.html.eex:87
#: lib/block_scout_web/views/wei_helpers.ex:72
msgid "Ether"
msgstr "POA"
@ -314,13 +323,20 @@ msgstr "POA"
msgid "Gwei"
msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:17
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_contract/index.html.eex:75
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:27
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:127
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:17
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:74
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:143
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:69
#: lib/block_scout_web/templates/address_token/index.html.eex:26
#: lib/block_scout_web/templates/address_token/index.html.eex:83
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:27
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:84
#: lib/block_scout_web/templates/address_transaction/index.html.eex:28
#: lib/block_scout_web/templates/address_transaction/index.html.eex:73
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49
@ -332,7 +348,7 @@ msgstr ""
msgid "Internal Transactions"
msgstr ""
#: lib/block_scout_web/templates/layout/_topnav.html.eex:32
#: lib/block_scout_web/templates/layout/_topnav.html.eex:46
msgid "Search by address, transaction hash, or block number"
msgstr ""
@ -366,8 +382,8 @@ msgstr ""
msgid "Wei"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:98
#: lib/block_scout_web/templates/address_transaction/index.html.eex:99
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:114
#: lib/block_scout_web/templates/address_transaction/index.html.eex:118
#: lib/block_scout_web/views/address_internal_transaction_view.ex:11
#: lib/block_scout_web/views/address_transaction_view.ex:11
msgid "All"
@ -405,6 +421,7 @@ msgstr ""
#: lib/block_scout_web/templates/chain/show.html.eex:17
#: lib/block_scout_web/templates/layout/app.html.eex:24
#: lib/block_scout_web/views/address_view.ex:99
msgid "Market Cap"
msgstr ""
@ -445,7 +462,22 @@ msgstr ""
msgid "TXNs"
msgstr ""
#: lib/block_scout_web/templates/layout/_topnav.html.eex:29
#: lib/block_scout_web/templates/address_contract/index.html.eex:19
#: lib/block_scout_web/templates/address_contract/index.html.eex:70
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:19
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:64
#: lib/block_scout_web/templates/address_token/index.html.eex:19
#: lib/block_scout_web/templates/address_token/index.html.eex:69
#: lib/block_scout_web/templates/address_token/index.html.eex:78
#: lib/block_scout_web/templates/address_token/index.html.eex:109
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:19
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:70
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:79
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:112
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20
#: lib/block_scout_web/templates/address_transaction/index.html.eex:68
msgid "Tokens"
msgstr ""
@ -453,7 +485,7 @@ msgstr ""
msgid "Total Gas Used"
msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:120
#: lib/block_scout_web/views/transaction_view.ex:124
msgid "Transaction"
msgstr ""
@ -467,8 +499,8 @@ msgid "View All"
msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69
#: lib/block_scout_web/templates/transaction/_tile.html.eex:27
#: lib/block_scout_web/templates/transaction/overview.html.eex:57
#: lib/block_scout_web/templates/transaction/_tile.html.eex:23
#: lib/block_scout_web/templates/transaction/overview.html.eex:60
msgid "TX Fee"
msgstr ""
@ -476,7 +508,8 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lib/block_scout_web/views/address_view.ex:10
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:12
#: lib/block_scout_web/views/address_view.ex:77
msgid "Contract Address"
msgstr ""
@ -488,12 +521,12 @@ msgstr ""
msgid "There are no Transactions"
msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:142
#: lib/block_scout_web/templates/address_transaction/index.html.eex:143
#: lib/block_scout_web/templates/block/index.html.eex:15
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:158
#: lib/block_scout_web/templates/address_transaction/index.html.eex:162
#: lib/block_scout_web/templates/block/index.html.eex:20
#: lib/block_scout_web/templates/block_transaction/index.html.eex:50
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:78
#: lib/block_scout_web/templates/tokens/token/show.html.eex:71
#: lib/block_scout_web/templates/tokens/token/show.html.eex:86
#: lib/block_scout_web/templates/transaction/index.html.eex:66
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72
msgid "Older"
@ -503,16 +536,23 @@ msgstr ""
msgid "Contract Source Code"
msgstr "Contract Source Code"
#: lib/block_scout_web/templates/address_contract/index.html.eex:48
#: lib/block_scout_web/templates/address_contract/index.html.eex:55
msgid "Verify and Publish"
msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:27
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:31
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:27
#: lib/block_scout_web/templates/address_transaction/index.html.eex:31
#: lib/block_scout_web/templates/address_transaction/index.html.eex:69
#: lib/block_scout_web/templates/address_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_contract/index.html.eex:57
#: lib/block_scout_web/templates/address_contract/index.html.eex:83
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:82
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:77
#: lib/block_scout_web/templates/address_token/index.html.eex:38
#: lib/block_scout_web/templates/address_token/index.html.eex:91
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:39
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:92
#: lib/block_scout_web/templates/address_transaction/index.html.eex:39
#: lib/block_scout_web/templates/address_transaction/index.html.eex:82
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:122
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141
msgid "Code"
@ -538,22 +578,18 @@ msgid "Newer"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:118
#: lib/block_scout_web/views/transaction_view.ex:122
msgid "Contract Creation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:39
msgid "Mainnet"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:43
#: lib/block_scout_web/templates/layout/_topnav.html.eex:66
#: lib/block_scout_web/templates/layout/_topnav.html.eex:70
msgid "POA Core"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:42
#: lib/block_scout_web/templates/layout/_topnav.html.eex:69
msgid "POA Sokol"
msgstr ""
@ -593,81 +629,82 @@ msgid "Wallet addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:89
#: lib/block_scout_web/templates/address_transaction/index.html.eex:108
#: lib/block_scout_web/templates/transaction/index.html.eex:53
msgid "Connection Lost, click to load newer transactions"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:8
#: lib/block_scout_web/templates/address/overview.html.eex:8
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
msgid "Copy Address"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:4
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:4
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:4
msgid "Internal Transaction"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13
#: lib/block_scout_web/templates/address/overview.html.eex:64
#: lib/block_scout_web/templates/address/overview.html.eex:68
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:13
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:13
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:73
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:81
msgid "QR Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:136
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:152
msgid "There are no internal transactions for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:137
#: lib/block_scout_web/templates/address_transaction/index.html.eex:156
#: lib/block_scout_web/templates/block_transaction/index.html.eex:44
msgid "There are no transactions for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:64
#: lib/block_scout_web/templates/transaction/overview.html.eex:16
#: lib/block_scout_web/views/address_view.ex:21
#: lib/block_scout_web/views/address_view.ex:55
msgid "Contract Address Pending"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:119
#: lib/block_scout_web/views/transaction_view.ex:123
msgid "Contract Call"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:25
#: lib/block_scout_web/templates/address/overview.html.eex:37
msgid "Contract created by"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:35
#: lib/block_scout_web/templates/address/overview.html.eex:43
msgid "at"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:36
#: lib/block_scout_web/templates/transaction/_tile.html.eex:34
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:21
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:44
#: lib/block_scout_web/templates/transaction/_tile.html.eex:30
msgid "Block #%{number}"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:29
#: lib/block_scout_web/templates/transaction/_tile.html.eex:47
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:31
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
msgid "IN"
msgstr ""
#, elixir-format
#:
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:27
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
#: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/_tile.html.eex:39
msgid "OUT"
msgstr ""
@ -677,24 +714,28 @@ msgid "Query"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:51
msgid "WEI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:52
msgid "ETH"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:37
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_transaction/index.html.eex:42
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:25
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:42
#: lib/block_scout_web/templates/tokens/token/show.html.eex:26
#: lib/block_scout_web/templates/tokens/token/show.html.eex:45
#: lib/block_scout_web/templates/address_contract/index.html.eex:46
#: lib/block_scout_web/templates/address_contract/index.html.eex:91
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:49
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:89
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:55
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:84
#: lib/block_scout_web/templates/address_token/index.html.eex:50
#: lib/block_scout_web/templates/address_token/index.html.eex:58
#: lib/block_scout_web/templates/address_token/index.html.eex:99
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:51
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:59
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:100
#: lib/block_scout_web/templates/address_transaction/index.html.eex:50
#: lib/block_scout_web/templates/address_transaction/index.html.eex:91
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:27
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:55
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:26
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:44
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52
#: lib/block_scout_web/templates/tokens/token/show.html.eex:27
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55
msgid "Read Contract"
msgstr ""
@ -709,8 +750,10 @@ msgid "Block Height #%{height}"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:73
#: lib/block_scout_web/templates/address/overview.html.eex:69
#: lib/block_scout_web/templates/address/overview.html.eex:77
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:82
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:90
msgid "Close"
msgstr ""
@ -720,12 +763,12 @@ msgid "Github"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:45
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Block Confirmations"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:107
#: lib/block_scout_web/templates/transaction/overview.html.eex:110
msgid "Limit"
msgstr ""
@ -741,19 +784,19 @@ msgid "There are no logs for this transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:100
#: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Used"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:4
#: lib/block_scout_web/templates/transaction_token_transfer/_token_transfer.html.eex:4
#: lib/block_scout_web/views/transaction_view.ex:117
#: lib/block_scout_web/views/transaction_view.ex:121
msgid "Token Transfer"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:33
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:40
msgid "Transfers"
msgstr ""
@ -765,7 +808,7 @@ msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/block_scout_web/templates/address_transaction/index.html.eex:84
#: lib/block_scout_web/templates/address_transaction/index.html.eex:103
#: lib/block_scout_web/templates/chain/show.html.eex:69
#: lib/block_scout_web/templates/transaction/index.html.eex:48
msgid "More transactions have come in"
@ -781,7 +824,7 @@ msgstr ""
msgid "Validated Transactions"
msgstr ""
#: lib/block_scout_web/templates/tokens/token/show.html.eex:64
#: lib/block_scout_web/templates/tokens/token/show.html.eex:79
msgid "There are no transfers for this Token."
msgstr ""
@ -791,13 +834,14 @@ msgid "Token Details"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:17
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:34
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:37
#: lib/block_scout_web/templates/tokens/token/show.html.eex:17
#: lib/block_scout_web/templates/tokens/token/show.html.eex:36
#: lib/block_scout_web/templates/tokens/token/show.html.eex:39
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:18
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:49
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:18
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:47
#: lib/block_scout_web/templates/tokens/token/show.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:46
#: lib/block_scout_web/templates/tokens/token/show.html.eex:49
#: lib/block_scout_web/templates/tokens/token/show.html.eex:70
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:12
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/transaction_log/index.html.eex:13
@ -810,22 +854,22 @@ msgid "Token Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:32
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:39
msgid "addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:35
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:42
msgid "decimals"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:46
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:54
msgid "Total Supply"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:23
#: lib/block_scout_web/templates/layout/_topnav.html.eex:40
msgid "API"
msgstr ""
@ -835,8 +879,8 @@ msgid "There are no token transfers for this transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:94
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:67
msgid "loading..."
msgstr ""
@ -886,6 +930,7 @@ msgid "Base URL:"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:62
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:22
msgid "Cancel"
msgstr ""
@ -907,6 +952,7 @@ msgid "Description"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:18
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123
msgid "Details"
msgstr ""
@ -1007,12 +1053,12 @@ msgid "loading....."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/_tile.html.eex:67
#: lib/block_scout_web/templates/transaction/_tile.html.eex:63
msgid "View More Transfers"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/_tile.html.eex:68
#: lib/block_scout_web/templates/transaction/_tile.html.eex:64
msgid "View Less Transfers"
msgstr ""
@ -1022,16 +1068,219 @@ msgid "Less than"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:42
#: lib/block_scout_web/views/transaction_view.ex:45
msgid "Max of"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:88
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104
msgid "Connection Lost, click to load newer internal transactions"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:83
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:99
msgid "More internal transactions have come in"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:10
msgid "Copy Transaction Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:10
msgid "Copy Txn Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/address_token_view.ex:7
msgid "%{count} transfer"
msgid_plural "%{count} transfers"
msgstr[0] ""
msgstr[1] ""
#, elixir-format
#: lib/block_scout_web/templates/address_token/index.html.eex:123
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:134
msgid "Next"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_token/index.html.eex:116
msgid "There are no tokens for this address."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:80
msgid "There are no holders for this Token."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:35
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:46
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:60
#: lib/block_scout_web/templates/tokens/holder/index.html.eex:71
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:33
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:56
#: lib/block_scout_web/templates/tokens/token/show.html.eex:35
#: lib/block_scout_web/templates/tokens/token/show.html.eex:60
msgid "Token Holders"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:24
msgid "Compiler"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:121
msgid "Compiler version"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:144
msgid "Contract ABI"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:18
msgid "Contract Name"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:162
msgid "Contract creation code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:113
msgid "Contract name:"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:128
msgid "Contract source code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction_log/index.html.eex:103
msgid "Data"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:46
msgid "Enter the Solidity Contract Code below"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:5
msgid "New Smart Contract"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:34
msgid "No"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:117
msgid "Optimization enabled"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:60
msgid "Reset"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:46
#: lib/block_scout_web/templates/layout/_topnav.html.eex:53
msgid "Search"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13
msgid "Show QR Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:6
msgid "Toggle navigation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction_log/index.html.eex:81
msgid "Topics"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:39
msgid "Yes"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:34
msgid "View Contract"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/block/index.html.eex:6
msgid "Connection Lost, click to load newer blocks"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:54
msgid "(Awaiting internal transactions for status)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:58
msgid "Error: %{reason}"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:56
msgid "Error: (Awaiting internal transactions for reason)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:130
#: lib/block_scout_web/templates/address_contract/index.html.eex:146
#: lib/block_scout_web/templates/address_contract/index.html.eex:164
msgid "Copy Code"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract/index.html.eex:103
msgid "Verify & Publish"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_contract_verification/new.html.eex:59
msgid "Verify & publish"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:32
msgid "Accounts"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:4
msgid "Addresses"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:6
msgid "Showing 250 addresses of"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address/index.html.eex:8
msgid "total addresses with a balance"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/address_token_transfer/index.html.eex:128
msgid "There are no token transfers for this address."
msgstr ""
Loading…
Cancel
Save