Clarity fix

This commit is contained in:
Tornado Contrib 2024-10-08 01:00:30 +00:00
parent 993b9148e2
commit a329f71450
Signed by: tornadocontrib
GPG Key ID: 60B4DF1A076C64B1

@ -282,7 +282,7 @@
<h2 class="mb-5-super">Withdraw Notes</h2>
<p>
This UI allows you to use the new <a href="https://git.tornado.ws/tornadocontrib/tovarish-relayer" target="_blank" rel="noreferrer nofollow">Tovarish Relayer</a>
which provides historic Deposit Events at the faster speed than fetching it from normal nodes.
which provides historic Deposit Events at a faster speed than fetching it from normal nodes.
</p>
<div class="card card-body">
<form action="javascript:void(0);">
@ -324,7 +324,7 @@
</div>
</div>
<div class="mb-3">
<div class="form-text">Information of notes, deposits, withdrawals, or private key are never shared among any of other third parties including us, relayers and RPC providers. You can download and audit the source code of this website by simply saving to index.html</div>
<div class="form-text">Information of notes, deposits, withdrawals, or private keys is never shared among any other third parties including us, relayers, and RPC providers. You can download and audit the source code of this website by simply saving it to index.html</div>
</div>
<button type="button" class="btn btn-primary w-100" onclick="withdraw()">Withdraw / Compliance</button>
</form>
@ -711,7 +711,7 @@
const isWallet = $('#note-relayer').find(':selected').val() === 'wallet';
if (!relayer && !isWallet) {
throw new Error('Please select valid withdraw method, if you have refreshed the page just input the note again');
throw new Error('Please select the valid withdraw method, if you have refreshed the page just input the note agai');
}
const config = Tornado.getConfig(netId);
@ -1584,7 +1584,7 @@
const withdrawalEvent = withdrawalEvents.find(({ nullifierHash }) => nullifierHash === nullifierHex);
if (!depositEvent) {
showStatus('Deposit not found', 'Can not find deposit for your note, try again in few minutes if you have recently made the deposit', 'error');
showStatus('Deposit not found', 'Can not find a deposit for your note, try again in a few minutes if you have recently made the deposi', 'error');
return;
}
@ -1618,7 +1618,7 @@
if (new URL(window.location.href).protocol === 'https:') {
alertMsg(
'You are accessing the UI from remote environment which gives us to barely audit or secure the environment. Consider using the UI from local environment cloned from git',
'You are accessing the UI from the remote environment which allows us to barely audit or secure the environment. Consider using the UI from the local environment cloned from git',
true,
);
}