Skip to content

Commit d03b95c

Browse files
authored
Merge pull request #303 from rappasoft/develop
v1.7.1
2 parents 3482038 + f40b06a commit d03b95c

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## [Unreleased]
66

7+
## [1.7.1] - 2021-05-30
8+
9+
### Added
10+
11+
- [Arabic translation file](https://github.com/rappasoft/laravel-livewire-tables/pull/299)
12+
13+
### Changed
14+
15+
- [Fix select tag className in Bootstrap 5](https://github.com/rappasoft/laravel-livewire-tables/pull/291)
16+
717
## [1.7.0] - 2021-05-18
818

919
### Added
@@ -341,7 +351,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
341351

342352
- Initial release
343353

344-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.0...development
354+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.1...development
355+
[1.7.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.0...v1.7.1
345356
[1.7.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.6.1...v1.7.0
346357
[1.6.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.6.0...v1.6.1
347358
[1.6.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.5.1...v1.6.0

resources/lang/ar.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"All": "الكل",
3+
"Applied Filters": "التصفيات المطبقة",
4+
"Applied Sorting": "الترتيب المطبق",
5+
"Bulk Actions": "إجراءات",
6+
"Clear": "مسح",
7+
"Filters": "التصفيات",
8+
"Remove filter option": "خذف خيار التصفيه",
9+
"Remove sort option": "خذف خيار الترتيب",
10+
"Search": "بحث",
11+
"Select All": "تحديد الكل",
12+
"Showing": "إستعراض",
13+
"Unselect All": "إلغاء تحديد الكل",
14+
"You are currently selecting all": "أنت الآن تختار الكل",
15+
"You are not connected to the internet.": "أنت غير متصل بالإنترنت.",
16+
"You have selected": "لقد قمت باختيار",
17+
"of": "من",
18+
"results": "النتائج",
19+
"rows": "صفوف",
20+
"rows, do you want to select all": "الصفوف ، هل تريد تحديد الكل",
21+
"to": "إلي"
22+
}

resources/views/bootstrap-5/includes/filters.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
onclick="event.stopPropagation();"
2828
wire:model="filters.{{ $key }}"
2929
id="filter-{{ $key }}"
30-
class="form-control"
30+
class="form-select"
3131
>
3232
@foreach($filter->options() as $key => $value)
3333
<option value="{{ $key }}">{{ $value }}</option>

0 commit comments

Comments
 (0)