add german informal language

This commit is contained in:
ezzra
2018-12-11 19:39:16 +01:00
parent 75ca430fd4
commit a2acd063f3
12 changed files with 341 additions and 2 deletions

View File

@ -0,0 +1,15 @@
<?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);