-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7487671
commit 231bc79
Showing
10 changed files
with
459 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Authentication Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used during authentication for various | ||
| messages that we need to display to the user. You are free to modify | ||
| these language lines according to your application's requirements. | ||
| | ||
*/ | ||
|
||
'failed' => 'Die Zugangsdaten sind ungültig.', | ||
'throttle' => 'Zu viele Loginversuche. Bitte in :seconds Sekunden erneut versuchen.', | ||
'errorencountered' => 'Während der Anfrage ist ein Fehler aufgetreten.', | ||
'resetpassword' => 'Passwort zurücksetzen', | ||
'confirmpassword' => 'Passwort bestätigen', | ||
'sendlink' => 'Passwort Rücksetzungslink anfordern.', | ||
'emailsent' => 'Die E-Mail mit dem Rücksetzungslink ist unterwegs.', | ||
'remeberme' => 'Angemeldet bleiben', | ||
'totp_failed' => 'Das TOTP Token ist ungültig. Bitte stelle sicher dass das generierte Token gültig ist.' | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Base Pterodactyl Language | ||
|-------------------------------------------------------------------------- | ||
| | ||
| These base strings are used throughout the front-end of Pterodactyl but | ||
| not on pages that are used when viewing a server. Those keys are in server.php | ||
| | ||
*/ | ||
|
||
'validation_error' => 'Beim validieren der Daten ist ein Fehler aufgetreten:', | ||
|
||
'confirm' => 'Bist du sicher?', | ||
'failed' => 'Diese Zugangsdaten sind ungültig.', | ||
'throttle' => 'Zu viele Loginversuche. Bitte in :seconds Sekunden erneut versuchen.', | ||
'view_as_admin' => 'Du siehst die Serverliste als Administrator. Daher werden alle registrierten Server angezeigt. Server deren Eigentümer du bist sind mit einem blauen Punkt links neben dem Namen markiert.', | ||
'server_name' => 'Server Name', | ||
'no_servers' => 'Aktuell hast du keinen Zugriff auf irgendwelche server.', | ||
'form_error' => 'Folgende Fehler wurden beim Verarbeiten der Anfrage festgestellt.', | ||
'password_req' => 'Passwörter müssen folgende Anforderungen erfüllen: mindestens ein Klein- und Großbuchstabe, eine Ziffer und eine Länge von mindestens 8 Zeichen.', | ||
|
||
'account' => [ | ||
'totp_header' => 'Zwei-Faktor Authentifizierung', | ||
'totp_qr' => 'TOTP QR Code', | ||
'totp_enable_help' => 'Anscheinend hast du Zwei-Faktor Authentifizierung deaktiviert. Diese Authentifizierungsmethode schützt dein Konto zusätzlich vor unauthorisierten Zugriffen. Wenn du es aktivierst wirst du bei jedem Login dazu aufgefordert ein TOTP Token einzugeben bevor du dich einloggen kannst. Dieses Token kann mit einem Smartphone oder anderen TOTP unterstützenden Gerät erzeugt werden.', | ||
'totp_apps' => 'Du benötigst eine TOTP unterstützende App (z.B. Google Authenticator, DUO Mobile, Authy, Enpass) um diese Option zu nutzen.', | ||
'totp_enable' => 'Aktiviere Zwei-Faktor Authentifizierung', | ||
'totp_disable' => 'Deaktiviere Zwei-Faktor Authentifizierung', | ||
'totp_token' => 'TOTP Token', | ||
'totp_disable_help' => 'Um Zwei-Faktor Authentifizierung zu deaktiveren musst du ein gültiges TOTP Token eingeben. Danach wird Zwei-Faktor Authentifizierung deaktivert.', | ||
'totp_checkpoint_help' => 'Bitte verifiziere deine TOTP Einstellungen indem du den QR Code mit einer App auf deinem Smartphone scannst und gebe die 6 Stellige Nummer im Eingabefeld unten ein. Drücke die Eingabetaste wenn du fertig bist.', | ||
'totp_enabled' => 'Zwei-Faktor Authentifizierung wurde erfolgreich aktiviert. Bitte schließe dieses Popup um den Vorgang abzuschließen.', | ||
'totp_enabled_error' => 'Das angegebene TOTP Token konnte nicht verifiziert werden. Bitte versuche es noch einmal.', | ||
|
||
'email_password' => 'Email Passwort', | ||
'update_user' => 'Benutzer aktualisieren', | ||
'delete_user' => 'Benutzer löschen', | ||
'update_email' => 'Email aktualisieren', | ||
'new_email' => 'Neue Email', | ||
'new_password' => 'Neues Passwort', | ||
'update_pass' => 'Passwort aktualisieren' | ||
|
||
] | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Pagination Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are used by the paginator library to build | ||
| the simple pagination links. You are free to change them to anything | ||
| you want to customize your views to better match your application. | ||
| | ||
*/ | ||
|
||
'previous' => '« Vorherige', | ||
'next' => 'Nächste »', | ||
'sidebar' => [ | ||
'account_controls' => 'Account Verwaltung', | ||
'account_settings' => 'Account Einstellungen', | ||
'account_security' => 'Account Sicherheit', | ||
'server_controls' => 'Server Verwaltung', | ||
'servers' => 'Deine Server', | ||
'overview' => 'Server Übersicht', | ||
'files' => 'Datei Manager', | ||
'subusers' => 'Sub-Benutzer verwalten', | ||
'manage' => 'Server verwalten', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Password Reminder Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| The following language lines are the default lines which match reasons | ||
| that are given by the password broker for a password update attempt | ||
| has failed, such as for an invalid token or invalid new password. | ||
| | ||
*/ | ||
|
||
'password' => 'Dein Passwort muss länger als 6 Zeichen sein und mit der Wiederolung übereinstimmen.', | ||
'reset' => 'Dein Passwort wurde zurückgesetzt!', | ||
'sent' => 'Du erhältst eine E-Mail mit dem Zurücksetzungslink!', | ||
'token' => 'Dieses Paswortrücksetzungstoken ist ungültig.', | ||
'user' => 'Wir können keinen Nutzer mit dieser Email Adresse finden.', | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Pterodactyl Language Strings for /server/{server} Routes | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'ajax' => [ | ||
'socket_error' => 'Wir konnten uns nicht zum Socket.IO server verbinden. Möglicherweise bestehen Netzwerkprobleme. Das Panel funktioniert unter Umständen nicht wie erwartet.', | ||
'socket_status' => 'Der status dieses Servers hat sich geändert zu:', | ||
'socket_status_crashed' => 'Dieser Server wurde als ABGESTÜRZT erkannt.', | ||
], | ||
'index' => [ | ||
'add_new' => 'Neuen Server hinzufügen', | ||
'memory_use' => 'Speicherverbrauch', | ||
'cpu_use' => 'CPU Verbrauch', | ||
'xaxis' => 'Zeit (2s Abstand)', | ||
'server_info' => 'Server Information', | ||
'connection' => 'Standardverbindung', | ||
'mem_limit' => 'Speichergrenze', | ||
'disk_space' => 'Festplattenspeicher', | ||
'control' => 'Systemsteuerung', | ||
'usage' => 'Verbrauch', | ||
'allocation' => 'Zuweisung', | ||
'command' => 'Konsolenbefehl eingeben', | ||
], | ||
'files' => [ | ||
'loading' => 'Lade Dateibaum, das könnte ein paar Sekunden dauern...', | ||
'yaml_notice' => 'Du bearbeitest gearde eine YAML Datei. Diese Dateien benötigen Leerzeichen. Wir haben dafür gesorgt dass Tabs automatisch durch :dropdown Leerzeichen ersetzt werden.', | ||
'back' => 'Zurück zum Dateimanager', | ||
'saved' => 'Datei erfolgreich gespeichert.', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
/** | ||
* Pterodactyl - Panel | ||
* Copyright (c) 2015 - 2016 Dane Everitt <dane@daneeveritt.com> | ||
* Some Modifications (c) 2015 Dylan Seidt <dylan.seidt@gmail.com> | ||
* Translated by Jakob Schrettenbrunner <dev@schrej.net> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Standalone Pterodactyl Language Strings | ||
|-------------------------------------------------------------------------- | ||
*/ | ||
|
||
'login' => 'Login', | ||
'password' => 'Passwort', | ||
'email' => 'Email', | ||
'whoops' => 'Uuups', | ||
'success' => 'Erfolgreich', | ||
'location' => 'Ort', | ||
'node' => 'Node', | ||
'connection' => 'Verbindung', | ||
'language' => 'Sprache', | ||
'close' => 'Schließen', | ||
'start' => 'Start', | ||
'stop' => 'Stop', | ||
'restart' => 'Neustart', | ||
'save' => 'Speichern', | ||
'enabled' => 'Aktiviert', | ||
'disabled' => 'Deaktiviert', | ||
'submit' => 'Absenden', | ||
'current_password' => 'Aktuelles Passwort', | ||
'again' => 'wiederholen', | ||
'registered' => 'Registriert', | ||
'root_administrator' => 'Root Administrator', | ||
'yes' => 'Ja', | ||
'no' => 'Nein', | ||
'memory' => 'Speicher', | ||
'cpu' => 'CPU', | ||
'status' => 'Status', | ||
'players' => 'Spieler', | ||
|
||
]; |
Oops, something went wrong.