de.dict.itop-backup.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // Copyright (C) 2010-2014 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /*
  19. * @author ITOMIG GmbH <martin.raenker@itomig.de>
  20. * @copyright Copyright (C) 2017 Combodo SARL
  21. * @licence http://opensource.org/licenses/AGPL-3.0
  22. *
  23. */
  24. Dict::Add('DE DE', 'German', 'Deutsch', array(
  25. 'bkp-backup-running' => 'Backup wird durchgeführt. Bitte warten ...',
  26. 'bkp-restore-running' => 'Wiederherstellung läuft. Bitte warten ...',
  27. 'Menu:BackupStatus' => 'Geplante Backups',
  28. 'bkp-status-title' => 'Geplante Backups',
  29. 'bkp-status-checks' => 'Einstellungen und Prüfungen',
  30. 'bkp-mysqldump-ok' => 'mysqldump ist vorhanden: %1$s',
  31. 'bkp-mysqldump-notfound' => 'mysqldump wurde nicht gefunden: %1$s - Stellen sie sicher, das er eingespielt und im Pfad verfügbar ist oder editieren sie die Konfigurationsdatei um das MySQL bindir anzupassen.',
  32. 'bkp-mysqldump-issue' => 'mysqldump konnte nicht eingespielt werden (retcode=%1$d): Stellen sie sicher, das es installiert und im Pfad verfügbar ist oder editieren sie die Konfigurationsdatei um das MySQL bindir anzupassen.',
  33. 'bkp-missing-dir' => 'Zielverzeichniss %1$s nicht gefunden',
  34. 'bkp-free-disk-space' => '<b>%1$s frei</b> in %2$s',
  35. 'bkp-dir-not-writeable' => '%1$s ist nicht schreibbar',
  36. 'bkp-wrong-format-spec' => 'Die verwendete Definition zur Formatierung von Dateinamen ist nicht korrekt (%1$s). Die Standard-Definition %2$s wird verwendet',
  37. 'bkp-name-sample' => 'Backup-Dateien werden abhängig von Datum, Zeit und Datenbank-Identifier erstellt. Beispiel: %1$s',
  38. 'bkp-week-days' => 'Backups werden <b>jeden %1$s um %2$s durchgeführt</b>',
  39. 'bkp-retention' => 'Mindestens <b>%1$d Backups werden im Zielverzeichniss vorgehalten</b>',
  40. 'bkp-next-to-delete' => 'Wird gelöscht, wenn das nächste Backup angelegt wird (unter Einstellungen "Menge vorhalten")',
  41. 'bkp-table-file' => 'Datei',
  42. 'bkp-table-file+' => 'Nur Dateien mit der Endung .zip werden als Backup-Dateien berücksichtigt.',
  43. 'bkp-table-size' => 'Grösse',
  44. 'bkp-table-size+' => '',
  45. 'bkp-table-actions' => 'Aktionen',
  46. 'bkp-table-actions+' => '',
  47. 'bkp-status-backups-auto' => 'Geplante Backups',
  48. 'bkp-status-backups-manual' => 'Manuelle Backups',
  49. 'bkp-status-backups-none' => 'Kein Backup vorhanden',
  50. 'bkp-next-backup' => 'Das nächste Backup wird am <b>%1$s</b> (%2$s) um %3$s durchgeführt',
  51. 'bkp-button-backup-now' => 'Starte Backup',
  52. 'bkp-button-restore-now' => 'Wiederherstellen!',
  53. 'bkp-confirm-backup' => 'Bitte bestätigen sie, dass sie jetzt ein Backup erstellen wollen now.',
  54. 'bkp-confirm-restore' => 'Bitte bestätigen sie, dass sie mit Backup %1$s eine Wiederherstellung durchführen wollen.',
  55. 'bkp-wait-backup' => 'Bitte warten, bis das Backup abgeschlossen ist ...',
  56. 'bkp-wait-restore' => 'Bitte warten, bis die Wiederherstellung abgeschlossen ist ...',
  57. 'bkp-success-restore' => 'Wiederherstellung erfolgreich.',
  58. ));
  59. ?>