mirror of
https://github.com/arkorty/Expensso.git
synced 2026-03-17 16:41:43 +00:00
init
This commit is contained in:
99
src/i18n/en.ts
Normal file
99
src/i18n/en.ts
Normal file
@@ -0,0 +1,99 @@
|
||||
export default {
|
||||
translation: {
|
||||
// ─── Common ───
|
||||
common: {
|
||||
save: 'Save',
|
||||
cancel: 'Cancel',
|
||||
delete: 'Delete',
|
||||
edit: 'Edit',
|
||||
add: 'Add',
|
||||
done: 'Done',
|
||||
confirm: 'Confirm',
|
||||
loading: 'Loading...',
|
||||
noData: 'No data available',
|
||||
error: 'Something went wrong',
|
||||
retry: 'Retry',
|
||||
},
|
||||
|
||||
// ─── Tabs ───
|
||||
tabs: {
|
||||
dashboard: 'Dashboard',
|
||||
expenses: 'Expenses',
|
||||
netWorth: 'Net Worth',
|
||||
settings: 'Settings',
|
||||
},
|
||||
|
||||
// ─── Dashboard ───
|
||||
dashboard: {
|
||||
title: 'Dashboard',
|
||||
netWorth: 'Net Worth',
|
||||
totalAssets: 'Total Assets',
|
||||
totalLiabilities: 'Total Liabilities',
|
||||
monthlySpending: 'Monthly Spending',
|
||||
monthlyIncome: 'Monthly Income',
|
||||
recentTransactions: 'Recent Transactions',
|
||||
spendingTrends: 'Spending Trends',
|
||||
viewAll: 'View All',
|
||||
thisMonth: 'This Month',
|
||||
lastMonth: 'Last Month',
|
||||
},
|
||||
|
||||
// ─── Expenses ───
|
||||
expenses: {
|
||||
title: 'Expenses',
|
||||
addExpense: 'Add Expense',
|
||||
addIncome: 'Add Income',
|
||||
amount: 'Amount',
|
||||
category: 'Category',
|
||||
paymentMethod: 'Payment Method',
|
||||
date: 'Date',
|
||||
note: 'Note (optional)',
|
||||
noTransactions: 'No transactions yet',
|
||||
startTracking: 'Start tracking your expenses',
|
||||
},
|
||||
|
||||
// ─── Net Worth ───
|
||||
netWorth: {
|
||||
title: 'Net Worth',
|
||||
assets: 'Assets',
|
||||
liabilities: 'Liabilities',
|
||||
addAsset: 'Add Asset',
|
||||
addLiability: 'Add Liability',
|
||||
assetName: 'Asset Name',
|
||||
assetType: 'Asset Type',
|
||||
currentValue: 'Current Value',
|
||||
liabilityName: 'Liability Name',
|
||||
liabilityType: 'Liability Type',
|
||||
outstandingAmount: 'Outstanding Amount',
|
||||
interestRate: 'Interest Rate (%)',
|
||||
emiAmount: 'EMI Amount',
|
||||
growth: 'Growth',
|
||||
noAssets: 'No assets added yet',
|
||||
noLiabilities: 'No liabilities added yet',
|
||||
},
|
||||
|
||||
// ─── Settings ───
|
||||
settings: {
|
||||
title: 'Settings',
|
||||
general: 'General',
|
||||
baseCurrency: 'Base Currency',
|
||||
language: 'Language',
|
||||
theme: 'Theme',
|
||||
data: 'Data',
|
||||
exportData: 'Export Data',
|
||||
importData: 'Import Data',
|
||||
clearData: 'Clear All Data',
|
||||
clearDataConfirm: 'Are you sure? This action cannot be undone.',
|
||||
about: 'About',
|
||||
version: 'Version',
|
||||
appName: 'Expensso',
|
||||
},
|
||||
|
||||
// ─── Currency ───
|
||||
currency: {
|
||||
INR: 'Indian Rupee (₹)',
|
||||
USD: 'US Dollar ($)',
|
||||
EUR: 'Euro (€)',
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user