-
Notifications
You must be signed in to change notification settings - Fork 57
/
en.ts
25 lines (23 loc) · 859 Bytes
/
en.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
import AccountSettings from "./locales/en/account-settings.json"
import Account from "./locales/en/account.json"
import App from "./locales/en/app.json"
import AppSettings from "./locales/en/app-settings.json"
import CreateAccount from "./locales/en/create-account.json"
import Generic from "./locales/en/generic.json"
import Operations from "./locales/en/operations.json"
import Payment from "./locales/en/payment.json"
import Trading from "./locales/en/trading.json"
import TransferService from "./locales/en/transfer-service.json"
const translations = {
"account-settings": AccountSettings,
account: Account,
app: App,
"app-settings": AppSettings,
"create-account": CreateAccount,
generic: Generic,
operations: Operations,
payment: Payment,
trading: Trading,
"transfer-service": TransferService
} as const
export default translations