-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
50 lines (48 loc) · 2.16 KB
/
constants.ts
File metadata and controls
50 lines (48 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const WHATSAPP_NUMBER = '9643281807';
export const ADMIN_PASSWORD = 'admin_zito_2024';
export const TRANSLATIONS = {
en: {
home: 'Home',
store: 'Store',
exchange: 'Exchange',
history: 'History',
profile: 'Profile',
tagline: 'Give Old Clothes, Get New Plastic Items!',
subTagline: 'Eco-friendly exchange system. Give clothes and take items.',
heroText: 'Eco Exchange Offer 🎉',
heroDesc: 'No need to sell old clothes! Give them to ZITO and take home kitchen and plastic items. Simple and fast exchange.',
kgLabel: 'Weight (KG)',
stockLabel: 'In Stock',
mrpLabel: 'MRP',
redeemBtn: 'Exchange Now',
buyBtn: 'Buy for Cash',
addCart: 'Add to Cart',
adminPanel: 'Admin Dashboard',
pending: 'Pending',
approved: 'Approved',
completed: 'Completed',
rejected: 'Rejected'
},
hi: {
home: 'होम',
store: 'स्टोर',
exchange: 'एक्सचेंज',
history: 'इतिहास',
profile: 'प्रोफाइल',
tagline: 'पुरानी कपड़े दें, नए प्लास्टिक आइटम लें!',
subTagline: 'इको-फ्रेंडली एक्सचेंज सिस्टम। कपड़े दें और सामान लें।',
heroText: 'इको एक्सचेंज ऑफर 🎉',
heroDesc: 'अब पुराने कपड़े बेचने की जरूरत नहीं! ZITO एक्सचेंज पर कपड़े दीजिए और किचन और प्लास्टिक आइटम्स घर ले जाइए। आसान और तेज़ एक्सचेंज।',
kgLabel: 'वजन (किलो)',
stockLabel: 'स्टॉक में',
mrpLabel: 'MRP',
redeemBtn: 'कपड़े बदलें',
buyBtn: 'नकद खरीदें',
addCart: 'कार्ट में डालें',
adminPanel: 'एडमिन डैशबोर्ड',
pending: 'पेंडिंग',
approved: 'स्वीकृत',
completed: 'पूर्ण',
rejected: 'अस्वीकृत'
}
};