1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-03-14 11:42:32 +00:00

add translations

This commit is contained in:
Phillip 2023-02-24 13:14:02 +00:00
parent abe7be473d
commit f08fb36fdc
2 changed files with 5 additions and 3 deletions
qortal-ui-core/language
qortal-ui-plugins/plugins/core/qdn/browser

@ -500,7 +500,9 @@
"bchange20": "Do you give this application permission to get your wallet balance?", "bchange20": "Do you give this application permission to get your wallet balance?",
"bchange21": "Fetch Wallet Failed. Please try again!", "bchange21": "Fetch Wallet Failed. Please try again!",
"bchange22": "Do you give this application permission to send a chat message?", "bchange22": "Do you give this application permission to send a chat message?",
"bchange23": "Message Sent!" "bchange23": "Message Sent!",
"bchange24": "Reject",
"bchange25": "Accept"
}, },
"datapage": { "datapage": {
"dchange1": "Data Management", "dchange1": "Data Management",

@ -1487,8 +1487,8 @@ async function showModalAndWait(type, data) {
${type === actions.SEND_CHAT_MESSAGE ? `<p class="modal-paragraph">${get("browserpage.bchange22")}</p>` : ''} ${type === actions.SEND_CHAT_MESSAGE ? `<p class="modal-paragraph">${get("browserpage.bchange22")}</p>` : ''}
</div> </div>
<div class="modal-buttons"> <div class="modal-buttons">
<button id="cancel-button">Reject</button> <button id="cancel-button">${get("browserpage.bchange24")}</button>
<button id="ok-button">Accept</button> <button id="ok-button">${get("browserpage.bchange25")}</button>
</div> </div>
</div> </div>
</div> </div>