starting with de lang :)

This commit is contained in:
2021-08-08 12:31:33 +02:00
parent c817a97826
commit c48b787700
14 changed files with 597 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
return [
'notices' => [
'created' => 'Nest, :name, wurde erfolgreich erstellt.',
'deleted' => 'Das Nest wurde erfolgreich aus dem Webinterface entfernt.',
'updated' => 'Das Nest wurde erfolgreich bearbeitet.',
],
'eggs' => [
'notices' => [
'imported' => 'Dieses Egg und die zugehörigen Variablen wurden erfolgreich importiert.',
'updated_via_import' => 'Dieses Egg wurde anhand der bereitgestellten Datei aktualisiert.',
'deleted' => 'Das Egg wurde erfolgreich aus dem Webinterface entfernt.',
'updated' => 'Das Egg wurde erfolgreich bearbeitet.',
'script_updated' => 'Das Pre-Install-Script wurde aktualisiert und wird nun bei jeder Serverinstallation ausgeführt.',
'egg_created' => 'Ein neues Egg wurde erfolgreich angelegt. Sie müssen alle laufenden Daemons neu starten, um dieses neue Egg anzuwenden.',
],
],
'variables' => [
'notices' => [
'variable_deleted' => 'Die Variable ":variable" wurde gelöscht und steht den Servern nach der Wiederherstellung nicht mehr zur Verfügung.',
'variable_updated' => 'Die Variable ":variable" wurde aktualisiert. Sie müssen alle Server, die diese Variable verwenden, neu erstellen, um die Änderungen zu übernehmen.',
'variable_created' => 'Die neue Variable wurde erfolgreich erstellt und diesem Egg zugewiesen.',
],
],
];

View File

@@ -0,0 +1,23 @@
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
return [
'validation' => [
'fqdn_not_resolvable' => 'Der FQDN wird nicht zu der angebenen IP-Adresse aufgelöst.',
'fqdn_required_for_ssl' => 'A fully qualified domain name that resolves to a public IP address is required in order to use SSL for this node.',
],
'notices' => [
'allocations_added' => 'Diesem Knoten wurden erfolgreich Ports zugewiesen.',
'node_deleted' => 'Der Knoten wurde erfolgreich aus dem Webinterface entfernt.',
'location_required' => 'Sie müssen mindestens einen Standort konfiguriert haben, bevor Sie einen Knoten zu diesem Bereich hinzufügen können.',
'node_created' => 'Erfolgreich einen neuen Knoten erstellt. Sie können den Daemon auf diesem Rechner automatisch konfigurieren, indem sie die \'Configuration\' aufrufen. <strong>Bevor Sie einen Server hinzufügen können, müssen Sie zunächst mindestens eine IP-Adresse und einen Port zuweisen.</strong>'
'node_updated' => 'Die Knoteninformationen wurden aktualisiert. Wenn die Einstellungen des Daemons geändert wurden, müssen Sie ihn neu starten, damit die Änderungen wirksam werden.',
'unallocated_deleted' => 'Alle nicht zugewiesenen Ports für <code>:ip</code> wurden gelöscht.',
],
];

View File

@@ -0,0 +1,34 @@
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
return [
'exceptions' => [
'no_new_default_allocation' => 'You are attempting to delete the default allocation for this server but there is no fallback allocation to use.',
'marked_as_failed' => 'This server was marked as having failed a previous installation. Current status cannot be toggled in this state.',
'bad_variable' => 'There was a validation error with the :name variable.',
'daemon_exception' => 'There was an exception while attempting to communicate with the daemon resulting in a HTTP/:code response code. This exception has been logged. (request id: :request_id)',
'default_allocation_not_found' => 'The requested default allocation was not found in this server\'s allocations.',
],
'alerts' => [
'startup_changed' => 'The startup configuration for this server has been updated. If this server\'s nest or egg was changed a reinstall will be occurring now.',
'server_deleted' => 'Server has successfully been deleted from the system.',
'server_created' => 'Server was successfully created on the panel. Please allow the daemon a few minutes to completely install this server.',
'build_updated' => 'The build details for this server have been updated. Some changes may require a restart to take effect.',
'suspension_toggled' => 'Server suspension status has been changed to :status.',
'rebuild_on_boot' => 'This server has been marked as requiring a Docker Container rebuild. This will happen the next time the server is started.',
'install_toggled' => 'The installation status for this server has been toggled.',
'server_reinstalled' => 'This server has been queued for a reinstallation beginning now.',
'details_updated' => 'Server details have been successfully updated.',
'docker_image_updated' => 'Successfully changed the default Docker image to use for this server. A reboot is required to apply this change.',
'node_required' => 'You must have at least one node configured before you can add a server to this panel.',
'transfer_nodes_required' => 'You must have at least two nodes configured before you can transfer servers.',
'transfer_started' => 'Server transfer has been started.',
'transfer_not_viable' => 'The node you selected does not have the required disk space or memory available to accommodate this server.',
],
];

View File

@@ -0,0 +1,18 @@
<?php
/**
* Pterodactyl - Panel
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
*
* This software is licensed under the terms of the MIT license.
* https://opensource.org/licenses/MIT
*/
return [
'exceptions' => [
'user_has_servers' => 'Ein Benutzer mit aktiven Servern, kann nicht gelöscht werden. Bitte löschen Sie deren Server, bevor Sie fortfahren.',
],
'notices' => [
'account_created' => 'Das Konto wurde erfolgreich erstellt.',
'account_updated' => 'Das Konto wurde erfolgreich aktualisiert.',
],
];