feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'uploading_file' => 'Chargement du fichier...',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'copied' => 'Copié',
|
||||
],
|
||||
|
||||
];
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => 'Fermer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Navigation par pagination',
|
||||
|
||||
'overview' => '{1} Affichage de 1 résultat|[2,*] Affichage de :first à :last sur :total résultats',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'records_per_page' => [
|
||||
|
||||
'label' => 'par page',
|
||||
|
||||
'options' => [
|
||||
'all' => 'Tous',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'go_to_page' => [
|
||||
'label' => 'Aller à la page :page',
|
||||
],
|
||||
|
||||
'next' => [
|
||||
'label' => 'Suivant',
|
||||
],
|
||||
|
||||
'previous' => [
|
||||
'label' => 'Précédent',
|
||||
],
|
||||
|
||||
'first' => [
|
||||
'label' => 'Première',
|
||||
],
|
||||
|
||||
'last' => [
|
||||
'label' => 'Dernière',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user