File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 0.3.0] - 2020-08-XX
8
+
9
+ ### Added
10
+
11
+ - Arabic translations
12
+
13
+ ### Changed
14
+
15
+ - Publish tags to service provider
16
+
7
17
## [ 0.2.0] - 2020-08-10
8
18
9
19
### Added
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ return [
4
+ 'clear ' => 'مسح ' ,
5
+ 'loading ' => 'تحميل... ' ,
6
+ 'no_results ' => 'لا توجد نتائج لعرضها لهذا الاستعلام. ' ,
7
+ 'offline ' => 'أنت غير متصل حاليا بالإنترنت. ' ,
8
+ 'per_page ' => 'لكل صفحة ' ,
9
+ 'results ' => 'إظهار :first إلي :last من أصل :total مدخل ' ,
10
+ 'search ' => 'بحث... ' ,
11
+ ];
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ public function boot()
20
20
21
21
$ this ->publishes ([
22
22
__DIR__ .'/../resources/views ' => resource_path ('views/vendor/laravel-livewire-tables ' ),
23
- ]);
23
+ ], ' laravel-livewire-tables ' );
24
24
25
25
$ this ->publishes ([
26
26
__DIR__ .'/../resources/lang ' => resource_path ('lang/vendor/laravel-livewire-tables ' ),
27
- ]);
27
+ ], ' laravel-livewire-tables ' );
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments