14 lines
285 B
PHP
14 lines
285 B
PHP
<?php
|
|
|
|
return [
|
|
'all' => 'Tous',
|
|
'emergency' => 'Urgence',
|
|
'alert' => 'Alerte',
|
|
'critical' => 'Critique',
|
|
'error' => 'Erreur',
|
|
'warning' => 'Avertissement',
|
|
'notice' => 'Notice',
|
|
'info' => 'Info',
|
|
'debug' => 'Debug',
|
|
];
|