Fix dark body background

pull/3352/head
Victor Baranov 4 years ago
parent ce8b444aa4
commit 1d96c37fba
  1. 1
      CHANGELOG.md
  2. 8
      apps/block_scout_web/assets/css/app.scss
  3. 52
      apps/block_scout_web/lib/block_scout_web/templates/layout/app.html.eex
  4. 19
      apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex
  5. 2
      apps/block_scout_web/lib/block_scout_web/views/transaction_view.ex
  6. 54
      apps/block_scout_web/priv/gettext/default.pot
  7. 54
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -6,6 +6,7 @@
### Fixes ### Fixes
- [#3352](https://github.com/poanetwork/blockscout/pull/3352) - Fix dark body background
- [#3350](https://github.com/poanetwork/blockscout/pull/3350) - Fix tokens list pagination - [#3350](https://github.com/poanetwork/blockscout/pull/3350) - Fix tokens list pagination
- [#3347](https://github.com/poanetwork/blockscout/pull/3347) - Contract interaction: fix encoding of bytes output - [#3347](https://github.com/poanetwork/blockscout/pull/3347) - Contract interaction: fix encoding of bytes output
- [#3346](https://github.com/poanetwork/blockscout/pull/3346) - Fix inventory tab pagination - [#3346](https://github.com/poanetwork/blockscout/pull/3346) - Fix inventory tab pagination

@ -1,13 +1,5 @@
@import "./mixins"; @import "./mixins";
html {
background-color: #080808;
}
body {
background-color: #080808;
}
/* Phoenix flash messages */ /* Phoenix flash messages */
.alert:empty { .alert:empty {
display: none; display: none;

@ -37,6 +37,34 @@
<body> <body>
<% raw_dark_forest_addresses = CustomContractsHelpers.get_raw_dark_forest_addresses_list() %> <% raw_dark_forest_addresses = CustomContractsHelpers.get_raw_dark_forest_addresses_list() %>
<%= cond do %>
<% (
@view_module == Elixir.BlockScoutWeb.TransactionInternalTransactionView ||
@view_module == Elixir.BlockScoutWeb.TransactionLogView ||
@view_module == Elixir.BlockScoutWeb.TransactionRawTraceView ||
@view_module == Elixir.BlockScoutWeb.TransactionTokenTransferView
) -> %>
<% to_address = @transaction && @transaction.to_address && "0x" <> Base.encode16(@transaction.to_address.hash.bytes, case: :lower) %>
<script>
function applyCustomMode() {
const darkForestContractAddressHashesRaw = "<%= raw_dark_forest_addresses %>"
if (darkForestContractAddressHashesRaw !== "") {
const darkForestContractAddressHashes = darkForestContractAddressHashesRaw.split(',').map(hash => hash.toLowerCase())
const to_address = "<%= to_address %>"
darkForestContractAddressHashes.forEach(darkForestContractAddressHash => {
if (to_address == darkForestContractAddressHash) {
document.body.className += " " + "dark-forest-theme-applied";
return;
}
})
}
}
window.onload = applyCustomMode()
</script>
<% true -> %>
<script> <script>
function applyCustomMode() { function applyCustomMode() {
const darkForestContractAddressHashesRaw = "<%= raw_dark_forest_addresses %>" const darkForestContractAddressHashesRaw = "<%= raw_dark_forest_addresses %>"
@ -45,37 +73,25 @@
darkForestContractAddressHashes.forEach(darkForestContractAddressHash => { darkForestContractAddressHashes.forEach(darkForestContractAddressHash => {
if (window.location.pathname.toLowerCase().includes(darkForestContractAddressHash)) { if (window.location.pathname.toLowerCase().includes(darkForestContractAddressHash)) {
document.body.className += " " + "dark-forest-theme-applied"; document.body.className += " " + "dark-forest-theme-applied";
document.documentElement.className += " " + "dark-forest-theme-applied";
return; return;
} }
}) })
} }
} }
window.onload = applyCustomMode()
</script>
<% end %>
<script>
function applyDarkMode() { function applyDarkMode() {
if (localStorage.getItem("current-color-mode") === "dark") { if (localStorage.getItem("current-color-mode") === "dark") {
document.body.className += " " + "dark-theme-applied"; document.body.className += " " + "dark-theme-applied";
document.body.style.backgroundColor = "#1c1d31"; document.body.style.backgroundColor = "#1c1d31";
} }
} }
window.onload = applyDarkMode() window.onload = applyDarkMode()
window.onload = applyCustomMode()
</script>
<%= cond do %>
<% (
@view_module == Elixir.BlockScoutWeb.TransactionView ||
@view_module == Elixir.BlockScoutWeb.TransactionInternalTransactionView ||
@view_module == Elixir.BlockScoutWeb.TransactionLogView ||
@view_module == Elixir.BlockScoutWeb.TransactionRawTraceView ||
@view_module == Elixir.BlockScoutWeb.TransactionTokenTransferView
) -> %>
<script>
if (document.getElementsByClassName("layout-container")[0]) {
document.getElementsByClassName("layout-container")[0].style.visibility = "hidden";
}
</script> </script>
<% true -> %>
<%= nil %>
<% end %>
<div class="layout-container"> <div class="layout-container">
<%= if not Explorer.Chain.finished_indexing?() do %> <%= if not Explorer.Chain.finished_indexing?() do %>
<div class="alert alert-warning text-center mb-0 p-3" data-selector="indexed-status"> <div class="alert alert-warning text-center mb-0 p-3" data-selector="indexed-status">

@ -1,25 +1,6 @@
<% block = @transaction.block %> <% block = @transaction.block %>
<% decoded_input_data = decoded_input_data(@transaction) %> <% decoded_input_data = decoded_input_data(@transaction) %>
<% status = transaction_status(@transaction) %> <% status = transaction_status(@transaction) %>
<% raw_dark_forest_addresses = CustomContractsHelpers.get_raw_dark_forest_addresses_list() %>
<% to_address = @transaction.to_address && "0x" <> Base.encode16(@transaction.to_address.hash.bytes, case: :lower) %>
<script>
function applyCustomMode() {
const darkForestContractAddressHashes = "<%= raw_dark_forest_addresses %>".split(',').map(hash => hash.toLowerCase())
const to_address = "<%= to_address %>"
darkForestContractAddressHashes.forEach(darkForestContractAddressHash => {
if (to_address == darkForestContractAddressHash) {
document.body.className += " " + "dark-forest-theme-applied";
document.documentElement.className += " " + "dark-forest-theme-applied";
return;
}
})
document.getElementsByClassName("layout-container")[0].style.visibility = "visible";
}
window.onload = applyCustomMode()
</script>
<section data-page="transaction-details" data-page-transaction-hash="<%= @transaction %>"> <section data-page="transaction-details" data-page-transaction-hash="<%= @transaction %>">
<div class="row"> <div class="row">
<div class="col-md-12 col-lg-8 pr-0-md"> <div class="col-md-12 col-lg-8 pr-0-md">

@ -1,7 +1,7 @@
defmodule BlockScoutWeb.TransactionView do defmodule BlockScoutWeb.TransactionView do
use BlockScoutWeb, :view use BlockScoutWeb, :view
alias BlockScoutWeb.{AccessHelpers, AddressView, BlockView, CustomContractsHelpers, TabHelpers} alias BlockScoutWeb.{AccessHelpers, AddressView, BlockView, TabHelpers}
alias BlockScoutWeb.Cldr.Number alias BlockScoutWeb.Cldr.Number
alias Explorer.{Chain, Repo} alias Explorer.{Chain, Repo}
alias Explorer.Chain.Block.Reward alias Explorer.Chain.Block.Reward

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:223 #: lib/block_scout_web/templates/transaction/overview.html.eex:204
msgid " Token Transfer" msgid " Token Transfer"
msgstr "" msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/app.html.eex:87 #: lib/block_scout_web/templates/layout/app.html.eex:103
msgid "- We're indexing this chain right now. Some of the counts may be inaccurate." msgid "- We're indexing this chain right now. Some of the counts may be inaccurate."
msgstr "" msgstr ""
@ -194,7 +194,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:99 #: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Block Confirmations" msgid "Block Confirmations"
msgstr "" msgstr ""
@ -214,7 +214,7 @@ msgid "Block Mined, awaiting import..."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:85 #: lib/block_scout_web/templates/transaction/overview.html.eex:66
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
@ -430,12 +430,12 @@ msgid "Copy Source Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:35 #: lib/block_scout_web/templates/transaction/overview.html.eex:16
msgid "Copy Transaction Hash" msgid "Copy Transaction Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:39 #: lib/block_scout_web/templates/transaction/overview.html.eex:20
msgid "Copy Txn Hash" msgid "Copy Txn Hash"
msgstr "" msgstr ""
@ -638,8 +638,8 @@ msgstr ""
#: lib/block_scout_web/templates/layout/app.html.eex:32 #: lib/block_scout_web/templates/layout/app.html.eex:32
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:208 #: lib/block_scout_web/templates/transaction/overview.html.eex:189
#: lib/block_scout_web/templates/transaction/overview.html.eex:282 #: lib/block_scout_web/templates/transaction/overview.html.eex:263
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -658,7 +658,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:73 #: lib/block_scout_web/templates/block/overview.html.eex:73
#: lib/block_scout_web/templates/transaction/overview.html.eex:106 #: lib/block_scout_web/templates/transaction/overview.html.eex:87
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -746,8 +746,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:142 #: lib/block_scout_web/templates/transaction/overview.html.eex:123
#: lib/block_scout_web/templates/transaction/overview.html.eex:146 #: lib/block_scout_web/templates/transaction/overview.html.eex:127
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -782,7 +782,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:32 #: lib/block_scout_web/templates/transaction/_tile.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:111 #: lib/block_scout_web/templates/transaction/overview.html.eex:92
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -844,7 +844,7 @@ msgid "There are no transfers for this Token."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:54 #: lib/block_scout_web/templates/transaction/overview.html.eex:35
msgid "This transaction is pending confirmation." msgid "This transaction is pending confirmation."
msgstr "" msgstr ""
@ -995,7 +995,7 @@ msgid "License ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:310 #: lib/block_scout_web/templates/transaction/overview.html.eex:291
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -1188,7 +1188,7 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:136 #: lib/block_scout_web/templates/transaction/overview.html.eex:117
msgid "Raw Input" msgid "Raw Input"
msgstr "" msgstr ""
@ -1463,7 +1463,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:30 #: lib/block_scout_web/templates/transaction/overview.html.eex:11
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -1474,7 +1474,7 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:128 #: lib/block_scout_web/templates/transaction/overview.html.eex:109
msgid "Transaction Speed" msgid "Transaction Speed"
msgstr "" msgstr ""
@ -1501,7 +1501,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:149 #: lib/block_scout_web/templates/transaction/overview.html.eex:130
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -1527,7 +1527,7 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:304 #: lib/block_scout_web/templates/transaction/overview.html.eex:285
msgid "Used" msgid "Used"
msgstr "" msgstr ""
@ -1557,8 +1557,8 @@ msgid "Validator Info"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:208 #: lib/block_scout_web/templates/transaction/overview.html.eex:189
#: lib/block_scout_web/templates/transaction/overview.html.eex:282 #: lib/block_scout_web/templates/transaction/overview.html.eex:263
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -1737,7 +1737,7 @@ msgid "Decimals"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:300 #: lib/block_scout_web/templates/transaction/overview.html.eex:281
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
@ -1784,8 +1784,8 @@ msgid "Transfers"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:161 #: lib/block_scout_web/templates/transaction/overview.html.eex:142
#: lib/block_scout_web/templates/transaction/overview.html.eex:174 #: lib/block_scout_web/templates/transaction/overview.html.eex:155
msgid "Copy Txn Input" msgid "Copy Txn Input"
msgstr "" msgstr ""
@ -1869,7 +1869,7 @@ msgid "Transactions"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:259 #: lib/block_scout_web/templates/transaction/overview.html.eex:240
msgid " Token Burning" msgid " Token Burning"
msgstr "" msgstr ""
@ -1881,7 +1881,7 @@ msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:241 #: lib/block_scout_web/templates/transaction/overview.html.eex:222
msgid " Token Minting" msgid " Token Minting"
msgstr "" msgstr ""
@ -1898,7 +1898,7 @@ msgid "Chore Reward"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:77 #: lib/block_scout_web/templates/transaction/overview.html.eex:58
msgid "Revert reason" msgid "Revert reason"
msgstr "" msgstr ""

@ -13,7 +13,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:223 #: lib/block_scout_web/templates/transaction/overview.html.eex:204
msgid " Token Transfer" msgid " Token Transfer"
msgstr "" msgstr ""
@ -72,7 +72,7 @@ msgid "(query)"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/layout/app.html.eex:87 #: lib/block_scout_web/templates/layout/app.html.eex:103
msgid "- We're indexing this chain right now. Some of the counts may be inaccurate." msgid "- We're indexing this chain right now. Some of the counts may be inaccurate."
msgstr "" msgstr ""
@ -194,7 +194,7 @@ msgid "Block %{block_number} - %{subnetwork} Explorer"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:99 #: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Block Confirmations" msgid "Block Confirmations"
msgstr "" msgstr ""
@ -214,7 +214,7 @@ msgid "Block Mined, awaiting import..."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:85 #: lib/block_scout_web/templates/transaction/overview.html.eex:66
msgid "Block Number" msgid "Block Number"
msgstr "" msgstr ""
@ -430,12 +430,12 @@ msgid "Copy Source Code"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:35 #: lib/block_scout_web/templates/transaction/overview.html.eex:16
msgid "Copy Transaction Hash" msgid "Copy Transaction Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:39 #: lib/block_scout_web/templates/transaction/overview.html.eex:20
msgid "Copy Txn Hash" msgid "Copy Txn Hash"
msgstr "" msgstr ""
@ -638,8 +638,8 @@ msgstr ""
#: lib/block_scout_web/templates/layout/app.html.eex:32 #: lib/block_scout_web/templates/layout/app.html.eex:32
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:20
#: lib/block_scout_web/templates/transaction/_tile.html.eex:29 #: lib/block_scout_web/templates/transaction/_tile.html.eex:29
#: lib/block_scout_web/templates/transaction/overview.html.eex:208 #: lib/block_scout_web/templates/transaction/overview.html.eex:189
#: lib/block_scout_web/templates/transaction/overview.html.eex:282 #: lib/block_scout_web/templates/transaction/overview.html.eex:263
#: lib/block_scout_web/views/wei_helpers.ex:78 #: lib/block_scout_web/views/wei_helpers.ex:78
msgid "Ether" msgid "Ether"
msgstr "" msgstr ""
@ -658,7 +658,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/block/overview.html.eex:73 #: lib/block_scout_web/templates/block/overview.html.eex:73
#: lib/block_scout_web/templates/transaction/overview.html.eex:106 #: lib/block_scout_web/templates/transaction/overview.html.eex:87
msgid "Nonce" msgid "Nonce"
msgstr "" msgstr ""
@ -746,8 +746,8 @@ msgid "Hash"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:142 #: lib/block_scout_web/templates/transaction/overview.html.eex:123
#: lib/block_scout_web/templates/transaction/overview.html.eex:146 #: lib/block_scout_web/templates/transaction/overview.html.eex:127
msgid "Hex (Default)" msgid "Hex (Default)"
msgstr "" msgstr ""
@ -782,7 +782,7 @@ msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21 #: lib/block_scout_web/templates/transaction/_pending_tile.html.eex:21
#: lib/block_scout_web/templates/transaction/_tile.html.eex:32 #: lib/block_scout_web/templates/transaction/_tile.html.eex:32
#: lib/block_scout_web/templates/transaction/overview.html.eex:111 #: lib/block_scout_web/templates/transaction/overview.html.eex:92
msgid "TX Fee" msgid "TX Fee"
msgstr "" msgstr ""
@ -844,7 +844,7 @@ msgid "There are no transfers for this Token."
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:54 #: lib/block_scout_web/templates/transaction/overview.html.eex:35
msgid "This transaction is pending confirmation." msgid "This transaction is pending confirmation."
msgstr "" msgstr ""
@ -995,7 +995,7 @@ msgid "License ID"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:310 #: lib/block_scout_web/templates/transaction/overview.html.eex:291
msgid "Limit" msgid "Limit"
msgstr "" msgstr ""
@ -1188,7 +1188,7 @@ msgid "RPC"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:136 #: lib/block_scout_web/templates/transaction/overview.html.eex:117
msgid "Raw Input" msgid "Raw Input"
msgstr "" msgstr ""
@ -1463,7 +1463,7 @@ msgid "Transaction %{transaction}, %{subnetwork} %{transaction}"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:30 #: lib/block_scout_web/templates/transaction/overview.html.eex:11
msgid "Transaction Details" msgid "Transaction Details"
msgstr "" msgstr ""
@ -1474,7 +1474,7 @@ msgid "Transaction Inputs"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:128 #: lib/block_scout_web/templates/transaction/overview.html.eex:109
msgid "Transaction Speed" msgid "Transaction Speed"
msgstr "" msgstr ""
@ -1501,7 +1501,7 @@ msgid "Type"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:149 #: lib/block_scout_web/templates/transaction/overview.html.eex:130
msgid "UTF-8" msgid "UTF-8"
msgstr "" msgstr ""
@ -1527,7 +1527,7 @@ msgid "Use the search box to find a hosted network, or select from the list of a
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:304 #: lib/block_scout_web/templates/transaction/overview.html.eex:285
msgid "Used" msgid "Used"
msgstr "" msgstr ""
@ -1557,8 +1557,8 @@ msgid "Validator Info"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:208 #: lib/block_scout_web/templates/transaction/overview.html.eex:189
#: lib/block_scout_web/templates/transaction/overview.html.eex:282 #: lib/block_scout_web/templates/transaction/overview.html.eex:263
msgid "Value" msgid "Value"
msgstr "" msgstr ""
@ -1737,7 +1737,7 @@ msgid "Decimals"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:300 #: lib/block_scout_web/templates/transaction/overview.html.eex:281
msgid "Gas" msgid "Gas"
msgstr "" msgstr ""
@ -1784,8 +1784,8 @@ msgid "Transfers"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:161 #: lib/block_scout_web/templates/transaction/overview.html.eex:142
#: lib/block_scout_web/templates/transaction/overview.html.eex:174 #: lib/block_scout_web/templates/transaction/overview.html.eex:155
msgid "Copy Txn Input" msgid "Copy Txn Input"
msgstr "" msgstr ""
@ -1869,7 +1869,7 @@ msgid "Transactions"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:259 #: lib/block_scout_web/templates/transaction/overview.html.eex:240
msgid " Token Burning" msgid " Token Burning"
msgstr "" msgstr ""
@ -1881,7 +1881,7 @@ msgid "Token Burning"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:241 #: lib/block_scout_web/templates/transaction/overview.html.eex:222
msgid " Token Minting" msgid " Token Minting"
msgstr "" msgstr ""
@ -1898,7 +1898,7 @@ msgid "Chore Reward"
msgstr "" msgstr ""
#, elixir-format #, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:77 #: lib/block_scout_web/templates/transaction/overview.html.eex:58
msgid "Revert reason" msgid "Revert reason"
msgstr "" msgstr ""

Loading…
Cancel
Save