From 4a327be6184fbdf8b82922f8cc247d255fcf1794 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 24 May 2016 07:46:34 +0200 Subject: [PATCH] put warning for missing translation into container and row --- views/bootstrap/class.Bootstrap.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 74151ceaa..518431160 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -139,6 +139,8 @@ $(document).ready(function () { function missingḺanguageKeys() { /* {{{ */ global $MISSING_LANG, $LANG; if($MISSING_LANG) { + echo '
'."\n"; + echo '
'."\n"; echo '
'."\n"; echo "

This page contains missing translations in the selected language. Please help to improve SeedDMS and provide the translation.

"; echo "
"; @@ -149,6 +151,8 @@ $(document).ready(function () { } echo ""; echo "
There are missing translations on this page!
Please check the bottom of the page.
\n"; + echo "
\n"; + echo "
\n"; } } /* }}} */