Merge branch 'master' into datagrid-plus-changes

This commit is contained in:
Devansh 2022-04-04 20:42:50 +05:30
commit 483cc0d5d0
5 changed files with 9 additions and 10 deletions

View File

@ -57,7 +57,7 @@ class SitemapDataGrid extends DataGrid
'sortable' => false,
'filterable' => false,
'closure' => function ($row) {
return '<a href="' . ($url = Storage::url($row->path . '/' . $row->file_name)) . '">' . $url . '</a>';
return '<a href="' . ($url = Storage::url($row->path . '/' . $row->file_name)) . '" target="_blank">' . $url . '</a>';
},
]);
}

View File

@ -1161,7 +1161,7 @@ return [
'action-type' => 'प्रक्रिया का प्रकार',
'percentage-product-price' => 'उत्पाद मूल्य का प्रतिशत',
'fixed-amount' => 'निश्चित राशि',
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी गाड़ी',
'fixed-amount-whole-cart' => 'निश्चित राशि से पूरी कार्ट',
'buy-x-get-y-free' => 'X खरीदें, Y मुफ़्त पाएं',
'discount-amount' => 'छूट राशि',
'discount-quantity' => 'अधिकतम मात्रा में छूट दी जाने की अनुमति',

View File

@ -35,10 +35,9 @@ return [
'sign-in' => 'साइन इन करें',
'sign-up' => 'साइन अप करें',
'account' => 'हेतु',
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'profile' => 'प्रोफाइल',
'wishlist' => 'इच्छा सूची',
'cart' => 'गाड़ी',
'logout' => 'लॉग आउट',
'search-text' => 'यहां उत्पाद खोजें',
],
@ -46,7 +45,7 @@ return [
'minicart' => [
'view-cart' => 'की हुई खरीददारी देखो',
'checkout' => 'चेक आउट',
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'zero' => '0',
],
@ -355,7 +354,7 @@ return [
'deleteall' => 'सभी हटा दो',
'confirm-delete-all' => 'क्या आप वाकई सभी इच्छा सूची हटाना चाहते हैं?',
'moveall' => 'सभी उत्पादों को कार्ट में ले जाएं',
'move-to-cart' => 'गाड़ी को चलाना',
'move-to-cart' => 'कार्ट को चलाना',
'error' => 'अज्ञात समस्याओं के कारण उत्पाद को विशलिस्ट में नहीं जोड़ा जा सकता, कृपया बाद में चेकबैक करें',
'add' => 'आइटम सफलतापूर्वक इच्छा सूची में जोड़ा गया',
'remove' => 'आइटम को इच्छा सूची से सफलतापूर्वक हटा दिया गया',

View File

@ -54,7 +54,7 @@
<div class="control-group">
<select class="control locale-switcher" id="locale-switcher" onchange="window.location.href = this.value" @if (count(core()->getCurrentChannel()->locales) == 1) disabled="disabled" @endif>
@foreach (core()->getCurrentChannel()->locales as $locale)
@foreach (core()->getCurrentChannel()->locales()->orderBy('name')->get() as $locale)
@if (isset($serachQuery))
<option value="?{{ $serachQuery }}&locale={{ $locale->code }}" {{ $locale->code == app()->getLocale() ? 'selected' : '' }}>{{ $locale->name }}</option>
@else

View File

@ -184,7 +184,7 @@ return [
],
'header' => [
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'guest' => 'अतिथि',
'logout' => 'लॉग आउट',
'title' => 'हेतु',
@ -203,7 +203,7 @@ return [
],
'minicart' => [
'cart' => 'गाड़ी',
'cart' => 'कार्ट',
'view-cart' => 'गाडी देंखे',
],
@ -212,7 +212,7 @@ return [
'checkout' => 'चेक आउट',
'cart' => [
'view-cart' => 'गाडी देंखे',
'cart-summary' => 'गाड़ी का संक्षिप्त विवरण',
'cart-summary' => 'कार्ट का संक्षिप्त विवरण',
],
'qty' => 'मात्रा',
'items' => 'आइटम',