chore: 🌐 Localization

This commit is contained in:
IceToast 2022-07-22 04:25:23 +02:00 committed by IceToast
parent 9ad2954f0e
commit 2c4b3ea03e
No known key found for this signature in database
GPG key ID: 1464353E063A5B97
3 changed files with 46 additions and 4 deletions

View file

@ -459,6 +459,27 @@
"zh": "Chinesisch",
"tr": "Türkisch",
"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",
"sv": "Schwedisch",
"sk": "Slowakisch",
"Imprint": "Impressum",

View file

@ -441,5 +441,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>