diff --git a/i18n/en.json b/i18n/en.json index 8c95454..fbfd685 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -1,5 +1,6 @@ { "title": "Donate Cryptocurrency", + "thankYou": "πŸŽ‰Thank you for your support!πŸŽ‰
Your support is the driving force for my progress!", "copyAddress": "Copy Address", "copyAddressSuccess": "Address Copied!", "english": "English", diff --git a/i18n/zh.json b/i18n/zh.json index 5fd48ed..3a6b85b 100644 --- a/i18n/zh.json +++ b/i18n/zh.json @@ -1,5 +1,6 @@ { "title": "ζθ΅ εŠ ε―†θ΄§εΈ", + "thankYou": "πŸŽ‰ιžεΈΈζ„Ÿθ°’ζ‚¨ηš„ζ”―ζŒοΌπŸŽ‰
ζ‚¨ηš„ζ”―ζŒζ˜―ζˆ‘ε‰θΏ›ηš„ζœ€ε€§εŠ¨εŠ›οΌ", "copyAddress": "ε€εˆΆεœ°ε€", "copyAddressSuccess": "倍刢成功", "english": "English", diff --git a/index.html b/index.html index 797ba21..5e64ba7 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - εŠ ε―†θ΄§εΈζθ΅  + Donate to me πŸ₯€ @@ -15,6 +15,7 @@ >ζθ΅ εŠ ε―†θ΄§εΈ +
ιžεΈΈζ„Ÿθ°’ζ‚¨ηš„ζ”―ζŒοΌ
ζ‚¨ηš„ζ”―ζŒζ˜―ζˆ‘ε‰θΏ›ηš„ζœ€ε€§εŠ¨εŠ›οΌ
diff --git a/script.js b/script.js index 326a769..1115e87 100644 --- a/script.js +++ b/script.js @@ -53,6 +53,7 @@ function loadBlockchainOptions() { function changeLanguage(lang) { loadI18n(`i18n/${lang}.json`, () => { + document.getElementById("thank-you").innerHTML = i18n.thankYou; document.getElementById("title-text").textContent = i18n.title; document.getElementById("copyAddress").textContent = i18n.copyAddress; loadBlockchainOptions(); diff --git a/styles.css b/styles.css index f21ced3..e765145 100644 --- a/styles.css +++ b/styles.css @@ -35,6 +35,13 @@ h1 { margin-right: 8px; } +#thank-you { + font-size: 16px; + line-height: 1.5em; + margin-bottom: 20px; + color: #e48237ff; +} + .donation-card { text-align: center; }