mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00

- change language keys to kebab-case - add new languages to docs: ca, de, es, sr-latn, zh-hans
48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
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 [
|
|
'podcast_contributors' => 'Podkast-bidragsytarar',
|
|
'view' => "{username} sitt bidrag til {podcastTitle}",
|
|
'add' => 'Legg til bidragsytar',
|
|
'add_contributor' => 'Legg til bidragsytar til {0}',
|
|
'edit_role' => 'Oppdater rolla for {0}',
|
|
'edit' => 'Rediger',
|
|
'remove' => 'Fjern',
|
|
'list' => [
|
|
'username' => 'Brukarnamn',
|
|
'role' => 'Rolle',
|
|
],
|
|
'form' => [
|
|
'user' => 'Brukar',
|
|
'user_placeholder' => 'Vel ein brukar…',
|
|
'role' => 'Rolle',
|
|
'role_placeholder' => 'Vel rolle…',
|
|
'submit_add' => 'Legg til bidragsytar',
|
|
'submit_edit' => 'Oppdater rolla',
|
|
],
|
|
'delete_form' => [
|
|
'title' => 'Fjern {contributor}',
|
|
'disclaimer' =>
|
|
'Du er i ferd med å fjerna {contributor} som bidragsytar. Dei vil mista tilgangen til "{podcastTitle}".',
|
|
'understand' => 'Eg forstår, og vil fjerna {contributor} frå "{podcastTitle}"',
|
|
'submit' => 'Fjern',
|
|
],
|
|
'messages' => [
|
|
'editSuccess' => 'Rolle endra!',
|
|
'editOwnerError' => "Du kan ikkje endra podkast-eigaren.",
|
|
'removeOwnerError' => "Du kan ikkje fjerna podkast-eigaren!",
|
|
'removeSuccess' =>
|
|
'Du har fjerna {username} frå {podcastTitle}',
|
|
'alreadyAddedError' =>
|
|
"Denne bidragsytaren er allereie lagt til!",
|
|
],
|
|
];
|