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

- change language keys to kebab-case - add new languages to docs: ca, de, es, sr-latn, zh-hans
20 lines
557 B
PHP
20 lines
557 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' => 'Obaveštenja',
|
||
'reply' => '{actor_username} odgovara na tvoju objavu',
|
||
'favourite' => '{actor_username} dodaje tvoju objavu u omiljene',
|
||
'reblog' => '{actor_username} deli tvoju objavu',
|
||
'follow' => '{actor_username} vas sada prati',
|
||
'no_notifications' => 'Nema obaveštenja',
|
||
'mark_all_as_read' => 'Označi svе kao pročitano',
|
||
];
|