【发布时间】:2013-08-15 18:10:58
【问题描述】:
第一个问题:
我已经在许多类型的文本和事物中插入了本地化,但我不知道如何将其导入以下形式:
{{ Form::label('name', 'here') }}
{{ Form::text('name', null, array('placeholder' => 'here')) }}
{{ Form::submit('here', array('class' => 'btn btn-success')) }}
{{ Form::button('here', array('class' => 'btn btn-default')) }}
我希望它出现在表单标签“这里”和文本“这里”的占位符中。
第二个问题:
我不允许在我的语言文件中插入带有链接的链接:text here blah blah <a href="{{ URL::to('text') }}">BLAH</a>?
有没有用链接插入它?
提前致谢。
【问题讨论】:
-
解决了第一个问题,只是找不到占位符。如果有人可以帮助这个和第二个问题..
-
对于这两个问题,只需将
'here'替换为Lang::get('here')。