Commit 207d0038 authored by Nicolas Widart's avatar Nicolas Widart

Adding transaltions

parent b30cbe48
<?php
return [
'form' => [
'module' => 'Module',
'target' => 'Target',
'same tab' => 'Same tab',
'new tab' => 'New tab',
]
];
<?php
return [
'form' => [
'module' => 'Module',
'target' => 'Target',
'same tab' => 'Même tab',
'new tab' => 'Nouveau tab',
]
];
<div class="form-group">
<label for="module">Module</label>
<label for="module">{{ trans('menu::menu-items.form.module') }}</label>
<select class="form-control" name="module" id="module">
<option value=""></option>
<?php foreach(Module::enabled() as $module): ?>
......@@ -9,9 +9,9 @@
</div>
<div class="form-group">
<label for="target">Target</label>
<label for="target">{{ trans('menu::menu-items.form.target') }}</label>
<select class="form-control" name="target" id="target">
<option value="_self">Same tab</option>
<option value="_blank">New tab</option>
<option value="_self">{{ trans('menu::menu-items.form.same tab') }}</option>
<option value="_blank">{{ trans('menu::menu-items.form.new tab') }}</option>
</select>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment