You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
update default preset messages
This commit is contained in:
@@ -78,19 +78,19 @@ class FlasherPlugin extends Plugin
|
||||
'presets' => array(
|
||||
'created' => array(
|
||||
'type' => NotificationInterface::SUCCESS,
|
||||
'message' => 'The resource was created!',
|
||||
'message' => 'The resource was created',
|
||||
),
|
||||
'updated' => array(
|
||||
'type' => NotificationInterface::SUCCESS,
|
||||
'message' => 'The resource was updated!',
|
||||
'message' => 'The resource was updated',
|
||||
),
|
||||
'saved' => array(
|
||||
'type' => NotificationInterface::SUCCESS,
|
||||
'message' => 'The resource was saved!',
|
||||
'message' => 'The resource was saved',
|
||||
),
|
||||
'deleted' => array(
|
||||
'type' => NotificationInterface::SUCCESS,
|
||||
'message' => 'The resource was deleted!',
|
||||
'message' => 'The resource was deleted',
|
||||
),
|
||||
),
|
||||
), $options);
|
||||
|
||||
@@ -15,10 +15,10 @@ final class Messages
|
||||
'warning' => 'تحذير',
|
||||
'info' => 'معلومة',
|
||||
|
||||
'The resource was created!' => 'تم إنشاء :resource',
|
||||
'The resource was updated!' => 'تم تعديل :resource',
|
||||
'The resource was saved!' => 'تم حفظ :resource',
|
||||
'The resource was deleted!' => 'تم حذف :resource',
|
||||
'The resource was created' => 'تم إنشاء :resource',
|
||||
'The resource was updated' => 'تم تعديل :resource',
|
||||
'The resource was saved' => 'تم حفظ :resource',
|
||||
'The resource was deleted' => 'تم حذف :resource',
|
||||
);
|
||||
|
||||
public static $en = array(
|
||||
@@ -27,10 +27,10 @@ final class Messages
|
||||
'warning' => 'Warning',
|
||||
'info' => 'Info',
|
||||
|
||||
'The resource was created!' => 'The :resource was created!',
|
||||
'The resource was updated!' => 'The :resource was updated!',
|
||||
'The resource was saved!' => 'The :resource was saved!',
|
||||
'The resource was deleted!' => 'The :resource was deleted!',
|
||||
'The resource was created' => 'The :resource was created',
|
||||
'The resource was updated' => 'The :resource was updated',
|
||||
'The resource was saved' => 'The :resource was saved',
|
||||
'The resource was deleted' => 'The :resource was deleted',
|
||||
);
|
||||
|
||||
public static $fr = array(
|
||||
@@ -39,9 +39,9 @@ final class Messages
|
||||
'warning' => 'Avertissement',
|
||||
'info' => 'Information',
|
||||
|
||||
'The resource was created!' => 'La ressource :resource a été ajoutée !',
|
||||
'The resource was updated!' => 'La ressource :resource a été mise à jour !',
|
||||
'The resource was saved!' => 'La ressource :resource a été enregistrée !',
|
||||
'The resource was deleted!' => 'La ressource :resource a été supprimée !',
|
||||
'The resource was created' => 'La ressource :resource a été ajoutée',
|
||||
'The resource was updated' => 'La ressource :resource a été mise à jour',
|
||||
'The resource was saved' => 'La ressource :resource a été enregistrée',
|
||||
'The resource was deleted' => 'La ressource :resource a été supprimée',
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user