diff --git a/core/language/us.json b/core/language/us.json index ebb10505..1cee1066 100644 --- a/core/language/us.json +++ b/core/language/us.json @@ -459,7 +459,7 @@ "rewardsharepage": { "rchange1": "Rewardshares", "rchange2": "Create reward share", - "rchange3": "Rewardshares Involving In This Account", + "rchange3": "Rewardshares Involving This Account", "rchange4": "Minting Account", "rchange5": "Share Percent", "rchange6": "Recipient", diff --git a/plugins/plugins/core/name-registration/name-registration.src.js b/plugins/plugins/core/name-registration/name-registration.src.js index dffcd01f..69aac944 100644 --- a/plugins/plugins/core/name-registration/name-registration.src.js +++ b/plugins/plugins/core/name-registration/name-registration.src.js @@ -29,7 +29,6 @@ class NameRegistration extends LitElement { return { theme: { type: String, reflect: true }, qortWalletBalance: { type: Number }, - loading: { type: Boolean }, names: { type: Array }, marketSellNames: { type: Array }, recipientPublicKey: { type: String }, @@ -131,6 +130,23 @@ class NameRegistration extends LitElement { text-align: right; } + paper-spinner-lite { + height: 30px; + width: 30px; + --paper-spinner-color: var(--mdc-theme-primary); + --paper-spinner-stroke-width: 3px; + } + + .spinner { + width: 100%; + display: flex; + justify-content: center; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } + #pages { display: flex; flex-wrap: wrap; @@ -276,9 +292,14 @@ class NameRegistration extends LitElement { } }}> - ${this.isEmptyArray(this.names) ? html` + ${(this.isEmptyArray(this.names) && !this.isLoading) ? html` ${translate("registernamepage.nchange8")} `: ''} + ${this.isLoading ? html` +