fix: 🐛 Fiy suspended typo & localization

This commit is contained in:
IceToast 2022-07-22 04:40:03 +02:00
parent 620a6b83e9
commit abd8bc6b9c
3 changed files with 4 additions and 1 deletions

View file

@ -450,6 +450,7 @@
"weekly": "Wöchentlich",
"half-annually": "Halbjährlich",
"annually": "Jährlich",
"Suspended": "Gesperrt",
"Cancelled": "Gekündigt",
"An exception has occurred while trying to cancel the server": "Ein Fehler ist aufgetreten beim Versuch, den Server zu kündigen",
"This will cancel your current server to the next billing period. It will get suspended when the current period runs out.": "Dies wird Ihren aktuellen Server zur nächsten Abrechnungsperiode kündigen. Er wird beim Ablauf der aktuellen Periode gesperrt.",

View file

@ -452,6 +452,7 @@
"weekly": "Weekly",
"half-annually": "Half-annually",
"annually": "Annually",
"Suspended": "Suspended",
"Cancelled": "Cancelled",
"An exception has occurred while trying to cancel the server": "An exception has occurred while trying to cancel the server",
"This will cancel your current server to the next billing period. It will get suspended when the current period runs out.": "This will cancel your current server to the next billing period. It will get suspended when the current period runs out.",

View file

@ -72,7 +72,7 @@
<div class="row mb-3">
<div class="col my-auto">{{ __('Status') }}:</div>
<div class="col-7 my-auto">
@if($server->suspennded)
@if($server->suspended)
<span class="badge badge-danger">{{ __('Suspended') }}</span>
@elseif($server->cancelled)
<span class="badge badge-warning">{{ __('Cancelled') }}</span>
@ -199,6 +199,7 @@
</a>
<button onclick="handleServerCancel('{{ $server->id }}');" target="__blank"
class="btn btn-warning text-center"
disabled="{{ $server->suspended }}"
data-toggle="tooltip" data-placement="bottom" title="{{ __('Cancel Server') }}">
<i class="fas fa-ban mx-4"></i>
</button>