Skip to content

Commit

Permalink
#1
Browse files Browse the repository at this point in the history
  • Loading branch information
div100 committed Mar 26, 2019
1 parent 84a5ec1 commit ab4aa28
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions resources/lang/fa/msg.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@
'Created_at'=>'تاریخ ایجاد',
'Updated_at'=>'تاریخ تجدید',
'Dashboard'=>'خلاصه معلومات',
'Total users: '=>'مجموعه استفاده کننده ها: ',
'Total users: '=>'مجموع استفاده کننده ها: ',
'Approved users: '=>' استفاده کننده های تصویب شده: ',
'Rejected users: '=>'استفاده کننده های رد شده: ',
'Pending users: '=>'استفاده کننده های معلق: ',
'Pending users'=>'استفاده کننده های معلق',
'Total bookings: '=>'مجموعه درخواست ها: ',
'Total bookings: '=>'مجموع درخواست ها: ',
'Pending bookings: '=>' درخواست های معلق : ',
'Pending bookings'=>' درخواست های معلق ',
'Pending bookings number: '=>'تعداد درخواست های معلق : ',
'Approved bookings: '=>'درخواست های تصویب شده: ',
'Rejected bookings: '=>'درخواست های رد شده: ',
'Total cars: '=>'مجموعه موتر ها: ',
'Total cars: '=>'مجموع موتر ها: ',
'Good condition cars: '=>'موتر های جور: ',
'Damaged cars: '=>'موتر های خراب: ',
'Total drivers: '=>'مجموعه راننده ها: ',
'Total drivers: '=>'مجموع راننده ها: ',
'Present drivers: '=>'راننده های حاضر: ',
'Absent drivers: '=>'راننده های غیر حاضر: ',
'My profile'=>'مشخصات من',
Expand Down Expand Up @@ -129,7 +129,7 @@
'Deputy Directorate of System development'=>'معاونیت انسجام امور',
'Select a department'=>'یک بخش را انتخاب کنید',
'Register new user'=>'ثبت استفاده کننده جدید',
'Total approved users: '=>'مجموعه استفاده کننده های تصویب شده: ',
'Total approved users: '=>'مجموع استفاده کننده های تصویب شده: ',
'New user registeration'=>'ثبت نام استفاده کننده جدید',
'Give/Change role'=>'دادن/تغیر نقش',
'User Id: '=>'آی دی استفاده کننده: ',
Expand All @@ -142,7 +142,7 @@
'Create new role'=>'ایجاد نقش جدید',
'New role creation'=>'ایجاد نقش جدید',
'Assign permission'=>'دادن و گرفتن نقش',
'Total pendings users: '=>'مجموعه استفاده کننده های معلق: ',
'Total pendings users: '=>'مجموع استفاده کننده های معلق: ',
'Insert your destination'=>'جای رفتن تان را بنویسید.',
'Count of persons'=>'تعداد اشخاص',
'More description'=>'وضاحت بیشتر',
Expand Down
8 changes: 4 additions & 4 deletions resources/views/bookings/pendings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<option value="">{{ __('msg.Select a car') }}</option>

@foreach ($freeCars as $item)
<option value="{{ $item->plate_no }}">{{ $item->type . "_" . $item->driver_id }}</option>
<option value="{{ $item->plate_no }}">{{ $item->type . " " . $item->plate_no }}</option>
@endforeach
</select>
</div>
Expand All @@ -46,7 +46,7 @@
<option value="">{{ __('msg.Select a driver') }}</option>

@foreach ($freeDrivers as $item)
<option value="{{ $item->driver_id }}">{{ $item->driver_id . "_" . $item->name ."_". $item->phone_no }}</option>
<option value="{{ $item->driver_id }}">{{ $item->name ." ". $item->phone_no }}</option>
@endforeach
</select>
</div>
Expand All @@ -65,9 +65,9 @@
<div class="help-error"></div>
</div>
<div class="col-md-12 clear-fix float-right">
<input type="submit" value="APPROVE" class="btn float-right btn-primary">
<input type="submit" value="{{ __('msg.Approve') }}" class="btn float-right btn-primary">
<span class="float-right">&nbsp;</span>
<input type="button" value="REJECT" name='reject' class="btn float-right btn-danger">
<input type="button" value="{{ __('msg.Reject') }}" name='reject' class="btn float-right btn-danger">

</div>

Expand Down

0 comments on commit ab4aa28

Please sign in to comment.