translate language home slider

This commit is contained in:
Bayu Lukman Yusuf 2026-02-06 15:26:55 +07:00
parent 835148d78c
commit 6e546098b7
3 changed files with 24 additions and 7 deletions

9
lang/en/home_slider.php Normal file
View File

@ -0,0 +1,9 @@
<?php
return [
'new_collection' => 'The new warm collection',
'new_fall_season' => 'New fall <br class="d-none d-md-inline">season 2024',
'shop_now' => 'Shop now',
'ready_for_party' => 'Ready for the play?',
'choose_outfits' => 'Choose outfits for play'
];

9
lang/id/home_slider.php Normal file
View File

@ -0,0 +1,9 @@
<?php
return [
'new_collection' => 'Koleksi hangat yang baru',
'new_fall_season' => 'Musim gugur <br class="d-none d-md-inline">baru 2024',
'shop_now' => 'Belanja sekarang',
'ready_for_party' => 'Siap untuk main?',
'choose_outfits' => 'Pilih pakaian untuk main'
];

View File

@ -24,21 +24,20 @@
<!-- Item --> <!-- Item -->
<div class="swiper-slide text-center text-md-start"> <div class="swiper-slide text-center text-md-start">
<p class="fs-xl mb-2 mb-lg-3 mb-xl-4">The new warm collection</p> <p class="fs-xl mb-2 mb-lg-3 mb-xl-4">{{ __('home_slider.new_collection') }}</p>
<h2 class="display-4 text-uppercase mb-4 mb-xl-5">New fall <br <h2 class="display-4 text-uppercase mb-4 mb-xl-5">{!! __('home_slider.new_fall_season') !!}</h2>
class="d-none d-md-inline">season 2024</h2>
<a class="btn btn-lg btn-outline-dark" href="{{ route('second', ['shop', 'catalog-fashion']) }}"> <a class="btn btn-lg btn-outline-dark" href="{{ route('second', ['shop', 'catalog-fashion']) }}">
Shop now {{ __('home_slider.shop_now') }}
<i class="ci-arrow-up-right fs-lg ms-2 me-n1"></i> <i class="ci-arrow-up-right fs-lg ms-2 me-n1"></i>
</a> </a>
</div> </div>
<!-- Item --> <!-- Item -->
<div class="swiper-slide text-center text-md-start"> <div class="swiper-slide text-center text-md-start">
<p class="fs-xl mb-2 mb-lg-3 mb-xl-4">Ready for the party?</p> <p class="fs-xl mb-2 mb-lg-3 mb-xl-4">{{ __('home_slider.ready_for_party') }}</p>
<h2 class="display-4 text-uppercase mb-4 mb-xl-5">Choose outfits for parties</h2> <h2 class="display-4 text-uppercase mb-4 mb-xl-5">{{ __('home_slider.choose_outfits') }}</h2>
<a class="btn btn-lg btn-outline-dark" href="{{ route('second', ['shop', 'catalog-fashion']) }}"> <a class="btn btn-lg btn-outline-dark" href="{{ route('second', ['shop', 'catalog-fashion']) }}">
Shop now {{ __('home_slider.shop_now') }}
<i class="ci-arrow-up-right fs-lg ms-2 me-n1"></i> <i class="ci-arrow-up-right fs-lg ms-2 me-n1"></i>
</a> </a>
</div> </div>