The problem was that the wrong language-domain is loaded. It says in
wp-jquery-lightbox.php
load_plugin_textdomain('wp-jquery-lightbox', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/');
But the language-Files are named like
jqlb-de_DE.mo
so i renamed the file to
wp-jquery-lightbox-de_DE.mo
and it worked.
For the CSS-Localization i had to change altough in wp-jquery-lightbox.php
$fileName = "lightbox.min.{$locale}.css";
fileName = "lightbox.min.css";
to
$fileName = "lightbox.min.{$locale}.css";
// $fileName = "lightbox.min.css";