5

第一个问题:

我已经在许多类型的文本和事物中插入了本地化,但我不知道如何以以下形式将其导入:

  {{ 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>?

反正有没有用链接插入它?

提前致谢。

4

6 回答 6

14

假设您的消息存储在app/lang/en/message.php您的所有案例中,您可以使用相同的方式:

在刀片模板中:

{{ Form::label('name', Lang::get('message.key')) }}

{{ Form::text('name', null, array('placeholder' => Lang::get('message.key'))) }}

{{ Form::submit(Lang::get('message.key'), array('class' => 'btn btn-success')) }}

在 HTML 标签中混合了一些 Blade 表达式:

<a href="{{ URL::to(Lang::get('message.key')) }}">BLAH</a>
于 2013-08-14T02:56:27.623 回答
7

您还可以使用严格的 Blade 语法在 Blade 模板中使用本地化。鉴于您有一条消息/app/lang/en/messages.php对应于键“message_key”,您可以执行以下操作:

@lang('messages.message_key')

在您的应用程序配置使用的语言环境中呈现消息。

于 2015-04-20T16:10:42.047 回答
5

因此,您的两个问题的答案是:-

1) {{ Form::label('name', 'here') }}

  Here, you need to change the "here" text hence laravel localization method can be used.For eg:-
{{ Form::label('name', '__("Here")' }} or
{{ Form::label('name', '__('message.here') }}. 

2)<a href="{{ URL::to('text') }}">BLAH</a>

在这里,您需要更改标签而不是链接。

< a href="URL::to('text') ">{{__('message.BLAH')}}< /a>. 
于 2018-07-07T06:41:11.463 回答
2

这是对我有用的最简单的!

{!! Form::label('title', trans('users.addNewRecordsNameFieldLabel'),['class' => 'control-label']) !!}

我感觉,刀片解析从 {!! 或 {{ 开始

于 2016-03-19T18:08:20.113 回答
1

您的第二个问题的可能答案:

您可以像这样设置语言文件resources/lang/en/page.php

return [
    'sentence' => 'A sentence with a :link in the middle.',
    'link_text' => 'link to a another page'
];

并在 Blade 模板中使用它,如下所示:

{!! trans('page.sentence', [
    'link' => '<a href="/">' . trans('page.link_text') . '</a>'
]) !!}}

结果将是:

一个句子,中间有另一个页面的链接

于 2016-01-24T19:26:01.950 回答
0

你也可以使用 __() 方法

{{ __('app.name') }}

于 2017-02-18T14:33:16.147 回答