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", "Nests": "Nests",
"Eggs": "Eggs", "Eggs": "Eggs",
"Last updated :date": "Zuletzt aktualisiert :date", "Last updated :date": "Zuletzt aktualisiert :date",
"Purchase": "Kaufen",
"ID": "ID", "ID": "ID",
"User": "Benutzer", "User": "Benutzer",

View file

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

View file

@ -135,8 +135,7 @@
<!-- this row will not appear when printing --> <!-- this row will not appear when printing -->
<div class="row no-print"> <div class="row no-print">
<div class="col-12"> <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 <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')}}
Payment')}}
</a> </a>
</div> </div>
</div> </div>

View file

@ -53,7 +53,7 @@
<td>{{$product->formatToCurrency($product->price)}}</td> <td>{{$product->formatToCurrency($product->price)}}</td>
<td>{{strtolower($product->type) == 'credits' ? CREDITS_DISPLAY_NAME : $product->type}}</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><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> </td>
</tr> </tr>
@endforeach @endforeach