-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from ARCANESOFT/develop
Updating the package
- Loading branch information
Showing
52 changed files
with
979 additions
and
456 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ language: php | |
sudo: false | ||
|
||
php: | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- nightly | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ | |
|
||
'commands' => [ | ||
'install' => [ | ||
'auth:setup', | ||
'auth:install', | ||
], | ||
|
||
'publish' => [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
return [ | ||
/* ----------------------------------------------------------------- | ||
| Attributes | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'attributes' => [ | ||
'name' => 'Name', | ||
'disk' => 'Disk', | ||
'reachable' => 'Reachable', | ||
'healthy' => 'Healthy', | ||
'number_of_backups' => '# of backups', | ||
'newest_backup' => 'Newest backup', | ||
'used_storage' => 'Used storage', | ||
|
||
'date' => 'Date', | ||
'path' => 'Path', | ||
'size' => 'Size', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Titles | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'titles' => [ | ||
'backups' => 'Backups', | ||
'monitor-status' => 'Monitor Status', | ||
'monitor-statuses-list' => 'List of Monitor Statuses', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Actions | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'actions' => [ | ||
'run-backups' => 'Run Backups', | ||
'clear-backups' => 'Clear Backups', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Messages | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'messages' => [ | ||
'created' => [ | ||
'title' => 'Backups created !', | ||
'message' => 'The Backups was created successfully !', | ||
], | ||
|
||
'cleared' => [ | ||
'title' => 'Backups cleared !', | ||
'message' => 'The Backups was cleared successfully !', | ||
], | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Modals | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'modals' => [ | ||
'backup' => [ | ||
'title' => 'Backup all', | ||
'message' => 'Are you sure you want to run the <span class="label label-success">backups</span> ?', | ||
], | ||
|
||
'clear' => [ | ||
'title' => 'Clear all backups', | ||
'message' => 'Are you sure you want to <span class="label label-warning">clear</span> all the backups ?', | ||
], | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,53 @@ | ||
<?php | ||
|
||
return [ | ||
'dashboard' => 'Dashboard', | ||
|
||
'logs-list' => 'Logs list', | ||
/* ----------------------------------------------------------------- | ||
| Attributes | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'entries-stats' => ':count entries - :percent %', | ||
'attributes' => [ | ||
'file_path' => 'File path', | ||
'log_entries' => 'Log entries', | ||
'size' => 'Size', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Titles | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'titles' => [ | ||
'dashboard' => 'Dashboard', | ||
'logs-list' => 'Logs list', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Messages | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'entries-stats' => ':count entries - :percent %', | ||
'no-entries' => 'There is no log for the time being.', | ||
|
||
'messages' => [ | ||
'deleted' => [ | ||
'title' => 'Log Deleted !', | ||
'message' => 'Log [:date] was deleted successfully !', | ||
], | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Modals | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'modals' => [ | ||
'delete' => [ | ||
'title' => 'Delete Log', | ||
'message' => 'Are you sure you want to <span class="label label-danger">DELETE</span> this log file <span class="label label-primary">:date</span> ?' | ||
], | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* ----------------------------------------------------------------- | ||
| Attributes | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'attributes' => [ | ||
'methods' => 'Methods', | ||
'uri' => 'URI', | ||
'domain' => 'Domain', | ||
'name' => 'Name', | ||
'action' => 'Action', | ||
'middleware' => 'Middleware', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Titles | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'titles' => [ | ||
'routes' => 'Routes', | ||
'routes-list' => 'List of all routes', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
return [ | ||
/* ----------------------------------------------------------------- | ||
| Attributes | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'attributes' => [ | ||
'name' => 'Nom', | ||
'disk' => 'Disque', | ||
'reachable' => 'Accessible', | ||
'healthy' => 'Sain', | ||
'number_of_backups' => 'Nbr de sauvegardes', | ||
'newest_backup' => 'La plus récente sauvegarde', | ||
'used_storage' => 'Stockage utilisé', | ||
|
||
'date' => 'Date', | ||
'path' => 'Chemin', | ||
'size' => 'Taille', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Titles | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'titles' => [ | ||
'backups' => 'Sauvegardes', | ||
'monitor-status' => 'Statut du moniteur', | ||
'monitor-statuses-list' => 'Liste des statuts du moniteur', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Actions | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'actions' => [ | ||
'run-backups' => 'Exécuter les sauvegardes', | ||
'clear-backups' => 'Nettoyer les sauvegardes', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Messages | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'messages' => [ | ||
'created' => [ | ||
'title' => 'Backups created !', | ||
'message' => 'The Backups was created successfully !', | ||
], | ||
|
||
'cleared' => [ | ||
'title' => 'Backups cleared !', | ||
'message' => 'The Backups was cleared successfully !', | ||
], | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Modals | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'modals' => [ | ||
'backup' => [ | ||
'title' => 'Sauvegarder tout', | ||
'message' => 'Êtes-vous sûr de vouloir exécuter la <span class="label label-success">sauvegarde</span> des base de données ?', | ||
], | ||
|
||
'clear' => [ | ||
'title' => 'Effacer toutes les sauvegardes', | ||
'message' => 'Êtes-vous sûr de vouloir <span class="label label-warning">nettoyer</span> toutes les anciennes sauvegardes ?', | ||
], | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,53 @@ | ||
<?php | ||
|
||
return [ | ||
'dashboard' => 'Tableau de bord', | ||
|
||
'logs-list' => 'Liste des journaux', | ||
/* ----------------------------------------------------------------- | ||
| Attributes | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'attributes' => [ | ||
'file_path' => 'Chemin du fichier', | ||
'log_entries' => 'Enregistrements', | ||
'size' => 'Taille', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Titles | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'titles' => [ | ||
'dashboard' => 'Tableau de bord', | ||
'logs-list' => 'Liste des journaux', | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Messages | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'entries-stats' => ':count enregistrements - :percent %', | ||
'no-entries' => "Il n'y a aucun enregistrements pour le moment.", | ||
|
||
'messages' => [ | ||
'deleted' => [ | ||
'title' => 'Journal supprimé !', | ||
'message' => 'Journal [:date] a été supprimé avec succès !', | ||
], | ||
], | ||
|
||
/* ----------------------------------------------------------------- | ||
| Modals | ||
| ----------------------------------------------------------------- | ||
*/ | ||
|
||
'modals' => [ | ||
'delete' => [ | ||
'title' => 'Supprimer journal', | ||
'message' => 'Êtes-vous sûr de vouloir <span class="label label-danger">supprimer</span> ce journal: <span class="label label-primary">:date</span> ?' | ||
], | ||
], | ||
|
||
'no-entries' => 'There is no log for the time being.', | ||
]; |
Oops, something went wrong.