mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
More code. Forgot to push.
This commit is contained in:
commit
8dae8b1a7f
@ -2,6 +2,7 @@ APP_ENV=production
|
||||
APP_DEBUG=false
|
||||
APP_KEY=SomeRandomStringOf32CharsExactly
|
||||
|
||||
|
||||
DB_CONNECTION=mysql
|
||||
DB_HOST=localhost
|
||||
DB_DATABASE=homestead
|
||||
@ -20,6 +21,8 @@ EMAIL_USERNAME=
|
||||
EMAIL_PASSWORD=
|
||||
EMAIL_PRETEND=false
|
||||
|
||||
SHOW_INCOMPLETE_TRANSLATIONS=false
|
||||
|
||||
ANALYTICS_ID=
|
||||
RUNCLEANUP=true
|
||||
SITE_OWNER=mail@example.com
|
||||
|
@ -19,7 +19,6 @@ their current cashflow. There are tons of ways to save and earn money.
|
||||
|
||||
Firefly works on the principle that if you know where you're money is going, you can stop it from going there.
|
||||
|
||||
|
||||
To get to know Firefly, and to see if it fits you, check out these resources:
|
||||
|
||||
- The screenshots below on this very page.
|
||||
@ -88,7 +87,13 @@ This site always runs the latest version of Firefly III. If you want to use it,
|
||||
|
||||
You should always run Firefly III on a site with TLS enabled (https://). Please note that although some parts of the
|
||||
database are encrypted (transaction descriptions, names, etc.) some parts are _not_ (amounts, dates, etc). If you need
|
||||
more security, you must enable transparent database encryption or a comparable technology.
|
||||
more security, you must enable transparent database encryption or a comparable technology. Please remember that this
|
||||
is open source software under active development, and it is in no way guaranteed to be safe or secure.
|
||||
|
||||
## Translations
|
||||
|
||||
Firefly III is currently available in Dutch and English. Support for other languages is being worked on. I can use
|
||||
your help. Checkout [Crowdin](https://crowdin.com/project/firefly-iii) for more information.
|
||||
|
||||
## Credits
|
||||
|
||||
|
@ -105,8 +105,7 @@ class ChartJsAccountChartGenerator implements AccountChartGenerator
|
||||
public function frontpage(Collection $accounts, Carbon $start, Carbon $end)
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.monthAndDay.' . $language);
|
||||
$format = trans('config.month_and_day');
|
||||
$data = [
|
||||
'count' => 0,
|
||||
'labels' => [],
|
||||
@ -151,8 +150,7 @@ class ChartJsAccountChartGenerator implements AccountChartGenerator
|
||||
public function single(Account $account, Carbon $start, Carbon $end)
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.monthAndDay.' . $language);
|
||||
$format = trans('config.month_and_day');
|
||||
|
||||
$data = [
|
||||
'count' => 1,
|
||||
|
@ -71,8 +71,7 @@ class ChartJsBillChartGenerator implements BillChartGenerator
|
||||
public function single(Bill $bill, Collection $entries)
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.month.' . $language);
|
||||
$format = trans('config.month');
|
||||
|
||||
$data = [
|
||||
'count' => 3,
|
||||
|
@ -24,7 +24,7 @@ class ChartJsBudgetChartGenerator implements BudgetChartGenerator
|
||||
public function budget(Collection $entries, $dateFormat = 'month')
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE', 'en_US'))->data;
|
||||
$format = Config::get('firefly.' . $dateFormat . '.' . $language);
|
||||
|
||||
$data = [
|
||||
@ -33,7 +33,7 @@ class ChartJsBudgetChartGenerator implements BudgetChartGenerator
|
||||
[
|
||||
'label' => 'Amount',
|
||||
'data' => [],
|
||||
]
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@ -115,8 +115,7 @@ class ChartJsBudgetChartGenerator implements BudgetChartGenerator
|
||||
public function year(Collection $budgets, Collection $entries)
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.month.' . $language);
|
||||
$format = trans('config.month');
|
||||
|
||||
$data = [
|
||||
'labels' => [],
|
||||
|
@ -101,8 +101,7 @@ class ChartJsCategoryChartGenerator implements CategoryChartGenerator
|
||||
{
|
||||
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.month.' . $language);
|
||||
$format = trans('config.month');
|
||||
|
||||
$data = [
|
||||
'count' => 0,
|
||||
@ -135,8 +134,7 @@ class ChartJsCategoryChartGenerator implements CategoryChartGenerator
|
||||
{
|
||||
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.month.' . $language);
|
||||
$format = trans('config.month');
|
||||
|
||||
$data = [
|
||||
'count' => 0,
|
||||
|
@ -25,8 +25,7 @@ class ChartJsPiggyBankChartGenerator implements PiggyBankChartGenerator
|
||||
{
|
||||
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.monthAndDay.' . $language);
|
||||
$format = trans('config.month_and_day');
|
||||
|
||||
$data = [
|
||||
'count' => 1,
|
||||
|
@ -22,8 +22,7 @@ class ChartJsReportChartGenerator implements ReportChartGenerator
|
||||
public function yearInOut(Collection $entries)
|
||||
{
|
||||
// language:
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$format = Config::get('firefly.month.' . $language);
|
||||
$format = trans('config.month');
|
||||
|
||||
$data = [
|
||||
'count' => 2,
|
||||
|
@ -63,7 +63,7 @@ class ReportHelper implements ReportHelperInterface
|
||||
$repository = app('FireflyIII\Repositories\Category\CategoryRepositoryInterface');
|
||||
$set = $repository->getCategories();
|
||||
foreach ($set as $category) {
|
||||
$spent = $repository->balanceInPeriodForList($category, $start, $end, $accounts);
|
||||
$spent = $repository->balanceInPeriod($category, $start, $end, $accounts);
|
||||
$category->spent = $spent;
|
||||
$object->addCategory($category);
|
||||
}
|
||||
@ -222,7 +222,7 @@ class ReportHelper implements ReportHelperInterface
|
||||
|
||||
// no repetition(s) for this budget:
|
||||
if ($repetitions->count() == 0) {
|
||||
$spent = $repository->balanceInPeriodForList($budget, $start, $end, $accounts);
|
||||
$spent = $repository->balanceInPeriod($budget, $start, $end, $accounts);
|
||||
$budgetLine = new BudgetLine;
|
||||
$budgetLine->setBudget($budget);
|
||||
$budgetLine->setOverspent($spent);
|
||||
@ -237,7 +237,7 @@ class ReportHelper implements ReportHelperInterface
|
||||
$budgetLine = new BudgetLine;
|
||||
$budgetLine->setBudget($budget);
|
||||
$budgetLine->setRepetition($repetition);
|
||||
$expenses = $repository->balanceInPeriodForList($budget, $start, $end, $accounts);
|
||||
$expenses = $repository->balanceInPeriod($budget, $start, $end, $accounts);
|
||||
|
||||
// 200 en -100 is 100, vergeleken met 0 === 1
|
||||
// 200 en -200 is 0, vergeleken met 0 === 0
|
||||
|
@ -159,7 +159,7 @@ class BudgetController extends Controller
|
||||
// loop the budgets:
|
||||
/** @var Budget $budget */
|
||||
foreach ($budgets as $budget) {
|
||||
$budget->spent = $repository->balanceInPeriodForList($budget, $start, $end, $accounts);
|
||||
$budget->spent = $repository->balanceInPeriod($budget, $start, $end, $accounts);
|
||||
$budget->currentRep = $repository->getCurrentRepetition($budget, $start, $end);
|
||||
if ($budget->currentRep) {
|
||||
$budgeted = bcadd($budgeted, $budget->currentRep->amount);
|
||||
|
@ -86,7 +86,7 @@ class BudgetController extends Controller
|
||||
$budgeted = 0;
|
||||
} else {
|
||||
$name = $budget->name;
|
||||
$sum = $repository->balanceInPeriodForList($budget, $currentStart, $currentEnd, $accounts);
|
||||
$sum = $repository->balanceInPeriod($budget, $currentStart, $currentEnd, $accounts);
|
||||
$budgeted = $repository->getBudgetLimitRepetitions($budget, $currentStart, $currentEnd)->sum('amount');
|
||||
}
|
||||
|
||||
@ -144,7 +144,7 @@ class BudgetController extends Controller
|
||||
$end->subDay();
|
||||
$chartDate = clone $end;
|
||||
$chartDate->startOfMonth();
|
||||
$spent = $repository->balanceInPeriodForList($budget, $first, $end, $accounts) * -1;
|
||||
$spent = $repository->balanceInPeriod($budget, $first, $end, $accounts) * -1;
|
||||
$entries->push([$chartDate, $spent]);
|
||||
$first = Navigation::addPeriod($first, $range, 0);
|
||||
}
|
||||
@ -233,13 +233,13 @@ class BudgetController extends Controller
|
||||
foreach ($budgets as $budget) {
|
||||
$repetitions = $repository->getBudgetLimitRepetitions($budget, $start, $end);
|
||||
if ($repetitions->count() == 0) {
|
||||
$expenses = $repository->balanceInPeriodForList($budget, $start, $end, $accounts) * -1;
|
||||
$expenses = $repository->balanceInPeriod($budget, $start, $end, $accounts) * -1;
|
||||
$allEntries->push([$budget->name, 0, 0, $expenses, 0, 0]);
|
||||
continue;
|
||||
}
|
||||
/** @var LimitRepetition $repetition */
|
||||
foreach ($repetitions as $repetition) {
|
||||
$expenses = $repository->balanceInPeriodForList($budget, $repetition->startdate, $repetition->enddate, $accounts) * -1;
|
||||
$expenses = $repository->balanceInPeriod($budget, $repetition->startdate, $repetition->enddate, $accounts) * -1;
|
||||
// $left can be less than zero.
|
||||
// $overspent can be more than zero ( = overspending)
|
||||
|
||||
@ -283,16 +283,17 @@ class BudgetController extends Controller
|
||||
$cache = new CacheProperties();
|
||||
$cache->addProperty($start);
|
||||
$cache->addProperty($end);
|
||||
$cache->addProperty($report_type);
|
||||
$cache->addProperty($accounts);
|
||||
$cache->addProperty('budget');
|
||||
$cache->addProperty('year');
|
||||
if ($cache->has()) {
|
||||
return Response::json($cache->get()); // @codeCoverageIgnore
|
||||
}
|
||||
|
||||
// filter empty budgets:
|
||||
|
||||
// filter empty budgets:
|
||||
foreach ($allBudgets as $budget) {
|
||||
$spent = $repository->balanceInPeriodForList($budget, $start, $end, $accounts);
|
||||
$spent = $repository->balanceInPeriod($budget, $start, $end, $accounts);
|
||||
if ($spent != 0) {
|
||||
$budgets->push($budget);
|
||||
}
|
||||
@ -308,14 +309,14 @@ class BudgetController extends Controller
|
||||
|
||||
// each budget, fill the row:
|
||||
foreach ($budgets as $budget) {
|
||||
$spent = $repository->balanceInPeriodForList($budget, $start, $month, $accounts);
|
||||
$spent = $repository->balanceInPeriod($budget, $start, $month, $accounts);
|
||||
$row[] = $spent * -1;
|
||||
}
|
||||
$entries->push($row);
|
||||
$start->endOfMonth()->addDay();
|
||||
}
|
||||
|
||||
$data = $this->generator->year($allBudgets, $entries);
|
||||
$data = $this->generator->year($budgets, $entries);
|
||||
$cache->store($data);
|
||||
|
||||
return Response::json($data);
|
||||
|
@ -303,7 +303,9 @@ class CategoryController extends Controller
|
||||
|
||||
$cache = new CacheProperties; // chart properties for cache:
|
||||
$cache->addProperty($start);
|
||||
$cache->addProperty($report_type);
|
||||
$cache->addProperty($end);
|
||||
$cache->addProperty($accounts);
|
||||
$cache->addProperty('category');
|
||||
$cache->addProperty('spent-in-year');
|
||||
if ($cache->has()) {
|
||||
@ -314,7 +316,7 @@ class CategoryController extends Controller
|
||||
$entries = new Collection;
|
||||
$categories = $allCategories->filter(
|
||||
function (Category $category) use ($repository, $start, $end, $accounts) {
|
||||
$spent = $repository->balanceInPeriodForList($category, $start, $end, $accounts);
|
||||
$spent = $repository->balanceInPeriod($category, $start, $end, $accounts);
|
||||
if ($spent < 0) {
|
||||
return $category;
|
||||
}
|
||||
@ -329,7 +331,7 @@ class CategoryController extends Controller
|
||||
$row = [clone $start]; // make a row:
|
||||
|
||||
foreach ($categories as $category) { // each budget, fill the row
|
||||
$spent = $repository->balanceInPeriodForList($category, $start, $month, $accounts);
|
||||
$spent = $repository->balanceInPeriod($category, $start, $month, $accounts);
|
||||
if ($spent < 0) {
|
||||
$row[] = $spent * -1;
|
||||
} else {
|
||||
@ -361,6 +363,8 @@ class CategoryController extends Controller
|
||||
$cache = new CacheProperties; // chart properties for cache:
|
||||
$cache->addProperty($start);
|
||||
$cache->addProperty($end);
|
||||
$cache->addProperty($report_type);
|
||||
$cache->addProperty($accounts);
|
||||
$cache->addProperty('category');
|
||||
$cache->addProperty('earned-in-year');
|
||||
if ($cache->has()) {
|
||||
@ -371,7 +375,7 @@ class CategoryController extends Controller
|
||||
$allEntries = new Collection;
|
||||
$categories = $allCategories->filter(
|
||||
function (Category $category) use ($repository, $start, $end, $accounts) {
|
||||
$spent = $repository->balanceInPeriodForList($category, $start, $end, $accounts);
|
||||
$spent = $repository->balanceInPeriod($category, $start, $end, $accounts);
|
||||
if ($spent > 0) {
|
||||
return $category;
|
||||
}
|
||||
@ -386,7 +390,7 @@ class CategoryController extends Controller
|
||||
$row = [clone $start]; // make a row:
|
||||
|
||||
foreach ($categories as $category) { // each budget, fill the row
|
||||
$spent = $repository->balanceInPeriodForList($category, $start, $month, $accounts);
|
||||
$spent = $repository->balanceInPeriod($category, $start, $month, $accounts);
|
||||
if ($spent > 0) {
|
||||
$row[] = $spent;
|
||||
} else {
|
||||
|
@ -36,8 +36,8 @@ abstract class Controller extends BaseController
|
||||
if (Auth::check()) {
|
||||
$pref = Preferences::get('language', env('DEFAULT_LANGUAGE', 'en_US'));
|
||||
$lang = $pref->data;
|
||||
$this->monthFormat = Config::get('firefly.month.' . $lang);
|
||||
$this->monthAndDayFormat = Config::get('firefly.monthAndDay.' . $lang);
|
||||
$this->monthFormat = trans('config.month');
|
||||
$this->monthAndDayFormat = trans('config.month_and_day');
|
||||
|
||||
View::share('monthFormat', $this->monthFormat);
|
||||
View::share('monthAndDayFormat', $this->monthAndDayFormat);
|
||||
|
@ -37,10 +37,12 @@ class PreferencesController extends Controller
|
||||
$viewRange = $viewRangePref->data;
|
||||
$frontPageAccounts = Preferences::get('frontPageAccounts', []);
|
||||
$budgetMax = Preferences::get('budgetMaximum', 1000);
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$language = Preferences::get('language', env('DEFAULT_LANGUAGE', 'en_US'))->data;
|
||||
$budgetMaximum = $budgetMax->data;
|
||||
|
||||
return view('preferences.index', compact('budgetMaximum', 'language', 'accounts', 'frontPageAccounts', 'viewRange'));
|
||||
$showIncomplete = env('SHOW_INCOMPLETE_TRANSLATIONS', 'false') == 'true';
|
||||
|
||||
return view('preferences.index', compact('budgetMaximum', 'language', 'accounts', 'frontPageAccounts', 'viewRange', 'showIncomplete'));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -70,7 +72,7 @@ class PreferencesController extends Controller
|
||||
|
||||
// language:
|
||||
$lang = Input::get('language');
|
||||
if (in_array($lang, array_keys(Config::get('firefly.lang')))) {
|
||||
if (in_array($lang, array_keys(Config::get('firefly.languages')))) {
|
||||
Preferences::set('language', $lang);
|
||||
}
|
||||
|
||||
|
@ -64,9 +64,11 @@ class Authenticate
|
||||
$pref = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'));
|
||||
App::setLocale($pref->data);
|
||||
Carbon::setLocale(substr($pref->data,0,2));
|
||||
$locale = explode(',', trans('config.locale'));
|
||||
$locale = array_map('trim', $locale);
|
||||
|
||||
setlocale(LC_TIME, Config::get('firefly.locales.' . $pref->data));
|
||||
setlocale(LC_MONETARY, Config::get('firefly.locales.' . $pref->data));
|
||||
setlocale(LC_TIME, $locale);
|
||||
setlocale(LC_MONETARY, $locale);
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
|
@ -354,8 +354,7 @@ Breadcrumbs::register(
|
||||
'reports.report', function (Generator $breadcrumbs, Carbon $start, Carbon $end, $reportType, $accountIds) {
|
||||
$breadcrumbs->parent('reports.index');
|
||||
|
||||
$pref = Preferences::get('language', env('DEFAULT_LANGUAGE','en_US'))->data;
|
||||
$monthFormat = Config::get('firefly.monthAndDay.' . $pref);
|
||||
$monthFormat = trans('config.month_and_day');
|
||||
$title = trans('firefly.report_default', ['start' => $start->formatLocalized($monthFormat), 'end' => $end->formatLocalized($monthFormat)]);
|
||||
|
||||
$breadcrumbs->push($title, route('reports.report', ['url' => 'abcde']));
|
||||
|
@ -284,7 +284,6 @@ Route::group(
|
||||
Route::get('/home', ['uses' => 'HomeController@index', 'as' => 'home']);
|
||||
Route::post('/daterange', ['uses' => 'HomeController@dateRange', 'as' => 'daterange']);
|
||||
Route::get('/flush', ['uses' => 'HomeController@flush', 'as' => 'flush']);
|
||||
Route::get('/routes', ['uses' => 'HomeController@routes']);
|
||||
/**
|
||||
* Account Controller
|
||||
*/
|
||||
|
@ -320,22 +320,9 @@ class BudgetRepository extends ComponentRepository implements BudgetRepositoryIn
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriodForList(Budget $budget, Carbon $start, Carbon $end, Collection $accounts)
|
||||
public function balanceInPeriod(Budget $budget, Carbon $start, Carbon $end, Collection $accounts)
|
||||
{
|
||||
return $this->commonBalanceInPeriodForList($budget, $start, $end, $accounts);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Budget $budget
|
||||
* @param Carbon $start
|
||||
* @param Carbon $end
|
||||
* @param bool $shared
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriod(Budget $budget, Carbon $start, Carbon $end, $shared = true)
|
||||
{
|
||||
return $this->commonBalanceInPeriod($budget, $start, $end, $shared);
|
||||
return $this->commonBalanceInPeriod($budget, $start, $end, $accounts);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -126,19 +126,6 @@ interface BudgetRepositoryInterface
|
||||
*/
|
||||
public function getWithoutBudgetSum(Carbon $start, Carbon $end);
|
||||
|
||||
/**
|
||||
*
|
||||
* Same as ::spentInPeriod but corrects journals for their amount (tags).
|
||||
*
|
||||
* @param Budget $budget
|
||||
* @param Carbon $start
|
||||
* @param Carbon $end
|
||||
* @param boolean $shared
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriod(Budget $budget, Carbon $start, Carbon $end, $shared = true);
|
||||
|
||||
/**
|
||||
*
|
||||
* Same as ::spentInPeriod but corrects journals for a set of accounts
|
||||
@ -150,7 +137,7 @@ interface BudgetRepositoryInterface
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriodForList(Budget $budget, Carbon $start, Carbon $end, Collection $accounts);
|
||||
public function balanceInPeriod(Budget $budget, Carbon $start, Carbon $end, Collection $accounts);
|
||||
|
||||
/**
|
||||
* @param array $data
|
||||
|
@ -242,20 +242,6 @@ class CategoryRepository extends ComponentRepository implements CategoryReposito
|
||||
->get(['transaction_journals.*']);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Category $category
|
||||
* @param Carbon $start
|
||||
* @param Carbon $end
|
||||
*
|
||||
* @param bool $shared
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, $shared = false)
|
||||
{
|
||||
return $this->commonBalanceInPeriod($category, $start, $end, $shared);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Category $category
|
||||
* @param Carbon $start
|
||||
@ -264,9 +250,9 @@ class CategoryRepository extends ComponentRepository implements CategoryReposito
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriodForList(Category $category, Carbon $start, Carbon $end, Collection $accounts)
|
||||
public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, Collection $accounts)
|
||||
{
|
||||
return $this->commonBalanceInPeriodForList($category, $start, $end, $accounts);
|
||||
return $this->commonBalanceInPeriod($category, $start, $end, $accounts);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -147,21 +147,7 @@ interface CategoryRepositoryInterface
|
||||
public function getWithoutCategory(Carbon $start, Carbon $end);
|
||||
|
||||
/**
|
||||
* Corrected for tags.
|
||||
*
|
||||
* @param Category $category
|
||||
* @param \Carbon\Carbon $start
|
||||
* @param \Carbon\Carbon $end
|
||||
*
|
||||
* @param bool $shared
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, $shared = false);
|
||||
|
||||
|
||||
/**
|
||||
* Corrected for tags.
|
||||
* Corrected for tags and list of accounts.
|
||||
*
|
||||
* @param Category $category
|
||||
* @param \Carbon\Carbon $start
|
||||
@ -170,7 +156,7 @@ interface CategoryRepositoryInterface
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function balanceInPeriodForList(Category $category, Carbon $start, Carbon $end, Collection $accounts);
|
||||
public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, Collection $accounts);
|
||||
|
||||
/**
|
||||
* @param Category $category
|
||||
|
@ -17,55 +17,6 @@ use Illuminate\Support\Collection;
|
||||
class ComponentRepository
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @param $object
|
||||
* @param Carbon $start
|
||||
* @param Carbon $end
|
||||
*
|
||||
* @param bool $shared
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function commonBalanceInPeriod($object, Carbon $start, Carbon $end, $shared = false)
|
||||
{
|
||||
$cache = new CacheProperties; // we must cache this.
|
||||
$cache->addProperty($object->id);
|
||||
$cache->addProperty(get_class($object));
|
||||
$cache->addProperty($start);
|
||||
$cache->addProperty($end);
|
||||
$cache->addProperty($shared);
|
||||
$cache->addProperty('balanceInPeriod');
|
||||
|
||||
if ($cache->has()) {
|
||||
return $cache->get(); // @codeCoverageIgnore
|
||||
}
|
||||
|
||||
if ($shared === true) { // shared is true: always ignore transfers between accounts!
|
||||
$sum = $object->transactionjournals()
|
||||
->transactionTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::OPENING_BALANCE])
|
||||
->before($end)
|
||||
->after($start)
|
||||
->get(['transaction_journals.*'])->sum('amount');
|
||||
} else {
|
||||
// do something else, SEE budgets.
|
||||
// get all journals in this month where the asset account is NOT shared.
|
||||
$sum = $object->transactionjournals()->before($end)->after($start)
|
||||
->leftJoin('transactions', 'transactions.transaction_journal_id', '=', 'transaction_journals.id')
|
||||
->leftJoin('accounts', 'accounts.id', '=', 'transactions.account_id')
|
||||
->transactionTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::OPENING_BALANCE])
|
||||
->leftJoin(
|
||||
'account_meta', function (JoinClause $join) {
|
||||
$join->on('account_meta.account_id', '=', 'accounts.id')->where('account_meta.name', '=', 'accountRole');
|
||||
}
|
||||
)->where('account_meta.data', '!=', '"sharedAsset"')->get(['transaction_journals.*'])->sum('amount');
|
||||
}
|
||||
|
||||
$cache->store($sum);
|
||||
|
||||
return $sum;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $object
|
||||
* @param Carbon $start
|
||||
@ -74,7 +25,7 @@ class ComponentRepository
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function commonBalanceInPeriodForList($object, Carbon $start, Carbon $end, Collection $accounts)
|
||||
protected function commonBalanceInPeriod($object, Carbon $start, Carbon $end, Collection $accounts)
|
||||
{
|
||||
$cache = new CacheProperties; // we must cache this.
|
||||
$cache->addProperty($object->id);
|
||||
|
@ -98,6 +98,12 @@ return [
|
||||
'Revenue account' => 'revenue',
|
||||
'Cash account' => 'cash',
|
||||
],
|
||||
'languages' => [
|
||||
'en_US' => ['name_locale' => 'English', 'name_english' => 'English', 'complete' => true],
|
||||
'nl_NL' => ['name_locale' => 'Nederlands', 'name_english' => 'Dutch', 'complete' => true],
|
||||
'pt_BR' => ['name_locale' => 'Português do Brasil', 'name_english' => 'Portugese (Brazil)', 'complete' => false],
|
||||
'fr_FR' => ['name_locale' => 'Français', 'name_english' => 'French', 'complete' => false],
|
||||
],
|
||||
'lang' => [
|
||||
'en_US' => 'English',
|
||||
'nl_NL' => 'Nederlands',
|
||||
|
@ -27,8 +27,8 @@ return [
|
||||
|
||||
// reports
|
||||
'reports' => 'Reports',
|
||||
'monthly_report' => 'Montly report for :date',
|
||||
'monthly_report_shared' => 'Montly report for :date (including shared accounts)',
|
||||
'monthly_report' => 'Monthly report for :date',
|
||||
'monthly_report_shared' => 'Monthly report for :date (including shared accounts)',
|
||||
'yearly_report' => 'Yearly report for :date',
|
||||
'yearly_report_shared' => 'Yearly report for :date (including shared accounts)',
|
||||
'budget_report' => 'Budget report for :date',
|
||||
|
8
resources/lang/en_US/config.php
Normal file
8
resources/lang/en_US/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'en, English, en_US, en_US.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%B %e, %Y',
|
||||
|
||||
];
|
@ -2,6 +2,7 @@
|
||||
|
||||
return [
|
||||
// general stuff:
|
||||
'language_incomplete' => 'This language is not yet fully translated',
|
||||
'test' => 'You have selected English.',
|
||||
'close' => 'Close',
|
||||
'pleaseHold' => 'Please hold...',
|
||||
@ -67,8 +68,7 @@ return [
|
||||
'new_password' => 'New password',
|
||||
'new_password_again' => 'New password (again)',
|
||||
'delete_your_account' => 'Delete your account',
|
||||
'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, <em>anything</em> you might have saved' .
|
||||
' into Firefly III. It\'ll be GONE.',
|
||||
'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, <em>anything</em> you might have saved into Firefly III. It\'ll be GONE.',
|
||||
'delete_your_account_password' => 'Enter your password to continue.',
|
||||
'password' => 'Password',
|
||||
'are_you_sure' => 'Are you sure? You cannot undo this.',
|
||||
@ -109,23 +109,15 @@ return [
|
||||
'csv_define_column_roles' => 'Define column roles',
|
||||
'csv_map_values' => 'Map found values to existing values',
|
||||
'csv_download_config' => 'Download CSV configuration file.',
|
||||
'csv_index_text' => 'This form allows you to import a CSV file with transactions into Firefly. It is based on the excellent CSV' .
|
||||
' importer made by the folks at <a href="https://www.atlassian.com/">Atlassian</a>. Simply upload your CSV' .
|
||||
' file and follow the instructions. If you would like to learn more, please click on the <i ' .
|
||||
'class="fa fa-question-circle"></i> button at the top of this page.',
|
||||
'csv_index_text' => 'This form allows you to import a CSV file with transactions into Firefly. It is based on the excellent CSV importer made by the folks at <a href="https://www.atlassian.com/">Atlassian</a>. Simply upload your CSV file and follow the instructions. If you would like to learn more, please click on the <i class="fa fa-question-circle"></i> button at the top of this page.',
|
||||
'csv_index_beta_warning' => 'This tool is very much in beta. Please proceed with caution',
|
||||
'csv_header_help' => 'Check this box when your CSV file\'s first row consists of column names, not actual data',
|
||||
'csv_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/' .
|
||||
'datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> ' .
|
||||
'indicates. The default value will parse dates that look like this: ' . date('Ymd'),
|
||||
'csv_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> indicates. The default value will parse dates that look like this: :dateExample.',
|
||||
'csv_csv_file_help' => 'Select the CSV file here. You can only upload one file at a time',
|
||||
'csv_csv_config_file_help' => 'Select your CSV import configuration here. If you do not know what this is, ignore it. It will be explained later.',
|
||||
'csv_upload_button' => 'Start importing CSV',
|
||||
'csv_column_roles_title' => 'Define column roles',
|
||||
'csv_column_roles_text' => 'Firefly does not know what each column means. You need to indicate what every column is. ' .
|
||||
'Please check out the example data if you\'re not sure yourself. Click on the question mark ' .
|
||||
'(top right of the page) to learn what each column means. If you want to map imported data ' .
|
||||
'onto existing data in Firefly, use the checkbox. The next step will show you what this button does.',
|
||||
'csv_column_roles_text' => 'Firefly does not know what each column means. You need to indicate what every column is. Please check out the example data if you\'re not sure yourself. Click on the question mark (top right of the page) to learn what each column means. If you want to map imported data onto existing data in Firefly, use the checkbox. The next step will show you what this button does.',
|
||||
'csv_column_roles_table' => 'Column roles',
|
||||
'csv_column' => 'CSV column',
|
||||
'csv_column_name' => 'CSV column name',
|
||||
@ -135,15 +127,13 @@ return [
|
||||
'csv_continue' => 'Continue to the next step',
|
||||
'csv_go_back' => 'Go back to the previous step',
|
||||
'csv_map_title' => 'Map found values to existing values',
|
||||
'csv_map_text' => 'This page allows you to map the values from the CSV file to existing entries in your ' .
|
||||
'database. This ensures that accounts and other things won\'t be created twice.',
|
||||
'csv_map_text' => 'This page allows you to map the values from the CSV file to existing entries in your database. This ensures that accounts and other things won\'t be created twice.',
|
||||
'csv_field_value' => 'Field value from CSV',
|
||||
'csv_field_mapped_to' => 'Must be mapped to...',
|
||||
'csv_do_not_map' => 'Do not map this value',
|
||||
'csv_download_config_title' => 'Download CSV configuration',
|
||||
'csv_download_config_text' => 'Everything you\'ve just set up can be downloaded as a configuration file. Click the button to do so.',
|
||||
'csv_more_information_text' => 'If the import fails, you can use this configuration file so you don\'t have to start all ' .
|
||||
'over again. But, if the import succeeds, it will be easier to upload similar CSV files.',
|
||||
'csv_more_information_text' => 'If the import fails, you can use this configuration file so you don\'t have to start all over again. But, if the import succeeds, it will be easier to upload similar CSV files.',
|
||||
'csv_do_download_config' => 'Download configuration file.',
|
||||
'csv_empty_description' => '(empty description)',
|
||||
'csv_upload_form' => 'CSV upload form',
|
||||
@ -189,11 +179,9 @@ return [
|
||||
'csv_column_tags-space' => 'Tags (space separated)',
|
||||
'csv_specifix_RabobankDescription' => 'Select this when you\'re importing Rabobank CSV export files.',
|
||||
'csv_specifix_Dummy' => 'Checking this has no effect whatsoever.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which'
|
||||
. ' account the transactions in the CSV belong to.',
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
|
||||
// create new stuff:
|
||||
'create_new_withdrawal' => 'Create new withdrawal',
|
||||
'create_new_deposit' => 'Create new deposit',
|
||||
@ -204,7 +192,6 @@ return [
|
||||
'create_new_piggy_bank' => 'Create new piggy bank',
|
||||
'create_new_bill' => 'Create new bill',
|
||||
|
||||
|
||||
// currencies:
|
||||
'create_currency' => 'Create a new currency',
|
||||
'edit_currency' => 'Edit currency ":name"',
|
||||
@ -476,26 +463,16 @@ return [
|
||||
'regular_tag' => 'Just a regular tag.',
|
||||
'balancing_act' => 'The tag takes at most two transactions; an expense and a transfer. They\'ll balance each other out.',
|
||||
'advance_payment' => 'The tag accepts one expense and any number of deposits aimed to repay the original expense.',
|
||||
|
||||
'delete_tag' => 'Delete tag ":tag"',
|
||||
'new_tag' => 'Make new tag',
|
||||
'edit_tag' => 'Edit tag ":tag"',
|
||||
'no_year' => 'No year set',
|
||||
'no_month' => 'No month set',
|
||||
'tag_title_nothing' => 'Default tags',
|
||||
'tag_title_balancingAct' => 'Balancing act tags',
|
||||
'tag_title_advancePayment' => 'Advance payment tags',
|
||||
'tags_introduction' => 'Usually tags are singular words, designed to quickly band items together using things like' .
|
||||
' <span class="label label-info">expensive</span>, <span class="label label-info">bill</span>' .
|
||||
' or <span class="label label-info">for-party</span>. In Firefly III, tags can have more properties' .
|
||||
' such as a date, description and location. This allows you to join transactions together in a more' .
|
||||
' meaningful way. For example, you could make a tag called <span class="label label-success">' .
|
||||
'Christmas dinner with friends</span> and add information about the restaurant. Such tags are "singular",' .
|
||||
' you would only use them for a single occasion, perhaps with multiple transactions.',
|
||||
'tags_group' => 'Tags group transactions together, which makes it possible to store reimbursements (in case you front money' .
|
||||
' for others) and other "balancing acts" where expenses are summed up (the payments on your new TV) or where ' .
|
||||
'expenses and deposits are cancelling each other out (buying something with saved money). It\'s all up to you.' .
|
||||
' Using tags the old-fashioned way is of course always possible. ',
|
||||
'tags_start' => 'Create a tag to get started or enter tags when creating new transactions.',
|
||||
'delete_tag' => 'Delete tag ":tag"',
|
||||
'new_tag' => 'Make new tag',
|
||||
'edit_tag' => 'Edit tag ":tag"',
|
||||
'no_year' => 'No year set',
|
||||
'no_month' => 'No month set',
|
||||
'tag_title_nothing' => 'Default tags',
|
||||
'tag_title_balancingAct' => 'Balancing act tags',
|
||||
'tag_title_advancePayment' => 'Advance payment tags',
|
||||
'tags_introduction' => 'Usually tags are singular words, designed to quickly band items together using things like <span class="label label-info">expensive</span>, <span class="label label-info">bill</span> or <span class="label label-info">for-party</span>. In Firefly III, tags can have more properties such as a date, description and location. This allows you to join transactions together in a more meaningful way. For example, you could make a tag called <span class="label label-success"> Christmas dinner with friends</span> and add information about the restaurant. Such tags are "singular", you would only use them for a single occasion, perhaps with multiple transactions.',
|
||||
'tags_group' => 'Tags group transactions together, which makes it possible to store reimbursements (in case you front money for others) and other "balancing acts" where expenses are summed up (the payments on your new TV) or where expenses and deposits are cancelling each other out (buying something with saved money). It\'s all up to you. Using tags the old-fashioned way is of course always possible.',
|
||||
'tags_start' => 'Create a tag to get started or enter tags when creating new transactions.',
|
||||
|
||||
];
|
||||
|
@ -88,16 +88,10 @@ return [
|
||||
'tag_areYouSure' => 'Are you sure you want to delete the tag ":tag"?',
|
||||
|
||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.' .
|
||||
'|All :count transactions connected to this account will be deleted as well.',
|
||||
'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.' .
|
||||
'|All :count piggy bank connected to this account will be deleted as well.',
|
||||
'bill_keep_transactions' => 'The only transaction connected to this bill will not be deleted.' .
|
||||
'|All :count transactions connected to this bill will spared deletion.',
|
||||
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.' .
|
||||
'|All :count transactions connected to this budget will spared deletion.',
|
||||
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.' .
|
||||
'|All :count transactions connected to this category will spared deletion.',
|
||||
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.' .
|
||||
'|All :count transactions connected to this tag will spared deletion.',
|
||||
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.',
|
||||
'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.',
|
||||
'bill_keep_transactions' => 'The only transaction connected to this bill will not be deleted.|All :count transactions connected to this bill will spared deletion.',
|
||||
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||
];
|
||||
|
@ -20,74 +20,65 @@ return [
|
||||
'main-content-end-text' => 'Remember that every page has a small question mark at the right top. Click it to get help about the page you\'re on.',
|
||||
|
||||
|
||||
'register' => 'register',
|
||||
'index' => 'The main index',
|
||||
'home' => 'home',
|
||||
'flush' => 'flush',
|
||||
'accounts-index' => 'accounts.index',
|
||||
'accounts-create' => 'accounts.create',
|
||||
'accounts-edit' => 'accounts.edit',
|
||||
'accounts-delete' => 'accounts.delete',
|
||||
'accounts-show' => 'accounts.show',
|
||||
'bills-index' => 'bills.index',
|
||||
'bills-rescan' => 'bills.rescan',
|
||||
'bills-create' => 'bills.create',
|
||||
'bills-edit' => 'bills.edit',
|
||||
'bills-delete' => 'bills.delete',
|
||||
'bills-show' => 'bills.show',
|
||||
'budgets-index' => 'budgets.index',
|
||||
'budgets-income' => 'budgets.income',
|
||||
'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-noCategory' => 'categories.noCategory',
|
||||
'csv-index' => 'Upload and import a CSV file',
|
||||
'currency-index' => 'currency.index',
|
||||
'currency-create' => 'currency.create',
|
||||
'currency-edit' => 'currency.edit',
|
||||
'currency-delete' => 'currency.delete',
|
||||
'currency-default' => 'currency.default',
|
||||
'help-show' => 'help.show',
|
||||
'json-expense-accounts' => 'json.expense-accounts',
|
||||
'json-revenue-accounts' => 'json.revenue-accounts',
|
||||
'json-categories' => 'json.categories',
|
||||
'json-tags' => 'json.tags',
|
||||
'json-box-in' => 'json.box.in',
|
||||
'json-box-out' => 'json.box.out',
|
||||
'json-box-paid' => 'json.box.paid',
|
||||
'json-box-unpaid' => 'json.box.unpaid',
|
||||
'new-user-index' => 'new-user.index',
|
||||
'piggy-banks-index' => 'piggy-banks.index',
|
||||
'piggy-banks-addMoney' => 'piggy-banks.addMoney',
|
||||
'piggy-banks-removeMoney' => 'piggy-banks.removeMoney',
|
||||
'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-year' => 'reports.year',
|
||||
'reports-month' => 'reports.month',
|
||||
'search' => 'search',
|
||||
'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',
|
||||
'logout' => 'logout',
|
||||
'index' => 'index',
|
||||
'home' => 'home',
|
||||
'accounts-index' => 'accounts.index',
|
||||
'accounts-create' => 'accounts.create',
|
||||
'accounts-edit' => 'accounts.edit',
|
||||
'accounts-delete' => 'accounts.delete',
|
||||
'accounts-show' => 'accounts.show',
|
||||
'attachments-edit' => 'attachments.edit',
|
||||
'attachments-delete' => 'attachments.delete',
|
||||
'attachments-show' => 'attachments.show',
|
||||
'attachments-preview' => 'attachments.preview',
|
||||
'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',
|
||||
'csv-index' => 'csv.index',
|
||||
'csv-column-roles' => 'csv.column-roles',
|
||||
'csv-map' => 'csv.map',
|
||||
'csv-download-config-page' => 'csv.download-config-page',
|
||||
'csv-process' => 'csv.process',
|
||||
'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' => 'search',
|
||||
'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',
|
||||
];
|
||||
|
@ -14,7 +14,7 @@ return [
|
||||
'matchingAmount' => 'Amount',
|
||||
'lastMatch' => 'Last match',
|
||||
'expectedMatch' => 'Expected match',
|
||||
'automatch' => 'Automatch?',
|
||||
'automatch' => 'Auto match?',
|
||||
'repeat_freq' => 'Repeats',
|
||||
'description' => 'Description',
|
||||
'amount' => 'Amount',
|
||||
|
8
resources/lang/fr_FR/config.php
Normal file
8
resources/lang/fr_FR/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'fr, French, fr_FR, fr_FR.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
|
||||
];
|
@ -14,7 +14,7 @@ return [
|
||||
'matchingAmount' => 'Amount',
|
||||
'lastMatch' => 'Last match',
|
||||
'expectedMatch' => 'Expected match',
|
||||
'automatch' => 'Automatch?',
|
||||
'automatch' => 'Auto match?',
|
||||
'repeat_freq' => 'Repeats',
|
||||
'description' => 'Description',
|
||||
'amount' => 'Amount',
|
||||
|
8
resources/lang/nl_NL/config.php
Normal file
8
resources/lang/nl_NL/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'nl, Dutch, nl_NL, nl_NL.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e %B %Y',
|
||||
|
||||
];
|
@ -41,8 +41,8 @@ return [
|
||||
'store_new_tag' => 'Sla tag op',
|
||||
'update_tag' => 'Sla wijzigingen op',
|
||||
'no_location_set' => 'Zonder plaats',
|
||||
'location' => 'Plaats',
|
||||
'meta_data' => 'Metagegevens',
|
||||
'location' => 'Plaats',
|
||||
|
||||
// preferences
|
||||
'pref_home_screen_accounts' => 'Voorpaginarekeningen',
|
||||
@ -67,8 +67,7 @@ return [
|
||||
'new_password' => 'Nieuw wachtwoord',
|
||||
'new_password_again' => 'Nieuw wachtwoord (bevestiging)',
|
||||
'delete_your_account' => 'Verwijder je account',
|
||||
'delete_your_account_help' => 'Als je je account verwijderd worden ook al je rekeningen, transacties en <em>alle andere zaken</em> verwijderd.' .
|
||||
' Alles is dan WEG.',
|
||||
'delete_your_account_help' => 'Als je je account verwijdert worden ook al je rekeningen, transacties en <em>alle andere zaken</em> verwijderd. Alles is dan WEG.',
|
||||
'delete_your_account_password' => 'Voer je wachtwoord in om door te gaan.',
|
||||
'password' => 'Wachtwoord',
|
||||
'are_you_sure' => 'Zeker weten? Je kan niet meer terug!',
|
||||
@ -78,7 +77,8 @@ return [
|
||||
'should_change' => 'Vul ook echt een ander wachtwoord in.',
|
||||
'invalid_password' => 'Ongeldig wachtwoord!',
|
||||
|
||||
// attach
|
||||
|
||||
// attachments
|
||||
'nr_of_attachments' => 'Eén bijlage|:count bijlagen',
|
||||
'attachments' => 'Bijlagen',
|
||||
'edit_attachment' => 'Wijzig bijlage ":name"',
|
||||
@ -108,25 +108,15 @@ return [
|
||||
'csv_define_column_roles' => 'Bepaal kolominhoud',
|
||||
'csv_map_values' => 'Leg relaties met kolomwaardes',
|
||||
'csv_download_config' => 'Download CSV configuratiebestand.',
|
||||
'csv_index_text' => 'Met deze (en de komende) pagina\'s kan je kommagescheiden tekstbestanden importeren. Deze tool is gebaseerd '
|
||||
. 'op de prachtige tool van <a href="https://www.atlassian.com/">Atlassian</a>. Om te beginnen selecteer'
|
||||
. ' je jouw tekstbestand bij "CSV-bestand". '
|
||||
. 'Als je hulp nodig hebt, klik dan op het <i class="fa fa-question-circle"></i>-icoontje rechtsboven.',
|
||||
'csv_index_text' => 'Met deze (en de komende) pagina\'s kan je kommagescheiden tekstbestanden importeren. Deze tool is gebaseerd op de prachtige tool van <a href="https://www.atlassian.com/">Atlassian</a>. Om te beginnen selecteer je jouw tekstbestand bij "CSV-bestand". Als je hulp nodig hebt, klik dan op het <i class="fa fa-question-circle"></i>-icoontje rechtsboven.',
|
||||
'csv_index_beta_warning' => 'Deze tool is nog erg experimenteel. Wees dus voorzichtig.',
|
||||
'csv_header_help' => 'Zet hier een vinkje als de eerste rij van je tekstbestand bestaat uit kolomnamen,'
|
||||
. 'en niet uit daadwerkelijke gegevens.',
|
||||
'csv_date_help' => 'Het gebruikte datumformaat in jouw bestand. Gebruik het formaat zoals <a href="https://secure.'
|
||||
. 'php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">deze'
|
||||
. ' pagina</a> het uitlegt (Engels). Het standaardformaat kan omgaan met data zoals deze: ' . date('Ymd'),
|
||||
'csv_header_help' => 'Zet hier een vinkje als de eerste rij van het CSV-bestand de namen van de kolommen bevat',
|
||||
'csv_date_help' => 'Het gebruikte datumformaat in jouw bestand. Gebruik het formaat zoals <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">deze pagina</a> het uitlegt (Engels). Het standaardformaat kan omgaan met data zoals deze: :dateExample.',
|
||||
'csv_csv_file_help' => 'Voer hier je kommagescheiden tekstbestand in. Je kan er maar één tegelijkertijd invoeren.',
|
||||
'csv_csv_config_file_help' => 'Voer hier je configuratiebestand in. Als je deze niet hebt, geen zorgen. Latere stappen leggen dit uit.',
|
||||
'csv_upload_button' => 'Begin de import',
|
||||
'csv_column_roles_title' => 'Bepaal de inhoud van elke kolom',
|
||||
'csv_column_roles_text' => 'Firefly kan niet automatisch ontdekken wat elke kolom betekent. Je moet het zelf aangeven. Gebruik de'
|
||||
. ' voorbeeldgegevens als je het ook niet zeker weet. Klik op het <i class="fa fa-question-circle"></i>-icoontje '
|
||||
. 'rechtsboven om te ontdekken wat elke kolomsoort precies is. Als de kolominhoud een directe'
|
||||
. ' relatie heeft met gegevens'
|
||||
. ' die al in Firefly staan, gebruik dan het vinkje. Tijdens de volgende stap komt Firefly hier dan op terug.',
|
||||
'csv_column_roles_text' => 'Firefly kan niet automatisch ontdekken wat elke kolom betekent. Je moet het zelf aangeven. Gebruik de voorbeeldgegevens als je het ook niet zeker weet. Klik op het vraagteken-icoontje (rechtsboven) om te ontdekken wat elke kolomsoort precies is. Als de kolominhoud een directe relatie heeft met gegevens die al in Firefly staan, gebruik dan het vinkje. Tijdens de volgende stap komt Firefly hier dan op terug.',
|
||||
'csv_column_roles_table' => 'Kolominhoud',
|
||||
'csv_column' => 'CSV-kolom',
|
||||
'csv_column_name' => 'CSV-kolomnaam',
|
||||
@ -136,29 +126,24 @@ return [
|
||||
'csv_continue' => 'Naar de volgende stap',
|
||||
'csv_go_back' => 'Terug naar de vorige stap',
|
||||
'csv_map_title' => 'Leg relaties met kolomwaardes',
|
||||
'csv_map_text' => 'Sommige kolommen bevatten waardes die misschien al in Firefly bestaan. Selecteer hier de juiste combinaties'
|
||||
. 'zodat het importeren netjes aansluit bij je huidige gegevens.',
|
||||
'csv_map_text' => 'Sommige kolommen bevatten waardes die misschien al in Firefly bestaan. Selecteer hier de juiste combinaties zodat het importeren netjes aansluit bij je huidige gegevens.',
|
||||
'csv_field_value' => 'Veldwaarde',
|
||||
'csv_field_mapped_to' => 'Is gelijk aan',
|
||||
'csv_do_not_map' => 'Geen relatie',
|
||||
'csv_download_config_title' => 'Download importconfiguratie',
|
||||
'csv_download_config_text' => 'Firefly is klaar om je bestand te importeren. De instellingen en selecties die je zojuist hebt gemaakt' .
|
||||
' kan je downloaden en opslaan. Bij de volgende keer kan je dit bestand ook uploaden. Als je' .
|
||||
' kommagescheiden bestand dezelfde indeling heeft, zullen alle selecties goed staan. Dat scheelt weer!',
|
||||
'csv_more_information_text' => 'Ook als het importeren fout gaat is dit bestand handig. Na het importeren krijg je nogmaals' .
|
||||
' de gelegenheid dit bestand te downloaden.',
|
||||
'csv_download_config_text' => 'Alles wat je nu hebt zitten instellen kan je downloaden als configuratiebestand voor de volgende keer. Klik op de knop om dit te doen.',
|
||||
'csv_more_information_text' => 'Ook als het importeren fout gaat is dit bestand handig. Na het importeren krijg je nogmaals de gelegenheid dit bestand te downloaden.',
|
||||
'csv_do_download_config' => 'Download het configuratiebestand',
|
||||
'csv_empty_description' => '(geen beschrijving)',
|
||||
'csv_upload_form' => 'CSV upload formulier',
|
||||
'csv_index_unsupported_warning' => 'Het volgende wordt nog niet ondersteund:',
|
||||
'csv_unsupported_map' => 'The importer cannot map the column ":columnRole" to existing values in the database.',
|
||||
'csv_unsupported_value' => 'The importer does not know how to handle values in columns marked as ":columnRole".',
|
||||
'csv_cannot_store_value' => 'The importer has not reserved space for columns marked ":columnRole" and will be incapable of processing them.',
|
||||
'csv_unsupported_map' => 'De tool kan de kolom ":columnRole" niet koppelen aan bestaande gegevens in de database.',
|
||||
'csv_unsupported_value' => 'Firefly kan niet omgaan met kolommen gemarkeerd als ":columnRole".',
|
||||
'csv_cannot_store_value' => 'Firefly heeft geen ruimte gereserveerd voor kolommen gemarkeert als ":columnRole" en kan ze helaas niet verwerken.',
|
||||
'csv_process_title' => 'Het importeren is klaar',
|
||||
'csv_process_text' => ':rows rijen zijn verwerkt.',
|
||||
'csv_row' => 'Rij',
|
||||
'csv_import_with_errors' => 'Er was één fout. Deze foutmelding is mogelijk in het Engels.|Er zijn :errors fouten opgetreden. De foutmeldingen'
|
||||
. ' zijn mogelijk in het Engels.',
|
||||
'csv_import_with_errors' => 'Er ging één ding fout.|Er gingen :errors dingen fout.',
|
||||
'csv_error_see_logs' => 'De logboeken bevatten mogelijk meer details.',
|
||||
'csv_process_new_entries' => 'Firefly heeft :imported nieuwe transactie(s) gemaakt.',
|
||||
'csv_start_over' => 'Begin opnieuw',
|
||||
@ -194,8 +179,7 @@ return [
|
||||
'csv_specifix_RabobankDescription' => 'Vink dit aan als je Rabobank bestanden importeert.',
|
||||
'csv_specifix_Dummy' => 'Dit vinkje doet niks (dummy).',
|
||||
'csv_import_account_help' => 'Als jouw CSV bestand geen referenties bevat naar jouw rekening(en), geef dan hier aan om welke rekening het gaat.',
|
||||
'csv_date_parse_error' => 'Kan geen chocola maken van ":value" (met hulp van configuratie ":format").' .
|
||||
' Weet je zeker dat je CSV bestand geen fouten bevat?',
|
||||
'csv_date_parse_error' => 'Firefly kan van ":value" geen datum maken, gegeven het formaat ":format". Weet je zeker dat je CSV goed is?',
|
||||
|
||||
// create new stuff:
|
||||
'create_new_withdrawal' => 'Nieuwe uitgave',
|
||||
@ -235,7 +219,7 @@ return [
|
||||
'createBudget' => 'Maak nieuw budget',
|
||||
'inactiveBudgets' => 'Inactieve budgetten',
|
||||
'without_budget_between' => 'Transacties zonder budget tussen :start en :end',
|
||||
'budget_in_month' => ':name in :month',
|
||||
'budget_in_month' => ':naam in :maand',
|
||||
'delete_budget' => 'Verwijder budget ":name"',
|
||||
'edit_budget' => 'Wijzig budget ":name"',
|
||||
'update_amount' => 'Bedrag bijwerken',
|
||||
@ -243,8 +227,8 @@ return [
|
||||
|
||||
// bills:
|
||||
'delete_bill' => 'Verwijder contract ":name"',
|
||||
'update_bill' => 'Wijzig contract',
|
||||
'edit_bill' => 'Wijzig contract ":name"',
|
||||
'update_bill' => 'Wijzig contract',
|
||||
'store_new_bill' => 'Sla nieuw contract op',
|
||||
|
||||
// accounts:
|
||||
@ -252,265 +236,242 @@ return [
|
||||
'details_for_expense' => 'Overzicht voor crediteur ":name"',
|
||||
'details_for_revenue' => 'Overzicht voor debiteur ":name"',
|
||||
'details_for_cash' => 'Overzicht voor contant geldrekening ":name"',
|
||||
|
||||
'store_new_asset_account' => 'Sla nieuwe betaalrekening op',
|
||||
'store_new_expense_account' => 'Sla nieuwe crediteur op',
|
||||
'store_new_revenue_account' => 'Sla nieuwe debiteur op',
|
||||
|
||||
'edit_asset_account' => 'Wijzig betaalrekening ":name"',
|
||||
'edit_expense_account' => 'Wijzig crediteur ":name"',
|
||||
'edit_revenue_account' => 'Wijzig debiteur ":name"',
|
||||
|
||||
'delete_asset_account' => 'Verwijder betaalrekening ":name"',
|
||||
'delete_expense_account' => 'Verwijder crediteur ":name"',
|
||||
'delete_revenue_account' => 'Verwijder debiteur ":name"',
|
||||
|
||||
'asset_deleted' => 'Betaalrekening ":name" is verwijderd.',
|
||||
'expense_deleted' => 'Crediteur ":name" is verwijderd.',
|
||||
'revenue_deleted' => 'Debiteur ":name" is verwijderd.',
|
||||
|
||||
'update_asset_account' => 'Wijzig betaalrekening',
|
||||
'update_expense_account' => 'Wijzig crediteur',
|
||||
'update_revenue_account' => 'Wijzig debiteur',
|
||||
|
||||
'make_new_asset_account' => 'Nieuwe betaalrekening',
|
||||
'make_new_expense_account' => 'Nieuwe crediteur',
|
||||
'make_new_revenue_account' => 'Nieuwe debiteur',
|
||||
|
||||
'asset_accounts' => 'Betaalrekeningen',
|
||||
'expense_accounts' => 'Crediteuren',
|
||||
'revenue_accounts' => 'Debiteuren',
|
||||
'account_type' => 'Account type',
|
||||
|
||||
// some extra help:
|
||||
'accountExtraHelp_asset' => '',
|
||||
'accountExtraHelp_expense' =>
|
||||
'Een crediteur is een persoon of een bedrijf waar je geld aan moet betalen. Je staat bij ze in het krijt. Een verwarrende' .
|
||||
' term misschien, maar zo werkt het nou eenmaal. De supermarkt, je huurbaas of de bank zijn crediteuren. Jouw ' .
|
||||
'geld (krediet) gaat naar hen toe. De term komt uit de wereld van de boekhouding. De uitgaves die je hier ziet zijn ' .
|
||||
'positief, want je kijkt uit hun perspectief. Zodra jij afrekent in een winkel, komt het geld er bij hen bij (positief).',
|
||||
'accountExtraHelp_revenue' => 'Als je geld krijgt van een bedrijf of een persoon is dat een debiteur. ' .
|
||||
'Dat kan salaris zijn, of een andere betaling. ' .
|
||||
' Ze hebben een schuld (debet) aan jou. De term komt uit de wereld van de boekhouding.' .
|
||||
' De inkomsten die je hier ziet zijn negatief, want je kijkt uit hun perspectief. Zodra een debiteur geld naar jou ' .
|
||||
'overmaakt gaat het er bij hen af (negatief).',
|
||||
'save_transactions_by_moving' => 'Bewaar deze transacties door ze aan een andere rekening te koppelen:',
|
||||
'store_new_asset_account' => 'Sla nieuwe betaalrekening op',
|
||||
'store_new_expense_account' => 'Sla nieuwe crediteur op',
|
||||
'store_new_revenue_account' => 'Sla nieuwe debiteur op',
|
||||
'edit_asset_account' => 'Wijzig betaalrekening ":name"',
|
||||
'edit_expense_account' => 'Wijzig crediteur ":name"',
|
||||
'edit_revenue_account' => 'Wijzig debiteur ":name"',
|
||||
'delete_asset_account' => 'Verwijder betaalrekening ":name"',
|
||||
'delete_expense_account' => 'Verwijder crediteur ":name"',
|
||||
'delete_revenue_account' => 'Verwijder debiteur ":name"',
|
||||
'asset_deleted' => 'Betaalrekening ":name" is verwijderd.',
|
||||
'expense_deleted' => 'Crediteur ":name" is verwijderd.',
|
||||
'revenue_deleted' => 'Debiteur ":name" is verwijderd.',
|
||||
'update_asset_account' => 'Wijzig betaalrekening',
|
||||
'update_expense_account' => 'Wijzig crediteur',
|
||||
'update_revenue_account' => 'Wijzig debiteur',
|
||||
'make_new_asset_account' => 'Nieuwe betaalrekening',
|
||||
'make_new_expense_account' => 'Nieuwe crediteur',
|
||||
'make_new_revenue_account' => 'Nieuwe debiteur',
|
||||
'asset_accounts' => 'Betaalrekeningen',
|
||||
'expense_accounts' => 'Crediteuren',
|
||||
'revenue_accounts' => 'Debiteuren',
|
||||
'accountExtraHelp_asset' => '',
|
||||
'accountExtraHelp_expense' => '',
|
||||
'accountExtraHelp_revenue' => '',
|
||||
'account_type' => 'Rekeningtype',
|
||||
'save_transactions_by_moving' => 'Bewaar deze transacties door ze aan een andere rekening te koppelen:',
|
||||
|
||||
// categories:
|
||||
'new_category' => 'Nieuwe categorie',
|
||||
'create_new_category' => 'Nieuwe categorie',
|
||||
'without_category' => 'Zonder categorie',
|
||||
'update_category' => 'Wijzig categorie',
|
||||
'edit_category' => 'Wijzig categorie ":name"',
|
||||
'categories' => 'Categorieën',
|
||||
'no_category' => '(geen categorie)',
|
||||
'category' => 'Categorie',
|
||||
'delete_category' => 'Verwijder categorie ":name"',
|
||||
'store_category' => 'Sla nieuwe categorie op',
|
||||
'new_category' => 'Nieuwe categorie',
|
||||
'create_new_category' => 'Nieuwe categorie',
|
||||
'without_category' => 'Zonder categorie',
|
||||
'update_category' => 'Wijzig categorie',
|
||||
'categories' => 'Categorieën',
|
||||
'edit_category' => 'Wijzig categorie ":name"',
|
||||
'no_category' => '(geen categorie)',
|
||||
'category' => 'Categorie',
|
||||
'delete_category' => 'Verwijder categorie ":name"',
|
||||
'store_category' => 'Sla nieuwe categorie op',
|
||||
|
||||
// transactions:
|
||||
'update_withdrawal' => 'Wijzig uitgave',
|
||||
'update_deposit' => 'Wijzig inkomsten',
|
||||
'update_transfer' => 'Wijzig overschrijving',
|
||||
'delete_withdrawal' => 'Verwijder uitgave ":description"',
|
||||
'delete_deposit' => 'Verwijder inkomsten ":description"',
|
||||
'delete_transfer' => 'Verwijder overschrijving ":description"',
|
||||
'update_withdrawal' => 'Wijzig uitgave',
|
||||
'update_deposit' => 'Wijzig inkomsten',
|
||||
'update_transfer' => 'Wijzig overschrijving',
|
||||
'delete_withdrawal' => 'Verwijder uitgave ":description"',
|
||||
'delete_deposit' => 'Verwijder inkomsten ":description"',
|
||||
'delete_transfer' => 'Verwijder overschrijving ":description"',
|
||||
|
||||
// new user:
|
||||
'welcome' => 'Welkom bij Firefly!',
|
||||
'createNewAsset' => 'Maak om te beginnen een nieuwe betaalrekening. Dit is je start van je financiële beheer.',
|
||||
'createNewAssetButton' => 'Maak een nieuwe betaalrekening',
|
||||
|
||||
'welcome' => 'Welkom bij Firefly!',
|
||||
'createNewAsset' => 'Maak om te beginnen een nieuwe betaalrekening .' .
|
||||
'Hiermee kan je nieuwe transacties opslaan en beginnen met het beheren van je geld',
|
||||
'createNewAssetButton' => 'Maak een nieuwe betaalrekening',
|
||||
|
||||
// home page:
|
||||
'yourAccounts' => 'Je betaalrekeningen',
|
||||
'budgetsAndSpending' => 'Budgetten en uitgaven',
|
||||
'savings' => 'Sparen',
|
||||
'markAsSavingsToContinue' => 'Om hier wat te zien stel je je betaalrekeningen in als "spaarrekening".',
|
||||
'createPiggyToContinue' => 'Maak spaarpotjes om hier iets te zien.',
|
||||
'newWithdrawal' => 'Nieuwe uitgave',
|
||||
'newDeposit' => 'Nieuwe inkomsten',
|
||||
'newTransfer' => 'Nieuwe overschrijving',
|
||||
'moneyIn' => 'Inkomsten',
|
||||
'moneyOut' => 'Uitgaven',
|
||||
'billsToPay' => 'Openstaande contracten',
|
||||
'billsPaid' => 'Betaalde contracten',
|
||||
'viewDetails' => 'Meer info',
|
||||
'divided' => 'verdeeld',
|
||||
'toDivide' => 'te verdelen',
|
||||
'yourAccounts' => 'Je betaalrekeningen',
|
||||
'budgetsAndSpending' => 'Budgetten en uitgaven',
|
||||
'savings' => 'Sparen',
|
||||
'markAsSavingsToContinue' => 'Om hier wat te zien stel je je betaalrekeningen in als "spaarrekening".',
|
||||
'createPiggyToContinue' => 'Maak spaarpotjes om hier iets te zien.',
|
||||
'newWithdrawal' => 'Nieuwe uitgave',
|
||||
'newDeposit' => 'Nieuwe inkomsten',
|
||||
'newTransfer' => 'Nieuwe overschrijving',
|
||||
'moneyIn' => 'Inkomsten',
|
||||
'moneyOut' => 'Uitgaven',
|
||||
'billsToPay' => 'Openstaande contracten',
|
||||
'billsPaid' => 'Betaalde contracten',
|
||||
'viewDetails' => 'Meer info',
|
||||
'divided' => 'verdeeld',
|
||||
'toDivide' => 'te verdelen',
|
||||
|
||||
// menu and titles, should be recycled as often as possible:
|
||||
'toggleNavigation' => 'Navigatie aan of uit',
|
||||
'currency' => 'Valuta',
|
||||
'preferences' => 'Voorkeuren',
|
||||
'logout' => 'Uitloggen',
|
||||
'searchPlaceholder' => 'Zoeken...',
|
||||
'dashboard' => 'Dashboard',
|
||||
'currencies' => 'Valuta',
|
||||
'accounts' => 'Rekeningen',
|
||||
'Asset account' => 'Betaalrekening',
|
||||
'Default account' => 'Betaalrekening',
|
||||
'Expense account' => 'Crediteur',
|
||||
'Revenue account' => 'Debiteur',
|
||||
'Initial balance account' => 'Startbalansrekening',
|
||||
'budgets' => 'Budgetten',
|
||||
'tags' => 'Tags',
|
||||
'reports' => 'Overzichten',
|
||||
'transactions' => 'Transacties',
|
||||
'expenses' => 'Uitgaven',
|
||||
'income' => 'Inkomsten',
|
||||
'transfers' => 'Overschrijvingen',
|
||||
'moneyManagement' => 'Geldbeheer',
|
||||
'piggyBanks' => 'Spaarpotjes',
|
||||
'bills' => 'Contracten',
|
||||
'createNew' => 'Nieuw',
|
||||
'withdrawal' => 'Uitgave',
|
||||
'deposit' => 'Inkomsten',
|
||||
'account' => 'Rekening',
|
||||
'transfer' => 'Overschrijving',
|
||||
'Withdrawal' => 'Uitgave',
|
||||
'Deposit' => 'Inkomsten',
|
||||
'Transfer' => 'Overschrijving',
|
||||
'profile' => 'Profiel',
|
||||
'bill' => 'Contract',
|
||||
'yes' => 'Ja',
|
||||
'no' => 'Nee',
|
||||
'amount' => 'Bedrag',
|
||||
'newBalance' => 'Nieuw saldo',
|
||||
'overview' => 'Overzicht',
|
||||
'saveOnAccount' => 'Sparen op rekening',
|
||||
'unknown' => 'Onbekend',
|
||||
'daily' => 'Dagelijks',
|
||||
'weekly' => 'Wekelijks',
|
||||
'monthly' => 'Maandelijks',
|
||||
'quarterly' => 'Elk kwartaal',
|
||||
'half-year' => 'Elk half jaar',
|
||||
'yearly' => 'Jaarlijks',
|
||||
'sum_of_year' => 'Som van jaar',
|
||||
'average_of_year' => 'Gemiddelde in jaar',
|
||||
'sum_of_years' => 'Som van jaren',
|
||||
'average_of_years' => 'Gemiddelde in jaren',
|
||||
'toggleNavigation' => 'Navigatie aan of uit',
|
||||
'currency' => 'Valuta',
|
||||
'preferences' => 'Voorkeuren',
|
||||
'logout' => 'Uitloggen',
|
||||
'searchPlaceholder' => 'Zoeken...',
|
||||
'dashboard' => 'Dashboard',
|
||||
'currencies' => 'Valuta',
|
||||
'accounts' => 'Rekeningen',
|
||||
'Asset account' => 'Betaalrekening',
|
||||
'Default account' => 'Betaalrekening',
|
||||
'Expense account' => 'Crediteur',
|
||||
'Revenue account' => 'Debiteur',
|
||||
'Initial balance account' => 'Startbalansrekening',
|
||||
'budgets' => 'Budgetten',
|
||||
'tags' => 'Tags',
|
||||
'reports' => 'Overzichten',
|
||||
'transactions' => 'Transacties',
|
||||
'expenses' => 'Uitgaven',
|
||||
'income' => 'Inkomsten',
|
||||
'transfers' => 'Overschrijvingen',
|
||||
'moneyManagement' => 'Geldbeheer',
|
||||
'piggyBanks' => 'Spaarpotjes',
|
||||
'bills' => 'Contracten',
|
||||
'createNew' => 'Nieuw',
|
||||
'withdrawal' => 'Uitgave',
|
||||
'deposit' => 'Inkomsten',
|
||||
'account' => 'Rekening',
|
||||
'transfer' => 'Overschrijving',
|
||||
'Withdrawal' => 'Uitgave',
|
||||
'Deposit' => 'Inkomsten',
|
||||
'Transfer' => 'Overschrijving',
|
||||
'bill' => 'Contract',
|
||||
'yes' => 'Ja',
|
||||
'no' => 'Nee',
|
||||
'amount' => 'Bedrag',
|
||||
'newBalance' => 'Nieuw saldo',
|
||||
'overview' => 'Overzicht',
|
||||
'saveOnAccount' => 'Sparen op rekening',
|
||||
'unknown' => 'Onbekend',
|
||||
'daily' => 'Dagelijks',
|
||||
'weekly' => 'Wekelijks',
|
||||
'monthly' => 'Maandelijks',
|
||||
'quarterly' => 'Elk kwartaal',
|
||||
'half-year' => 'Elk half jaar',
|
||||
'yearly' => 'Jaarlijks',
|
||||
'profile' => 'Profiel',
|
||||
|
||||
// reports:
|
||||
'report_default' => 'Standaard financieel rapport (:start tot :end)',
|
||||
'quick_link_reports' => 'Snelle links',
|
||||
'quick_link_default_report' => 'Standaard financieel rapport',
|
||||
'report_this_month_quick' => 'Deze maand, alle rekeningen',
|
||||
'report_this_year_quick' => 'Dit jaar, alle rekeningen',
|
||||
'report_all_time_quick' => 'Gehele periode, alle rekeningen',
|
||||
'reports_can_bookmark' => 'Je kan rapporten aan je favorieten toevoegen.',
|
||||
'incomeVsExpenses' => 'Inkomsten tegenover uitgaven',
|
||||
'accountBalances' => 'Rekeningsaldi',
|
||||
'balanceStartOfYear' => 'Saldo aan het begin van het jaar',
|
||||
'balanceEndOfYear' => 'Saldo aan het einde van het jaar',
|
||||
'balanceStartOfMonth' => 'Saldo aan het begin van de maand',
|
||||
'balanceEndOfMonth' => 'Saldo aan het einde van de maand',
|
||||
'balanceStart' => 'Saldo aan het begin van de periode',
|
||||
'balanceEnd' => 'Saldo aan het einde van de periode',
|
||||
'reportsOwnAccounts' => 'Overzichten voor je eigen betaalrekeningen',
|
||||
'reportsOwnAccountsAndShared' => 'Overzichten voor je eigen betaalrekeningen en gedeelde rekeningen',
|
||||
'splitByAccount' => 'Per betaalrekening',
|
||||
'balancedByTransfersAndTags' => 'Gecorrigeerd met overschrijvingen en tags',
|
||||
'coveredWithTags' => 'Gecorrigeerd met tags',
|
||||
'leftUnbalanced' => 'Ongecorrigeerd',
|
||||
'expectedBalance' => 'Verwacht saldo',
|
||||
'outsideOfBudgets' => 'Buiten budgetten',
|
||||
'leftInBudget' => 'Over van budget',
|
||||
'sumOfSums' => 'Alles bij elkaar',
|
||||
'noCategory' => '(zonder categorie)',
|
||||
'notCharged' => '(Nog) niet betaald',
|
||||
'inactive' => 'Niet actief',
|
||||
'difference' => 'Verschil',
|
||||
'in' => 'In',
|
||||
'out' => 'Uit',
|
||||
'topX' => 'top :number',
|
||||
'showTheRest' => 'Laat alles zien',
|
||||
'hideTheRest' => 'Laat alleen de top :number zien',
|
||||
'categories_earned_in_year' => 'Categorieën (inkomsten)',
|
||||
'categories_spent_in_year' => 'Categorieën (uitgaven)',
|
||||
'report_type' => 'Rapporttype',
|
||||
'report_type_default' => 'Standard financieel rapport',
|
||||
'report_included_accounts' => 'Accounts in rapport',
|
||||
'report_date_range' => 'Datumbereik',
|
||||
'report_include_help' => 'Overboekingen naar gedeelde rekeningen tellen als uitgave. Overboekingen van gedeelde rekeningen tellen als inkomsten.',
|
||||
'report_preset_ranges' => 'Standaardbereik',
|
||||
'shared' => 'Gedeeld',
|
||||
|
||||
'report_default' => 'Standaard financieel rapport (:start tot :end)',
|
||||
'quick_link_reports' => 'Snelle links',
|
||||
'quick_link_default_report' => 'Standaard financieel rapport',
|
||||
'report_this_month_quick' => 'Deze maand, alle rekeningen',
|
||||
'report_this_year_quick' => 'Dit jaar, alle rekeningen',
|
||||
'report_all_time_quick' => 'Gehele periode, alle rekeningen',
|
||||
'reports_can_bookmark' => 'Je kan rapporten aan je favorieten toevoegen.',
|
||||
'incomeVsExpenses' => 'Inkomsten tegenover uitgaven',
|
||||
'accountBalances' => 'Rekeningsaldi',
|
||||
'balanceStartOfYear' => 'Saldo aan het begin van het jaar',
|
||||
'balanceEndOfYear' => 'Saldo aan het einde van het jaar',
|
||||
'balanceStartOfMonth' => 'Saldo aan het begin van de maand',
|
||||
'balanceEndOfMonth' => 'Saldo aan het einde van de maand',
|
||||
'balanceStart' => 'Saldo aan het begin van de periode',
|
||||
'balanceEnd' => 'Saldo aan het einde van de periode',
|
||||
'reportsOwnAccounts' => 'Overzichten voor je eigen betaalrekeningen',
|
||||
'reportsOwnAccountsAndShared' => 'Overzichten voor je eigen betaalrekeningen en gedeelde rekeningen',
|
||||
'splitByAccount' => 'Per betaalrekening',
|
||||
'balancedByTransfersAndTags' => 'Gecorrigeerd met overschrijvingen en tags',
|
||||
'coveredWithTags' => 'Gecorrigeerd met tags',
|
||||
'leftUnbalanced' => 'Ongecorrigeerd',
|
||||
'expectedBalance' => 'Verwacht saldo',
|
||||
'outsideOfBudgets' => 'Buiten budgetten',
|
||||
'leftInBudget' => 'Over van budget',
|
||||
'sumOfSums' => 'Alles bij elkaar',
|
||||
'noCategory' => '(zonder categorie)',
|
||||
'notCharged' => '(Nog) niet betaald',
|
||||
'inactive' => 'Niet actief',
|
||||
'difference' => 'Verschil',
|
||||
'in' => 'In',
|
||||
'out' => 'Uit',
|
||||
'topX' => 'top :number',
|
||||
'showTheRest' => 'Laat alles zien',
|
||||
'hideTheRest' => 'Laat alleen de top :number zien',
|
||||
'sum_of_year' => 'Som van jaar',
|
||||
'sum_of_years' => 'Som van jaren',
|
||||
'average_of_year' => 'Gemiddelde in jaar',
|
||||
'average_of_years' => 'Gemiddelde in jaren',
|
||||
'categories_earned_in_year' => 'Categorieën (inkomsten)',
|
||||
'categories_spent_in_year' => 'Categorieën (uitgaven)',
|
||||
'report_type' => 'Rapporttype',
|
||||
'report_type_default' => 'Standard financieel rapport',
|
||||
'report_included_accounts' => 'Accounts in rapport',
|
||||
'report_date_range' => 'Datumbereik',
|
||||
'report_include_help' => 'Overboekingen naar gedeelde rekeningen tellen als uitgave. Overboekingen van gedeelde rekeningen tellen als inkomsten.',
|
||||
'report_preset_ranges' => 'Standaardbereik',
|
||||
'shared' => 'Gedeeld',
|
||||
|
||||
// charts:
|
||||
'dayOfMonth' => 'Dag vd maand',
|
||||
'month' => 'Maand',
|
||||
'budget' => 'Budget',
|
||||
'spent' => 'Uitgegeven',
|
||||
'earned' => 'Verdiend',
|
||||
'overspent' => 'Teveel uitgegeven',
|
||||
'left' => 'Over',
|
||||
'noBudget' => '(geen budget)',
|
||||
'maxAmount' => 'Maximaal bedrag',
|
||||
'minAmount' => 'Minimaal bedrag',
|
||||
'billEntry' => 'Bedrag voor dit contract',
|
||||
'name' => 'Naam',
|
||||
'date' => 'Datum',
|
||||
'paid' => 'Betaald',
|
||||
'unpaid' => 'Niet betaald',
|
||||
'day' => 'Dag',
|
||||
'budgeted' => 'Gebudgetteerd',
|
||||
'period' => 'Periode',
|
||||
'balance' => 'Saldo',
|
||||
'summary' => 'Samenvatting',
|
||||
'sum' => 'Som',
|
||||
'average' => 'Gemiddeld',
|
||||
'balanceFor' => 'Saldo op :name',
|
||||
'dayOfMonth' => 'Dag vd maand',
|
||||
'month' => 'Maand',
|
||||
'budget' => 'Budget',
|
||||
'spent' => 'Uitgegeven',
|
||||
'earned' => 'Verdiend',
|
||||
'overspent' => 'Teveel uitgegeven',
|
||||
'left' => 'Over',
|
||||
'noBudget' => '(geen budget)',
|
||||
'maxAmount' => 'Maximaal bedrag',
|
||||
'minAmount' => 'Minimaal bedrag',
|
||||
'billEntry' => 'Bedrag voor dit contract',
|
||||
'name' => 'Naam',
|
||||
'date' => 'Datum',
|
||||
'paid' => 'Betaald',
|
||||
'unpaid' => 'Niet betaald',
|
||||
'day' => 'Dag',
|
||||
'budgeted' => 'Gebudgetteerd',
|
||||
'period' => 'Periode',
|
||||
'balance' => 'Saldo',
|
||||
'summary' => 'Samenvatting',
|
||||
'sum' => 'Som',
|
||||
'average' => 'Gemiddeld',
|
||||
'balanceFor' => 'Saldo op :name',
|
||||
|
||||
// piggy banks:
|
||||
'piggy_bank' => 'Spaarpotje',
|
||||
'new_piggy_bank' => 'Nieuw spaarpotje',
|
||||
'store_piggy_bank' => 'Sla spaarpotje op',
|
||||
'account_status' => 'Rekeningoverzicht',
|
||||
'left_for_piggy_banks' => 'Over voor spaarpotjes',
|
||||
'sum_of_piggy_banks' => 'Som van spaarpotjes',
|
||||
'saved_so_far' => 'Gespaard',
|
||||
'left_to_save' => 'Te sparen',
|
||||
'add_money_to_piggy_title' => 'Stop geld in spaarpotje ":name"',
|
||||
'remove_money_from_piggy_title' => 'Haal geld uit spaarpotje ":name"',
|
||||
'add' => 'Toevoegen',
|
||||
'remove' => 'Verwijderen',
|
||||
'max_amount_add' => 'Hooguit toe te voegen',
|
||||
'max_amount_remove' => 'Hooguit te verwijderen',
|
||||
'update_piggy_button' => 'Wijzig spaarpotje',
|
||||
'update_piggy_title' => 'Wijzig spaarpotje ":name"',
|
||||
'details' => 'Details',
|
||||
'events' => 'Gebeurtenissen',
|
||||
'target_amount' => 'Doelbedrag',
|
||||
'start_date' => 'Startdatum',
|
||||
'target_date' => 'Doeldatum',
|
||||
'no_target_date' => 'Geen doeldatum',
|
||||
'todo' => 'te doen',
|
||||
'table' => 'Tabel',
|
||||
'piggy_bank_not_exists' => 'Dit spaarpotje bestaat niet meer.',
|
||||
'add_any_amount_to_piggy' => 'Stop geld in dit spaarpotje om het doel van :amount te halen.',
|
||||
'add_set_amount_to_piggy' => 'Stop voor :date :amount in dit spaarpotje om hem op tijd te vullen.',
|
||||
'delete_piggy_bank' => 'Verwijder spaarpotje ":name"',
|
||||
'piggy_bank' => 'Spaarpotje',
|
||||
'new_piggy_bank' => 'Nieuw spaarpotje',
|
||||
'store_piggy_bank' => 'Sla spaarpotje op',
|
||||
'account_status' => 'Rekeningoverzicht',
|
||||
'left_for_piggy_banks' => 'Over voor spaarpotjes',
|
||||
'sum_of_piggy_banks' => 'Som van spaarpotjes',
|
||||
'saved_so_far' => 'Gespaard',
|
||||
'left_to_save' => 'Te sparen',
|
||||
'add_money_to_piggy_title' => 'Stop geld in spaarpotje ":name"',
|
||||
'remove_money_from_piggy_title' => 'Haal geld uit spaarpotje ":name"',
|
||||
'add' => 'Toevoegen',
|
||||
'remove' => 'Verwijderen',
|
||||
'max_amount_add' => 'Hooguit toe te voegen',
|
||||
'max_amount_remove' => 'Hooguit te verwijderen',
|
||||
'update_piggy_button' => 'Wijzig spaarpotje',
|
||||
'update_piggy_title' => 'Wijzig spaarpotje ":name"',
|
||||
'details' => 'Details',
|
||||
'events' => 'Gebeurtenissen',
|
||||
'target_amount' => 'Doelbedrag',
|
||||
'start_date' => 'Startdatum',
|
||||
'target_date' => 'Doeldatum',
|
||||
'no_target_date' => 'Geen doeldatum',
|
||||
'todo' => 'te doen',
|
||||
'table' => 'Tabel',
|
||||
'piggy_bank_not_exists' => 'Dit spaarpotje bestaat niet meer.',
|
||||
'add_any_amount_to_piggy' => 'Stop geld in dit spaarpotje om het doel van :amount te halen.',
|
||||
'add_set_amount_to_piggy' => 'Stop voor :date :amount in dit spaarpotje om hem op tijd te vullen.',
|
||||
'delete_piggy_bank' => 'Verwijder spaarpotje ":name"',
|
||||
|
||||
// tags
|
||||
'regular_tag' => 'Een gewone tag.',
|
||||
'balancing_act' => 'Er kunnen maar twee transacties worden getagged; een uitgaven en inkomsten. Ze balanceren elkaar.',
|
||||
'advance_payment' => 'Je kan een uitgave taggen en zoveel inkomsten om de uitgave (helemaal) te compenseren.',
|
||||
'delete_tag' => 'Verwijder tag ":tag"',
|
||||
'new_tag' => 'Maak nieuwe tag',
|
||||
'edit_tag' => 'Wijzig tag ":tag"',
|
||||
'no_year' => 'Zonder jaar',
|
||||
'no_month' => 'Zonder maand',
|
||||
'tag_title_nothing' => 'Standaard tags',
|
||||
'tag_title_balancingAct' => 'Balancerende tags',
|
||||
'tag_title_advancePayment' => 'Vooruitbetaalde tags',
|
||||
'tags_introduction' => 'Normaal gesproken zijn tags enkele woorden, gebruikt om gerelateerde zaken snel aan elkaar te plakken. ' .
|
||||
'<span class="label label-info">dure-aanschaf</span>, <span class="label label-info">rekening</span>, ' .
|
||||
'<span class="label label-info">feestje</span>. In Firefly III hebben tags meer betekenis en kan je er een datum' .
|
||||
', beschrijving en locatie aan geven. Daarmee kan je je transacties op een wat zinvollere manier aan elkaar ' .
|
||||
'koppelen. Je kan bijvoorbeeld een tag <span class="label label-success">Kerstdiner</span> maken en informatie over' .
|
||||
' het restaurant meenemen. Zulke tags zijn enkelvoudig; je gebruikt ze maar bij één gelegenheid.',
|
||||
'tags_group' => 'Omdat tags transacties groeperen kan je er teruggaves, vergoedingen en andere geldzaken mee aanduiden, zolang' .
|
||||
' de transacties elkaar "opheffen". Hoe je dit aanpakt is aan jou. De gewone manier kan natuurlijk ook.',
|
||||
'tags_start' => 'Maak hieronder een tag, of voer nieuwe tags in als je nieuwe transacties maakt.',
|
||||
'regular_tag' => 'Een gewone tag.',
|
||||
'balancing_act' => 'Er kunnen maar twee transacties worden getagged; een uitgaven en inkomsten. Ze balanceren elkaar.',
|
||||
'advance_payment' => 'Je kan een uitgave taggen en zoveel inkomsten om de uitgave (helemaal) te compenseren.',
|
||||
'delete_tag' => 'Verwijder tag ":tag"',
|
||||
'new_tag' => 'Maak nieuwe tag',
|
||||
'edit_tag' => 'Wijzig tag ":tag"',
|
||||
'no_year' => 'Zonder jaar',
|
||||
'no_month' => 'Zonder maand',
|
||||
'tag_title_nothing' => 'Standaard tags',
|
||||
'tag_title_balancingAct' => 'Balancerende tags',
|
||||
'tag_title_advancePayment' => 'Vooruitbetaalde tags',
|
||||
'tags_introduction' => 'Normaal gesproken zijn tags enkele woorden, gebruikt om gerelateerde zaken snel aan elkaar te plakken. <span class="label label-info">dure-aanschaf</span>, <span class="label label-info">rekening</span>, <span class="label label-info">feestje</span>. In Firefly III hebben tags meer betekenis en kan je er een datum, beschrijving en locatie aan geven. Daarmee kan je je transacties op een wat zinvollere manier aan elkaar koppelen. Je kan bijvoorbeeld een tag <span class="label label-success">Kerstdiner</span> maken en informatie over het restaurant meenemen. Zulke tags zijn enkelvoudig; je gebruikt ze maar bij één gelegenheid.',
|
||||
'tags_group' => 'Omdat tags transacties groeperen kan je er teruggaves, vergoedingen en andere geldzaken mee aanduiden, zolang de transacties elkaar "opheffen". Hoe je dit aanpakt is aan jou. De gewone manier kan natuurlijk ook.',
|
||||
'tags_start' => 'Maak hieronder een tag, of voer nieuwe tags in als je nieuwe transacties maakt.',
|
||||
|
||||
];
|
||||
|
@ -54,21 +54,20 @@ return [
|
||||
'specifix' => 'Bank- or of bestandsspecifieke opties',
|
||||
'csv_import_account' => 'Standaard rekening voor importeren',
|
||||
'attachments[]' => 'Bijlagen',
|
||||
'store_new_withdrawal' => 'Nieuwe uitgave opslaan',
|
||||
'store_new_deposit' => 'Nieuwe inkomsten opslaan',
|
||||
'store_new_transfer' => 'Nieuwe overschrijving opslaan',
|
||||
'add_new_withdrawal' => 'Maak nieuwe uitgave',
|
||||
'add_new_deposit' => 'Maak nieuwe inkomsten',
|
||||
'add_new_transfer' => 'Maak nieuwe overschrijving',
|
||||
'noPiggybank' => '(geen spaarpotje)',
|
||||
'noBudget' => '(geen budget)',
|
||||
'title' => 'Titel',
|
||||
'notes' => 'Notities',
|
||||
'filename' => 'Bestandsnaam',
|
||||
'mime' => 'Bestandstype',
|
||||
'size' => 'Grootte',
|
||||
|
||||
'title' => 'Titel',
|
||||
'notes' => 'Notities',
|
||||
'filename' => 'Bestandsnaam',
|
||||
'mime' => 'Bestandstype',
|
||||
'size' => 'Grootte',
|
||||
|
||||
'store_new_withdrawal' => 'Nieuwe uitgave opslaan',
|
||||
'store_new_deposit' => 'Nieuwe inkomsten opslaan',
|
||||
'store_new_transfer' => 'Nieuwe overschrijving opslaan',
|
||||
'add_new_withdrawal' => 'Maak nieuwe uitgave',
|
||||
'add_new_deposit' => 'Maak nieuwe inkomsten',
|
||||
'add_new_transfer' => 'Maak nieuwe overschrijving',
|
||||
'noPiggybank' => '(geen spaarpotje)',
|
||||
'noBudget' => '(geen budget)',
|
||||
|
||||
'delete_account' => 'Verwijder rekening ":name"',
|
||||
'delete_bill' => 'Verwijder contract ":name"',
|
||||
@ -78,7 +77,6 @@ return [
|
||||
'delete_journal' => 'Verwijder transactie met omschrijving ":description"',
|
||||
'delete_attachment' => 'Verwijder bijlage ":name"',
|
||||
|
||||
'tag_areYouSure' => 'Weet je zeker dat je de tag met naam ":tag" wilt verwijderen?',
|
||||
'attachment_areYouSure' => 'Weet je zeker dat je de bijlage met naam ":name" wilt verwijderen?',
|
||||
'account_areYouSure' => 'Weet je zeker dat je de rekening met naam ":name" wilt verwijderen?',
|
||||
'bill_areYouSure' => 'Weet je zeker dat je het contract met naam ":name" wilt verwijderen?',
|
||||
@ -87,18 +85,13 @@ return [
|
||||
'currency_areYouSure' => 'Weet je zeker dat je de valuta met naam ":name" wilt verwijderen?',
|
||||
'piggyBank_areYouSure' => 'Weet je zeker dat je het spaarpotje met naam ":name" wilt verwijderen?',
|
||||
'journal_areYouSure' => 'Weet je zeker dat je de transactie met naam ":description" wilt verwijderen?',
|
||||
'tag_areYouSure' => 'Weet je zeker dat je de tag met naam ":tag" wilt verwijderen?',
|
||||
|
||||
'permDeleteWarning' => 'Dingen verwijderen uit Firefly is permanent en kan niet ongedaan gemaakt worden.',
|
||||
'also_delete_transactions' => 'Ook de enige transactie verbonden aan deze rekening wordt verwijderd.' .
|
||||
'|Ook alle :count transacties verbonden aan deze rekening worden verwijderd.',
|
||||
'also_delete_piggyBanks' => 'Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.' .
|
||||
'|Ook alle :count spaarpotjes verbonden aan deze rekening worden verwijderd.',
|
||||
'bill_keep_transactions' => 'De transactie verbonden aan dit contract blijft bewaard.' .
|
||||
'|De :count transacties verbonden aan dit contract blijven bewaard.',
|
||||
'budget_keep_transactions' => 'De transactie verbonden aan dit budget blijft bewaard.' .
|
||||
'|De :count transacties verbonden aan dit budget blijven bewaard.',
|
||||
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.' .
|
||||
'|De :count transacties verbonden aan deze categorie blijven bewaard.',
|
||||
'tag_keep_transactions' => 'De transactie verbonden aan deze tag blijft bewaard.' .
|
||||
'|De :count transacties verbonden aan deze tag blijven bewaard.',
|
||||
'also_delete_transactions' => 'Ook de enige transactie verbonden aan deze rekening wordt verwijderd.|Ook alle :count transacties verbonden aan deze rekening worden verwijderd.',
|
||||
'also_delete_piggyBanks' => 'Ook het spaarpotje verbonden aan deze rekening wordt verwijderd.|Ook alle :count spaarpotjes verbonden aan deze rekening worden verwijderd.',
|
||||
'bill_keep_transactions' => 'De transactie verbonden aan dit contract blijft bewaard.|De :count transacties verbonden aan dit contract blijven bewaard.',
|
||||
'budget_keep_transactions' => 'De transactie verbonden aan dit budget blijft bewaard.|De :count transacties verbonden aan dit budget blijven bewaard.',
|
||||
'category_keep_transactions' => 'De transactie verbonden aan deze categorie blijft bewaard.|De :count transacties verbonden aan deze categorie blijven bewaard.',
|
||||
'tag_keep_transactions' => 'De transactie verbonden aan deze tag blijft bewaard.|De :count transacties verbonden aan deze tag blijven bewaard.',
|
||||
];
|
||||
|
@ -19,7 +19,7 @@ return [
|
||||
'main-content-end-title' => 'Einde!',
|
||||
'main-content-end-text' => 'Elke pagina heeft een vraagtekentje rechtsboven. Gebruik deze voor meer hulp. Veel plezier!',
|
||||
|
||||
'csv-index' => 'csv-index',
|
||||
|
||||
'register' => 'register',
|
||||
'index' => 'index',
|
||||
'home' => 'home',
|
||||
@ -48,6 +48,7 @@ return [
|
||||
'categories-delete' => 'categories.delete',
|
||||
'categories-show' => 'categories.show',
|
||||
'categories-noCategory' => 'categories.noCategory',
|
||||
'csv-index' => 'csv-index',
|
||||
'currency-index' => 'currency.index',
|
||||
'currency-create' => 'currency.create',
|
||||
'currency-edit' => 'currency.edit',
|
||||
|
@ -1,80 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines contain the default error messages used by
|
||||
| the validator class. Some of these rules have multiple versions such
|
||||
| as the size rules. Feel free to tweak each of these messages here.
|
||||
|
|
||||
*/
|
||||
|
||||
'invalid_domain' => 'Kan niet registereren vanaf dit domein.',
|
||||
'file_already_attached' => 'Het geuploade bestand ":name" is al gelinkt aan deze transactie.',
|
||||
'file_attached' => 'Bestand met naam ":name" is met succes geuploaded.',
|
||||
'file_invalid_mime' => 'Bestand ":name" is van het type ":mime", en die kan je niet uploaden.',
|
||||
'file_too_large' => 'Bestand ":name" is te groot.',
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"array" => "The :attribute must be an array.",
|
||||
"unique_for_user" => "There already is an entry with this :attribute.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"accepted" => ":attribute moet geaccepteerd zijn.",
|
||||
"active_url" => ":attribute is geen geldige URL.",
|
||||
"after" => ":attribute moet een datum na :date zijn.",
|
||||
"alpha" => ":attribute mag alleen letters bevatten.",
|
||||
"alpha_dash" => ":attribute mag alleen letters, nummers, onderstreep(_) en strepen(-) bevatten.",
|
||||
"alpha_num" => ":attribute mag alleen letters en nummers bevatten.",
|
||||
"array" => ":attribute moet geselecteerde elementen bevatten.",
|
||||
"unique_for_user" => "Er is al een entry met deze :attribute.",
|
||||
"before" => ":attribute moet een datum voor :date zijn.",
|
||||
'unique_object_for_user' => 'Deze naam is al in gebruik',
|
||||
'unique_account_for_user' => 'This rekeningnaam is already in use',
|
||||
"between.numeric" => "The :attribute must be between :min and :max.",
|
||||
"between.file" => "The :attribute must be between :min and :max kilobytes.",
|
||||
"between.string" => "The :attribute must be between :min and :max characters.",
|
||||
"between.array" => "The :attribute must have between :min and :max items.",
|
||||
"boolean" => "The :attribute field must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute must be a valid email address.",
|
||||
"filled" => "The :attribute field is required.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
"max.numeric" => "The :attribute may not be greater than :max.",
|
||||
"max.file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"max.string" => "The :attribute may not be greater than :max characters.",
|
||||
"max.array" => "The :attribute may not have more than :max items.",
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min.numeric" => "The :attribute must be at least :min.",
|
||||
"min.file" => "The :attribute must be at least :min kilobytes.",
|
||||
"min.string" => "The :attribute must be at least :min characters.",
|
||||
"min.array" => "The :attribute must have at least :min items.",
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_with_all" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"required_without_all" => "The :attribute field is required when none of :values are present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size.numeric" => "The :attribute must be :size.",
|
||||
"size.file" => "The :attribute must be :size kilobytes.",
|
||||
"size.string" => "The :attribute must be :size characters.",
|
||||
"size.array" => "The :attribute must contain :size items.",
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
'string' => 'The :attribute must be a string.',
|
||||
"timezone" => "The :attribute must be a valid zone.",
|
||||
|
||||
"between.numeric" => ":attribute moet tussen :min en :max zijn.",
|
||||
"between.file" => ":attribute moet tussen :min en :max kilobytes zijn.",
|
||||
"between.string" => ":attribute moet tussen :min en :max karakters zijn.",
|
||||
"between.array" => ":attribute moet tussen :min en :max items bevatten.",
|
||||
"boolean" => ":attribute moet true of false zijn.",
|
||||
"confirmed" => ":attribute bevestiging komt niet overeen.",
|
||||
"date" => ":attribute moet een datum bevatten.",
|
||||
"date_format" => ":attribute moet een geldig datum formaat bevatten.",
|
||||
"different" => ":attribute en :other moeten verschillend zijn.",
|
||||
"digits" => ":attribute moet bestaan uit :digits cijfers.",
|
||||
"digits_between" => ":attribute moet bestaan uit minimaal :min en maximaal :max cijfers.",
|
||||
"email" => ":attribute is geen geldig e-mailadres.",
|
||||
"filled" => ":attribute is verplicht.",
|
||||
"exists" => ":attribute bestaat niet.",
|
||||
"image" => ":attribute moet een afbeelding zijn.",
|
||||
"in" => ":attribute is ongeldig.",
|
||||
"integer" => ":attribute moet een getal zijn.",
|
||||
"ip" => ":attribute moet een geldig IP-adres zijn.",
|
||||
'json' => 'De :attribute moet een JSON tekst zijn.',
|
||||
"max.numeric" => ":attribute mag niet hoger dan :max zijn.",
|
||||
"max.file" => ":attribute mag niet meer dan :max kilobytes zijn.",
|
||||
"max.string" => ":attribute mag niet uit meer dan :max karakters bestaan.",
|
||||
"max.array" => ":attribute mag niet meer dan :max items bevatten.",
|
||||
"mimes" => ":attribute moet een bestand zijn van het bestandstype :values.",
|
||||
"min.numeric" => ":attribute moet minimaal :min zijn.",
|
||||
"min.file" => ":attribute moet minimaal :min kilobytes zijn.",
|
||||
"min.string" => ":attribute moet minimaal :min karakters zijn.",
|
||||
"min.array" => ":attribute moet minimaal :min items bevatten.",
|
||||
"not_in" => "Het formaat van :attribute is ongeldig.",
|
||||
"numeric" => ":attribute moet een nummer zijn.",
|
||||
"regex" => ":attribute formaat is ongeldig.",
|
||||
"required" => ":attribute is verplicht.",
|
||||
"required_if" => ":attribute is verplicht indien :other gelijk is aan :value.",
|
||||
'required_unless' => ':attribute is verplicht tenzij :other gelijk is aan :values.',
|
||||
"required_with" => ":attribute is verplicht i.c.m. :values",
|
||||
"required_with_all" => ":attribute is verplicht i.c.m. :values",
|
||||
"required_without" => ":attribute is verplicht als :values niet ingevuld is.",
|
||||
"required_without_all" => ":attribute is verplicht als :values niet ingevuld zijn.",
|
||||
"same" => ":attribute en :other moeten overeenkomen.",
|
||||
"size.numeric" => ":attribute moet :size zijn.",
|
||||
"size.file" => ":attribute moet :size kilobyte zijn.",
|
||||
"size.string" => ":attribute moet :size karakters zijn.",
|
||||
"size.array" => ":attribute moet :size items bevatten.",
|
||||
"unique" => ":attribute is al in gebruik.",
|
||||
'string' => 'Het :attribute moet een tekenreeks zijn.',
|
||||
"url" => ":attribute is geen geldige URL.",
|
||||
"timezone" => "Het :attribute moet een geldige zone zijn.",
|
||||
];
|
||||
|
8
resources/lang/pt_BR/config.php
Normal file
8
resources/lang/pt_BR/config.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'locale' => 'pt_BR, pt_BR.utf8',
|
||||
'month' => '%B %Y',
|
||||
'month_and_day' => '%e de %B de %Y',
|
||||
|
||||
];
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
// general stuff
|
||||
// general stuff:
|
||||
'test' => 'Você selecionou Inglês',
|
||||
'close' => 'Fechar',
|
||||
'pleaseHold' => 'Por favor espere...',
|
||||
@ -60,14 +60,14 @@ return [
|
||||
'pref_languages_help' => 'Firefly III suporta muitos idiomas. Qual você prefere?',
|
||||
'pref_save_settings' => 'Salvar definições',
|
||||
|
||||
// profile
|
||||
// profile:
|
||||
'change_your_password' => 'Alterar sua senha',
|
||||
'delete_account' => 'Apagar conta',
|
||||
'current_password' => 'Senha atual',
|
||||
'new_password' => 'Nova senha',
|
||||
'new_password_again' => 'Nova senha (novamente)',
|
||||
'delete_your_account' => 'Apagar sua conta',
|
||||
'delete_your_account_help' => 'Exclusão da conta também excluirá todas as contas, transações, <em>qualquer coisa</em> que você poderia ter salvo em Firefly III. Tudo será perdido.',
|
||||
'delete_your_account_help' => 'Deleting your account will also delete any accounts, transactions, <em>anything</em> you might have saved into Firefly III. It\'ll be GONE.',
|
||||
'delete_your_account_password' => 'Coloque sua senha para continuar.',
|
||||
'password' => 'Senha',
|
||||
'are_you_sure' => 'Você tem certeza? Você não poderá desfazer isso.',
|
||||
@ -87,7 +87,7 @@ return [
|
||||
'attachment_deleted' => 'Anexo apagado ":name"',
|
||||
'upload_max_file_size' => 'Tamanho máximo do arquivo: :size',
|
||||
|
||||
// tour
|
||||
// tour:
|
||||
'prev' => 'Anterior',
|
||||
'next' => 'Próximo',
|
||||
'end-tour' => 'Fim do Tour',
|
||||
@ -101,7 +101,7 @@ return [
|
||||
'title_transfer' => 'Transferências',
|
||||
'title_transfers' => 'Transferências',
|
||||
|
||||
// csv import
|
||||
// csv import:
|
||||
'csv_import' => 'Importar arquivo CSV',
|
||||
'csv' => 'CSV',
|
||||
'csv_index_title' => 'Carregar e importar um arquivo CSV',
|
||||
@ -111,7 +111,7 @@ return [
|
||||
'csv_index_text' => 'This form allows you to import a CSV file with transactions into Firefly. It is based on the excellent CSV importer made by the folks at <a href="https://www.atlassian.com/">Atlassian</a>. Simply upload your CSV file and follow the instructions. If you would like to learn more, please click on the <i class="fa fa-question-circle"></i> button at the top of this page.',
|
||||
'csv_index_beta_warning' => 'Esta ferramenta está em beta. Por favor proceder com cautela',
|
||||
'csv_header_help' => 'Check this box when your CSV file\'s first row consists of column names, not actual data',
|
||||
'csv_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> indicates. The default value will parse dates that look like this: 20151201',
|
||||
'csv_date_help' => 'Date time format in your CSV. Follow the format like <a href="https://secure.php.net/manual/en/datetime.createfromformat.php#refsect1-datetime.createfromformat-parameters">this page</a> indicates. The default value will parse dates that look like this: :dateExample.',
|
||||
'csv_csv_file_help' => 'Select the CSV file here. You can only upload one file at a time',
|
||||
'csv_csv_config_file_help' => 'Select your CSV import configuration here. If you do not know what this is, ignore it. It will be explained later.',
|
||||
'csv_upload_button' => 'Iniciando importação do CSV',
|
||||
@ -181,8 +181,7 @@ return [
|
||||
'csv_import_account_help' => 'If your CSV file does NOT contain information about your asset account(s), use this dropdown to select to which account the transactions in the CSV belong to.',
|
||||
'csv_date_parse_error' => 'Could not parse a valid date from ":value", using the format ":format". Are you sure your CSV is correct?',
|
||||
|
||||
|
||||
// create new stuff
|
||||
// create new stuff:
|
||||
'create_new_withdrawal' => 'Criar nova retirada',
|
||||
'create_new_deposit' => 'Criar um novo depósito',
|
||||
'create_new_transfer' => 'Criar nova transferência',
|
||||
@ -192,27 +191,26 @@ return [
|
||||
'create_new_piggy_bank' => 'Criar novo cofrinho',
|
||||
'create_new_bill' => 'Criar nova fatura',
|
||||
|
||||
|
||||
// currencies
|
||||
// currencies:
|
||||
'create_currency' => 'Criar uma nova moeda',
|
||||
'edit_currency' => 'Editar moeda ":name"',
|
||||
'store_currency' => 'Armazenar nova moeda',
|
||||
'update_currency' => 'Atualizar moeda',
|
||||
|
||||
// new user
|
||||
// new user:
|
||||
'submit' => 'Enviar',
|
||||
'getting_started' => 'Iniciar',
|
||||
'to_get_started' => 'To get started with Firefly, please enter your current bank\'s name, and the balance of your checking account:',
|
||||
'savings_balance_text' => 'If you have a savings account, please enter the current balance of your savings account:',
|
||||
'cc_balance_text' => 'If you have a credit card, please enter your credit card\'s limit.',
|
||||
|
||||
// forms
|
||||
// forms:
|
||||
'mandatoryFields' => 'Campos obrigatórios',
|
||||
'optionalFields' => 'Campos opcionais',
|
||||
'options' => 'Opções',
|
||||
'something' => 'Qualquer coisa!',
|
||||
|
||||
// budgets
|
||||
// budgets:
|
||||
'create_new_budget' => 'Criar um novo orçamento',
|
||||
'store_new_budget' => 'Armazenar novo orçamento',
|
||||
'availableIn' => 'Disponível em :date',
|
||||
@ -227,261 +225,253 @@ return [
|
||||
'update_amount' => 'Update amount',
|
||||
'update_budget' => 'Update budget',
|
||||
|
||||
// bills
|
||||
// bills:
|
||||
'delete_bill' => 'Delete bill ":name"',
|
||||
'edit_bill' => 'Edit bill ":name"',
|
||||
'update_bill' => 'Update bill',
|
||||
'store_new_bill' => 'Store new bill',
|
||||
|
||||
// accounts
|
||||
// accounts:
|
||||
'details_for_asset' => 'Details for asset account ":name"',
|
||||
'details_for_expense' => 'Details for expense account ":name"',
|
||||
'details_for_revenue' => 'Details for revenue account ":name"',
|
||||
'details_for_cash' => 'Details for cash account ":name"',
|
||||
'store_new_asset_account' => 'Store new asset account',
|
||||
'store_new_expense_account' => 'Store new expense account',
|
||||
'store_new_revenue_account' => 'Store new revenue account',
|
||||
'edit_asset_account' => 'Edit asset account ":name"',
|
||||
'edit_expense_account' => 'Edit expense account ":name"',
|
||||
'edit_revenue_account' => 'Edit revenue account ":name"',
|
||||
'delete_asset_account' => 'Delete asset account ":name"',
|
||||
'delete_expense_account' => 'Delete expense account ":name"',
|
||||
'delete_revenue_account' => 'Delete revenue account ":name"',
|
||||
'asset_deleted' => 'Successfully deleted asset account ":name"',
|
||||
'expense_deleted' => 'Successfully deleted expense account ":name"',
|
||||
'revenue_deleted' => 'Successfully deleted revenue account ":name"',
|
||||
'update_asset_account' => 'Update asset account',
|
||||
'update_expense_account' => 'Update expense account',
|
||||
'update_revenue_account' => 'Update revenue account',
|
||||
'make_new_asset_account' => 'Create a new asset account',
|
||||
'make_new_expense_account' => 'Create a new expense account',
|
||||
'make_new_revenue_account' => 'Create a new revenue account',
|
||||
'asset_accounts' => 'Asset accounts',
|
||||
'expense_accounts' => 'Expense accounts',
|
||||
'revenue_accounts' => 'Revenue accounts',
|
||||
'accountExtraHelp_asset' => '',
|
||||
'accountExtraHelp_expense' => '',
|
||||
'accountExtraHelp_revenue' => '',
|
||||
'account_type' => 'Account type',
|
||||
'save_transactions_by_moving' => 'Save these transaction(s) by moving them to another account:',
|
||||
|
||||
'store_new_asset_account' => 'Store new asset account',
|
||||
'store_new_expense_account' => 'Store new expense account',
|
||||
'store_new_revenue_account' => 'Store new revenue account',
|
||||
// categories:
|
||||
'new_category' => 'New category',
|
||||
'create_new_category' => 'Create a new category',
|
||||
'without_category' => 'Without a category',
|
||||
'update_category' => 'Wijzig categorie',
|
||||
'categories' => 'Categories',
|
||||
'edit_category' => 'Edit category ":name"',
|
||||
'no_category' => '(no category)',
|
||||
'category' => 'Category',
|
||||
'delete_category' => 'Delete category ":name"',
|
||||
'store_category' => 'Store new category',
|
||||
|
||||
'edit_asset_account' => 'Edit asset account ":name"',
|
||||
'edit_expense_account' => 'Edit expense account ":name"',
|
||||
'edit_revenue_account' => 'Edit revenue account ":name"',
|
||||
// transactions:
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
'update_transfer' => 'Update transfer',
|
||||
'delete_withdrawal' => 'Delete withdrawal ":description"',
|
||||
'delete_deposit' => 'Delete deposit ":description"',
|
||||
'delete_transfer' => 'Delete transfer ":description"',
|
||||
|
||||
'delete_asset_account' => 'Delete asset account ":name"',
|
||||
'delete_expense_account' => 'Delete expense account ":name"',
|
||||
'delete_revenue_account' => 'Delete revenue account ":name"',
|
||||
// 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' => 'Criar nova conta de ativo',
|
||||
|
||||
'asset_deleted' => 'Successfully deleted asset account ":name"',
|
||||
'expense_deleted' => 'Successfully deleted expense account ":name"',
|
||||
'revenue_deleted' => 'Successfully deleted revenue account ":name"',
|
||||
// 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' => 'Novo depósito',
|
||||
'newTransfer' => 'Nova transferência',
|
||||
'moneyIn' => 'Money in',
|
||||
'moneyOut' => 'Money out',
|
||||
'billsToPay' => 'Bills to pay',
|
||||
'billsPaid' => 'Bills paid',
|
||||
'viewDetails' => 'View details',
|
||||
'divided' => 'divided',
|
||||
'toDivide' => 'left to divide',
|
||||
|
||||
'update_asset_account' => 'Update asset account',
|
||||
'update_expense_account' => 'Update expense account',
|
||||
'update_revenue_account' => 'Update revenue account',
|
||||
// menu and titles, should be recycled as often as possible:
|
||||
'toggleNavigation' => 'Toggle navigation',
|
||||
'currency' => 'Currency',
|
||||
'preferences' => 'Preferences',
|
||||
'logout' => 'Logout',
|
||||
'searchPlaceholder' => 'Search...',
|
||||
'dashboard' => 'Dashboard',
|
||||
'currencies' => 'Currencies',
|
||||
'accounts' => 'Accounts',
|
||||
'Asset account' => 'Asset account',
|
||||
'Default account' => 'Asset account',
|
||||
'Expense account' => 'Conta de Despesa',
|
||||
'Revenue account' => 'Conta de Receita',
|
||||
'Initial balance account' => 'Initial balance account',
|
||||
'budgets' => 'Budgets',
|
||||
'tags' => 'Tags',
|
||||
'reports' => 'Relatórios',
|
||||
'transactions' => 'Transações',
|
||||
'expenses' => 'Despesas',
|
||||
'income' => 'Receita / Renda',
|
||||
'transfers' => 'Transferências',
|
||||
'moneyManagement' => 'Gerenciamento de Dinheiro',
|
||||
'piggyBanks' => 'Cofrinhos',
|
||||
'bills' => 'Faturas',
|
||||
'createNew' => 'Criar nova(o)',
|
||||
'withdrawal' => 'Retirada',
|
||||
'deposit' => 'Depósito',
|
||||
'account' => 'Conta',
|
||||
'transfer' => 'Transferência',
|
||||
'Withdrawal' => 'Retirada',
|
||||
'Deposit' => 'Depósito',
|
||||
'Transfer' => 'Transferência',
|
||||
'bill' => 'Fatura',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
'amount' => 'Valor',
|
||||
'newBalance' => 'Novo saldo',
|
||||
'overview' => 'Visão Geral',
|
||||
'saveOnAccount' => 'Salvar na conta',
|
||||
'unknown' => 'Desconhecido',
|
||||
'daily' => 'Diário',
|
||||
'weekly' => 'Semanal',
|
||||
'monthly' => 'Mensal',
|
||||
'quarterly' => 'Trimestral',
|
||||
'half-year' => 'Semestral',
|
||||
'yearly' => 'Anual',
|
||||
'profile' => 'Perfil',
|
||||
|
||||
'make_new_asset_account' => 'Create a new asset account',
|
||||
'make_new_expense_account' => 'Create a new expense account',
|
||||
'make_new_revenue_account' => 'Create a new revenue account',
|
||||
// reports:
|
||||
'report_default' => 'Default financial report for :start until :end',
|
||||
'quick_link_reports' => 'Quick links',
|
||||
'quick_link_default_report' => 'Default financial report',
|
||||
'report_this_month_quick' => 'Current month, all accounts',
|
||||
'report_this_year_quick' => 'Current year, all accounts',
|
||||
'report_all_time_quick' => 'All-time, all accounts',
|
||||
'reports_can_bookmark' => 'Remember that reports can be bookmarked.',
|
||||
'incomeVsExpenses' => 'Renda vs. Despesas',
|
||||
'accountBalances' => 'Saldos de Contas',
|
||||
'balanceStartOfYear' => 'Balance at start of year',
|
||||
'balanceEndOfYear' => 'Balance at end of year',
|
||||
'balanceStartOfMonth' => 'Balance at start of month',
|
||||
'balanceEndOfMonth' => 'Balance at end of month',
|
||||
'balanceStart' => 'Balance at start of period',
|
||||
'balanceEnd' => 'Balance at end of period',
|
||||
'reportsOwnAccounts' => 'Reports for your own accounts',
|
||||
'reportsOwnAccountsAndShared' => 'Reports for your own accounts and shared accounts',
|
||||
'splitByAccount' => 'Split by account',
|
||||
'balancedByTransfersAndTags' => 'Balanced by transfers and tags',
|
||||
'coveredWithTags' => 'Covered with tags',
|
||||
'leftUnbalanced' => 'Left unbalanced',
|
||||
'expectedBalance' => 'Saldo Experado',
|
||||
'outsideOfBudgets' => 'Fora do orçamento',
|
||||
'leftInBudget' => 'Deixou no orçamento',
|
||||
'sumOfSums' => 'Soma dos montantes',
|
||||
'noCategory' => '(no category)',
|
||||
'notCharged' => 'Não cobrado (ainda)',
|
||||
'inactive' => 'Inativo',
|
||||
'difference' => 'Diferente',
|
||||
'in' => 'Entrada',
|
||||
'out' => 'Saída',
|
||||
'topX' => 'top :number',
|
||||
'showTheRest' => 'Mostrar tudo',
|
||||
'hideTheRest' => 'Mostrar apenas os top :number',
|
||||
'sum_of_year' => 'Soma do ano',
|
||||
'sum_of_years' => 'Sum of years',
|
||||
'average_of_year' => 'Média do ano',
|
||||
'average_of_years' => 'Average of years',
|
||||
'categories_earned_in_year' => 'Categories (by earnings)',
|
||||
'categories_spent_in_year' => 'Categories (by spendings)',
|
||||
'report_type' => 'Report type',
|
||||
'report_type_default' => 'Default financial report',
|
||||
'report_included_accounts' => 'Included accounts',
|
||||
'report_date_range' => 'Date range',
|
||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
||||
'report_preset_ranges' => 'Pre-set ranges',
|
||||
'shared' => 'Shared',
|
||||
|
||||
'asset_accounts' => 'Asset accounts',
|
||||
'expense_accounts' => 'Expense accounts',
|
||||
'revenue_accounts' => 'Revenue accounts',
|
||||
// charts:
|
||||
'dayOfMonth' => 'Dia do mês',
|
||||
'month' => 'Mês',
|
||||
'budget' => 'Orçamento',
|
||||
'spent' => 'Gasto',
|
||||
'earned' => 'Ganho',
|
||||
'overspent' => 'Gasto excedido',
|
||||
'left' => 'Left',
|
||||
'noBudget' => '(sem orçamento)',
|
||||
'maxAmount' => 'Valor Máximo',
|
||||
'minAmount' => 'Valor Mínimo',
|
||||
'billEntry' => 'Current bill entry',
|
||||
'name' => 'Nome',
|
||||
'date' => 'Data',
|
||||
'paid' => 'Pago',
|
||||
'unpaid' => 'Não pago',
|
||||
'day' => 'Dia',
|
||||
'budgeted' => 'Orçado',
|
||||
'period' => 'Período',
|
||||
'balance' => 'Saldo',
|
||||
'summary' => 'Sumário',
|
||||
'sum' => 'Soma',
|
||||
'average' => 'Média',
|
||||
'balanceFor' => 'Saldo para ":name"',
|
||||
|
||||
'accountExtraHelp_asset' => '',
|
||||
'accountExtraHelp_expense' => '',
|
||||
'accountExtraHelp_revenue' => '',
|
||||
'account_type' => 'Account type',
|
||||
'save_transactions_by_moving' => 'Save these transaction(s) by moving them to another account:',
|
||||
|
||||
// categories
|
||||
'new_category' => 'New category',
|
||||
'create_new_category' => 'Create a new category',
|
||||
'without_category' => 'Without a category',
|
||||
'update_category' => 'Wijzig categorie',
|
||||
'categories' => 'Categories',
|
||||
'edit_category' => 'Edit category ":name"',
|
||||
'no_category' => '(no category)',
|
||||
'category' => 'Category',
|
||||
'delete_category' => 'Delete category ":name"',
|
||||
'store_category' => 'Store new category',
|
||||
|
||||
// transactions
|
||||
'update_withdrawal' => 'Update withdrawal',
|
||||
'update_deposit' => 'Update deposit',
|
||||
'update_transfer' => 'Update transfer',
|
||||
'delete_withdrawal' => 'Delete withdrawal ":description"',
|
||||
'delete_deposit' => 'Delete deposit ":description"',
|
||||
'delete_transfer' => 'Delete transfer ":description"',
|
||||
|
||||
// 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' => 'Criar nova conta de ativo',
|
||||
|
||||
// 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' => 'Novo depósito',
|
||||
'newTransfer' => 'Nova transferência',
|
||||
'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',
|
||||
'currency' => 'Currency',
|
||||
'preferences' => 'Preferences',
|
||||
'logout' => 'Logout',
|
||||
'searchPlaceholder' => 'Search...',
|
||||
'dashboard' => 'Dashboard',
|
||||
'currencies' => 'Currencies',
|
||||
'accounts' => 'Accounts',
|
||||
'Asset account' => 'Asset account',
|
||||
'Default account' => 'Asset account',
|
||||
'Expense account' => 'Conta de Despesa',
|
||||
'Revenue account' => 'Conta de Receita',
|
||||
'Initial balance account' => 'Initial balance account',
|
||||
'budgets' => 'Budgets',
|
||||
'tags' => 'Tags',
|
||||
'reports' => 'Relatórios',
|
||||
'transactions' => 'Transações',
|
||||
'expenses' => 'Despesas',
|
||||
'income' => 'Receita / Renda',
|
||||
'transfers' => 'Transferências',
|
||||
'moneyManagement' => 'Gerenciamento de Dinheiro',
|
||||
'piggyBanks' => 'Cofrinhos',
|
||||
'bills' => 'Faturas',
|
||||
'createNew' => 'Criar nova(o)',
|
||||
'withdrawal' => 'Retirada',
|
||||
'deposit' => 'Depósito',
|
||||
'account' => 'Conta',
|
||||
'transfer' => 'Transferência',
|
||||
'Withdrawal' => 'Retirada',
|
||||
'Deposit' => 'Depósito',
|
||||
'Transfer' => 'Transferência',
|
||||
'bill' => 'Fatura',
|
||||
'yes' => 'Sim',
|
||||
'no' => 'Não',
|
||||
'amount' => 'Valor',
|
||||
'newBalance' => 'Novo saldo',
|
||||
'overview' => 'Visão Geral',
|
||||
'saveOnAccount' => 'Salvar na conta',
|
||||
'unknown' => 'Desconhecido',
|
||||
'daily' => 'Diário',
|
||||
'weekly' => 'Semanal',
|
||||
'monthly' => 'Mensal',
|
||||
'quarterly' => 'Trimestral',
|
||||
'half-year' => 'Semestral',
|
||||
'yearly' => 'Anual',
|
||||
'profile' => 'Perfil',
|
||||
|
||||
// reports
|
||||
'report_default' => 'Default financial report for :start until :end',
|
||||
'quick_link_reports' => 'Quick links',
|
||||
'quick_link_default_report' => 'Default financial report',
|
||||
'report_this_month_quick' => 'Current month, all accounts',
|
||||
'report_this_year_quick' => 'Current year, all accounts',
|
||||
'report_all_time_quick' => 'All-time, all accounts',
|
||||
'reports_can_bookmark' => 'Remember that reports can be bookmarked.',
|
||||
'incomeVsExpenses' => 'Renda vs. Despesas',
|
||||
'accountBalances' => 'Saldos de Contas',
|
||||
'balanceStartOfYear' => 'Balance at start of year',
|
||||
'balanceEndOfYear' => 'Balance at end of year',
|
||||
'balanceStartOfMonth' => 'Balance at start of month',
|
||||
'balanceEndOfMonth' => 'Balance at end of month',
|
||||
'balanceStart' => 'Balance at start of period',
|
||||
'balanceEnd' => 'Balance at end of period',
|
||||
'reportsOwnAccounts' => 'Reports for your own accounts',
|
||||
'reportsOwnAccountsAndShared' => 'Reports for your own accounts and shared accounts',
|
||||
'splitByAccount' => 'Split by account',
|
||||
'balancedByTransfersAndTags' => 'Balanced by transfers and tags',
|
||||
'coveredWithTags' => 'Covered with tags',
|
||||
'leftUnbalanced' => 'Left unbalanced',
|
||||
'expectedBalance' => 'Saldo Experado',
|
||||
'outsideOfBudgets' => 'Fora do orçamento',
|
||||
'leftInBudget' => 'Deixou no orçamento',
|
||||
'sumOfSums' => 'Soma dos montantes',
|
||||
'noCategory' => '(no category)',
|
||||
'notCharged' => 'Não cobrado (ainda)',
|
||||
'inactive' => 'Inativo',
|
||||
'difference' => 'Diferente',
|
||||
'in' => 'Entrada',
|
||||
'out' => 'Saída',
|
||||
'topX' => 'top :number',
|
||||
'showTheRest' => 'Mostrar tudo',
|
||||
'hideTheRest' => 'Mostrar apenas os top :number',
|
||||
'sum_of_year' => 'Soma do ano',
|
||||
'sum_of_years' => 'Sum of years',
|
||||
'average_of_year' => 'Média do ano',
|
||||
'average_of_years' => 'Average of years',
|
||||
'categories_earned_in_year' => 'Categories (by earnings)',
|
||||
'categories_spent_in_year' => 'Categories (by spendings)',
|
||||
'report_type' => 'Report type',
|
||||
'report_type_default' => 'Default financial report',
|
||||
'report_included_accounts' => 'Included accounts',
|
||||
'report_date_range' => 'Date range',
|
||||
'report_include_help' => 'In all cases, transfers to shared accounts count as expenses, and transfers from shared accounts count as income.',
|
||||
'report_preset_ranges' => 'Pre-set ranges',
|
||||
'shared' => 'Shared',
|
||||
|
||||
// charts
|
||||
'dayOfMonth' => 'Dia do mês',
|
||||
'month' => 'Mês',
|
||||
'budget' => 'Orçamento',
|
||||
'spent' => 'Gasto',
|
||||
'earned' => 'Ganho',
|
||||
'overspent' => 'Gasto excedido',
|
||||
'left' => 'Left',
|
||||
'noBudget' => '(sem orçamento)',
|
||||
'maxAmount' => 'Valor Máximo',
|
||||
'minAmount' => 'Valor Mínimo',
|
||||
'billEntry' => 'Current bill entry',
|
||||
'name' => 'Nome',
|
||||
'date' => 'Data',
|
||||
'paid' => 'Pago',
|
||||
'unpaid' => 'Não pago',
|
||||
'day' => 'Dia',
|
||||
'budgeted' => 'Orçado',
|
||||
'period' => 'Período',
|
||||
'balance' => 'Saldo',
|
||||
'summary' => 'Sumário',
|
||||
'sum' => 'Soma',
|
||||
'average' => 'Média',
|
||||
'balanceFor' => 'Saldo para ":name"',
|
||||
|
||||
// piggy banks
|
||||
'piggy_bank' => 'Cofrinho',
|
||||
'new_piggy_bank' => 'Criar novo cofrinho',
|
||||
'store_piggy_bank' => 'Store new piggy bank',
|
||||
'account_status' => 'Account status',
|
||||
'left_for_piggy_banks' => 'Left for piggy banks',
|
||||
'sum_of_piggy_banks' => 'Sum of piggy banks',
|
||||
'saved_so_far' => 'Saved so far',
|
||||
'left_to_save' => 'Left to save',
|
||||
'add_money_to_piggy_title' => 'Add money to piggy bank ":name"',
|
||||
'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"',
|
||||
'add' => 'Adicionar',
|
||||
'remove' => 'Remover',
|
||||
'max_amount_add' => 'The maximum amount you can add is',
|
||||
'max_amount_remove' => 'The maximum amount you can remove is',
|
||||
'update_piggy_button' => 'Update piggy bank',
|
||||
'update_piggy_title' => 'Update piggy bank ":name"',
|
||||
'details' => 'Detalhes',
|
||||
'events' => 'Eventos',
|
||||
'target_amount' => 'Valor alvo',
|
||||
'start_date' => 'Data de Início',
|
||||
'target_date' => 'Data Alvo',
|
||||
'no_target_date' => 'Nenhum data',
|
||||
'todo' => 'A fazer',
|
||||
'table' => 'Tabela',
|
||||
'piggy_bank_not_exists' => 'Piggy bank no longer exists.',
|
||||
'add_any_amount_to_piggy' => 'Add money to this piggy bank to reach your target of :amount.',
|
||||
'add_set_amount_to_piggy' => 'Add :amount to fill this piggy bank on :date',
|
||||
'delete_piggy_bank' => 'Apagar cofrinho ":name"',
|
||||
// piggy banks:
|
||||
'piggy_bank' => 'Cofrinho',
|
||||
'new_piggy_bank' => 'Criar novo cofrinho',
|
||||
'store_piggy_bank' => 'Store new piggy bank',
|
||||
'account_status' => 'Account status',
|
||||
'left_for_piggy_banks' => 'Left for piggy banks',
|
||||
'sum_of_piggy_banks' => 'Sum of piggy banks',
|
||||
'saved_so_far' => 'Saved so far',
|
||||
'left_to_save' => 'Left to save',
|
||||
'add_money_to_piggy_title' => 'Add money to piggy bank ":name"',
|
||||
'remove_money_from_piggy_title' => 'Remove money from piggy bank ":name"',
|
||||
'add' => 'Adicionar',
|
||||
'remove' => 'Remover',
|
||||
'max_amount_add' => 'The maximum amount you can add is',
|
||||
'max_amount_remove' => 'The maximum amount you can remove is',
|
||||
'update_piggy_button' => 'Update piggy bank',
|
||||
'update_piggy_title' => 'Update piggy bank ":name"',
|
||||
'details' => 'Detalhes',
|
||||
'events' => 'Eventos',
|
||||
'target_amount' => 'Valor alvo',
|
||||
'start_date' => 'Data de Início',
|
||||
'target_date' => 'Data Alvo',
|
||||
'no_target_date' => 'Nenhum data',
|
||||
'todo' => 'A fazer',
|
||||
'table' => 'Tabela',
|
||||
'piggy_bank_not_exists' => 'Piggy bank no longer exists.',
|
||||
'add_any_amount_to_piggy' => 'Add money to this piggy bank to reach your target of :amount.',
|
||||
'add_set_amount_to_piggy' => 'Add :amount to fill this piggy bank on :date',
|
||||
'delete_piggy_bank' => 'Apagar cofrinho ":name"',
|
||||
|
||||
// tags
|
||||
'regular_tag' => 'Just a regular tag.',
|
||||
'balancing_act' => 'The tag takes at most two transactions; an expense and a transfer. They\'ll balance each other out.',
|
||||
'advance_payment' => 'The tag accepts one expense and any number of deposits aimed to repay the original expense.',
|
||||
|
||||
'delete_tag' => 'Apagar tag ":tag"',
|
||||
'new_tag' => 'Fazer nova tag',
|
||||
'edit_tag' => 'Editar tag ":tag"',
|
||||
'no_year' => 'Nenhum ano definido',
|
||||
'no_month' => 'Nenhum mês definido',
|
||||
'tag_title_nothing' => 'Tags padrões',
|
||||
'tag_title_balancingAct' => 'Balancing act tags',
|
||||
'tag_title_advancePayment' => 'Advance payment tags',
|
||||
'tags_introduction' => 'Usually tags are singular words, designed to quickly band items together using things like <span class="label label-info">expensive</span>, <span class="label label-info">bill</span> or <span class="label label-info">for-party</span>. In Firefly III, tags can have more properties such as a date, description and location. This allows you to join transactions together in a more meaningful way. For example, you could make a tag called <span class="label label-success">Christmas dinner with friends</span> and add information about the restaurant. Such tags are "singular", you would only use them for a single occasion, perhaps with multiple transactions.',
|
||||
'tags_group' => 'Tags group transactions together, which makes it possible to store reimbursements (in case you front money for others) and other "balancing acts" where expenses are summed up (the payments on your new TV) or where expenses and deposits are cancelling each other out (buying something with saved money). It\'s all up to you. Using tags the old-fashioned way is of course always possible. ',
|
||||
'tags_start' => 'Create a tag to get started or enter tags when creating new transactions.',
|
||||
'regular_tag' => 'Just a regular tag.',
|
||||
'balancing_act' => 'The tag takes at most two transactions; an expense and a transfer. They\'ll balance each other out.',
|
||||
'advance_payment' => 'The tag accepts one expense and any number of deposits aimed to repay the original expense.',
|
||||
'delete_tag' => 'Apagar tag ":tag"',
|
||||
'new_tag' => 'Fazer nova tag',
|
||||
'edit_tag' => 'Editar tag ":tag"',
|
||||
'no_year' => 'Nenhum ano definido',
|
||||
'no_month' => 'Nenhum mês definido',
|
||||
'tag_title_nothing' => 'Tags padrões',
|
||||
'tag_title_balancingAct' => 'Balancing act tags',
|
||||
'tag_title_advancePayment' => 'Advance payment tags',
|
||||
'tags_introduction' => 'Usually tags are singular words, designed to quickly band items together using things like <span class="label label-info">expensive</span>, <span class="label label-info">bill</span> or <span class="label label-info">for-party</span>. In Firefly III, tags can have more properties such as a date, description and location. This allows you to join transactions together in a more meaningful way. For example, you could make a tag called <span class="label label-success"> Christmas dinner with friends</span> and add information about the restaurant. Such tags are "singular", you would only use them for a single occasion, perhaps with multiple transactions.',
|
||||
'tags_group' => 'Tags group transactions together, which makes it possible to store reimbursements (in case you front money for others) and other "balancing acts" where expenses are summed up (the payments on your new TV) or where expenses and deposits are cancelling each other out (buying something with saved money). It\'s all up to you. Using tags the old-fashioned way is of course always possible. ',
|
||||
'tags_start' => 'Create a tag to get started or enter tags when creating new transactions.',
|
||||
|
||||
];
|
||||
|
@ -68,6 +68,7 @@ return [
|
||||
'mime' => 'Mime type',
|
||||
'size' => 'Tamanho',
|
||||
|
||||
|
||||
'delete_account' => 'Apagar conta ":name"',
|
||||
'delete_bill' => 'Apagar fatura ":name"',
|
||||
'delete_budget' => 'Delete budget ":name"',
|
||||
@ -89,7 +90,7 @@ return [
|
||||
'permDeleteWarning' => 'Deleting stuff from Firely is permanent and cannot be undone.',
|
||||
'also_delete_transactions' => 'The only transaction connected to this account will be deleted as well.|All :count transactions connected to this account will be deleted as well.',
|
||||
'also_delete_piggyBanks' => 'The only piggy bank connected to this account will be deleted as well.|All :count piggy bank connected to this account will be deleted as well.',
|
||||
'bill_keep_transactions' => 'A única transação vinculada para esta fatura não será apagada.|Todas :count transações vinculadas a esta fatura não serão apagadas.',
|
||||
'bill_keep_transactions' => 'The only transaction connected to this bill will not be deleted.|All :count transactions connected to this bill will spared deletion.',
|
||||
'budget_keep_transactions' => 'The only transaction connected to this budget will not be deleted.|All :count transactions connected to this budget will spared deletion.',
|
||||
'category_keep_transactions' => 'The only transaction connected to this category will not be deleted.|All :count transactions connected to this category will spared deletion.',
|
||||
'tag_keep_transactions' => 'The only transaction connected to this tag will not be deleted.|All :count transactions connected to this tag will spared deletion.',
|
||||
|
@ -14,7 +14,7 @@ return [
|
||||
'matchingAmount' => 'Total',
|
||||
'lastMatch' => 'Último equivalente',
|
||||
'expectedMatch' => 'Equivalente esperado',
|
||||
'automatch' => 'Auto equivale?',
|
||||
'automatch' => 'Auto match?',
|
||||
'repeat_freq' => 'Repetições',
|
||||
'description' => 'Descrição',
|
||||
'amount' => 'Total',
|
||||
|
@ -6,63 +6,62 @@ return [
|
||||
'file_attached' => 'Succesfully uploaded file ":name".',
|
||||
'file_invalid_mime' => 'File ":name" is of type ":mime" which is not accepted as a new upload.',
|
||||
'file_too_large' => 'File ":name" is too large.',
|
||||
'accepted' => 'O campo :attribute deve ser aceito.',
|
||||
'active_url' => 'O campo :attribute não contém um URL válido.',
|
||||
'after' => 'O campo :attribute deverá conter uma data posterior a :date.',
|
||||
'alpha' => 'O campo :attribute deverá conter apenas letras.',
|
||||
'alpha_dash' => 'O campo :attribute deverá conter apenas letras, números e traços.',
|
||||
'alpha_num' => 'O campo :attribute deverá conter apenas letras e números .',
|
||||
'array' => 'O campo :attribute precisa ser um conjunto.',
|
||||
"accepted" => "O campo :attribute deve ser aceito.",
|
||||
"active_url" => "O campo :attribute não contém um URL válido.",
|
||||
"after" => "O campo :attribute deverá conter uma data posterior a :date.",
|
||||
"alpha" => "O campo :attribute deverá conter apenas letras.",
|
||||
"alpha_dash" => "O campo :attribute deverá conter apenas letras, números e traços.",
|
||||
"alpha_num" => "O campo :attribute deverá conter apenas letras e números .",
|
||||
"array" => "O campo :attribute precisa ser um conjunto.",
|
||||
"unique_for_user" => "There already is an entry with this :attribute.",
|
||||
'before' => 'O campo :attribute deverá conter uma data anterior a :date.',
|
||||
"before" => "O campo :attribute deverá conter uma data anterior a :date.",
|
||||
'unique_object_for_user' => 'This name is already in use',
|
||||
'unique_account_for_user' => 'This account name is already in use',
|
||||
'between.numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.',
|
||||
'between.file' => 'O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.',
|
||||
'between.string' => 'O campo :attribute deverá conter entre :min - :max caracteres.',
|
||||
'between.array' => 'O campo :attribute precisar ter entre :min - :max itens.',
|
||||
'boolean' => 'O campo :attribute deverá ter o valor verdadeiro ou falso.',
|
||||
'confirmed' => 'A confirmação para o campo :attribute não coincide.',
|
||||
'date' => 'O campo :attribute não contém uma data válida.',
|
||||
'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
|
||||
'different' => 'Os campos :attribute e :other deverão conter valores diferentes.',
|
||||
'digits' => 'O campo :attribute deverá conter :digits dígitos.',
|
||||
'digits_between' => 'O campo :attribute deverá conter entre :min a :max dígitos.',
|
||||
'email' => 'O campo :attribute não contém um endereço de email válido.',
|
||||
'exists' => 'O valor selecionado para o campo :attribute é inválido.',
|
||||
'filled' => 'O campo :attribute é obrigatório.',
|
||||
'image' => 'O campo :attribute deverá conter uma imagem.',
|
||||
'in' => 'O campo :attribute não contém um valor válido.',
|
||||
'integer' => 'O campo :attribute deverá conter um número inteiro.',
|
||||
'ip' => 'O campo :attribute deverá conter um IP válido.',
|
||||
'json' => 'O campo :attribute deverá conter uma string JSON válida.',
|
||||
'max.numeric' => 'O campo :attribute não deverá conter um valor superior a :max.',
|
||||
'max.file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.',
|
||||
'max.string' => 'O campo :attribute não deverá conter mais de :max caracteres.',
|
||||
'max.array' => 'O campo :attribute deve ter no máximo :max itens.',
|
||||
'mimes' => 'O campo :attribute deverá conter um arquivo do tipo: :values.',
|
||||
'min.numeric' => 'O campo :attribute deverá ter um valor superior ou igual a :min.',
|
||||
'min.file' => 'O campo :attribute deverá ter no mínimo :min kilobytes.',
|
||||
'min.string' => 'O campo :attribute deverá conter no mínimo :min caracteres.',
|
||||
'min.array' => 'O campo :attribute deve ter no mínimo :min itens.',
|
||||
'not_in' => 'O campo :attribute contém um valor inválido.',
|
||||
'numeric' => 'O campo :attribute deverá conter um valor numérico.',
|
||||
'regex' => 'O formato do valor para o campo :attribute é inválido.',
|
||||
'required' => 'O campo :attribute é obrigatório.',
|
||||
'required_if' => 'O campo :attribute é obrigatório quando o valor do campo :other é igual a :value.',
|
||||
'required_unless' => 'O campo :attribute é obrigatório a menos que :other esteja presente em :values.',
|
||||
'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
|
||||
'required_with_all' => 'O campo :attribute é obrigatório quando um dos :values está presente.',
|
||||
'required_without' => 'O campo :attribute é obrigatório quanto :values não está presente.',
|
||||
'required_without_all' => 'O campo :attribute é obrigatório quando nenhum dos :values está presente.',
|
||||
'same' => 'Os campos :attribute e :other deverão conter valores iguais.',
|
||||
'size.numeric' => 'O campo :attribute deverá conter o valor :size.',
|
||||
'size.file' => 'O campo :attribute deverá ter o tamanho de :size kilobytes.',
|
||||
'size.string' => 'O campo :attribute deverá conter :size caracteres.',
|
||||
'size.array' => 'O campo :attribute deve ter :size itens.',
|
||||
"between.numeric" => "O campo :attribute deverá ter um valor entre :min - :max.",
|
||||
"between.file" => "O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.",
|
||||
"between.string" => "O campo :attribute deverá conter entre :min - :max caracteres.",
|
||||
"between.array" => "O campo :attribute precisar ter entre :min - :max itens.",
|
||||
"boolean" => "O campo :attribute deverá ter o valor verdadeiro ou falso.",
|
||||
"confirmed" => "A confirmação para o campo :attribute não coincide.",
|
||||
"date" => "O campo :attribute não contém uma data válida.",
|
||||
"date_format" => "A data indicada para o campo :attribute não respeita o formato :format.",
|
||||
"different" => "Os campos :attribute e :other deverão conter valores diferentes.",
|
||||
"digits" => "O campo :attribute deverá conter :digits dígitos.",
|
||||
"digits_between" => "O campo :attribute deverá conter entre :min a :max dígitos.",
|
||||
"email" => "O campo :attribute não contém um endereço de email válido.",
|
||||
"filled" => "O campo :attribute é obrigatório.",
|
||||
"exists" => "O valor selecionado para o campo :attribute é inválido.",
|
||||
"image" => "O campo :attribute deverá conter uma imagem.",
|
||||
"in" => "O campo :attribute não contém um valor válido.",
|
||||
"integer" => "O campo :attribute deverá conter um número inteiro.",
|
||||
"ip" => "O campo :attribute deverá conter um IP válido.",
|
||||
'json' => 'O campo :attribute deverá conter uma string JSON válida.',
|
||||
"max.numeric" => "O campo :attribute não deverá conter um valor superior a :max.",
|
||||
"max.file" => "O campo :attribute não deverá ter um tamanho superior a :max kilobytes.",
|
||||
"max.string" => "O campo :attribute não deverá conter mais de :max caracteres.",
|
||||
"max.array" => "O campo :attribute deve ter no máximo :max itens.",
|
||||
"mimes" => "O campo :attribute deverá conter um arquivo do tipo: :values.",
|
||||
"min.numeric" => "O campo :attribute deverá ter um valor superior ou igual a :min.",
|
||||
"min.file" => "O campo :attribute deverá ter no mínimo :min kilobytes.",
|
||||
"min.string" => "O campo :attribute deverá conter no mínimo :min caracteres.",
|
||||
"min.array" => "O campo :attribute deve ter no mínimo :min itens.",
|
||||
"not_in" => "O campo :attribute contém um valor inválido.",
|
||||
"numeric" => "O campo :attribute deverá conter um valor numérico.",
|
||||
"regex" => "O formato do valor para o campo :attribute é inválido.",
|
||||
"required" => "O campo :attribute é obrigatório.",
|
||||
"required_if" => "O campo :attribute é obrigatório quando o valor do campo :other é igual a :value.",
|
||||
'required_unless' => 'O campo :attribute é obrigatório a menos que :other esteja presente em :values.',
|
||||
"required_with" => "O campo :attribute é obrigatório quando :values está presente.",
|
||||
"required_with_all" => "O campo :attribute é obrigatório quando um dos :values está presente.",
|
||||
"required_without" => "O campo :attribute é obrigatório quanto :values não está presente.",
|
||||
"required_without_all" => "O campo :attribute é obrigatório quando nenhum dos :values está presente.",
|
||||
"same" => "Os campos :attribute e :other deverão conter valores iguais.",
|
||||
"size.numeric" => "O campo :attribute deverá conter o valor :size.",
|
||||
"size.file" => "O campo :attribute deverá ter o tamanho de :size kilobytes.",
|
||||
"size.string" => "O campo :attribute deverá conter :size caracteres.",
|
||||
"size.array" => "O campo :attribute deve ter :size itens.",
|
||||
"unique" => "O valor indicado para o campo :attribute já se encontra utilizado.",
|
||||
'string' => 'O campo :attribute deve ser uma string.',
|
||||
'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
|
||||
'unique' => 'O valor indicado para o campo :attribute já se encontra utilizado.',
|
||||
'url' => 'O formato do URL indicado para o campo :attribute é inválido.',
|
||||
|
||||
"url" => "O formato do URL indicado para o campo :attribute é inválido.",
|
||||
"timezone" => "O campo :attribute deverá ter um fuso horário válido.",
|
||||
];
|
||||
|
@ -21,9 +21,11 @@
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
{% if account.id in frontPageAccounts.data or frontPageAccounts.data|length == 0 %}
|
||||
<input type="checkbox" name="frontPageAccounts[]" value="{{ account.id }}" checked> {{ account.name }}
|
||||
<input type="checkbox" name="frontPageAccounts[]" value="{{ account.id }}"
|
||||
checked> {{ account.name }}
|
||||
{% else %}
|
||||
<input type="checkbox" name="frontPageAccounts[]" value="{{ account.id }}"> {{ account.name }}
|
||||
<input type="checkbox" name="frontPageAccounts[]"
|
||||
value="{{ account.id }}"> {{ account.name }}
|
||||
{% endif %}
|
||||
</label>
|
||||
</div>
|
||||
@ -55,35 +57,40 @@
|
||||
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="viewRange" value="1D" {% if viewRange == '1D' %} checked {% endif %}>
|
||||
<input type="radio" name="viewRange"
|
||||
value="1D" {% if viewRange == '1D' %} checked {% endif %}>
|
||||
{{ 'pref_1D'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="viewRange" value="1W" {% if viewRange == '1W' %} checked {% endif %}>
|
||||
<input type="radio" name="viewRange"
|
||||
value="1W" {% if viewRange == '1W' %} checked {% endif %}>
|
||||
{{ 'pref_1W'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="viewRange" value="1M" {% if viewRange == '1M' %} checked {% endif %}>
|
||||
<input type="radio" name="viewRange"
|
||||
value="1M" {% if viewRange == '1M' %} checked {% endif %}>
|
||||
{{ 'pref_1M'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="viewRange" value="3M" {% if viewRange == '3M' %} checked {% endif %}>
|
||||
<input type="radio" name="viewRange"
|
||||
value="3M" {% if viewRange == '3M' %} checked {% endif %}>
|
||||
{{ 'pref_3M'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="viewRange" value="6M" {% if viewRange == '6M' %} checked {% endif %}>
|
||||
<input type="radio" name="viewRange"
|
||||
value="6M" {% if viewRange == '6M' %} checked {% endif %}>
|
||||
{{ 'pref_6M'|_ }}
|
||||
</label>
|
||||
</div>
|
||||
@ -97,17 +104,22 @@
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<p class="text-info">{{ 'pref_languages_help'|_ }}</p>
|
||||
{% for key, lang in Config.get('firefly.lang') %}
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="language" value="{{ key }}"
|
||||
{% if language == key %}
|
||||
checked
|
||||
{% endif %}
|
||||
/>
|
||||
{{ lang }}
|
||||
</label>
|
||||
</div>
|
||||
{% for key, lang in Config.get('firefly.languages') %}
|
||||
{% if lang.complete == true or (lang.complete == false and showIncomplete) %}
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="language" value="{{ key }}"
|
||||
{% if language == key %}
|
||||
checked
|
||||
{% endif %}
|
||||
/>
|
||||
{{ lang.name_locale }} ({{ lang.name_english }})
|
||||
{% if lang.complete == false %}
|
||||
<span class="small text-danger">({{ 'language_incomplete'|_ }})</span>
|
||||
{% endif %}
|
||||
</label>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user