mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
395 B
PHP
12 lines
395 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',
|
|
];
|
|
|
|
return array_replace($de_formal, $de_informal); |