fix garbled characters when cjk lang is selected.
This commit is contained in:
parent
2d5a30490e
commit
0b9b3cb7bc
2 changed files with 7 additions and 2 deletions
|
|
@ -19,8 +19,13 @@ class AppServiceProvider extends ServiceProvider {
|
|||
public function boot()
|
||||
{
|
||||
HTML::macro('nav_link', function($url, $text, $url2 = '', $extra = '') {
|
||||
$capitalize = config('former.capitalize_translations');
|
||||
$class = ( Request::is($url) || Request::is($url.'/*') || Request::is($url2.'/*') ) ? ' class="active"' : '';
|
||||
$title = ucwords(trans("texts.$text")) . Utils::getProLabel($text);
|
||||
if($capitalize){
|
||||
$title = ucwords(trans("texts.$text")) . Utils::getProLabel($text);
|
||||
} else {
|
||||
$title = trans("texts.$text") . Utils::getProLabel($text);
|
||||
}
|
||||
return '<li'.$class.'><a href="'.URL::to($url).'" '.$extra.'>'.$title.'</a></li>';
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@
|
|||
|
||||
// Whether text that comes out of the translated
|
||||
// should be capitalized (ex: email => Email) automatically
|
||||
'capitalize_translations' => true,
|
||||
'capitalize_translations' => false,
|
||||
|
||||
// An array of attributes to automatically translate
|
||||
'translatable' => array(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue