Remove welcome.blade.php and update various views to use translation functions for improved localization support. Changes include updating labels, titles, and alerts across multiple pages to utilize the __('') function, enhancing the application's internationalization capabilities.
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
<div class="switch__tab-area-item">
|
||||
<h5>{{ __('Mode') }}</h5>
|
||||
<div class="switch__tab-area-item-button type-dark-mode">
|
||||
<button class="active" data-mode="light">{{ __('light') }}</button>
|
||||
<button data-mode="dark-mode">{{ __('dark') }}</button>
|
||||
<button class="active" data-mode="light">{{ __('Light') }}</button>
|
||||
<button data-mode="dark-mode">{{ __('Dark') }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user