2020-08-12 20:03:45 +00:00
< ? php
/**
* @ copyright 2020 Podlibre
* @ license https :// www . gnu . org / licenses / agpl - 3.0 . en . html AGPL3
* @ link https :// castopod . org /
*/
return [
2020-10-08 16:38:30 +00:00
'manual_config' => 'Manual configuration' ,
'manual_config_subtitle' =>
'Create a `.env` file with your settings and refresh the page to continue installation.' ,
2020-08-12 20:03:45 +00:00
'form' => [
2020-10-08 16:38:30 +00:00
'instance_config' => 'Instance configuration' ,
2020-08-12 20:03:45 +00:00
'hostname' => 'Hostname' ,
2020-10-26 16:13:43 +00:00
'media_base_url' => 'Media base URL' ,
'media_base_url_hint' =>
'If you use a CDN and/or an external analytics service, you may set them here.' ,
2020-08-12 20:03:45 +00:00
'admin_gateway' => 'Admin gateway' ,
2020-10-08 16:38:30 +00:00
'admin_gateway_hint' =>
'The route to access the admin area (eg. https://example.com/cp-admin). It is set by default as cp-admin, we recommend you change it for security reasons.' ,
2020-08-12 20:03:45 +00:00
'auth_gateway' => 'Auth gateway' ,
2020-10-08 16:38:30 +00:00
'auth_gateway_hint' =>
'The route to access the authentication pages (eg. https://example.com/cp-auth). It is set by default as cp-auth, we recommend you change it for security reasons.' ,
'database_config' => 'Database configuration' ,
'database_config_hint' =>
'Castopod needs to connect to your MySQL (or MariaDB) database. If you do not have these required info, please contact your server administrator.' ,
2020-08-12 20:03:45 +00:00
'db_hostname' => 'Database hostname' ,
'db_name' => 'Database name' ,
'db_username' => 'Database username' ,
'db_password' => 'Database password' ,
'db_prefix' => 'Database prefix' ,
2020-10-08 16:38:30 +00:00
'db_prefix_hint' =>
'The prefix of the Castopod table names, leave as is if you don\'t know what it means.' ,
'cache_config' => 'Cache configuration' ,
'cache_config_hint' =>
'Choose your preferred cache handler. Leave it as the default value if you have no clue what it means.' ,
'cache_handler' => 'Cache handler' ,
'cacheHandlerOptions' => [
'file' => 'File' ,
'redis' => 'Redis' ,
2021-04-20 13:43:38 +00:00
'predis' => 'Predis' ,
2020-10-08 16:38:30 +00:00
],
'next' => 'Next' ,
'submit' => 'Finish install' ,
2020-08-12 20:03:45 +00:00
'create_superadmin' => 'Create your superadmin account' ,
'email' => 'Email' ,
'username' => 'Username' ,
'password' => 'Password' ,
],
'messages' => [
'createSuperAdminSuccess' =>
2020-10-08 16:38:30 +00:00
'Your superadmin account has been created successfully. Login to start podcasting!' ,
2020-08-12 20:03:45 +00:00
'databaseConnectError' =>
2020-10-08 16:38:30 +00:00
'Castopod could not connect to your database. Edit your database configuration and try again.' ,
'writeError' =>
'Couldn\'t create/write the `.env` file. You must create it manually by following the `.env.example` file template in the Castopod package.' ,
2020-08-12 20:03:45 +00:00
],
];