diff --git a/lang/de.json b/lang/de.json index 8c193fae..a9a5061b 100644 --- a/lang/de.json +++ b/lang/de.json @@ -466,6 +466,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.", diff --git a/lang/sh.json b/lang/sh.json index 2badf679..fc9457eb 100644 --- a/lang/sh.json +++ b/lang/sh.json @@ -449,6 +449,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.", diff --git a/resources/views/servers/index.blade.php b/resources/views/servers/index.blade.php index 9b5a3ac9..0fdac5a2 100644 --- a/resources/views/servers/index.blade.php +++ b/resources/views/servers/index.blade.php @@ -72,7 +72,7 @@
{{ __('Status') }}:
- @if($server->suspennded) + @if($server->suspended) {{ __('Suspended') }} @elseif($server->cancelled) {{ __('Cancelled') }} @@ -199,6 +199,7 @@