Small translations as a basic start [skip ci]

This commit is contained in:
James Cole
2015-05-14 10:26:15 +02:00
parent 8400ebc9c6
commit 015570c741
22 changed files with 99 additions and 53 deletions

View File

@@ -1,13 +1,14 @@
{% if type == 'create' %}
<div class="form-group">
<label for="{{ name }}_return_to_form" class="col-sm-4 control-label">
Return here
{{ trans('form.returnHere') }}
</label>
<div class="col-sm-8">
<div class="radio">
<label>
{{ Form.checkbox('create_another', '1') }}
After storing, return here to create another one.
{{ trans('form.returnHereExplanation') }}
</label>
</div>
</div>
@@ -17,12 +18,12 @@
{% if type == 'update' %}
<div class="form-group">
<label for="{{ name }}_return_to_edit" class="col-sm-4 control-label">
Return here
{{ trans('form.returnHere') }}
</label>
<div class="col-sm-8">
<div class="radio"><label>
{{ Form.checkbox('return_to_edit', '1', Input.old('return_to_edit') == '1') }}
After updating, return here.
{{ trans('form.returnHereUpdateExplanation') }}
</label>
</div>
</div>