2015-01-05 11:12:34 +00:00
< ? php
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-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-01-05 11:12:34 +00:00
],
// Incidents form fields
'incidents' => [
'name' => 'Name' ,
'status' => 'Status' ,
2015-01-06 11:43:32 +00:00
'component' => 'Component' ,
2015-01-05 11:12:34 +00:00
'message' => 'Message' ,
'message-help' => 'You may also use Markdown.' ,
'templates' => [
'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' ,
],
],
// Settings
'settings' => [
/// Application setup
'app-setup' => [
'site-name' => 'Site Name' ,
'site-url' => 'Site URL' ,
2015-01-07 13:54:28 -06:00
'site-timezone' => 'Site Timezone' ,
'site-locale' => 'Site Language' ,
2015-01-14 20:30:23 +00:00
'date-format' => 'Date Format' ,
2015-01-05 11:12:34 +00:00
'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 . " ,
2015-01-11 22:02:19 +00:00
'google-analytics' => " Google Analytics code " ,
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' ,
],
],
'user' => [
2015-01-12 13:34:31 +00:00
'username' => 'Username' ,
'email' => 'Email' ,
'password' => 'Password' ,
'api-token' => 'API Token' ,
'api-token-help' => 'Regenerating your API token will revoke all existing applications.' ,
'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
];