mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 00:22:37 +01:00
15 lines
430 B
PHP
15 lines
430 B
PHP
|
<?php
|
||
|
$de_formal = (include resource_path() . '/lang/de/' . basename(__FILE__));
|
||
|
|
||
|
$de_informal = [
|
||
|
/**
|
||
|
* Image Manager
|
||
|
*/
|
||
|
'image_delete_confirm' => 'Bitte klicke erneut auf löschen, wenn Du dieses Bild wirklich entfernen möchtest.',
|
||
|
'image_dropzone' => 'Ziehe Bilder hierher oder klicke hier, um ein Bild auszuwählen',
|
||
|
/**
|
||
|
* Code editor
|
||
|
*/
|
||
|
];
|
||
|
|
||
|
return array_replace($de_formal, $de_informal);
|