Merge pull request #329 from 1day2die/localization

Fix shop page
This commit is contained in:
Dennis 2021-12-14 19:04:50 +01:00 committed by GitHub
commit d7a26c1e17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View file

@ -40,6 +40,7 @@
"Nests": "Nests",
"Eggs": "Eggs",
"Last updated :date": "Zuletzt aktualisiert :date",
"Purchase": "Kaufen",
"ID": "ID",
"User": "Benutzer",

View file

@ -40,6 +40,7 @@
"Nests": "Nests",
"Eggs": "Eggs",
"Last updated :date": "Last updated :date",
"Purchase": "Purchase",
"ID": "ID",
"User": "User",

View file

@ -135,8 +135,7 @@
<!-- this row will not appear when printing -->
<div class="row no-print">
<div class="col-12">
<a href="{{route('payment.pay' , $product->id)}}" type="button" class="btn btn-success float-right"><i class="far fa-credit-card mr-2"></i> {{__('Submit
Payment')}}
<a href="{{route('payment.pay' , $product->id)}}" type="button" class="btn btn-success float-right"><i class="far fa-credit-card mr-2"></i> {{__('Submit Payment')}}
</a>
</div>
</div>

View file

@ -53,7 +53,7 @@
<td>{{$product->formatToCurrency($product->price)}}</td>
<td>{{strtolower($product->type) == 'credits' ? CREDITS_DISPLAY_NAME : $product->type}}</td>
<td><i class="fa fa-coins mr-2"></i>{{$product->display}}</td>
<td><a href="{{route('checkout' , $product->id)}}" class="btn btn-info">Purchase</a>
<td><a href="{{route('checkout' , $product->id)}}" class="btn btn-info">{{__('Purchase')}}</a>
</td>
</tr>
@endforeach