Skip to content

Commit

Permalink
updating yoken symbol from zTLOS to tTLOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed Dec 17, 2024
1 parent adc9378 commit 2f2ccdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/i18n/en-us/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ export default {
send_tlos_telos_subtitle: 'Use this tab to send TLOS tokens to a Telos native account.',
send_tlos_evm_title: 'Send TLOS to EVM Address',
send_tlos_evm_subtitle: 'Send TLOS tokens to an EVM compatible address with this option.',
send_tlos_zkevm_title: 'Send zTLOS to zkEVM Address',
send_tlos_zkevm_subtitle: 'Send zTLOS tokens to a zkEVM compatible address with this option.',
send_tlos_zkevm_title: 'Send tTLOS to zkEVM Address',
send_tlos_zkevm_subtitle: 'Send tTLOS tokens to a zkEVM compatible address with this option.',
},
testnetEvmFaucet: {
title: 'Get testnet EVM TLOS',
Expand Down
8 changes: 4 additions & 4 deletions src/pages/testnet/DevelopersPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const tlosEvmLabel = computed(() => {
});
const tlosZkEvmLabel = computed(() => {
return $q.screen.gt.sm ? 'Send zTLOS (ZK-EVM)' : 'ZK-EVM zTLOS';
return $q.screen.gt.sm ? 'Send tTLOS (ZK-EVM)' : 'ZK-EVM tTLOS';
});
// Result Notifications
Expand Down Expand Up @@ -220,7 +220,7 @@ async function onZkEvmFaucet() {
if (isValidEvmAddress()) {
submitting.value = true;
const result = await zkEvmFaucet(sendTlosForm.value.send_to_evm);
handleAnswer(result, '50.0 zTLOS were sent successfully');
handleAnswer(result, '50.0 tTLOS were sent successfully');
submitting.value = false;
} else {
Notify.create({
Expand Down Expand Up @@ -496,7 +496,7 @@ checkTabFromUrl();
{{ $t("pages.testnet_developers.send_tlos_zkevm_subtitle") }}
</div>
</q-card-section>
<!-- Inputs and button for sending zTLOS to zkEVM address -->
<!-- Inputs and button for sending tTLOS to zkEVM address -->
<q-input
class="q-mb-lg"
ref="send_to_evm"
Expand All @@ -515,7 +515,7 @@ checkTabFromUrl();
v-if="!transactionId"
class="p-dev-page__panel-btn"
color="primary"
label="Send testnet zkEVM zTLOS"
label="Send testnet zkEVM tTLOS"
size="lg"
unelevated="unelevated"
:loading="submitting"
Expand Down

0 comments on commit 2f2ccdc

Please sign in to comment.