|
@@ -33,7 +33,7 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<div class="col-8">
|
|
<div class="numbers">
|
|
<div class="numbers">
|
|
- <p class="text-sm mb-0 text-uppercase font-weight-bold">SERVER NAME</p>
|
|
|
|
|
|
+ <p class="text-sm mb-0 text-uppercase font-weight-bold">{{ __('SERVER NAME') }}</p>
|
|
<h5 class="font-weight-bolder" id="domain_text">
|
|
<h5 class="font-weight-bolder" id="domain_text">
|
|
<span class="text-success text-sm font-weight-bolder">{{ $server->name }}</span>
|
|
<span class="text-success text-sm font-weight-bolder">{{ $server->name }}</span>
|
|
</h5>
|
|
</h5>
|
|
@@ -54,9 +54,9 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<div class="col-8">
|
|
<div class="numbers">
|
|
<div class="numbers">
|
|
- <p class="text-sm mb-0 text-uppercase font-weight-bold">CPU</p>
|
|
|
|
|
|
+ <p class="text-sm mb-0 text-uppercase font-weight-bold">{{ __('CPU') }}</p>
|
|
<h5 class="font-weight-bolder">
|
|
<h5 class="font-weight-bolder">
|
|
- <span class="text-success text-sm font-weight-bolder">@if($server->product->cpu == 0)Unlimited @else {{$server->product->cpu}} % @endif</span>
|
|
|
|
|
|
+ <span class="text-success text-sm font-weight-bolder">@if($server->product->cpu == 0){{ __('Unlimited') }} @else {{$server->product->cpu}} % @endif</span>
|
|
</h5>
|
|
</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -75,9 +75,9 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<div class="col-8">
|
|
<div class="numbers">
|
|
<div class="numbers">
|
|
- <p class="text-sm mb-0 text-uppercase font-weight-bold">Memory</p>
|
|
|
|
|
|
+ <p class="text-sm mb-0 text-uppercase font-weight-bold">{{ __('MEMORY') }}</p>
|
|
<h5 class="font-weight-bolder">
|
|
<h5 class="font-weight-bolder">
|
|
- <span class="text-success text-sm font-weight-bolder">@if($server->product->memory == 0)Unlimited @else {{$server->product->memory}}MB @endif</span>
|
|
|
|
|
|
+ <span class="text-success text-sm font-weight-bolder">@if($server->product->memory == 0){{ __('Unlimited') }} @else {{$server->product->memory}}MB @endif</span>
|
|
</h5>
|
|
</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -96,9 +96,9 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-8">
|
|
<div class="col-8">
|
|
<div class="numbers">
|
|
<div class="numbers">
|
|
- <p class="text-sm mb-0 text-uppercase font-weight-bold">STORAGE</p>
|
|
|
|
|
|
+ <p class="text-sm mb-0 text-uppercase font-weight-bold">{{ __('STORAGE') }}</p>
|
|
<h5 class="font-weight-bolder">
|
|
<h5 class="font-weight-bolder">
|
|
- <span class="text-success text-sm font-weight-bolder">@if($server->product->disk == 0)Unlimited @else {{$server->product->disk}}MB @endif</span>
|
|
|
|
|
|
+ <span class="text-success text-sm font-weight-bolder">@if($server->product->disk == 0){{ __('Unlimited') }} @else {{$server->product->disk}}MB @endif</span>
|
|
</h5>
|
|
</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -266,7 +266,7 @@
|
|
@endif
|
|
@endif
|
|
@endforeach
|
|
@endforeach
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<br> <strong>{{__("Caution") }}:</strong> {{__("Upgrading/Downgrading your server will reset your billing cycle to now. Your overpayed Credits will be refunded. The price for the new billing cycle will be withdrawed")}}. <br>
|
|
<br> <strong>{{__("Caution") }}:</strong> {{__("Upgrading/Downgrading your server will reset your billing cycle to now. Your overpayed Credits will be refunded. The price for the new billing cycle will be withdrawed")}}. <br>
|
|
<br> {{__("Server will be automatically restarted once upgraded")}}
|
|
<br> {{__("Server will be automatically restarted once upgraded")}}
|
|
</div>
|
|
</div>
|
|
@@ -298,7 +298,7 @@
|
|
{{__("This is an irreversible action, all files of this server will be removed!")}}
|
|
{{__("This is an irreversible action, all files of this server will be removed!")}}
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<div class="modal-footer">
|
|
- <button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
|
|
|
|
|
|
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Cancel') }}</button>
|
|
<form class="d-inline" method="post" action="{{ route('servers.destroy', ['server' => $server->id]) }}">
|
|
<form class="d-inline" method="post" action="{{ route('servers.destroy', ['server' => $server->id]) }}">
|
|
@csrf
|
|
@csrf
|
|
@method('DELETE')
|
|
@method('DELETE')
|