35 lines
1001 B
PHP
Raw Normal View History

<?php
return [
2020-02-05 13:43:29 +03:00
'accounts' => [
'cash' => 'Bar',
],
'categories' => [
'deposit' => 'Einzahlung',
'sales' => 'Vertrieb',
],
'currencies' => [
'usd' => 'US-Dollar',
'eur' => 'Euro',
'gbp' => 'Britisches Pfund',
'try' => 'Türkische Lira',
],
'offline_payments' => [
'cash' => 'Bar',
'bank' => 'Banküberweisung',
],
'reports' => [
'income' => 'Monatliche Zusammenfassung der Einnahmen nach Kategorie.',
'expense' => 'Monatliche Zusammenfassung der Ausgaben nach Kategorie.',
'income_expense' => 'Monatlicher Vergleich Einkommen vs Ausgaben nach Kategorie.',
'tax' => 'Vierteljährliche Steuerzusammenfassung.',
'profit_loss' => 'Quartalsweise Gewinn & Verlust nach Kategorie.',
],
];