Skip to content

Commit

Permalink
Merge pull request #96 from NazarUsov/testnet/issues
Browse files Browse the repository at this point in the history
Add validators for mixin and Fix tooltip | Testnet
  • Loading branch information
cryptozoidberg authored Dec 12, 2023
2 parents c5687a8 + 06d6088 commit 9745bcb
Show file tree
Hide file tree
Showing 61 changed files with 24,007 additions and 23,999 deletions.
1,650 changes: 825 additions & 825 deletions html/assets/i18n/af.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ar.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ca.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/cs.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/da.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/de.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/el.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/en.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/es.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/fi.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/fr.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/he.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/hu.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/id.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/it.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ja.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ko.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/nl.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/no.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/pl.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/pt.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ro.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/ru.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/sr.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/sv.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/tr.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/uk.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/vi.json

Large diffs are not rendered by default.

1,650 changes: 825 additions & 825 deletions html/assets/i18n/zh.json

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions html_source/src/app/pages/wallet/tabs/assets/assets.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,17 +334,18 @@ export class AssetsComponent implements OnInit, OnDestroy {
[balance].forEach(({ unlocked, total, asset_info: { ticker } }: Asset) => {
const available = document.createElement('span');
available.setAttribute('class', 'available');
available.innerHTML = this.translate.instant('WALLET.AVAILABLE_BALANCE', {
available: this.intToMoneyPipe.transform(unlocked),
currency: ticker || '---',
});
available.innerText = `${this.translate.instant('WALLET.AVAILABLE_BALANCE')} `;
const availableB = document.createElement('b');
availableB.innerText = `${ this.intToMoneyPipe.transform(unlocked) } ${ ticker || '---' }`;
available.appendChild(availableB);
scrollWrapper.appendChild(available);

const locked = document.createElement('span');
locked.setAttribute('class', 'locked');
locked.innerHTML = this.translate.instant('WALLET.LOCKED_BALANCE', {
locked: this.intToMoneyPipe.transform(new BigNumber(total).minus(unlocked)),
currency: ticker || '---',
});
locked.innerText = `${this.translate.instant('WALLET.LOCKED_BALANCE')} `;
const lockedB = document.createElement('b');
lockedB.innerText = `${ this.intToMoneyPipe.transform(new BigNumber(total).minus(unlocked)) } ${ ticker || '---' }`;
locked.appendChild(lockedB);
scrollWrapper.appendChild(locked);
});
tooltip.appendChild(scrollWrapper);
Expand Down
8 changes: 7 additions & 1 deletion html_source/src/app/pages/wallet/tabs/send/send.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,12 @@ import { defaultImgSrc, zanoAssetInfo } from '@parts/data/assets';
<div *ngIf="sendMoneyParamsForm.controls.mixin.hasError('required')">
{{ 'SEND.FORM_ERRORS.AMOUNT_REQUIRED' | translate }}
</div>
<div *ngIf="sendMoneyParamsForm.controls.mixin.hasError('min')">
{{ 'Min' }} {{ sendMoneyParamsForm.controls.mixin.getError('min')['min'] }}
</div>
<div *ngIf="sendMoneyParamsForm.controls.mixin.hasError('max')">
{{ 'Max' }} {{ sendMoneyParamsForm.controls.mixin.getError('max')['max'] }}
</div>
</div>
</div>
Expand Down Expand Up @@ -500,7 +506,7 @@ export class SendComponent implements OnInit, OnDestroy {
validators: [Validators.required],
}),
mixin: this.fb.control(MIXIN, {
validators: [Validators.required],
validators: [Validators.required, Validators.min(0), Validators.max(1000)],
}),
fee: this.fb.control(this.variablesService.default_fee, {
validators: [
Expand Down
17 changes: 9 additions & 8 deletions html_source/src/app/parts/components/wallet-card.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,18 @@ export class WalletCardComponent {
balances.forEach(({ unlocked, total, asset_info: { ticker } }: Asset) => {
const available = document.createElement('span');
available.setAttribute('class', 'available');
available.innerHTML = this.translate.instant('WALLET.AVAILABLE_BALANCE', {
available: this.intToMoneyPipe.transform(unlocked),
currency: ticker || '---',
});
available.innerText = `${this.translate.instant('WALLET.AVAILABLE_BALANCE')} `;
const availableB = document.createElement('b');
availableB.innerText = `${ this.intToMoneyPipe.transform(unlocked) } ${ ticker || '---' }`;
available.appendChild(availableB);
scrollWrapper.appendChild(available);

const locked = document.createElement('span');
locked.setAttribute('class', 'locked');
locked.innerHTML = this.translate.instant('WALLET.LOCKED_BALANCE', {
locked: this.intToMoneyPipe.transform(new BigNumber(total).minus(unlocked)),
currency: ticker || '---',
});
locked.innerText = `${this.translate.instant('WALLET.LOCKED_BALANCE')} `;
const lockedB = document.createElement('b');
lockedB.innerText = `${ this.intToMoneyPipe.transform(new BigNumber(total).minus(unlocked)) } ${ ticker || '---' }`;
locked.appendChild(lockedB);
scrollWrapper.appendChild(locked);
});
tooltip.appendChild(scrollWrapper);
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/af.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Alias registrieren",
"DETAILS": "Details",
"LOCK": "Verschlüsseln",
"AVAILABLE_BALANCE": "Verfügbar <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Gesperrt <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Verfügbar",
"LOCKED_BALANCE": "Gesperrt",
"LOCKED_BALANCE_LINK": "Was bedeutet das?",
"TABS": {
"ASSETS": "Vermögenswerte",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
2 changes: 1 addition & 1 deletion html_source/src/assets/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
"REGISTER_ALIAS": "Enregistrer un alias",
"DETAILS": "Détails",
"LOCK": "Verrouillage",
"AVAILABLE_BALANCE": "Disponible <b>{{available}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Disponible",
"LOCKED_BALANCE": "Vérouillé<b>{{locked}}{{currency}}<b/>",
"LOCKED_BALANCE_LINK": "Que signifie cela?",
"TABS": {
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/he.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Daftarkan alias",
"DETAILS": "Detail",
"LOCK": "Kunci",
"AVAILABLE_BALANCE": "Tersedia <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Terkunci <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Tersedia",
"LOCKED_BALANCE": "Terkunci",
"LOCKED_BALANCE_LINK": "Apa yang dimaksudkan?\n",
"TABS": {
"ASSETS": "Aktiva",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Registra un alias",
"DETAILS": "Dettagli",
"LOCK": "Blocca",
"AVAILABLE_BALANCE": "Disponibile <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Bloccato <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Disponibile",
"LOCKED_BALANCE": "Bloccato",
"LOCKED_BALANCE_LINK": "Che cosa significa?",
"TABS": {
"ASSETS": "Risorse",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/no.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Registar um alias",
"DETAILS": "Detalhes",
"LOCK": "Bloquear",
"AVAILABLE_BALANCE": "Disponível <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Bloqueado <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Disponível",
"LOCKED_BALANCE": "Bloqueado",
"LOCKED_BALANCE_LINK": "O que isso quer dizer?",
"TABS": {
"ASSETS": "Bens",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ro.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/sr.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/sv.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/vi.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down
4 changes: 2 additions & 2 deletions html_source/src/assets/i18n/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@
"REGISTER_ALIAS": "Register an alias",
"DETAILS": "Details",
"LOCK": "Lock",
"AVAILABLE_BALANCE": "Available <b>{{available}} {{currency}}<b/>",
"LOCKED_BALANCE": "Locked <b>{{locked}} {{currency}}<b/>",
"AVAILABLE_BALANCE": "Available",
"LOCKED_BALANCE": "Locked",
"LOCKED_BALANCE_LINK": "What does that mean?",
"TABS": {
"ASSETS": "Assets",
Expand Down

0 comments on commit 9745bcb

Please sign in to comment.