mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- use default avatar image if person image is not set - add thumbnail and medium default avatar images - set default avatar images directly in public/media folder - remove public/media's root folder from .gitignore - remove unnecessary copy:images script and cpy-cli package closes #125
67 lines
2.5 KiB
PHP
67 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'persons' => 'Persons',
|
|
'all_persons' => 'All persons',
|
|
'no_person' => 'Nobody found!',
|
|
'create' => 'Create a person',
|
|
'view' => 'View person',
|
|
'edit' => 'Edit person',
|
|
'delete' => 'Delete person',
|
|
'form' => [
|
|
'identity_section_title' => 'Identity',
|
|
'identity_section_subtitle' => 'Who is working on the podcast',
|
|
'image' => 'Picture',
|
|
'image_size_hint' =>
|
|
'Image must be squared with at least 400px wide and tall.',
|
|
'full_name' => 'Full name',
|
|
'full_name_hint' => 'This is the full name or alias of the person.',
|
|
'unique_name' => 'Unique name',
|
|
'unique_name_hint' => 'Used for URLs',
|
|
'information_url' => 'Information URL',
|
|
'information_url_hint' =>
|
|
'Url to a relevant resource of information about the person, such as a homepage or third-party profile platform.',
|
|
'submit_create' => 'Create person',
|
|
'submit_edit' => 'Save person',
|
|
],
|
|
'podcast_form' => [
|
|
'title' => 'Manage persons',
|
|
'manage_section_title' => 'Management',
|
|
'manage_section_subtitle' => 'Remove persons from this podcast',
|
|
'add_section_title' => 'Add persons to this podcast',
|
|
'add_section_subtitle' => 'You may pick several persons and roles.',
|
|
'persons' => 'Persons',
|
|
'persons_hint' =>
|
|
'You may select one or several persons with the same roles. You need to create the persons first.',
|
|
'roles' => 'Roles',
|
|
'roles_hint' =>
|
|
'You may select none, one or several roles for a person.',
|
|
'submit_add' => 'Add person(s)',
|
|
'remove' => 'Remove',
|
|
],
|
|
'episode_form' => [
|
|
'title' => 'Manage persons',
|
|
'manage_section_title' => 'Management',
|
|
'manage_section_subtitle' => 'Remove persons from this episode',
|
|
'add_section_title' => 'Add persons to this episode',
|
|
'add_section_subtitle' => 'You may pick several persons and roles.',
|
|
'persons' => 'Persons',
|
|
'persons_hint' =>
|
|
'You may select one or several persons with the same roles. You need to create the persons first.',
|
|
'roles' => 'Roles',
|
|
'roles_hint' =>
|
|
'You may select none, one or several roles for a person.',
|
|
'submit_add' => 'Add person(s)',
|
|
'remove' => 'Remove',
|
|
],
|
|
'credits' => 'Credits',
|
|
];
|