mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 07:03:23 -06:00
95 lines
4.1 KiB
PHP
95 lines
4.1 KiB
PHP
<?php
|
|
|
|
// general fields and things.
|
|
return [
|
|
'test' => 'You have selected English.',
|
|
'close' => 'Close',
|
|
'pleaseHold' => 'Please hold...',
|
|
'mandatoryFields' => 'Mandatory fields',
|
|
'optionalFields' => 'Optional fields',
|
|
'options' => 'Options',
|
|
'something' => 'Something!',
|
|
'actions' => 'Actions',
|
|
'edit' => 'Edit',
|
|
'delete' => 'Delete',
|
|
'welcomeBack' => 'What\'s playing?',
|
|
|
|
// new user:
|
|
'welcome' => 'Welcome to Firefly!',
|
|
'createNewAsset' => 'Create a new asset account to get started. This will allow you to create transactions and start your financial management',
|
|
'createNewAssetButton' => 'Create new asset account',
|
|
|
|
// home page:
|
|
'yourAccounts' => 'Your accounts',
|
|
'budgetsAndSpending' => 'Budgets and spending',
|
|
'savings' => 'Savings',
|
|
'markAsSavingsToContinue' => 'Mark your asset accounts as "Savings account" to fill this panel',
|
|
'createPiggyToContinue' => 'Create piggy banks to fill this panel.',
|
|
'newWithdrawal' => 'New expense',
|
|
'newDeposit' => 'New deposit',
|
|
'newTransfer' => 'New transfer',
|
|
'moneyIn' => 'Money in',
|
|
'moneyOut' => 'Money out',
|
|
'billsToPay' => 'Bills to pay',
|
|
'billsPaid' => 'Bills paid',
|
|
'viewDetails' => 'View details',
|
|
'divided' => 'divided',
|
|
'toDivide' => 'left to divide',
|
|
|
|
// menu and titles, should be recycled as often as possible:
|
|
'toggleNavigation' => 'Toggle navigation',
|
|
'seeAllReminders' => 'See all reminders',
|
|
'reminders' => 'Reminders',
|
|
'currency' => 'Currency',
|
|
'preferences' => 'Preferences',
|
|
'logout' => 'Logout',
|
|
'searchPlaceholder' => 'Search...',
|
|
'dashboard' => 'Dashboard',
|
|
'currencies' => 'Currencies',
|
|
'accounts' => 'Accounts',
|
|
'assetAccounts' => 'Asset accounts',
|
|
'expenseAccounts' => 'Expense accounts',
|
|
'revenueAccounts' => 'Revenue accounts',
|
|
'budgets' => 'Budgets',
|
|
'categories' => 'Categories',
|
|
'tags' => 'Tags',
|
|
'reports' => 'Reports',
|
|
'transactions' => 'Transactions',
|
|
'expenses' => 'Expenses',
|
|
'income' => 'Revenue / income',
|
|
'transfers' => 'Transfer',
|
|
'moneyManagement' => 'Money management',
|
|
'piggyBanks' => 'Piggy banks',
|
|
'bills' => 'Bills',
|
|
'createNew' => 'Create new',
|
|
'withdrawal' => 'Withdrawal',
|
|
'deposit' => 'Deposit',
|
|
'transfer' => 'Transfer',
|
|
'bill' => 'Rekening',
|
|
|
|
// charts:
|
|
'dayOfMonth' => 'Dag vd maand',
|
|
'month' => 'Maand',
|
|
'budget' => 'Budget',
|
|
'spent' => 'Uitgegeven',
|
|
'overspent' => 'Teveel uitgegeven',
|
|
'left' => 'Over',
|
|
'noCategory' => '(geen categorie)',
|
|
'noBudget' => '(geen budget)',
|
|
'category' => 'Categorie',
|
|
'maxAmount' => 'Maximaal bedrag',
|
|
'minAmount' => 'Minimaal bedrag',
|
|
'billEntry' => 'Bedrag voor deze rekening',
|
|
'name' => 'Naam',
|
|
'date' => 'Datum',
|
|
'paid' => 'Betaald',
|
|
'unpaid' => 'Niet betaald',
|
|
'day' => 'Dag',
|
|
'budgeted' => 'Gebudgetteerd',
|
|
'period' => 'Periode',
|
|
'balance' => 'Saldo',
|
|
'summary' => 'Samenvatting',
|
|
'sum' => 'Som',
|
|
'average' => 'Gemiddeld',
|
|
];
|