chore: 🌐 Localization

This commit is contained in:
IceToast 2022-07-22 04:25:23 +02:00
parent dbbdfaa623
commit 737bf6e8e9
3 changed files with 47 additions and 5 deletions

View file

@ -442,5 +442,26 @@
"pl": "Polnisch",
"zh": "Chinesisch",
"tr": "Türkisch",
"ru": "Russisch"
"ru": "Russisch",
"hourly": "Stündlich",
"monthly": "Monatlich",
"yearly": "Jährlich",
"daily": "Täglich",
"weekly": "Wöchentlich",
"half-annually": "Halbjährlich",
"annually": "Jährlich",
"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.",
"This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.": "Dies ist eine irreversibel Aktion, alle Dateien dieses Servers werden gelöscht. Keine Gelder werden zurückgezahlt. Wir empfehlen, den Server zu löschen, wenn er gesperrt ist.",
"Cancel Server?": "Server kündigen?",
"Delete Server?": "Server löschen?",
"Billing Period": "Abrechnungsperiode",
"Next Billing Cycle": "Nächste Abrechnungsperiode",
"Manage Server": "Server verwalten",
"Delete Server": "Server löschen",
"Cancel Server": "Server kündigen",
"Yes, cancel it!": "Ja, löschen!",
"No, abort!": "Abbrechen",
"Billing period": "Abrechnungsperiode"
}

View file

@ -444,5 +444,26 @@
"pl": "Polish",
"zh": "Chinese",
"tr": "Turkish",
"ru": "Russian"
"ru": "Russian",
"hourly": "Hourly",
"monthly": "Monthly",
"yearly": "Yearly",
"daily": "Daily",
"weekly": "Weekly",
"half-annually": "Half-annually",
"annually": "Annually",
"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.",
"Cancel Server?": "Cancel Server?",
"Delete Server?": "Delete Server?",
"This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.": "This is an irreversible action, all files of this server will be removed. No funds will get refunded. We recommend deleting the server when server is suspended.",
"Billing Period": "Billing Period",
"Next Billing Cycle": "Next Billing Cycle",
"Manage Server": "Manage Server",
"Delete Server": "Delete Server",
"Cancel Server": "Cancel Server",
"Yes, cancel it!": "Yes, cancel it!",
"No, abort!": "No, abort!",
"Billing period": "Billing period"
}

View file

@ -194,17 +194,17 @@
<a href="{{ config('SETTINGS::SYSTEM:PTERODACTYL:URL') }}/server/{{ $server->identifier }}"
target="__blank"
class="btn btn-info text-center float-left ml-2"
data-toggle="tooltip" data-placement="bottom" title="Manage Server">
data-toggle="tooltip" data-placement="bottom" title="{{ __('Manage Server') }}">
<i class="fas fa-tools mx-4"></i>
</a>
<button onclick="handleServerCancel('{{ $server->id }}');" target="__blank"
class="btn btn-warning text-center"
data-toggle="tooltip" data-placement="bottom" title="Cancel Server">
data-toggle="tooltip" data-placement="bottom" title="{{ __('Cancel Server') }}">
<i class="fas fa-ban mx-4"></i>
</button>
<button onclick="handleServerDelete('{{ $server->id }}');" target="__blank"
class="btn btn-danger text-center float-right mr-2"
data-toggle="tooltip" data-placement="bottom" title="Delete Server">
data-toggle="tooltip" data-placement="bottom" title="{{ __('Delete Server') }}">
<i class="fas fa-trash mx-4"></i>
</button>
</div>