Merge pull request #4521 from blockscout/np-update-tooltip

Update txn page tooltips
pull/4531/head
Victor Baranov 3 years ago committed by GitHub
commit da4fd89f61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 28
      apps/block_scout_web/lib/block_scout_web/templates/transaction/overview.html.eex
  3. 144
      apps/block_scout_web/priv/gettext/default.pot
  4. 148
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -22,6 +22,7 @@
### Chore
- [#4523](https://github.com/blockscout/blockscout/pull/4523) - Change order of transations in block's view
- [#4521](https://github.com/blockscout/blockscout/pull/4521) - Rewrite transaction page tooltips
- [#4516](https://github.com/blockscout/blockscout/pull/4516) - Add DB migrations step into Docker start script
- [#4497](https://github.com/blockscout/blockscout/pull/4497) - Handle error in fetch_validators_list method
- [#4444](https://github.com/blockscout/blockscout/pull/4444) - Main page performance cumulative update

@ -44,7 +44,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("A TxHash or transaction hash is a unique 66 characters identifier that is generated whenever a transaction is executed.") %>
text: gettext("Unique character string (TxID) assigned to every verified transaction.") %>
<%= gettext "Transaction Hash" %>
</dt>
<dd class="col-sm-9 col-lg-10 d-flex" style="word-break: break-all;">
@ -64,7 +64,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The result of the transaction: success, error, pending, awaiting internal transactions.") %>
text: gettext("Current transaction state: Success, Failed (Error), or Pending (In Process)") %>
<%= gettext "Result" %>
</dt>
<dd class="col-sm-9 col-lg-10">
@ -76,7 +76,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The status of the transaction: confirmed, unconfirmed.") %>
text: gettext("The status of the transaction: Confirmed or Unconfirmed.") %>
<%= gettext "Status" %>
</dt>
<dd class="col-sm-9 col-lg-10">
@ -112,7 +112,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The number of the block in which the transaction was recorded. Block confirmation indicate how many blocks since the transaction is mined.") %>
text: gettext("Block number containing the transaction.") %>
<%= gettext "Block" %></dt>
<dd class="col-sm-9 col-lg-10" data-selector="block-number">
<%= if block do %>
@ -131,7 +131,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The date and time at which a transaction is mined.") %>
text: gettext("Date & time of transaction inclusion, including length of time for confirmation.") %>
<%= gettext "Timestamp" %>
</dt>
<dd class="col-sm-9 col-lg-10" data-selector="block-timestamp">
@ -154,7 +154,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The sending party of the transaction (could be from a contract address).") %>
text: gettext("Address (external or contract) sending the transaction.") %>
<%= gettext "From" %></dt>
<dd class="col-sm-9 col-lg-10 btn-copy-mobile-container">
<%= link(
@ -176,7 +176,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The receiving party of the transaction (could be a contract address).") %>
text: gettext("Address (external or contract) receiving the transaction.") %>
<%= if BlockScoutWeb.AddressView.contract?(to_address) && !created_address_hash do %>
<%= gettext "Interacted With (To)" %>
<% else %>
@ -283,7 +283,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The value being transacted in Ether and fiat value. Note: You can click the fiat value (if available) to see historical value at the time of transaction.") %>
text: gettext("Value sent in the native token (and USD) if applicable.") %>
<%= gettext "Value" %>
</dt>
<dd class="col-sm-9 col-lg-10"> <%= value(@transaction) %>
@ -299,7 +299,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("Amount paid to the miner for processing the transaction.") %>
text: gettext("Total transaction fee.") %>
<%= gettext "Transaction Fee" %>
</dt>
<dd class="col-sm-9 col-lg-10">
@ -314,7 +314,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("Cost per unit of gas specified for the transaction, in Ether and Gwei. The higher the gas price the higher chance of getting included in a block.") %>
text: gettext("Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage.") %>
<%= gettext "Gas Price" %>
</dt>
<dd class="col-sm-9 col-lg-10"> <%= gas_price(@transaction, :gwei) %> </dd>
@ -324,7 +324,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("Maximum amount of gas provided for the transaction. For normal Eth transfers, the value is 21,000. For contract this value is higher and bound by block gas limit.") %>
text: gettext("Maximum gas amount approved for the transaction.") %>
<%= gettext "Gas Limit" %>
</dt>
<dd class="col-sm-9 col-lg-10"> <%= format_gas_limit(@transaction.gas) %> </dd>
@ -333,7 +333,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted transaction-gas-used">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("The exact units of gas that was used for the transaction.") %>
text: gettext("Actual gas amount used by the transaction.") %>
<%= gettext "Gas Used by Transaction" %>
</dt>
<% gas_used_perc = gas_used_perc(@transaction) %>
@ -343,7 +343,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("Sequential running number for an address, beginning with 0 for the first transaction. For example, if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address.") %>
text: gettext("Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1.") %>
<%= gettext "Nonce" %><span class="index-label ml-2"
data-toggle="tooltip"
title="<%= gettext("Index position of Transaction in the block.") %>"><%= gettext "Position" %></span>
@ -354,7 +354,7 @@
<dl class="row">
<dt class="col-sm-3 col-lg-2 text-muted">
<%= render BlockScoutWeb.CommonComponentsView, "_i_tooltip_2.html",
text: gettext("Additional information that is required for the transaction.") %>
text: gettext("Binary data included with the transaction. See input / logs below for additional info.") %>
<%= gettext "Raw Input" %>
</dt>
<dd class="col-sm-9 col-lg-10">

@ -2749,21 +2749,6 @@ msgstr ""
msgid "validator"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:47
msgid "A TxHash or transaction hash is a unique 66 characters identifier that is generated whenever a transaction is executed."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:357
msgid "Additional information that is required for the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:302
msgid "Amount paid to the miner for processing the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:349
msgid "Confirmed"
@ -2808,11 +2793,6 @@ msgstr ""
msgid "Copy Txn UTF-8 Input"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:317
msgid "Cost per unit of gas specified for the transaction, in Ether and Gwei. The higher the gas price the higher chance of getting included in a block."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:318
msgid "Gas Price"
@ -2849,133 +2829,143 @@ msgid "List of token transferred in the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:327
msgid "Maximum amount of gas provided for the transaction. For normal Eth transfers, the value is 21,000. For contract this value is higher and bound by block gas limit."
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Result"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Result"
#: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Status"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:346
msgid "Sequential running number for an address, beginning with 0 for the first transaction. For example, if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address."
#: lib/block_scout_web/templates/transaction/overview.html.eex:104
msgid "The revert reason of the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Status"
#: lib/block_scout_web/templates/transaction/overview.html.eex:135
msgid "Timestamp"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:134
msgid "The date and time at which a transaction is mined."
#: lib/block_scout_web/views/transaction_view.ex:452
msgid "Token Creation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:336
msgid "The exact units of gas that was used for the transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:258
msgid "Tokens Burnt"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:115
msgid "The number of the block in which the transaction was recorded. Block confirmation indicate how many blocks since the transaction is mined."
#: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "Tokens Created"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:179
msgid "The receiving party of the transaction (could be a contract address)."
#: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Tokens Minted"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:67
msgid "The result of the transaction: success, error, pending, awaiting internal transactions."
#: lib/block_scout_web/templates/transaction/overview.html.eex:229
msgid "Tokens Transferred"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:104
msgid "The revert reason of the transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:303
msgid "Transaction Fee"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:157
msgid "The sending party of the transaction (could be from a contract address)."
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Transaction Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:79
msgid "The status of the transaction: confirmed, unconfirmed."
#: lib/block_scout_web/views/transaction_view.ex:348
msgid "Unconfirmed"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:286
msgid "The value being transacted in Ether and fiat value. Note: You can click the fiat value (if available) to see historical value at the time of transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:194
msgid "created"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:135
msgid "Timestamp"
#: lib/block_scout_web/templates/search/results.html.eex:12
msgid "Search Results"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:452
msgid "Token Creation"
#: lib/block_scout_web/templates/transaction/overview.html.eex:336
msgid "Actual gas amount used by the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:258
msgid "Tokens Burnt"
#: lib/block_scout_web/templates/transaction/overview.html.eex:179
msgid "Address (external or contract) receiving the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "Tokens Created"
#: lib/block_scout_web/templates/transaction/overview.html.eex:157
msgid "Address (external or contract) sending the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Tokens Minted"
#: lib/block_scout_web/templates/transaction/overview.html.eex:357
msgid "Binary data included with the transaction. See input / logs below for additional info."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:229
msgid "Tokens Transferred"
#: lib/block_scout_web/templates/transaction/overview.html.eex:115
msgid "Block number containing the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:303
msgid "Transaction Fee"
#: lib/block_scout_web/templates/transaction/overview.html.eex:67
msgid "Current transaction state: Success, Failed (Error), or Pending (In Process)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Transaction Hash"
#: lib/block_scout_web/templates/transaction/overview.html.eex:134
msgid "Date & time of transaction inclusion, including length of time for confirmation."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:348
msgid "Unconfirmed"
#: lib/block_scout_web/templates/transaction/overview.html.eex:327
msgid "Maximum gas amount approved for the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:194
msgid "created"
#: lib/block_scout_web/templates/transaction/overview.html.eex:317
msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/search/results.html.eex:12
msgid "Search Results"
#: lib/block_scout_web/templates/transaction/overview.html.eex:79
msgid "The status of the transaction: Confirmed or Unconfirmed."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Position"
#: lib/block_scout_web/templates/transaction/overview.html.eex:302
msgid "Total transaction fee."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Index position of Transaction in the block."
#: lib/block_scout_web/templates/transaction/overview.html.eex:346
msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:47
msgid "Unique character string (TxID) assigned to every verified transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:286
msgid "Value sent in the native token (and USD) if applicable."
msgstr ""
#, elixir-format
@ -2988,3 +2978,13 @@ msgstr ""
#: lib/block_scout_web/templates/stakes/_stakes_modal_become_candidate.html.eex:36
msgid "<p>To become a candidate, your staking address must be funded with %{tokenSymbol} tokens <strong>and</strong> %{coinSymbol} coins, and your OpenEthereum node must be active and configured with the mining address you specify here.</p>\n <p>To become a delegator, close this window and select an address from the list of pools you would like to place stake on. Click the <strong>Stake</strong> button next to the address to begin the process.</p>"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Position"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Index position of Transaction in the block."
msgstr ""

@ -2749,21 +2749,6 @@ msgstr ""
msgid "validator"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:47
msgid "A TxHash or transaction hash is a unique 66 characters identifier that is generated whenever a transaction is executed."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:357
msgid "Additional information that is required for the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:302
msgid "Amount paid to the miner for processing the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:349
msgid "Confirmed"
@ -2808,11 +2793,6 @@ msgstr ""
msgid "Copy Txn UTF-8 Input"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:317
msgid "Cost per unit of gas specified for the transaction, in Ether and Gwei. The higher the gas price the higher chance of getting included in a block."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:318
msgid "Gas Price"
@ -2849,142 +2829,162 @@ msgid "List of token transferred in the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:327
msgid "Maximum amount of gas provided for the transaction. For normal Eth transfers, the value is 21,000. For contract this value is higher and bound by block gas limit."
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Result"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:68
msgid "Result"
#: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Status"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:346
msgid "Sequential running number for an address, beginning with 0 for the first transaction. For example, if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address."
#: lib/block_scout_web/templates/transaction/overview.html.eex:104
msgid "The revert reason of the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:80
msgid "Status"
#: lib/block_scout_web/templates/transaction/overview.html.eex:135
msgid "Timestamp"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:134
msgid "The date and time at which a transaction is mined."
#: lib/block_scout_web/views/transaction_view.ex:452
msgid "Token Creation"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:336
msgid "The exact units of gas that was used for the transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:258
msgid "Tokens Burnt"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:115
msgid "The number of the block in which the transaction was recorded. Block confirmation indicate how many blocks since the transaction is mined."
#: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "Tokens Created"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:179
msgid "The receiving party of the transaction (could be a contract address)."
#: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Tokens Minted"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:67
msgid "The result of the transaction: success, error, pending, awaiting internal transactions."
#: lib/block_scout_web/templates/transaction/overview.html.eex:229
msgid "Tokens Transferred"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:104
msgid "The revert reason of the transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:303
msgid "Transaction Fee"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:157
msgid "The sending party of the transaction (could be from a contract address)."
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Transaction Hash"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:79
msgid "The status of the transaction: confirmed, unconfirmed."
#: lib/block_scout_web/views/transaction_view.ex:348
msgid "Unconfirmed"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:286
msgid "The value being transacted in Ether and fiat value. Note: You can click the fiat value (if available) to see historical value at the time of transaction."
#: lib/block_scout_web/templates/transaction/overview.html.eex:194
msgid "created"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:135
msgid "Timestamp"
#: lib/block_scout_web/templates/search/results.html.eex:12
msgid "Search Results"
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:452
msgid "Token Creation"
#: lib/block_scout_web/templates/transaction/overview.html.eex:336
msgid "Actual gas amount used by the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:258
msgid "Tokens Burnt"
#: lib/block_scout_web/templates/transaction/overview.html.eex:179
msgid "Address (external or contract) receiving the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:272
msgid "Tokens Created"
#: lib/block_scout_web/templates/transaction/overview.html.eex:157
msgid "Address (external or contract) sending the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:243
msgid "Tokens Minted"
#: lib/block_scout_web/templates/transaction/overview.html.eex:357
msgid "Binary data included with the transaction. See input / logs below for additional info."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:229
msgid "Tokens Transferred"
#: lib/block_scout_web/templates/transaction/overview.html.eex:115
msgid "Block number containing the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:303
msgid "Transaction Fee"
#: lib/block_scout_web/templates/transaction/overview.html.eex:67
msgid "Current transaction state: Success, Failed (Error), or Pending (In Process)"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:48
msgid "Transaction Hash"
#: lib/block_scout_web/templates/transaction/overview.html.eex:134
msgid "Date & time of transaction inclusion, including length of time for confirmation."
msgstr ""
#, elixir-format
#: lib/block_scout_web/views/transaction_view.ex:348
msgid "Unconfirmed"
#: lib/block_scout_web/templates/transaction/overview.html.eex:327
msgid "Maximum gas amount approved for the transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:194
msgid "created"
#: lib/block_scout_web/templates/transaction/overview.html.eex:317
msgid "Price per unit of gas specified by the sender. Higher gas prices can prioritize transaction inclusion during times of high usage."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/search/results.html.eex:12
msgid "Search Results"
#: lib/block_scout_web/templates/transaction/overview.html.eex:79
msgid "The status of the transaction: Confirmed or Unconfirmed."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Position"
#: lib/block_scout_web/templates/transaction/overview.html.eex:302
msgid "Total transaction fee."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Index position of Transaction in the block."
#: lib/block_scout_web/templates/transaction/overview.html.eex:346
msgid "Transaction number from the sending address. Each transaction sent from an address increments the nonce by 1."
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:47
msgid "Unique character string (TxID) assigned to every verified transaction."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:286
msgid "Value sent in the native token (and USD) if applicable."
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/stakes/_stakes_modal_withdraw.html.eex:76
msgid "<p>Pending stake (stake placed on a candidate pool or placed during the current staking epoch) may be withdrawn now.</p>\n <p>Active stake (stake available after the current epoch) can be ordered for withdrawal from the pool, and will be available to claim after the current staking epoch is complete.</p>\n <p>If you have already ordered (and the staking window is still open), you may increase your current order by entering a positive value, or decrease your current order by entering a negative value in the box and clicking 'Order Withdrawal'. You must either keep the minimum stake amount in the pool, or order your entire stake for withdrawal.</p>\n"
msgstr ""
#, elixir-format, fuzzy
#, elixir-format
#:
#: lib/block_scout_web/templates/stakes/_stakes_modal_become_candidate.html.eex:36
msgid "<p>To become a candidate, your staking address must be funded with %{tokenSymbol} tokens <strong>and</strong> %{coinSymbol} coins, and your OpenEthereum node must be active and configured with the mining address you specify here.</p>\n <p>To become a delegator, close this window and select an address from the list of pools you would like to place stake on. Click the <strong>Stake</strong> button next to the address to begin the process.</p>"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Position"
msgstr ""
#, elixir-format
#: lib/block_scout_web/templates/transaction/overview.html.eex:349
msgid "Index position of Transaction in the block."
msgstr ""

Loading…
Cancel
Save