Skip to content

Commit d36f332

Browse files
authored
Merge pull request #103 from rappasoft/develop
Updates
2 parents 3a4604c + ec8bc95 commit d36f332

File tree

7 files changed

+54
-4
lines changed

7 files changed

+54
-4
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [0.3.3] - 2020-12-13
8+
9+
### Added
10+
11+
- PHP8 Support
12+
- Spanish translations
13+
- German translations
14+
- French translations
15+
16+
### Changed
17+
18+
- Updated Arabic translations
19+
720
## [0.3.2] - 2020-09-25
821

922
### Added
@@ -130,7 +143,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
130143

131144
- Initial release
132145

133-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.2...development
146+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.3...development
147+
[0.3.3]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.2...v0.3.3
134148
[0.3.2]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.1...v0.3.2
135149
[0.3.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.0...v0.3.1
136150
[0.3.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.1...v0.3.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A dynamic table component for Laravel Livewire
1+
![Package Logo](https://banners.beyondco.de/Laravel%20Livewire%20Tables.png?theme=light&packageName=rappasoft%2Flaravel-livewire-tables&pattern=hideout&style=style_1&description=A+dynamic+table+component+for+Laravel+Livewire&md=1&fontSize=100px&images=table)
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/rappasoft/laravel-livewire-tables.svg?style=flat-square)](https://packagist.org/packages/rappasoft/laravel-livewire-tables)
44
[![StyleCI](https://styleci.io/repos/250246992/shield?style=plastic)](https://github.styleci.io/repos/250246992)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.3",
22+
"php": "^7.3|^8.0",
2323
"livewire/livewire": "^1.3|^2.0"
2424
},
2525
"require-dev": {

resources/lang/ar/strings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'clear' => 'مسح',
5-
'export' => 'Export',
5+
'export' => 'تصدير',
66
'loading' => 'تحميل...',
77
'no_results' => 'لا توجد نتائج لعرضها لهذا الاستعلام.',
88
'offline' => 'أنت غير متصل حاليا بالإنترنت.',

resources/lang/de/strings.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
return [
4+
'clear' => 'Löschen',
5+
'export' => 'Exportieren',
6+
'loading' => 'Lädt...',
7+
'no_results' => 'Ihre Suche ergab leider keine Treffer.',
8+
'offline' => 'Sie sind im Moment nicht mit dem Internet verbunden.',
9+
'per_page' => 'pro Seite',
10+
'results' => 'Ergebnis :first bis :last von :total',
11+
'search' => 'Suchen...',
12+
];

resources/lang/es/strings.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
return [
4+
'clear' => 'Limpiar',
5+
'export' => 'Exportar',
6+
'loading' => 'Cargando',
7+
'no_results' => 'No se encontraron resultados para esta consulta.',
8+
'offline' => 'Actualmente no te encuentras conectado a internet.',
9+
'per_page' => 'Por pagina',
10+
'results' => 'Mostrando :first a :last de :total resultados',
11+
'search' => 'Buscar...',
12+
];

resources/lang/fr/strings.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
return [
4+
'clear' => 'Effacer',
5+
'export' => 'Exporter',
6+
'loading' => 'En cours de chargement...',
7+
'no_results' => 'Il n\'y a pas de résultat à afficher pour cette requête.',
8+
'offline' => 'Vous n\'êtes pas connecté à l\'internet actuellement.',
9+
'per_page' => 'Par page',
10+
'results' => 'Affichage des entrées :first à :last sur un total de :total',
11+
'search' => 'Chercher...',
12+
];

0 commit comments

Comments
 (0)