mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-18 00:53:10 +01:00
fix garbled characters when cjk lang is selected.
This commit is contained in:
parent
2d5a30490e
commit
0b9b3cb7bc
@ -19,8 +19,13 @@ class AppServiceProvider extends ServiceProvider {
|
|||||||
public function boot()
|
public function boot()
|
||||||
{
|
{
|
||||||
HTML::macro('nav_link', function($url, $text, $url2 = '', $extra = '') {
|
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"' : '';
|
$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>';
|
return '<li'.$class.'><a href="'.URL::to($url).'" '.$extra.'>'.$title.'</a></li>';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
// Whether text that comes out of the translated
|
// Whether text that comes out of the translated
|
||||||
// should be capitalized (ex: email => Email) automatically
|
// should be capitalized (ex: email => Email) automatically
|
||||||
'capitalize_translations' => true,
|
'capitalize_translations' => false,
|
||||||
|
|
||||||
// An array of attributes to automatically translate
|
// An array of attributes to automatically translate
|
||||||
'translatable' => array(
|
'translatable' => array(
|
||||||
|
Loading…
Reference in New Issue
Block a user