mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Hardcoded strings was replaced with corresponding placeholders. Log statuses mentioned in #6406 wasn't translated cause it needs more separate complicated development
This commit is contained in:
parent
b6daad7573
commit
dd7db95135
|
@ -30,6 +30,7 @@
|
||||||
'bulkaudit' => 'Bulk Audit',
|
'bulkaudit' => 'Bulk Audit',
|
||||||
'bulkaudit_status' => 'Audit Status',
|
'bulkaudit_status' => 'Audit Status',
|
||||||
'bulk_checkout' => 'Bulk Checkout',
|
'bulk_checkout' => 'Bulk Checkout',
|
||||||
|
'bystatus' => 'by Status',
|
||||||
'cancel' => 'Cancel',
|
'cancel' => 'Cancel',
|
||||||
'categories' => 'Categories',
|
'categories' => 'Categories',
|
||||||
'category' => 'Category',
|
'category' => 'Category',
|
||||||
|
@ -214,6 +215,7 @@
|
||||||
'declined' => 'declined',
|
'declined' => 'declined',
|
||||||
'unaccepted_asset_report' => 'Unaccepted Assets',
|
'unaccepted_asset_report' => 'Unaccepted Assets',
|
||||||
'users' => 'Users',
|
'users' => 'Users',
|
||||||
|
'viewall' => 'View All',
|
||||||
'viewassets' => 'View Assigned Assets',
|
'viewassets' => 'View Assigned Assets',
|
||||||
'website' => 'Website',
|
'website' => 'Website',
|
||||||
'welcome' => 'Welcome, :name',
|
'welcome' => 'Welcome, :name',
|
||||||
|
|
|
@ -200,7 +200,7 @@
|
||||||
</div><!-- /.responsive -->
|
</div><!-- /.responsive -->
|
||||||
</div><!-- /.col -->
|
</div><!-- /.col -->
|
||||||
<div class="col-md-12 text-center" style="padding-top: 10px;">
|
<div class="col-md-12 text-center" style="padding-top: 10px;">
|
||||||
<a href="{{ route('reports.activity') }}" class="btn btn-primary btn-sm" style="width: 100%">View All</a>
|
<a href="{{ route('reports.activity') }}" class="btn btn-primary btn-sm" style="width: 100%">{{ trans('general.viewall') }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.row -->
|
</div><!-- /.row -->
|
||||||
</div><!-- ./box-body -->
|
</div><!-- ./box-body -->
|
||||||
|
@ -212,7 +212,7 @@
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="box box-default">
|
<div class="box box-default">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
<h3 class="box-title">{{ trans('general.assets') }} by Status</h3>
|
<h3 class="box-title">{{ trans('general.assets') }} {{ trans('general.bystatus') }} </h3>
|
||||||
<div class="box-tools pull-right">
|
<div class="box-tools pull-right">
|
||||||
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
|
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
|
||||||
</button>
|
</button>
|
||||||
|
@ -272,7 +272,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- /.col -->
|
</div> <!-- /.col -->
|
||||||
<div class="col-md-12 text-center" style="padding-top: 10px;">
|
<div class="col-md-12 text-center" style="padding-top: 10px;">
|
||||||
<a href="{{ route('categories.index') }}" class="btn btn-primary btn-sm" style="width: 100%">View All</a>
|
<a href="{{ route('categories.index') }}" class="btn btn-primary btn-sm" style="width: 100%">{{ trans('general.viewall') }}</a>
|
||||||
</div>
|
</div>
|
||||||
</div> <!-- /.row -->
|
</div> <!-- /.row -->
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue