-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.config.ts
104 lines (104 loc) · 3.27 KB
/
i18n.config.ts
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome',
// navbar
assets: 'Assets',
'my-portfolio': 'My Portfolio',
'sign-in': 'Sign In',
'sign-out': 'Sign Out',
language: 'Language',
currency: 'Currency',
// currency options
'Turkish Lira': 'Turkish Lira',
'American Dollar': 'American Dollar',
Euro: 'Euro',
// assets page
fiat: 'Fiat',
gold: 'Gold',
watching: 'Watching',
name: 'Name',
buying: 'Buying',
selling: 'Selling',
delta: 'Delta',
price: 'Price',
// my portfolio page
'add-asset': 'Add Asset',
'current-balance': 'Current Balance',
'total-cost': 'Total Cost',
'total-profit-loss': 'Total Profit / Loss',
holdings: 'Holdings',
'avg-buy-price': 'Avg. Buy Price',
'profit-loss': 'Profit / Loss',
// asset form
'select-asset': 'Select Asset',
search: 'Search',
// holding page
'add-transaction': 'Add Transaction',
balance: 'Balance',
quantity: 'Quantity',
type: 'Type',
amount: 'Amount',
buy: 'Buy',
sell: 'Sell',
// transaction form
'edit-transaction': 'Edit Transaction',
date: 'Date',
// modal
cancel: 'Cancel',
confirm: 'Confirm',
close: 'Close',
},
tr: {
welcome: 'Hoşgeldiniz',
// navbar
assets: 'Varlıklar',
'my-portfolio': 'Portföyüm',
'sign-in': 'Giriş Yap',
'sign-out': 'Çıkış Yap',
language: 'Dil',
currency: 'Para Birimi',
// currency options
'Turkish Lira': 'Türk Lirası',
'American Dollar': 'Amerikan Doları',
Euro: 'Avro',
// assets page
fiat: 'Fiyat',
gold: 'Altın',
watching: 'İzlenen',
name: 'İsim',
buying: 'Alış',
selling: 'Satış',
delta: 'Fark',
price: 'Fiyat',
// my portfolio page
'add-asset': 'Varlık Ekle',
'current-balance': 'Mevcut Bakiye',
'total-cost': 'Toplam Maliyet',
'total-profit-loss': 'Toplam Kar / Zarar',
holdings: 'Varlıklar',
'avg-buy-price': 'Ort. Alış Fiyatı',
'profit-loss': 'Kar / Zarar',
// asset form
'select-asset': 'Varlık Seç',
search: 'Ara',
// holding page
'add-transaction': 'İşlem Ekle',
balance: 'Bakiye',
quantity: 'Miktar',
type: 'Tip',
amount: 'Tutar',
buy: 'Al',
sell: 'Sat',
// transaction form
'edit-transaction': 'İşlem Düzenle',
date: 'Tarih',
// modal
cancel: 'İptal',
confirm: 'Onayla',
close: 'Kapat',
},
},
}));