Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const budget: TranslationStrings = { | |
| 'budget.title': 'Budget', | |
| 'budget.exportCsv': 'Export CSV', | |
| 'budget.emptyTitle': 'No budget created yet', | |
| 'budget.emptyText': | |
| 'Create categories and entries to plan your travel budget', | |
| 'budget.emptyPlaceholder': 'Enter category name...', | |
| 'budget.createCategory': 'Create Category', | |
| 'budget.category': 'Category', | |
| 'budget.categoryName': 'Category Name', | |
| 'budget.table.name': 'Name', | |
| 'budget.table.total': 'Total', | |
| 'budget.table.persons': 'Persons', | |
| 'budget.table.days': 'Days', | |
| 'budget.table.perPerson': 'Per Person', | |
| 'budget.table.perDay': 'Per Day', | |
| 'budget.table.perPersonDay': 'P. p / Day', | |
| 'budget.table.note': 'Note', | |
| 'budget.table.date': 'Date', | |
| 'budget.newEntry': 'New Entry', | |
| 'budget.defaultEntry': 'New Entry', | |
| 'budget.defaultCategory': 'New Category', | |
| 'budget.total': 'Total', | |
| 'budget.totalBudget': 'Total Budget', | |
| 'budget.byCategory': 'By Category', | |
| 'budget.editTooltip': 'Click to edit', | |
| 'budget.linkedToReservation': 'Linked to a reservation — edit the name there', | |
| 'budget.confirm.deleteCategory': | |
| 'Are you sure you want to delete the category "{name}" with {count} entries?', | |
| 'budget.deleteCategory': 'Delete Category', | |
| 'budget.perPerson': 'Per Person', | |
| 'budget.paid': 'Paid', | |
| 'budget.open': 'Open', | |
| 'budget.noMembers': 'No members assigned', | |
| 'budget.settlement': 'Settlement', | |
| 'budget.settlementInfo': | |
| 'Click a member avatar on a budget item to mark them green — this means they paid. The settlement then shows who owes whom and how much.', | |
| 'budget.netBalances': 'Net Balances', | |
| 'budget.categoriesLabel': 'categories', | |
| "costs.you": "You", | |
| "costs.youShort": "Y", | |
| "costs.youLower": "you", | |
| "costs.youOwe": "You owe", | |
| "costs.youOweSub": "You should pay others", | |
| "costs.youreOwed": "You're owed", | |
| "costs.youreOwedSub": "Others should pay you", | |
| "costs.totalSpend": "Total trip spend", | |
| "costs.totalSpendSub": "Across all travelers", | |
| "costs.to": "To", | |
| "costs.from": "From", | |
| "costs.allSettled": "You're all settled up", | |
| "costs.nothingOwed": "Nothing owed to you", | |
| "costs.yourShare": "Your share", | |
| "costs.youPaid": "You paid", | |
| "costs.expenses": "Expenses", | |
| "costs.entries": "{count} entries", | |
| "costs.searchPlaceholder": "Search expenses…", | |
| "costs.filter.all": "All", | |
| "costs.filter.mine": "Paid by me", | |
| "costs.filter.owed": "I'm owed", | |
| "costs.addExpense": "Add expense", | |
| "costs.editExpense": "Edit expense", | |
| "costs.noMatch": "No expenses match your search.", | |
| "costs.emptyText": "No expenses yet. Add your first one.", | |
| "costs.spent": "{amount} spent", | |
| "costs.noDate": "No date", | |
| "costs.noOnePaid": "No one paid yet", | |
| "costs.youLent": "you lent {amount}", | |
| "costs.youBorrowed": "you borrowed {amount}", | |
| "costs.settleUp": "Settle up", | |
| "costs.history": "History", | |
| "costs.everyoneSquare": "Everyone's square", | |
| "costs.nothingOutstanding": "No payments outstanding right now.", | |
| "costs.pay": "pay", | |
| "costs.pays": "pays", | |
| "costs.settle": "Settle", | |
| "costs.balances": "Balances", | |
| "costs.byCategory": "By category", | |
| "costs.noCategories": "No expenses yet.", | |
| "costs.settleHistory": "Settle history", | |
| "costs.noSettlements": "No settled payments yet.", | |
| "costs.paymentsSettled": "{count} payments settled", | |
| "costs.paid": "paid", | |
| "costs.undo": "Undo", | |
| "costs.whatFor": "What was it for?", | |
| "costs.namePlaceholder": "e.g. Dinner, souvenirs, gas…", | |
| "costs.totalAmount": "Total amount", | |
| "costs.currency": "Currency", | |
| "costs.day": "Day", | |
| "costs.rateLabel": "1 {from} in {to}", | |
| "costs.category": "Category", | |
| "costs.whoPaid": "Who paid?", | |
| "costs.splitBetween": "Split equally between", | |
| "costs.pickSomeone": "Pick at least one person to split with.", | |
| "costs.splitSummary": "Split {count} ways · {amount} each", | |
| "costs.cat.accommodation": "Accommodation", | |
| "costs.cat.food": "Food & drink", | |
| "costs.cat.groceries": "Groceries", | |
| "costs.cat.transport": "Transport", | |
| "costs.cat.flights": "Flights", | |
| "costs.cat.activities": "Activities", | |
| "costs.cat.sightseeing": "Sightseeing", | |
| "costs.cat.shopping": "Shopping", | |
| "costs.cat.fees": "Fees & tickets", | |
| "costs.cat.health": "Health", | |
| "costs.cat.tips": "Tips", | |
| "costs.cat.other": "Other", | |
| "costs.daysCount": "{count} days", | |
| "costs.travelers": "{count} travelers", | |
| "costs.liveRate": "live rate", | |
| "costs.settleAll": "Settle all", | |
| }; | |
| export default budget; | |