mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 08:23:08 +08:00
33 lines
496 B
PHP
33 lines
496 B
PHP
<?php
|
|
$de_formal = (include resource_path() . '/lang/de/' . basename(__FILE__));
|
|
|
|
$de_informal = [
|
|
|
|
/**
|
|
* Buttons
|
|
*/
|
|
|
|
/**
|
|
* Form Labels
|
|
*/
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
/**
|
|
* Misc
|
|
*/
|
|
|
|
/**
|
|
* Header
|
|
*/
|
|
|
|
/**
|
|
* Email Content
|
|
*/
|
|
'email_action_help' => 'Sollte es beim Anklicken der Schaltfläche ":action_text" Probleme geben, öffne die folgende URL in Deinem Browser:',
|
|
];
|
|
|
|
return array_replace($de_formal, $de_informal);
|