|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of Cachet. |
| 5 | + * |
| 6 | + * (c) Alt Three Services Limited |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +return [ |
| 13 | + // Components |
| 14 | + 'components' => [ |
| 15 | + 'status' => [ |
| 16 | + 1 => 'Operasioneel', |
| 17 | + 2 => 'Prestasieprobleme', |
| 18 | + 3 => 'Gedeeltelike Onderbreking', |
| 19 | + 4 => 'Groot Onderbreking', |
| 20 | + ], |
| 21 | + ], |
| 22 | + |
| 23 | + // Incidents |
| 24 | + 'incidents' => [ |
| 25 | + 'none' => 'Geen Voorvalle Aangemeld Nie.', |
| 26 | + 'past' => 'Vorige Voorvalle', |
| 27 | + 'previous_week' => 'Vorige Week', |
| 28 | + 'next_week' => 'Volgende Week', |
| 29 | + 'none' => 'Geen Voorvalle Aangemeld Nie.', |
| 30 | + 'scheduled' => 'Geskeduleerde Instandhouding', |
| 31 | + 'scheduled_at' => ', scheduled :timestamp', |
| 32 | + 'status' => [ |
| 33 | + 0 => 'Geskeduleerd', // TODO: Hopefully remove this. |
| 34 | + 1 => 'Onder die Loep', |
| 35 | + 2 => 'Geïdentifiseerd', |
| 36 | + 3 => 'Hou Dop', |
| 37 | + 4 => 'Opgelos', |
| 38 | + ], |
| 39 | + ], |
| 40 | + |
| 41 | + // Service Status |
| 42 | + 'service' => [ |
| 43 | + 'good' => '[0,1] System operational|[2,Inf] All systems are operational', |
| 44 | + 'bad' => '[0,1] The system is currently experiencing issues|[2,Inf] Some systems are experiencing issues', |
| 45 | + 'major' => '[0,1] The service experiencing a major outage|[2,Inf] Some systems are experiencing a major outage', |
| 46 | + ], |
| 47 | + |
| 48 | + 'api' => [ |
| 49 | + 'regenerate' => 'Regenerate API Key', |
| 50 | + 'revoke' => 'Revoke API Key', |
| 51 | + ], |
| 52 | + |
| 53 | + // Metrics |
| 54 | + 'metrics' => [ |
| 55 | + 'filter' => [ |
| 56 | + 'last_hour' => 'Last Hour', |
| 57 | + 'hourly' => 'Afgelope 12 Uur', |
| 58 | + 'weekly' => 'Weekliks', |
| 59 | + 'monthly' => 'Maandeliks', |
| 60 | + ], |
| 61 | + ], |
| 62 | + |
| 63 | + // Subscriber |
| 64 | + 'subscriber' => [ |
| 65 | + 'subscribe' => 'Subscribe to get the most recent updates', |
| 66 | + 'button' => 'Subscribe', |
| 67 | + 'email' => [ |
| 68 | + 'subscribe' => 'Subscribe to email updates.', |
| 69 | + 'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.', |
| 70 | + 'verified' => 'Your email subscription has been confirmed. Thank you!', |
| 71 | + 'unsubscribe' => 'Unsubscribe from email updates.', |
| 72 | + 'unsubscribed' => 'Your email subscription has been cancelled.', |
| 73 | + 'failure' => 'Something went wrong with the subscription.', |
| 74 | + 'already-subscribed' => 'Cannot subscribe :email because they\'re already subscribed.', |
| 75 | + 'verify' => [ |
| 76 | + 'text' => "Please confirm your email subscription to :app_name status updates.\n:link\nThank you, :app_name", |
| 77 | + 'html-preheader' => 'Please confirm your email subscription to :app_name status updates.', |
| 78 | + 'html' => '<p>Please confirm your email subscription to :app_name status updates.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', |
| 79 | + ], |
| 80 | + 'maintenance' => [ |
| 81 | + 'text' => "New maintenance has been scheduled on :app_name.\nThank you, :app_name", |
| 82 | + 'html-preheader' => 'New maintenance has been scheduled on :app_name.', |
| 83 | + 'html' => '<p>New maintenance has been scheduled on :app_name.</p>', |
| 84 | + ], |
| 85 | + 'incident' => [ |
| 86 | + 'text' => "New incident has been reported on :app_name.\nThank you, :app_name", |
| 87 | + 'html-preheader' => 'New incident has been reported on :app_name.', |
| 88 | + 'html' => '<p>New incident has been reported on :app_name.</p><p>Thank you, :app_name</p>', |
| 89 | + ], |
| 90 | + 'component' => [ |
| 91 | + 'subject' => 'Component Status Update', |
| 92 | + 'text' => 'The component :component_name has seen a status change. The component is now at :component_human_status.\nThank you, :app_name', |
| 93 | + 'html-preheader' => 'Component Update from :app_name', |
| 94 | + 'html' => '<p>The component :component_name has seen a status change. The component is now at :component_human_status.</p><p>Thank you, :app_name</p>', |
| 95 | + 'tooltip-title' => 'Subscribe to notifications for :component_name.', |
| 96 | + ], |
| 97 | + ], |
| 98 | + ], |
| 99 | + |
| 100 | + 'users' => [ |
| 101 | + 'email' => [ |
| 102 | + 'invite' => [ |
| 103 | + 'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name", |
| 104 | + 'html-preheader' => 'You have been invited to the team :app_name.', |
| 105 | + 'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>', |
| 106 | + ], |
| 107 | + ], |
| 108 | + ], |
| 109 | + |
| 110 | + 'signup' => [ |
| 111 | + 'title' => 'Sign Up', |
| 112 | + 'username' => 'Username', |
| 113 | + 'email' => 'Email', |
| 114 | + 'password' => 'Password', |
| 115 | + 'success' => 'Your account has been created.', |
| 116 | + 'failure' => 'Something went wrong with the signup.', |
| 117 | + ], |
| 118 | + |
| 119 | + 'system' => [ |
| 120 | + 'update' => 'There is a newer version of Cachet available. You can learn how to update <a href="https://docs.cachethq.io/docs/updating-cachet">here</a>!', |
| 121 | + ], |
| 122 | + |
| 123 | + // Modal |
| 124 | + 'modal' => [ |
| 125 | + 'close' => 'Close', |
| 126 | + 'subscribe' => [ |
| 127 | + 'title' => 'Subscribe to component updates?', |
| 128 | + 'body' => 'Enter your email address to subscribe to updates for this component. If you\'re already subscribed, you\'ll receive emails for this component too.', |
| 129 | + 'button' => 'Subscribe', |
| 130 | + ], |
| 131 | + ], |
| 132 | + |
| 133 | + // Other |
| 134 | + 'powered_by' => ':app Status Page is powered by <a href="https://cachethq.io" class="links">Cachet</a>.', |
| 135 | + 'about_this_site' => 'About This Site', |
| 136 | + 'rss-feed' => 'RSS', |
| 137 | + 'atom-feed' => 'Atom', |
| 138 | + 'feed' => 'Status Feed', |
| 139 | + |
| 140 | +]; |
0 commit comments