mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-12 02:25:09 +00:00

- bundle js using parcel - add markdown editor, html editor, dropdown and tooltip features using third-party packages - integrate optimized inline svg icons from RemixIcon using svgo and a php helper - add scripts in package.json to bundle icons, images, css and js - update tailwind config to add purgecss lookups and typography plugin - refactor views to add missing pages in user journey - update admin's holy grail layout using css grid
18 lines
462 B
PHP
18 lines
462 B
PHP
<?
|
|
/**
|
|
* @copyright 2020 Podlibre
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'dashboard' => 'Dashboard',
|
|
'podcasts' => 'Podcasts',
|
|
'users' => 'Users',
|
|
'admin_home' => 'Home',
|
|
'podcast_list' => 'All podcasts',
|
|
'podcast_create' => 'New podcast',
|
|
'user_list' => 'All users',
|
|
'user_create' => 'New user',
|
|
'go_to_website' => 'Go to website'
|
|
]; |