fix: rename host income label
This commit is contained in:
parent
9de1ae2712
commit
483faf1993
@ -4,7 +4,7 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
||||
<title>Host Center</title>
|
||||
<link rel="stylesheet" href="./style.css?v=20260428-2030" />
|
||||
<link rel="stylesheet" href="./style.css?v=20260428-2035" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="host-center" aria-label="Host Center" data-i18n-aria="page_label">
|
||||
@ -69,7 +69,7 @@
|
||||
<section class="card income-card">
|
||||
<div class="income-head">
|
||||
<div class="income-title">
|
||||
<span data-i18n="my_income">My Income</span>
|
||||
<span data-i18n="my_income">Salary</span>
|
||||
<svg viewBox="0 0 20 20" aria-hidden="true">
|
||||
<circle cx="10" cy="10" r="8" />
|
||||
<path d="M10 9v5M10 6.3v.2" />
|
||||
@ -118,6 +118,6 @@
|
||||
|
||||
<div class="home-indicator" aria-hidden="true"></div>
|
||||
</div>
|
||||
<script src="./script.js?v=20260428-2030" defer></script>
|
||||
<script src="./script.js?v=20260428-2035" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
"no_daily_data": "لا توجد بيانات يومية",
|
||||
"close": "إغلاق",
|
||||
"open_daily_data": "فتح البيانات اليومية",
|
||||
"my_income": "دخلي",
|
||||
"my_income": "الراتب",
|
||||
"withdraw_exchange": "سحب/استبدال",
|
||||
"open_withdraw_exchange": "فتح صفحة السحب والاستبدال",
|
||||
"open_anchor_policy": "فتح سياسة المضيف",
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
"no_daily_data": "No daily data",
|
||||
"close": "Close",
|
||||
"open_daily_data": "Open daily data",
|
||||
"my_income": "My Income",
|
||||
"my_income": "Salary",
|
||||
"withdraw_exchange": "Withdraw/Exchange",
|
||||
"open_withdraw_exchange": "Open withdraw and exchange page",
|
||||
"open_anchor_policy": "Open host policy",
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
"no_daily_data": "Tidak ada data harian",
|
||||
"close": "Tutup",
|
||||
"open_daily_data": "Buka data harian",
|
||||
"my_income": "Penghasilan Saya",
|
||||
"my_income": "Gaji",
|
||||
"withdraw_exchange": "Tarik/Tukar",
|
||||
"open_withdraw_exchange": "Buka halaman tarik dan tukar",
|
||||
"open_anchor_policy": "Buka kebijakan host",
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
"no_daily_data": "Günlük veri yok",
|
||||
"close": "Kapat",
|
||||
"open_daily_data": "Günlük veriyi aç",
|
||||
"my_income": "Gelirim",
|
||||
"my_income": "Maaş",
|
||||
"withdraw_exchange": "Çek/Değiştir",
|
||||
"open_withdraw_exchange": "Çekme ve değişim sayfasını aç",
|
||||
"open_anchor_policy": "Host politikasını aç",
|
||||
|
||||
@ -25,7 +25,7 @@
|
||||
no_daily_data: "No daily data",
|
||||
close: "Close",
|
||||
open_daily_data: "Open daily data",
|
||||
my_income: "My Income",
|
||||
my_income: "Salary",
|
||||
withdraw_exchange: "Withdraw/Exchange",
|
||||
open_withdraw_exchange: "Open withdraw and exchange page",
|
||||
open_anchor_policy: "Open host policy",
|
||||
@ -58,7 +58,7 @@
|
||||
no_daily_data: "لا توجد بيانات يومية",
|
||||
close: "إغلاق",
|
||||
open_daily_data: "فتح البيانات اليومية",
|
||||
my_income: "دخلي",
|
||||
my_income: "الراتب",
|
||||
withdraw_exchange: "سحب/استبدال",
|
||||
open_withdraw_exchange: "فتح صفحة السحب والاستبدال",
|
||||
open_anchor_policy: "فتح سياسة المضيف",
|
||||
@ -91,7 +91,7 @@
|
||||
no_daily_data: "Günlük veri yok",
|
||||
close: "Kapat",
|
||||
open_daily_data: "Günlük veriyi aç",
|
||||
my_income: "Gelirim",
|
||||
my_income: "Maaş",
|
||||
withdraw_exchange: "Çek/Değiştir",
|
||||
open_withdraw_exchange: "Çekme ve değişim sayfasını aç",
|
||||
open_anchor_policy: "Host politikasını aç",
|
||||
@ -124,7 +124,7 @@
|
||||
no_daily_data: "Tidak ada data harian",
|
||||
close: "Tutup",
|
||||
open_daily_data: "Buka data harian",
|
||||
my_income: "Penghasilan Saya",
|
||||
my_income: "Gaji",
|
||||
withdraw_exchange: "Tarik/Tukar",
|
||||
open_withdraw_exchange: "Buka halaman tarik dan tukar",
|
||||
open_anchor_policy: "Buka kebijakan host",
|
||||
@ -202,7 +202,7 @@
|
||||
if (window.location.protocol === "file:") return fallbackMessages[normalizedLang];
|
||||
|
||||
try {
|
||||
const response = await fetch(`./locales/${normalizedLang}.json?v=20260428-2030`, { cache: "no-store" });
|
||||
const response = await fetch(`./locales/${normalizedLang}.json?v=20260428-2035`, { cache: "no-store" });
|
||||
if (response.ok) return await response.json();
|
||||
} catch (error) {
|
||||
return fallbackMessages[normalizedLang];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user