diff --git a/app/Http/routes.php b/app/Http/routes.php index 9f5b192f870809e0e1d11c5f494d778edf9c3315..0e24294b234f31f1d08f4a89dc0f5b146a8f5d5a 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -148,4 +148,8 @@ Route::get('qt', 'MetaGerSearch@quicktips'); Route::get('tips', 'MetaGerSearch@tips'); Route::get('opensearch.xml', 'StartpageController@loadPlugin'); + Route::get('owi', function() + { + return redirect('https://metager.de/klassik/en/owi/'); + }); }); diff --git a/public/css/styleResultPage.css b/public/css/styleResultPage.css index 86884153cb57deecacfa36413f6dee3fe9c7c5b7..65fb3116e89ff8dbbf432d2895abb1015723278a 100644 --- a/public/css/styleResultPage.css +++ b/public/css/styleResultPage.css @@ -300,6 +300,7 @@ a:hover } .result:not(.ad) .link > span{ white-space:nowrap; + margin: 0 5px; } .result:not(.ad) .link .options{ color: #333; @@ -312,7 +313,7 @@ a:hover color: #333; display:block; padding-left:5px; - padding-right:10px; + padding-right:5px; } .result:not(.ad) .link .options > a > span{ font-size:10px; diff --git a/resources/lang/de/index.php b/resources/lang/de/index.php index 8996e9c6e25f09b00caf4dc5dc4fb1d1da1236b2..a2d6b3834c08a13bf5dc3bcbc8e06e6c3cfb6227 100644 --- a/resources/lang/de/index.php +++ b/resources/lang/de/index.php @@ -16,9 +16,9 @@ return [ 'sponsors.head.1' => 'Weitere Informationen', 'sponsors.head.2' => 'Sponsoren', - 'sponsors.woxikon' => 'Woxikon: Nach Wörtern & Synonymen suchen', - 'sponsors.gutscheine' => 'Aktuelle Gutscheine auf Gutschein-Magazin.de', - 'sponsors.kredite' => 'Günstige Kredite auf FINANZCHECK.de vergleichen ', + 'sponsors.woxikon' => '<a href="http://www.woxikon.de/" class="mutelink" target="_blank">Woxikon: Nach Wörtern & Synonymen suchen</a>', + 'sponsors.gutscheine' => '<a href="http://www.gutschein-magazin.de/" class="mutelink" target="_blank">Aktuelle Gutscheine auf Gutschein-Magazin.de</a>', + 'sponsors.kredite' => '<a href="https://www.finanzcheck.de/" class="mutelink" target="_blank">Günstige Kredite auf FINANZCHECK.de vergleichen ', 'about.title' => 'Über uns', 'about.1.1' => 'Datenschutz & Privatsphäre', diff --git a/resources/lang/en/index.php b/resources/lang/en/index.php index 81adc0226ab1ebc7ecd832a8de7e2f8d1f1ac414..00f7294f6e94dd11e92d07f5608fcbe3b13c9880 100644 --- a/resources/lang/en/index.php +++ b/resources/lang/en/index.php @@ -13,12 +13,12 @@ return [ 'plugin' => 'Add the MetaGer-Plugin', 'sponsors.head.1' => 'Further Information', - 'sponsors.head.2' => '', - 'sponsors.woxikon' => '', - 'sponsors.gutscheine' => '', - 'sponsors.kredite' => '', + 'sponsors.head.2' => 'Sponsored Links', + 'sponsors.woxikon' => '<a href="/en/kontakt" class="mutelink" >This could be your link</a>', + 'sponsors.gutscheine' => '<a href="/en/kontakt" class="mutelink" >Please contact us</a>', + 'sponsors.kredite' => '<a href="/en/kontakt" class="mutelink">https://metager.de/kontakt</a>', - 'about.title' => 'About us', + 'about.title' => 'About Us', 'about.1.1' => 'Data protection & privacy', 'about.1.2' => ' are simple and natural for us.', 'about.2.1' => 'We do not work for profit. We are a ', diff --git a/resources/lang/en/staticPages.php b/resources/lang/en/staticPages.php index 19035128835529338c22eab9bed36f38c20a289c..14a5695b03fb712632a10e0c5d01ee90045bb914 100644 --- a/resources/lang/en/staticPages.php +++ b/resources/lang/en/staticPages.php @@ -8,7 +8,7 @@ return [ 'nav5' => 'Contact', 'nav6' => 'Team', 'nav7' => 'About us', - 'nav8' => 'Site Notice', + 'nav8' => 'Imprint', 'nav9' => 'Help', 'nav10' => 'Widget', 'nav11' => 'Associator', diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index d733b3972745dbcb65d81999a518798862baa8d2..3877443023a4355a6b2f5efe6b27556c6ed73b1f 100644 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -204,13 +204,13 @@ <h2>{{ trans('index.sponsors.head.2') }}</h2> <ul> <li> - <a href="http://www.woxikon.de/" class="mutelink" target="_blank">{{ trans('index.sponsors.woxikon') }}</a> + {!! trans('index.sponsors.woxikon') !!}</a> </li> <li> - <a href="http://www.gutschein-magazin.de/" class="mutelink" target="_blank">{{ trans('index.sponsors.gutscheine') }}</a> + {!! trans('index.sponsors.gutscheine') !!} </li> <li> - <a href="https://www.finanzcheck.de/" class="mutelink" target="_blank">{{ trans('index.sponsors.kredite') }}</a> + {!! trans('index.sponsors.kredite') !!} </li> </ul> </div>