Skip to content

Commit

Permalink
Merge pull request #103 from rappasoft/develop
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
rappasoft authored Dec 13, 2020
2 parents 3a4604c + ec8bc95 commit d36f332
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to `laravel-livewire-tables` will be documented in this file

## [Unreleased]

## [0.3.3] - 2020-12-13

### Added

- PHP8 Support
- Spanish translations
- German translations
- French translations

### Changed

- Updated Arabic translations

## [0.3.2] - 2020-09-25

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

- Initial release

[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.2...development
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.3...development
[0.3.3]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v0.2.1...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# A dynamic table component for Laravel Livewire
![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)

[![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)
[![StyleCI](https://styleci.io/repos/250246992/shield?style=plastic)](https://github.styleci.io/repos/250246992)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"livewire/livewire": "^1.3|^2.0"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion resources/lang/ar/strings.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'clear' => 'مسح',
'export' => 'Export',
'export' => 'تصدير',
'loading' => 'تحميل...',
'no_results' => 'لا توجد نتائج لعرضها لهذا الاستعلام.',
'offline' => 'أنت غير متصل حاليا بالإنترنت.',
Expand Down
12 changes: 12 additions & 0 deletions resources/lang/de/strings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

return [
'clear' => 'Löschen',
'export' => 'Exportieren',
'loading' => 'Lädt...',
'no_results' => 'Ihre Suche ergab leider keine Treffer.',
'offline' => 'Sie sind im Moment nicht mit dem Internet verbunden.',
'per_page' => 'pro Seite',
'results' => 'Ergebnis :first bis :last von :total',
'search' => 'Suchen...',
];
12 changes: 12 additions & 0 deletions resources/lang/es/strings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

return [
'clear' => 'Limpiar',
'export' => 'Exportar',
'loading' => 'Cargando',
'no_results' => 'No se encontraron resultados para esta consulta.',
'offline' => 'Actualmente no te encuentras conectado a internet.',
'per_page' => 'Por pagina',
'results' => 'Mostrando :first a :last de :total resultados',
'search' => 'Buscar...',
];
12 changes: 12 additions & 0 deletions resources/lang/fr/strings.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

return [
'clear' => 'Effacer',
'export' => 'Exporter',
'loading' => 'En cours de chargement...',
'no_results' => 'Il n\'y a pas de résultat à afficher pour cette requête.',
'offline' => 'Vous n\'êtes pas connecté à l\'internet actuellement.',
'per_page' => 'Par page',
'results' => 'Affichage des entrées :first à :last sur un total de :total',
'search' => 'Chercher...',
];

0 comments on commit d36f332

Please sign in to comment.