2015-01-05 11:12:34 +00:00
< ? php
2015-04-19 08:52:39 +01:00
/*
* This file is part of Cachet .
*
2015-07-06 17:37:01 +01:00
* ( c ) Alt Three Services Limited
2015-04-19 08:52:39 +01:00
*
* For the full copyright and license information , please view the LICENSE
* file that was distributed with this source code .
*/
2015-01-05 11:12:34 +00:00
return [
// Setup form fields
'setup' => [
2015-01-09 09:03:07 +00:00
'email' => 'Email' ,
'username' => 'Username' ,
'password' => 'Password' ,
'site_name' => 'Site Name' ,
'site_domain' => 'Site Domain' ,
'site_timezone' => 'Select your timezone' ,
'site_locale' => 'Select your language' ,
'enable_google2fa' => 'Enable Google Two Factor Authentication' ,
2015-05-23 10:35:28 +01:00
'cache_driver' => 'Cache Driver' ,
'session_driver' => 'Session Driver' ,
2015-01-05 11:12:34 +00:00
],
// Login form fields
'login' => [
2015-01-13 11:55:26 +00:00
'email' => 'Email' ,
'password' => 'Password' ,
'2fauth' => 'Authentication Code' ,
'invalid' => 'Invalid email or password' ,
'invalid-token' => 'Invalid token' ,
2015-05-10 19:16:34 +01:00
'cookies' => 'You must enable cookies to login.' ,
2015-01-05 11:12:34 +00:00
],
// Incidents form fields
'incidents' => [
2015-05-24 16:33:03 -05:00
'name' => 'Name' ,
'status' => 'Status' ,
'component' => 'Component' ,
'message' => 'Message' ,
'message-help' => 'You may also use Markdown.' ,
'scheduled_at' => 'When to schedule the maintenance for?' ,
'incident_time' => 'When did this incident occur?' ,
'notify_subscribers' => 'Notify subscribers' ,
2015-05-20 08:41:02 +01:00
'visibility' => 'Incident Visibility' ,
'public' => 'Viewable by public' ,
'logged_in_only' => 'Only visible logged in users' ,
'templates' => [
2015-01-05 11:12:34 +00:00
'name' => 'Name' ,
'template' => 'Template' ,
],
],
// Components form fields
'components' => [
2015-01-05 11:32:04 +00:00
'name' => 'Name' ,
'status' => 'Status' ,
'group' => 'Group' ,
'description' => 'Description' ,
'link' => 'Link' ,
'tags' => 'Tags' ,
'tags-help' => 'Comma separated.' ,
2015-01-05 11:12:34 +00:00
'groups' => [
'name' => 'Name' ,
],
],
2015-01-21 02:32:18 -06:00
// Metric form fields
'metrics' => [
'name' => 'Name' ,
'suffix' => 'Suffix' ,
'description' => 'Description' ,
'description-help' => 'You may also use Markdown.' ,
'display-chart' => 'Display chart on status page?' ,
'default-value' => 'Default value' ,
2015-03-17 16:41:23 +00:00
'calc_type' => 'Calculation of metrics' ,
'type_sum' => 'Sum' ,
'type_avg' => 'Average' ,
2015-01-21 02:32:18 -06:00
'points' => [
'value' => 'Value' ,
],
],
2015-01-05 11:12:34 +00:00
// Settings
'settings' => [
/// Application setup
'app-setup' => [
2015-06-13 17:20:02 +02:00
'site-name' => 'Site Name' ,
'site-url' => 'Site URL' ,
'site-timezone' => 'Site Timezone' ,
'site-locale' => 'Site Language' ,
'date-format' => 'Date Format' ,
'incident-date-format' => 'Incident Timestamp Format' ,
'display-graphs' => 'Display graphs on status page?' ,
'about-this-page' => 'About this page' ,
'days-of-incidents' => 'How many days of incidents to show?' ,
'banner' => 'Banner Image' ,
'banner-help' => " It's recommended that you upload files no bigger than 930px wide . " ,
'analytics_google' => 'Google Analytics code' ,
'analytics_gosquared' => 'GoSquared Analytics code' ,
'analytics_piwik_url' => 'URL of your Piwik instance (without http(s)://)' ,
'analytics_piwik_siteid' => 'Piwik\'s site id' ,
'subscribers' => 'Allow people to signup to email notifications?' ,
2015-01-05 11:12:34 +00:00
],
'security' => [
'allowed-domains' => 'Allowed domains' ,
'allowed-domains-help' => 'Comma separated. The domain set above is automatically allowed by default.' ,
],
'stylesheet' => [
'custom-css' => 'Custom Stylesheet' ,
],
'theme' => [
'background-color' => 'Background Color' ,
'text-color' => 'Text Color' ,
2015-07-28 16:19:47 +01:00
'dashboard-login' => 'Show dashboard button in the footer?' ,
2015-01-05 11:12:34 +00:00
],
],
'user' => [
2015-01-12 13:34:31 +00:00
'username' => 'Username' ,
'email' => 'Email' ,
'password' => 'Password' ,
'api-token' => 'API Token' ,
2015-02-17 08:56:44 +00:00
'api-token-help' => 'Regenerating your API token will prevent existing applications from accessing Cachet.' ,
2015-08-02 14:16:00 +01:00
'user_level' => 'User Level' ,
'levels' => [
'admin' => 'Admin' ,
'user' => 'User' ,
],
'2fa' => [
2015-01-09 09:03:07 +00:00
'help' => 'Enabling two factor authentication increases security of your account. You will need to download <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> or a similar app on to your mobile device. When you login you will be asked to provide a token generated by the app.' ,
],
2015-01-05 11:12:34 +00:00
],
// Buttons
'add' => 'Add' ,
'save' => 'Save' ,
'update' => 'Update' ,
'create' => 'Create' ,
'edit' => 'Edit' ,
'delete' => 'Delete' ,
'submit' => 'Submit' ,
'cancel' => 'Cancel' ,
2015-01-06 11:43:32 +00:00
'remove' => 'Remove' ,
// Other
'optional' => '* Optional' ,
2015-01-05 11:12:34 +00:00
];