51 lines
1.6 KiB
PHP
51 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
'eyebrow' => 'Flotte',
|
|
'title' => 'Befehle',
|
|
'subtitle' => 'Befehl oder Runbook über die Flotte ausführen',
|
|
|
|
// Ad-hoc
|
|
'adhoc_title' => 'Ad-hoc-Befehl',
|
|
'command_label' => 'Befehl',
|
|
'command_placeholder' => 'z. B. uptime, systemctl status nginx …',
|
|
'scope_label' => 'Ziel',
|
|
'scope_all' => 'Ganze Flotte',
|
|
'scope_group' => 'Gruppe',
|
|
'scope_servers' => 'Auswahl',
|
|
'target_group_label' => 'Gruppe',
|
|
'target_servers_label' => 'Server',
|
|
'run' => 'Ausführen',
|
|
|
|
// Results
|
|
'results_title' => 'Ergebnis',
|
|
'no_results' => 'Noch kein Lauf.',
|
|
'exit_ok' => 'OK',
|
|
'exit_fail' => 'Fehler',
|
|
|
|
// Runbooks
|
|
'runbooks_title' => 'Runbooks',
|
|
'new_runbook' => 'Neues Runbook',
|
|
'runbook_name_label' => 'Name',
|
|
'runbook_command_label' => 'Befehl',
|
|
'create' => 'Speichern',
|
|
'no_runbooks_title' => 'Keine Runbooks',
|
|
'no_runbooks' => 'Noch keine gespeicherten Befehle.',
|
|
|
|
// Confirm run
|
|
'confirm_heading' => 'Befehl ausführen',
|
|
'confirm_body' => 'Auf :count Server(n) ausführen: „:command“?',
|
|
'n_servers' => '{1}:count Server|[2,*]:count Server',
|
|
|
|
// Delete runbook
|
|
'delete_heading' => 'Runbook löschen',
|
|
'delete_body' => 'Das Runbook „:name“ wird gelöscht.',
|
|
|
|
// Toasts / validation
|
|
'ran' => ':ok/:total Server erfolgreich.',
|
|
'runbook_created' => 'Runbook „:name“ gespeichert.',
|
|
'runbook_deleted' => 'Runbook „:name“ gelöscht.',
|
|
'command_required' => 'Bitte einen Befehl eingeben.',
|
|
'no_targets' => 'Keine Server im Ziel (mit aktivem Credential).',
|
|
];
|