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 (€)', }, }, };