mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-15 02:35:46 +00:00

- add Breadcrumb library and service - update authorizations - add missing routes to avoid 404 links in breadcrumb - add svg_helper globally in base controller - update purgecss config to check .ts files closes #17
31 lines
940 B
PHP
31 lines
940 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'podcast_contributors' => 'Podcast contributors',
|
|
'view' => '{username}\'s contribution to {podcastName}',
|
|
'add' => 'Add contributor',
|
|
'add_contributor' => 'Add a contributor for {0}',
|
|
'edit_role' => 'Update role for {0}',
|
|
'edit' => 'Edit',
|
|
'remove' => 'Remove',
|
|
'form' => [
|
|
'user' => 'User',
|
|
'role' => 'Role',
|
|
'submit_add' => 'Add contributor',
|
|
'submit_edit' => 'Update role',
|
|
],
|
|
'messages' => [
|
|
'removeOwnerContributorError' => 'You can\'t remove the podcast owner!',
|
|
'removeContributorSuccess' =>
|
|
'You have successfully removed {username} from {podcastTitle}',
|
|
'alreadyAddedError' =>
|
|
'The contributor you\'re trying to add has already been added!',
|
|
],
|
|
];
|