2022-03-30 15:09:35 +00:00
< ? php
declare ( strict_types = 1 );
/**
* @ copyright 2020 Ad Aures
* @ license https :// www . gnu . org / licenses / agpl - 3.0 . en . html AGPL3
* @ link https :// castopod . org /
*/
return [
2024-02-05 17:03:36 +00:00
'manual_config' => 'Handmatige configuratie' ,
2022-03-30 15:09:35 +00:00
'manual_config_subtitle' =>
'Create a `.env` file with your settings and refresh the page to continue installation.' ,
'form' => [
2024-08-09 15:27:51 +00:00
'instance_config' => 'Instantie configuratie' ,
2024-02-05 17:03:36 +00:00
'hostname' => 'Hostnaam' ,
2022-03-30 15:09:35 +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.' ,
'admin_gateway' => 'Admin gateway' ,
'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.' ,
'auth_gateway' => 'Auth gateway' ,
'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.' ,
2024-08-09 15:27:51 +00:00
'database_config' => 'Databaseconfiguratie' ,
2022-03-30 15:09:35 +00:00
'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.' ,
'db_hostname' => 'Database hostname' ,
2024-02-05 17:03:36 +00:00
'db_name' => 'Databasenaam' ,
2022-03-30 15:09:35 +00:00
'db_username' => 'Database username' ,
2024-08-09 15:27:51 +00:00
'db_password' => 'Database wachtwoord' ,
2022-03-30 15:09:35 +00:00
'db_prefix' => 'Database prefix' ,
'db_prefix_hint' =>
" The prefix of the Castopod table names, leave as is if you don't know what it means. " ,
2024-08-09 15:27:51 +00:00
'cache_config' => 'Cache-configuratie' ,
2022-03-30 15:09:35 +00:00
'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' => [
2024-02-05 17:03:36 +00:00
'file' => 'Bestand' ,
2022-03-30 15:09:35 +00:00
'redis' => 'Redis' ,
'predis' => 'Predis' ,
],
2024-02-05 17:03:36 +00:00
'next' => 'Volgende' ,
'submit' => 'Installatie voltooien' ,
2022-03-30 15:09:35 +00:00
'create_superadmin' => 'Create your superadmin account' ,
2024-02-05 17:03:36 +00:00
'email' => 'E-mail' ,
'username' => 'Gebruikersnaam' ,
'password' => 'Wachtwoord' ,
2022-03-30 15:09:35 +00:00
],
'messages' => [
'createSuperAdminSuccess' =>
'Your superadmin account has been created successfully. Login to start podcasting!' ,
'databaseConnectError' =>
2024-08-09 15:27:51 +00:00
'Castopod kon geen verbinding maken met uw database. Bewerk uw databaseconfiguratie en probeer het opnieuw.' ,
2022-03-30 15:09:35 +00:00
'writeError' =>
" Couldn't create/write the `.env` file. You must create it manually by following the `.env.example` file template in the Castopod package. " ,
],
];