Skip to content

Commit d3201db

Browse files
committed
Merge branch 'abdosaeedelhassan-master' into develop
2 parents 794b786 + 5b6b399 commit d3201db

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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+
## [0.3.0] - 2020-08-XX
8+
9+
### Added
10+
11+
- Arabic translations
12+
13+
### Changed
14+
15+
- Publish tags to service provider
16+
717
## [0.2.0] - 2020-08-10
818

919
### Added

resources/lang/ar/strings.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
];

src/LivewireTablesServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ public function boot()
2020

2121
$this->publishes([
2222
__DIR__.'/../resources/views' => resource_path('views/vendor/laravel-livewire-tables'),
23-
]);
23+
], 'laravel-livewire-tables');
2424

2525
$this->publishes([
2626
__DIR__.'/../resources/lang' => resource_path('lang/vendor/laravel-livewire-tables'),
27-
]);
27+
], 'laravel-livewire-tables');
2828
}
2929
}

0 commit comments

Comments
 (0)