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

- resize uploaded image to thumbnail, medium, large, feed, and id3 formats - set image url formats where adapted in views - set format sizes and extensions in Images config file for customization - add validation for image uploads: `min_dims` and `is_image_squared` - update codeigniter4 and myth-auth php packages to latest develop versions - update npm packages to latest versions - update public/.htaccess closes #6
20 lines
458 B
PHP
20 lines
458 B
PHP
<?php
|
|
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'home' => 'Home',
|
|
'explicit' => 'Explicit',
|
|
'mediumDate' => '{0,date,medium}',
|
|
'duration' => '{0,duration}',
|
|
'powered_by' => 'Powered by {castopod}.',
|
|
'forms' => [
|
|
'image_size_hint' =>
|
|
'Image must be squared with at least 1400px wide and tall.',
|
|
],
|
|
];
|