Added translations

This commit is contained in:
jitendra 2019-09-18 19:12:05 +05:30
parent 4e856d02e8
commit 84969849d1
5 changed files with 14 additions and 4 deletions

View File

@ -11,7 +11,8 @@ return [
],
'common' => [
'error' => 'حدث شيء خاطئ ، رجاء حاول ثانية لاحقا.'
'error' => 'حدث شيء خاطئ ، رجاء حاول ثانية لاحقا.',
'no-result-found' => 'We could not find any records.'
],
'home' => [

View File

@ -14,7 +14,8 @@ return [
],
'common' => [
'error' => 'Something went wrong, please try again later.'
'error' => 'Something went wrong, please try again later.',
'no-result-found' => 'We could not find any records.'
],
'home' => [

View File

@ -14,7 +14,8 @@ return [
],
'common' => [
'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.'
'error' => 'مشکلی رخ داده است. لطفا بعدا دوباره امتحان کنید.',
'no-result-found' => 'We could not find any records.'
],
'home' => [

View File

@ -11,7 +11,8 @@ return [
],
'common' => [
'error' => 'Algo deu errado, por favor, tente novamente mais tarde.'
'error' => 'Algo deu errado, por favor, tente novamente mais tarde.',
'no-result-found' => 'We could not find any records.'
],
'home' => [

View File

@ -340,6 +340,12 @@
<td data-value="{{ __('shop::app.customer.account.order.view.grand-total') }}">{{ core()->formatPrice($item->total + $item->tax_amount, $order->order_currency_code) }}</td>
</tr>
@endforeach
@if (! $refund->items->count())
<tr>
<td class="empty" colspan="7">{{ __('admin::app.common.no-result-found') }}</td>
<tr>
@endif
</tbody>
</table>
</div>