mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
- change language keys to kebab-case - add new languages to docs: ca, de, es, sr-latn, zh-hans
22 lines
522 B
PHP
22 lines
522 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
return [
|
|
'title' => 'About Castopod',
|
|
'host_name' => 'Host name',
|
|
'version' => 'Castopod version',
|
|
'php_version' => 'PHP version',
|
|
'os' => 'Operating System',
|
|
'languages' => 'Languages',
|
|
'update_database' => 'Update database',
|
|
'messages' => [
|
|
'databaseUpdateSuccess' => 'Database is up to date!',
|
|
],
|
|
];
|