Skip to content

Commit

Permalink
Add German (de) language
Browse files Browse the repository at this point in the history
  • Loading branch information
senky committed Jan 21, 2020
1 parent 4120ccb commit 5092eb8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions language/de/clipboardimage.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php
/**
*
* Clipboard Image. An extension for the phpBB Forum Software package.
*
* @copyright (c) 2019 Jakub Senko
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

$lang = array_merge($lang, array(
'CLIPBOARDIMAGE_COPY' => 'Deine Zwischenablage enthält sowohl ein Bild als auch Text. Was davon willst Du einfügen?',
'CLIPBOARDIMAGE_TEXT' => 'Text',
'CLIPBOARDIMAGE_IMAGE' => 'Bild',
'CLIPBOARDIMAGE_BOTH' => 'Beide',
));

0 comments on commit 5092eb8

Please sign in to comment.