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 $conversionTextWei = $element.find('[data-conversion-text-wei]')
const $conversionTextEth = $element.find('[data-conversion-text-eth]') const $conversionTextEth = $element.find('[data-conversion-text-eth]')
const $conversionUnit = $element.find('[data-conversion-unit]') 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) { if (event.target.checked) {
$conversionTextWei.hide() $conversionTextWei.removeClass('d-inline-block').hide()
$conversionTextEth.show() $conversionTextEth.removeClass('d-none').show()
unitVal = unitVal.dividedBy(weiUnit).toNumber() unitVal = unitVal.dividedBy(weiUnit)
$conversionUnit.html(String(unitVal > 0 ? numeral(unitVal).format('0,0') : numeral(unitVal).format('0.0[00000]'))) $conversionUnit.html(unitVal.toFixed() > 0 ? unitVal.toFixed() : numeral(unitVal).format('0[.000000000000000000]'))
} else { } else {
$conversionTextWei.show() $conversionTextWei.addClass('d-inline-block')
$conversionTextEth.hide() $conversionTextEth.addClass('d-none')
unitVal = unitVal.multipliedBy(weiUnit).toNumber() unitVal = unitVal.multipliedBy(weiUnit)
$conversionUnit.html(String(numeral(unitVal).format('0,0'))) $conversionUnit.html(unitVal.toFixed())
}
} }
} }

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

@ -6,8 +6,9 @@ msgstr ""
msgid "Block" msgid "Block"
msgstr "" 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/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" msgid "Blocks"
msgstr "" msgstr ""
@ -32,25 +33,34 @@ msgstr ""
msgid "BlockScout" msgid "BlockScout"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address/overview.html.eex:21 #: lib/block_scout_web/templates/address/index.html.eex:28
#: lib/block_scout_web/templates/address_contract/index.html.eex:10 #: 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:13
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:55 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:64
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:10 #: 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:13
#: lib/block_scout_web/templates/address_transaction/index.html.eex:55 #: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_transaction/index.html.eex:129 #: 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: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:26
#: lib/block_scout_web/templates/block_transaction/index.html.eex:36 #: 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/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/pending_transaction/index.html.eex:46
#: lib/block_scout_web/templates/transaction/index.html.eex:56 #: lib/block_scout_web/templates/transaction/index.html.eex:56
msgid "Transactions" msgid "Transactions"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:84 #: lib/block_scout_web/templates/transaction/overview.html.eex:87
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -74,7 +84,7 @@ msgid "Miner"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/block/overview.html.eex:59 #: 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" msgid "Nonce"
msgstr "" msgstr ""
@ -98,11 +108,11 @@ msgstr ""
msgid "Total Difficulty" msgid "Total Difficulty"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:31 #: lib/block_scout_web/templates/transaction/overview.html.eex:34
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:8 #: lib/block_scout_web/templates/transaction/overview.html.eex:15
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -110,7 +120,7 @@ msgstr ""
msgid "Cumulative Gas Used" msgid "Cumulative Gas Used"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:95 #: lib/block_scout_web/templates/transaction/overview.html.eex:98
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
@ -118,7 +128,7 @@ msgstr ""
msgid "Gas Price" msgid "Gas Price"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/transaction/overview.html.eex:65 #: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Input" msgid "Input"
msgstr "" msgstr ""
@ -130,12 +140,13 @@ msgstr ""
msgid "%{count} transactions in this block" msgid "%{count} transactions in this block"
msgstr "" 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" msgid "Address"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:115 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:131
#: lib/block_scout_web/templates/address_transaction/index.html.eex:116 #: 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_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_transaction_view.ex:10 #: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From" msgid "From"
@ -146,12 +157,12 @@ msgstr ""
msgid "Overview" msgid "Overview"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:81 #: lib/block_scout_web/views/transaction_view.ex:55
msgid "Success" msgid "Success"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:120
#: lib/block_scout_web/templates/address_transaction/index.html.eex:105 #: 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_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_transaction_view.ex:9 #: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To" msgid "To"
@ -197,9 +208,9 @@ msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:35 #: 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:16
#: lib/block_scout_web/templates/transaction/index.html.eex:35 #: lib/block_scout_web/templates/transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/overview.html.eex:40 #: lib/block_scout_web/templates/transaction/overview.html.eex:43
#: lib/block_scout_web/views/transaction_view.ex:46 #: lib/block_scout_web/views/transaction_view.ex:53
#: lib/block_scout_web/views/transaction_view.ex:80 #: lib/block_scout_web/views/transaction_view.ex:79
msgid "Pending" msgid "Pending"
msgstr "" msgstr ""
@ -263,15 +274,15 @@ msgstr ""
msgid "TPM" msgid "TPM"
msgstr "" 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" msgid "Next Page"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:78 #: lib/block_scout_web/views/transaction_view.ex:53
msgid "Failed" msgid "Failed"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:79 #: lib/block_scout_web/views/transaction_view.ex:54
msgid "Out of Gas" msgid "Out of Gas"
msgstr "" msgstr ""
@ -287,12 +298,10 @@ msgstr ""
msgid "Showing #%{number}" msgid "Showing #%{number}"
msgstr "" msgstr ""
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:15
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:22
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:68 #: 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/_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/overview.html.eex:84 #: lib/block_scout_web/templates/transaction/overview.html.eex:87
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:16
#: lib/block_scout_web/views/wei_helpers.ex:72 #: lib/block_scout_web/views/wei_helpers.ex:72
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -302,13 +311,20 @@ msgstr ""
msgid "Gwei" msgid "Gwei"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:17 #: lib/block_scout_web/templates/address_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20 #: 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:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:127 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:74
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:17 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:143
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60 #: 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:20
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49
@ -320,7 +336,7 @@ msgstr ""
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" 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" msgid "Search by address, transaction hash, or block number"
msgstr "" msgstr ""
@ -354,8 +370,8 @@ msgstr ""
msgid "Wei" msgid "Wei"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:98 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:114
#: lib/block_scout_web/templates/address_transaction/index.html.eex:99 #: 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_internal_transaction_view.ex:11
#: lib/block_scout_web/views/address_transaction_view.ex:11 #: lib/block_scout_web/views/address_transaction_view.ex:11
msgid "All" msgid "All"
@ -393,6 +409,7 @@ msgstr ""
#: lib/block_scout_web/templates/chain/show.html.eex:17 #: lib/block_scout_web/templates/chain/show.html.eex:17
#: lib/block_scout_web/templates/layout/app.html.eex:24 #: lib/block_scout_web/templates/layout/app.html.eex:24
#: lib/block_scout_web/views/address_view.ex:99
msgid "Market Cap" msgid "Market Cap"
msgstr "" msgstr ""
@ -433,7 +450,22 @@ msgstr ""
msgid "TXNs" msgid "TXNs"
msgstr "" 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" msgid "Tokens"
msgstr "" msgstr ""
@ -441,7 +473,7 @@ msgstr ""
msgid "Total Gas Used" msgid "Total Gas Used"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:120 #: lib/block_scout_web/views/transaction_view.ex:124
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -455,8 +487,8 @@ msgid "View All"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69 #: 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/_tile.html.eex:23
#: lib/block_scout_web/templates/transaction/overview.html.eex:57 #: lib/block_scout_web/templates/transaction/overview.html.eex:60
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -464,7 +496,8 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" 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" msgid "Contract Address"
msgstr "" msgstr ""
@ -476,12 +509,12 @@ msgstr ""
msgid "There are no Transactions" msgid "There are no Transactions"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:142 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:158
#: lib/block_scout_web/templates/address_transaction/index.html.eex:143 #: lib/block_scout_web/templates/address_transaction/index.html.eex:162
#: lib/block_scout_web/templates/block/index.html.eex:15 #: 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/block_transaction/index.html.eex:50
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:78 #: 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/index.html.eex:66
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72
msgid "Older" msgid "Older"
@ -491,16 +524,23 @@ msgstr ""
msgid "Contract Source Code" msgid "Contract Source Code"
msgstr "" 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" msgid "Verify and Publish"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:27 #: lib/block_scout_web/templates/address_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:31 #: lib/block_scout_web/templates/address_contract/index.html.eex:57
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69 #: lib/block_scout_web/templates/address_contract/index.html.eex:83
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:27 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/address_transaction/index.html.eex:31 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:82
#: lib/block_scout_web/templates/address_transaction/index.html.eex:69 #: 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:122
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141
msgid "Code" msgid "Code"
@ -526,22 +566,18 @@ msgid "Newer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:118 #: lib/block_scout_web/views/transaction_view.ex:122
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:39 #: lib/block_scout_web/templates/layout/_topnav.html.eex:66
msgid "Mainnet" #: lib/block_scout_web/templates/layout/_topnav.html.eex:70
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:43
msgid "POA Core" msgid "POA Core"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "POA Sokol"
msgstr "" msgstr ""
@ -581,81 +617,82 @@ msgid "Wallet addresses"
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/transaction/index.html.eex:53
msgid "Connection Lost, click to load newer transactions" msgid "Connection Lost, click to load newer transactions"
msgstr "" msgstr ""
#, elixir-format #, 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/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 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
msgid "Copy Address" msgid "Copy Address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:4
#: 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
msgid "Internal Transaction" msgid "Internal Transaction"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13 #: 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: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" msgid "QR Code"
msgstr "" msgstr ""
#, elixir-format #, 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." msgid "There are no internal transactions for this address."
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/block_transaction/index.html.eex:44
msgid "There are no transactions for this address." msgid "There are no transactions for this address."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:64 #: 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" msgid "Contract Address Pending"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:119 #: lib/block_scout_web/views/transaction_view.ex:123
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Contract created by"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:35 #: lib/block_scout_web/templates/address/overview.html.eex:43
msgid "at" msgid "at"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:36 #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:34 #: 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}" msgid "Block #%{number}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:31
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:43
#: lib/block_scout_web/templates/transaction/_tile.html.eex:47
msgid "IN" msgid "IN"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:27 #: lib/block_scout_web/templates/transaction/_tile.html.eex:39
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
msgid "OUT" msgid "OUT"
msgstr "" msgstr ""
@ -665,24 +702,28 @@ msgid "Query"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:51 #: lib/block_scout_web/templates/address_contract/index.html.eex:46
msgid "WEI" #: lib/block_scout_web/templates/address_contract/index.html.eex:91
msgstr "" #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:49
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:89
#, elixir-format #: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:52 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:55
msgid "ETH" #: lib/block_scout_web/templates/address_read_contract/index.html.eex:84
msgstr "" #: lib/block_scout_web/templates/address_token/index.html.eex:50
#: lib/block_scout_web/templates/address_token/index.html.eex:58
#, elixir-format #: lib/block_scout_web/templates/address_token/index.html.eex:99
#: lib/block_scout_web/templates/address_contract/index.html.eex:37 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:51
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:59
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:100
#: lib/block_scout_web/templates/address_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_transaction/index.html.eex:50
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:25 #: lib/block_scout_web/templates/address_transaction/index.html.eex:91
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:42 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:27
#: lib/block_scout_web/templates/tokens/token/show.html.eex:26 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:55
#: lib/block_scout_web/templates/tokens/token/show.html.eex:45 #: 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" msgid "Read Contract"
msgstr "" msgstr ""
@ -697,8 +738,10 @@ msgid "Block Height #%{height}"
msgstr "" msgstr ""
#, elixir-format #, 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:82
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:90
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -708,12 +751,12 @@ msgid "Github"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Block Confirmations"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:107 #: lib/block_scout_web/templates/transaction/overview.html.eex:110
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -729,19 +772,19 @@ msgid "There are no logs for this transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:100 #: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Used" msgid "Used"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:4 #: 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/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" msgid "Token Transfer"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Transfers"
msgstr "" msgstr ""
@ -753,7 +796,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, 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/chain/show.html.eex:69
#: lib/block_scout_web/templates/transaction/index.html.eex:48 #: lib/block_scout_web/templates/transaction/index.html.eex:48
msgid "More transactions have come in" msgid "More transactions have come in"
@ -769,7 +812,7 @@ msgstr ""
msgid "Validated Transactions" msgid "Validated Transactions"
msgstr "" 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." msgid "There are no transfers for this Token."
msgstr "" msgstr ""
@ -779,13 +822,14 @@ msgid "Token Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:17 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:18
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:34 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:49
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:37 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:17 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:47
#: lib/block_scout_web/templates/tokens/token/show.html.eex:36 #: lib/block_scout_web/templates/tokens/token/show.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:39 #: lib/block_scout_web/templates/tokens/token/show.html.eex:46
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55 #: 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:12
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/transaction_log/index.html.eex:13 #: lib/block_scout_web/templates/transaction_log/index.html.eex:13
@ -798,22 +842,22 @@ msgid "Token Transfers"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "addresses"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "decimals"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Total Supply"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:23 #: lib/block_scout_web/templates/layout/_topnav.html.eex:40
msgid "API" msgid "API"
msgstr "" msgstr ""
@ -823,8 +867,8 @@ msgid "There are no token transfers for this transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:94
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:67
msgid "loading..." msgid "loading..."
msgstr "" msgstr ""
@ -874,6 +918,7 @@ msgid "Base URL:"
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:22
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -895,6 +940,7 @@ msgid "Description"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:18
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@ -995,12 +1041,12 @@ msgid "loading....."
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "View More Transfers"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "View Less Transfers"
msgstr "" msgstr ""
@ -1010,16 +1056,219 @@ msgid "Less than"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:42 #: lib/block_scout_web/views/transaction_view.ex:45
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Connection Lost, click to load newer internal transactions"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "More internal transactions have come in"
msgstr "" 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" msgid "Block"
msgstr "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/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" msgid "Blocks"
msgstr "Blocks" msgstr "Blocks"
@ -44,25 +45,34 @@ msgstr "Height"
msgid "BlockScout" msgid "BlockScout"
msgstr "BlockScout" msgstr "BlockScout"
#: lib/block_scout_web/templates/address/overview.html.eex:21 #: lib/block_scout_web/templates/address/index.html.eex:28
#: lib/block_scout_web/templates/address_contract/index.html.eex:10 #: 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:13
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:55 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:64
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:10 #: 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:13
#: lib/block_scout_web/templates/address_transaction/index.html.eex:55 #: lib/block_scout_web/templates/address_transaction/index.html.eex:60
#: lib/block_scout_web/templates/address_transaction/index.html.eex:129 #: 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: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:26
#: lib/block_scout_web/templates/block_transaction/index.html.eex:36 #: 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/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/pending_transaction/index.html.eex:46
#: lib/block_scout_web/templates/transaction/index.html.eex:56 #: lib/block_scout_web/templates/transaction/index.html.eex:56
msgid "Transactions" msgid "Transactions"
msgstr "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" msgid "Value"
msgstr "Value" msgstr "Value"
@ -86,7 +96,7 @@ msgid "Miner"
msgstr "Validator" msgstr "Validator"
#: lib/block_scout_web/templates/block/overview.html.eex:59 #: 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" msgid "Nonce"
msgstr "Nonce" msgstr "Nonce"
@ -110,11 +120,11 @@ msgstr "Timestamp"
msgid "Total Difficulty" msgid "Total Difficulty"
msgstr "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" msgid "Block Number"
msgstr "Block Height" 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" msgid "Transaction Details"
msgstr "Transaction Details" msgstr "Transaction Details"
@ -122,7 +132,7 @@ msgstr "Transaction Details"
msgid "Cumulative Gas Used" msgid "Cumulative Gas Used"
msgstr "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" msgid "Gas"
msgstr "Gas" msgstr "Gas"
@ -130,7 +140,7 @@ msgstr "Gas"
msgid "Gas Price" msgid "Gas Price"
msgstr "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" msgid "Input"
msgstr "Input" msgstr "Input"
@ -142,12 +152,13 @@ msgstr "%{confirmations} block confirmations"
msgid "%{count} transactions in this block" msgid "%{count} transactions in this block"
msgstr "%{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" msgid "Address"
msgstr "Address" msgstr "Address"
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:115 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:131
#: lib/block_scout_web/templates/address_transaction/index.html.eex:116 #: 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_internal_transaction_view.ex:10
#: lib/block_scout_web/views/address_transaction_view.ex:10 #: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "From" msgid "From"
@ -158,12 +169,12 @@ msgstr "From"
msgid "Overview" msgid "Overview"
msgstr "Overview" msgstr "Overview"
#: lib/block_scout_web/views/transaction_view.ex:81 #: lib/block_scout_web/views/transaction_view.ex:55
msgid "Success" msgid "Success"
msgstr "Success" msgstr "Success"
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:104 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:120
#: lib/block_scout_web/templates/address_transaction/index.html.eex:105 #: 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_internal_transaction_view.ex:9
#: lib/block_scout_web/views/address_transaction_view.ex:9 #: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "To" 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/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:16
#: lib/block_scout_web/templates/transaction/index.html.eex:35 #: lib/block_scout_web/templates/transaction/index.html.eex:35
#: lib/block_scout_web/templates/transaction/overview.html.eex:40 #: lib/block_scout_web/templates/transaction/overview.html.eex:43
#: lib/block_scout_web/views/transaction_view.ex:46 #: lib/block_scout_web/views/transaction_view.ex:53
#: lib/block_scout_web/views/transaction_view.ex:80 #: lib/block_scout_web/views/transaction_view.ex:79
msgid "Pending" msgid "Pending"
msgstr "Pending" msgstr "Pending"
@ -275,15 +286,15 @@ msgstr ""
msgid "TPM" msgid "TPM"
msgstr "" 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" msgid "Next Page"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:78 #: lib/block_scout_web/views/transaction_view.ex:53
msgid "Failed" msgid "Failed"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:79 #: lib/block_scout_web/views/transaction_view.ex:54
msgid "Out of Gas" msgid "Out of Gas"
msgstr "" msgstr ""
@ -299,12 +310,10 @@ msgstr ""
msgid "Showing #%{number}" msgid "Showing #%{number}"
msgstr "" msgstr ""
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:15
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:22
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:68 #: 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/_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/overview.html.eex:84 #: lib/block_scout_web/templates/transaction/overview.html.eex:87
#: lib/block_scout_web/templates/transaction_internal_transaction/_internal_transaction.html.eex:16
#: lib/block_scout_web/views/wei_helpers.ex:72 #: lib/block_scout_web/views/wei_helpers.ex:72
msgid "Ether" msgid "Ether"
msgstr "POA" msgstr "POA"
@ -314,13 +323,20 @@ msgstr "POA"
msgid "Gwei" msgid "Gwei"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:17 #: lib/block_scout_web/templates/address_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:20 #: 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:60
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:127 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:74
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:17 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:143
#: lib/block_scout_web/templates/address_transaction/index.html.eex:20 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:26
#: lib/block_scout_web/templates/address_transaction/index.html.eex:60 #: 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:20
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:49
@ -332,7 +348,7 @@ msgstr ""
msgid "Internal Transactions" msgid "Internal Transactions"
msgstr "" 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" msgid "Search by address, transaction hash, or block number"
msgstr "" msgstr ""
@ -366,8 +382,8 @@ msgstr ""
msgid "Wei" msgid "Wei"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:98 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:114
#: lib/block_scout_web/templates/address_transaction/index.html.eex:99 #: 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_internal_transaction_view.ex:11
#: lib/block_scout_web/views/address_transaction_view.ex:11 #: lib/block_scout_web/views/address_transaction_view.ex:11
msgid "All" msgid "All"
@ -405,6 +421,7 @@ msgstr ""
#: lib/block_scout_web/templates/chain/show.html.eex:17 #: lib/block_scout_web/templates/chain/show.html.eex:17
#: lib/block_scout_web/templates/layout/app.html.eex:24 #: lib/block_scout_web/templates/layout/app.html.eex:24
#: lib/block_scout_web/views/address_view.ex:99
msgid "Market Cap" msgid "Market Cap"
msgstr "" msgstr ""
@ -445,7 +462,22 @@ msgstr ""
msgid "TXNs" msgid "TXNs"
msgstr "" 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" msgid "Tokens"
msgstr "" msgstr ""
@ -453,7 +485,7 @@ msgstr ""
msgid "Total Gas Used" msgid "Total Gas Used"
msgstr "" msgstr ""
#: lib/block_scout_web/views/transaction_view.ex:120 #: lib/block_scout_web/views/transaction_view.ex:124
msgid "Transaction" msgid "Transaction"
msgstr "" msgstr ""
@ -467,8 +499,8 @@ msgid "View All"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:69 #: 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/_tile.html.eex:23
#: lib/block_scout_web/templates/transaction/overview.html.eex:57 #: lib/block_scout_web/templates/transaction/overview.html.eex:60
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -476,7 +508,8 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" 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" msgid "Contract Address"
msgstr "" msgstr ""
@ -488,12 +521,12 @@ msgstr ""
msgid "There are no Transactions" msgid "There are no Transactions"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:142 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:158
#: lib/block_scout_web/templates/address_transaction/index.html.eex:143 #: lib/block_scout_web/templates/address_transaction/index.html.eex:162
#: lib/block_scout_web/templates/block/index.html.eex:15 #: 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/block_transaction/index.html.eex:50
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:78 #: 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/index.html.eex:66
#: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72 #: lib/block_scout_web/templates/transaction_token_transfer/index.html.eex:72
msgid "Older" msgid "Older"
@ -503,16 +536,23 @@ msgstr ""
msgid "Contract Source Code" msgid "Contract Source Code"
msgstr "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" msgid "Verify and Publish"
msgstr "" msgstr ""
#: lib/block_scout_web/templates/address_contract/index.html.eex:27 #: lib/block_scout_web/templates/address_contract/index.html.eex:36
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:31 #: lib/block_scout_web/templates/address_contract/index.html.eex:57
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:69 #: lib/block_scout_web/templates/address_contract/index.html.eex:83
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:27 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:38
#: lib/block_scout_web/templates/address_transaction/index.html.eex:31 #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:82
#: lib/block_scout_web/templates/address_transaction/index.html.eex:69 #: 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:122
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:141
msgid "Code" msgid "Code"
@ -538,22 +578,18 @@ msgid "Newer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:118 #: lib/block_scout_web/views/transaction_view.ex:122
msgid "Contract Creation" msgid "Contract Creation"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:39 #: lib/block_scout_web/templates/layout/_topnav.html.eex:66
msgid "Mainnet" #: lib/block_scout_web/templates/layout/_topnav.html.eex:70
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:43
msgid "POA Core" msgid "POA Core"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "POA Sokol"
msgstr "" msgstr ""
@ -593,81 +629,82 @@ msgid "Wallet addresses"
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/transaction/index.html.eex:53
msgid "Connection Lost, click to load newer transactions" msgid "Connection Lost, click to load newer transactions"
msgstr "" msgstr ""
#, elixir-format #, 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/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 #: lib/block_scout_web/templates/tokens/overview/_details.html.eex:8
msgid "Copy Address" msgid "Copy Address"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:4
#: 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
msgid "Internal Transaction" msgid "Internal Transaction"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:13 #: 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: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" msgid "QR Code"
msgstr "" msgstr ""
#, elixir-format #, 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." msgid "There are no internal transactions for this address."
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/block_transaction/index.html.eex:44
msgid "There are no transactions for this address." msgid "There are no transactions for this address."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/pending_transaction/index.html.eex:64 #: 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" msgid "Contract Address Pending"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:119 #: lib/block_scout_web/views/transaction_view.ex:123
msgid "Contract Call" msgid "Contract Call"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Contract created by"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:35 #: lib/block_scout_web/templates/address/overview.html.eex:43
msgid "at" msgid "at"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:36 #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:34 #: 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}" msgid "Block #%{number}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:31
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:43
#: lib/block_scout_web/templates/transaction/_tile.html.eex:47
msgid "IN" msgid "IN"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/address_internal_transaction/_internal_transaction.html.eex:27 #: lib/block_scout_web/templates/transaction/_tile.html.eex:39
#: lib/block_scout_web/templates/transaction/_tile.html.eex:43
msgid "OUT" msgid "OUT"
msgstr "" msgstr ""
@ -677,24 +714,28 @@ msgid "Query"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:51 #: lib/block_scout_web/templates/address_contract/index.html.eex:46
msgid "WEI" #: lib/block_scout_web/templates/address_contract/index.html.eex:91
msgstr "" #: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:49
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:89
#, elixir-format #: lib/block_scout_web/templates/address_read_contract/index.html.eex:45
#: lib/block_scout_web/templates/smart_contract/_functions.html.eex:52 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:55
msgid "ETH" #: lib/block_scout_web/templates/address_read_contract/index.html.eex:84
msgstr "" #: lib/block_scout_web/templates/address_token/index.html.eex:50
#: lib/block_scout_web/templates/address_token/index.html.eex:58
#, elixir-format #: lib/block_scout_web/templates/address_token/index.html.eex:99
#: lib/block_scout_web/templates/address_contract/index.html.eex:37 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:51
#: lib/block_scout_web/templates/address_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:59
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:36 #: lib/block_scout_web/templates/address_token_transfer/index.html.eex:100
#: lib/block_scout_web/templates/address_transaction/index.html.eex:42 #: lib/block_scout_web/templates/address_transaction/index.html.eex:50
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:25 #: lib/block_scout_web/templates/address_transaction/index.html.eex:91
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:42 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:27
#: lib/block_scout_web/templates/tokens/token/show.html.eex:26 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:55
#: lib/block_scout_web/templates/tokens/token/show.html.eex:45 #: 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" msgid "Read Contract"
msgstr "" msgstr ""
@ -709,8 +750,10 @@ msgid "Block Height #%{height}"
msgstr "" msgstr ""
#, elixir-format #, 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:82
#: lib/block_scout_web/templates/tokens/overview/_details.html.eex:90
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -720,12 +763,12 @@ msgid "Github"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Block Confirmations"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:107 #: lib/block_scout_web/templates/transaction/overview.html.eex:110
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -741,19 +784,19 @@ msgid "There are no logs for this transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:100 #: lib/block_scout_web/templates/transaction/overview.html.eex:103
msgid "Used" msgid "Used"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/token/_token_transfer.html.eex:4 #: 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/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" msgid "Token Transfer"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Transfers"
msgstr "" msgstr ""
@ -765,7 +808,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, 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/chain/show.html.eex:69
#: lib/block_scout_web/templates/transaction/index.html.eex:48 #: lib/block_scout_web/templates/transaction/index.html.eex:48
msgid "More transactions have come in" msgid "More transactions have come in"
@ -781,7 +824,7 @@ msgstr ""
msgid "Validated Transactions" msgid "Validated Transactions"
msgstr "" 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." msgid "There are no transfers for this Token."
msgstr "" msgstr ""
@ -791,13 +834,14 @@ msgid "Token Details"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:17 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:18
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:34 #: lib/block_scout_web/templates/tokens/holder/index.html.eex:49
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:37 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:17 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:47
#: lib/block_scout_web/templates/tokens/token/show.html.eex:36 #: lib/block_scout_web/templates/tokens/token/show.html.eex:18
#: lib/block_scout_web/templates/tokens/token/show.html.eex:39 #: lib/block_scout_web/templates/tokens/token/show.html.eex:46
#: lib/block_scout_web/templates/tokens/token/show.html.eex:55 #: 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:12
#: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42 #: lib/block_scout_web/templates/transaction_internal_transaction/index.html.eex:42
#: lib/block_scout_web/templates/transaction_log/index.html.eex:13 #: lib/block_scout_web/templates/transaction_log/index.html.eex:13
@ -810,22 +854,22 @@ msgid "Token Transfers"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "addresses"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "decimals"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Total Supply"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/_topnav.html.eex:23 #: lib/block_scout_web/templates/layout/_topnav.html.eex:40
msgid "API" msgid "API"
msgstr "" msgstr ""
@ -835,8 +879,8 @@ msgid "There are no token transfers for this transaction."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address_read_contract/index.html.eex:45 #: lib/block_scout_web/templates/address_read_contract/index.html.eex:94
#: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:52 #: lib/block_scout_web/templates/tokens/read_contract/index.html.eex:67
msgid "loading..." msgid "loading..."
msgstr "" msgstr ""
@ -886,6 +930,7 @@ msgid "Base URL:"
msgstr "" msgstr ""
#, elixir-format #, 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 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:22
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -907,6 +952,7 @@ msgid "Description"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/address/overview.html.eex:18
#: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123 #: lib/block_scout_web/templates/api_docs/_action_tile.html.eex:123
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@ -1007,12 +1053,12 @@ msgid "loading....."
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "View More Transfers"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "View Less Transfers"
msgstr "" msgstr ""
@ -1022,16 +1068,219 @@ msgid "Less than"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:42 #: lib/block_scout_web/views/transaction_view.ex:45
msgid "Max of" msgid "Max of"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "Connection Lost, click to load newer internal transactions"
msgstr "" msgstr ""
#, elixir-format #, 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" msgid "More internal transactions have come in"
msgstr "" 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