Tusky-App-Android/app/src/main/res/values-fr/strings.xml

265 lines
15 KiB
XML
Raw Normal View History

<resources>
<string name="error_generic">Une erreur sest produite.</string>
2017-05-03 21:16:45 +02:00
<string name="error_empty">Ce champ ne peut pas être vide.</string>
<string name="error_invalid_domain">Le domaine est invalide.</string>
<string name="error_failed_app_registration">Échec dauthentification auprès de linstance.</string>
<string name="error_no_web_browser_found">Impossible de trouver un navigateur web.</string>
<string name="error_authorization_unknown">Une erreur dautorisation inconnue sest produite.</string>
<string name="error_authorization_denied">Authentification refusée.</string>
<string name="error_retrieving_oauth_token">Impossible de récupérer le jeton dauthentification.</string>
<string name="error_compose_character_limit">Votre pouet est trop long !</string>
ComposeActivity improvements (#548) * do not add media urls to status text * add scrolling to content * add arrow icon and animation to replying-to toggle * remove unnecessary compose_button_colors.xml * improve toot button * improve bottom bar, add bottom sheet for compose options, dedicated cw button * fix crash on Android < API 21 * move media picking from dialog to bottom sheet * add small style tootbutton * fix colors/button background for light theme * add icons to media chose bottom sheet * improve hide media button, delete unused styles * fix crash on dev build when taking photo * consolidate drawables * consolidate strings and ids, add tooltips to buttons * allow media only toots * change error message to show max size of upload correctly * fix button color * add emoji * code cleanup * Merge branch 'master' into compose_activity_refactoring # Conflicts: # app/src/main/java/com/keylesspalace/tusky/ComposeActivity.java * fix hidden snackbar * improve hint text color * add SendTootService * fix timeline refreshing * toot saving and error handling for sendtootservice * restructure some code * convert EditTextTyped to Kotlin * fixed pick media button disabled color * force sensitive media when content warning is shown * add db cache for emojis & fix tests * reorder buttons to match mastodon web * add possibility to cancel sending of toot * correctly delete sent toots * refresh SavedTootActivity after toot was sent * remove unused resources * correct params for toot saving in SendTootService * consolidate strings * bugfix * remove unused resources * fix notifications on old android for SendTootService * fix crash
2018-04-13 22:37:21 +02:00
<string name="error_media_upload_size">Le fichier doit peser moins de 8 Mo.</string>
<string name="error_media_upload_type">Ce type de fichier nest pas accepté.</string>
<string name="error_media_upload_opening">Le fichier ne peut pas être ouvert.</string>
<string name="error_media_upload_permission">Permission requise pour lire ce média.</string>
<string name="error_media_download_permission">Permission requise pour enregistrer le média.</string>
<string name="error_media_upload_image_or_video">Un même pouet ne peut contenir à la fois une vidéo et une image.</string>
<string name="error_media_upload_sending">Échec denvoi du média.</string>
<string name="error_report_too_few_statuses">Au moins un pouet a été reporté.</string>
<string name="title_home">Accueil</string>
<string name="title_notifications">Notifications</string>
<string name="title_public_local">Local</string>
<string name="title_public_federated">Fédéré</string>
<string name="title_view_thread">Fil</string>
<string name="title_tag">#%s</string>
<string name="title_statuses">Pouets</string>
<string name="title_follows">Abonnements</string>
<string name="title_followers">Abonnés</string>
<string name="title_favourites">Favoris</string>
<string name="title_blocks">Utilisateurs bloqués</string>
2017-05-14 13:40:00 +02:00
<string name="title_mutes">Utilisateurs muets</string>
<string name="title_edit_profile">Editer votre profil</string>
<string name="title_follow_requests">Demande de suivi</string>
<string name="title_saved_toot">Pouet sauvegardés</string>
<string name="status_username_format">\@%s</string>
2017-05-14 13:40:00 +02:00
<string name="status_boosted_format">%s a boosté</string>
<string name="status_sensitive_media_title">Média sensible</string>
<string name="status_sensitive_media_directions">Cliquer pour voir</string>
<string name="status_content_warning_show_more">Voir plus</string>
<string name="status_content_warning_show_less">Voir moins</string>
<string name="footer_empty">Il ny a aucun pouet pour le moment.\nGlissez vers le bas pour actualiser !</string>
<string name="notification_reblog_format">%s a boosté votre pouet.</string>
<string name="notification_favourite_format">%s a ajouté votre pouet à ses favoris.</string>
<string name="notification_follow_format">%s vous suit.</string>
<string name="report_username_format">Signaler @%s</string>
<string name="report_comment_hint">Davantage de commentaires ?</string>
<string name="action_reply">Répondre</string>
<string name="action_reblog">Booster</string>
<string name="action_favourite">Favori</string>
<string name="action_more">Plus</string>
<string name="action_compose">Répondre</string>
<string name="action_login">Se connecter à Mastodon</string>
<string name="action_logout">Déconnexion</string>
<string name="action_follow">Suivre</string>
<string name="action_unfollow">Ne plus suivre</string>
<string name="action_block">Bloquer</string>
<string name="action_unblock">Débloquer</string>
<string name="action_report">Signaler</string>
<string name="action_delete">Supprimer</string>
<string name="action_send">POUET</string>
<string name="action_send_public">POUET !</string>
<string name="action_retry">Réessayer</string>
<string name="action_close">Fermer</string>
<string name="action_view_profile">Profil</string>
<string name="action_view_preferences">Préférences</string>
<string name="action_view_favourites">Favoris</string>
<string name="action_view_blocks">Utilisateurs bloqués</string>
<string name="action_view_media">Média</string>
<string name="action_open_in_web">Ouvrir dans votre navigateur</string>
ComposeActivity improvements (#548) * do not add media urls to status text * add scrolling to content * add arrow icon and animation to replying-to toggle * remove unnecessary compose_button_colors.xml * improve toot button * improve bottom bar, add bottom sheet for compose options, dedicated cw button * fix crash on Android < API 21 * move media picking from dialog to bottom sheet * add small style tootbutton * fix colors/button background for light theme * add icons to media chose bottom sheet * improve hide media button, delete unused styles * fix crash on dev build when taking photo * consolidate drawables * consolidate strings and ids, add tooltips to buttons * allow media only toots * change error message to show max size of upload correctly * fix button color * add emoji * code cleanup * Merge branch 'master' into compose_activity_refactoring # Conflicts: # app/src/main/java/com/keylesspalace/tusky/ComposeActivity.java * fix hidden snackbar * improve hint text color * add SendTootService * fix timeline refreshing * toot saving and error handling for sendtootservice * restructure some code * convert EditTextTyped to Kotlin * fixed pick media button disabled color * force sensitive media when content warning is shown * add db cache for emojis & fix tests * reorder buttons to match mastodon web * add possibility to cancel sending of toot * correctly delete sent toots * refresh SavedTootActivity after toot was sent * remove unused resources * correct params for toot saving in SendTootService * consolidate strings * bugfix * remove unused resources * fix notifications on old android for SendTootService * fix crash
2018-04-13 22:37:21 +02:00
<string name="action_add_media">Ajouter un média</string>
2017-04-21 07:37:02 +02:00
<string name="action_photo_take">Prendre une photo</string>
<string name="action_share">Partager</string>
<string name="action_mute">Rendre muet</string>
<string name="action_unmute">Redonner la parole</string>
<string name="action_mention">Mention</string>
<string name="action_open_drawer">Ouvrir le menu</string>
2017-04-21 07:37:02 +02:00
<string name="action_save">Sauvegarder</string>
<string name="action_edit_profile">Modifier le profil</string>
2017-05-14 13:40:00 +02:00
<string name="action_accept">Accepter</string>
<string name="action_reject">Rejeter</string>
<string name="action_undo">Annuler</string>
<string name="action_view_follow_requests">Demandes de suivi</string>
2017-05-14 13:40:00 +02:00
<string name="action_view_mutes">Utilisateurs muets</string>
<string name="action_copy_link">Copier le lien</string>
<string name="action_search">Rechercher</string>
<string name="action_access_saved_toot">Pouets sauvegardés</string>
<string name="send_status_link_to">Partager lURL de votre pouet avec…</string>
2017-04-21 07:37:02 +02:00
<string name="send_status_content_to">Partager le pouet avec…</string>
<string name="download_image">Téléchargement de %1$s</string>
<string name="confirmation_reported">Envoyé !</string>
<string name="hint_domain">Quelle instance ?</string>
<string name="hint_compose">Quoi de neuf ?</string>
<string name="hint_content_warning">Contenu sensible</string>
2017-04-21 07:37:02 +02:00
<string name="hint_display_name">Afficher le nom</string>
<string name="hint_note">Bio</string>
2017-07-15 09:56:22 +02:00
<string name="hint_search">Rechercher un compte…</string>
<string name="label_avatar">Avatar</string>
2017-04-21 07:37:02 +02:00
<string name="label_header">En-tête</string>
<string name="link_whats_an_instance">Quest-ce quune instance ?</string>
<string name="login_connection">Connexion en cours…</string>
<string name="dialog_whats_an_instance">Indiquer ici ladresse ou le domaine dune instance, comme mastodon.social, icosahedron.website, social.tchncs.de,
<a href="https://github.com/tootsuite/mastodon/blob/master/docs/Using-Mastodon/List-of-Mastodon-instances.md">et bien dautres encore</a> (en anglais) !
\n\nSi vous ne disposez daucun compte, vous pouvez renseigner le nom de linstance que vous souhaitez rejoindre et y créer un compte.\n\nUne instance est lendroit où votre compte est
stocké, mais vous pouvez facilement suivre des personnes dautres instances et communiquer avec elles comme si vous étiez sur le même site.
\n\nPour plus dinformations, consultez <a href="https://mastodon.social/about">mastodon.social</a> (anglais).
</string>
<string name="dialog_title_finishing_media_upload">Mise en ligne des médias…</string>
<string name="dialog_message_uploading_media">Envoi en cours…</string>
2017-04-21 07:37:02 +02:00
<string name="dialog_download_image">Télécharger</string>
<string name="dialog_message_follow_request">Demande de suivi en attente de réponse</string>
<string name="visibility_public">Public : afficher dans les fils publics.</string>
<string name="visibility_unlisted">Non listé : ne pas afficher dans les fils publics.</string>
<string name="visibility_private">Privé : nafficher que pour les personnes qui vous suivent.</string>
<string name="visibility_direct">Direct : nafficher que pour les personnes mentionnées.</string>
<string name="pref_title_notification_settings">Notifications</string>
<string name="pref_title_edit_notification_settings">Changer les réglages de notifications...</string>
<string name="pref_title_notifications_enabled">Notifications.</string>
<string name="pref_title_notification_alerts">Alertes</string>
<string name="pref_title_notification_alert_sound">Émettre un son pour notifier.</string>
<string name="pref_title_notification_alert_vibrate">Vibrer pour notifier.</string>
<string name="pref_title_notification_alert_light">Notifier avec une LED.</string>
<string name="pref_title_notification_filters">Me notifier quand…</string>
<string name="pref_title_notification_filter_mentions">on me mentionne.</string>
<string name="pref_title_notification_filter_follows">on me suit.</string>
<string name="pref_title_notification_filter_reblogs">mes pouets sont boostés.</string>
<string name="pref_title_notification_filter_favourites">mes pouets sont mis en favoris.</string>
<string name="pref_title_appearance_settings">Apparence</string>
<string name="pref_title_browser_settings">Navigateur</string>
<string name="pref_title_custom_tabs">Utiliser le navigateur intégré</string>
<string name="pref_title_hide_follow_button">Masquer le bouton de suivi lors du défilement</string>
2017-05-14 13:40:00 +02:00
<string name="pref_title_show_boosts">Montrer les boosts</string>
<string name="pref_title_show_replies">Montrer les réponses</string>
<string name="pref_title_show_media_preview">Montrer les miniatures des médias</string>
2017-05-14 13:40:00 +02:00
<string name="pref_title_status_tabs">Onglets</string>
<string name="pref_title_status_filter">Filtrage de fil</string>
<string name="notification_mention_format">%s a mentionné votre nom.</string>
<string name="notification_summary_large">%1$s, %2$s, %3$s et %4$d plus</string>
<string name="notification_summary_medium">%1$s, %2$s, et %3$s</string>
<string name="notification_summary_small">%1$s et %2$s</string>
<string name="notification_title_summary">%d nouvelles interactions.</string>
<string name="description_account_locked">Compte bloqué.</string>
<string name="status_share_content">Partager le contenu du pouet.</string>
<string name="status_share_link">Partager le lien du pouet.</string>
2017-05-14 13:40:00 +02:00
<string name="about_tusky_account">Compte officiel de Tusky</string>
<string name="about_title_activity">À propos</string>
2018-02-25 14:51:06 +01:00
<string name="about_project_site">Site du projet : https://tuskyapp.github.io</string>
<string name="about_bug_feature_request_site">Rapport de bugs &amp; demande de fonctionnalités : https://github.com/tuskyapp/Tusky/issues</string>
2017-05-14 13:40:00 +02:00
<string name="state_follow_requested">Demande effectuée</string>
<string name="confirmation_unblocked">Utilisateur débloqué</string>
<string name="title_x_followers"><b>%s</b> Abonnés</string>
<string name="title_x_following"><b>%s</b> Abonnements</string>
<string name="title_x_statuses"><b>%s</b> Pouets</string>
<string name="status_media_hidden_title">Media caché</string>
<string name="action_hide_media">Cacher le media</string>
2018-03-05 15:02:26 +01:00
<string name="confirmation_unmuted">Le compte n\'est plus muet</string>
<string name="search_no_results">Aucun résultat</string>
<string name="dialog_unfollow_warning">Ne plus suivre ce compte?</string>
<string name="pref_summary_notifications">pour le compte %1$s</string>
<string name="pref_title_pull_notification_check_interval">Interval de vérifications</string>
<string name="pref_title_app_theme">Theme de l\'application</string>
<string-array name="app_theme_names">
<item>Sombre</item>
<item>Clair</item>
<item>Basé sur le coucher du soleil</item>
</string-array>
<string name="pref_title_proxy_settings">Proxy</string>
<string name="pref_title_http_proxy_settings">Proxy HTTP</string>
<string name="pref_title_http_proxy_enable">Activer le proxy HTTP</string>
<string name="pref_title_http_proxy_server">Adresse du serveur proxy HTTP</string>
<string name="pref_title_http_proxy_port">Port du serveur proxy HTTP</string>
<string-array name="pull_notification_check_interval_names">
<item>15 minutes</item>
<item>20 minutes</item>
<item>25 minutes</item>
<item>30 minutes</item>
<item>45 minutes</item>
<item>1 heure</item>
<item>2 heures</item>
</string-array>
<string name="pref_default_post_privacy">Confidentialité par defaut</string>
<string name="pref_publishing">Publier</string>
<string-array name="post_privacy_names">
<item>Public</item>
<item>Non listé</item>
<item>Abonnés seuleument</item>
</string-array>
<string name="pref_status_text_size">Taille du texte pour les status</string>
<string-array name="status_text_size_names">
<item>Petit</item>
<item>Moyen</item>
<item>Grand</item>
</string-array>
<string name="pref_title_alway_show_sensitive_media">Toujours afficher le contenu sensible</string>
<string name="notification_channel_mention_name">Nouvelles mentions</string>
<string name="notification_channel_mention_descriptions">Notifications pour les nouvelles mentions</string>
<string name="notification_channel_follow_name">Nouveaux abonnés</string>
<string name="notification_channel_follow_description">Notifications pour les nouveaux abonnés</string>
<string name="notification_channel_boost_name">Repouet</string>
<string name="notification_channel_boost_description">Notifications pour les repouets</string>
<string name="notification_channel_favourite_name">Favoris</string>
<string name="notification_channel_favourite_description">Notifications pour les mises en favoris</string>
<string name="about_tusky_version">Tusky %s</string>
<string name="about_tusky_license">Tusky est une application libre et open source.
Elle est publiée sous licence publique générale GNU version 3.
Vous pouvez consulter la licence ici: https://www.gnu.org/licenses/gpl-3.0.fr.html</string>
<!-- note to translators: the url can be changed to link to the localized version of the license -->
<string name="status_media_images">Images</string>
<string name="status_media_video">Videos</string>
<string name="no_content">aucun contenu</string>
<string name="action_logout_confirm">Êtes vous certain de vouloir déconnecter le compte %1$s?</string>
<string name="follows_you">Vous suit</string>
<string name="title_media">Media</string>
<string name="replying_to">Répondre à @%s</string>
<string name="load_more_placeholder_text">charger plus</string>
<string name="add_account_name">Ajouter un compte</string>
<string name="add_account_description">Ajouter un nouveau compte mastodon</string>
<string name="action_lists">Listes</string>
<string name="title_lists">Listes</string>
<string name="title_list_timeline">Lister le fédiverse</string>
<string name="compose_active_account_description">Poster avec le compte %1$s</string>
<string name="error_failed_set_caption">Impossible de mettre la légende</string>
<string name="hint_describe_for_visually_impaired">Décrire pour les mal voyants</string>
<string name="action_set_caption">Mettre une légende</string>
<string name="action_remove_media">Supprimer le média</string>
</resources>