castopod/app/Language/fr/Post.php
Yassine Doghri bb4752c35e feat(comments): add comments to episodes + update naming of status to post
- remove confusing counts for episode (total favourites, total reblogs)
- add comments section to
episode page to display episode comments + post replies linked to the episode
2021-12-29 11:54:22 +00:00

42 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
/**
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
return [
'title' => 'Publication de {actorDisplayName}',
'back_to_actor_posts' => 'Retour aux publications de {actor}',
'actor_shared' => '{actor} a partagé',
'reply_to' => 'Répondre à @{actorUsername}',
'form' => [
'message_placeholder' => 'Écrivez votre message...',
'episode_message_placeholder' =>
'Écrivez votre message pour lépisode...',
'episode_url_placeholder' => 'URL de lépisode',
'reply_to_placeholder' => 'Répondre à @{actorUsername}',
'submit' => 'Envoyer!',
'submit_reply' => 'Répondre',
],
'favourites' => '{numberOfFavourites, plural,
one {# favori}
other {# favoris}
}',
'reblogs' => '{numberOfReblogs, plural,
one {# partage}
other {# partages}
}',
'replies' => '{numberOfReplies, plural,
one {# réponse}
other {# réponses}
}',
'expand' => 'Ouvrir la publication',
'block_actor' => 'Bloquer lutilisateur @{actorUsername}',
'block_domain' => 'Bloquer le domaine @{actorDomain}',
'delete' => 'Supprimer la publication',
];