Skip to content

Commit ec8bc95

Browse files
committed
Add french translation
PHP8 support
1 parent f07fa0a commit ec8bc95

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
88

99
### Added
1010

11+
- PHP8 Support
1112
- Spanish translations
1213
- German translations
14+
- French translations
1315

1416
### Changed
1517

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/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)