More code for 5.3

This commit is contained in:
James Cole 2016-09-16 07:05:34 +02:00
parent d00fbe4eb3
commit 2f93784acd
7 changed files with 156 additions and 133 deletions

12
app/Providers/EventServiceProvider.php Normal file → Executable file
View File

@ -16,7 +16,6 @@ use FireflyIII\Models\PiggyBank;
use FireflyIII\Models\PiggyBankRepetition; use FireflyIII\Models\PiggyBankRepetition;
use FireflyIII\Models\Transaction; use FireflyIII\Models\Transaction;
use FireflyIII\Models\TransactionJournal; use FireflyIII\Models\TransactionJournal;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Log; use Log;
@ -73,17 +72,18 @@ class EventServiceProvider extends ServiceProvider
]; ];
/** /**
* Register any other events for your application. * Register any events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* *
* @return void * @return void
*/ */
public function boot(DispatcherContract $events) public function boot()
{ {
parent::boot($events); parent::boot();
$this->registerDeleteEvents(); $this->registerDeleteEvents();
$this->registerCreateEvents(); $this->registerCreateEvents();
//
} }
/** /**

72
app/Providers/RouteServiceProvider.php Normal file → Executable file
View File

@ -1,28 +1,14 @@
<?php <?php
/**
* RouteServiceProvider.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
declare(strict_types = 1);
namespace FireflyIII\Providers; namespace FireflyIII\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Routing\Router;
/**
* Class RouteServiceProvider
*
* @package FireflyIII\Providers
*/
class RouteServiceProvider extends ServiceProvider class RouteServiceProvider extends ServiceProvider
{ {
/** /**
* This namespace is applied to the controller routes in your routes file. * This namespace is applied to your controller routes.
* *
* In addition, it is set as the URL generator's root namespace. * In addition, it is set as the URL generator's root namespace.
* *
@ -33,31 +19,61 @@ class RouteServiceProvider extends ServiceProvider
/** /**
* Define your route model bindings, pattern filters, etc. * Define your route model bindings, pattern filters, etc.
* *
* @param \Illuminate\Routing\Router $router
*
* @return void * @return void
*/ */
public function boot(Router $router) public function boot()
{ {
// //
parent::boot($router); parent::boot();
} }
/** /**
* Define the routes for the application. * Define the routes for the application.
* *
* @param \Illuminate\Routing\Router $router * @return void
*/
public function map()
{
$this->mapWebRoutes();
$this->mapApiRoutes();
//
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
* *
* @return void * @return void
*/ */
public function map(Router $router) protected function mapWebRoutes()
{ {
$router->group( Route::group([
['namespace' => $this->namespace], function (Router $router) { 'middleware' => 'web',
/** @noinspection PhpIncludeInspection */ 'namespace' => $this->namespace,
require app_path('Http/routes.php'); ], function ($router) {
} require base_path('routes/web.php');
); });
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
Route::group([
'middleware' => 'api',
'namespace' => $this->namespace,
'prefix' => 'api',
], function ($router) {
require base_path('routes/api.php');
});
} }
} }

View File

@ -9,31 +9,31 @@
*/ */
return [ return [
'home' => 'Home', 'home' => 'Home',
'edit_currency' => 'Edit currency ":name"', 'edit_currency' => 'Edit currency ":name"',
'delete_currency' => 'Delete currency ":name"', 'delete_currency' => 'Delete currency ":name"',
'newPiggyBank' => 'Create a new piggy bank', 'newPiggyBank' => 'Create a new piggy bank',
'edit_piggyBank' => 'Edit piggy bank ":name"', 'edit_piggyBank' => 'Edit piggy bank ":name"',
'preferences' => 'Preferences', 'preferences' => 'Preferences',
'profile' => 'Profile', 'profile' => 'Profile',
'changePassword' => 'Change your password', 'changePassword' => 'Change your password',
'bills' => 'Bills', 'bills' => 'Bills',
'newBill' => 'New bill', 'newBill' => 'New bill',
'edit_bill' => 'Edit bill ":name"', 'edit_bill' => 'Edit bill ":name"',
'delete_bill' => 'Delete bill ":name"', 'delete_bill' => 'Delete bill ":name"',
'reports' => 'Reports', 'reports' => 'Reports',
'searchResult' => 'Search for ":query"', 'searchResult' => 'Search for ":query"',
'withdrawal_list' => 'Expenses', 'withdrawal_list' => 'Expenses',
'deposit_list' => 'Revenue, income and deposits', 'deposit_list' => 'Revenue, income and deposits',
'transfer_list' => 'Transfers', 'transfer_list' => 'Transfers',
'transfers_list' => 'Transfers', 'transfers_list' => 'Transfers',
'create_withdrawal' => 'Create new withdrawal', 'create_withdrawal' => 'Create new withdrawal',
'create_deposit' => 'Create new deposit', 'create_deposit' => 'Create new deposit',
'create_transfer' => 'Create new transfer', 'create_transfer' => 'Create new transfer',
'edit_journal' => 'Edit transaction ":description"', 'edit_journal' => 'Edit transaction ":description"',
'delete_journal' => 'Delete transaction ":description"', 'delete_journal' => 'Delete transaction ":description"',
'tags' => 'Tags', 'tags' => 'Tags',
'createTag' => 'Create new tag', 'createTag' => 'Create new tag',
'edit_tag' => 'Edit tag ":tag"', 'edit_tag' => 'Edit tag ":tag"',
'delete_tag' => 'Delete tag ":tag"', 'delete_tag' => 'Delete tag ":tag"',
]; ];

View File

@ -10,76 +10,76 @@
return [ return [
// tour! // tour!
'main-content-title' => 'Welcome to Firefly III', 'main-content-title' => 'Welcome to Firefly III',
'main-content-text' => 'Do yourself a favor and follow this short guide to make sure you know your way around.', 'main-content-text' => 'Do yourself a favor and follow this short guide to make sure you know your way around.',
'sidebar-toggle-title' => 'Sidebar to create stuff', 'sidebar-toggle-title' => 'Sidebar to create stuff',
'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!', 'sidebar-toggle-text' => 'Hidden under the plus icon are all the buttons to create new stuff. Accounts, transactions, everything!',
'account-menu-title' => 'All your accounts', 'account-menu-title' => 'All your accounts',
'account-menu-text' => 'Here you can find all the accounts you\'ve made.', 'account-menu-text' => 'Here you can find all the accounts you\'ve made.',
'budget-menu-title' => 'Budgets', 'budget-menu-title' => 'Budgets',
'budget-menu-text' => 'Use this page to organise your finances and limit spending.', 'budget-menu-text' => 'Use this page to organise your finances and limit spending.',
'report-menu-title' => 'Reports', 'report-menu-title' => 'Reports',
'report-menu-text' => 'Check this out when you want a solid overview of your finances.', 'report-menu-text' => 'Check this out when you want a solid overview of your finances.',
'transaction-menu-title' => 'Transactions', 'transaction-menu-title' => 'Transactions',
'transaction-menu-text' => 'All transactions you\'ve created can be found here.', 'transaction-menu-text' => 'All transactions you\'ve created can be found here.',
'option-menu-title' => 'Options', 'option-menu-title' => 'Options',
'option-menu-text' => 'This is pretty self-explanatory.', 'option-menu-text' => 'This is pretty self-explanatory.',
'main-content-end-title' => 'The end!', 'main-content-end-title' => 'The end!',
'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.', '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.',
'index' => 'index', 'index' => 'index',
'home' => 'home', 'home' => 'home',
'accounts-index' => 'accounts.index', 'accounts-index' => 'accounts.index',
'accounts-create' => 'accounts.create', 'accounts-create' => 'accounts.create',
'accounts-edit' => 'accounts.edit', 'accounts-edit' => 'accounts.edit',
'accounts-delete' => 'accounts.delete', 'accounts-delete' => 'accounts.delete',
'accounts-show' => 'accounts.show', 'accounts-show' => 'accounts.show',
'attachments-edit' => 'attachments.edit', 'attachments-edit' => 'attachments.edit',
'attachments-delete' => 'attachments.delete', 'attachments-delete' => 'attachments.delete',
'attachments-show' => 'attachments.show', 'attachments-show' => 'attachments.show',
'attachments-preview' => 'attachments.preview', 'attachments-preview' => 'attachments.preview',
'bills-index' => 'bills.index', 'bills-index' => 'bills.index',
'bills-create' => 'bills.create', 'bills-create' => 'bills.create',
'bills-edit' => 'bills.edit', 'bills-edit' => 'bills.edit',
'bills-delete' => 'bills.delete', 'bills-delete' => 'bills.delete',
'bills-show' => 'bills.show', 'bills-show' => 'bills.show',
'budgets-index' => 'budgets.index', 'budgets-index' => 'budgets.index',
'budgets-create' => 'budgets.create', 'budgets-create' => 'budgets.create',
'budgets-edit' => 'budgets.edit', 'budgets-edit' => 'budgets.edit',
'budgets-delete' => 'budgets.delete', 'budgets-delete' => 'budgets.delete',
'budgets-show' => 'budgets.show', 'budgets-show' => 'budgets.show',
'budgets-noBudget' => 'budgets.noBudget', 'budgets-noBudget' => 'budgets.noBudget',
'categories-index' => 'categories.index', 'categories-index' => 'categories.index',
'categories-create' => 'categories.create', 'categories-create' => 'categories.create',
'categories-edit' => 'categories.edit', 'categories-edit' => 'categories.edit',
'categories-delete' => 'categories.delete', 'categories-delete' => 'categories.delete',
'categories-show' => 'categories.show', 'categories-show' => 'categories.show',
'categories-show-date' => 'categories.show.date', 'categories-show-date' => 'categories.show.date',
'categories-noCategory' => 'categories.noCategory', 'categories-noCategory' => 'categories.noCategory',
'currency-index' => 'currency.index', 'currency-index' => 'currency.index',
'currency-create' => 'currency.create', 'currency-create' => 'currency.create',
'currency-edit' => 'currency.edit', 'currency-edit' => 'currency.edit',
'currency-delete' => 'currency.delete', 'currency-delete' => 'currency.delete',
'new-user-index' => 'new-user.index', 'new-user-index' => 'new-user.index',
'piggy-banks-index' => 'piggy-banks.index', 'piggy-banks-index' => 'piggy-banks.index',
'piggy-banks-create' => 'piggy-banks.create', 'piggy-banks-create' => 'piggy-banks.create',
'piggy-banks-edit' => 'piggy-banks.edit', 'piggy-banks-edit' => 'piggy-banks.edit',
'piggy-banks-delete' => 'piggy-banks.delete', 'piggy-banks-delete' => 'piggy-banks.delete',
'piggy-banks-show' => 'piggy-banks.show', 'piggy-banks-show' => 'piggy-banks.show',
'preferences' => 'preferences', 'preferences' => 'preferences',
'profile' => 'profile', 'profile' => 'profile',
'profile-change-password' => 'profile.change-password', 'profile-change-password' => 'profile.change-password',
'profile-delete-account' => 'profile.delete-account', 'profile-delete-account' => 'profile.delete-account',
'reports-index' => 'reports.index', 'reports-index' => 'reports.index',
'reports-report' => 'reports.report', 'reports-report' => 'reports.report',
'search' => 'search', 'search' => 'search',
'tags-index' => 'tags.index', 'tags-index' => 'tags.index',
'tags-create' => 'tags.create', 'tags-create' => 'tags.create',
'tags-show' => 'tags.show', 'tags-show' => 'tags.show',
'tags-edit' => 'tags.edit', 'tags-edit' => 'tags.edit',
'tags-delete' => 'tags.delete', 'tags-delete' => 'tags.delete',
'transactions-index' => 'transactions.index', 'transactions-index' => 'transactions.index',
'transactions-create' => 'transactions.create', 'transactions-create' => 'transactions.create',
'transactions-edit' => 'transactions.edit', 'transactions-edit' => 'transactions.edit',
'transactions-delete' => 'transactions.delete', 'transactions-delete' => 'transactions.delete',
'transactions-show' => 'transactions.show', 'transactions-show' => 'transactions.show',
]; ];

2
resources/lang/en_US/pagination.php Normal file → Executable file
View File

@ -8,6 +8,8 @@
*/ */
return [ return [
'previous' => '&laquo; Previous', 'previous' => '&laquo; Previous',
'next' => 'Next &raquo;', 'next' => 'Next &raquo;',
]; ];

0
resources/lang/en_US/passwords.php Normal file → Executable file
View File

View File

@ -77,4 +77,9 @@ return [
'url' => 'The :attribute format is invalid.', 'url' => 'The :attribute format is invalid.',
'timezone' => 'The :attribute must be a valid zone.', 'timezone' => 'The :attribute must be a valid zone.',
'2fa_code' => 'The :attribute field is invalid.', '2fa_code' => 'The :attribute field is invalid.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'The :attribute field has a duplicate value.',
'file' => 'The :attribute must be a file.',
'in_array' => 'The :attribute field does not exist in :other.',
'present' => 'The :attribute field must be present.',
]; ];