mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
23 lines
913 B
PHP
23 lines
913 B
PHP
<?php
|
|
|
|
return array(
|
|
|
|
|
|
'update' => array(
|
|
'error' => 'Während dem Aktualisieren ist ein Fehler aufgetreten.',
|
|
'success' => 'Die Einstellungen wurden erfolgreich aktualisiert.'
|
|
),
|
|
'backup' => array(
|
|
'delete_confirm' => 'Backup Datei wirklich löschen? Aktion kann nicht rückgängig gemacht werden. ',
|
|
'file_deleted' => 'Backup Datei erfolgreich gelöscht. ',
|
|
'generated' => 'Backup Datei erfolgreich erstellt.',
|
|
'file_not_found' => 'Backup Datei konnte nicht gefunden werden.',
|
|
),
|
|
'purge' => array(
|
|
'error' => 'An error has occurred while purging. ',
|
|
'validation_failed' => 'Your purge confirmation is incorrect. Please type the word "DELETE" in the confirmation box.',
|
|
'success' => 'Deleted records successfully purged.'
|
|
),
|
|
|
|
);
|