New translations notifications.php (Spanish)

This commit is contained in:
James Brooks
2017-05-06 10:06:43 +01:00
parent bf6322a118
commit d8ddf0cc01
+70 -27
View File
@@ -12,54 +12,97 @@
return [ return [
'component' => [ 'component' => [
'status_update' => [ 'status_update' => [
'subject' => 'Component Status Updated', 'mail' => [
'title' => 'A component\'s status was updated!', 'subject' => 'Component Status Updated',
'content' => ':name status changed from :old_status to :new_status.', 'greeting' => 'A component\'s status was updated!',
'content' => ':name status changed from :old_status to :new_status.',
'action' => 'View',
],
'slack' => [
'title' => 'Component Status Updated',
'content' => ':name status changed from :old_status to :new_status.',
],
'sms' => [
'content' => ':name status changed from :old_status to :new_status.',
],
], ],
], ],
'incident' => [ 'incident' => [
'new' => [ 'new' => [
'subject' => 'New Incident Reported', 'mail' => [
'content' => ':name was reported', 'subject' => 'New Incident Reported',
'title' => 'A new incident was reported at :app_name status page.', 'greeting' => 'A new incident was reported at :app_name.',
'action' => 'View', 'content' => 'Incident :name was reported',
'action' => 'View',
],
'slack' => [
'title' => 'Incident :name Reported',
'content' => 'A new incident was reported at :app_name',
],
'sms' => [
'content' => 'A new incident was reported at :app_name.',
],
], ],
'update' => [ 'update' => [
'subject' => 'Incident Updated', 'mail' => [
'content' => ':name was updated', 'subject' => 'Incident Updated',
'title' => ':name was updated to :new_status', 'content' => ':name was updated',
'action' => 'View', 'title' => ':name was updated to :new_status',
'action' => 'View',
],
'slack' => [
'title' => ':name Updated',
'content' => ':name was updated to :new_status',
],
'sms' => [
'content' => 'Incident :name was updated',
],
], ],
], ],
'schedule' => [ 'schedule' => [
'new' => [ 'new' => [
'subject' => 'New Schedule Created', 'mail' => [
'content' => ':name was scheduled for :date', 'subject' => 'New Schedule Created',
'title' => 'A new scheduled maintenance was created.', 'content' => ':name was scheduled for :date',
'action' => 'View', 'title' => 'A new scheduled maintenance was created.',
'action' => 'View',
],
'slack' => [
'title' => 'New Schedule Created!',
'content' => ':name was scheduled for :date',
],
'sms' => [
'content' => ':name was scheduled for :date',
],
], ],
], ],
'subscriber' => [ 'subscriber' => [
'verify' => [ 'verify' => [
'subject' => 'Verify Your Subscription', 'mail' => [
'content' => 'Click to verify your subscription to :app_name status page.', 'subject' => 'Verify Your Subscription',
'title' => 'Verify your subscription to :app_name status page.', 'content' => 'Click to verify your subscription to :app_name status page.',
'action' => 'Verify', 'title' => 'Verify your subscription to :app_name status page.',
'action' => 'Verify',
],
], ],
], ],
'system' => [ 'system' => [
'test' => [ 'test' => [
'subject' => 'Ping from Cachet!', 'mail' => [
'content' => 'This is a test notification from Cachet!', 'subject' => 'Ping from Cachet!',
'title' => '🔔', 'content' => 'This is a test notification from Cachet!',
'title' => '🔔',
],
], ],
], ],
'user' => [ 'user' => [
'invite' => [ 'invite' => [
'subject' => 'Your invitation is inside...', 'mail' => [
'content' => 'You have been invited to join :app_name status page.', 'subject' => 'Your invitation is inside...',
'title' => 'You\'re invited to join :app_name status page.', 'content' => 'You have been invited to join :app_name status page.',
'action' => 'Accept', 'title' => 'You\'re invited to join :app_name status page.',
'action' => 'Accept',
],
], ],
], ],
]; ];