Skip to content

Commit

Permalink
Added translations and fixed an issue about jobs show links
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyleeh committed Nov 7, 2018
1 parent 6cab737 commit 3449bcf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/Http/Controllers/JobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,11 @@ public function searchJson(Request $request)
* List the specified resource transactions.
*
* @param Request $request
* @param int $parent
* @param int $id
* @return Response
*/
public function show(Request $request, $id)
public function show(Request $request, $parent, $id)
{
$job = Job::findOrFail($id);

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class AppServiceProvider extends ServiceProvider
{

const VERSION = '1.0-alpha.2';
const VERSION = '1.0-alpha.3';

/**
* Bootstrap any application services.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "umomega/bookkeeper",
"description": "Laravel Powered Finance Tracker and CRM.",
"keywords": ["umomega", "bookkeeper", "finance", "crm", "multilingual", "laravel", "laravel5", "php", "php7", "finance-application", "bookkeeping", "finance-tracker"],
"version": "1.0-alpha.2",
"version": "1.0-alpha.3",
"license": "MIT",
"type": "project",
"authors": [
Expand Down
2 changes: 2 additions & 0 deletions resources/lang/en/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@
'tax_number' => 'Tax Number',
'balance' => 'Balance',
'vat_percentage' => 'VAT Percentage',
'invoice' => 'Invoice',
'offer' => 'Offer',
],

];
2 changes: 2 additions & 0 deletions resources/lang/tr/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@
'tax_number' => 'Vergi Numarası',
'balance' => 'Bakiye',
'vat_percentage' => 'KDV Yüzdesi',
'invoice' => 'Fatura',
'offer' => 'Teklif',
],

];

0 comments on commit 3449bcf

Please sign in to comment.