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

- merge publication date fields into one field instanciated with flatpickr datetime picker - get user timezone to convert user publication_date input to UTC - remove setPublishedAt() method from episode entity - add publication pill component to display the episode publication date info - clear cache after episode insert - use CI is_really_writable() helper in install instead of is_writable() - fix latest episodes layout - update tsconfig to only include ts folders - update DEPENDENCIES.md to include flatpickr - add format_duration helper to format episode enclosure duration instead of translating it (causes translation bug) - add Time.ts module to convert UTC time to user localized time for episode publication dates - fix some layout issues - update php and js dependencies to latest versions closes #47
32 lines
907 B
PHP
32 lines
907 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'yes' => 'Yes',
|
|
'no' => 'No',
|
|
'optional' => 'Optional',
|
|
'no_data' => 'No data found!',
|
|
'home' => 'Home',
|
|
'explicit' => 'Explicit',
|
|
'mediumDate' => '{0,date,medium}',
|
|
'powered_by' => 'Powered by {castopod}.',
|
|
'actions' => 'Actions',
|
|
'pageInfo' => 'Page {currentPage} out of {pageCount}',
|
|
'forms' => [
|
|
'multiSelect' => [
|
|
'selectText' => 'Press to select',
|
|
'loadingText' => 'Loading...',
|
|
'noResultsText' => 'No results found',
|
|
'noChoicesText' => 'No choices to choose from',
|
|
'maxItemText' => 'Cannot add more items',
|
|
],
|
|
'image_size_hint' =>
|
|
'Image must be squared with at least 1400px wide and tall.',
|
|
],
|
|
];
|