Plume/po/plume/fr.po

1144 lines
30 KiB
Plaintext
Raw Normal View History

msgid ""
msgstr ""
"Project-Id-Version: plume\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-15 16:33-0700\n"
2022-05-10 20:26:01 +02:00
"PO-Revision-Date: 2022-05-09 09:59\n"
2020-12-18 21:59:58 +01:00
"Last-Translator: \n"
2019-04-19 14:59:03 +02:00
"Language-Team: French\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
2020-12-18 21:59:58 +01:00
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
2019-04-19 14:59:03 +02:00
"X-Crowdin-Project: plume\n"
2020-12-18 21:59:58 +01:00
"X-Crowdin-Project-ID: 352097\n"
2019-04-19 14:59:03 +02:00
"X-Crowdin-Language: fr\n"
"X-Crowdin-File: /master/po/plume/plume.pot\n"
2020-12-18 21:59:58 +01:00
"X-Crowdin-File-ID: 8\n"
2022-01-06 14:14:24 +01:00
# src/template_utils.rs:105
2024-12-22 10:33:58 +01:00
#~ msgid "Someone"
#~ msgstr "Quelqu'un"
2022-01-06 14:14:24 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:107
2024-12-22 10:33:58 +01:00
#~ msgid "{0} commented on your article."
#~ msgstr "{0} a commenté votre article."
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:108
2024-12-22 10:33:58 +01:00
#~ msgid "{0} is subscribed to you."
#~ msgstr "{0} vous suit."
2018-06-17 17:26:15 +02:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:109
2024-12-22 10:33:58 +01:00
#~ msgid "{0} liked your article."
#~ msgstr "{0} a aimé votre article."
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:110
2024-12-22 10:33:58 +01:00
#~ msgid "{0} mentioned you."
#~ msgstr "{0} vous a mentionné."
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:111
2024-12-22 10:33:58 +01:00
#~ msgid "{0} boosted your article."
#~ msgstr "{0} a boosté votre article."
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:118
2024-12-22 10:33:58 +01:00
#~ msgid "Your feed"
#~ msgstr "Votre flux"
2020-12-18 21:59:58 +01:00
2024-01-06 17:48:05 +01:00
# src/template_utils.rs:118
#, fuzzy
2024-12-22 10:33:58 +01:00
#~ msgid "My feed"
#~ msgstr "Votre flux"
2024-01-06 17:48:05 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:119
2024-12-22 10:33:58 +01:00
#~ msgid "Local feed"
#~ msgstr "Flux local"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:120
2024-12-22 10:33:58 +01:00
#~ msgid "Federated feed"
#~ msgstr "Flux fédéré"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:156
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s avatar"
#~ msgstr "Avatar de {0}"
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:200
2024-12-22 10:33:58 +01:00
#~ msgid "Previous page"
#~ msgstr "Page précédente"
2024-12-18 15:59:13 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:211
2024-12-22 10:33:58 +01:00
#~ msgid "Next page"
#~ msgstr "Page suivante"
2020-12-18 21:59:58 +01:00
2022-01-12 02:24:14 +01:00
# src/template_utils.rs:365
2024-12-22 10:33:58 +01:00
#~ msgid "Optional"
#~ msgstr "Optionnel"
2024-12-18 15:59:13 +01:00
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:68
2024-12-22 10:33:58 +01:00
#~ msgid "To create a new blog, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour créer un nouveau blog"
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:110
2024-12-22 10:33:58 +01:00
#~ msgid "A blog with the same name already exists."
#~ msgstr "Un blog avec le même nom existe déjà."
Big refactoring of the Inbox (#443) * Big refactoring of the Inbox We now have a type that routes an activity through the registered handlers until one of them matches. Each Actor/Activity/Object combination is represented by an implementation of AsObject These combinations are then registered on the Inbox type, which will try to deserialize the incoming activity in the requested types. Advantages: - nicer syntax: the final API is clearer and more idiomatic - more generic: only two traits (`AsActor` and `AsObject`) instead of one for each kind of activity - it is easier to see which activities we handle and which one we don't * Small fixes - Avoid panics - Don't search for AP ID infinitely - Code style issues * Fix tests * Introduce a new trait: FromId It should be implemented for any AP object. It allows to look for an object in database using its AP ID, or to dereference it if it was not present in database Also moves the inbox code to plume-models to test it (and write a basic test for each activity type we handle) * Use if let instead of match * Don't require PlumeRocket::intl for tests * Return early and remove a forgotten dbg! * Add more tests to try to understand where the issues come from * Also add a test for comment federation * Don't check creation_date is the same for blogs * Make user and blog federation more tolerant to errors/missing fields * Make clippy happy * Use the correct Accept header when dereferencing * Fix follow approval with Mastodon * Add spaces to characters that should not be in usernames And validate blog names too * Smarter dereferencing: only do it once for each actor/object * Forgot some files * Cargo fmt * Delete plume_test * Delete plume_tests * Update get_id docs + Remove useless : Sized * Appease cargo fmt * Remove dbg! + Use as_ref instead of clone when possible + Use and_then instead of map when possible * Remove .po~ * send unfollow to local instance * read cover from update activity * Make sure "cc" and "to" are never empty and fix a typo in a constant name * Cargo fmt
2019-04-17 19:31:47 +02:00
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:148
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog was successfully created!"
#~ msgstr "Votre blog a été créé avec succès !"
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:166
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog was deleted."
#~ msgstr "Votre blog a été supprimé."
2022-01-12 02:29:50 +01:00
# src/routes/blogs.rs:174
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this blog."
#~ msgstr "Vous n'êtes pas autorisé⋅e à supprimer ce blog."
2024-12-18 15:59:13 +01:00
# src/routes/blogs.rs:224
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to edit this blog."
#~ msgstr "Vous n'êtes pas autorisé à éditer ce blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:280
2024-12-22 10:33:58 +01:00
#~ msgid "You can't use this media as a blog icon."
#~ msgstr "Vous ne pouvez pas utiliser ce media comme icône de blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:298
2024-12-22 10:33:58 +01:00
#~ msgid "You can't use this media as a blog banner."
#~ msgstr "Vous ne pouvez pas utiliser ce media comme illustration de blog."
2024-12-21 23:11:13 +01:00
# src/routes/blogs.rs:332
2024-12-22 10:33:58 +01:00
#~ msgid "Your blog information have been updated."
#~ msgstr "Les informations de votre blog ont été mise à jour."
2024-12-21 23:11:13 +01:00
# src/routes/comments.rs:100
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment has been posted."
#~ msgstr "Votre commentaire a été publié."
2024-12-21 23:11:13 +01:00
# src/routes/comments.rs:177
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment has been deleted."
#~ msgstr "Votre commentaire a été supprimé."
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:82
2024-12-22 10:33:58 +01:00
#~ msgid "Registrations are closed on this instance."
#~ msgstr "Les inscriptions sont fermées sur cette instance."
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:119
2024-12-22 10:33:58 +01:00
#~ msgid "User registration"
#~ msgstr "Inscription de l'utilisateur"
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:120
2024-12-22 10:33:58 +01:00
#~ msgid "Here is the link for registration: {0}"
#~ msgstr "Voici le lien pour vous inscrire : {0}"
2024-12-21 23:11:13 +01:00
# src/routes/email_signups.rs:219
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Your account has been created. Now you just need to log in, before you "
#~ "can use it."
#~ msgstr ""
#~ "Votre compte a été créé. Vous avez juste à vous connecter, avant de "
#~ "pouvoir l'utiliser."
2024-12-21 23:11:13 +01:00
# src/routes/instance.rs:117
2024-12-22 10:33:58 +01:00
#~ msgid "Instance settings have been saved."
#~ msgstr "Les paramètres de votre instance ont été enregistrés."
2024-12-18 15:59:13 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:150
2024-12-22 10:33:58 +01:00
#~ msgid "{} has been unblocked."
#~ msgstr "{} a été débloqué⋅e."
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:152
2024-12-22 10:33:58 +01:00
#~ msgid "{} has been blocked."
#~ msgstr "{} a été bloqué⋅e."
2020-12-18 21:59:58 +01:00
# src/routes/instance.rs:203
2024-12-22 10:33:58 +01:00
#~ msgid "Blocks deleted"
#~ msgstr "Blocages supprimés"
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:219
2024-12-22 10:33:58 +01:00
#~ msgid "Email already blocked"
#~ msgstr "E-mail déjà bloqué"
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:224
2024-12-22 10:33:58 +01:00
#~ msgid "Email Blocked"
#~ msgstr "E-mail bloqué"
2020-12-18 21:59:58 +01:00
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:317
2024-12-22 10:33:58 +01:00
#~ msgid "You can't change your own rights."
#~ msgstr "Vous ne pouvez pas changer vos propres droits."
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:328
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to take this action."
#~ msgstr "Vous n'avez pas l'autorisation d'effectuer cette action."
2021-05-05 20:32:20 +02:00
# src/routes/instance.rs:363
2024-12-22 10:33:58 +01:00
#~ msgid "Done."
#~ msgstr "Terminé."
2021-05-05 20:32:20 +02:00
# src/routes/likes.rs:58
2024-12-22 10:33:58 +01:00
#~ msgid "To like a post, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour aimer un article"
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:153
2024-12-22 10:33:58 +01:00
#~ msgid "Your media have been deleted."
#~ msgstr "Votre média a été supprimé."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:158
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this media."
#~ msgstr "Vous n'êtes pas autorisé à supprimer ce média."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:175
2024-12-22 10:33:58 +01:00
#~ msgid "Your avatar has been updated."
#~ msgstr "Votre avatar a été mis à jour."
2022-01-12 02:24:14 +01:00
# src/routes/medias.rs:180
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to use this media."
#~ msgstr "Vous n'êtes pas autorisé à utiliser ce média."
2021-05-05 20:32:20 +02:00
# src/routes/notifications.rs:29
2024-12-22 10:33:58 +01:00
#~ msgid "To see your notifications, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour voir vos notifications"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:56
2024-12-22 10:33:58 +01:00
#~ msgid "This post isn't published yet."
#~ msgstr "Cet article nest pas encore publié."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:126
2024-12-22 10:33:58 +01:00
#~ msgid "To write a new post, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour écrire un nouvel article"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:147
2024-12-22 10:33:58 +01:00
#~ msgid "You are not an author of this blog."
#~ msgstr "Vous n'êtes pas auteur⋅rice de ce blog."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:154
2024-12-22 10:33:58 +01:00
#~ msgid "New post"
#~ msgstr "Nouvel article"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:199
2024-12-22 10:33:58 +01:00
#~ msgid "Edit {0}"
#~ msgstr "Modifier {0}"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:268
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to publish on this blog."
#~ msgstr "Vous n'êtes pas autorisé à publier sur ce blog."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:368
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been updated."
#~ msgstr "Votre article a été mis à jour."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:557
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been saved."
#~ msgstr "Votre article a été enregistré."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:564
2024-12-22 10:33:58 +01:00
#~ msgid "New article"
#~ msgstr "Nouvel article"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:602
2024-12-22 10:33:58 +01:00
#~ msgid "You are not allowed to delete this article."
#~ msgstr "Vous n'êtes pas autorisé à supprimer cet article."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:626
2024-12-22 10:33:58 +01:00
#~ msgid "Your article has been deleted."
#~ msgstr "Votre article a été supprimé."
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:631
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "It looks like the article you tried to delete doesn't exist. Maybe it is "
#~ "already gone?"
#~ msgstr ""
#~ "Il semble que l'article que vous avez essayé de supprimer n'existe pas. "
#~ "Peut-être a-t-il déjà été supprimé ?"
2022-01-12 02:29:50 +01:00
# src/routes/posts.rs:673
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Couldn't obtain enough information about your account. Please make sure "
#~ "your username is correct."
#~ msgstr ""
#~ "Nous n'avons pas pu obtenir assez d'informations à propos de votre "
#~ "compte. Veuillez vous assurer que votre nom d'utilisateur est correct."
2021-05-05 20:32:20 +02:00
# src/routes/reshares.rs:58
2024-12-22 10:33:58 +01:00
#~ msgid "To reshare a post, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour partager un article"
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:95
2024-12-22 10:33:58 +01:00
#~ msgid "You are now connected."
#~ msgstr "Vous êtes maintenant connecté."
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:116
2024-12-22 10:33:58 +01:00
#~ msgid "You are now logged off."
#~ msgstr "Vous êtes maintenant déconnecté."
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:162
2024-12-22 10:33:58 +01:00
#~ msgid "Password reset"
#~ msgstr "Réinitialisation du mot de passe"
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:163
2024-12-22 10:33:58 +01:00
#~ msgid "Here is the link to reset your password: {0}"
#~ msgstr "Voici le lien pour réinitialiser votre mot de passe : {0}"
2021-05-05 20:32:20 +02:00
# src/routes/session.rs:235
2024-12-22 10:33:58 +01:00
#~ msgid "Your password was successfully reset."
#~ msgstr "Votre mot de passe a été réinitialisé avec succès."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:87
2024-12-22 10:33:58 +01:00
#~ msgid "To access your dashboard, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour accéder à votre tableau de bord"
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:109
2024-12-22 10:33:58 +01:00
#~ msgid "You are no longer following {}."
#~ msgstr "Vous ne suivez plus {}."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:126
2024-12-22 10:33:58 +01:00
#~ msgid "You are now following {}."
#~ msgstr "Vous suivez maintenant {}."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:203
2024-12-22 10:33:58 +01:00
#~ msgid "To subscribe to someone, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour vous abonner à quelqu'un"
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:323
2024-12-22 10:33:58 +01:00
#~ msgid "To edit your profile, you need to be logged in"
#~ msgstr "Vous devez vous connecter pour modifier votre profil"
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:369
2024-12-22 10:33:58 +01:00
#~ msgid "Your profile has been updated."
#~ msgstr "Votre profil a été mis à jour."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:397
2024-12-22 10:33:58 +01:00
#~ msgid "Your account has been deleted."
#~ msgstr "Votre compte a été supprimé."
2022-01-12 02:29:50 +01:00
# src/routes/user.rs:403
2024-12-22 10:33:58 +01:00
#~ msgid "You can't delete someone else's account."
#~ msgstr "Vous ne pouvez pas supprimer le compte d'une autre personne."
2024-12-22 10:33:58 +01:00
#~ msgid "Plume"
#~ msgstr "Plume"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Menu"
#~ msgstr "Menu"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search"
#~ msgstr "Rechercher"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Dashboard"
#~ msgstr "Tableau de bord"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Notifications"
#~ msgstr "Notifications"
2024-12-22 10:33:58 +01:00
#~ msgid "Log Out"
#~ msgstr "Se déconnecter"
2024-12-22 10:33:58 +01:00
#~ msgid "My account"
#~ msgstr "Mon compte"
2024-12-22 10:33:58 +01:00
#~ msgid "Log In"
#~ msgstr "Se connecter"
2024-12-22 10:33:58 +01:00
#~ msgid "Register"
#~ msgstr "Sinscrire"
2024-12-22 10:33:58 +01:00
#~ msgid "About this instance"
#~ msgstr "À propos de cette instance"
2024-12-22 10:33:58 +01:00
#~ msgid "Privacy policy"
#~ msgstr "Politique de confidentialité"
2024-12-22 10:33:58 +01:00
#~ msgid "Administration"
#~ msgstr "Administration"
2024-12-22 10:33:58 +01:00
#~ msgid "Moderation"
#~ msgstr "Modération"
2024-12-22 10:33:58 +01:00
#~ msgid "Documentation"
#~ msgstr "Documentation"
2024-12-22 10:33:58 +01:00
#~ msgid "Source code"
#~ msgstr "Code source"
2024-12-22 10:33:58 +01:00
#~ msgid "Matrix room"
#~ msgstr "Salon Matrix"
2024-12-22 10:33:58 +01:00
#~ msgid "None"
#~ msgstr "Aucun"
2024-12-22 10:33:58 +01:00
#~ msgid "No description"
#~ msgstr "Aucune description"
2024-12-22 10:33:58 +01:00
#~ msgid "What is Plume?"
#~ msgstr "Quest-ce que Plume ?"
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Plume is a decentralized blogging engine."
#~ msgstr "Plume est un moteur de blog décentralisé."
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Authors can manage multiple blogs, each as its own website."
#~ msgstr ""
#~ "Les auteurs peuvent avoir plusieurs blogs, chacun étant comme un site "
#~ "indépendant."
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Articles are also visible on other Plume instances, and you can interact "
#~ "with them directly from other platforms like Mastodon."
#~ msgstr ""
#~ "Les articles sont également visibles sur d'autres instances Plume, et "
#~ "vous pouvez interagir avec eux directement à partir d'autres plateformes "
#~ "comme Mastodon."
2024-12-22 10:33:58 +01:00
#~ msgid "Create your account"
#~ msgstr "Créer votre compte"
2024-12-22 10:33:58 +01:00
#~ msgid "About {0}"
#~ msgstr "À propos de {0}"
2024-12-22 10:33:58 +01:00
#~ msgid "Home to <em>{0}</em> people"
#~ msgstr "Refuge de <em>{0}</em> personnes"
2024-12-22 10:33:58 +01:00
#~ msgid "Who wrote <em>{0}</em> articles"
#~ msgstr "Qui ont écrit <em>{0}</em> articles"
2024-12-22 10:33:58 +01:00
#~ msgid "Read the detailed rules"
#~ msgstr "Lire les règles détaillées"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Respond"
#~ msgstr "Répondre"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Are you sure?"
#~ msgstr "Êtes-vous sûr⋅e ?"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete this comment"
#~ msgstr "Supprimer ce commentaire"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit"
#~ msgstr "Modifier"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "By {0}"
#~ msgstr "Par {0}"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Draft"
#~ msgstr "Brouillon"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "One like"
#~ msgid_plural "{0} likes"
#~ msgstr[0] "Un like"
#~ msgstr[1] "{0} likes"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "One boost"
#~ msgid_plural "{0} boosts"
#~ msgstr[0] "Un repartage"
#~ msgstr[1] "{0} repartages"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "New Blog"
#~ msgstr "Nouveau Blog"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create a blog"
#~ msgstr "Créer un blog"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Title"
#~ msgstr "Titre"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create blog"
#~ msgstr "Créer le blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit \"{}\""
#~ msgstr "Modifier \"{}\""
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Description"
#~ msgstr "Description"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Markdown syntax is supported"
#~ msgstr "La syntaxe Markdown est supportée"
2024-12-21 23:11:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "You can upload images to your gallery, to use them as blog icons, or "
#~ "banners."
#~ msgstr ""
#~ "Vous pouvez téléverser des images dans votre galerie, pour les utiliser "
#~ "comme icônes de blog ou illustrations."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload images"
#~ msgstr "Téléverser des images"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog icon"
#~ msgstr "Icône de blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog banner"
#~ msgstr "Bannière de blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Custom theme"
#~ msgstr "Thème personnalisé"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Default theme"
#~ msgstr "Thème par défaut"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Error while loading theme selector."
#~ msgstr "Erreur lors du chargement du sélecteur de thème."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update blog"
#~ msgstr "Mettre à jour le blog"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Danger zone"
#~ msgstr "Zone à risque"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Be very careful, any action taken here can't be reversed."
#~ msgstr "Attention, toute action prise ici ne peut pas être annulée."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Are you sure that you want to permanently delete this blog?"
#~ msgstr "Êtes-vous sûr de vouloir supprimer définitivement ce blog ?"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Permanently delete this blog"
#~ msgstr "Supprimer définitivement ce blog"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{}'s icon"
#~ msgstr "icône de {}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There's one author on this blog: "
#~ msgid_plural "There are {0} authors on this blog: "
#~ msgstr[0] "Il y a un auteur sur ce blog: "
#~ msgstr[1] "Il y a {0} auteurs sur ce blog: "
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Latest articles"
#~ msgstr "Derniers articles"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No posts to see here yet."
#~ msgstr "Aucun article pour le moment."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Articles tagged \"{0}\""
#~ msgstr "Articles marqués \"{0}\""
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There are currently no articles with such a tag"
#~ msgstr "Il n'y a actuellement aucun article avec un tel tag"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Nothing to see here yet."
#~ msgstr "Rien à voir ici pour le moment."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Media upload"
#~ msgstr "Téléversement de média"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Useful for visually impaired people, as well as licensing information"
#~ msgstr ""
#~ "Utile pour les personnes malvoyantes, ainsi que pour les informations de "
#~ "licence"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content warning"
#~ msgstr "Avertissement"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Leave it empty, if none is needed"
#~ msgstr "Laissez vide, si aucun avertissement n'est nécessaire"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "File"
#~ msgstr "Fichier"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Send"
#~ msgstr "Envoyer"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your media"
#~ msgstr "Vos médias"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload"
#~ msgstr "Téléverser"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You don't have any media yet."
#~ msgstr "Vous n'avez pas encore de média."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content warning: {0}"
#~ msgstr "Avertissement du contenu : {0}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete"
#~ msgstr "Supprimer"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Details"
#~ msgstr "Détails"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Media details"
#~ msgstr "Détails du média"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Go back to the gallery"
#~ msgstr "Revenir à la galerie"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Markdown syntax"
#~ msgstr "Syntaxe markdown"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Copy it into your articles, to insert this media:"
#~ msgstr "Copiez-le dans vos articles, pour insérer ce média :"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Use as an avatar"
#~ msgstr "Utiliser comme avatar"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I'm from this instance"
#~ msgstr "Je suis de cette instance"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Username, or email"
#~ msgstr "Nom d'utilisateur⋅ice ou e-mail"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Password"
#~ msgstr "Mot de passe"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in"
#~ msgstr "Se connecter"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I'm from another instance"
#~ msgstr "Je viens d'une autre instance"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Username"
#~ msgstr "Nom dutilisateur"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Continue to your instance"
#~ msgstr "Continuez sur votre instance"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Advanced search"
#~ msgstr "Recherche avancée"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Article title matching these words"
#~ msgstr "Titre contenant ces mots"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subtitle matching these words"
#~ msgstr "Sous-titre contenant ces mots"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subtitle"
#~ msgstr "Sous-titre"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content macthing these words"
#~ msgstr "Contenu correspondant à ces mots"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Body content"
#~ msgstr "Texte"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "From this date"
#~ msgstr "À partir de cette date"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "To this date"
#~ msgstr "Avant cette date"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Containing these tags"
#~ msgstr "Avec ces étiquettes"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Tags"
#~ msgstr "Étiquettes"
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted on one of these instances"
#~ msgstr "Publié sur une de ces instances"
2021-01-11 21:27:52 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Instance domain"
#~ msgstr "Domaine d'une instance"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted by one of these authors"
#~ msgstr "Écrit par un de ces auteur⋅ices"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Author(s)"
#~ msgstr "Auteur·e(s)"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Posted on one of these blogs"
#~ msgstr "Publié dans un de ces blogs"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blog title"
#~ msgstr "Nom du blog"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Written in this language"
#~ msgstr "Écrit en"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Language"
#~ msgstr "Langue"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Published under this license"
#~ msgstr "Placé sous cette licence"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Article license"
#~ msgstr "Licence de l'article"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search result(s) for \"{0}\""
#~ msgstr "Résultat(s) de la recherche pour \"{0}\""
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Search result(s)"
#~ msgstr "Résultat(s) de la recherche"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No results for your query"
#~ msgstr "Pas de résultat pour votre requête"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No more results for your query"
#~ msgstr "Plus de résultats pour votre recherche"
2020-12-18 21:59:58 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Invalid CSRF token"
#~ msgstr "Jeton CSRF invalide"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Something is wrong with your CSRF token. Make sure cookies are enabled in "
#~ "you browser, and try reloading this page. If you continue to see this "
#~ "error message, please report it."
#~ msgstr ""
#~ "Quelque chose ne va pas avec votre jeton CSRF. Assurez-vous que les "
#~ "cookies sont activés dans votre navigateur, et essayez de recharger cette "
#~ "page. Si vous continuez à voir cette erreur, merci de la signaler."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You are not authorized."
#~ msgstr "Vous navez pas les droits."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Page not found"
#~ msgstr "Page non trouvée"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "We couldn't find this page."
#~ msgstr "Page introuvable."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The link that led you here may be broken."
#~ msgstr "Vous avez probablement suivi un lien cassé."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The content you sent can't be processed."
#~ msgstr "Le contenu que vous avez envoyé ne peut pas être traité."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Maybe it was too long."
#~ msgstr "Peut-être que cétait trop long."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Internal server error"
#~ msgstr "Erreur interne du serveur"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Something broke on our side."
#~ msgstr "Nous avons cassé quelque chose."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Sorry about that. If you think this is a bug, please report it."
#~ msgstr ""
#~ "Nous sommes désolé⋅e⋅s. Si vous pensez que cest un bogue, merci de le "
#~ "signaler."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Check your inbox!"
#~ msgstr "Vérifiez votre boîte de réception !"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "We sent a mail to the address you gave us, with a link to reset your "
#~ "password."
#~ msgstr ""
#~ "Nous avons envoyé un mail à l'adresse que vous nous avez donnée, avec un "
#~ "lien pour réinitialiser votre mot de passe."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This token has expired"
#~ msgstr "Ce jeton a expiré"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Please start the process again by clicking <a href=\"/password-"
#~ "reset\">here</a>."
#~ msgstr ""
#~ "Veuillez recommencer le processus en cliquant <a href=\"/password-"
#~ "reset\">ici</a>."
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Reset your password"
#~ msgstr "Réinitialiser votre mot de passe"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "New password"
#~ msgstr "Nouveau mot de passe"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Confirmation"
#~ msgstr "Confirmation"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update password"
#~ msgstr "Mettre à jour le mot de passe"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email"
#~ msgstr "Adresse électronique"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Send password reset link"
#~ msgstr "Envoyer un lien pour réinitialiser le mot de passe"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Interact with {}"
#~ msgstr "Interagir avec {}"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in to interact"
#~ msgstr "Connectez-vous pour interagir"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Enter your full username to interact"
#~ msgstr "Entrez votre nom d'utilisateur complet pour interagir"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Publish"
#~ msgstr "Publier"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Classic editor (any changes will be lost)"
#~ msgstr "Éditeur classique (tout changement sera perdu)"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Content"
#~ msgstr "Contenu"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "You can upload media to your gallery, and then copy their Markdown code "
#~ "into your articles to insert them."
#~ msgstr ""
#~ "Vous pouvez télécharger des médias dans votre galerie, et copier leur "
#~ "code Markdown dans vos articles pour les insérer."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload media"
#~ msgstr "Téléverser un média"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Tags, separated by commas"
#~ msgstr "Mots-clés, séparés par des virgules"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "License"
#~ msgstr "Licence"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Illustration"
#~ msgstr "Illustration"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This is a draft, don't publish it yet."
#~ msgstr "C'est un brouillon, ne le publiez pas encore."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update"
#~ msgstr "Mettre à jour"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update, or publish"
#~ msgstr "Mettre à jour, ou publier"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Publish your post"
#~ msgstr "Publiez votre message"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Written by {0}"
#~ msgstr "Écrit par {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "All rights reserved."
#~ msgstr "Tous droits réservés."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "This article is under the {0} license."
#~ msgstr "Cet article est sous licence {0}."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I don't like this anymore"
#~ msgstr "Je n'aime plus cela"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Add yours"
#~ msgstr "Ajouter le vôtre"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "I don't want to boost this anymore"
#~ msgstr "Je ne veux plus le repartager"
2024-12-22 10:33:58 +01:00
#~ msgid "Boost"
#~ msgstr "Partager"
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "{0}Log in{1}, or {2}use your Fediverse account{3} to interact with this "
#~ "article"
#~ msgstr ""
#~ "{0}Connectez-vous{1}, ou {2}utilisez votre compte sur le Fediverse{3} "
#~ "pour interagir avec cet article"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Unsubscribe"
#~ msgstr "Se désabonner"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscribe"
#~ msgstr "S'abonner"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Comments"
#~ msgstr "Commentaires"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your comment"
#~ msgstr "Votre commentaire"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Submit comment"
#~ msgstr "Soumettre le commentaire"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "No comments yet. Be the first to react!"
#~ msgstr "Pas encore de commentaires. Soyez le premier à réagir !"
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "This article is still a draft. Only you and other authors can see it."
#~ msgstr ""
#~ "Cet article est toujours un brouillon. Seuls vous et les autres "
#~ "auteur·e·s peuvent le voir."
2024-12-22 10:33:58 +01:00
#~ msgid "Only you and other authors can edit this article."
#~ msgstr "Seuls vous et les autres auteur·e·s peuvent modifier cet article."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "If you are browsing this site as a visitor, no data about you is "
#~ "collected."
#~ msgstr ""
#~ "Si vous naviguez sur ce site en tant que visiteur, aucune donnée ne vous "
#~ "concernant n'est collectée."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "As a registered user, you have to provide your username (which does not "
#~ "have to be your real name), your functional email address and a password, "
#~ "in order to be able to log in, write articles and comment. The content "
#~ "you submit is stored until you delete it."
#~ msgstr ""
#~ "En tant qu'utilisateur enregistré, vous devez fournir votre nom "
#~ "d'utilisateur (qui n'est pas forcément votre vrai nom), votre adresse e-"
#~ "mail fonctionnelle et un mot de passe, afin de pouvoir vous connecter, "
#~ "écrire des articles et commenter. Le contenu que vous soumettez est "
#~ "stocké jusqu'à ce que vous le supprimiez."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "When you log in, we store two cookies, one to keep your session open, the "
#~ "second to prevent other people to act on your behalf. We don't store any "
#~ "other cookies."
#~ msgstr ""
#~ "Lorsque vous vous connectez, nous stockons deux cookies, l'un pour garder "
#~ "votre session ouverte, le second pour empêcher d'autres personnes d'agir "
#~ "en votre nom. Nous ne stockons aucun autre cookie."
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Administration of {0}"
#~ msgstr "Administration de {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Unblock"
#~ msgstr "Débloquer"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Block"
#~ msgstr "Bloquer"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Welcome to {}"
#~ msgstr "Bienvenue sur {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Runs Plume {0}"
#~ msgstr "Propulsé par Plume {0}"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "And are connected to <em>{0}</em> other instances"
#~ msgstr "Et sont connecté⋅es à <em>{0}</em> autres instances"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Administred by"
#~ msgstr "Administré par"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisted Emails"
#~ msgstr "Emails bloqués"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email address"
#~ msgstr "Adresse e-mail"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "The email address you wish to block. In order to block domains, you can "
#~ "use globbing syntax, for example '*@example.com' blocks all addresses "
#~ "from example.com"
#~ msgstr ""
#~ "L'adresse e-mail que vous souhaitez bloquer. Pour bloquer des domaines, "
#~ "vous pouvez utiliser la syntaxe : '*@example.com' qui bloque toutes les "
#~ "adresses du domaine exemple.com"
2021-01-15 14:36:59 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Note"
#~ msgstr "Note"
2022-01-12 02:29:50 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Notify the user?"
#~ msgstr "Notifier l'utilisateurice ?"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Optional, shows a message to the user when they attempt to create an "
#~ "account with that address"
#~ msgstr ""
#~ "Optionnel, affiche un message lors de la création d'un compte avec cette "
#~ "adresse"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisting notification"
#~ msgstr "Notification de blocage"
2024-01-06 17:48:05 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "The message to be shown when the user attempts to create an account with "
#~ "this email address"
#~ msgstr ""
#~ "Le message à afficher lors de la création d'un compte avec cette adresse "
#~ "e-mail"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Add blocklisted address"
#~ msgstr "Bloquer une adresse"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "There are no blocked emails on your instance"
#~ msgstr "Il n'y a pas d'adresses bloquées sur votre instance"
#~ msgid "Delete selected emails"
#~ msgstr "Supprimer le(s) adresse(s) sélectionnée(s)"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email address:"
#~ msgstr "Adresse e-mail:"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Blocklisted for:"
#~ msgstr "Bloqué pour :"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Will notify them on account creation with this message:"
#~ msgstr "Avertissement lors de la création du compte avec ce message :"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "The user will be silently prevented from making an account"
#~ msgstr "L'utilisateurice sera silencieusement empêché.e de créer un compte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Configuration"
#~ msgstr "Configuration"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Instances"
#~ msgstr "Instances"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Users"
#~ msgstr "Utilisateurs"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email blocklist"
#~ msgstr "Liste des e-mails proscrits"
2024-12-18 15:59:13 +01:00
#, fuzzy
2024-12-22 10:33:58 +01:00
#~ msgid "Search users"
#~ msgstr "Rechercher"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Grant admin rights"
#~ msgstr "Accorder les droits d'administration"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Revoke admin rights"
#~ msgstr "Révoquer les droits d'administration"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Grant moderator rights"
#~ msgstr "Accorder les droits de modération"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Revoke moderator rights"
#~ msgstr "Révoquer les droits de modération"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Ban"
#~ msgstr "Bannir"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Run on selected users"
#~ msgstr "Appliquer aux utilisateurices sélectionné⋅e⋅s"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Admin"
#~ msgstr "Administrateur"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Moderator"
#~ msgstr "Modérateurice"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Name"
#~ msgstr "Nom"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Allow anyone to register here"
#~ msgstr "Permettre à tous de s'enregistrer"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Short description"
#~ msgstr "Description courte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Long description"
#~ msgstr "Description longue"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Default article license"
#~ msgstr "Licence d'article par défaut"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Save these settings"
#~ msgstr "Sauvegarder ces paramètres"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s subscribers"
#~ msgstr "{0}'s abonnés"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Articles"
#~ msgstr "Articles"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscribers"
#~ msgstr "Abonnés"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Subscriptions"
#~ msgstr "Abonnements"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Create an account"
#~ msgstr "Créer un compte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Password confirmation"
#~ msgstr "Confirmation du mot de passe"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "Apologies, but registrations are closed on this particular instance. You "
#~ "can, however, find a different one."
#~ msgstr ""
#~ "Désolé, mais les inscriptions sont fermées sur cette instance en "
#~ "particulier. Vous pouvez, toutefois, en trouver une autre."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "{0}'s subscriptions"
#~ msgstr "Abonnements de {0}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Follow {}"
#~ msgstr "Suivre {}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Log in to follow"
#~ msgstr "Connectez-vous pour suivre"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Enter your full username handle to follow"
#~ msgstr "Entrez votre nom d'utilisateur complet pour suivre"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit your account"
#~ msgstr "Modifier votre compte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Profile"
#~ msgstr "Votre Profil"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "To change your avatar, upload it to your gallery and then select from "
#~ "there."
#~ msgstr ""
#~ "Pour modifier votre avatar, téléversez-le dans votre galerie puis "
#~ "sélectionnez-le à partir de là."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Upload an avatar"
#~ msgstr "Téléverser un avatar"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Display name"
#~ msgstr "Nom affiché"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Summary"
#~ msgstr "Description"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Theme"
#~ msgstr "Thème"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Never load blogs custom themes"
#~ msgstr "Ne jamais charger les thèmes personnalisés des blogs"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Update account"
#~ msgstr "Mettre à jour le compte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Be very careful, any action taken here can't be cancelled."
#~ msgstr "Attention, toute action prise ici ne peut pas être annulée."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Delete your account"
#~ msgstr "Supprimer votre compte"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Sorry, but as an admin, you can't leave your own instance."
#~ msgstr ""
#~ "Désolé, mais en tant qu'administrateur, vous ne pouvez pas quitter votre "
#~ "propre instance."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Atom feed"
#~ msgstr "Flux atom"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Recently boosted"
#~ msgstr "Récemment partagé"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Dashboard"
#~ msgstr "Votre tableau de bord"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Blogs"
#~ msgstr "Vos Blogs"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "You don't have any blog yet. Create your own, or ask to join one."
#~ msgstr ""
#~ "Vous n'avez pas encore de blog. Créez votre propre blog, ou demandez de "
#~ "vous joindre à un."
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Start a new blog"
#~ msgstr "Commencer un nouveau blog"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Your Drafts"
#~ msgstr "Vos brouillons"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Go to your gallery"
#~ msgstr "Aller à votre galerie"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "It is you"
#~ msgstr "C'est vous"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Edit your profile"
#~ msgstr "Modifier votre profil"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Open on {0}"
#~ msgstr "Ouvrir sur {0}"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Email confirmation"
#~ msgstr "Confirmer l'email"
2024-12-21 23:11:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid "Registration"
#~ msgstr "Inscription"
2024-12-18 15:59:13 +01:00
2024-12-22 10:33:58 +01:00
#~ msgid ""
#~ "We sent a mail to the address you gave us, with a link for registration."
#~ msgstr ""
#~ "Nous avons envoyé un mail à l'adresse que vous nous avez donnée, avec un "
#~ "lien pour réinitialiser votre mot de passe."
2024-12-18 15:59:13 +01:00
#~ msgid "Home"
#~ msgstr "Accueil"
2024-01-06 17:48:05 +01:00
#~ msgid "View all"
#~ msgstr "Tout afficher"