mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
d920537dd2
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
86 lines
4.4 KiB
PHP
86 lines
4.4 KiB
PHP
<?php
|
|
/**
|
|
* help.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
return [
|
|
|
|
// tour!
|
|
'main-content-title' => 'Willkommen bei Firefly III',
|
|
'main-content-text' => 'Do yourself a favor and follow this short guide to make sure you know your way around.',
|
|
'sidebar-toggle-title' => 'Sidebar to create stuff',
|
|
'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!',
|
|
'account-menu-title' => 'Alle Ihre Konten',
|
|
'account-menu-text' => 'Hier finden Sie alle Konten, die Sie erstellt haben.',
|
|
'budget-menu-title' => 'Budgets',
|
|
'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
|
|
'report-menu-title' => 'Berichte',
|
|
'report-menu-text' => 'Check this out when you want a solid overview of your finances.',
|
|
'transaction-menu-title' => 'Transaktionen',
|
|
'transaction-menu-text' => 'Alle Transaktionen, die Sie erstellt haben, finden Sie hier.',
|
|
'option-menu-title' => 'Optionen',
|
|
'option-menu-text' => 'Dies ist ziemlich selbsterklärend.',
|
|
'main-content-end-title' => 'Ende!',
|
|
'main-content-end-text' => 'Denken Sie daran, dass jede Seite ein kleines Fragezeichen in der oberen rechten Ecke hat. Klicken Sie darauf um Hilfe zur aktuellen Seite zu erhalten.',
|
|
'index' => 'index',
|
|
'home' => 'home',
|
|
'accounts-index' => 'konten.index',
|
|
'accounts-create' => 'konten.erstellen',
|
|
'accounts-edit' => 'konten.bearbeiten',
|
|
'accounts-delete' => 'konten.löschen',
|
|
'accounts-show' => 'können.zeigen',
|
|
'attachments-edit' => 'anhänge.bearbeiten',
|
|
'attachments-delete' => 'anhänge.löschen',
|
|
'attachments-show' => 'anhänge.zeigen',
|
|
'attachments-preview' => 'anhänge.vorschau',
|
|
'bills-index' => 'bills.index',
|
|
'bills-create' => 'bills.create',
|
|
'bills-edit' => 'bills.edit',
|
|
'bills-delete' => 'bills.delete',
|
|
'bills-show' => 'bills.show',
|
|
'budgets-index' => 'budgets.index',
|
|
'budgets-create' => 'budgets.create',
|
|
'budgets-edit' => 'budgets.edit',
|
|
'budgets-delete' => 'budgets.delete',
|
|
'budgets-show' => 'budgets.show',
|
|
'budgets-noBudget' => 'budgets.noBudget',
|
|
'categories-index' => 'categories.index',
|
|
'categories-create' => 'categories.create',
|
|
'categories-edit' => 'categories.edit',
|
|
'categories-delete' => 'categories.delete',
|
|
'categories-show' => 'categories.show',
|
|
'categories-show-date' => 'categories.show.date',
|
|
'categories-noCategory' => 'categories.noCategory',
|
|
'currency-index' => 'currency.index',
|
|
'currency-create' => 'currency.create',
|
|
'currency-edit' => 'currency.edit',
|
|
'currency-delete' => 'currency.delete',
|
|
'new-user-index' => 'new-user.index',
|
|
'piggy-banks-index' => 'piggy-banks.index',
|
|
'piggy-banks-create' => 'piggy-banks.create',
|
|
'piggy-banks-edit' => 'piggy-banks.edit',
|
|
'piggy-banks-delete' => 'piggy-banks.delete',
|
|
'piggy-banks-show' => 'piggy-banks.show',
|
|
'preferences' => 'preferences',
|
|
'profile' => 'profile',
|
|
'profile-change-password' => 'profile.change-password',
|
|
'profile-delete-account' => 'profile.delete-account',
|
|
'reports-index' => 'reports.index',
|
|
'reports-report' => 'reports.report',
|
|
'search' => 'suchen',
|
|
'tags-index' => 'tags.index',
|
|
'tags-create' => 'tags.create',
|
|
'tags-show' => 'tags.show',
|
|
'tags-edit' => 'tags.edit',
|
|
'tags-delete' => 'tags.delete',
|
|
'transactions-index' => 'transactions.index',
|
|
'transactions-create' => 'transactions.create',
|
|
'transactions-edit' => 'transactions.edit',
|
|
'transactions-delete' => 'transactions.delete',
|
|
'transactions-show' => 'transactions.show',
|
|
];
|