Skip to content

Commit

Permalink
Fixed #151 - more complete translations
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jul 19, 2014
1 parent a4b220d commit dc10330
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions app/lang/en/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
'all' => 'All',
'asset_models' => 'Asset Models',
'asset' => 'Asset',
'asset_tag' => 'Asset Tag',
'assets_available' => 'assets available',
'assets' => 'Assets',
'back' => 'Back',
Expand Down
8 changes: 4 additions & 4 deletions app/views/backend/models/view.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
<table id="example">
<thead>
<tr role="row">
<th class="col-md-3">Name</th>
<th class="col-md-3">Asset Tag</th>
<th class="col-md-3">User</th>
<th class="col-md-2">Actions</th>
<th class="col-md-3">@lang('general.name')</th>
<th class="col-md-3">@lang('general.asset_tag')</th>
<th class="col-md-3">@lang('general.user')</th>
<th class="col-md-2">@lang('table.actions')</th>
</tr>
</thead>
<tbody>
Expand Down
4 changes: 2 additions & 2 deletions app/views/backend/statuslabels/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<!-- Asset Title -->
<div class="form-group {{ $errors->has('name') ? ' has-error' : '' }}">
<label for="name" class="col-md-3 control-label">Status Label Name
<label for="name" class="col-md-3 control-label">@lang('general.name')
<i class='icon-asterisk'></i></label>
</label>
<div class="col-md-6">
Expand All @@ -54,7 +54,7 @@
<div class="form-group">
<label class="col-md-2 control-label"></label>
<div class="col-md-7">
<a class="btn btn-link" href="{{ URL::previous() }}">Cancel</a>
<a class="btn btn-link" href="{{ URL::previous() }}">@lang('general.cancel')</a>
<button type="submit" class="btn btn-success"><i class="icon-ok icon-white"></i> @lang('general.save')</button>
</div>
</div>
Expand Down

0 comments on commit dc10330

Please sign in to comment.